:root {
  --paper: #f7f3e9;
  --paper-2: #efe9dc;
  --ink: #0c2540;
  --ink-soft: #40566a;
  --navy: #071f37;
  --blue: #087bd8;
  --teal: #00a98f;
  --orange: #bd4b00;
  --pink: #e92882;
  --white: #fffdf8;
  --line: rgba(12, 37, 64, .13);
  --shadow: 0 28px 70px rgba(15, 47, 70, .14);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }
.wrap { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.skip-link { position: fixed; top: -70px; left: 18px; z-index: 200; padding: 12px 18px; border-radius: 12px; background: var(--white); color: var(--navy); font-weight: 800; box-shadow: var(--shadow); }
.skip-link:focus { top: 14px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--teal); font-size: .73rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 27px; height: 2px; background: currentColor; }
.section-kicker { margin: 0 0 18px; color: var(--teal); font-size: .72rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 0 22px; border: 1px solid var(--navy); border-radius: 999px; background: var(--navy); color: var(--white); font-size: .91rem; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); background: #103550; box-shadow: 0 14px 35px rgba(7,31,55,.2); }
.button.light { border-color: rgba(255,255,255,.32); background: transparent; }
.button.light:hover { background: rgba(255,255,255,.1); }
.button.ghost { border-color: var(--line); background: rgba(255,255,255,.45); color: var(--ink); }
.button.ghost:hover { background: var(--white); }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 80; padding: 16px 0; transition: padding .25s ease; }
.site-header.scrolled { padding: 8px 0; }
.nav-shell { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 70px; padding: 8px 10px 8px 16px; border: 1px solid rgba(255,255,255,.62); border-radius: 22px; background: rgba(247,243,233,.82); box-shadow: 0 14px 42px rgba(15,47,70,.09); backdrop-filter: blur(18px) saturate(130%); }
.brand { display: inline-flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand img { width: 138px; height: 54px; object-fit: contain; object-position: left center; }
.brand-origin { padding-left: 12px; border-left: 1px solid var(--line); color: var(--ink-soft); font-size: .7rem; line-height: 1.25; }
.brand-origin strong { display: block; color: var(--ink); font-size: .74rem; }
.desktop-nav { display: flex; align-items: center; gap: 5px; }
.desktop-nav > a:not(.nav-cta) { padding: 10px 12px; border-radius: 999px; color: var(--ink-soft); font-size: .84rem; font-weight: 700; }
.desktop-nav > a:not(.nav-cta):hover { background: rgba(255,255,255,.7); color: var(--ink); }
.nav-cta { min-height: 44px; padding-inline: 18px; }
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%; background: var(--white); cursor: pointer; }
.menu-toggle span { display: block; width: 18px; height: 2px; margin: 4px auto; border-radius: 4px; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-6px) rotate(-45deg); }
.mobile-nav { display: none; }

