:root {
  color-scheme: light;
  --ink: #17212b;
  --muted: #5f6b76;
  --line: #dce2e7;
  --accent: #126b5c;
  --accent-dark: #0d4f44;
  --accent-soft: #e4f2ee;
  --paper: #ffffff;
  --wash: #f4f7f6;
  --warm: #fbf6ef;
  --sand: #eadfcf;
  --rose: #f3dfd7;
  --shadow: 0 22px 70px rgba(23, 33, 43, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--wash);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
}

main {
  width: min(820px, calc(100% - 32px));
  margin: 32px auto;
  padding: clamp(24px, 5vw, 56px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

h1,
h2,
h3 {
  line-height: 1.1;
  letter-spacing: -0.035em;
}

h1 {
  margin: 0 0 8px;
  font-size: clamp(30px, 5vw, 46px);
}

h2 {
  margin: 34px 0 10px;
  font-size: 23px;
}

.landing h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4.2vw, 54px);
}

h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

p,
ul {
  margin: 10px 0;
}

a {
  color: var(--accent);
}

.meta,
footer,
.note,
.section-label {
  color: var(--muted);
}

footer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 15px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.landing-page {
  background:
    radial-gradient(circle at 10% 0%, rgba(18, 107, 92, 0.18), transparent 30rem),
    radial-gradient(circle at 90% 20%, rgba(243, 223, 215, 0.9), transparent 26rem),
    linear-gradient(180deg, #fbf6ef 0%, #f4f7f6 52%, #eef3f0 100%);
}

.landing {
  width: min(1160px, calc(100% - 32px));
  padding: 0;
  background: transparent;
  border: 0;
}

.site-header,
.landing section,
.landing footer {
  margin: 18px 0;
  padding: clamp(22px, 4vw, 46px);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(220, 226, 231, 0.95);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
}

.brand,
.header-cta {
  font-weight: 850;
  text-decoration: none;
}

.brand {
  color: var(--ink);
}

.top-nav {
  justify-content: center;
  gap: 18px;
  font-size: 15px;
}

.top-nav a {
  color: var(--muted);
  text-decoration: none;
}

.header-cta {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.hero {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.64fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
  overflow: hidden;
}

.hero-copy {
  position: relative;
}

.hero h1 {
  max-width: 880px;
  font-size: clamp(36px, 5.8vw, 64px);
}

.lead {
  max-width: 790px;
  font-size: clamp(18px, 1.8vw, 22px);
  color: #30404f;
}

.eyebrow,
.section-label,
.mini-label {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(18, 107, 92, 0.2);
}

.button:hover {
  background: var(--accent-dark);
}

.button.secondary {
  background: #ffffff;
  color: var(--accent-dark);
  border: 1px solid var(--line);
  box-shadow: none;
}

.button.large {
  min-height: 58px;
  padding-inline: 28px;
}

.hero-panel {
  display: grid;
  gap: 16px;
}

.panel-card,
.panel-grid div {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fbfcfc;
}

.accent-card {
  min-height: 160px;
  display: grid;
  align-content: end;
  padding: 22px;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.65), transparent 10rem),
    linear-gradient(135deg, var(--accent), #17352f);
  color: #ffffff;
}

.accent-card .mini-label {
  color: rgba(255, 255, 255, 0.72);
}

.accent-card strong {
  max-width: 280px;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.panel-grid div {
  min-height: 104px;
  padding: 16px;
}

.panel-grid span {
  display: block;
  color: var(--accent);
  font-weight: 900;
}

.panel-grid p {
  margin-top: 14px;
  font-weight: 750;
  line-height: 1.25;
}

.split-section,
.pricing,
.fit-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 28px;
  align-items: start;
}

.cards,
.steps,
.outcomes {
  display: grid;
  gap: 14px;
}

.cards.two,
.steps,
.outcomes {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cards.three {
  grid-template-columns: 1fr;
}

.cards article,
.steps article,
.outcomes div,
.price-card,
.fit-card,
.comparison div {
  padding: 24px;
  background: #fbfcfc;
  border: 1px solid var(--line);
  border-radius: 22px;
}

.cards article p,
.steps article p,
.price-card p,
.comparison p,
.outcomes span {
  color: #42505d;
}

.promise p,
.process-section > p,
.comparison-section > p {
  max-width: 850px;
}

.outcomes {
  margin-top: 26px;
}

.outcomes strong,
.outcomes span {
  display: block;
}

.outcomes strong {
  font-size: 20px;
  margin-bottom: 8px;
}

.steps {
  margin-top: 26px;
}

.steps span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 26px;
  place-items: center;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 900;
}

.feature-cards article:nth-child(2),
.feature-cards article:nth-child(4) {
  background: var(--warm);
}

.fit-section {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fit-card.good {
  background: #f7fbf9;
}

.muted-card {
  background: #fbf8f4;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 14px 16px 14px 38px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(220, 226, 231, 0.72);
  border-radius: 14px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  color: var(--accent);
  font-weight: 900;
}

.check-list.quiet li::before {
  content: "—";
  color: #9b7667;
}

.comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.comparison span {
  display: block;
  margin-bottom: 12px;
  color: var(--accent-dark);
  font-weight: 900;
}

.price-card {
  background: linear-gradient(180deg, #ffffff, var(--accent-soft));
}

.price {
  margin: 0;
  font-size: clamp(46px, 6vw, 72px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.06em;
  color: var(--accent-dark);
}

.faq details {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  font-size: 20px;
  font-weight: 850;
}

.cta {
  text-align: center;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.8), transparent 12rem),
    linear-gradient(135deg, var(--accent-soft), #ffffff) !important;
}

.cta p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 920px) {
  .top-nav {
    display: none;
  }

  .hero,
  .split-section,
  .pricing,
  .fit-section,
  .cards.two,
  .steps,
  .outcomes,
  .comparison {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  main,
  .landing {
    width: min(100% - 20px, 1120px);
    margin: 10px auto;
  }

  .site-header,
  .landing section,
  .landing footer {
    border-radius: 20px;
  }

  .site-header {
    top: 8px;
  }

  .hero h1 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .button,
  .header-cta {
    width: 100%;
  }

  .site-header {
    align-items: stretch;
    flex-direction: column;
  }

  .panel-grid {
    grid-template-columns: 1fr;
  }
}
