/* ============================================================
   SECTIONS — event-horizon grid, off-axis, radiating from origin
   ============================================================ */

/* ░░░░░░░░░░ HERO / CAROUSEL ░░░░░░░░░░ */
/* ░░░░░░░░░░ HERO ░░░░░░░░░░ */
#hero { position: relative; display: flex; align-items: center; min-height: 100vh; overflow: hidden; }

/* full-bleed halftone stage, weighted to the right */
.stage {
  position: absolute; top: 0; bottom: 0; right: 0;
  width: clamp(360px, 66%, 1080px);
  z-index: 1;
}
#stage-canvas { width: 100%; height: 100%; display: block;
  /* dissolve the halftone's left AND bottom edges into the field — no hard cut */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 26%), linear-gradient(0deg, transparent 0%, #000 20%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(90deg, transparent 0%, #000 26%), linear-gradient(0deg, transparent 0%, #000 20%);
  mask-composite: intersect;
}
.stage.drop-hot { box-shadow: inset 0 0 0 1px var(--live); }
.drop-hint {
  position: absolute; left: 50%; bottom: 11%; transform: translateX(-50%);
  color: var(--ink-faint); opacity: 0; transition: opacity .4s; pointer-events: none;
  letter-spacing: .22em; white-space: nowrap;
}
.stage:hover .drop-hint, .stage.drop-hot .drop-hint { opacity: .85; }

/* side-anchored content block (reference format) */
.hero-block {
  position: relative; z-index: 3;
  width: min(460px, 86%);
  margin-left: clamp(8px, 7vw, 110px);
}
.deco { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; overflow: visible; }
.deco.bottom { margin: 30px 0 0; }
.deco .ln { height: 1px; background: var(--void-rule); }
.deco .ln.short { width: 34px; }
/* top: the line escapes the text column and dissolves into the field
   instead of hard-stopping mid-page — with a slow drifting highlight */
.deco:not(.bottom) .ln.grow {
  flex: none;
  width: clamp(340px, 46vw, 900px);
  background: linear-gradient(90deg,
      var(--void-rule) 0%,
      var(--void-rule) 24%,
      rgba(232,234,240,0.05) 66%,
      transparent 100%);
  background-size: 220% 100%;
  animation: ln-drift 11s linear infinite;
}
/* bottom: connector to the protocol label — fades out before the text */
.deco.bottom .ln.grow {
  flex: 1;
  background: linear-gradient(90deg,
      var(--void-rule) 0%,
      var(--void-rule) 42%,
      rgba(232,234,240,0.04) 84%,
      transparent 100%);
  background-size: 220% 100%;
  animation: ln-drift 11s linear infinite;
}
@keyframes ln-drift { 0% { background-position: 120% 0; } 100% { background-position: -60% 0; } }
@media (prefers-reduced-motion: reduce) { .deco .ln.grow { animation: none; } }
.deco .inf { color: var(--live); font-size: 12px; line-height: 1; }
.hero-eyebrow { margin-bottom: 18px; color: var(--ink-dim); }
.hero-title {
  font-family: "Martian Mono", monospace;
  font-size: clamp(26px, 4.2vw, 56px);
  line-height: 1.08; margin: 0 0 22px;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.015em;
  color: var(--ink);
}
.dotrow { display: flex; gap: 5px; margin-bottom: 22px; flex-wrap: wrap; max-width: 280px; }
.dotrow i { width: 3px; height: 3px; border-radius: 50%; background: var(--ink-ghost); }
.dotrow i:nth-child(3n) { background: var(--ink-faint); }
.hero-copy {
  font-family: "Martian Mono", monospace; font-weight: 300;
  font-size: clamp(11px, 1vw, 13.5px); line-height: 1.78;
  color: var(--ink-dim); max-width: 44ch; margin: 0 0 30px; letter-spacing: .015em;
}
.hero-ctrls { display: flex; gap: 16px; }
.rbtn {
  appearance: none; background: var(--void-2); border: 1px solid var(--ink-faint); color: var(--ink);
  border-radius: 3px;
  font-family: "Martian Mono", monospace; font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  padding: 12px 18px; cursor: pointer;
  box-shadow: 0 0.42em 0 -0.01em rgba(230,232,238,0.30);
  transition: transform .22s var(--e-power4), box-shadow .22s var(--e-power4),
              border-color .4s var(--e-power4), color .4s var(--e-power4), letter-spacing .4s var(--e-power4);
}
.rbtn:hover { border-color: var(--live); color: var(--live); letter-spacing: .26em;
  transform: translateY(0.42em); box-shadow: 0 0 0 0 rgba(230,232,238,0); }
