
@font-face {
  font-family: "Archivo";
  src: url("assets/brand/fonts/archivo-variable.ttf") format("truetype");
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("assets/brand/fonts/ibm-plex-sans-variable.ttf") format("truetype");
  font-weight: 100 700;
  font-stretch: 85% 100%;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("assets/brand/fonts/ibm-plex-mono-medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}

:root {
  color-scheme: light;
  --brand-paper: #F2F0E9;
  --brand-ink: #232B25;
  --brand-olive: #4F603A;
  --brand-oxide: #A74424;
  --brand-grey: #93998A;

  --bg: #F2F0E9;
  --surface: #F2F0E9;
  --text: #232B25;
  --text-muted: #4F603A;
  --primary: #4F603A;
  --on-primary: #F2F0E9;
  --accent: #A74424;
  --border: #93998A;
  --border-strong: #4F603A;
  --focus: #4F603A;

  --font-heading: "Archivo", sans-serif;
  --font-body: "IBM Plex Sans", sans-serif;
  --font-source: "IBM Plex Mono", monospace;

  --header-h: 80px;
  --max-w: 1200px;
  --pad: 32px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; }
h1, h2, h3 { font-family: var(--font-heading); margin: 0; }
p { margin: 0; }
a { color: var(--primary); }
:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
  box-shadow: 0 0 0 3px var(--surface);
}

.container { max-width: calc(var(--max-w) + 2 * var(--pad)); margin: 0 auto; padding: 0 var(--pad); }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}
.skip-link {
  position: absolute; left: 16px; top: -100px; z-index: 100;
  background: var(--primary); color: var(--on-primary);
  padding: 12px 16px; border-radius: 8px; font-weight: 600;
}
.skip-link:focus { top: 16px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 56px; padding: 0 24px;
  border-radius: 8px; border: 2px solid transparent;
  font: 600 18px/26px var(--font-body);
  text-decoration: none; cursor: pointer;
}
.btn-primary { background: var(--primary); color: var(--on-primary); border-color: var(--primary); }
.btn-primary:hover { box-shadow: inset 0 0 0 2px var(--on-primary); }
.btn-secondary { background: var(--surface); color: var(--text); border-color: var(--border-strong); }
.btn-secondary:hover { text-decoration: underline; text-underline-offset: 4px; }
.btn-sm { min-height: 48px; padding: 0 20px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.site-header.is-scrolled { border-bottom-color: var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--text); text-decoration: none; min-height: 48px; }
.brand-mark { width: 52px; height: 52px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font: 800 26px/1 var(--font-heading); letter-spacing: -0.01em; }
.brand-descriptor { font: 600 14px/1.2 var(--font-body); color: var(--text-muted); margin-top: 4px; }

.site-nav ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 8px; }
.nav-link {
  display: inline-flex; align-items: center; min-height: 48px; padding: 0 16px;
  color: var(--text); text-decoration: none; font: 600 18px/26px var(--font-body);
  border-radius: 8px;
}
.nav-link:hover { text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 2px; }
.nav-toggle {
  display: none; min-height: 48px; min-width: 48px; padding: 0 16px;
  background: var(--surface); color: var(--text);
  border: 2px solid var(--border-strong); border-radius: 8px;
  font: 600 18px/26px var(--font-body); cursor: pointer;
}