.hero { position: relative; min-height: 850px; padding: 150px 0 88px; overflow: hidden; }
.hero::before { content: ""; position: absolute; width: 650px; height: 650px; top: -200px; right: -240px; border: 1px solid rgba(8,123,216,.14); border-radius: 50%; box-shadow: 0 0 0 80px rgba(8,123,216,.025), 0 0 0 160px rgba(0,169,143,.018); }
.hero-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 62px; align-items: center; }
.hero-copy, .hero-visual { min-width: 0; }
.hero h1 { max-width: 10ch; margin: 0; font-family: "Fraunces", Georgia, serif; font-size: clamp(4rem, 7vw, 7.1rem); font-weight: 600; letter-spacing: -.06em; line-height: .87; }
.hero h1 em { color: var(--orange); font-style: italic; font-weight: 500; }
.hero-lead { max-width: 590px; margin: 30px 0 0; color: var(--ink-soft); font-size: clamp(1.03rem, 1.5vw, 1.2rem); line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-note { display: flex; align-items: center; gap: 12px; margin-top: 29px; color: var(--ink-soft); font-size: .8rem; }
.hero-note svg { flex: 0 0 auto; width: 27px; height: 27px; color: var(--pink); }
.initiative-designer { display: inline-flex; align-items: center; margin-top: 22px; padding: 12px 18px; border: 1px solid rgba(12,37,64,.12); border-radius: 18px; background: rgba(255,255,255,.52); box-shadow: 0 12px 30px rgba(15,47,70,.07); }
.initiative-designer p { margin: 0; line-height: 1.2; }
.initiative-designer p span { display: block; color: var(--ink-soft); font-size: .61rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.initiative-designer p strong { display: block; margin-top: 4px; color: var(--ink); font-family: "Fraunces", Georgia, serif; font-size: .95rem; font-weight: 600; }
.hero-visual { position: relative; min-height: 620px; }
.hero-photo { position: absolute; inset: 0 0 34px 45px; overflow: hidden; border-radius: 180px 28px 28px 28px; box-shadow: var(--shadow); }
.hero-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(7,31,55,.52)); }
.hero-photo picture { display: block; width: 100%; height: 100%; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.photo-caption { position: absolute; z-index: 2; right: 26px; bottom: 24px; max-width: 230px; padding: 15px 17px; border: 1px solid rgba(255,255,255,.25); border-radius: 15px; background: rgba(7,31,55,.58); color: #fff; backdrop-filter: blur(12px); }
.photo-caption span { display: block; color: #b9ddd6; font-size: .65rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.photo-caption strong { display: block; margin-top: 5px; font-family: "Fraunces", Georgia, serif; font-size: 1.14rem; }
.hero-card { position: absolute; z-index: 3; left: 0; bottom: 0; width: 230px; padding: 21px; border: 1px solid rgba(255,255,255,.65); border-radius: 24px; background: rgba(255,253,248,.92); box-shadow: 0 22px 50px rgba(15,47,70,.16); backdrop-filter: blur(15px); }
.hero-card span { color: var(--teal); font-size: .65rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.hero-card strong { display: block; margin-top: 8px; font-family: "Fraunces", Georgia, serif; font-size: 1.45rem; font-weight: 600; line-height: 1.05; }
.color-stroke { position: absolute; z-index: 4; width: 14px; height: 108px; top: 36px; right: -7px; border-radius: 12px; background: linear-gradient(var(--blue) 0 25%, var(--teal) 25% 50%, var(--orange) 50% 75%, var(--pink) 75%); }
.marquee { border-block: 1px solid var(--line); background: rgba(255,255,255,.4); overflow: hidden; }
.marquee-track { display: flex; width: max-content; animation: marquee 30s linear infinite; }
.marquee-list { display: flex; align-items: center; gap: 28px; padding: 18px 14px; list-style: none; margin: 0; }
.marquee-list li { display: flex; align-items: center; gap: 28px; color: var(--ink); font-family: "Fraunces", Georgia, serif; font-size: 1.06rem; white-space: nowrap; }
.marquee-list li::after { content: "✦"; color: var(--orange); font-size: .8rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

.intro { padding: 145px 0; }
.intro-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 95px; align-items: start; }
.intro h2, .section-head h2, .future-copy h2, .cta-copy h2 { margin: 0; font-family: "Fraunces", Georgia, serif; font-size: clamp(2.7rem, 5vw, 5.1rem); font-weight: 600; letter-spacing: -.045em; line-height: .98; }
.intro-copy > p { margin: 0; color: var(--ink-soft); font-size: 1.08rem; line-height: 1.8; }
.intro-copy > p + p { margin-top: 18px; }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 44px; border-block: 1px solid var(--line); }
.proof { padding: 25px 22px; border-left: 1px solid var(--line); }
.proof:first-child { padding-left: 0; border-left: 0; }
.proof strong { display: block; color: var(--blue); font-family: "Fraunces", Georgia, serif; font-size: 2.2rem; font-weight: 600; line-height: 1; }
.proof span { display: block; margin-top: 8px; color: var(--ink-soft); font-size: .75rem; line-height: 1.45; }

.pilot { padding: 130px 0; background: var(--navy); color: var(--white); overflow: hidden; }
.pilot .section-kicker { color: #65dac8; }
.section-head { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: end; margin-bottom: 65px; }
.section-head p { max-width: 560px; margin: 0 0 5px; color: #b6c5d1; line-height: 1.75; }
.pilot-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; }
.cohort { position: relative; min-height: 340px; padding: 36px; overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); background: rgba(255,255,255,.055); }
.cohort::before { content: attr(data-age); position: absolute; top: 14px; right: 24px; color: rgba(255,255,255,.04); font-family: "Fraunces", Georgia, serif; font-size: clamp(6rem, 12vw, 10rem); line-height: .8; }
.cohort-num { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; background: var(--orange); color: var(--navy); font-size: .75rem; font-weight: 900; }
.cohort:nth-child(2) .cohort-num { background: var(--teal); }
.cohort h3 { position: relative; margin: 52px 0 15px; font-family: "Fraunces", Georgia, serif; font-size: 2.25rem; font-weight: 600; }
.cohort p { position: relative; max-width: 48ch; margin: 0; color: #b6c5d1; line-height: 1.65; }
.cohort ul { position: relative; display: grid; gap: 10px; margin: 23px 0 0; padding: 0; list-style: none; }
.cohort li { display: flex; align-items: flex-start; gap: 10px; color: #edf3f7; font-size: .88rem; }
.cohort li::before { content: "↗"; color: #65dac8; font-weight: 800; }
.location-band { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 24px; padding: 32px 36px; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); background: linear-gradient(90deg, rgba(8,123,216,.2), rgba(0,169,143,.14)); }
.location-pin { display: flex; align-items: center; gap: 18px; }
.location-pin svg { width: 42px; height: 42px; color: var(--orange); }
.location-pin span { display: block; color: #8da6b9; font-size: .68rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.location-pin strong { display: block; margin-top: 4px; font-family: "Fraunces", Georgia, serif; font-size: 1.45rem; }
.location-band p { max-width: 540px; margin: 0; color: #b6c5d1; font-size: .88rem; line-height: 1.65; }

.pillars { padding: 145px 0; }
.pillars .section-head p { color: var(--ink-soft); }
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pillar { min-height: 265px; padding: 30px; border: 1px solid var(--line); border-radius: 24px; background: rgba(255,255,255,.33); transition: transform .25s ease, background .25s ease, box-shadow .25s ease; }
.pillar:hover { transform: translateY(-6px); background: var(--white); box-shadow: 0 22px 55px rgba(15,47,70,.1); }
.pillar-icon { display: inline-flex; align-items: center; justify-content: center; width: 49px; height: 49px; border-radius: 16px; background: rgba(8,123,216,.1); color: var(--blue); }
.pillar:nth-child(2) .pillar-icon, .pillar:nth-child(5) .pillar-icon { background: rgba(0,169,143,.11); color: var(--teal); }
.pillar:nth-child(3) .pillar-icon, .pillar:nth-child(6) .pillar-icon { background: rgba(255,138,31,.12); color: #d46600; }
.pillar:nth-child(4) .pillar-icon { background: rgba(233,40,130,.1); color: var(--pink); }
.pillar-icon svg { width: 24px; height: 24px; }
.pillar .index { float: right; color: #8999a6; font-family: "Fraunces", Georgia, serif; }
.pillar h3 { margin: 42px 0 10px; font-family: "Fraunces", Georgia, serif; font-size: 1.55rem; font-weight: 600; }
.pillar p { margin: 0; color: var(--ink-soft); font-size: .9rem; line-height: 1.65; }

.roadmap { padding: 135px 0; background: #eae4d7; }
.roadmap-head { display: flex; justify-content: space-between; gap: 50px; align-items: end; margin-bottom: 65px; }
.roadmap-head h2 { max-width: 720px; margin: 0; font-family: "Fraunces", Georgia, serif; font-size: clamp(2.7rem, 5vw, 4.8rem); font-weight: 600; letter-spacing: -.045em; line-height: 1; }
.roadmap-head p { max-width: 370px; margin: 0; color: var(--ink-soft); line-height: 1.7; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); }
.step { position: relative; padding: 30px 28px 0; border-top: 1px solid rgba(12,37,64,.25); }
.step::before { content: ""; position: absolute; top: -7px; left: 28px; width: 13px; height: 13px; border-radius: 50%; background: var(--paper); border: 3px solid var(--teal); }
.step:first-child { padding-left: 0; }
.step:first-child::before { left: 0; border-color: var(--orange); }
.step-no { color: var(--blue); font-family: "Fraunces", Georgia, serif; font-size: 1.15rem; }
.step h3 { margin: 30px 0 11px; font-family: "Fraunces", Georgia, serif; font-size: 1.45rem; font-weight: 600; }
.step p { margin: 0; color: var(--ink-soft); font-size: .86rem; line-height: 1.65; }
.status-board { display: grid; grid-template-columns: .8fr 1.2fr; margin-top: 80px; overflow: hidden; border-radius: var(--radius); background: var(--white); box-shadow: 0 25px 70px rgba(15,47,70,.1); }
.status-title { padding: 38px; background: var(--navy); color: var(--white); }
.status-title span { color: #65dac8; font-size: .68rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.status-title h3 { margin: 18px 0 0; font-family: "Fraunces", Georgia, serif; font-size: 2.1rem; font-weight: 600; line-height: 1.05; }
.status-list { padding: 32px 38px; }
.status-row { display: grid; grid-template-columns: 90px 1fr; gap: 22px; align-items: baseline; padding: 15px 0; border-top: 1px solid var(--line); }
.status-row:first-child { border-top: 0; }
.status-row strong { color: var(--teal); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.status-row p { margin: 0; color: var(--ink-soft); font-size: .9rem; line-height: 1.55; }

.future { padding: 145px 0; }
.future-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center; }
.future-visual { position: relative; min-height: 590px; }
.future-photo { position: absolute; inset: 0 48px 42px 0; overflow: hidden; border-radius: 28px 160px 28px 28px; box-shadow: var(--shadow); }
.future-photo img { width: 100%; height: 100%; object-fit: cover; }
.future-label { position: absolute; right: 0; bottom: 0; width: 235px; padding: 22px; border-radius: 22px; background: var(--orange); color: var(--navy); box-shadow: 0 20px 48px rgba(15,47,70,.16); }
.future-label span { display: block; font-size: .66rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.future-label strong { display: block; margin-top: 8px; font-family: "Fraunces", Georgia, serif; font-size: 1.5rem; font-weight: 600; line-height: 1.05; }
.future-copy p { margin: 25px 0 0; color: var(--ink-soft); line-height: 1.75; }
.future-cause { display: flex; gap: 16px; margin-top: 28px; padding-top: 25px; border-top: 1px solid var(--line); }
.future-cause b { display: flex; align-items: center; justify-content: center; flex: 0 0 auto; width: 36px; height: 36px; border-radius: 50%; background: rgba(233,40,130,.1); color: var(--pink); }
.future-cause strong { display: block; font-size: .9rem; }
.future-cause span { display: block; margin-top: 4px; color: var(--ink-soft); font-size: .83rem; line-height: 1.5; }

.join { padding: 0 0 120px; }
.join-shell { position: relative; overflow: hidden; padding: 78px; border-radius: 36px; background: var(--navy); color: var(--white); }
.join-shell::after { content: ""; position: absolute; width: 360px; height: 360px; right: -100px; top: -150px; border: 55px solid rgba(0,169,143,.22); border-radius: 50%; }
.join-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: center; }
.cta-copy .section-kicker { color: #65dac8; }
.cta-copy p { max-width: 600px; margin: 22px 0 0; color: #b6c5d1; line-height: 1.72; }
.join-options { display: grid; gap: 10px; }
.join-option { display: flex; justify-content: space-between; align-items: center; gap: 15px; padding: 19px 21px; border: 1px solid rgba(255,255,255,.14); border-radius: 18px; background: rgba(255,255,255,.055); transition: background .2s ease, transform .2s ease; }
.join-option:hover { transform: translateX(5px); background: rgba(255,255,255,.1); }
.join-option span { display: block; color: #8fa8ba; font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.join-option strong { display: block; margin-top: 4px; font-family: "Fraunces", Georgia, serif; font-size: 1.22rem; font-weight: 600; }
.join-option b { color: #65dac8; font-size: 1.3rem; }

.site-footer { padding: 70px 0 30px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 65px; }
.footer-brand img { width: 165px; height: 95px; object-fit: contain; object-position: left center; }
.footer-brand p { max-width: 360px; margin: 17px 0 0; color: var(--ink-soft); font-size: .86rem; line-height: 1.65; }
.footer-col h2 { margin: 12px 0 18px; color: #52697a; font-size: .69rem; letter-spacing: .16em; text-transform: uppercase; }
.footer-col a { display: block; margin: 0 0 11px; color: var(--ink-soft); font-size: .86rem; }
.footer-col a:hover { color: var(--blue); }
.footer-bottom { display: flex; justify-content: space-between; gap: 22px; margin-top: 55px; padding-top: 22px; border-top: 1px solid var(--line); color: #52697a; font-size: .75rem; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.75,.25,1); }
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 1000px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .mobile-nav { position: fixed; top: 96px; left: 24px; right: 24px; z-index: 75; display: grid; gap: 5px; padding: 13px; border: 1px solid rgba(255,255,255,.7); border-radius: 22px; background: rgba(247,243,233,.97); box-shadow: var(--shadow); opacity: 0; transform: translateY(-10px); pointer-events: none; transition: opacity .2s ease, transform .2s ease; }
  .mobile-nav.open { opacity: 1; transform: none; pointer-events: auto; }
  .mobile-nav a { padding: 13px 14px; border-radius: 12px; font-weight: 750; }
  .mobile-nav a:hover { background: #fff; }
  .hero-grid, .intro-grid, .future-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 145px; }
  .hero h1 { max-width: 11ch; }
  .hero-visual { min-height: 660px; }
  .intro-grid { gap: 35px; }
  .pilot-layout { grid-template-columns: 1fr; }
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 45px 0; }
  .step:nth-child(3) { padding-left: 0; }
  .step:nth-child(3)::before { left: 0; }
  .join-shell { padding: 58px 42px; }
  .join-grid { grid-template-columns: 1fr; gap: 42px; }
}

@media (max-width: 720px) {
  .wrap { width: min(1180px, calc(100% - 30px)); }
  .brand img { width: 112px; height: 45px; }
  .brand-origin { display: none; }
  .nav-shell { min-height: 62px; }
  .hero { min-height: 0; padding: 125px 0 70px; }
  .hero-grid { gap: 48px; }
  .hero h1 { font-size: clamp(3.15rem, 13.5vw, 4.2rem); letter-spacing: -.065em; }
  .hero-lead { font-size: .98rem; }
  .hero-actions { align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .initiative-designer { width: 100%; border-radius: 20px; }
  .hero-visual { min-height: 505px; }
  .hero-photo { inset: 0 0 30px 0; border-radius: 100px 22px 22px 22px; }
  .hero-card { width: 190px; padding: 17px; }
  .hero-card strong { font-size: 1.2rem; }
  .photo-caption { right: 14px; bottom: 47px; max-width: 180px; }
  .color-stroke { right: -3px; }
  .intro, .pillars, .future { padding: 95px 0; }
  .intro h2, .section-head h2, .future-copy h2, .cta-copy h2 { font-size: clamp(2.55rem, 13vw, 3.8rem); }
  .proof-grid { grid-template-columns: 1fr; }
  .proof { padding: 20px 0; border-left: 0; border-top: 1px solid var(--line); }
  .proof:first-child { border-top: 0; }
  .pilot, .roadmap { padding: 90px 0; }
  .section-head, .roadmap-head { display: grid; grid-template-columns: 1fr; gap: 24px; margin-bottom: 42px; }
  .cohort { min-height: 0; padding: 27px; }
  .cohort h3 { margin-top: 42px; font-size: 1.8rem; }
  .location-band { align-items: flex-start; flex-direction: column; padding: 27px; }
  .pillar-grid { grid-template-columns: 1fr; }
  .pillar { min-height: 235px; }
  .steps { grid-template-columns: 1fr; gap: 38px; }
  .step, .step:nth-child(3) { padding: 25px 0 0; }
  .step::before, .step:nth-child(3)::before { left: 0; }
  .step h3 { margin-top: 22px; }
  .status-board { grid-template-columns: 1fr; margin-top: 58px; }
  .status-title, .status-list { padding: 28px; }
  .status-row { grid-template-columns: 1fr; gap: 5px; }
  .future-grid { gap: 47px; }
  .future-visual { min-height: 480px; }
  .future-photo { inset: 0 25px 35px 0; border-radius: 22px 95px 22px 22px; }
  .future-label { width: 198px; padding: 18px; }
  .join { padding-bottom: 70px; }
  .join-shell { padding: 48px 25px; border-radius: 27px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@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; }
}