.rbtn:active { transform: translateY(0.42em); box-shadow: 0 0 0 0 rgba(230,232,238,0); }
@media (prefers-reduced-motion: reduce){ .rbtn, .rbtn:hover, .rbtn:active { transform: none; } }

/* entrance */
html.anim .hero-block { opacity: 0; transform: translateX(-16px); filter: blur(6px);
  transition: opacity 1.1s var(--e-power4), transform 1.1s var(--e-power4), filter 1.1s var(--e-power4); }
html.anim body.loaded .hero-block { opacity: 1; transform: none; filter: none; }
html.anim .stage { opacity: 0; transition: opacity 1.5s var(--e-power4) .15s; }
html.anim body.loaded .stage { opacity: 1; }
@media (prefers-reduced-motion: reduce){ html.anim .hero-block, html.anim .stage { opacity:1; transform:none; filter:none; } }

@media (max-width: 760px){
  .stage { left: 0; width: 100%; opacity: .42 !important; }
  .hero-block { width: 88%; margin: 0 auto; }
  #hero { justify-content: center; }
}

.scroll-cue {
  position: absolute;
  bottom: clamp(64px, 12vh, 96px);
  left: 50%; transform: translateX(-50%);
  color: var(--ink-faint);
  animation: cuepulse 2.6s ease-in-out infinite;
}
@keyframes cuepulse { 0%,100%{opacity:.3;transform:translate(-50%,0)} 50%{opacity:.8;transform:translate(-50%,5px)} }
@media (prefers-reduced-motion: reduce){ .scroll-cue{ animation:none } }

/* ░░░░░░░░░░ MANIFESTO ░░░░░░░░░░ */
#manifesto { display: flex; align-items: center; }
.manifesto-wrap { width: min(1100px, 100%); margin: 0 auto; }
.man-tag { display: inline-block; margin-bottom: 38px; }
.manifesto { display: flex; flex-direction: column; gap: 6px; }
.man-line {
  margin: 0;
  font-size: clamp(28px, 5.2vw, 74px);
  line-height: 1.06;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
.man-line span { display: block; }
html.anim .man-line span {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s var(--e-power4), transform .9s var(--e-power4);
}
html.anim .man-line.in span { opacity: 1; transform: none; }
.man-line:nth-child(odd) { color: var(--ink); }
.man-line:nth-child(even) { color: var(--ink-dim); }
.man-line.in:last-child span { color: var(--live); }
@media (prefers-reduced-motion: reduce){ html.anim .man-line span{ opacity:1; transform:none } }

/* ░░░░░░░░░░ TIMELINE ░░░░░░░░░░ */
#timeline { display: flex; flex-direction: column; justify-content: center; }
.tl-head { max-width: 900px; margin: 0 auto clamp(48px, 7vh, 96px); width: 100%; }
.tl-title {
  font-size: clamp(34px, 5.5vw, 78px);
  line-height: 0.98; margin: 16px 0 0; font-weight: 800;
  text-transform: uppercase; letter-spacing: -0.04em;
}
.tl-axis {
  position: relative;
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border-top: 1px solid var(--void-rule);
}
.tl-node {
  position: relative;
  padding: 26px 18px 0;
  border-left: 1px solid var(--void-rule-2);
  min-height: 220px;
}
.tl-node:first-child { border-left: none; }
.tl-node::before {
  content: ""; position: absolute; top: -4px; left: 18px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--ink-faint); transition: background .5s, box-shadow .5s, transform .5s;
}
.tl-node.in::before { background: var(--live); box-shadow: 0 0 10px var(--live); transform: scale(1.3); }
.tl-node .tnum { font-family: "Martian Mono", monospace; font-size: 11px; letter-spacing: .14em; color: var(--ink-faint); }
.tl-node .tname {
  font-family: "Martian Mono", monospace; font-size: 12px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--ink); margin: 8px 0 16px;
}
.tl-node .tcopy {
  font-family: "Bricolage Grotesque", sans-serif; font-weight: 300;
  font-size: clamp(15px, 1.15vw, 18px); line-height: 1.55; color: var(--ink-dim);
}
html.anim .tl-node .tcopy {
  opacity: 0; transform: translateY(14px); transition: opacity .8s var(--e-power4), transform .8s var(--e-power4);
}
html.anim .tl-node.in .tcopy { opacity: 1; transform: none; }
.tl-node canvas { width: 100%; height: 72px; margin-bottom: 16px; display: block; opacity: .8; }
@media (max-width: 860px) {
  .tl-axis { grid-template-columns: 1fr 1fr; }
  .tl-node { min-height: 180px; }
}
@media (max-width: 520px) { .tl-axis { grid-template-columns: 1fr 1fr; } }

