/* Banana Aerospace site styles. Two accents only: flight yellow carries the
   mission and the why, afterburner blue carries the system and what is live.
   Everything else is a grey ramp on near-black. No em or en dashes, no slashes
   as dividers, centered composition. */

:root {
  --bg: #07080a;
  --bg-2: #0b0d10;
  --panel: #0e1115;
  --panel-2: #12161b;
  --line: rgba(243, 241, 234, 0.08);
  --line-2: rgba(243, 241, 234, 0.16);
  --ink: #f3f1ea;
  --ink-2: #b9b7ae;
  --ink-dim: #7f7e77;
  --ink-faint: #4b4b47;
  --yellow: #f5b71b;
  --yellow-d: #a67a0c;
  --blue: #3f7dff;
  --blue-hot: #9cd3ff;
  --blue-d: #1f3f8a;
  --sans: "Archivo", "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  --maxw: 1180px;
  --textw: 720px;
  --nav-h: 64px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
html, body { margin: 0; background: var(--bg); }
body {
  color: var(--ink); font-family: var(--sans); font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased; text-align: center; overflow-x: hidden; min-height: 100vh;
}
body::after {
  content: ""; position: fixed; inset: 0; z-index: 5; pointer-events: none; opacity: 0.05;
  background-image: radial-gradient(rgba(255,255,255,0.5) 0.5px, transparent 0.5px);
  background-size: 3px 3px; mix-blend-mode: overlay;
}
a { color: inherit; text-decoration: none; }
p { margin: 0; }
h1, h2, h3, h4 { margin: 0; font-weight: 700; letter-spacing: -0.02em; line-height: 1.04; text-wrap: balance; }
img { max-width: 100%; display: block; }
:focus-visible { outline: 2px solid var(--blue-hot); outline-offset: 3px; }
::selection { background: rgba(245,183,27,0.28); color: var(--ink); }

.mono { font-family: var(--mono); font-variant-numeric: tabular-nums; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: 24px; }
.y { color: var(--yellow); }
.b { color: var(--blue-hot); }

/* ------------------------------------------------------------------ scene */
#scene { position: fixed; inset: 0; width: 100%; height: 100%; z-index: 0; display: block; pointer-events: none; }
main, header, section, footer, nav { position: relative; z-index: 1; }
section { background: var(--bg); padding-block: clamp(72px, 11vw, 140px); }
section.band { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
section.seam { border-top: 1px solid var(--line); }
/* the aircraft section is see-through so the fixed scene shows inside the stage */
#aircraft { background: transparent; }
main > header.hero { z-index: 2; }

/* ------------------------------------------------------------------ type */
.kicker {
  font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--blue-hot); margin-bottom: 22px; display: flex; align-items: center; justify-content: center; gap: 14px;
}
.kicker.m { color: var(--yellow); }
.kicker::before { content: ""; width: 10px; height: 11px; background: currentColor; clip-path: polygon(50% 0, 100% 100%, 50% 72%, 0 100%); opacity: 0.9; }
h2.head { font-size: clamp(2rem, 4.8vw, 3.4rem); max-width: 22ch; margin: 0 auto 22px; font-stretch: 92%; letter-spacing: -0.03em; }
.lede { max-width: var(--textw); margin: 0 auto; color: var(--ink-2); font-size: clamp(1.04rem, 1.6vw, 1.22rem); line-height: 1.7; text-wrap: pretty; }
.lede + .lede { margin-top: 18px; }
.lede b { color: var(--ink); font-weight: 600; }
.note { max-width: var(--textw); margin: 26px auto 0; font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-dim); line-height: 1.7; }

.st {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-dim); white-space: nowrap;
}
.st.live { color: var(--blue-hot); }
.st.build { color: var(--ink-2); }
.st.vision { color: var(--yellow); }

html.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.9s cubic-bezier(.2,.7,.2,1), transform 0.9s cubic-bezier(.2,.7,.2,1); }
html.js .reveal.in { opacity: 1; transform: none; }
html.js .reveal.d1 { transition-delay: 0.08s; }
html.js .reveal.d2 { transition-delay: 0.16s; }
html.js .reveal.d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) { html.js .reveal { opacity: 1; transform: none; transition: none; } }

