/* Hand in Hand — editorial warm */

:root {
  --paper: #F5EFE6;
  --paper-deep: #EDE3D3;
  --ink: #2C2A26;
  --ink-soft: #5A554C;
  --forest: #3F5C3A;
  --forest-deep: #2D4329;
  --terracotta: #D98B5F;
  --terracotta-deep: #B86C42;
  --cream-line: rgba(44, 42, 38, 0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  position: relative;
  overflow-x: hidden;
}

/* Paper texture overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(44, 42, 38, 0.025) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(217, 139, 95, 0.03) 0%, transparent 40%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.17  0 0 0 0 0.16  0 0 0 0 0.15  0 0 0 0.06 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
  opacity: 0.55;
}

.font-display {
  font-family: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  font-variation-settings: "SOFT" 80, "opsz" 144;
}

.font-mono {
  font-family: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
}

.eyebrow {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  display: inline-block;
}

/* shell */
.shell {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 720px) {
  .shell { padding: 0 24px; }
}

/* nav */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  position: relative;
  z-index: 10;
}
.nav-mark {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Fraunces', serif;
  font-size: 19px;
  letter-spacing: -0.01em;
}
.nav-mark .mark-svg {
  width: 36px;
  height: 36px;
}
.nav-links {
  display: flex;
  gap: 28px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }

@media (max-width: 720px) {
  .nav-links { display: none; }
}

/* hero */
.hero {
  padding: 60px 0 120px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

.hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 380;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin-top: 24px;
  text-wrap: balance;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.hero h1 em {
  font-style: italic;
  font-weight: 380;
  color: var(--terracotta);
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.hero h1 .accent {
  color: var(--forest);
  font-style: italic;
  font-weight: 380;
}
.hero-sub {
  margin-top: 28px;
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 460px;
  text-wrap: pretty;
}
.hero-meta {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 28px 40px;
  align-items: center;
}
.hero-meta .meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-meta .meta-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.hero-meta .meta-val {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-style: italic;
}

/* hero illustration */
.hero-art {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 560px;
  margin-left: auto;
}
.hero-art-bg {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, var(--paper-deep) 0%, var(--paper) 70%);
  opacity: 0.7;
}

/* sections */
section.block {
  padding: 80px 0;
  border-top: 1px solid var(--cream-line);
  position: relative;
}

.block-head {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: baseline;
  margin-bottom: 56px;
}
@media (max-width: 720px) {
  .block-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 36px; }
}
.block-head h2 {
  font-family: 'Fraunces', serif;
  font-weight: 380;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  text-wrap: balance;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.block-head h2 em {
  font-style: italic;
  color: var(--forest);
  font-weight: 380;
}

/* idea/intro narrative */
.lede {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.4;
  color: var(--ink);
  max-width: 760px;
  text-wrap: pretty;
  font-weight: 360;
}
.lede em {
  font-style: italic;
  color: var(--terracotta);
}

/* bullet lists in editorial style */
.list-edit {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 12px;
}
@media (max-width: 720px) {
  .list-edit { grid-template-columns: 1fr; }
}
.list-edit .item {
  padding: 28px 28px 28px 0;
  border-top: 1px solid var(--cream-line);
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.list-edit .item:nth-child(odd) {
  padding-right: 36px;
}
.list-edit .item:nth-child(even) {
  padding-left: 28px;
  border-left: 1px solid var(--cream-line);
}
@media (max-width: 720px) {
  .list-edit .item:nth-child(even) {
    padding-left: 0;
    border-left: none;
  }
}
.list-edit .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--terracotta);
  letter-spacing: 0.1em;
  padding-top: 4px;
  min-width: 28px;
}
.list-edit .item-body h3 {
  font-family: 'Fraunces', serif;
  font-weight: 420;
  font-size: 22px;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.list-edit .item-body p {
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.55;
}

/* pilot card / photo placeholders */
.pilot-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: stretch;
}
@media (max-width: 920px) {
  .pilot-grid { grid-template-columns: 1fr; }
}
.pilot-photo {
  aspect-ratio: 4 / 5;
  background: var(--paper-deep);
  border: 1px solid var(--cream-line);
  overflow: hidden;
  position: relative;
  display: block;
  padding: 0;
}
.pilot-photo svg {
  width: 100%;
  height: 100%;
  display: block;
}
.pilot-photo::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px dashed rgba(44, 42, 38, 0.18);
  pointer-events: none;
}

