@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Manrope:wght@500;600;700&display=swap');

:root {
  --bg: #f7f8f5;
  --surface: #ffffff;
  --surface-muted: #edf3f0;
  --ink: #17211e;
  --ink-soft: #52615c;
  --line: #dce4df;
  --brand: #155b4d;
  --brand-dark: #0c4137;
  --brand-soft: #b9ded4;
  --accent: #d9f69a;
  --accent-deep: #b8df69;
  --danger: #a63737;
  --success: #176b4f;
  --shadow-sm: 0 8px 30px rgba(20, 54, 45, .07);
  --shadow-lg: 0 30px 80px rgba(20, 54, 45, .13);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 36px;
  --container: 1200px;
  --header-height: 78px;
  --font-display: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 20px); }
body { margin: 0; color: var(--ink); background: var(--bg); font-family: var(--font-body); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img, svg { display: block; max-width: 100%; }
p, h1, h2, h3, blockquote { margin-top: 0; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 140px 0; }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 1000; padding: 10px 16px; border-radius: 10px; background: var(--ink); color: #fff; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--accent-deep); outline-offset: 3px; }

.site-header { position: fixed; z-index: 100; inset: 0 0 auto; height: var(--header-height); transition: background .25s ease, box-shadow .25s ease, backdrop-filter .25s ease; }
.site-header.scrolled { background: rgba(247, 248, 245, .82); box-shadow: 0 1px 0 rgba(23, 33, 30, .08); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-display); font-size: 23px; font-weight: 700; letter-spacing: -.7px; }
.brand-mark, .manifesto-mark { position: relative; display: inline-block; width: 30px; height: 30px; }
.brand .brand-mark { flex: 0 0 30px; }
.brand-logo { display: block; width: 126px; height: auto; }
.brand-logo-footer { width: 132px; }
.brand-mark i, .manifesto-mark i { position: absolute; display: block; border-radius: 50%; }
.brand-mark i:nth-child(1) { width: 13px; height: 13px; left: 1px; top: 9px; background: var(--brand); }
.brand-mark i:nth-child(2) { width: 10px; height: 10px; right: 1px; top: 2px; background: var(--brand-soft); }
.brand-mark i:nth-child(3) { width: 8px; height: 8px; right: 3px; bottom: 2px; background: var(--accent-deep); }
.main-nav { display: flex; align-items: center; gap: 34px; font-size: 14px; font-weight: 500; }
.main-nav > a:not(.button) { color: #3f4d48; transition: color .2s ease; }
.main-nav > a:not(.button):hover { color: var(--brand); }
.menu-toggle { display: none; border: 0; background: transparent; width: 44px; height: 44px; padding: 12px; cursor: pointer; }
.menu-toggle > span:not(.sr-only) { display: block; width: 21px; height: 2px; margin: 5px auto; border-radius: 2px; background: var(--ink); transition: transform .25s ease; }
.menu-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-3.5px) rotate(-45deg); }