/* ------------------------------------------------------------------ nav */
nav.top {
  position: fixed; top: 0; left: 0; right: 0; z-index: 40; height: var(--nav-h);
  background: rgba(7,8,10,0.55); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent; transition: border-color 0.3s, background 0.3s;
}
nav.top.solid { border-color: var(--line); background: rgba(7,8,10,0.82); }
.nav-in { max-width: var(--maxw); margin: 0 auto; padding-inline: 24px; height: 100%; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; justify-self: start; }
.brand img { width: 26px; height: auto; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5)); }
.brand .wm { font-weight: 800; font-size: 0.82rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--yellow); font-stretch: 90%; }
.brand .wm span { color: var(--yellow); }
.nav-links { display: flex; gap: 2px; }
.nav-links a { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-dim); padding: 8px 12px; transition: color 0.2s; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { justify-self: end; display: flex; align-items: center; gap: 10px; }
.btn {
  display: inline-flex; align-items: center; gap: 10px; padding: 11px 18px;
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase;
  border: 1px solid var(--line-2); color: var(--ink); background: transparent; border-radius: 2px;
  transition: border-color 0.2s, background 0.2s, color 0.2s; cursor: pointer; white-space: nowrap;
}
.btn:hover { border-color: var(--ink); }
.btn.solid { background: var(--yellow); color: #14110a; border-color: var(--yellow); font-weight: 600; }
.btn.solid:hover { background: #ffc835; border-color: #ffc835; }
.btn:disabled { opacity: 0.6; cursor: default; }
.btn .arr { width: 14px; height: 1px; background: currentColor; position: relative; }
.btn .arr::after { content: ""; position: absolute; right: -1px; top: -3px; width: 6px; height: 6px; border-top: 1px solid currentColor; border-right: 1px solid currentColor; transform: rotate(45deg); }
.menu-btn { display: none; width: 40px; height: 40px; border: 1px solid var(--line-2); background: transparent; border-radius: 2px; cursor: pointer; position: relative; }
.menu-btn span, .menu-btn::before, .menu-btn::after { content: ""; position: absolute; left: 11px; right: 11px; height: 1px; background: var(--ink); transition: transform 0.25s, opacity 0.25s; }
.menu-btn::before { top: 14px; } .menu-btn span { top: 19.5px; } .menu-btn::after { top: 25px; }
.menu-btn[aria-expanded="true"]::before { transform: translateY(5.5px) rotate(45deg); }
.menu-btn[aria-expanded="true"]::after { transform: translateY(-5.5px) rotate(-45deg); }
.menu-btn[aria-expanded="true"] span { opacity: 0; }
.mobile-menu { display: none; }
@media (max-width: 960px) {
  .nav-in { grid-template-columns: 1fr auto; }
  .nav-links { display: none; }
  .nav-cta .btn { display: none; }
  .menu-btn { display: block; }
  .mobile-menu { position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 39; background: rgba(7,8,10,0.96); border-bottom: 1px solid var(--line); padding: 18px 24px 26px; display: none; flex-direction: column; gap: 4px; }
  .mobile-menu.open { display: flex; }
  .mobile-menu a { font-family: var(--mono); font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-2); padding: 12px 0; border-bottom: 1px solid var(--line); }
  .mobile-menu a:last-child { border-bottom: 0; }
}

/* ------------------------------------------------------------------ hero */
.hero {
  position: relative; min-height: 100svh; display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
  padding-top: calc(var(--nav-h) + 8px); padding-bottom: 40px; background: var(--bg); overflow: hidden;
}
.hero .wrap { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }
.hero .kicker { margin: 26px 0 18px; }
.hero h1 { font-size: clamp(2.4rem, 6vw, 5rem); letter-spacing: -0.045em; line-height: 0.98; font-weight: 800; font-stretch: 88%; max-width: 16ch; }
.hero .sub { max-width: 60ch; margin-top: 20px; color: var(--ink-2); font-size: clamp(1rem, 1.45vw, 1.14rem); line-height: 1.65; text-wrap: pretty; }
.hero .cta { display: flex; gap: 12px; margin-top: 26px; flex-wrap: wrap; justify-content: center; }
.hero .cue { margin-top: 34px; font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--ink-dim); }
.hero .cue::after { content: ""; display: block; width: 1px; height: 28px; margin: 10px auto 0; background: linear-gradient(var(--blue-hot), transparent); }
.nana-hero { position: relative; z-index: 2; height: clamp(300px, 46svh, 520px); margin-top: 8px; filter: drop-shadow(0 34px 44px rgba(0,0,0,0.75)); }
.nana-hero img { height: 100%; width: auto; }
/* the hangar: a floor grid receding into blue haze, a horizon, and a pool of flight yellow under his feet */
.hangar { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.hangar .horizon {
  position: absolute; left: 0; right: 0; top: calc(var(--nav-h) + 8px + clamp(300px, 46svh, 520px) - 40px); height: 1px;
  background: linear-gradient(90deg, transparent, rgba(156,211,255,0.45) 30%, rgba(156,211,255,0.45) 70%, transparent);
}
.hangar .horizon::before {
  content: ""; position: absolute; left: 0; right: 0; top: -180px; height: 180px;
  background: radial-gradient(60% 100% at 50% 100%, rgba(63,125,255,0.22), transparent 70%);
}
.hangar .pool {
  position: absolute; left: 50%; top: calc(var(--nav-h) + 8px + clamp(300px, 46svh, 520px) - 70px); width: 620px; height: 160px; transform: translateX(-50%);
  background: radial-gradient(50% 50% at 50% 50%, rgba(245,183,27,0.28), rgba(245,183,27,0.06) 55%, transparent 75%);
  filter: blur(14px); animation: breathe 7s ease-in-out infinite;
}
@keyframes breathe { 0%,100% { opacity: 0.8; } 50% { opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .hangar .pool { animation: none; } }
@media (max-width: 760px) { .nana-hero { height: clamp(260px, 40svh, 420px); } .hangar .horizon, .hangar .pool { top: calc(var(--nav-h) + 8px + clamp(260px, 40svh, 420px) - 40px); } .hangar .pool { top: calc(var(--nav-h) + 8px + clamp(260px, 40svh, 420px) - 70px); } }

/* ------------------------------------------------------------------ why and thesis */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; max-width: 960px; margin: 52px auto 0; border-top: 1px solid var(--line-2); }
.stat { padding: 30px 18px 0; border-left: 1px solid var(--line); }
.stat:first-child { border-left: 0; }
.stat .n { font-family: var(--mono); font-size: clamp(1.7rem, 3.6vw, 2.5rem); font-weight: 500; color: var(--ink); letter-spacing: -0.02em; }
.stat .n.y { color: var(--yellow); } .stat .n.b { color: var(--blue-hot); }
.stat .k { margin-top: 10px; font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-dim); line-height: 1.6; }
.src { margin-top: 18px; font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.08em; color: var(--ink-faint); }
@media (max-width: 640px) { .stats { grid-template-columns: 1fr; } .stat { border-left: 0; border-top: 1px solid var(--line); padding-bottom: 24px; } .stat:first-child { border-top: 0; } }
.thesis { padding-block: clamp(60px, 8vw, 100px); }
.thesis .q { font-size: clamp(1.7rem, 4.2vw, 2.9rem); font-weight: 700; letter-spacing: -0.03em; max-width: 26ch; margin: 0 auto; line-height: 1.12; font-stretch: 92%; }
.thesis .sub { margin-top: 20px; font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.2em; color: var(--ink-dim); text-transform: uppercase; }

