:root {
  --green-950: #063a2b;
  --green-900: #074b35;
  --green-800: #0a5c3f;
  --green-700: #08734b;
  --green-500: #25a96f;
  --mint: #b9f3d1;
  --lime: #dcff79;
  --paper: #f7f7f2;
  --white: #ffffff;
  --ink: #15201b;
  --muted: #66706b;
  --line: #d9dfda;
  --radius: 1.5rem;
  --font-display: "Manrope", sans-serif;
  --font-body: "DM Sans", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--font-body); font-size: 1rem; line-height: 1.6; overflow-x: hidden; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 1rem; top: -100px; z-index: 100; padding: .75rem 1rem; background: white; color: var(--green-900); border-radius: .5rem; }
.skip-link:focus { top: 1rem; }

.site-header { position: fixed; z-index: 50; inset: 0 0 auto; color: white; transition: background .25s ease, box-shadow .25s ease, color .25s ease; }
.site-header.scrolled { background: rgba(247,247,242,.94); color: var(--ink); box-shadow: 0 1px 0 rgba(10,50,35,.1); backdrop-filter: blur(16px); }
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: center; gap: .7rem; font-family: var(--font-display); }
.brand-symbol { width: 46px; height: 40px; object-fit: cover; border-radius: .45rem; }
.brand > span:last-child { display: grid; line-height: 1; }
.brand strong { font-size: 1.08rem; letter-spacing: .06em; }
.brand small { margin-top: .32rem; font-size: .59rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; opacity: .72; }
.main-nav { display: flex; align-items: center; gap: 1.25rem; font-size: .9rem; font-weight: 600; }
.main-nav > a:not(.nav-cta) { position: relative; }
.main-nav > a:not(.nav-cta)::after { content: ""; position: absolute; height: 1px; left: 0; right: 100%; bottom: -.3rem; background: currentColor; transition: right .25s ease; }
.main-nav > a:hover::after, .main-nav > a:focus-visible::after { right: 0; }
.nav-cta { padding: .7rem 1.1rem; border: 1px solid currentColor; border-radius: 999px; }
.language-switch { display: inline-flex; padding: 3px; border: 1px solid currentColor; border-radius: 999px; }
.language-switch button { min-width: 37px; min-height: 32px; padding: .25rem .55rem; border: 0; border-radius: 999px; color: inherit; background: transparent; font: 700 .875rem var(--font-body); cursor: pointer; }
.language-switch button[aria-pressed="true"] { color: var(--green-950); background: var(--lime); }
.site-header.scrolled .language-switch button[aria-pressed="true"] { color: white; background: var(--green-900); }
.language-switch button:focus-visible { outline: 2px solid var(--lime); outline-offset: 2px; }
.menu-button { display: none; border: 0; background: transparent; color: currentColor; padding: .5rem; }
.menu-button > span:not(.sr-only) { display: block; width: 25px; height: 2px; margin: 5px 0; background: currentColor; transition: transform .2s ease, opacity .2s ease; }

