/* ════════════════════════════════════════════════════════════
   AXL — "KINETIC"  (v5 · a radical redesign)
   Modern, motion-led, crisp. Cool paper, rich ink, one electric
   indigo. Bricolage Grotesque (expressive display) + Onest (body)
   + Space Mono (labels). One disciplined left-aligned grid so every
   section lines up. Kinetic type, magnetic buttons, a flowing engine.
   Rules: static page background; visible by natural CSS state; JS arms
   from-states; settled janitor kills transitions; wall-clock timing.
   ════════════════════════════════════════════════════════════ */

:root {
  --paper: #F2F1EC;
  --paper-2: #EAE8E1;
  --card: #FBFAF6;
  --ink: #131210;
  --ink-2: #565247;
  --faint: #928D80;
  --indigo: #4A22E8;
  --indigo-2: #7A57FF;
  --indigo-soft: rgba(74, 34, 232, 0.1);
  --dark: #131210;
  --line: rgba(19, 18, 16, 0.12);
  --line-2: rgba(19, 18, 16, 0.22);
  --ember: #C24A24;
  --disp: "Bricolage Grotesque", Georgia, serif;
  --sans: "Onest", -apple-system, system-ui, sans-serif;
  --mono: "Space Mono", ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --wrap: 1200px;
  --nav-h: 76px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.mono { font-family: var(--mono); }
.disp { font-family: var(--disp); }
.x { color: var(--indigo); }
em { font-style: normal; color: var(--indigo); font-weight: 600; }
::selection { background: var(--indigo); color: #fff; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(20px, 4vw, 52px); }
.rail { position: fixed; top: 0; left: 0; height: 2px; width: 0; background: var(--indigo); z-index: 70; }

/* ─────────────────────── nav ───────────────────────────── */

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60; height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 52px);
  background: linear-gradient(180deg, var(--paper) 45%, rgba(242, 241, 236, 0));
}
.brand { font-family: var(--disp); font-weight: 700; font-size: 24px; letter-spacing: -0.01em; color: var(--ink); text-decoration: none; }
.brand .x { color: var(--indigo); }
/* truly centered regardless of the side widths */
.nav-mid { position: absolute; left: 50%; transform: translateX(-50%); font-size: 10px; letter-spacing: 0.16em; color: var(--faint); }
.nav-cta { font-size: 13px; font-weight: 500; text-decoration: none; color: var(--ink); border: 1.5px solid var(--ink); border-radius: 999px; padding: 9px 18px; transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease; }
.nav-cta:hover { background: var(--indigo); border-color: var(--indigo); color: #fff; }

/* ─────────────────────── reveal + kinetic ──────────────── */

.reveal { opacity: 1; transform: none; transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
html.js .reveal:not(.in) { opacity: 0; transform: translateY(22px); }
.d2 { transition-delay: 0.12s; } .d3 { transition-delay: 0.24s; }
html.settled .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }

/* kinetic headline: words rise from a mask.
   padding-bottom gives descenders (g, y) room inside the clip box. */
.hero-h .line, .close-h .line { display: block; overflow: hidden; padding-bottom: 0.14em; margin-bottom: -0.08em; }
.hero-h .w, .close-h .w { display: inline-block; transform: translateY(100%); transition: transform 0.9s var(--ease); }
html:not(.js) .hero-h .w, html:not(.js) .close-h .w { transform: none; }
.hero-h.in .w, .close-h.in .w { transform: none; }
html.settled .hero-h .w, html.settled .close-h .w { transform: none !important; transition: none !important; }
.hero-h .w:nth-child(2) { transition-delay: 0.05s; } .hero-h .w:nth-child(3) { transition-delay: 0.1s; } .hero-h .w:nth-child(4) { transition-delay: 0.15s; }
.close-h .w:nth-child(2) { transition-delay: 0.05s; } .close-h .w:nth-child(3) { transition-delay: 0.1s; }

/* ─────────────────────── hero ──────────────────────────── */

.hero { padding: calc(var(--nav-h) + 8vh) 0 9vh; min-height: 100vh; display: flex; align-items: center; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(28px, 5vw, 68px); align-items: center; width: 100%; }
.tag { font-size: 11px; letter-spacing: 0.14em; color: var(--indigo); margin-bottom: 26px; }
.hero-h {
  font-family: var(--disp); font-weight: 700;
  font-size: clamp(46px, 7.4vw, 104px);
  line-height: 0.94; letter-spacing: -0.035em;
}
.hero-h .ink-x { color: var(--indigo); }
.hero-sub { margin-top: 30px; font-size: clamp(16px, 1.55vw, 19px); color: var(--ink-2); max-width: 46ch; line-height: 1.6; }

.hero-cta { margin-top: 38px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.btn {
  display: inline-block; text-decoration: none;
  background: var(--indigo); color: #fff;
  font-size: 14px; font-weight: 600; letter-spacing: 0.01em;
  padding: 15px 30px; border-radius: 999px;
  transition: background 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 12px 30px rgba(74, 34, 232, 0.24);
  will-change: transform;
}
.btn:hover { background: #3a17c8; box-shadow: 0 18px 44px rgba(74, 34, 232, 0.34); }
.btn.big { font-size: 15px; padding: 18px 40px; }
.btn.light { background: var(--paper); color: var(--ink); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28); }
.btn.light:hover { background: #fff; }
.btn-ghost { text-decoration: none; color: var(--ink); font-size: 14px; font-weight: 500; position: relative; padding-bottom: 3px; }
.btn-ghost::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1.5px; background: var(--indigo); transform: scaleX(0); transform-origin: left; transition: transform 0.35s var(--ease); }
.btn-ghost:hover::after { transform: scaleX(1); }

.hero-meta { margin-top: 34px; display: flex; flex-direction: column; gap: 8px; }
.seats { display: inline-flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 600; color: var(--indigo); }
.seats i { width: 7px; height: 7px; border-radius: 50%; background: var(--indigo); box-shadow: 0 0 0 3px var(--indigo-soft); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 6px rgba(74, 34, 232, 0); } }
.hero-meta .mono { font-size: 11px; letter-spacing: 0.02em; color: var(--faint); }

/* growth-gap figure */
.hero-fig { width: 100%; }
.fig-frame { border: 1.5px solid var(--ink); border-radius: 20px; background: var(--card); padding: 18px 18px 14px; box-shadow: 8px 8px 0 var(--ink); }
.fig-lab { display: block; font-size: 10px; letter-spacing: 0.14em; color: var(--faint); margin-bottom: 8px; }
.stall { width: 100%; aspect-ratio: 1 / 0.72; display: block; }

/* ─────────────────────── ticker ────────────────────────── */

.ticker { display: flex; align-items: center; overflow: hidden; height: 72px; background: var(--ink); color: var(--paper); }
.ticker-tag { flex: none; height: 100%; display: flex; align-items: center; padding: 0 24px 0 clamp(20px, 4vw, 52px); font-size: 11px; letter-spacing: 0.16em; color: var(--indigo-2); border-right: 1px solid rgba(255, 255, 255, 0.14); }
.ticker-view { flex: 1; overflow: hidden; }
.ticker-track { display: inline-flex; white-space: nowrap; font-family: var(--disp); font-weight: 600; font-size: clamp(22px, 2.6vw, 34px); letter-spacing: -0.01em; animation: marq 38s linear infinite; padding-left: 26px; }
.ticker-track i { font-style: normal; color: var(--indigo-2); padding: 0 0.6em; font-size: 0.6em; vertical-align: 0.2em; }
@keyframes marq { to { transform: translateX(-50%); } }

/* ─────────────────────── sections ──────────────────────── */

.sec { padding: clamp(12vh, 15vh, 17vh) 0; border-top: 1px solid var(--line); }
.sec-head { max-width: 900px; }
.sec-no { display: block; font-size: 11px; letter-spacing: 0.14em; color: var(--indigo); margin-bottom: 22px; }
.sec-h { font-family: var(--disp); font-weight: 700; font-size: clamp(32px, 5vw, 66px); line-height: 0.98; letter-spacing: -0.03em; }
.sec-h .x { color: var(--indigo); }
.sec-lead { margin-top: 26px; max-width: 62ch; font-size: clamp(16px, 1.5vw, 19px); color: var(--ink-2); line-height: 1.6; }

/* dark section (where you are) — contrast moment */
.sec.dark { background: var(--dark); color: var(--paper); border-top: none; }
.sec.dark .sec-h { color: var(--paper); }
.sec.dark .sec-h .x-l { color: var(--indigo-2); }
.sec.dark .sec-no { color: var(--indigo-2); }
.who-lead { margin-top: 8px; max-width: 60ch; font-size: clamp(17px, 1.6vw, 21px); color: rgba(242, 241, 236, 0.82); line-height: 1.5; }
.pains { list-style: none; margin-top: 52px; border-top: 1px solid rgba(255, 255, 255, 0.14); }
.pain { display: grid; grid-template-columns: 60px 1fr; gap: 20px; align-items: baseline; padding: 26px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.14); }
.pain-n { font-size: 12px; color: var(--indigo-2); }
.pain-t { font-family: var(--disp); font-weight: 500; font-size: clamp(20px, 2.6vw, 34px); line-height: 1.1; letter-spacing: -0.02em; color: var(--paper); }
.who-turn { margin-top: 44px; max-width: 54ch; font-size: 17px; color: rgba(242, 241, 236, 0.72); }