/* ░░░░░░░░░░ SPUN-OUT WORLDS ░░░░░░░░░░ */
#worlds { position: relative; display: flex; align-items: center; overflow: hidden; }
.worlds-globe {
  position: absolute; right: 3%; top: 50%; transform: translateY(-50%);
  width: min(720px, 80vw); height: min(720px, 80vw); z-index: 2; opacity: .95;
}
.worlds-field { position: absolute; inset: 0; z-index: 1; }
.worlds-head { position: relative; z-index: 3; max-width: 520px; margin-left: clamp(24px, 7vw, 150px); }
.worlds-title { font-size: clamp(44px, 8vw, 104px); line-height: 0.9; margin: 14px 0 22px; font-weight: 800; text-transform: uppercase; letter-spacing: -0.04em; }
.worlds-sub { font-size: 12px; line-height: 1.7; color: var(--ink-dim); letter-spacing: .02em; }
.worlds-tip {
  position: absolute; z-index: 5; pointer-events: none;
  padding: 8px 12px; border: 1px solid var(--void-rule);
  background: rgba(8,9,12,0.86); color: var(--ink);
  opacity: 0; transform: translate(-50%, -140%); transition: opacity .25s;
  white-space: nowrap;
}
.worlds-tip.show { opacity: 1; }
.worlds-tip b { color: var(--live); font-weight: 500; }

