:root {
  --ink: #102d34;
  --muted: #557076;
  --line: #dbe4e2;
  --paper: #fbfcfb;
  --white: #ffffff;
  --teal: #087c7a;
  --teal-dark: #075e5f;
  --coral: #d96a52;
  --gold: #f0b84d;
  --deep: #0b2830;
  --shadow: 0 18px 50px rgba(16, 45, 52, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  overflow-x: hidden;
}

body,
button,
input {
  letter-spacing: 0;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
  padding: 10px clamp(18px, 4vw, 44px);
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 160px;
}

.brand img {
  display: block;
  width: 180px;
  height: auto;
}

.header-actions,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.quiet-link {
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration: none;
}

.nav-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.nav-button,
.button.primary {
  background: var(--teal);
  color: var(--white);
}

.button.primary:hover,
.nav-button:hover {
  background: var(--teal-dark);
}

.button.secondary {
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .62);
  color: var(--white);
}

.hero {
  min-height: min(720px, calc(100vh - 76px));
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(90deg, rgba(7, 39, 47, .88) 0%, rgba(7, 39, 47, .68) 44%, rgba(7, 39, 47, .18) 100%),
    var(--hero-image);
  background-position: var(--hero-position, center);
  background-size: cover;
}

.hero-overlay {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 76px 0 92px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  max-width: 100%;
}

h1 {
  max-width: 830px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(42px, 6vw, 78px);
  line-height: .98;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hero-copy {
  max-width: 710px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, .92);
  font-size: clamp(19px, 2.4vw, 25px);
  line-height: 1.38;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(1120px, calc(100% - 40px));
  margin: -46px auto 0;
  position: relative;
  z-index: 3;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.proof-strip div {
  min-height: 116px;
  padding: 22px;
  background: var(--white);
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  margin-bottom: 8px;
  color: var(--deep);
  font-size: 20px;
}

.proof-strip span {
  color: var(--muted);
  line-height: 1.45;
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 78px 0;
}

.intro-section,
.steps-section,
.faq-section {
  display: grid;
  grid-template-columns: minmax(260px, 390px) 1fr;
  gap: 52px;
  align-items: start;
}

.section-kicker {
  color: var(--coral);
}

h2 {
  margin-bottom: 18px;
  color: var(--deep);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  color: var(--deep);
  font-size: 21px;
  line-height: 1.18;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.66;
}

.section-copy p {
  max-width: 720px;
  color: var(--ink);
  font-size: 21px;
}

.keyword-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.keyword-pills span {
  border: 1px solid #c7dbd7;
  border-radius: 999px;
  padding: 9px 13px;
  background: #edf7f4;
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 800;
}

.card-grid-section {
  padding-top: 16px;
}

.section-heading.compact {
  max-width: 760px;
  margin-bottom: 28px;
}

.cards {
  display: grid;
  gap: 18px;
}

.cards.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  min-height: 206px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.card h3 {
  margin-bottom: 12px;
}

.card p {
  margin-bottom: 0;
}

.band {
  width: 100%;
  padding: 78px max(20px, calc((100vw - 1120px) / 2));
  background: #e9f3f0;
}

.media-band {
  display: grid;
  grid-template-columns: minmax(260px, 440px) 1fr;
  gap: 52px;
  align-items: center;
}

.media-copy p {
  color: var(--ink);
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--teal-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}

figure {
  margin: 0;
}

figure img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  position: relative;
  min-height: 94px;
  padding: 20px 20px 20px 76px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  counter-increment: step;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 20px;
  top: 22px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  font-weight: 900;
}

.steps strong,
.steps span {
  display: block;
}

.steps strong {
  margin-bottom: 6px;
  color: var(--deep);
  font-size: 20px;
}

.steps span {
  color: var(--muted);
  line-height: 1.45;
}

.faq {
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

.faq summary {
  cursor: pointer;
  color: var(--deep);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.35;
}

.faq p {
  max-width: 760px;
  margin: 14px 0 0;
}

.final-cta {
  display: flex;
  align-items: center;
  min-height: 430px;
  padding: 76px max(20px, calc((100vw - 1120px) / 2));
  background-image:
    linear-gradient(90deg, rgba(7, 39, 47, .92) 0%, rgba(7, 39, 47, .72) 55%, rgba(7, 39, 47, .34) 100%),
    var(--cta-image);
  background-position: center;
  background-size: cover;
}

.final-cta div {
  max-width: 720px;
}

.final-cta h2 {
  color: var(--white);
}

.final-cta p {
  color: rgba(255, 255, 255, .9);
}

.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(20px, 4vw, 44px);
  background: var(--deep);
}

.footer img {
  width: 160px;
  height: auto;
}

.footer p {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
}

.index-page {
  background: #f7faf9;
}

.index-hero {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0 42px;
}

.index-hero h1 {
  max-width: 900px;
  color: var(--deep);
  font-size: clamp(40px, 6vw, 74px);
}

.index-hero p:not(.eyebrow) {
  max-width: 820px;
  color: var(--ink);
  font-size: 22px;
}

.index-warning {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 20px;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto 24px;
  padding: 20px;
  border-left: 5px solid var(--coral);
  border-radius: 8px;
  background: #fff3ee;
}

.index-warning strong {
  color: var(--deep);
}

.index-warning span {
  color: var(--ink);
  line-height: 1.5;
}

.index-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 20px 0 86px;
}

.index-card {
  display: flex;
  min-height: 188px;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(16, 45, 52, .06);
}

.index-card:hover {
  border-color: #a9cbc5;
  transform: translateY(-1px);
}

.index-card span {
  color: var(--coral);
  font-size: 13px;
  font-weight: 900;
}

.index-card strong {
  color: var(--deep);
  font-size: 24px;
  line-height: 1.12;
}

.index-card em {
  color: var(--muted);
  font-style: normal;
  line-height: 1.35;
  word-break: break-word;
}

@media (max-width: 920px) {
  .proof-strip,
  .cards.three,
  .index-grid {
    grid-template-columns: 1fr 1fr;
  }

  .intro-section,
  .steps-section,
  .faq-section,
  .media-band {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .header-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(350px, 100%);
  }

  .quiet-link,
  .nav-button {
    width: 100%;
    justify-content: center;
  }

  .hero {
    min-height: 620px;
    background-image:
      linear-gradient(180deg, rgba(7, 39, 47, .94) 0%, rgba(7, 39, 47, .78) 58%, rgba(7, 39, 47, .36) 100%),
      var(--hero-image);
  }

  .hero-overlay {
    width: min(350px, calc(100% - 32px));
    max-width: 350px;
    margin-left: 16px;
    margin-right: auto;
    padding: 54px 0 80px;
  }

  h1 {
    width: 100%;
    font-size: 34px;
    line-height: 1.02;
  }

  h2 {
    font-size: 32px;
  }

  .hero-copy,
  .index-hero p:not(.eyebrow),
  .section-copy p {
    font-size: 18px;
  }

  .proof-strip,
  .cards.three,
  .index-grid,
  .index-warning {
    grid-template-columns: 1fr;
  }

  .proof-strip {
    width: min(350px, calc(100% - 24px));
    margin-top: -32px;
    margin-left: 16px;
    margin-right: auto;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    max-width: 350px;
  }

  .hero-actions .button {
    width: 100%;
    padding-inline: 12px;
  }

  .section {
    width: min(350px, calc(100% - 32px));
    margin-left: 16px;
    margin-right: auto;
    padding: 58px 0;
  }

  .band,
  .final-cta {
    padding: 58px 16px;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