/* ------------------------------------------------------------------ screenshots */
.shot { max-width: 1080px; margin: 52px auto 0; }
.shot img { width: 100%; height: auto; border: 1px solid var(--line-2); border-radius: 4px; box-shadow: 0 50px 100px rgba(0,0,0,0.6), 0 0 0 1px rgba(0,0,0,0.6); background: #0b0d10; }
.shot figcaption { margin-top: 16px; font-size: 0.92rem; color: var(--ink-dim); line-height: 1.6; max-width: 70ch; margin-inline: auto; text-wrap: pretty; }
.shot figcaption .b { color: var(--blue-hot); font-weight: 500; }
.shot figcaption .y { color: var(--yellow); font-weight: 500; }

/* ------------------------------------------------------------------ hairline lists */
.list { max-width: 900px; margin: 52px auto 0; text-align: left; border-top: 1px solid var(--line-2); }
.list .item { display: grid; grid-template-columns: 260px 1fr; gap: 28px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.list .item h3 { font-size: 1.2rem; letter-spacing: -0.02em; font-stretch: 92%; }
.list .item p { color: var(--ink-2); font-size: 0.96rem; line-height: 1.65; }
@media (max-width: 720px) { .list .item { grid-template-columns: 1fr; gap: 8px; } }
.rail { max-width: 900px; margin: 44px auto 0; padding: 26px 0 0; border-top: 1px solid var(--line-2); text-align: left; }
.rail-h { font-size: clamp(1.2rem, 2.2vw, 1.6rem); font-weight: 700; letter-spacing: -0.02em; font-stretch: 92%; margin-bottom: 12px; }
.rail p { color: var(--ink-2); font-size: 0.98rem; line-height: 1.65; max-width: 70ch; }
.rail .fine { margin-top: 14px; font-size: 0.86rem; color: var(--ink-dim); }

/* ------------------------------------------------------------------ stalk */
.feats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 36px; max-width: var(--maxw); margin: 48px auto 0; text-align: left; }
@media (max-width: 900px) { .feats { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .feats { grid-template-columns: 1fr; } }
.feat { padding: 22px 0 6px; border-top: 1px solid var(--line-2); }
.feat h4 { font-size: 1.05rem; letter-spacing: -0.01em; margin-bottom: 8px; }
.feat p { font-size: 0.9rem; color: var(--ink-2); line-height: 1.6; }

/* ------------------------------------------------------------------ fit */
.chain { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; max-width: var(--maxw); margin: 48px auto 36px; text-align: left; }
.chain .link { position: relative; padding: 22px 28px 0 0; border-top: 1px solid var(--line-2); }
.chain .link + .link { padding-left: 28px; }
.chain .link + .link::before { content: ""; position: absolute; left: -6px; top: -6px; width: 11px; height: 11px; border-top: 1px solid var(--ink-dim); border-right: 1px solid var(--ink-dim); transform: rotate(45deg); background: var(--bg); }
.chain .link.hot { border-top-color: var(--blue-hot); }
.chain .link.warm { border-top-color: var(--yellow); }
.chain .link.warm .ck { color: var(--yellow); }
.chain .ck { font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--ink); margin-bottom: 10px; }
.chain .link.hot .ck { color: var(--blue-hot); }
.chain p { color: var(--ink-2); font-size: 0.92rem; line-height: 1.6; }
@media (max-width: 860px) { .chain { grid-template-columns: 1fr; } .chain .link { padding: 20px 0 18px; border-top: 1px solid var(--line); } .chain .link + .link { padding-left: 0; } .chain .link + .link::before { display: none; } .chain .link.hot { border-top-color: var(--blue-hot); } .chain .link.warm { border-top-color: var(--yellow); } }

.stack { max-width: 1000px; margin: 52px auto 0; text-align: left; border-top: 1px solid var(--line-2); padding-top: 22px; }
.stack-h { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-dim); margin-bottom: 8px; }
.stack dl { margin: 0; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0 36px; }
.stack dl div { padding: 18px 0; border-bottom: 1px solid var(--line); }
.stack dt { font-family: var(--mono); font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink); }
.stack dd { margin: 8px 0 0; color: var(--ink-2); font-size: 0.9rem; line-height: 1.6; }
@media (max-width: 900px) { .stack dl { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .stack dl { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------------ aircraft */
.stage { position: relative; max-width: 980px; margin: 44px auto 0; aspect-ratio: 16 / 9.5; border: 1px solid var(--line-2); border-radius: 3px; background: transparent; pointer-events: none; }
@media (max-width: 720px) { .stage { aspect-ratio: 4 / 4.2; } }
.stage .corner { position: absolute; width: 18px; height: 18px; border-color: var(--blue-hot); border-style: solid; border-width: 0; opacity: 0.8; }
.stage .corner.tl { top: -1px; left: -1px; border-top-width: 1px; border-left-width: 1px; }
.stage .corner.tr { top: -1px; right: -1px; border-top-width: 1px; border-right-width: 1px; }
.stage .corner.bl { bottom: -1px; left: -1px; border-bottom-width: 1px; border-left-width: 1px; }
.stage .corner.br { bottom: -1px; right: -1px; border-bottom-width: 1px; border-right-width: 1px; }
.stage .label { position: absolute; top: 14px; left: 18px; text-align: left; font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--blue-hot); }
.stage .label i { display: block; font-style: normal; color: var(--ink-dim); margin-top: 4px; letter-spacing: 0.14em; }
.stage .status { position: absolute; top: 14px; right: 18px; }
.stage .status .st { color: var(--yellow); }
.stage .hint { position: absolute; left: 0; right: 0; bottom: 14px; font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.18em; color: var(--ink-dim); text-transform: uppercase; }
.stage .loading { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-dim); }
.stage .fallback { position: absolute; inset: 0; display: none; align-items: center; justify-content: center; }
.stage .fallback svg { width: 70%; max-width: 620px; height: auto; }
.stage.nogl .fallback { display: flex; }
.stage.nogl .hint, .stage.nogl .loading { display: none; }
.hs { position: absolute; left: 0; top: 0; transform: translate(-50%, -50%); pointer-events: none; opacity: 0; transition: opacity 0.4s; }
.hs.on { opacity: 1; }
.hs .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue-hot); box-shadow: 0 0 0 4px rgba(63,125,255,0.18), 0 0 14px rgba(63,125,255,0.6); margin: 0 auto; }
.hs .lbl {
  position: absolute; left: 14px; top: -6px; width: max-content; max-width: 240px; white-space: normal; text-align: left;
  font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink);
  padding: 6px 10px; border-left: 1px solid var(--blue-hot); background: rgba(7,8,10,0.72); line-height: 1.4;
}
.hs .lbl small { display: block; font-size: 0.56rem; color: var(--ink-dim); letter-spacing: 0.08em; text-transform: none; margin-top: 2px; }
.hs.flip .lbl { left: auto; right: 14px; text-align: right; border-left: 0; border-right: 1px solid var(--blue-hot); }
.hs.back { opacity: 0; }
@media (max-width: 860px) { .hs .lbl { display: none; } }
.specline { max-width: 900px; margin: 26px auto 0; font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-2); line-height: 2; }
.compliance { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; max-width: 900px; margin: 18px auto 0; font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-dim); line-height: 1.8; }