/* ░░░░░░░░░░ CONTACT ░░░░░░░░░░ */
#contact { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: clamp(20px, 4vh, 52px); overflow: hidden; text-align: center; }
.contact-canvas { position: absolute; inset: 0; z-index: 1; }
/* the Vitruvian construction — a human form coalescing from nothing */
.contact-figure {
  position: relative; z-index: 2; pointer-events: auto;
  width: min(560px, 58vh); height: min(560px, 58vh);
  -webkit-mask-image: radial-gradient(closest-side, #000 72%, transparent 99%);
  mask-image: radial-gradient(closest-side, #000 72%, transparent 99%);
}
.contact-wrap { position: relative; z-index: 3; max-width: 760px; }
.contact-title { font-size: clamp(40px, 8vw, 108px); line-height: 0.92; margin: 18px 0 28px; font-weight: 800; text-transform: uppercase; letter-spacing: -0.04em; }
.contact-line { font-size: 13px; color: var(--ink-dim); letter-spacing: .04em; margin-bottom: 40px; }
.contact-mail { display: block; margin-top: 26px; color: var(--ink-faint); font-size: 12px; letter-spacing: .12em; text-decoration: none; transition: color .4s; }
.contact-mail:hover { color: var(--live); }

/* ░░░░░░░░░░ FOOTER ░░░░░░░░░░ */
#end { min-height: 86vh; display: flex; align-items: center; justify-content: center; text-align: center; border-top: 1px solid var(--void-rule-2); }
.end-wrap { display: flex; flex-direction: column; align-items: center; }
.end-mark-canvas {
  display: block; width: min(900px, 88vw); height: clamp(150px, 22vh, 240px);
  margin: -9vh auto 0; pointer-events: auto;
  /* dissolve the swarm into the void at top & bottom — no hard box edge */
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 14%, #000 86%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 14%, #000 86%, transparent 100%);
}
.end-since { margin-top: 18px; letter-spacing: .3em; }
.end-cap { margin-top: 22px; font-size: 12px; color: var(--ink-faint); letter-spacing: .04em; max-width: 52ch; line-height: 1.6; }

/* animated underline links (vanilla port of CenterUnderline / ComesInGoesOut) */
.u-link { position: relative; display: inline-block; text-decoration: none; color: inherit; }
.u-link::after { content: ""; position: absolute; bottom: -0.24em; height: 1px; background: currentColor; }
/* grow from centre, retract to centre */
.u-center::after { left: 50%; width: 0; transform: translateX(-50%); transition: width .26s var(--e-power4); }
.u-center:hover::after { width: 100%; }
/* sweep through — in from the left, out to the right */
.u-sweep::after { left: 0; width: 100%; transform: scaleX(0); transform-origin: right; transition: transform .4s var(--e-power4); }
.u-sweep:hover::after { transform: scaleX(1); transform-origin: left; }
@media (prefers-reduced-motion: reduce){ .u-link::after { transition: none; } }

/* footer ventures row (same format as the old section links) */
.end-nav {
  display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(18px, 3vw, 36px);
  margin-top: 40px;
  font-family: "Martian Mono", monospace; font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
}
.end-nav a { color: var(--ink-faint); transition: color .35s var(--e-power4); }
.end-nav a:hover { color: var(--live); }
.end-legal {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px;
  margin-top: 22px;
  font-family: "Martian Mono", monospace; font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-ghost);
}
.end-legal .sep { width: 3px; height: 3px; border-radius: 50%; background: var(--ink-ghost); }
.end-legal a { color: var(--ink-faint); transition: color .35s var(--e-power4); }
.end-legal a:hover { color: var(--live); }

/* ░░░░░░░░░░ ENTER THE FIELD — outline button (by cssbuttons-io, re-tinted) ░░░░░░░░░░ */
.fancy {
  background: transparent; border: 2px solid var(--ink); border-radius: 0; box-sizing: border-box;
  color: var(--ink); cursor: pointer; display: inline-block; font-weight: 700; letter-spacing: 0.05em;
  margin: 0; outline: none; overflow: visible; padding: 1.15em 2.2em; position: relative; text-align: center;
  text-decoration: none; text-transform: none; user-select: none; font-size: 13px;
  font-family: "Martian Mono", ui-monospace, monospace;
  transition: background .3s ease-in-out, color .3s ease-in-out, border-color .3s ease-in-out;
}
.fancy::before {
  content: " "; width: 1.5625rem; height: 2px; background: var(--ink);
  top: 50%; left: 1.4em; position: absolute; transform: translateY(-50%); transform-origin: center;
  transition: background .3s linear, width .3s linear;
}
.fancy .text {
  font-size: 1em; line-height: 1.2; padding-left: 2em; display: block; text-align: left;
  transition: all .3s ease-in-out; text-transform: uppercase; letter-spacing: .18em; color: var(--ink);
}
.fancy .top-key {
  height: 2px; width: 1.5625rem; top: -2px; left: 0.625rem; position: absolute;
  background: var(--live); transition: width .5s ease-out, left .3s ease-out;
}
.fancy .bottom-key-1 {
  height: 2px; width: 1.5625rem; right: 1.875rem; bottom: -2px; position: absolute;
  background: var(--live); transition: width .5s ease-out, right .3s ease-out;
}
.fancy .bottom-key-2 {
  height: 2px; width: 0.625rem; right: 0.625rem; bottom: -2px; position: absolute;
  background: var(--live); transition: width .5s ease-out, right .3s ease-out;
}
.fancy:hover { color: var(--void); background: var(--ink); }
.fancy:hover::before { width: 0.9375rem; background: var(--void); }
.fancy:hover .text { color: var(--void); padding-left: 1.5em; }
.fancy:hover .top-key { left: -2px; width: 0; }
.fancy:hover .bottom-key-1, .fancy:hover .bottom-key-2 { right: 0; width: 0; }

/* ░░░░░░░░░░ LIGHT THEME — component corrections ░░░░░░░░░░ */
html[data-theme="light"] .rbtn { box-shadow: 0 0.42em 0 -0.01em rgba(22,24,30,0.22); }
html[data-theme="light"] .rbtn:hover, html[data-theme="light"] .rbtn:active { box-shadow: 0 0 0 0 rgba(22,24,30,0); }
html[data-theme="light"] .worlds-tip { background: rgba(236,238,242,0.92); }

/* ░░░░░░░░░░ CAREERS — a quiet tag that opens an application ░░░░░░░░░░ */
.careers-tag {
  appearance: none; background: transparent; border: 0; cursor: pointer;
  font-family: "Martian Mono", monospace; font-size: 10px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--ink-faint); padding: 9px 0; margin-top: 28px;
  display: inline-flex; align-items: center; gap: 11px;
  transition: color .4s var(--e-power4), letter-spacing .4s var(--e-power4);
}
.careers-tag .k { width: 18px; height: 1px; background: currentColor; transition: width .4s var(--e-power4); }
.careers-tag:hover { color: var(--live); letter-spacing: .3em; }
.careers-tag:hover .k { width: 30px; }
.careers-tag[aria-expanded="true"] { color: var(--live); }
.careers-tag[aria-expanded="true"] .k { width: 30px; }