/* gentle sun pulse */
@keyframes piSunPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
.pi-sun { animation: piSunPulse 7s ease-in-out infinite; }
.motion-off .pi-sun { animation: none; }
.pilot-card {
  background: var(--paper-deep);
  border: 1px solid var(--cream-line);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.pilot-card .pilot-row {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--cream-line);
}
.pilot-card .pilot-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.pilot-card .pilot-row .pl-num {
  font-family: 'Fraunces', serif;
  font-size: 38px;
  font-weight: 350;
  color: var(--terracotta);
  line-height: 1;
  font-style: italic;
  min-width: 60px;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.pilot-card .pilot-row .pl-num.dot {
  font-size: 18px;
  padding-top: 6px;
}
.pilot-card .pilot-row h4 {
  font-family: 'Fraunces', serif;
  font-weight: 420;
  font-size: 19px;
  margin-bottom: 4px;
}
.pilot-card .pilot-row p {
  color: var(--ink-soft);
  font-size: 15px;
}

/* "nicht / sondern" — Besonderheit */
.contrast {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 720px) {
  .contrast { grid-template-columns: 1fr; gap: 28px; }
}
.contrast .nots {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contrast .not-line {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 360;
  letter-spacing: -0.02em;
  color: var(--ink-soft);
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  text-decoration-color: var(--terracotta);
  font-style: italic;
  line-height: 1.05;
}
.contrast .yes {
  font-family: 'Fraunces', serif;
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 380;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--forest);
}
.contrast .yes em {
  font-style: italic;
  color: var(--terracotta);
}

/* timeline */
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 24px;
}
@media (max-width: 720px) {
  .timeline { grid-template-columns: 1fr; }
}
.timeline .step {
  padding: 28px 28px 28px 0;
  border-top: 2px solid var(--ink);
  position: relative;
}
.timeline .step:not(:first-child) { padding-left: 28px; }
.timeline .step::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--ink);
}
.timeline .step.now::before { background: var(--terracotta); border-color: var(--terracotta); }
.timeline .step.future::before { background: var(--paper); }
.timeline .phase {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 10px;
}
.timeline .phase .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ink-soft);
  margin-right: 8px;
  vertical-align: middle;
}
.timeline .step.now .phase .dot { background: var(--terracotta); }
.timeline .step h4 {
  font-family: 'Fraunces', serif;
  font-weight: 380;
  font-size: 24px;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.timeline .step.now h4 em {
  color: var(--terracotta);
  font-style: italic;
}
.timeline .step p {
  color: var(--ink-soft);
  font-size: 15px;
  max-width: 320px;
}

/* CTA / interest */
.cta {
  background: var(--forest);
  color: var(--paper);
  padding: 80px 56px;
  margin: 60px 0 80px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.04 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.5;
  pointer-events: none;
}
.cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: end;
}
@media (max-width: 760px) {
  .cta { padding: 48px 28px; }
  .cta-inner { grid-template-columns: 1fr; gap: 32px; }
}
.cta h2 {
  font-family: 'Fraunces', serif;
  font-weight: 380;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
.cta h2 em {
  font-style: italic;
  color: var(--terracotta);
}
.cta p {
  margin-top: 18px;
  color: rgba(245, 239, 230, 0.78);
  max-width: 420px;
  font-size: 16px;
  line-height: 1.55;
}
.form-row {
  display: flex;
  gap: 0;
  align-items: stretch;
  border-bottom: 1px solid rgba(245, 239, 230, 0.4);
  padding-bottom: 14px;
  transition: border-color 0.2s;
}
.form-row:focus-within { border-bottom-color: var(--terracotta); }
.form-row input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--paper);
  font-family: 'Fraunces', serif;
  font-size: 22px;
  padding: 8px 0;
  font-weight: 380;
}
.form-row input::placeholder {
  color: rgba(245, 239, 230, 0.45);
  font-style: italic;
}
.form-row button {
  background: transparent;
  border: none;
  color: var(--paper);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0 4px 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.2s, transform 0.2s;
}
.form-row button:hover {
  color: var(--terracotta);
  transform: translateX(3px);
}
.form-row button .arrow {
  font-size: 18px;
}
.form-options {
  margin-top: 22px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.form-options .opt {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid rgba(245, 239, 230, 0.3);
  color: rgba(245, 239, 230, 0.8);
  cursor: pointer;
  transition: all 0.2s;
  background: transparent;
  border-radius: 999px;
}
.form-options .opt:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
}
.form-options .opt.active {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--ink);
}