/* ------------------------------------------------------------------ missions */
.mlist { display: grid; grid-template-columns: 1fr 1fr; gap: 0 48px; max-width: var(--maxw); margin: 44px auto 0; text-align: left; }
@media (max-width: 760px) { .mlist { grid-template-columns: 1fr; } }
.mrow { padding: 26px 0 24px; border-top: 1px solid var(--line-2); }
.mrow .t { font-family: var(--mono); font-size: 0.58rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--yellow); }
.mrow h4 { font-size: 1.2rem; letter-spacing: -0.02em; margin: 10px 0 8px; }
.mrow p { font-size: 0.92rem; color: var(--ink-2); line-height: 1.6; }
.mrow .dual { display: grid; grid-template-columns: auto 1fr; gap: 4px 12px; margin-top: 12px; font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.08em; color: var(--ink-dim); text-transform: uppercase; line-height: 1.5; }
.mrow .dual b { color: var(--ink-2); font-weight: 500; }

/* ------------------------------------------------------------------ program */
.timeline { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: var(--maxw); margin: 56px auto 0; text-align: left; }
.tl-line { position: absolute; left: 0; right: 0; top: 5px; height: 1px; background: linear-gradient(90deg, var(--yellow) 0, var(--yellow) 25%, var(--line-2) 25%); }
.tl { position: relative; padding-top: 28px; }
.tl .dot { position: absolute; top: 0; left: 0; width: 11px; height: 11px; border-radius: 50%; background: var(--bg); border: 1px solid var(--ink-dim); }
.tl.now .dot { background: var(--yellow); border-color: var(--yellow); box-shadow: 0 0 0 5px rgba(245,183,27,0.16), 0 0 18px rgba(245,183,27,0.5); }
.tl .when { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-dim); }
.tl.now .when { color: var(--yellow); }
.tl h4 { font-size: 1.25rem; letter-spacing: -0.02em; margin: 10px 0 8px; }
.tl p { font-size: 0.9rem; color: var(--ink-2); line-height: 1.6; }
@media (max-width: 900px) { .timeline { grid-template-columns: 1fr 1fr; } .tl-line { display: none; } .tl { padding-left: 24px; padding-top: 0; border-left: 1px solid var(--line-2); } .tl .dot { left: -6px; top: 4px; } .tl.now { border-left-color: var(--yellow); } }
@media (max-width: 560px) { .timeline { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------------ company */
.team { max-width: 720px; margin: 56px auto 0; padding-top: 44px; border-top: 1px solid var(--line-2); text-align: center; }
.team .kicker { margin-bottom: 14px; }
.team h3 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); letter-spacing: -0.025em; font-stretch: 92%; margin-bottom: 16px; }
.team p { color: var(--ink-2); font-size: 1.02rem; line-height: 1.7; text-wrap: pretty; }
.lore { max-width: 720px; margin: 56px auto 0; padding-top: 44px; border-top: 1px solid var(--line-2); }
.lore img { height: 220px; width: auto; margin: 0 auto 26px; filter: drop-shadow(0 24px 40px rgba(0,0,0,0.7)); }
.lore .kicker { margin-bottom: 14px; }
.lore h3 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); letter-spacing: -0.025em; font-stretch: 92%; margin-bottom: 16px; }
.lore p { color: var(--ink-2); font-size: 1.02rem; line-height: 1.7; text-wrap: pretty; }
.lore p + p { margin-top: 12px; }
.shop { max-width: 720px; margin: 56px auto 0; padding-top: 44px; border-top: 1px solid var(--line-2); }
.shop .kicker { margin-bottom: 14px; }
.shop h3 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); letter-spacing: -0.025em; font-stretch: 92%; margin-bottom: 16px; }
.shop p { color: var(--ink-2); font-size: 1.02rem; line-height: 1.7; text-wrap: pretty; }