/* 01 · engine */
.engine { margin: 56px auto 40px; max-width: 780px; }
.engine-svg { width: 100%; height: auto; display: block; overflow: visible; }
.en-links line { stroke: var(--line-2); stroke-width: 1.4; }
.en-flow circle { fill: var(--indigo); }
.en-node rect { fill: var(--card); stroke: var(--ink); stroke-width: 1.6; transition: stroke 0.25s ease, fill 0.25s ease; }
.en-node:hover rect { stroke: var(--indigo); fill: #fff; }
.en-node .en-t { fill: var(--ink); font-family: var(--disp); font-size: 16px; font-weight: 600; }
.en-node .en-dot { fill: var(--indigo); }
.en-hub-ring { fill: none; stroke: var(--indigo); stroke-width: 1.4; stroke-dasharray: 3 6; opacity: 0.5; }
.en-hub-c { fill: var(--indigo); }
.en-hub-t { fill: #fff; font-family: var(--disp); font-size: 22px; font-weight: 700; text-anchor: middle; letter-spacing: 0.02em; }
.en-hub-s { fill: rgba(255, 255, 255, 0.7); font-family: var(--mono); font-size: 8px; letter-spacing: 0.2em; text-anchor: middle; }

/* 01 · functions */
.funcs { list-style: none; margin-top: 44px; border-top: 1px solid var(--line); }
.func { display: grid; grid-template-columns: 54px 1fr; gap: 24px; align-items: baseline; padding: 26px 6px; border-bottom: 1px solid var(--line); transition: background 0.3s ease, padding-left 0.3s var(--ease); }
.func:hover { background: var(--indigo-soft); padding-left: 16px; }
.func-n { font-size: 13px; color: var(--indigo); }
.func h3 { font-family: var(--disp); font-weight: 600; font-size: clamp(21px, 2.2vw, 28px); letter-spacing: -0.015em; }
.func p { margin-top: 7px; color: var(--ink-2); max-width: 62ch; font-size: 16px; }

/* 03 · shift */
.shift { margin-top: 54px; display: grid; grid-template-columns: 0.8fr auto 1.2fr; gap: clamp(20px, 4vw, 44px); align-items: center; }
.shift-col { border: 1.5px solid var(--ink); border-radius: 16px; padding: 26px 24px; background: var(--card); }
.shift-col.new { border-color: var(--indigo); box-shadow: 6px 6px 0 var(--indigo); }
.shift-lab { display: block; font-size: 10px; letter-spacing: 0.12em; color: var(--faint); margin-bottom: 16px; }
.shift-col.new .shift-lab { color: var(--indigo); }
.shift-col ul { list-style: none; }
.shift-col li { padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 15px; color: var(--ink-2); }
.shift-col li:last-child { border: none; }
.shift-col.old li { text-decoration: line-through; text-decoration-color: rgba(194, 74, 36, 0.5); color: var(--faint); }
.shift-col.new li b { color: var(--ink); font-weight: 600; }
.shift-arrow svg { width: 60px; height: 24px; }
.shift-arrow path { fill: none; stroke: var(--indigo); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
@media (max-width: 780px) { .shift { grid-template-columns: 1fr; } .shift-arrow { transform: rotate(90deg); justify-self: center; } }

/* 04 · compounding */
.method-fig { margin-top: 54px; max-width: 920px; border: 1.5px solid var(--ink); border-radius: 18px; background: var(--card); overflow: hidden; box-shadow: 8px 8px 0 var(--ink); }
.mf-head, .mf-foot { display: flex; justify-content: space-between; align-items: center; padding: 16px 22px; font-size: 10px; letter-spacing: 0.12em; color: var(--faint); }
.mf-head { border-bottom: 1px solid var(--line); }
.mf-foot { border-top: 1px solid var(--line); }
.mf-foot b { font-family: var(--disp); font-size: 16px; color: var(--indigo); letter-spacing: 0; }
.compound { width: 100%; height: 220px; display: block; padding: 20px 22px 0; }
.cmp-bar { fill: var(--indigo-soft); }
.cmp-bar.hot { fill: var(--indigo); }
.cmp-base { stroke: var(--line-2); stroke-width: 1; }

/* 05 · model */
.model { margin-top: 56px; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px, 5vw, 60px); align-items: start; }
.fee-num { font-family: var(--disp); font-weight: 700; font-size: clamp(56px, 8.4vw, 104px); line-height: 0.86; letter-spacing: -0.04em; color: var(--indigo); }
.fee-cur { font-size: 0.5em; vertical-align: 0.4em; margin-right: 2px; }
.fee-per { font-size: 12px; letter-spacing: 0.1em; color: var(--ink-2); margin-top: 12px; }
.fee-inc { list-style: none; margin-top: 28px; }
.fee-inc li { padding: 11px 0; border-top: 1px solid var(--line); font-size: 15px; color: var(--ink-2); }
.fee-inc li::before { content: "✓"; color: var(--indigo); font-weight: 700; margin-right: 10px; }

.model-teardown { border: 1.5px solid var(--ink); border-radius: 18px; background: var(--card); overflow: hidden; box-shadow: 8px 8px 0 var(--ink); }
.td-head { padding: 16px 22px; border-bottom: 1px solid var(--line); font-size: 10px; letter-spacing: 0.12em; color: var(--faint); }
.td-list { list-style: none; }
.td-list li { display: flex; justify-content: space-between; align-items: baseline; padding: 14px 22px; border-bottom: 1px solid var(--line); font-size: 15px; color: var(--ink-2); }
.td-list li span::before { content: "— "; color: var(--faint); }
.td-list b { font-family: var(--disp); font-weight: 600; font-size: 17px; color: var(--ink); }
.td-list b i, .td-total b i, .td-vs b i { font-style: normal; font-size: 0.6em; color: var(--faint); }
.td-total { display: flex; justify-content: space-between; align-items: baseline; padding: 18px 22px; border-bottom: 1px solid var(--line-2); background: rgba(194, 74, 36, 0.06); }
.td-total span { font-size: 11px; letter-spacing: 0.08em; color: var(--ember); }
.td-total b { font-family: var(--disp); font-size: 26px; font-weight: 700; color: var(--ember); }
.td-vs { display: flex; justify-content: space-between; align-items: baseline; padding: 18px 22px; background: var(--indigo-soft); }
.td-vs span { font-size: 11px; letter-spacing: 0.06em; color: var(--indigo); max-width: 24ch; }
.td-vs b { font-family: var(--disp); font-size: 26px; font-weight: 700; color: var(--indigo); }
.td-note { padding: 14px 22px 18px; font-size: 12px; color: var(--faint); line-height: 1.5; }
.model-punch { margin-top: 44px; max-width: 820px; font-family: var(--disp); font-weight: 500; font-size: clamp(22px, 2.8vw, 36px); line-height: 1.22; letter-spacing: -0.02em; }
.model-punch .x { color: var(--indigo); }

/* 06 · operator */
.me-grid { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.me-portrait { max-width: 280px; margin: 0 auto; text-align: center; }
/* frame ground = site paper so the sketch's white blends into the site;
   multiply + contrast deepens the graphite lines toward the ink palette */
.portrait-frame { border: 1.5px solid var(--ink); border-radius: 18px; overflow: hidden; background: var(--paper); box-shadow: 10px 10px 0 var(--indigo); aspect-ratio: 896/1200; }
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; display: block; mix-blend-mode: multiply; filter: contrast(1.16) brightness(0.92); }
.me-portrait figcaption { margin-top: 14px; font-size: 10px; letter-spacing: 0.16em; color: var(--faint); }
.me-lead { margin-top: 24px; max-width: 56ch; font-size: clamp(16px, 1.5vw, 19px); color: var(--ink-2); line-height: 1.62; }
.me-lead + .me-lead { margin-top: 18px; }
.me-lead em { color: var(--ink); font-weight: 600; }

/* ─────────────────────── FAQ ───────────────────────────── */

.faq-list { margin-top: 52px; border-top: 1px solid var(--line); max-width: 920px; }
.faq { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 26px 4px;
  font-family: var(--disp); font-weight: 600; font-size: clamp(19px, 2.1vw, 26px);
  letter-spacing: -0.015em; color: var(--ink);
  transition: color 0.2s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--indigo); }
.faq-ic { position: relative; width: 18px; height: 18px; flex: none; }
.faq-ic::before, .faq-ic::after { content: ""; position: absolute; background: var(--indigo); transition: transform 0.3s var(--ease); }
.faq-ic::before { left: 0; right: 0; top: 8px; height: 2px; }
.faq-ic::after { top: 0; bottom: 0; left: 8px; width: 2px; }
.faq[open] .faq-ic::after { transform: scaleY(0); }
.faq-a { overflow: hidden; }
.faq[open] .faq-a { animation: faqOpen 0.4s var(--ease); }
@keyframes faqOpen { from { opacity: 0; transform: translateY(-6px); } }
.faq-a p { padding: 0 4px 28px; max-width: 68ch; font-size: 16px; color: var(--ink-2); line-height: 1.62; }
.faq-a p em { color: var(--ink); font-weight: 600; }

/* ─────────────────────── close ─────────────────────────── */

.close { background: var(--dark); color: var(--paper); padding: clamp(16vh, 22vh, 26vh) 0; text-align: center; }
.close-tag { display: block; font-size: 11px; letter-spacing: 0.16em; color: var(--indigo-2); margin-bottom: 30px; }
.close-h { font-family: var(--disp); font-weight: 700; font-size: clamp(52px, 9vw, 130px); line-height: 0.92; letter-spacing: -0.04em; }
.close-h .x-l { color: var(--indigo-2); }
.close-lead { margin: 34px auto 0; max-width: 60ch; font-size: clamp(17px, 1.6vw, 21px); color: rgba(242, 241, 236, 0.78); line-height: 1.56; }
.close-cta { margin-top: 46px; }
.close-micro { margin-top: 24px; font-size: 10px; letter-spacing: 0.16em; color: rgba(242, 241, 236, 0.5); }

.foot {
  background: var(--dark); color: rgba(242, 241, 236, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 32px clamp(20px, 4vw, 52px) 40px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  font-size: 11px; letter-spacing: 0.06em;
}
.foot-brand { font-family: var(--disp); font-weight: 700; font-size: 20px; color: var(--paper); letter-spacing: -0.01em; }
.foot-brand .x { color: var(--indigo-2); }

/* ─────────────────────── apply / form page ─────────────── */

.foot-mail { color: inherit; text-decoration: none; }
.foot-mail:hover { color: var(--indigo-2); }

.apply { min-height: 100vh; padding: calc(var(--nav-h) + 7vh) 0 8vh; }
.apply-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(32px, 5vw, 80px); align-items: start; }

.apply-left { position: sticky; top: calc(var(--nav-h) + 6vh); }
.apply-step { display: block; font-size: 11px; letter-spacing: 0.14em; color: var(--indigo); margin-bottom: 22px; }
.apply-h { font-family: var(--disp); font-weight: 700; font-size: clamp(38px, 5vw, 68px); line-height: 0.96; letter-spacing: -0.035em; }
.apply-h .x { color: var(--indigo); }
.apply-lead { margin-top: 26px; max-width: 42ch; font-size: clamp(16px, 1.5vw, 18px); color: var(--ink-2); line-height: 1.6; }
.apply-note { margin-top: 28px; display: flex; gap: 14px; align-items: flex-start; padding: 18px 20px; border-left: 2px solid var(--indigo); background: var(--indigo-soft); border-radius: 0 12px 12px 0; }
.apply-note b { color: var(--ink); font-weight: 600; }
.apply-note p { font-size: 14px; color: var(--ink-2); line-height: 1.55; }
.apply-seats { margin-top: 26px; display: inline-flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 600; color: var(--indigo); }
.apply-seats i { width: 7px; height: 7px; border-radius: 50%; background: var(--indigo); box-shadow: 0 0 0 3px var(--indigo-soft); animation: pulse 2.4s ease-in-out infinite; }

.form-card { border: 1.5px solid var(--ink); border-radius: 20px; background: var(--card); box-shadow: 10px 10px 0 var(--ink); padding: clamp(24px, 3.5vw, 44px); }
/* Tally embed: card frame supplies the border/shadow; Tally supplies its own
   inner padding, so trim ours and let the transparent iframe blend in */
.tally-card { padding: clamp(10px, 1.5vw, 18px); overflow: hidden; }
.tally-embed { display: block; width: 100%; border: 0; min-height: 560px; background: transparent; }
.field { margin-bottom: 24px; }
.field:last-of-type { margin-bottom: 0; }
.field label { display: block; font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--faint); margin-bottom: 10px; }
.field label .req { color: var(--indigo); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 16px; color: var(--ink);
  background: var(--paper); border: 1.5px solid var(--line-2); border-radius: 12px;
  padding: 14px 16px; transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--faint); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--indigo); box-shadow: 0 0 0 3px var(--indigo-soft); }