/* Hero */
.hero { padding: 64px 0 96px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.hero-name { display: block; font: 800 64px/68px var(--font-heading); letter-spacing: -0.02em; }
.hero-descriptor { display: block; font: 600 24px/32px var(--font-body); color: var(--text-muted); margin-top: 8px; }
.hero-headline { font: 700 36px/42px var(--font-heading); margin-top: 32px; max-width: 18ch; }
.hero-headline em { font-style: normal; color: var(--accent); }
.hero-sub { margin-top: 24px; max-width: 34em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-art { width: 100%; max-width: 540px; justify-self: end; }

/* Sections */
.section { padding: 96px 0; }
.eyebrow { font: 600 18px/26px var(--font-body); color: var(--accent); margin-bottom: 12px; }
.section-title { font: 700 36px/42px var(--font-heading); max-width: 24ch; }
.section-lead { margin-top: 16px; max-width: 40em; }
.section-rule { border: 0; border-top: 1px solid var(--border); margin: 0; }

/* How it works */
.how { margin-top: 48px; }
.how-main { display: grid; grid-template-columns: 1.55fr 1fr; gap: 32px; align-items: stretch; }
.how-stage {
  border: 1px solid var(--border); border-radius: 12px; overflow: hidden;
  background: var(--surface);
}
.how-stage svg { width: 100%; height: auto; }
.how-panels { display: flex; flex-direction: column; justify-content: center; }
.how-panel { outline: none; }
.how-panel[hidden] { display: none; }
.how-panel.is-entering { animation: panelIn .5s ease both; }
.how-count { font: 600 18px/26px var(--font-body); color: var(--accent); }
.how-panel h3 { font: 700 28px/34px var(--font-heading); margin-top: 8px; }
.how-panel p { margin-top: 16px; }
.how-note {
  display: flex; gap: 12px; align-items: flex-start;
  margin-top: 24px; padding-top: 16px; border-top: 1px solid var(--border);
  font-size: 18px; line-height: 26px; color: var(--text-muted);
}
.tag {
  flex: none; display: inline-block; padding: 0 8px;
  border: 2px solid var(--border-strong); border-radius: 4px;
  font: 600 16px/24px var(--font-body); color: var(--text-muted);
}

.how-steps { position: relative; margin-top: 32px; padding-top: 40px; }
.how-track {
  position: absolute; top: 64px; left: 10%; right: 10%; height: 4px;
  background: var(--border); border-radius: 2px;
}
.how-track-fill {
  position: absolute; inset: 0 auto 0 0; border-radius: 2px;
  width: calc(var(--step, 0) / 4 * 100%);
  background: var(--primary);
  transition: width .8s cubic-bezier(.6,.05,.3,1);
}
.how-marker {
  position: absolute; top: -58px;
  left: calc(var(--step, 0) / 4 * 100%);
  width: 40px; height: 32px; transform: translateX(-50%);
  transition: left .8s cubic-bezier(.6,.05,.3,1);
  --mark-book: var(--brand-oxide);
}
.how-marker svg { width: 100%; height: 100%; animation: bob 1.6s ease-in-out infinite; }
.how-marker.is-hopping svg { animation: hop .8s cubic-bezier(.4,0,.3,1); }
.how-tablist { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.how-tab {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  min-height: 48px; padding: 0 4px 8px;
  background: none; border: 0; border-radius: 8px;
  color: var(--text); font: 600 18px/24px var(--font-body); text-align: center;
  cursor: pointer;
}
.how-tab-num {
  display: grid; place-items: center; width: 48px; height: 48px;
  border-radius: 50%; border: 2px solid var(--border-strong);
  background: var(--surface); color: var(--text-muted);
  font: 700 20px/1 var(--font-heading);
  transition: background .3s, color .3s;
}
.how-tab-num svg { width: 26px; height: 22px; }
.how-tab.is-done .how-tab-num { background: var(--primary); color: var(--on-primary); --mark-book: var(--on-primary); }
.how-tab[aria-selected="true"] .how-tab-num { background: var(--primary); color: var(--on-primary); --mark-book: var(--on-primary); }
.how-tab[aria-selected="true"] .how-tab-title { text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 2px; }
.how-tab:hover .how-tab-title { text-decoration: underline; text-underline-offset: 6px; }
.how-controls { display: flex; align-items: center; justify-content: flex-end; gap: 8px; margin-top: 24px; flex-wrap: wrap; }
.how-hint { margin-right: auto; font-size: 18px; line-height: 26px; color: var(--text-muted); }
.how-stage { display: block; width: 100%; padding: 0; font: inherit; color: inherit; cursor: pointer; }
.how-stage:hover { border-color: var(--border-strong); }
.btn:disabled { border-style: dashed; cursor: not-allowed; }
.btn:disabled:hover { box-shadow: none; text-decoration: none; }

/* Scene visibility and animation */
.scene { opacity: 0; visibility: hidden; transition: opacity .5s ease, visibility 0s .5s; }
.scene.is-active { opacity: 1; visibility: visible; transition: opacity .5s ease .15s, visibility 0s; }
.svg-h { font-family: var(--font-heading); font-weight: 700; }
.svg-b { font-family: var(--font-body); font-weight: 600; }
.svg-m { font-family: var(--font-source); font-weight: 500; }
.fb { transform-box: fill-box; transform-origin: center; }
.fb-left { transform-box: fill-box; transform-origin: left center; }

.is-active .a-fade { animation: fadeUp .6s ease both; }
.is-active .a-drop { animation: dropIn 1s cubic-bezier(.3,.7,.4,1) both; }
.is-active .a-pop { animation: pop .5s cubic-bezier(.3,1.6,.5,1) both; }
.is-active .a-draw { stroke-dasharray: 1; animation: draw .9s ease both; }
.is-active .a-grow { animation: grow .7s ease both; }
.is-active .a-pulse { animation: pulse 1.8s ease-in-out infinite both; }
.is-active .a-flow, .a-flow-always { animation: flow 1.2s linear infinite; }
.is-active .a-pass { animation: pass 3.6s ease-in-out infinite both; }
.is-active .a-give { animation: give 3.6s ease-in-out infinite both; }
.is-active .a-reach { animation: reach 2.4s ease-in-out infinite; }
.a-flow-always.slow { animation-duration: 2.4s; }
.a-travel { animation: travel 3s ease-in-out infinite; }

.d1 { animation-delay: .2s !important; }
.d2 { animation-delay: .5s !important; }
.d3 { animation-delay: .8s !important; }
.d4 { animation-delay: 1.1s !important; }
.d5 { animation-delay: 1.4s !important; }
.d6 { animation-delay: 1.7s !important; }
.d7 { animation-delay: 2s !important; }
.d8 { animation-delay: 2.3s !important; }
.d9 { animation-delay: 2.6s !important; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes dropIn {
  0% { opacity: 0; transform: translateY(-240px); }
  20% { opacity: 1; }
  70% { transform: translateY(10px); }
  100% { opacity: 1; transform: none; }
}
@keyframes pop { from { opacity: 0; transform: scale(.3); } to { opacity: 1; transform: none; } }
@keyframes draw { from { stroke-dashoffset: 1; } to { stroke-dashoffset: 0; } }
@keyframes grow { from { transform: scaleX(0); } to { transform: none; } }
@keyframes pulse { 0%, 100% { opacity: .15; } 50% { opacity: 1; } }
@keyframes flow { to { stroke-dashoffset: -28; } }
@keyframes pass {
  0%, 12% { transform: translate(0, -1.5px); }
  45%, 70% { transform: translate(0, 1.5px); }
  100% { transform: translate(0, -1.5px); }
}
@keyframes give {
  0%, 30% { transform: none; }
  55%, 75% { transform: translate(-3px, -5px); }
  100% { transform: none; }
}
@keyframes reach { 0%, 100% { transform: none; } 50% { transform: translate(4px, 3px); } }
@keyframes travel {
  0% { opacity: 0; transform: translateY(-10px); }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { opacity: 0; transform: translateY(46px); }
}
@keyframes hop {
  0% { transform: none; }
  40% { transform: translateY(-22px) rotate(-8deg); }
  75% { transform: translateY(2px); }
  100% { transform: none; }
}
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
@keyframes panelIn { from { opacity: 0; transform: translateX(16px); } to { opacity: 1; transform: none; } }

/* Goal */
.goal { background: var(--brand-olive); color: var(--brand-paper); }
.goal .eyebrow { color: var(--brand-paper); }
.goal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.goal-mark { width: 100%; max-width: 380px; justify-self: center; --mark-hand: var(--brand-paper); --mark-book: var(--brand-paper); }
.goal-mark .a-pass { animation: pass 3.6s ease-in-out infinite both; }
.goal-mark .a-give { animation: give 3.6s ease-in-out infinite both; }
.goal-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 64px; }
.goal-card { border: 2px solid var(--brand-paper); border-radius: 8px; padding: 24px; }
.goal-card svg { width: 32px; height: 32px; fill: var(--brand-paper); }
.goal-card h3 { font: 700 24px/30px var(--font-heading); margin-top: 16px; }
.goal-card p { margin-top: 8px; font-size: 18px; line-height: 26px; }
.goal :focus-visible { outline-color: var(--brand-paper); box-shadow: 0 0 0 3px var(--brand-olive); }

/* Forms */
.join { max-width: 800px; margin-top: 48px; }
.join-tablist { display: flex; gap: 8px; }
.join-tab {
  position: relative; min-height: 56px; padding: 0 24px;
  background: var(--surface); color: var(--text);
  border: 2px solid var(--border-strong); border-bottom: 0; border-radius: 8px 8px 0 0;
  font: 600 18px/26px var(--font-body); cursor: pointer;
}
.join-tab:hover { text-decoration: underline; text-underline-offset: 6px; }
.join-tab[aria-selected="true"] {
  background: var(--primary); color: var(--on-primary);
  text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 2px;
}
.join-panel { border-top-left-radius: 0; }
.join-panel[hidden] { display: none; }
.join-panel.is-entering { animation: panelIn .35s ease both; }
.card { border: 2px solid var(--border-strong); border-radius: 8px; padding: 32px; background: var(--surface); }
.card-intro { font-size: 18px; line-height: 26px; color: var(--text-muted); }
.form { margin-top: 24px; display: grid; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: grid; gap: 8px; }
.field label, .field .label { font: 600 18px/26px var(--font-body); }
.optional { font-weight: 400; color: var(--text-muted); }
.input {
  width: 100%; min-height: 56px; padding: 12px 16px;
  background: var(--surface); color: var(--text);
  border: 2px solid var(--border-strong); border-radius: 8px;
  font: 400 18px/26px var(--font-body);
}
textarea.input { min-height: 120px; resize: vertical; }
select.input {
  appearance: none; padding-right: 48px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23232B25' d='M5 8h14l-7 8z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; background-size: 20px;
}
.input[aria-invalid="true"] { border-color: var(--brand-oxide); border-width: 3px; }
.field-error { display: none; align-items: flex-start; gap: 8px; font-size: 18px; line-height: 26px; color: var(--brand-oxide); font-weight: 600; }
.field-error.is-visible { display: flex; }
.field-error svg { width: 24px; height: 24px; flex: none; fill: currentColor; }
.check { display: flex; gap: 12px; align-items: flex-start; font-size: 18px; line-height: 26px; }
.check input { width: 24px; height: 24px; margin: 1px 0 0; accent-color: var(--brand-olive); flex: none; }
.form-status {
  display: none; gap: 12px; align-items: flex-start;
  padding: 16px; border: 2px solid var(--border-strong); border-left-width: 6px; border-radius: 8px;
  font-size: 18px; line-height: 26px;
}
.form-status.is-visible { display: flex; }
.form-status svg { width: 24px; height: 24px; flex: none; fill: var(--brand-olive); }

/* Footer */
.site-footer { border-top: 1px solid var(--border); padding: 48px 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer-links { display: flex; gap: 8px; flex-wrap: wrap; list-style: none; margin: 0; padding: 0; }
.footer-copy { font-size: 18px; color: var(--text-muted); }

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid, .goal-grid { grid-template-columns: 1fr; }
  .hero-art { justify-self: start; }
  .how-main { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; align-items: center; }
  .site-nav ul {
    display: none; position: absolute; left: 0; right: 0; top: var(--header-h);
    flex-direction: column; align-items: stretch; gap: 8px;
    padding: 16px 20px 24px; background: var(--bg); border-bottom: 1px solid var(--border);
  }
  .site-nav.is-open ul { display: flex; }
  .site-nav .btn { width: 100%; }
  .goal-cards { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  :root { --pad: 20px; --header-h: 72px; }
  .hero { padding: 40px 0 64px; }
  .hero-name { font-size: 40px; line-height: 44px; }
  .hero-headline { font-size: 28px; line-height: 34px; }
  .section { padding: 64px 0; }
  .section-title { font-size: 28px; line-height: 34px; }
  .brand-mark { width: 44px; height: 44px; }
  .brand-name { font-size: 22px; }
  .how-tab-title { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }
  .how-hint { width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .card { padding: 20px; }
  .join-tab { flex: 1; padding: 0 12px; }
}
@media (max-width: 400px) {
  :root { --pad: 16px; }
  .site-header .brand-descriptor { display: none; }
  .site-header .brand { gap: 8px; }
  .site-header .brand-mark { width: 40px; height: 40px; }
  .site-header .brand-name { font-size: 20px; }
  .header-inner { gap: 8px; }
  .nav-toggle { padding: 0 8px; }
  .how-tablist { gap: 4px; }
  .how-tab { padding: 0 0 8px; }
  .how-tab-num { width: 40px; height: 40px; }
  .how-track { top: 60px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* Handover production direction. Motion and scenes adapted from the supplied mockup. */
:root { --max-w: 1320px; --header-h: 104px; --pad: 40px; }
body { overflow-wrap: break-word; }
button,a,input { -webkit-tap-highlight-color: transparent; }
button { touch-action: manipulation; }
[hidden] { display: none !important; }
.site-header { border-bottom: 1px solid var(--border); }
.brand { flex: 0 1 auto; }
.brand-lockup { width: 360px; height: auto; }
.brand-mobile { display: none; }
.header-actions { display: flex; gap: 22px; align-items: center; }
.language-switch { display: flex; border-left: 1px solid var(--border); padding-left: 16px; }
.language-switch a { display: grid; place-items: center; min-width: 48px; min-height: 48px; font: 500 18px var(--font-source); color: var(--text); text-decoration: none; }
.language-switch a[aria-current="true"] { text-decoration: underline; text-underline-offset: 8px; color: var(--primary); }
.btn { border-radius: 4px; transition: background .2s, box-shadow .2s; }
.hero { padding: 64px 0 0; }
.hero-grid { grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.hero-copy .eyebrow { max-width: 28ch; line-height: 1.5; margin-bottom: 24px; }
h1 { font-size: clamp(42px,4.4vw,68px); line-height: 1.05; font-weight: 800; letter-spacing: -.045em; }
h1 em { color: var(--primary); font-style: normal; }
.hero-sub { max-width: 47ch; margin-top: 28px; font-size: 20px; line-height: 1.55; }
.hero-actions { gap: 12px 24px; margin-top: 28px; }
.hero-actions .btn { max-width: 100%; padding: 12px 20px; text-align: center; }
.text-link { display: inline-flex; align-items: center; gap: 12px; min-height: 48px; text-underline-offset: 6px; font-size: 18px; font-weight: 600; }
.hero-footnote { margin-top: 18px; font-size: 18px; color: var(--primary); }
.production-figure { margin: 0; align-self: stretch; display: flex; flex-direction: column; justify-content: center; }
.image-frame { position: relative; height: 540px; overflow: hidden; border-radius: 4px; background: var(--brand-olive); }
.image-frame:before { content: ''; position: absolute; left: 0; top: 0; width: 10px; height: 100%; background: var(--accent); z-index: 1; }
.image-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 55% center; }
figcaption { display: flex; align-items: center; gap: 9px; margin-top: 14px; font-size: 18px; color: var(--text-muted); }
.caption-dot { width: 8px; height: 8px; background: var(--accent); flex: none; }
.source-strip { margin-top: 64px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 28px 0; gap: 24px; }
.source-strip>span { display: flex; align-items: center; gap: 12px; font-size: 18px; line-height: 1.4; }
.source-strip .source-intro { display: block; font-weight: 600; }
.source-strip svg { width: 26px; height: 26px; fill: var(--primary); flex: none; }
.section { padding: 100px 0; }
.section-title { font: 800 clamp(32px,3.2vw,48px)/1.12 var(--font-heading); letter-spacing: -.035em; max-width: 25ch; }
.section-lead { line-height: 1.55; max-width: 54ch; margin-top: 24px; }
.concept-label { font: 500 18px/1.5 var(--font-source); color: var(--primary); margin-top: 32px; }
.how { margin-top: 24px; }
.how-main { gap: 44px; grid-template-columns: 1.5fr 1fr; }
.how-stage { border-radius: 4px; align-self: center; }
.how-panel h3 { font-weight: 800; line-height: 1.15; letter-spacing: -.02em; }
.how-count { font: 500 18px var(--font-source); }
.tag { font-size: 18px; }
.how-note { flex-wrap: wrap; }
.how-controls .btn { min-width: 140px; }
.goal { background: var(--brand-ink); }
.goal .section-title { max-width: 23ch; }
.goal-mark { max-width: 290px; }
.goal-cards { gap: 0; margin-top: 56px; border-top: 1px solid var(--brand-grey); }
.goal-card { border: none; border-right: 1px solid var(--brand-grey); padding: 32px; border-radius: 0; }
.goal-card:first-child { padding-left: 0; }
.goal-card:last-child { border-right: 0; padding-right: 0; }
.goal-card h3 { font-size: 24px; }
.goal-card p { color: var(--brand-paper); line-height: 1.55; }
.join-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; }
.contact-prompt { margin-top: 36px; font-size: 18px; }
.contact-link { overflow-wrap: anywhere; word-break: break-word; }
.card { border: 1px solid var(--primary); border-radius: 4px; padding: 32px; }
.card-kicker { color: var(--accent); font: 500 18px var(--font-source); margin-bottom: 16px; }
.card h3 { font-size: 30px; letter-spacing: -.025em; }
.preview-note { font-size: 18px; line-height: 1.45; margin-top: 16px; padding: 12px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.input { border-radius: 4px; }
.check { min-height: 48px; padding: 8px 0; cursor: pointer; }
.form-small { font-size: 18px; line-height: 1.5; }
.form-small a { display: inline-flex; align-items: center; min-height: 48px; }
#form-status { border-left: 3px solid var(--primary); padding: 12px 16px; font-size: 18px; }
.footer-logo { width: 360px; max-width: 100%; height: auto; }
.footer-inner { gap: 20px; }
.footer-bottom { margin-top: 28px; border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; gap: 24px; font-size: 18px; }
.motion-toggle { min-height: 48px; border: 1px solid var(--primary); color: var(--primary); background: transparent; padding: 10px 16px; border-radius: 4px; font: 500 18px var(--font-body); cursor: pointer; }
.privacy-page .container { max-width: 850px; }
.privacy-page h1 { font-size: clamp(36px,5vw,60px); }
.privacy-page h2 { margin-top: 36px; margin-bottom: 12px; font-size: 28px; }
.privacy-page .eyebrow { margin-top: 32px; }
.noscript-note { padding: 24px; border-top: 1px solid var(--border); }
html.motion-paused *,html.motion-paused *:before,html.motion-paused *:after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
.tile-layer { position: fixed; inset: 0; pointer-events: none; z-index: 100; overflow: hidden; }
.knowledge-tile { position: absolute; width: 22px; height: 8px; background: var(--accent); pointer-events: none; }
@media (hover:hover) and (pointer:fine) {
  html.hand-cursor,html.hand-cursor body,html.hand-cursor a,html.hand-cursor button { cursor: var(--cursor-hold),pointer; }
  html.hand-cursor input,html.hand-cursor textarea { cursor: text; }
  html.hand-cursor input[type="checkbox"],html.hand-cursor .check,html.hand-cursor .motion-toggle { cursor: pointer; }
}
@media (max-width:1150px) {
 .hero-grid { gap: 32px; } .header-actions { gap: 8px; } .site-nav .nav-link { padding: 0 8px; }
 .join-grid { gap: 40px; } .how-main { gap: 28px; } .image-frame { height: 510px; }
}
@media (max-width:1000px) {
 :root { --pad: 28px; } .hero-grid { grid-template-columns: 1fr 1fr; } h1 { font-size: 48px; }
 .site-nav .nav-link { display: none; } .brand-lockup { width: 360px; } .goal-grid { grid-template-columns: 1fr .6fr; }
 .how-main { grid-template-columns: 1fr; } .how-panels { min-height: 250px; } .how-panel { max-width: 65ch; }
 .source-strip { grid-template-columns: 1fr 1fr; } .join-grid { grid-template-columns: 1fr; } .join-grid>.card { max-width: 780px; }
}
@media (max-width:860px) {
 :root { --header-h: 88px; } .site-nav .nav-link { display: flex; }
 .hero-grid { grid-template-columns: 1fr; gap: 36px; } .hero-copy { max-width: 700px; } h1 { font-size: clamp(44px,8vw,68px); }
 .image-frame { height: 440px; } .image-frame img { object-position: center 44%; } .source-strip { margin-top: 40px; }
 .goal-card,.goal-card:first-child,.goal-card:last-child { padding: 28px 0; border-right: 0; border-bottom: 1px solid var(--brand-grey); }
 .goal-card:last-child { border-bottom: 0; } .goal-cards { margin-top: 36px; }
 .goal-mark { max-width: 200px; } .header-actions { gap: 12px; }
}
@media (max-width:600px) {
 :root { --pad: 20px; --header-h: 80px; } .brand-lockup { display: none; } .brand-mobile { display: block; width: 64px; height: 64px; }
 .header-inner { gap: 12px; } .language-switch { padding-left: 8px; } .header-actions { gap: 8px; }
 .hero { padding-top: 36px; } .hero-copy .eyebrow { margin-bottom: 20px; max-width: 30ch; }
 h1 { font-size: 44px; } .hero-sub { font-size: 20px; } .hero-actions { align-items: stretch; flex-direction: column; }
 .hero-actions .text-link { justify-content: center; } .image-frame { height: 340px; }
 .source-strip { gap: 20px 12px; padding: 24px 0; } .source-strip>span { align-items: flex-start; } .source-strip .source-intro { grid-column: 1/-1; } .source-strip>span:last-child { grid-column: 1/-1; }
 .section { padding: 64px 0; } .how-panels { min-height: 340px; } .how-tab-num { width: 48px; height: 48px; }
 .how-tab { min-width: 48px; padding: 0 0 8px; } .how-track { top: 64px; } .how-tablist { gap: 0; }
 .how-controls { justify-content: flex-start; } .how-controls .btn { flex: 1; min-width: 0; padding: 0 12px; }
 .goal-grid { grid-template-columns: 1fr; gap: 24px; } .goal-mark { width: 160px; justify-self: start; }
 .card { padding: 24px 20px; } .form-row { grid-template-columns: 1fr; } .join-grid { gap: 32px; }
 .footer-bottom { align-items: flex-start; flex-direction: column; } .footer-logo { width: 360px; } .footer-inner>a { overflow-wrap: anywhere; }
 .footer-inner .text-link { font-size: 18px; word-break: break-word; } .contact-link { font-size: 18px; gap: 4px; }
}
@media (max-width:359px) { :root { --pad: 16px; } h1 { font-size: 38px; } .header-actions { gap: 4px; } }
@media (prefers-reduced-motion:reduce) { html { scroll-behavior: auto; } .tile-layer { display: none; } }
@media print { .site-header,.motion-toggle,.tile-layer { display: none; } .section { padding: 24px 0; } }

.preview-fields { display: contents; border: 0; margin: 0; padding: 0; min-width: 0; }
/* Stack panels in the same grid cell to avoid controls moving between steps. */
.how-panels { display: grid; align-content: center; }
.how-panel { grid-area: 1 / 1; align-self: center; }
.how-panel[hidden] { display: block !important; visibility: hidden; pointer-events: none; }
.source-strip > span { min-width: 0; }
@media (max-width:600px) {
 .source-strip { grid-template-columns: minmax(0,1fr); }
 .source-strip>span { grid-column: 1; }
}

/* Feedback batch: body typography for supporting labels, mono only for source references. */
.concept-label, .card-kicker, .how-count { font: 500 18px/1.5 var(--font-body); }
.language-switch a { font: 500 18px/1.5 var(--font-body); }
.footer-bottom { font: 400 18px/1.5 var(--font-body); }
.footer-bottom p { max-width: 60ch; }
.privacy-page .container { max-width: 850px; }
.privacy-section { margin-top: 36px; }
.privacy-section p + p { margin-top: 16px; }
.privacy-section address { font-style: normal; margin: 20px 0; }
.privacy-draft { border-left: 3px solid var(--primary); padding: 16px 20px; margin-top: 28px; font-size: 18px; }
.privacy-section a { overflow-wrap: anywhere; }