.careers {
  min-height: 0; padding: 0;
  max-height: 0; opacity: 0; overflow: hidden;
  border-top: 1px solid var(--void-rule-2);
  transition: max-height .9s var(--e-power4), opacity .7s var(--e-power4);
}
.careers.open { max-height: 1800px; opacity: 1; }
.careers-inner {
  max-width: 820px; margin: 0 auto;
  padding: clamp(56px, 9vh, 108px) var(--gut) clamp(72px, 11vh, 120px);
  padding-left: max(var(--gut), calc(var(--ruler-w) + 8px));
}
.careers-eyebrow { color: var(--ink-dim); }
.careers-title { font-size: clamp(34px, 6vw, 72px); line-height: .94; margin: 14px 0 18px; font-weight: 800; text-transform: uppercase; letter-spacing: -.04em; color: var(--ink); }
.careers-lead { font-family: "Martian Mono", monospace; font-weight: 300; font-size: 13px; line-height: 1.7; color: var(--ink-dim); max-width: 56ch; margin: 0 0 46px; letter-spacing: .01em; }

.cform { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 34px; }
.cfield { display: flex; flex-direction: column; gap: 11px; }
.cfield.full { grid-column: 1 / -1; }
.cfield label { font-family: "Martian Mono", monospace; font-size: 9px; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-faint); }
.cfield input, .cfield select, .cfield textarea {
  appearance: none; -webkit-appearance: none; background: transparent;
  border: 0; border-bottom: 1px solid var(--ink-faint); color: var(--ink);
  font-family: "Martian Mono", monospace; font-size: 13px; letter-spacing: .02em;
  padding: 10px 2px; outline: none; transition: border-color .35s var(--e-power4);
}
.cfield textarea { resize: vertical; min-height: 100px; line-height: 1.6; }
.cfield select { cursor: pointer; border-radius: 0; }
.cfield select option { background: var(--void-2); color: var(--ink); }
.cfield input:focus, .cfield select:focus, .cfield textarea:focus { border-color: var(--live); }
.cfield input::placeholder, .cfield textarea::placeholder { color: var(--ink-ghost); }
.cform-foot { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap; margin-top: 10px; }
.cform-note { font-family: "Martian Mono", monospace; font-size: 9px; letter-spacing: .14em; color: var(--ink-ghost); line-height: 1.7; max-width: 42ch; text-transform: uppercase; margin: 0; }

.csent { border: 1px solid var(--void-rule); padding: 36px clamp(24px, 4vw, 46px); }
.csent .hud { color: var(--live); }
.csent h3 { font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; text-transform: uppercase; letter-spacing: -.02em; font-size: clamp(26px, 4vw, 44px); margin: 16px 0 14px; color: var(--ink); text-wrap: balance; }
.csent p { font-family: "Martian Mono", monospace; font-weight: 300; font-size: 12.5px; line-height: 1.75; color: var(--ink-dim); margin: 0; max-width: 54ch; }
@media (max-width: 640px) { .cform { grid-template-columns: 1fr; } }