/* ------------------------------------------------------------------ store */
.store { display: grid; grid-template-columns: 300px 1fr; gap: 56px; align-items: center; max-width: 1000px; margin: 48px auto 0; text-align: left; }
@media (max-width: 800px) { .store { grid-template-columns: 1fr; gap: 28px; } .store-art { margin: 0 auto; } }
.store-art { display: flex; align-items: center; justify-content: center; }
.store-art img { height: 300px; width: auto; filter: drop-shadow(0 30px 50px rgba(0,0,0,0.7)); }
.store-list { border-top: 1px solid var(--line-2); }
.store-list .item { padding: 20px 0; border-bottom: 1px solid var(--line); }
.store-list h3 { font-size: 1.15rem; letter-spacing: -0.02em; margin-bottom: 6px; }
.store-list p { color: var(--ink-2); font-size: 0.92rem; line-height: 1.6; }
.interest { max-width: 1000px; margin: 28px auto 0; text-align: left; }
.interest-row { display: grid; grid-template-columns: 1fr auto auto; gap: 18px; align-items: end; }
@media (max-width: 860px) { .interest-row { grid-template-columns: 1fr; align-items: stretch; } }
.checks { border: 0; margin: 0; padding: 0; display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.checks legend { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-dim); margin-bottom: 8px; }
.checks label { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.08em; color: var(--ink-2); padding: 12px 14px; border: 1px solid var(--line-2); border-radius: 2px; cursor: pointer; }
.checks input { accent-color: var(--yellow); width: 14px; height: 14px; margin: 0; }