.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 14px; padding: 12px 22px; border: 0; border-radius: 999px; font-weight: 600; line-height: 1.2; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button-small { min-height: 42px; padding: 10px 18px; background: var(--ink); color: #fff; }
.button-small:hover { background: var(--brand); box-shadow: 0 8px 24px rgba(21, 91, 77, .18); }
.button-primary { color: #fff; background: var(--brand); box-shadow: 0 12px 30px rgba(21, 91, 77, .18); }
.button-primary:hover { background: var(--brand-dark); box-shadow: 0 16px 35px rgba(21, 91, 77, .25); }
.button-large { min-height: 58px; padding: 16px 27px; }

.hero { position: relative; min-height: 780px; height: max(780px, 100svh); display: flex; align-items: center; padding: calc(var(--header-height) + 45px) 0 74px; overflow: hidden; isolation: isolate; }
.hero::before { content: ""; position: absolute; z-index: -2; inset: 0; background: linear-gradient(160deg, #fbfcfa 0%, #f7f8f5 52%, #edf4f0 100%); }
.hero::after { content: ""; position: absolute; z-index: -1; width: 600px; height: 600px; right: -310px; top: -230px; border: 1px solid rgba(21, 91, 77, .11); border-radius: 50%; box-shadow: 0 0 0 90px rgba(21, 91, 77, .025), 0 0 0 180px rgba(21, 91, 77, .018); }
.hero-glow { position: absolute; z-index: -1; width: 430px; height: 430px; left: 42%; bottom: -250px; border-radius: 50%; background: rgba(217, 246, 154, .23); filter: blur(90px); }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 74px; align-items: center; }
.eyebrow, .section-kicker { color: var(--brand); font-size: 13px; font-weight: 600; letter-spacing: .115em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 26px; }
.eyebrow span { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-deep); box-shadow: 0 0 0 5px rgba(184, 223, 105, .2); }
.hero h1 { max-width: 720px; margin-bottom: 26px; font-family: var(--font-display); font-size: clamp(52px, 5.2vw, 78px); font-weight: 600; line-height: 1.03; letter-spacing: -.055em; }
.hero h1 em { color: var(--brand); font-style: normal; }
.hero-lead { max-width: 610px; margin-bottom: 34px; color: var(--ink-soft); font-size: 19px; line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 22px; }
.hero-actions p { max-width: 175px; margin: 0; color: #72807b; font-size: 12.5px; line-height: 1.5; }
.hero-visual { position: relative; width: min(100%, 500px); aspect-ratio: 1; justify-self: end; }
.orbit { position: absolute; inset: 8%; border: 1px solid rgba(21, 91, 77, .15); border-radius: 50%; }
.orbit-one::before, .orbit-two::before { content: ""; position: absolute; width: 7px; height: 7px; border-radius: 50%; background: var(--brand-soft); }
.orbit-one::before { top: 13%; right: 13%; }
.orbit-two { inset: 21%; border-style: dashed; border-color: rgba(21, 91, 77, .17); transform: rotate(-20deg); }
.orbit-two::before { bottom: 10%; left: 17%; background: var(--accent-deep); }
.visual-core { position: absolute; z-index: 2; inset: 31%; display: grid; place-content: center; text-align: center; border: 1px solid rgba(255,255,255,.85); border-radius: 50%; background: rgba(255,255,255,.76); box-shadow: 0 24px 70px rgba(21, 91, 77, .14), inset 0 0 0 12px rgba(255,255,255,.35); backdrop-filter: blur(12px); }
.core-halo { position: absolute; inset: -15%; z-index: -1; border-radius: 50%; background: radial-gradient(circle, rgba(185,222,212,.42), transparent 68%); }
.core-symbol { position: relative; width: 52px; height: 34px; margin: 0 auto 13px; }
.core-symbol i { position: absolute; border-radius: 50%; }
.core-symbol i:nth-child(1) { width: 23px; height: 23px; left: 0; top: 8px; background: var(--brand); }
.core-symbol i:nth-child(2) { width: 18px; height: 18px; top: 0; right: 1px; background: var(--brand-soft); }
.core-symbol i:nth-child(3) { width: 13px; height: 13px; right: 5px; bottom: 0; background: var(--accent-deep); }
.visual-core strong { font-family: var(--font-display); font-size: 13px; font-weight: 600; line-height: 1.35; }
.concept-card { position: absolute; z-index: 3; display: flex; align-items: center; gap: 10px; min-width: 116px; padding: 11px 15px; border: 1px solid rgba(21, 91, 77, .09); border-radius: 13px; background: rgba(255,255,255,.83); box-shadow: var(--shadow-sm); backdrop-filter: blur(10px); font-size: 13px; font-weight: 600; animation: float 6s ease-in-out infinite; }
.concept-card span { width: 7px; height: 7px; border-radius: 50%; background: var(--brand-soft); }
.concept-one { left: 1%; top: 23%; }
.concept-two { right: -1%; top: 18%; animation-delay: -1.3s; }
.concept-three { left: 4%; bottom: 18%; animation-delay: -2.6s; }
.concept-four { right: 3%; bottom: 23%; animation-delay: -3.9s; }
.concept-two span, .concept-three span { background: var(--accent-deep); }
.spark { position: absolute; width: 5px; height: 5px; border-radius: 50%; background: var(--brand); opacity: .5; }
.spark-one { top: 10%; left: 45%; }.spark-two { right: 11%; top: 48%; }.spark-three { left: 23%; bottom: 5%; background: var(--accent-deep); }
.scroll-cue { position: absolute; bottom: 30px; left: 50%; display: flex; align-items: center; gap: 9px; transform: translateX(-50%); color: #75827d; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.scroll-cue span { width: 18px; height: 28px; border: 1px solid #aeb9b5; border-radius: 10px; }
.scroll-cue span::after { content: ""; display: block; width: 3px; height: 5px; margin: 6px auto 0; border-radius: 2px; background: var(--brand); animation: scroll-dot 2s ease infinite; }

.section-intro { max-width: 690px; margin-bottom: 58px; }
.section-intro-wide { max-width: 880px; }
.section-kicker { margin-bottom: 16px; }
.section h2, .waitlist-section h2 { margin-bottom: 22px; font-family: var(--font-display); font-size: clamp(40px, 4.5vw, 64px); font-weight: 600; line-height: 1.08; letter-spacing: -.045em; }
.section h2 span { color: var(--brand); }
.section-intro > p:last-child, .faq-heading > p:last-child { max-width: 620px; color: var(--ink-soft); font-size: 18px; }
.problem { background: var(--surface); }
.problem-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 120px; align-items: start; }
.problem-lead { max-width: 390px; color: var(--ink-soft); font-size: 21px; line-height: 1.65; }
.challenge-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.challenge-list li { display: grid; grid-template-columns: 50px 1fr; gap: 10px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.challenge-list span { padding-top: 2px; color: #93a09b; font-size: 12px; font-weight: 600; letter-spacing: .08em; }
.challenge-list p { margin: 0; font-size: 17px; }
.bridge-statement { display: flex; align-items: center; gap: 34px; margin-top: 90px; }
.bridge-line { position: relative; flex: 1; max-width: 260px; height: 1px; background: var(--line); }
.bridge-line::after { content: ""; position: absolute; right: 0; top: -3px; width: 7px; height: 7px; border-radius: 50%; background: var(--accent-deep); }
.bridge-statement p { max-width: 680px; margin: 0; font-family: var(--font-display); font-size: clamp(23px, 2.4vw, 34px); line-height: 1.35; letter-spacing: -.025em; }
.bridge-statement strong { color: var(--brand); font-weight: 600; }

.value-section { background: var(--bg); }
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.value-card { position: relative; min-height: 360px; padding: 28px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(255,255,255,.66); transition: transform .25s ease, box-shadow .25s ease, border .25s ease; }
.value-card:hover { transform: translateY(-7px); border-color: var(--brand-soft); box-shadow: var(--shadow-lg); }
.value-card.featured { color: #fff; border-color: var(--brand); background: var(--brand); }
.value-card.featured::after { content: ""; position: absolute; width: 190px; height: 190px; right: -90px; bottom: -90px; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; box-shadow: 0 0 0 35px rgba(255,255,255,.03), 0 0 0 70px rgba(255,255,255,.03); }
.icon-box { display: grid; place-items: center; width: 50px; height: 50px; margin-bottom: 87px; border-radius: 14px; background: var(--surface-muted); color: var(--brand); }
.icon-box svg { width: 27px; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.featured .icon-box { color: #fff; background: rgba(255,255,255,.12); }
.card-number { position: absolute; top: 31px; right: 27px; color: #98a59f; font-size: 11px; letter-spacing: .1em; }
.featured .card-number { color: rgba(255,255,255,.55); }
.value-card h3 { margin-bottom: 12px; font-family: var(--font-display); font-size: 21px; letter-spacing: -.025em; }
.value-card p { margin: 0; color: var(--ink-soft); font-size: 15px; line-height: 1.7; }
.featured p { color: rgba(255,255,255,.72); }

.audience-section { background: var(--surface); }
.audience-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 110px; align-items: center; }
.audience-copy > p:not(.section-kicker) { max-width: 510px; color: var(--ink-soft); font-size: 18px; }
.audience-copy blockquote { max-width: 510px; margin: 43px 0 0; padding: 24px 0 24px 26px; border-left: 3px solid var(--accent-deep); color: var(--brand); font-family: var(--font-display); font-size: 20px; font-weight: 600; line-height: 1.55; }
.audience-list { margin: 0; padding: 0; list-style: none; }
.audience-list li { display: grid; grid-template-columns: 50px 1fr; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.audience-list li:first-child { border-top: 1px solid var(--line); }
.audience-icon { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; color: var(--brand); background: var(--surface-muted); transition: color .2s ease, background .2s ease, transform .2s ease; }
.audience-list li:hover .audience-icon { color: #fff; background: var(--brand); transform: rotate(45deg); }
.audience-list strong { display: block; margin-bottom: 4px; font-family: var(--font-display); font-size: 17px; }
.audience-list p { margin: 0; color: var(--ink-soft); font-size: 14.5px; }

.principles-section { color: #fff; background: var(--ink); }
.principles-section .section-kicker { color: var(--accent); }
.principles-heading { display: flex; align-items: end; justify-content: space-between; }
.principles-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 70px; border-top: 1px solid rgba(255,255,255,.13); }
.principle { position: relative; min-height: 260px; padding: 38px 48px 30px 0; border-right: 1px solid rgba(255,255,255,.13); }
.principle + .principle { padding-left: 48px; }
.principle:last-child { border-right: 0; }
.principle-dot { display: block; width: 10px; height: 10px; margin-bottom: 68px; border: 2px solid var(--accent); border-radius: 50%; }
.principle h3 { margin-bottom: 12px; font-family: var(--font-display); font-size: 25px; }
.principle p { max-width: 300px; margin: 0; color: rgba(255,255,255,.62); font-size: 15px; }
.manifesto { position: relative; min-height: 360px; display: flex; align-items: center; justify-content: center; margin-top: 65px; overflow: hidden; border-radius: var(--radius-lg); background: linear-gradient(135deg, #164f44, #1f6b5b); text-align: center; }
.manifesto::before, .manifesto::after { content: ""; position: absolute; width: 370px; height: 370px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.manifesto::before { left: -120px; top: -190px; box-shadow: 0 0 0 60px rgba(255,255,255,.015); }
.manifesto::after { right: -120px; bottom: -190px; box-shadow: 0 0 0 60px rgba(255,255,255,.015); }
.manifesto-mark { position: absolute; top: 42px; left: 50%; transform: translateX(-50%); }
.manifesto-mark i:nth-child(1) { width: 13px; height: 13px; left: 1px; top: 9px; background: #fff; }
.manifesto-mark i:nth-child(2) { width: 10px; height: 10px; right: 1px; top: 2px; background: var(--brand-soft); }
.manifesto-mark i:nth-child(3) { width: 8px; height: 8px; right: 3px; bottom: 2px; background: var(--accent); }
.manifesto p { position: relative; z-index: 1; margin: 30px 0 0; font-family: var(--font-display); font-size: clamp(38px, 5vw, 67px); font-weight: 600; line-height: 1.15; letter-spacing: -.05em; }
.manifesto em { color: var(--accent); font-style: normal; }

.waitlist-section { padding: 130px 0; color: #fff; background: #0f4c40; }
.waitlist-shell { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: center; }
.section-kicker-light { color: var(--accent); }
.waitlist-copy > p:not(.section-kicker) { max-width: 500px; color: rgba(255,255,255,.72); font-size: 18px; }
.waitlist-benefits { margin: 36px 0 0; padding: 0; list-style: none; }
.waitlist-benefits li { display: flex; gap: 12px; margin: 13px 0; color: rgba(255,255,255,.82); font-size: 14px; }
.waitlist-benefits span { color: var(--accent); }
.form-card { min-height: 630px; padding: 44px; border-radius: 28px; color: var(--ink); background: #fff; box-shadow: 0 35px 90px rgba(0,0,0,.18); }
.form-card form[hidden], .form-success[hidden] { display: none; }
.field { margin-bottom: 19px; }
.field label, .phone-fieldset legend { display: block; margin-bottom: 7px; font-size: 13px; font-weight: 600; }
.field input, .field select { width: 100%; height: 51px; padding: 0 15px; border: 1px solid #cfd8d3; border-radius: 11px; color: var(--ink); background: #fbfcfb; outline: 0; transition: border .2s ease, box-shadow .2s ease, background .2s ease; }
.field input::placeholder { color: #96a29d; }
.field input:hover, .field select:hover { border-color: #9daca6; }
.field input:focus, .field select:focus { border-color: var(--brand); background: #fff; box-shadow: 0 0 0 3px rgba(21, 91, 77, .12); }
.field input[aria-invalid="true"], .field select[aria-invalid="true"] { border-color: var(--danger); box-shadow: 0 0 0 3px rgba(166, 55, 55, .09); }
.phone-fieldset { margin: 0 0 19px; padding: 0; border: 0; }
.phone-row { display: grid; grid-template-columns: 135px 1fr; gap: 10px; }
.phone-row .field { margin: 0; }
.field-error { display: block; min-height: 0; color: var(--danger); font-size: 12px; }
.field-error:not(:empty) { margin-top: 6px; }
.consent-field { display: grid; grid-template-columns: 20px 1fr; gap: 9px; margin-top: 7px; }
.consent-field input { width: 18px; height: 18px; margin: 3px 0 0; accent-color: var(--brand); }
.consent-field label { color: #596661; font-size: 12.5px; line-height: 1.55; }
.consent-field a { color: var(--brand); text-decoration: underline; text-underline-offset: 2px; }
.form-submit { position: relative; width: 100%; margin-top: 24px; }
.form-submit:disabled { cursor: wait; opacity: .78; transform: none; }
.button-loader { display: none; width: 17px; height: 17px; border: 2px solid rgba(255,255,255,.45); border-top-color: #fff; border-radius: 50%; animation: spin .8s linear infinite; }
.form-submit.loading .button-loader { display: block; }
.form-submit.loading .button-arrow { display: none; }
.form-note { margin: 14px 5px 0; color: #7a8782; font-size: 11px; line-height: 1.5; text-align: center; }
.form-note a { color: var(--brand); text-decoration: underline; text-underline-offset: 2px; }
.form-status { margin-top: 11px; border-radius: 9px; font-size: 13px; text-align: center; }
.form-status.error { padding: 10px; color: #872f2f; background: #fff0f0; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form-success { min-height: 535px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: 24px; }
.success-icon { display: grid; place-items: center; width: 58px; height: 58px; margin-bottom: 36px; border-radius: 50%; color: var(--brand); background: var(--accent); font-size: 24px; }
.form-success h3 { margin-bottom: 15px; font-family: var(--font-display); font-size: 38px; line-height: 1.15; letter-spacing: -.04em; }
.form-success > p:not(.section-kicker) { max-width: 430px; color: var(--ink-soft); }
.text-button { margin-top: 22px; padding: 0 0 3px; border: 0; border-bottom: 1px solid var(--brand); color: var(--brand); background: none; cursor: pointer; font-weight: 600; }

.faq-section { background: var(--surface); }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 110px; }
.faq-heading { position: sticky; top: 120px; align-self: start; }
.accordion { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item h3 { margin: 0; }
.faq-item button { width: 100%; min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 22px 0; border: 0; color: var(--ink); background: transparent; text-align: left; cursor: pointer; font-family: var(--font-display); font-size: 17px; font-weight: 600; }
.faq-item button span { position: relative; flex: 0 0 30px; width: 30px; height: 30px; border-radius: 50%; background: var(--surface-muted); }
.faq-item button span::before, .faq-item button span::after { content: ""; position: absolute; top: 14px; left: 9px; width: 12px; height: 1.5px; background: var(--brand); transition: transform .2s ease; }
.faq-item button span::after { transform: rotate(90deg); }
.faq-item button[aria-expanded="true"] span::after { transform: rotate(0); }
.faq-panel p { max-width: 650px; margin: 0; padding: 0 65px 26px 0; color: var(--ink-soft); font-size: 15px; }

.site-footer { padding: 70px 0 24px; color: rgba(255,255,255,.8); background: #0e1714; }
.brand-footer { color: #fff; }
.brand-footer .brand-mark i:nth-child(1) { background: #fff; }
.footer-top { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; padding-bottom: 64px; }
.footer-top > div:first-child > p { margin: 20px 0 0; color: rgba(255,255,255,.45); font-size: 14px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-links > div { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
.footer-links > div > span { margin-bottom: 7px; color: rgba(255,255,255,.36); font-size: 11px; letter-spacing: .09em; text-transform: uppercase; }
.footer-links a { color: rgba(255,255,255,.72); font-size: 14px; transition: color .2s ease; }
.footer-links a:hover { color: var(--accent); }
.social-links a { display: inline-flex; align-items: center; gap: 6px; }
.social-links a span { color: rgba(255,255,255,.35); font-size: 11px; transition: transform .2s ease, color .2s ease; }
.social-links a:hover span { color: var(--accent); transform: translate(2px, -2px); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.09); }
.footer-bottom p { margin: 0; color: rgba(255,255,255,.35); font-size: 11px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.legal-page { background: #f7f8f5; }
.legal-header { position: static; background: rgba(255,255,255,.8); border-bottom: 1px solid var(--line); }
.legal-header .header-inner { height: var(--header-height); }
.legal-back { color: var(--brand); font-size: 14px; font-weight: 600; }
.legal-main { padding: 90px 0 120px; }
.legal-article { max-width: 800px; margin-inline: auto; }
.legal-article .section-kicker { margin-bottom: 14px; }
.legal-article h1 { margin-bottom: 18px; font-family: var(--font-display); font-size: clamp(42px, 6vw, 68px); line-height: 1.08; letter-spacing: -.05em; }
.legal-updated { margin-bottom: 55px; color: #7a8782; font-size: 13px; }
.legal-notice { margin-bottom: 45px; padding: 20px 22px; border: 1px solid #d8e5df; border-radius: 14px; color: #475851; background: #eff6f2; font-size: 14px; }
.legal-article h2 { margin: 42px 0 12px; font-family: var(--font-display); font-size: 23px; letter-spacing: -.025em; }
.legal-article p, .legal-article li { color: #52615c; }
.legal-article a { color: var(--brand); text-decoration: underline; }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes scroll-dot { 0% { transform: translateY(0); opacity: 0; } 35% { opacity: 1; } 100% { transform: translateY(9px); opacity: 0; } }
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 1024px) {
  .hero-grid { gap: 20px; }
  .hero h1 { font-size: clamp(50px, 6vw, 66px); }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .value-card { min-height: 320px; }
  .icon-box { margin-bottom: 55px; }
  .problem-layout, .audience-grid, .waitlist-shell, .faq-grid { gap: 60px; }
}

@media (max-width: 820px) {
  :root { --header-height: 68px; }
  .section { padding: 100px 0; }
  .menu-toggle { display: block; position: relative; z-index: 102; }
  .main-nav { position: fixed; z-index: 101; inset: 0; display: flex; flex-direction: column; align-items: stretch; justify-content: center; gap: 4px; padding: 90px 28px 40px; visibility: hidden; opacity: 0; background: rgba(247,248,245,.98); transform: translateY(-12px); transition: opacity .25s ease, transform .25s ease, visibility .25s; }
  .main-nav.open { visibility: visible; opacity: 1; transform: translateY(0); }
  .main-nav > a:not(.button) { padding: 14px 0; border-bottom: 1px solid var(--line); font-family: var(--font-display); font-size: 26px; }
  .main-nav .button { margin-top: 24px; }
  .hero { height: auto; min-height: 930px; padding-top: 130px; }
  .hero-grid { grid-template-columns: 1fr; gap: 35px; }
  .hero-copy { text-align: center; }
  .eyebrow { justify-content: center; }
  .hero h1, .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-actions { flex-direction: column; }
  .hero-actions p { max-width: none; }
  .hero-visual { width: min(92vw, 440px); justify-self: center; }
  .scroll-cue { display: none; }
  .problem-layout, .audience-grid, .waitlist-shell, .faq-grid { grid-template-columns: 1fr; }
  .problem-layout { gap: 34px; }
  .bridge-statement { margin-top: 60px; }
  .audience-grid, .waitlist-shell { gap: 55px; }
  .principles-grid { grid-template-columns: 1fr; }
  .principle, .principle + .principle { min-height: auto; padding: 30px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.13); }
  .principle-dot { margin-bottom: 28px; }
  .principle:last-child { border-bottom: 0; }
  .faq-grid { gap: 30px; }
  .faq-heading { position: static; }
  .footer-top { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 82px 0; }
  .hero { min-height: 850px; padding: 115px 0 60px; }
  .hero h1 { font-size: clamp(43px, 13vw, 58px); }
  .hero-lead { font-size: 16.5px; }
  .eyebrow { font-size: 10.5px; }
  .button-large { width: 100%; font-size: 14px; }
  .hero-visual { width: min(97vw, 390px); max-width: 100%; }
  .concept-card { min-width: 104px; padding: 9px 12px; font-size: 11px; }
  .concept-one { left: 0; }.concept-two { right: 0; }.concept-three { left: 0; }.concept-four { right: 0; }
  .section h2, .waitlist-section h2 { font-size: 39px; }
  .section-intro { margin-bottom: 40px; }
  .problem-lead { font-size: 18px; }
  .challenge-list li { grid-template-columns: 38px 1fr; }
  .challenge-list p { font-size: 15px; }
  .bridge-statement { display: block; }
  .bridge-line { display: block; margin-bottom: 25px; }
  .value-grid { grid-template-columns: 1fr; }
  .value-card { min-height: 270px; }
  .icon-box { margin-bottom: 35px; }
  .audience-copy blockquote { font-size: 17px; }
  .principles-heading { display: block; }
  .manifesto { min-height: 300px; margin-top: 45px; }
  .manifesto p { font-size: 38px; }
  .waitlist-section { padding: 82px 0; }
  .form-card { min-height: 0; padding: 25px 20px; border-radius: 22px; }
  .phone-row { grid-template-columns: 119px 1fr; }
  .field input, .field select { padding: 0 12px; }
  .form-success { min-height: 480px; padding: 10px; }
  .form-success h3 { font-size: 32px; }
  .faq-item button { min-height: 76px; font-size: 15px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); gap: 34px 20px; }
  .social-links { grid-column: 1 / -1; }
  .footer-bottom { display: block; }
  .footer-bottom p + p { margin-top: 7px; }
  .legal-main { padding-top: 60px; }
}

@media (max-width: 360px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .hero h1 { font-size: 40px; }
  .eyebrow { display: block; line-height: 1.5; }
  .eyebrow span { display: inline-block; margin-right: 7px; }
  .hero-visual { width: 100%; margin-left: 0; }
  .phone-row { grid-template-columns: 110px 1fr; }
  .form-card { padding-inline: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .site-footer { display: none; }
  .legal-main { padding: 20px 0; }
  body { background: #fff; }
}