/* ═══════════ RESPONSIVE POLISH — tablet & mobile (desktop unchanged) ═══════════ */
/* TABLET + PHONE (≤1024px): kill the 100vh dead space between sections,
   stack the worlds heading over its globe, drop the orange collapse dots */
@media (max-width: 1024px) {
  section { min-height: auto; padding-top: clamp(58px, 8vh, 100px); padding-bottom: clamp(58px, 8vh, 100px); }

  /* MANIFESTO / TIMELINE — top aligned, packed to content so they follow on immediately */
  #manifesto { align-items: flex-start; }

  /* WORLDS — single column: heading first, globe directly beneath it (no big gap) */
  #worlds { flex-direction: column; align-items: stretch; justify-content: flex-start; overflow: hidden; }
  .worlds-head { order: 1; margin: 0; max-width: 100%; padding-left: 0; position: relative; z-index: 3; }
  .worlds-globe {
    order: 2; position: relative; inset: auto; top: auto; right: auto; bottom: auto;
    transform: none; margin: clamp(-28px, -2vh, -8px) auto 0;
    width: min(560px, 84vw); height: min(560px, 84vw); opacity: .5;
  }

  /* CONTACT — figure pulls up; remove the orange collapse cluster */
  #contact { min-height: auto; justify-content: flex-start; padding-top: clamp(44px, 6vh, 88px); gap: clamp(16px, 3vh, 32px); }
  .contact-canvas { display: none; }
  .contact-figure { width: min(520px, 64vw); height: min(520px, 64vw); }

  /* FOOTER — a touch tighter */
  #end { min-height: auto; padding-top: clamp(48px, 7vh, 84px); padding-bottom: clamp(56px, 8vh, 92px); }
}
/* reclaim the ruler gutter once the ruler is hidden */
@media (max-width: 720px) {
  section { padding-left: var(--gut); }
  .careers-inner { padding-left: var(--gut); }
}
/* PHONE (≤760px): hero copy lifts above the halftone; tighter art + timeline pairs */
@media (max-width: 760px) {
  /* HERO — text lifts into the empty top; halftone drops behind it */
  #hero { min-height: auto; align-items: flex-start; padding-top: clamp(82px, 14vh, 130px); padding-bottom: clamp(44px, 8vh, 76px); }
  .stage { top: 16%; opacity: .4 !important; }
  /* fade the halftone's TOP edge too, so it blends in instead of a hard break */
  #stage-canvas {
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 22%), linear-gradient(0deg, transparent 0%, #000 16%, #000 84%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 22%), linear-gradient(0deg, transparent 0%, #000 16%, #000 84%, transparent 100%);
  }
  .worlds-globe { width: min(460px, 92vw); height: min(460px, 92vw); }
  .worlds-title { font-size: clamp(46px, 14vw, 80px); }
  .contact-figure { width: min(440px, 72vw); height: min(440px, 72vw); }

  /* TIMELINE — groups of two, tight */
  .tl-axis { grid-template-columns: 1fr 1fr; }
  .tl-node { min-height: 0; padding: 22px 10px 0; }
  .tl-head { margin-bottom: clamp(28px, 5vh, 48px); }
}
/* SMALL PHONE (≤480px) */
@media (max-width: 480px) {
  .topbar { padding: 12px 16px; }
  .topbar-right { gap: 10px; }
  .clock { font-size: 9px; gap: 6px; }
  .statusbar { padding: 10px 16px; gap: 10px; }
  .hero-title { font-size: clamp(24px, 8vw, 34px); }
  .hero-copy { font-size: 12px; }
  .tl-node { padding: 20px 7px 0; margin-bottom: 22px; }
  .tl-node .tcopy { font-size: 14px; }
  .cform-foot { flex-direction: column; align-items: stretch; gap: 18px; }
  .fancy { width: 100%; }
}