/* ------------------------------------------------------------------ forms and contact */
.contact { max-width: 760px; margin: 44px auto 0; text-align: left; }
.form { display: grid; gap: 16px; padding: 30px 0 0; border-top: 1px solid var(--line-2); }
.form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.f2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .f2 { grid-template-columns: 1fr; } }
.field { display: grid; gap: 8px; }
.field.grow { min-width: 0; }
.field span { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-dim); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 0.98rem; color: var(--ink); background: var(--bg); border: 1px solid var(--line-2); border-radius: 2px;
  padding: 12px 14px; outline: none; transition: border-color 0.2s, box-shadow 0.2s; appearance: none; -webkit-appearance: none;
}
.field select { background-image: linear-gradient(45deg, transparent 50%, var(--ink-dim) 50%), linear-gradient(135deg, var(--ink-dim) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%; background-size: 6px 6px; background-repeat: no-repeat; padding-right: 40px; }
.field textarea { resize: vertical; min-height: 130px; line-height: 1.55; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(63,125,255,0.18); }
.form-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 6px; }
.form .btn { font-size: 0.7rem; padding: 13px 22px; }
.direct { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.08em; color: var(--ink-dim); }
.direct a { color: var(--blue-hot); border-bottom: 1px solid rgba(156,211,255,0.3); }
.direct a:hover { border-color: var(--blue-hot); }