.field textarea { min-height: 108px; resize: vertical; line-height: 1.5; }
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%234A22E8' stroke-width='2'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; cursor: pointer; }
.field.invalid input, .field.invalid textarea { border-color: var(--ember); }
.field .err { display: none; margin-top: 7px; font-size: 12px; color: var(--ember); }
.field.invalid .err { display: block; }

.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chip { font-family: var(--sans); font-size: 14px; font-weight: 500; color: var(--ink-2); background: var(--paper); border: 1.5px solid var(--line-2); border-radius: 999px; padding: 10px 18px; cursor: pointer; user-select: none; transition: all 0.18s ease; }
.chip:hover { border-color: var(--ink); }
.chip.on { background: var(--indigo); border-color: var(--indigo); color: #fff; }

.form-submit { margin-top: 30px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.form-submit .btn { border: none; cursor: pointer; font-family: var(--sans); }
.form-submit .micro { font-size: 12px; color: var(--faint); }

.form-success { display: none; text-align: center; padding: 20px 10px 10px; }
.form-success.show { display: block; animation: faqOpen 0.5s var(--ease); }
.success-mk { width: 56px; height: 56px; margin: 0 auto 22px; border-radius: 50%; background: var(--indigo); display: flex; align-items: center; justify-content: center; }
.success-mk svg { width: 26px; height: 26px; }
.success-mk path { fill: none; stroke: #fff; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.form-success h3 { font-family: var(--disp); font-weight: 700; font-size: clamp(26px, 3vw, 38px); letter-spacing: -0.02em; }
.form-success p { margin-top: 16px; max-width: 44ch; margin-left: auto; margin-right: auto; font-size: 16px; color: var(--ink-2); line-height: 1.6; }
.form-success .sig { margin-top: 22px; font-family: var(--disp); font-weight: 600; font-size: 18px; color: var(--indigo); }

/* ─────────────────────── responsive ────────────────────── */

@media (max-width: 900px) {
  .nav-mid { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-fig { order: -1; max-width: 460px; }
  .model, .me-grid { grid-template-columns: 1fr; }
  .me-portrait { max-width: 340px; order: -1; }
  .apply-grid { grid-template-columns: 1fr; }
  .apply-left { position: static; }
}
@media (max-width: 560px) {
  .nav-cta { display: none; }
  .func { grid-template-columns: 36px 1fr; gap: 14px; }
  .pain { grid-template-columns: 40px 1fr; gap: 12px; }
  .fig-frame, .method-fig, .model-teardown, .portrait-frame { box-shadow: 5px 5px 0 var(--ink); }
  .shift-col.new, .portrait-frame { box-shadow: 5px 5px 0 var(--indigo); }
}

/* ─────────────────────── reduced motion ────────────────── */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .hero-h .w, .close-h .w { transform: none !important; }
}