.success-msg {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-style: italic;
  padding: 8px 0;
  color: var(--terracotta);
}

/* footer */
footer.foot {
  padding: 60px 0 40px;
  border-top: 1px solid var(--cream-line);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 720px) {
  footer.foot { grid-template-columns: 1fr; gap: 24px; }
}
footer.foot .quote {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 380;
  font-style: italic;
  line-height: 1.3;
  max-width: 380px;
  color: var(--ink);
}
footer.foot .quote em { color: var(--terracotta); }
footer.foot .col h5 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
footer.foot .col p,
footer.foot .col a {
  font-size: 15px;
  color: var(--ink);
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
}
footer.foot .col a:hover { color: var(--terracotta); }

.footer-base {
  border-top: 1px solid var(--cream-line);
  padding: 24px 0 32px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.footer-base a:hover { color: var(--terracotta); }

/* hands SVG animation */
@keyframes handReachL {
  0%, 100% { transform: translate(-6px, 4px) rotate(-3deg); }
  50% { transform: translate(0px, 0px) rotate(0deg); }
}
@keyframes handReachR {
  0%, 100% { transform: translate(6px, -4px) rotate(3deg); }
  50% { transform: translate(0px, 0px) rotate(0deg); }
}
@keyframes glow {
  0%, 100% { opacity: 0.35; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.05); }
}
@keyframes orbitDot {
  from { transform: rotate(0deg) translateX(var(--r)) rotate(0deg); }
  to { transform: rotate(360deg) translateX(var(--r)) rotate(-360deg); }
}

.hand-l { transform-origin: 100% 50%; animation: handReachL 5.5s ease-in-out infinite; }
.hand-r { transform-origin: 0% 50%; animation: handReachR 5.5s ease-in-out infinite; }
.glow-circle { animation: glow 5.5s ease-in-out infinite; transform-origin: center; }

.motion-calm .hand-l,
.motion-calm .hand-r,
.motion-calm .glow-circle { animation-duration: 9s; }
.motion-off .hand-l,
.motion-off .hand-r,
.motion-off .glow-circle { animation: none !important; }

/* themes */
body.theme-forest {
  --paper: #F5EFE6;
  --paper-deep: #EDE3D3;
  --ink: #2C2A26;
  --ink-soft: #5A554C;
  --forest: #3F5C3A;
  --terracotta: #D98B5F;
  --cream-line: rgba(44, 42, 38, 0.12);
}
body.theme-dawn {
  --paper: #FBF7F2;
  --paper-deep: #F2E8DA;
  --ink: #1F2A33;
  --ink-soft: #5C6770;
  --forest: #7CA5B8;
  --terracotta: #E8A87C;
  --cream-line: rgba(31, 42, 51, 0.12);
}
body.theme-meadow {
  --paper: #FFFDF8;
  --paper-deep: #F4EFE2;
  --ink: #2A2A2A;
  --ink-soft: #5C5A55;
  --forest: #6B8B5A;
  --terracotta: #D9824E;
  --cream-line: rgba(42, 42, 42, 0.12);
}

/* scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(.2, .7, .2, 1), transform 0.9s cubic-bezier(.2, .7, .2, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* selection */
::selection { background: var(--terracotta); color: var(--ink); }


/* ────────────────────────────────────────────────────────────────────
   MOBILE OPTIMIZATIONS  (≤ 720px)
   A separate, considered layer — not just shrinking the desktop layout.
   Goals:
   • Make the hero feel intentional on phone (art moves above headline,
     headline gets its own breathing room, meta becomes a tidy stack)
   • Replace nav links with a simple scroll-progress bar + mark
   • Add a sticky bottom CTA bar so "Mitmachen" is always one tap away
   • Tighten section paddings, stack everything vertically with rhythm
   • Vertical timeline with a connecting rule on the left
   • Bigger touch targets, larger inputs, reduce orbiting motion
──────────────────────────────────────────────────────────────────── */

@media (max-width: 720px) {
  html, body { font-size: 16px; }

  /* fixed nav with progress underline */
  .nav {
    position: sticky;
    top: 0;
    background: color-mix(in oklab, var(--paper) 88%, transparent);
    -webkit-backdrop-filter: blur(12px) saturate(140%);
    backdrop-filter: blur(12px) saturate(140%);
    padding: 14px 0;
    z-index: 50;
    border-bottom: 1px solid var(--cream-line);
  }
  .nav::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    height: 2px;
    width: var(--scroll-pct, 0%);
    background: var(--terracotta);
    transition: width 0.1s linear;
  }
  .nav-mark {
    font-size: 16px;
    gap: 9px;
  }
  .nav-mark .mark-svg { width: 28px; height: 28px; }
  .nav-mobile-cta {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink);
    text-decoration: none;
    padding: 8px 14px;
    border: 1px solid var(--ink);
    border-radius: 999px;
  }

  /* hero */
  .hero {
    padding: 28px 0 60px;
  }
  .hero-grid {
    display: flex;
    flex-direction: column-reverse;
    gap: 28px;
  }
  .hero-art {
    max-width: 280px;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
  }
  .hero h1 {
    font-size: clamp(44px, 12vw, 64px);
    margin-top: 16px;
    line-height: 0.96;
    letter-spacing: -0.03em;
  }
  .hero-sub {
    font-size: 17px;
    margin-top: 20px;
    max-width: none;
  }
  .hero-meta {
    margin-top: 28px;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    width: 100%;
  }
  .hero-meta .meta-item {
    flex-direction: row;
    align-items: baseline;
    gap: 12px;
    width: 100%;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--cream-line);
  }
  .hero-meta .meta-item:last-child { border-bottom: none; padding-bottom: 0; }
  .hero-meta .meta-label {
    flex-shrink: 0;
    width: 88px;
  }
  .hero-meta .meta-val {
    font-size: 16px;
    flex: 1;
  }

  /* sections */
  section.block { padding: 48px 0; }

  .block-head h2 {
    font-size: clamp(30px, 7.5vw, 40px);
    line-height: 1.04;
  }

  .lede {
    font-size: 20px;
    line-height: 1.4;
  }

  /* list-edit becomes a clean stack */
  .list-edit { gap: 0; }
  .list-edit .item {
    padding: 22px 0 !important;
    border-left: none !important;
  }
  .list-edit .item:last-child {
    border-bottom: 1px solid var(--cream-line);
  }
  .list-edit .num {
    font-size: 10px;
    min-width: 24px;
    padding-top: 6px;
  }
  .list-edit .item-body h3 { font-size: 19px; }
  .list-edit .item-body p { font-size: 14.5px; }

  /* pilot photo + card */
  .pilot-grid { gap: 24px; }
  .pilot-photo {
    aspect-ratio: 16 / 11;
    font-size: 10px;
  }
  .pilot-card {
    padding: 28px 22px;
    gap: 18px;
  }
  .pilot-card .pilot-row {
    gap: 16px;
    padding-bottom: 18px;
  }
  .pilot-card .pilot-row .pl-num {
    font-size: 30px;
    min-width: 48px;
  }
  .pilot-card .pilot-row h4 { font-size: 17px; }
  .pilot-card .pilot-row p { font-size: 14px; }

  /* contrast: nots stack tight, "yes" is the punchline */
  .contrast .nots { gap: 8px; }
  .contrast .not-line {
    font-size: clamp(26px, 7.5vw, 34px);
    line-height: 1.05;
  }
  .contrast .yes {
    font-size: clamp(24px, 6.5vw, 30px);
    padding-top: 8px;
    border-top: 1px solid var(--cream-line);
    margin-top: 4px;
  }

  /* vertical timeline */
  .timeline {
    margin-top: 8px;
    gap: 0;
    position: relative;
  }
  .timeline::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: var(--cream-line);
  }
  .timeline .step {
    padding: 18px 0 22px 28px !important;
    border-top: none !important;
    position: relative;
  }
  .timeline .step::before {
    top: 22px;
    left: 0;
    width: 11px;
    height: 11px;
  }
  .timeline .step h4 { font-size: 21px; }
  .timeline .step p { font-size: 14.5px; max-width: none; }

  /* CTA */
  .cta {
    padding: 36px 22px 32px;
    margin: 36px 0 96px; /* extra bottom for sticky bar */
    border-radius: 6px;
  }
  .cta-inner { gap: 24px; }
  .cta h2 {
    font-size: clamp(28px, 8vw, 38px);
    line-height: 1.04;
  }
  .cta p {
    font-size: 15px;
    margin-top: 12px;
    max-width: none;
  }
  .form-row {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
    border-bottom: none;
    padding-bottom: 0;
  }
  .form-row input {
    font-size: 18px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(245, 239, 230, 0.4);
  }
  .form-row button {
    background: var(--terracotta);
    color: var(--ink);
    border-radius: 999px;
    padding: 14px 20px;
    justify-content: center;
    font-size: 12px;
    min-height: 48px;
  }
  .form-row button:hover {
    color: var(--ink);
    transform: none;
    background: var(--paper);
  }
  .form-options { gap: 6px; }
  .form-options .opt {
    flex: 1;
    text-align: center;
    padding: 10px 8px;
    font-size: 10px;
    min-height: 40px;
  }

  /* footer */
  footer.foot {
    padding: 44px 0 32px;
    gap: 32px;
  }
  footer.foot .quote {
    font-size: 22px;
    max-width: none;
  }
  footer.foot .col p,
  footer.foot .col a {
    font-size: 15px;
    padding: 4px 0;
  }
  .footer-base {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    align-items: center;
    padding: 20px 0 96px;
    font-size: 10px;
  }

  /* sticky bottom CTA */
  .mobile-stickybar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 40;
    display: flex;
    gap: 10px;
    background: var(--ink);
    color: var(--paper);
    border-radius: 999px;
    padding: 8px 8px 8px 22px;
    align-items: center;
    box-shadow: 0 12px 32px rgba(44, 42, 38, 0.22);
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(.2, .7, .2, 1);
  }
  .mobile-stickybar.hidden {
    transform: translateY(120%);
  }
  .mobile-stickybar .label {
    flex: 1;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 16px;
    line-height: 1.2;
  }
  .mobile-stickybar .label small {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-style: normal;
    font-size: 9px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(245, 239, 230, 0.55);
    margin-bottom: 2px;
  }
  .mobile-stickybar a {
    background: var(--terracotta);
    color: var(--ink);
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 12px 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
  }

  /* slow the orbit + glow on small screens to feel calmer + save battery */
  .glow-circle { animation-duration: 7s; }

  /* respect reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .hand-l, .hand-r, .glow-circle,
    .reveal { animation: none !important; transition: none !important; }
    .reveal { opacity: 1; transform: none; }
  }
}

/* hide sticky on desktop */
.mobile-stickybar { display: none; }
@media (max-width: 720px) {
  .mobile-stickybar { display: flex; }
  /* hide desktop nav-mobile-cta on >720 */
}
@media (min-width: 721px) {
  .nav-mobile-cta { display: none; }
}
