:root {
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #172033;
  background: #f3f7fb;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
}

.shell {
  width: min(960px, calc(100% - 32px));
  margin: 0 auto;
  padding: 80px 0;
}

.intro {
  padding: 40px 0 56px;
}

.eyebrow {
  margin: 0 0 16px;
  color: #266d63;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: #101828;
  font-size: clamp(48px, 9vw, 112px);
  line-height: 0.95;
  letter-spacing: 0;
}

.summary {
  max-width: 560px;
  margin: 24px 0 0;
  color: #4d5b73;
  font-size: 20px;
  line-height: 1.6;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 8px;
  background: #126a5d;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

.button.secondary {
  border: 1px solid #c8d2df;
  background: #ffffff;
  color: #172033;
}

.panel {
  padding: 28px;
  border: 1px solid #d8e0ea;
  border-radius: 8px;
  background: #ffffff;
}

.panel h2 {
  margin: 0 0 16px;
  font-size: 22px;
}

.panel ul {
  margin: 0;
  padding-left: 20px;
  color: #4d5b73;
  line-height: 1.9;
}

@media (max-width: 640px) {
  .shell {
    padding: 48px 0;
  }

  .intro {
    padding-top: 24px;
  }
}