/* ------------------------------------------------------------------ footer */
footer { border-top: 1px solid var(--line); padding: 36px 0 44px; background: var(--bg); }
.foot { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; flex-wrap: wrap; text-align: left; }
.foot-marks { display: flex; flex-direction: column; gap: 4px; }
.fm-name { font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; font-size: 0.8rem; font-stretch: 90%; color: var(--yellow); }
.fm-name span { color: var(--yellow); }
.fm-sub { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-dim); }
.foot-links { display: flex; gap: 22px; flex-wrap: wrap; }
.foot-links a { font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-dim); transition: color 0.2s; }
.foot-links a:hover { color: var(--blue-hot); }
.foot-legal { margin-top: 22px; font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); text-align: left; line-height: 1.8; }

/* ------------------------------------------------------------------ thanks page */
body.plain::after { display: none; }
.thanks { min-height: 100svh; display: flex; align-items: center; justify-content: center; padding: 40px 0; }
.thanks .wrap { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.thanks .brand { margin-bottom: 40px; }
.thanks h1 { font-size: clamp(2.2rem, 5.6vw, 4.2rem); letter-spacing: -0.04em; font-stretch: 90%; max-width: 16ch; }
.thanks .lede a { color: var(--blue-hot); }
.thanks .btn { margin-top: 10px; }

/* ------------------------------------------------------------------ centering pass */
.list { text-align: left; max-width: var(--maxw); border-top: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 36px; }
.list .item { display: block; padding: 22px 0 8px; border-top: 1px solid var(--line-2); border-bottom: 0; }
.list .item h3 { margin-bottom: 8px; font-size: 1.1rem; }
.list .item p { font-size: 0.92rem; }
@media (max-width: 900px) { .list { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .list { grid-template-columns: 1fr; } }
.rail { text-align: center; }
.rail p { margin-inline: auto; }
.feats { text-align: center; }
.feat p { max-width: 40ch; margin: 0 auto; }
.chain { text-align: center; }
.chain .link { padding-right: 20px; }
.chain .link + .link { padding-left: 20px; }
.chain p { max-width: 30ch; margin: 0 auto; }
.stack { text-align: center; }
.stack dd { max-width: 34ch; margin-inline: auto; }
.mlist { text-align: center; }
.mrow p { max-width: 48ch; margin: 0 auto; }
.mrow .dual { display: block; line-height: 1.9; }
.mrow .dual b { display: inline; }
.mrow .dual b::after { content: " · "; color: var(--ink-faint); }
.mrow .dual span { display: inline; }
.mrow .dual span::after { content: ""; display: block; height: 0; }
.timeline { text-align: center; }
.tl .dot { left: 50%; transform: translateX(-50%); }
.tl p { max-width: 30ch; margin: 0 auto; }
@media (max-width: 900px) { .tl { padding-left: 0; padding-top: 28px; border-left: 0; } .tl .dot { left: 50%; top: 0; } }
.lore, .shop { text-align: center; }
.contact { text-align: center; }
.form { text-align: center; }
.field span { text-align: left; }
.form-foot { justify-content: center; flex-direction: column; gap: 14px; }
.foot { flex-direction: column; align-items: center; text-align: center; gap: 16px; }
.foot-marks { align-items: center; }
.foot-links { justify-content: center; }
.foot-legal { text-align: center; }
