:root {
  --ink: #17201e;
  --muted: #5d6a66;
  --line: #d9e1dd;
  --paper: #fbfaf7;
  --white: #ffffff;
  --mint: #dceee6;
  --teal: #126d68;
  --teal-dark: #0d4f4b;
  --coral: #c8654a;
  --gold: #d8aa4a;
  --shadow: 0 18px 45px rgba(23, 32, 30, 0.11);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 54px);
  background: rgba(251, 250, 247, 0.92);
  border-bottom: 1px solid rgba(217, 225, 221, 0.78);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 750;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  color: var(--white);
  background: var(--teal);
}

.site-header nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  flex-wrap: wrap;
}

.site-header nav a,
.site-footer nav a {
  color: var(--muted);
  font-size: 0.94rem;
  text-decoration: none;
}

.site-header nav a:hover,
.site-footer nav a:hover {
  color: var(--teal-dark);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 24px));
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 25, 23, 0.82) 0%, rgba(18, 25, 23, 0.62) 42%, rgba(18, 25, 23, 0.14) 74%),
    linear-gradient(0deg, rgba(23, 32, 30, 0.18), rgba(23, 32, 30, 0));
}

.hero-content {
  position: relative;
  width: min(680px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 92px);
  color: var(--white);
  padding: 72px 0 96px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd39b;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(3.1rem, 7vw, 6rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  max-width: 13ch;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.hero-copy {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

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

.hero-optin {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 10px;
  align-items: end;
  max-width: 620px;
  margin-top: 18px;
}

.hero-email {
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 720;
}

.hero-email input {
  min-height: 48px;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  font: inherit;
}

.hero-email input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.hero-email input:focus {
  outline: 3px solid rgba(255, 211, 155, 0.28);
  border-color: #ffd39b;
}

.hero-consent {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  align-items: start;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
}

.hero-consent a {
  color: #ffd39b;
}

.hero-consent input {
  margin-top: 3px;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 1.35em;
  margin: 0;
  color: #ffd39b;
  font-size: 0.86rem;
  font-weight: 700;
}

.form-status.dark {
  color: var(--teal-dark);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 760;
  text-decoration: none;
}

.button.primary {
  color: var(--white);
  background: var(--teal);
}

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

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.08);
}

.button.full {
  width: 100%;
}

.small-note {
  max-width: 640px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip div {
  padding: 24px clamp(18px, 4vw, 54px);
  background: var(--white);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip span {
  margin-top: 4px;
  color: var(--muted);
}

.section {
  padding: clamp(64px, 10vw, 128px) clamp(18px, 5vw, 72px);
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(300px, 1.15fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
}

.split > div > p:not(.eyebrow),
.optin-copy > p:not(.eyebrow),
.section-heading + p {
  color: var(--muted);
  font-size: 1.08rem;
}

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

.module-grid article,
.feature-grid article,
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.module-grid article,
.feature-grid article {
  min-height: 190px;
  padding: 24px;
}

.module-grid span {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--coral);
  font-weight: 800;
}

.module-grid p,
.feature-grid p,
details p,
.disclaimer,
.site-footer p {
  color: var(--muted);
}

.band {
  background: var(--mint);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 30px;
}

.section-heading h2 {
  max-width: 15ch;
}

.outcomes {
  background: var(--white);
}

.outcome-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.outcome-list p {
  min-height: 170px;
  margin: 0;
  padding: 24px;
  background: var(--paper);
  font-size: 1.08rem;
}

.optin-section {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(300px, 420px);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.optin-copy h2 {
  max-width: 12ch;
}

.disclaimer {
  max-width: 720px;
  padding-left: 16px;
  border-left: 4px solid var(--gold);
}

.optin-card {
  padding: 26px;
  box-shadow: var(--shadow);
}

.optin-card {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.optin-card label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 740;
}

.optin-card input[type="text"],
.optin-card input[type="email"] {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
}

.optin-card input:focus {
  outline: 3px solid rgba(18, 109, 104, 0.18);
  border-color: var(--teal);
}

.check-row {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 500;
}

.check-row input {
  margin-top: 3px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-note a {
  color: var(--teal-dark);
  font-weight: 760;
}

.faq {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(300px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  padding-top: clamp(44px, 6vw, 84px);
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  padding: 20px 22px;
  margin: 0;
}

summary {
  cursor: pointer;
  font-weight: 780;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 26px;
  padding: 34px clamp(18px, 5vw, 72px);
  background: #101816;
  color: var(--white);
}

.site-footer p {
  max-width: 520px;
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer nav a {
  color: rgba(255, 255, 255, 0.74);
}

.legal-page {
  max-width: 860px;
  margin: 0 auto;
}

.legal-page h1 {
  max-width: none;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1;
}

.legal-page h2 {
  max-width: none;
  margin-top: 36px;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: 760px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(18, 25, 23, 0.82) 0%, rgba(18, 25, 23, 0.58) 62%, rgba(18, 25, 23, 0.28) 100%);
  }

  .hero-content {
    margin: 0 auto;
    padding-top: 56px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.75rem, 12vw, 4.4rem);
  }

  .trust-strip,
  .split,
  .optin-section,
  .faq,
  .outcome-list {
    grid-template-columns: 1fr;
  }

  .module-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-header nav {
    width: 100%;
    justify-content: space-between;
  }

  .site-header nav a {
    font-size: 0.88rem;
  }

  .hero {
    min-height: 720px;
  }

  .button {
    width: 100%;
  }

  .hero-optin {
    grid-template-columns: 1fr;
  }

  .module-grid article,
  .feature-grid article,
  .outcome-list p {
    min-height: auto;
  }
}