.hero { position: relative; min-height: 780px; padding: 10rem 0 5rem; color: white; background: var(--green-800); overflow: hidden; }
.hero::before { content: ""; position: absolute; width: 720px; height: 720px; border-radius: 50%; top: -310px; right: -240px; background: radial-gradient(circle at 40% 40%, rgba(220,255,121,.35), transparent 65%); }
.hero::after { content: ""; position: absolute; inset: 0; opacity: .11; background-image: linear-gradient(rgba(255,255,255,.3) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.3) 1px, transparent 1px); background-size: 68px 68px; mask-image: linear-gradient(to right, transparent 10%, black 100%); }
.hero-noise { position: absolute; inset: 0; pointer-events: none; opacity: .18; background: radial-gradient(circle at 15% 80%, rgba(185,243,209,.4), transparent 35%); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 5rem; }
.eyebrow { margin: 0 0 1rem; color: var(--green-700); font-size: .76rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow.light { color: var(--mint); }
.hero h1 { max-width: 740px; margin: 0; font: 700 clamp(4.7rem, 9vw, 8.4rem)/.86 var(--font-display); letter-spacing: -.07em; }
.hero h1 em { color: var(--lime); font-weight: 500; font-style: normal; }
.hero-lead { max-width: 600px; margin: 2rem 0 0; font-size: clamp(1.08rem, 1.8vw, 1.35rem); line-height: 1.5; color: rgba(255,255,255,.84); }
.hero-actions { margin-top: 2.2rem; display: flex; align-items: center; gap: 1.8rem; flex-wrap: wrap; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 1rem; padding: .85rem 1.25rem; border-radius: 999px; font-weight: 700; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-light { background: white; color: var(--green-900); }
.button-light:hover { background: var(--lime); }
.text-link { font-weight: 600; padding-block: .5rem; }
.light-link { color: white; }
.text-link span { display: inline-block; margin-left: .4rem; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.hero-art { position: relative; min-height: 480px; display: grid; place-items: center; }
.hero-word { position: relative; z-index: 3; transform: rotate(-8deg); color: var(--lime); font: 800 clamp(4.8rem, 9vw, 8.6rem)/1 var(--font-display); letter-spacing: -.08em; text-shadow: 14px 14px 0 rgba(6,58,43,.35); }
.orbit { position: absolute; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; }
.orbit-one { width: 380px; height: 380px; }
.orbit-two { width: 260px; height: 260px; border-color: rgba(220,255,121,.65); }
.orbit::after { content: ""; position: absolute; width: 12px; height: 12px; border-radius: 50%; background: var(--lime); top: 7%; left: 22%; box-shadow: 0 0 0 7px rgba(220,255,121,.12); }
.hero-note { position: absolute; z-index: 4; padding: .55rem .9rem; background: white; color: var(--green-900); font-size: .8rem; font-weight: 700; border-radius: 999px; transform: rotate(5deg); }
.note-one { top: 24%; left: 4%; }
.note-two { bottom: 20%; right: 3%; transform: rotate(-4deg); }
.ticker { position: absolute; z-index: 3; bottom: 0; left: 0; width: 100%; overflow: hidden; padding: .9rem 0; border-top: 1px solid rgba(255,255,255,.24); border-bottom: 1px solid rgba(255,255,255,.24); white-space: nowrap; color: var(--mint); font-size: .75rem; font-weight: 700; letter-spacing: .13em; }
.ticker div { width: max-content; animation: marquee 30s linear infinite; }
@keyframes marquee { to { transform: translateX(-50%); } }

.opening-question { padding: 8rem 0; background: var(--paper); }
.question-grid { display: grid; grid-template-columns: 1fr 270px; gap: 4rem; align-items: start; }
.section-number { width: 56px; height: 56px; display: grid; place-items: center; border: 1px solid var(--green-700); color: var(--green-700); border-radius: 50%; font: 700 .85rem var(--font-display); }
.question-copy h2, .section-heading h2, .story-copy h2, .policy-title h2, .impact-intro h2, .movement-inner h2 { margin: 0; font: 600 clamp(2.5rem, 5.3vw, 5rem)/1.06 var(--font-display); letter-spacing: -.055em; }
.question-copy > p:last-child { max-width: 720px; margin: 2rem 0 0; color: var(--muted); font-size: 1.08rem; }
.question-aside { align-self: end; padding-top: 2rem; }
.official-logo { width: 100%; aspect-ratio: 1; object-fit: cover; margin-bottom: 2rem; border-radius: 1.25rem; box-shadow: 0 18px 45px rgba(6,58,43,.12); }
.question-aside p { margin-top: 2.4rem; padding-top: 1rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .92rem; }
.scribble { display: inline-block; color: var(--green-700); font: 500 1.15rem/1.2 var(--font-display); border-bottom: 2px solid var(--green-500); }

.numbers-section { padding: 8rem 0; background: white; }
.section-heading { max-width: 880px; }
.section-heading h2 { font-size: clamp(2.6rem, 5.2vw, 4.8rem); }
.number-layout { margin-top: 4.5rem; display: grid; grid-template-columns: .85fr 1.15fr; gap: 5rem; align-items: start; }
.big-number-card { position: sticky; top: 120px; padding: 2.8rem; border-radius: var(--radius); background: var(--lime); }
.big-number-card strong { display: block; color: var(--green-950); font: 700 clamp(4.8rem, 9vw, 8.8rem)/.9 var(--font-display); letter-spacing: -.075em; }
.big-number-card p { margin: 2rem 0 1rem; font-size: 1.08rem; line-height: 1.5; }
.big-number-card small { color: rgba(21,32,27,.65); font-size: .75rem; }
.context-list { border-top: 1px solid var(--line); }
.context-item { display: grid; grid-template-columns: 60px 1fr; gap: 1rem; padding: 2rem 0; border-bottom: 1px solid var(--line); }
.context-item > span { color: var(--green-700); font: 700 .8rem var(--font-display); }
.context-item h3 { margin: 0 0 .6rem; font: 650 1.45rem var(--font-display); letter-spacing: -.025em; }
.context-item p { margin: 0; color: var(--muted); }

.story-section { padding: 8rem 0; color: white; background: var(--green-950); }
.story-grid { display: grid; grid-template-columns: 170px 1fr 310px; gap: 4rem; align-items: start; }
.section-number.pale { border-color: var(--mint); color: var(--mint); margin-bottom: 2rem; }
.story-copy h2 { color: var(--mint); }
.story-copy p { max-width: 700px; color: rgba(255,255,255,.72); }
.story-copy .story-lead { margin-top: 2rem; color: white; font-size: 1.45rem; line-height: 1.45; }
.story-quote { margin-top: 7rem; padding: 1.5rem 0 0; border-top: 1px solid rgba(255,255,255,.25); }
.story-quote blockquote { margin: 0 0 1.5rem; color: var(--lime); font: 500 1.5rem/1.35 var(--font-display); letter-spacing: -.025em; }
.story-quote span { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; opacity: .6; }

.solutions-section { padding: 8rem 0; background: var(--paper); }
.section-heading.wide { max-width: none; display: grid; grid-template-columns: 1fr 330px; gap: 4rem; align-items: end; }
.section-heading.wide > p { margin: 0; color: var(--muted); }
.solution-stack { margin-top: 4.5rem; display: grid; gap: 1.5rem; }
.solution-card { min-height: 600px; display: grid; grid-template-columns: 150px 1fr 1fr; gap: 2rem; padding: 3rem; border-radius: var(--radius); overflow: hidden; }
.solution-card.youtube { background: var(--mint); }
.solution-index { white-space: nowrap; font: 700 .75rem var(--font-display); text-transform: uppercase; letter-spacing: .1em; }
.solution-copy { align-self: center; max-width: 490px; }
.pill { display: inline-flex; padding: .45rem .8rem; background: white; border-radius: 999px; color: var(--green-800); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.pill.dark { color: white; background: var(--green-950); }
.solution-copy h3 { margin: 1.3rem 0 1.2rem; font: 650 clamp(2.3rem, 4vw, 4rem)/1.03 var(--font-display); letter-spacing: -.055em; }
.solution-copy p { color: rgba(21,32,27,.72); }
.solution-copy ul { display: flex; flex-wrap: wrap; gap: .6rem; list-style: none; padding: 0; margin: 1.8rem 0 0; }
.solution-copy li { padding: .5rem .75rem; border: 1px solid rgba(6,58,43,.25); border-radius: 999px; font-size: .78rem; }
.episode-board { position: relative; align-self: stretch; min-height: 490px; }
.episode { position: absolute; width: 178px; aspect-ratio: 9 / 16; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.15rem; color: white; border: 6px solid white; background: var(--green-800); box-shadow: 0 15px 35px rgba(6,58,43,.18); overflow: hidden; }
.episode img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.episode::after { content: ""; position: absolute; inset: 38% 0 0; background: linear-gradient(transparent, rgba(2,24,17,.82)); }
.episode span, .episode strong { position: relative; z-index: 2; text-shadow: 0 1px 8px rgba(0,0,0,.35); }
.episode span { font-size: .66rem; font-weight: 700; letter-spacing: .1em; }
.episode strong { font: 650 1.25rem var(--font-display); }
.ep-1 { top: 1%; right: 13%; transform: rotate(4deg); }
.ep-2 { left: 2%; top: 26%; transform: rotate(-6deg); }
.ep-3 { bottom: 0; right: 1%; transform: rotate(3deg); }
.play { position: absolute; z-index: 5; left: 44%; top: 44%; width: 76px; height: 76px; display: grid; place-items: center; border-radius: 50%; background: var(--lime); color: var(--green-950); box-shadow: 0 10px 24px rgba(6,58,43,.25); }
.app-card { background: var(--green-700); color: white; }
.app-card .solution-copy p { color: rgba(255,255,255,.72); }
.feature-tags { margin-top: 1.8rem; display: flex; flex-wrap: wrap; gap: .6rem; }
.feature-tags span { padding: .52rem .78rem; border: 1px solid rgba(255,255,255,.32); border-radius: 999px; font-size: .78rem; }
.phone-shell { width: min(290px, 100%); height: 540px; align-self: center; justify-self: center; padding: 1.4rem 1rem 1rem; border: 8px solid var(--green-950); border-radius: 2.8rem; background: #f7f9f5; color: var(--ink); box-shadow: 0 28px 48px rgba(6,58,43,.3); transform: rotate(4deg); }
.phone-top { display: flex; justify-content: space-between; align-items: center; padding: 0 .2rem 1.5rem; color: var(--green-800); font-weight: 800; }
.phone-top i { width: 24px; height: 24px; border-radius: 50%; background: var(--mint); }
.phone-greeting { padding: 1rem; border-radius: 1rem; background: var(--mint); font: 700 1.15rem var(--font-display); }
.phone-greeting small { display: block; margin-top: .3rem; color: var(--muted); font: 400 .75rem var(--font-body); }
.phone-progress { height: 110px; margin-top: 1rem; padding: 1rem; border-radius: 1rem; color: white; background: var(--green-800); }
.phone-progress span { display: block; width: 54px; height: 54px; margin-bottom: .4rem; border-radius: 50%; background: conic-gradient(var(--lime) 72%, rgba(255,255,255,.25) 0); }
.phone-progress small { font-size: .7rem; }
.phone-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; margin-top: .7rem; }
.phone-tiles i { height: 70px; border-radius: .8rem; background: #e6ebe6; }
.phone-tiles i:nth-child(2), .phone-tiles i:nth-child(3) { background: #daf3e4; }
.phone-nav { display: flex; justify-content: space-around; margin-top: 1.2rem; }
.phone-nav b { width: 9px; height: 9px; border-radius: 50%; background: #a6b0aa; }
.phone-nav b:first-child { background: var(--green-700); }

.policy-section { padding: 8rem 0; background: white; }
.policy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }
.policy-title h2 { font-size: clamp(2.6rem, 4.8vw, 4.5rem); }
.policy-copy { padding-top: 2.1rem; color: var(--muted); font-size: 1.08rem; }
.policy-line { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 2rem; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.policy-line > div { padding: 1.8rem; border-right: 1px solid var(--line); }
.policy-line > div:last-child { border-right: 0; }
.policy-line strong, .policy-line span { display: block; }
.policy-line strong { color: var(--green-700); font: 650 1.5rem var(--font-display); }
.policy-line span { color: var(--muted); font-size: .86rem; }

.impact-section { padding: 8rem 0; background: var(--paper); }
.impact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 6rem; }
.impact-intro { position: sticky; top: 120px; align-self: start; }
.impact-intro .section-number { margin-bottom: 2rem; }
.impact-intro h2 { font-size: clamp(2.7rem, 4.5vw, 4.3rem); }
.impact-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.impact-card { min-height: 250px; padding: 2rem; display: flex; flex-direction: column; justify-content: flex-end; border: 1px solid var(--line); border-radius: 1.2rem; background: white; }
.impact-card > span { margin-bottom: auto; color: var(--green-700); font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.impact-card h3 { margin: 2rem 0 .4rem; font: 650 1.8rem var(--font-display); }
.impact-card p { margin: 0; color: var(--muted); font-size: .9rem; }
.impact-card.dark-card { background: var(--green-950); border-color: var(--green-950); color: white; }
.impact-card.dark-card > span { color: var(--mint); }
.impact-card.dark-card p { color: rgba(255,255,255,.65); }

.testimonials-section { padding: 8rem 0; background: white; }
.testimonials-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 7rem; align-items: start; }
.testimonials-copy { position: sticky; top: 120px; }
.testimonials-copy h2 { margin: 0; font: 600 clamp(2.8rem, 5vw, 4.8rem)/1.04 var(--font-display); letter-spacing: -.055em; }
.testimonials-copy > p:last-child { max-width: 500px; margin-top: 1.7rem; color: var(--muted); font-size: 1.05rem; }
.testimonial-form { padding: clamp(1.5rem, 4vw, 3rem); border-radius: var(--radius); background: var(--paper); }
.form-field { margin-bottom: 1.5rem; }
.form-field label { display: block; margin-bottom: .55rem; font-weight: 700; }
.form-field label span { color: var(--muted); font-size: .75rem; font-weight: 400; }
.form-field input, .form-field textarea { width: 100%; border: 1px solid var(--line); border-radius: .85rem; background: white; color: var(--ink); font: inherit; outline: 0; transition: border .2s, box-shadow .2s; }
.form-field input { min-height: 52px; padding: 0 1rem; }
.form-field textarea { min-height: 210px; padding: 1rem; resize: vertical; }
.form-field input:focus, .form-field textarea:focus { border-color: var(--green-700); box-shadow: 0 0 0 3px rgba(37,169,111,.14); }
.form-field small { display: block; margin-top: .55rem; color: var(--muted); font-size: .75rem; }
.consent-row { display: grid; grid-template-columns: 20px 1fr; gap: .8rem; align-items: start; color: var(--muted); font-size: .82rem; cursor: pointer; }
.consent-row input { width: 18px; height: 18px; margin-top: .15rem; accent-color: var(--green-700); }
.submit-button { margin-top: 1.7rem; border: 0; background: var(--green-800); color: white; cursor: pointer; }
.submit-button:disabled { cursor: wait; opacity: .65; }
.form-status { min-height: 1.5rem; margin: 1rem 0 0; color: var(--green-800); font-weight: 600; }
.form-status.error { color: #a02b2b; }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.published-testimonials { grid-column: 1 / -1; margin-top: 2rem; padding-top: 4rem; border-top: 1px solid var(--line); }
.published-heading h3 { margin: 0; font: 600 clamp(2rem, 4vw, 3.5rem)/1.08 var(--font-display); letter-spacing: -.045em; }
.published-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.5rem; }
.published-list article { min-height: 230px; padding: 1.6rem; display: flex; flex-direction: column; justify-content: space-between; border-radius: 1.2rem; background: var(--paper); }
.published-list blockquote { margin: 0; font: 500 1.08rem/1.5 var(--font-display); }
.published-list p { margin: 2rem 0 0; color: var(--green-700); font-size: .82rem; font-weight: 700; }

.admin-body { min-height: 100vh; background: var(--paper); }
.admin-header { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 1rem max(24px, calc((100vw - 1180px) / 2)); color: white; background: var(--green-950); }
.admin-back { font-weight: 700; }
.admin-main { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 5rem 0; }
.admin-title { display: flex; align-items: end; justify-content: space-between; gap: 2rem; }
.admin-title h1 { margin: 0; font: 650 clamp(2.6rem, 6vw, 5.2rem)/1 var(--font-display); letter-spacing: -.06em; }
.admin-filter { display: flex; flex-wrap: wrap; gap: .45rem; }
.admin-filter button { padding: .65rem .9rem; border: 1px solid var(--line); border-radius: 999px; background: white; color: var(--ink); font: 600 .8rem var(--font-body); cursor: pointer; }
.admin-filter button.active { border-color: var(--green-800); background: var(--green-800); color: white; }
.admin-feedback { margin: 3rem 0 1rem; color: var(--muted); }
.admin-feedback.error { color: #a02b2b; }
.admin-list { display: grid; gap: 1rem; }
.admin-testimonial { padding: 1.5rem; border: 1px solid var(--line); border-radius: 1.2rem; background: white; }
.admin-testimonial-top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.status-badge { padding: .35rem .6rem; border-radius: 999px; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; }
.status-badge.pending { color: #725200; background: #fff2b2; }
.status-badge.approved { color: var(--green-900); background: var(--mint); }
.status-badge.rejected { color: #812626; background: #ffdcdc; }
.admin-testimonial > p { max-width: 850px; margin: 1.2rem 0; white-space: pre-wrap; }
.admin-testimonial time { display: block; color: var(--muted); font-size: .75rem; }
.admin-actions { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.3rem; padding-top: 1.1rem; border-top: 1px solid var(--line); }
.admin-actions button { padding: .62rem .8rem; border: 1px solid var(--line); border-radius: .65rem; background: white; color: var(--ink); font: 700 .75rem var(--font-body); cursor: pointer; }
.admin-actions button.approve { border-color: var(--green-700); background: var(--green-700); color: white; }
.admin-actions button.reject { border-color: #b86161; color: #8f2b2b; }
.admin-actions button.delete { margin-left: auto; border-color: transparent; color: #8f2b2b; }
.admin-empty { padding: 4rem 2rem; border: 1px dashed var(--line); border-radius: 1.2rem; color: var(--muted); text-align: center; background: white; }

.movement-section { padding: 3rem; background: var(--paper); }
.movement-inner { position: relative; padding: clamp(3rem, 8vw, 7rem); border-radius: 2rem; color: white; background: var(--green-800); overflow: hidden; }
.movement-inner::after { content: "OFREL"; position: absolute; right: -2rem; bottom: -4.2rem; color: rgba(255,255,255,.06); font: 800 clamp(8rem, 22vw, 18rem)/1 var(--font-display); letter-spacing: -.08em; pointer-events: none; }
.movement-inner h2 { position: relative; z-index: 1; max-width: 980px; }
.movement-inner > p:not(.eyebrow) { position: relative; z-index: 1; max-width: 650px; margin-top: 2rem; color: rgba(255,255,255,.72); font-size: 1.12rem; }
.movement-actions { position: relative; z-index: 1; margin-top: 2.5rem; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.movement-actions > span { color: var(--mint); font-size: .88rem; }

.site-footer { padding: 4rem 0 2rem; background: var(--green-950); color: white; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr .7fr auto; gap: 3rem; align-items: start; }
.footer-grid p { margin: 0; color: rgba(255,255,255,.6); font-size: .9rem; }
.footer-grid nav { display: grid; gap: .45rem; font-size: .88rem; }
.copyright { align-self: end; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .main-nav { gap: 1rem; }
  .main-nav a:not(.nav-cta) { display: none; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-art { min-height: 360px; }
  .question-grid { grid-template-columns: 1fr 230px; }
  .question-aside { padding-top: 0; max-width: 300px; }
  .story-grid { grid-template-columns: 130px 1fr; }
  .story-quote { grid-column: 2; margin-top: 1rem; max-width: 420px; }
  .solution-card { grid-template-columns: 85px 1fr; }
  .episode-board, .phone-shell { grid-column: 2; }
  .episode-board { width: 100%; }
  .phone-shell { justify-self: start; }
  .impact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .impact-intro { position: static; max-width: 700px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .container { width: min(100% - 28px, 1180px); }
  .nav-wrap { min-height: 70px; }
  .menu-button { display: block; z-index: 10000; }
  .main-nav { position: fixed; inset: 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.3rem; padding: 6rem 2rem; background: var(--green-950); color: white; transform: translateX(100%); transition: transform .3s ease; width: 100vw;}


  .main-nav.open { transform: translateX(0); }
  .main-nav a:not(.nav-cta) { display: block; font: 600 1.9rem var(--font-display); }
  .menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-header.scrolled .main-nav.open { color: white; }
  body.menu-open .site-header.scrolled {
  background: var(--green-950);
  color: white;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}
  .site-header.scrolled .main-nav.open .language-switch button[aria-pressed="true"] { color: var(--green-950); background: var(--lime); }
  .hero { padding: 8.5rem 0 5.5rem; }
  .hero h1 { font-size: clamp(4rem, 20vw, 6.2rem); }
  .hero-art { min-height: 300px; }
  .hero-word { font-size: 4.6rem; }
  .orbit-one { width: 270px; height: 270px; }
  .orbit-two { width: 185px; height: 185px; }
  .opening-question, .numbers-section, .story-section, .solutions-section, .policy-section, .impact-section { padding: 5.5rem 0; }
  .question-grid, .story-grid, .number-layout, .section-heading.wide, .policy-grid, .testimonials-grid { grid-template-columns: 1fr; gap: 2rem; }
  .question-aside, .story-quote { grid-column: auto; }
  .question-aside { padding: 1rem 0 0; }
  .big-number-card, .impact-intro { position: static; }
  .testimonials-copy { position: static; }
  .story-label { display: flex; justify-content: space-between; }
  .story-quote { margin-top: 0; }
  .section-heading.wide { align-items: start; }
  .solution-card { min-height: auto; grid-template-columns: 1fr; padding: 1.5rem; gap: 1.5rem; }
  .solution-index, .solution-copy, .episode-board, .phone-shell { grid-column: auto; }
  .solution-copy h3 { font-size: 2.5rem; }
  .episode-board { min-height: 410px; }
  .episode { width: 146px; border-width: 5px; }
  .play { left: 40%; }
  .phone-shell { justify-self: center; width: 270px; }
  .policy-line, .impact-cards { grid-template-columns: 1fr; }
  .policy-line > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .policy-line > div:last-child { border-bottom: 0; }
  .movement-section { padding: .8rem; }
  .movement-inner { border-radius: 1.3rem; padding: 3rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .copyright { margin-top: 2rem !important; }
  .published-list { grid-template-columns: 1fr; }
  .admin-main { width: min(100% - 28px, 1180px); padding: 3rem 0; }
  .admin-title { align-items: flex-start; flex-direction: column; }
  .admin-header { min-height: 76px; padding-inline: 14px; }
}

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