/* ============================================================
   SYNRA — clean scientific design system
   ============================================================ */
:root {
  /* neutrals — faintly cool whites & inks */
  --bg:        oklch(0.992 0.003 220);
  --bg-2:      oklch(0.972 0.004 220);
  --surface:   oklch(1 0 0);
  --ink:       oklch(0.23 0.018 245);
  --ink-soft:  oklch(0.40 0.016 245);
  --muted:     oklch(0.56 0.012 245);
  --faint:     oklch(0.70 0.010 245);
  --line:      oklch(0.918 0.005 230);
  --line-2:    oklch(0.86 0.006 230);

  /* accent — teal */
  --accent:        oklch(0.70 0.115 192);
  --accent-deep:   oklch(0.55 0.105 195);
  --accent-ink:    oklch(0.42 0.085 197);
  --accent-wash:   oklch(0.965 0.020 192);
  --accent-wash-2: oklch(0.93 0.035 192);

  /* heatmap warm end (displacement) */
  --warm:      oklch(0.72 0.155 52);
  --warm-deep: oklch(0.62 0.16 40);

  --maxw: 1240px;
  --pad: clamp(20px, 5vw, 64px);
  --r: 14px;
  --r-lg: 22px;

  --sans: "Instrument Sans", system-ui, sans-serif;
  --mono: "Instrument Sans", system-ui, sans-serif;
  --display: "Cormorant Garamond", Georgia, serif;

  /* brand gradient (from the SYNRA mark: blue -> teal -> green) */
  --brand-grad: linear-gradient(115deg, oklch(0.55 0.13 252) 0%, oklch(0.62 0.11 205) 45%, oklch(0.72 0.15 150) 100%);
}

/* numeric alignment now that mono = Inter */
.num, .rv, .mhz, .cv, .pct, .big, .ro .rv, .statstrip .num, .cred-cell .cv,
[data-count] { font-feature-settings: "tnum" 1, "cv01" 1; font-variant-numeric: tabular-nums; }

/* ---------- number highlights ---------- */
.hl { color: var(--accent-ink); font-weight: 600; }
.hl-mark {
  color: var(--accent-ink); font-weight: 600;
  background: var(--accent-wash); padding: 0.02em 0.32em; border-radius: 6px;
  -webkit-box-decoration-break: clone; box-decoration-break: clone;
  white-space: nowrap;
}
.hl-dark { color: var(--accent); font-weight: 600; }
.hl-grad {
  background: var(--brand-grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent; font-weight: 700;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- typography ---------- */
h1, h2, h3, h4 { margin: 0; font-family: var(--display); font-weight: 600; letter-spacing: -0.008em; line-height: 1.04; text-wrap: balance; }
p { margin: 0; }
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-ink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--accent);
  display: inline-block;
}
.eyebrow.no-tick::before { display: none; }
.mono { font-family: var(--mono); }

/* ---------- layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
section { position: relative; }
.section-pad { padding-block: clamp(72px, 11vw, 150px); }
.lead { font-size: clamp(17px, 1.4vw, 20px); color: var(--ink-soft); line-height: 1.6; max-width: 60ch; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans);
  font-weight: 500; font-size: 15px;
  padding: 13px 22px; border-radius: 100px;
  border: 1px solid transparent; transition: .2s ease;
  white-space: nowrap;
}
.btn .arr { transition: transform .25s ease; }
.btn:hover .arr { transform: translateX(4px); }
.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { background: var(--accent-deep); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-accent { background: var(--accent); color: oklch(0.18 0.03 200); }
.btn-accent:hover { background: var(--accent-deep); color: white; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px var(--pad);
  transition: background .3s ease, border-color .3s ease, padding .3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: color-mix(in oklch, var(--bg) 80%, transparent);
  backdrop-filter: blur(14px) saturate(1.4);
  border-bottom-color: var(--line);
  padding-block: 11px;
}
.brand { display: flex; align-items: center; gap: 11px; }
.logo-img { height: 34px; width: auto; display: block; flex: none; }
.logo-slot {
  font-family: var(--sans); font-weight: 700; letter-spacing: 0.22em;
  font-size: 19px; padding-left: 0.22em;
}
.logo-mark {
  width: 26px; height: 26px; border-radius: 7px;
  background: var(--ink); position: relative; flex: none;
  display: grid; place-items: center;
}
.logo-mark::before {
  content:""; width: 10px; height: 10px; border-radius: 50%;
  border: 2px solid var(--accent);
}
.logo-mark::after {
  content:""; position: absolute; width: 3px; height: 3px; border-radius: 50%;
  background: var(--accent);
}
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-family: var(--sans); font-size: 14.5px; color: var(--ink-soft); transition: color .15s; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; }
@media (max-width: 940px) {
  .nav-links { display: none; }
}
@media (max-width: 560px) {
  .nav { padding: 12px 16px; gap: 8px; }
  .logo-img { height: 26px; }
  .logo-slot { font-size: 15px; letter-spacing: 0.16em; padding-left: 0.16em; }
  .brand { gap: 7px; min-width: 0; }
  .nav-cta { gap: 8px; flex: none; }
  .lang-switch { padding: 2px; }
  .lang-switch button { padding: 5px 8px; font-size: 11px; }
  .nav .btn-primary { padding: 9px 14px; font-size: 13px; gap: 6px; white-space: nowrap; }
}
@media (max-width: 380px) {
  .logo-slot { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { padding-top: clamp(120px, 16vw, 180px); padding-bottom: clamp(40px, 6vw, 70px); position: relative; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.hero h1 {
  font-size: clamp(40px, 5.6vw, 80px);
  line-height: 0.98; letter-spacing: -0.014em;
}
.hero h1 .accent { color: var(--accent-deep); }
.hero-sub { margin-top: 26px; }
.hero-actions { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-tagchip {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-ink); background: var(--accent-wash);
  border: 1px solid var(--accent-wash-2); border-radius: 100px;
  padding: 7px 14px 7px 11px; margin-bottom: 26px;
}
.pulse-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); position: relative; }
.pulse-dot::after {
  content:""; position: absolute; inset: -4px; border-radius: 50%;
  border: 1px solid var(--accent); animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse { 0%{transform:scale(.6);opacity:1} 100%{transform:scale(2.2);opacity:0} }

/* hero canvas viz */
.viz {
  position: relative; border-radius: var(--r-lg);
  background:
    radial-gradient(120% 120% at 70% 10%, oklch(0.99 0.01 200) 0%, var(--bg-2) 70%);
  border: 1px solid var(--line);
  overflow: hidden; aspect-ratio: 1 / 0.92;
  box-shadow: 0 30px 60px -40px oklch(0.4 0.05 220 / 0.5);
}
.viz canvas, .viz video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }

/* video + metrics (hero right column) */
.viz-pair { display: flex; flex-direction: column; gap: clamp(14px, 1.6vw, 18px); }
.viz-pair .viz { aspect-ratio: 16 / 10; }
.viz-metrics {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: oklch(0.32 0.02 245);
  border: 1px solid oklch(0.32 0.02 245);
  border-radius: var(--r-md);
  overflow: hidden;
}
.viz-metrics .vm { background: oklch(0.19 0.02 245); padding: 16px 18px; }
.viz-metrics .vm-val { font-family: var(--display); font-size: clamp(26px, 2.6vw, 36px); font-weight: 600; line-height: 1; letter-spacing: -0.01em; color: #fff; }
.viz-metrics .vm-unit { font-size: 0.42em; color: var(--muted); font-weight: 500; }
.viz-metrics .vm-lbl { margin-top: 7px; font-size: 12.5px; color: oklch(0.62 0.012 230); letter-spacing: 0.01em; }
.hot { color: #ff4d4d; }

/* full-width report dashboard below the hero grid */
.viz-report-full {
  margin: clamp(28px, 4vw, 48px) 0 0;
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid oklch(0.34 0.025 245);
  background: #fff;
  box-shadow: 0 34px 74px -46px oklch(0 0 0 / 0.6);
}
.viz-report-full img { display: block; width: 100%; height: auto; }
@media (max-width: 820px) {
  .viz-metrics .vm-val { font-size: 24px; }
}
.viz-hud {
  position: absolute; left: 16px; top: 14px; right: 16px;
  display: flex; justify-content: space-between; align-items: flex-start;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em;
  color: var(--muted); pointer-events: none;
}
.viz-hud .rec { display: flex; align-items: center; gap: 7px; color: var(--accent-ink); }
.viz-hud .rec b { width: 7px; height: 7px; border-radius: 50%; background: var(--warm); animation: blink 1.3s steps(1) infinite; }
@keyframes blink { 50% { opacity: .2; } }
.viz-readout {
  position: absolute; left: 16px; bottom: 14px; right: 16px;
  display: flex; gap: 18px; justify-content: space-between; align-items: flex-end;
  font-family: var(--mono); pointer-events: none;
}
.viz-readout .big { font-size: clamp(22px, 3vw, 30px); color: var(--ink); letter-spacing: -0.02em; }
.viz-readout .lbl { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.viz-scale {
  display: flex; align-items: center; gap: 8px; font-size: 10px; color: var(--muted);
}
.viz-scale .bar { width: 80px; height: 7px; border-radius: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, oklch(0.82 0.13 120) 45%, var(--warm) 100%); }

/* hero stat strip */
.statstrip {
  margin-top: clamp(40px, 6vw, 64px);
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line); border-radius: var(--r);
  background: var(--surface); overflow: hidden;
}
.statstrip .cell { padding: 22px 24px; border-left: 1px solid var(--line); }
.statstrip .cell:first-child { border-left: none; }
.statstrip .num { font-size: clamp(26px, 3vw, 38px); font-weight: 600; letter-spacing: -0.03em; }
.statstrip .num small { font-size: 0.5em; color: var(--accent-ink); font-weight: 500; }
.statstrip .lbl { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-top: 7px; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .viz { max-width: 520px; margin-inline: auto; width: 100%; }
  .statstrip { grid-template-columns: repeat(2, 1fr); }
  .statstrip .cell:nth-child(3) { border-left: none; }
  .statstrip .cell:nth-child(3), .statstrip .cell:nth-child(4) { border-top: 1px solid var(--line); }
}
@media (max-width: 460px) { .statstrip { grid-template-columns: 1fr; } .statstrip .cell { border-left: none; border-top: 1px solid var(--line); } .statstrip .cell:first-child { border-top: none; } }

/* ============================================================
   GENERIC SECTION HEADER
   ============================================================ */
.sec-head { max-width: 760px; margin-bottom: clamp(40px, 5vw, 64px); }
.sec-head h2 { font-size: clamp(28px, 3.6vw, 46px); margin-top: 18px; }
.sec-head p { margin-top: 18px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head.center .eyebrow::before { display: none; }

/* ---------- problem strip (dark) ---------- */
.problem { background: var(--ink); color: oklch(0.92 0.01 230); }
.problem .eyebrow { color: var(--accent); }
.problem h2 { color: white; }
.problem .lead { color: oklch(0.74 0.012 230); }
.prob-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: oklch(0.32 0.02 245); border: 1px solid oklch(0.32 0.02 245); border-radius: var(--r); overflow: hidden; margin-top: 12px; }
.prob-cell { background: var(--ink); padding: 28px 26px; }
.prob-cell .pn { font-family: var(--mono); font-size: 12px; color: var(--accent); letter-spacing: 0.1em; }
.prob-cell .pt { margin-top: 16px; font-size: 17px; color: white; font-weight: 500; line-height: 1.3; }
.prob-cell .pd { margin-top: 10px; font-size: 14px; color: oklch(0.68 0.012 230); line-height: 1.5; }
@media (max-width: 900px) { .prob-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .prob-grid { grid-template-columns: 1fr; } }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step {
  border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px;
  background: var(--surface); position: relative; overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s;
}
.step:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -36px oklch(0.4 0.05 220 / .55); border-color: var(--line-2); }
.step .sn {
  font-family: var(--mono); font-size: 13px; color: var(--accent-ink);
  border: 1px solid var(--accent-wash-2); background: var(--accent-wash);
  width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center;
  font-weight: 600;
}
.step h3 { font-size: 21px; margin-top: 22px; }
.step p { margin-top: 12px; color: var(--ink-soft); font-size: 15px; line-height: 1.55; }
.step-ico { margin-top: 24px; height: 78px; border-radius: 10px; border: 1px dashed var(--line-2); position: relative; overflow: hidden; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }

.cam-diagram { margin: clamp(32px, 4vw, 52px) 0 0; }
.camd-stage { position: relative; width: 100%; aspect-ratio: 1000 / 300; }
.camd-links { position: absolute; inset: 0; width: 100%; height: 100%; }
.camd-cam, .camd-struct {
  position: absolute; top: 50%; transform: translate(-50%, -50%);
  aspect-ratio: 1; border-radius: 50%; overflow: hidden;
  background: #fff;
}
.camd-cam { left: 15.5%; height: 50%; box-shadow: 0 10px 30px -14px oklch(0.4 0.05 220 / .5); }
.camd-struct { left: 56%; height: 86%; box-shadow: 0 14px 40px -16px oklch(0.4 0.05 220 / .55); }
.camd-cam img, .camd-struct img { width: 100%; height: 100%; object-fit: cover; display: block; }

.camd-dots { position: absolute; inset: 0; }
.camd-dots span {
  position: absolute; width: 1.4%; aspect-ratio: 1; transform: translate(-50%, -50%);
  border-radius: 50%; background: #35e07f;
  box-shadow: 0 0 0 1.5px oklch(0.98 0 0 / .5), 0 0 7px 1px oklch(0.72 0.2 150 / .7);
  animation: camd-dot 2.4s ease-in-out infinite;
}
.camd-dots span:nth-child(3n) { animation-delay: .5s; }
.camd-dots span:nth-child(3n+1) { animation-delay: 1s; }
.camd-dots span:nth-child(4n) { animation-delay: 1.5s; }
@keyframes camd-dot {
  0%, 100% { opacity: .55; transform: translate(-50%, -50%) scale(.82); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.12); }
}

.camd-wave {
  position: absolute; left: 76%; width: 23%; top: 26%; height: 48%;
  border: 3px solid #d97036; border-radius: 6px; background: #fff;
  overflow: hidden;
}
.camd-wave svg { position: absolute; top: 12%; left: 0; width: 200%; height: 76%; will-change: transform; animation: camd-scroll 5.5s linear infinite; }
@keyframes camd-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .camd-dots span, .camd-wave svg { animation: none; }
  .camd-dots span { opacity: .9; }
}
.cam-diagram figcaption { margin-top: 18px; text-align: center; font-size: 14px; color: var(--muted); max-width: 60ch; margin-inline: auto; line-height: 1.5; }

/* ============================================================
   PROOF / interactive mode-shape
   ============================================================ */
.proof { background: var(--bg-2); }
.proof-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
.proof-stage {
  border-radius: var(--r-lg); border: 1px solid var(--line); background: var(--surface);
  overflow: hidden; position: relative; aspect-ratio: 1 / 0.82;
  box-shadow: 0 30px 60px -44px oklch(0.4 0.05 220 / 0.5);
}
.proof-stage canvas, .proof-stage video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.proof-stage .corner {
  position: absolute; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
}
.controls { display: flex; flex-direction: column; gap: 22px; }
.seg { display: inline-flex; padding: 4px; background: var(--bg-2); border: 1px solid var(--line); border-radius: 100px; gap: 4px; }
.seg button {
  border: none; background: transparent; color: var(--ink-soft);
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 9px 16px; border-radius: 100px; transition: .2s;
}
.seg button.active { background: var(--ink); color: var(--bg); }
.ctl-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 11px; }
.modesel { display: flex; gap: 10px; }
.modesel-modes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.modesel button {
  flex: 1; border: 1px solid var(--line); background: var(--surface);
  border-radius: 12px; padding: 14px 12px; text-align: left; transition: .2s;
}
.modesel button .mhz { font-family: var(--mono); font-size: 18px; font-weight: 600; letter-spacing: -0.02em; }
.modesel button .mlb { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.modesel button.active { border-color: var(--accent); background: var(--accent-wash); }
.modesel button.active .mhz { color: var(--accent-ink); }
.readouts { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.readouts .ro { background: var(--surface); padding: 20px; }
.readouts .ro .rv { font-family: var(--mono); font-size: clamp(22px, 2.6vw, 30px); font-weight: 600; letter-spacing: -0.02em; }
.readouts .ro .rv.warm { color: var(--warm-deep); }
.readouts .ro .rl { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-top: 8px; }
.readouts .ro .rsub { font-size: 12px; color: var(--faint); margin-top: 3px; }
@media (max-width: 880px) { .proof-grid { grid-template-columns: 1fr; } }

/* ============================================================
   INDUSTRIES
   ============================================================ */
.ind-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.ind-card {
  grid-column: span 2; border: 1px solid var(--line); border-radius: var(--r-lg);
  background: var(--surface); padding: 28px; transition: .3s; position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.ind-card:nth-child(4) { grid-column: span 3; }
.ind-card:nth-child(5) { grid-column: span 3; }
.ind-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: 0 24px 48px -38px oklch(0.4 0.05 220 / .5); }
.ind-card .ico { width: 44px; height: 44px; border-radius: 11px; background: var(--accent-wash); border: 1px solid var(--accent-wash-2); display: grid; place-items: center; color: var(--accent-deep); }
.ind-card h3 { font-size: 22px; margin-top: 20px; }
.ind-card .iapps { margin-top: 16px; display: flex; flex-direction: column; gap: 9px; }
.ind-card .iapps > span { font-size: 14px; color: var(--ink-soft); display: flex; gap: 10px; align-items: baseline; }
.ind-card .iapps > span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex: none; transform: translateY(-2px); }
.ind-card .itag { margin-top: auto; padding-top: 18px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); }
@media (max-width: 900px) {
  .ind-grid { grid-template-columns: 1fr 1fr; }
  .ind-card, .ind-card:nth-child(4), .ind-card:nth-child(5) { grid-column: span 1; }
}
@media (max-width: 560px) { .ind-grid { grid-template-columns: 1fr; } }

/* ============================================================
   WHAT CHANGES (96%)
   ============================================================ */
.changes-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
.bigstat { border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--surface); padding: 38px; }
.bigstat .pct { font-size: clamp(64px, 9vw, 116px); font-weight: 700; letter-spacing: -0.05em; line-height: 0.9; }
.bigstat .pct .hl-grad sup, .bigstat .pct sup { font-size: 0.34em; vertical-align: super; }
.bigstat .pl { font-size: 17px; color: var(--ink-soft); margin-top: 8px; }
.timebar { margin-top: 34px; display: flex; flex-direction: column; gap: 14px; }
.timebar .row { display: flex; align-items: center; gap: 14px; }
.timebar .rk { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); width: 92px; flex: none; }
.timebar .track { flex: 1; height: 12px; border-radius: 8px; background: var(--bg-2); overflow: hidden; }
.timebar .fill { display: block; height: 100%; border-radius: 8px; width: 0; transition: width 1.1s cubic-bezier(.22,.61,.36,1); }
.timebar .fill.before { background: #e5484d; }
.timebar .fill.after { background: #2a9d5c; }
.reveal.in .timebar .fill.before { width: 100%; }
.reveal.in .timebar .fill.after { width: 4%; transition-delay: .18s; }
@media (prefers-reduced-motion: reduce) {
  .timebar .fill { transition: none; }
  .timebar .fill.before { width: 100%; }
  .timebar .fill.after { width: 4%; }
}
.timebar .rv { font-family: var(--mono); font-size: 13px; width: 64px; flex: none; text-align: right; }
.changes-list { display: flex; flex-direction: column; gap: 4px; }
.change {
  display: flex; gap: 20px; padding: 24px 4px; border-top: 1px solid var(--line);
}
.change:last-child { border-bottom: 1px solid var(--line); }
.change .cn { font-family: var(--mono); font-size: 12px; color: var(--accent-ink); flex: none; padding-top: 3px; }
.change h4 { font-size: 19px; font-weight: 600; }
.change p { margin-top: 7px; color: var(--ink-soft); font-size: 14.5px; line-height: 1.55; }
@media (max-width: 820px) { .changes-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PRODUCT & PRICING
   ============================================================ */
.prod-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.prod {
  border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--surface);
  padding: 36px; display: flex; flex-direction: column;
}
.prod.feature { background: var(--ink); color: oklch(0.9 0.01 230); border-color: var(--ink); }
.prod .ptag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-ink); }
.prod.feature .ptag { color: var(--accent); }
.prod h3 { font-size: 27px; margin-top: 16px; }
.prod.feature h3 { color: white; }
.prod .pdesc { margin-top: 10px; font-size: 14.5px; color: var(--muted); }
.prod.feature .pdesc { color: oklch(0.72 0.01 230); }
.prod .pprice { margin-top: 22px; font-family: var(--mono); font-size: 15px; color: var(--ink-soft); padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.prod.feature .pprice { color: oklch(0.78 0.01 230); border-color: oklch(0.32 0.02 245); }
.prod ul { list-style: none; margin: 24px 0 0; padding: 0; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.prod li { display: flex; gap: 12px; font-size: 14.5px; line-height: 1.45; color: var(--ink-soft); align-items: flex-start; }
.prod.feature li { color: oklch(0.84 0.01 230); }
.prod li .ck { color: var(--accent-deep); flex: none; margin-top: 2px; }
.prod.feature li .ck { color: var(--accent); }
.prod .btn { margin-top: 28px; justify-content: center; }
.prod-note { margin-top: 26px; text-align: center; color: var(--muted); font-size: 14px; }
.prod-note a { color: var(--accent-ink); text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 760px) { .prod-grid { grid-template-columns: 1fr; } }

/* ============================================================
   CREDIBILITY
   ============================================================ */
.cred { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
.cred-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--line); }
.cred-cell { background: var(--surface); padding: 34px 26px; text-align: center; }
.cred-cell .cv { font-size: clamp(30px, 4vw, 46px); font-weight: 600; letter-spacing: -0.03em; }
.cred-cell .cl { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-top: 8px; line-height: 1.4; }
@media (max-width: 860px) { .cred-grid { grid-template-columns: repeat(2, 1fr); } .cred-cell:last-child { grid-column: span 2; } }

/* ============================================================
   TEAM / FOUNDER
   ============================================================ */
.founder-grid { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: clamp(28px, 4vw, 56px); align-items: center; max-width: 1000px; margin-inline: auto; }
.founder-photo { width: 100%; max-width: 220px; aspect-ratio: 1/1; border-radius: 50%; padding: 5px; background: var(--brand-grad); }
.founder-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; border: 4px solid var(--surface); }
.founder-quote { font-family: var(--display); font-size: clamp(24px, 2.9vw, 36px); font-weight: 500; letter-spacing: -0.008em; line-height: 1.14; }
.founder-quote .accent { color: var(--accent-deep); }
.founder-meta { margin-top: 24px; display: flex; align-items: center; gap: 16px; }
.founder-meta .fn { font-weight: 600; font-size: 17px; }
.founder-meta .fr { font-family: var(--mono); font-size: 12.5px; color: var(--muted); letter-spacing: 0.04em; }
.founder-meta .div { width: 1px; height: 34px; background: var(--line-2); }
@media (max-width: 820px) { .founder-grid { grid-template-columns: 1fr; } .founder-photo { max-width: 180px; } }

/* ============================================================
   CONTACT / CTA
   ============================================================ */
.cta { background: var(--ink); color: white; }
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 72px); align-items: start; }
.cta h2 { color: white; font-size: clamp(32px, 4.4vw, 56px); }
.cta .lead { color: oklch(0.76 0.012 230); margin-top: 20px; }
.cta-contacts { margin-top: 36px; display: flex; flex-direction: column; gap: 2px; }
.cta-contacts .cc { display: flex; gap: 16px; padding: 16px 0; border-top: 1px solid oklch(0.3 0.02 245); align-items: center; }
.cta-contacts .cc:last-child { border-bottom: 1px solid oklch(0.3 0.02 245); }
.cta-contacts .cl { font-family: var(--display); font-size: 21px; font-weight: 600; letter-spacing: 0; text-transform: none; color: var(--accent); width: 84px; flex: none; }
.cta-contacts .cv { font-family: var(--display); font-size: 22px; letter-spacing: 0; color: oklch(0.92 0.01 230); }
.form { background: oklch(0.27 0.018 245); border: 1px solid oklch(0.34 0.02 245); border-radius: var(--r-lg); padding: 30px; }
.form .frow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.field label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: oklch(0.68 0.012 230); }
.field input, .field select, .field textarea {
  background: oklch(0.22 0.018 245); border: 1px solid oklch(0.36 0.02 245); border-radius: 10px;
  padding: 13px 14px; color: white; font-family: var(--sans); font-size: 15px; transition: border-color .2s;
}
.field textarea { resize: vertical; min-height: 92px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.field input::placeholder, .field textarea::placeholder { color: oklch(0.5 0.012 245); }
.form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form-success {
  display: none; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  min-height: 360px; gap: 14px;
}
.form-success.show { display: flex; }
.form-success .check { width: 56px; height: 56px; border-radius: 50%; background: var(--accent); display: grid; place-items: center; color: var(--ink); }
.form-success h3 { color: white; font-size: 24px; }
.form-success p { color: oklch(0.72 0.012 230); font-size: 15px; max-width: 32ch; }
@media (max-width: 820px) { .cta-grid { grid-template-columns: 1fr; } }
@media (max-width: 460px) { .form .frow { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: oklch(0.7 0.012 230); padding-block: 50px 40px; border-top: 1px solid oklch(0.3 0.02 245); }
.footer-grid { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; }
.footer .logo-slot { color: white; }
.footer .logo-mark { background: oklch(0.32 0.02 245); }
.footer-tag { font-size: 13.5px; color: oklch(0.6 0.012 230); margin-top: 16px; max-width: 34ch; line-height: 1.5; }
.footer-links { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-col h5 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: oklch(0.55 0.012 230); margin-bottom: 16px; font-weight: 500; }
.footer-col a { display: block; font-size: 14px; color: oklch(0.78 0.012 230); padding: 5px 0; transition: color .15s; }
.footer-col a:hover { color: var(--accent); }
.footer-offices { margin-top: 44px; padding-top: 40px; border-top: 1px solid oklch(0.3 0.02 245); display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.foff h5 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin: 0 0 12px; font-weight: 500; }
.foff p { font-size: 13.5px; line-height: 1.6; color: oklch(0.72 0.012 230); max-width: 34ch; }
@media (max-width: 780px) { .footer-offices { grid-template-columns: 1fr; gap: 30px; } }

/* ============================================================
   NEWS
   ============================================================ */
.news-grid {
  display: flex; gap: 26px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 14px; margin-top: 8px;
  scroll-padding-left: 2px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin; scrollbar-color: var(--line-2) transparent;
}
.news-grid::-webkit-scrollbar { height: 8px; }
.news-grid::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 100px; }
.news-grid::-webkit-scrollbar-track { background: transparent; }
.news-card {
  flex: 0 0 clamp(300px, 30vw, 380px);
  scroll-snap-align: start;
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s;
}
.news-card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -36px oklch(0.4 0.05 220 / .5); border-color: var(--line-2); }
.news-photo {
  aspect-ratio: 16 / 10; background: var(--bg-2);
  background-image: linear-gradient(135deg, oklch(0.9 0.02 230) 0%, oklch(0.94 0.01 230) 100%);
  display: grid; place-items: center; border-bottom: 1px solid var(--line);
}
.news-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.news-ph { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.news-body { padding: 24px 24px 28px; display: flex; flex-direction: column; gap: 10px; }
.news-date { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-ink); }
.news-card h3 { font-size: 21px; line-height: 1.2; }
.news-card p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; }
@media (max-width: 860px) { .news-card { flex-basis: 82vw; } }
.footer-bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid oklch(0.3 0.02 245); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.04em; color: oklch(0.5 0.012 230); }

/* ============================================================
   PLACEHOLDER (striped, for swap-in assets)
   ============================================================ */
.ph {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(135deg, oklch(0.95 0.006 220) 0 11px, oklch(0.975 0.004 220) 11px 22px);
  display: grid; place-items: center;
}
.ph.dark { background: repeating-linear-gradient(135deg, oklch(0.28 0.018 245) 0 11px, oklch(0.31 0.018 245) 11px 22px); }
.ph .ph-lb { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); background: var(--surface); padding: 6px 12px; border-radius: 100px; border: 1px solid var(--line); }
.ph.dark .ph-lb { color: oklch(0.7 0.012 230); background: var(--ink); border-color: oklch(0.36 0.02 245); }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   KESSAKU-INSPIRED TYPE REFINEMENTS + DARK THEME ADDITIONS
   ============================================================ */

/* Cormorant is high-contrast; give large display a touch more weight room */
.hero h1, .cta h2, .sec-head h2 { font-weight: 600; }
.eyebrow { font-weight: 500; letter-spacing: 0.26em; }

/* large Cormorant section eyebrows that pop */
.eyebrow-xl, .eyebrow-lg {
  font-family: var(--display);
  font-weight: 600;
  text-transform: none;
  letter-spacing: -0.008em;
  color: var(--accent);
  display: block;
  line-height: 1.02;
  text-wrap: balance;
}
.eyebrow-xl::before, .eyebrow-lg::before { display: none; }
.eyebrow-xl { font-size: clamp(32px, 4.4vw, 54px); margin-bottom: 8px; }
.eyebrow-lg { font-size: clamp(26px, 3.2vw, 40px); margin-bottom: 6px; }

/* ---------- nav adapts over the dark hero ---------- */
.nav .logo-slot { color: #fff; }
.nav-links a { color: oklch(0.86 0.01 230); }
.nav-links a:hover { color: #fff; }
.nav .btn-primary { background: #fff; color: var(--ink); }
.nav .btn-primary:hover { background: var(--accent); color: oklch(0.16 0.03 200); }
.nav .nav-toggle { color: #fff; border-color: rgba(255,255,255,.28); }
.nav.scrolled .logo-slot { color: var(--ink); }
.nav.scrolled .nav-links a { color: var(--ink-soft); }
.nav.scrolled .nav-links a:hover { color: var(--ink); }
.nav.scrolled .btn-primary { background: var(--ink); color: var(--bg); }
.nav.scrolled .btn-primary:hover { background: var(--accent-deep); color: #fff; }
.nav.scrolled .nav-toggle { color: var(--ink); border-color: var(--line-2); }

/* ---------- dark hero ---------- */
.hero { position: relative; z-index: 0; }
.hero::before {
  content: ""; position: absolute; top: 0; bottom: 0; left: 50%;
  width: 100vw; transform: translateX(-50%); z-index: -1;
  background:
    radial-gradient(120% 92% at 74% 10%,
      oklch(0.31 0.036 235) 0%,
      oklch(0.205 0.022 245) 46%,
      oklch(0.148 0.016 245) 100%);
}
.hero h1 { color: #fff; }
.hero h1 .accent { color: var(--accent); }
.hero .lead, .hero .hero-sub { color: oklch(0.79 0.012 230); }
.hero .lead strong, .hero .hero-sub strong { color: #fff; font-weight: 600; }
.hero-tagchip {
  background: oklch(0.30 0.04 200 / 0.42);
  border-color: oklch(0.52 0.06 200 / 0.4);
  color: var(--accent);
}
.hero .btn-primary { background: var(--accent); color: oklch(0.15 0.03 200); }
.hero .btn-primary:hover { background: #fff; color: var(--ink); }
.hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,.28); }
.hero .btn-ghost:hover { border-color: #fff; }

/* hero canvas panel on dark */
.viz {
  background: radial-gradient(120% 120% at 70% 6%, oklch(0.27 0.03 235) 0%, oklch(0.165 0.02 245) 72%);
  border-color: oklch(0.34 0.025 245);
  box-shadow: 0 34px 74px -42px oklch(0 0 0 / 0.72);
}
.viz-hud .rec { color: var(--accent); }
.viz-hud span { color: oklch(0.70 0.012 230); }
.viz-readout .big { color: #fff; }
.viz-readout .lbl { color: oklch(0.62 0.012 230); }

/* hero stat strip on dark */
.statstrip { background: oklch(0.19 0.02 245); border-color: oklch(0.32 0.02 245); }
.statstrip .cell { border-left-color: oklch(0.32 0.02 245); }
.statstrip .num { color: #fff; }
.statstrip .num small { color: var(--accent); }
.statstrip .lbl { color: oklch(0.60 0.012 230); }
@media (max-width: 900px) {
  .statstrip .cell:nth-child(3), .statstrip .cell:nth-child(4) { border-top-color: oklch(0.32 0.02 245); }
}
@media (max-width: 460px) {
  .statstrip .cell { border-top-color: oklch(0.32 0.02 245); }
}

/* ---------- BACKED BY — revolving marquee ---------- */
.backed {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: 42px;
  overflow: hidden;
}
.backed-head { text-align: center; margin-bottom: 28px; }
.marquee {
  position: relative; overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%);
          mask: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%);
}
.marquee-track { display: flex; width: max-content; animation: bk-marquee 42s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-group {
  display: flex; align-items: center;
  gap: clamp(44px, 6vw, 96px);
  padding-right: clamp(44px, 6vw, 96px);
}
.bk {
  display: block;
  width: auto;
  height: clamp(30px, 3.2vw, 46px);
  object-fit: contain;
  flex: none;
  opacity: 0.72;
  transition: opacity .2s ease;
}
.bk-stack { height: clamp(44px, 4.6vw, 64px); }
.bk-text {
  height: auto;
  white-space: nowrap;
  font-family: var(--sans);
  font-size: clamp(17px, 1.7vw, 24px);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: oklch(0.42 0.008 240);
}
.marquee:hover .bk { opacity: 1; }
.marquee:hover .bk-text { color: oklch(0.28 0.008 240); }
@keyframes bk-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; justify-content: center; flex-wrap: wrap; gap: 20px; }
  .marquee-group:last-child { display: none; }
}

/* ---------- dark proof section ---------- */
.proof { background: oklch(0.168 0.02 245); }
.proof .eyebrow { color: var(--accent); }
.proof .sec-head h2 { color: #fff; }
.proof .sec-head .lead { color: oklch(0.75 0.012 230); }
.proof-stage {
  background: radial-gradient(120% 120% at 60% 4%, oklch(0.24 0.028 235) 0%, oklch(0.148 0.018 245) 74%);
  border-color: oklch(0.32 0.02 245);
  box-shadow: 0 34px 74px -46px oklch(0 0 0 / 0.72);
}
.proof-stage .corner { color: oklch(0.60 0.012 230); }
.proof .ctl-label { color: oklch(0.62 0.012 230); }
.proof .seg { background: oklch(0.215 0.02 245); border-color: oklch(0.34 0.02 245); }
.proof .seg button { color: oklch(0.74 0.012 230); }
.proof .seg button.active { background: var(--accent); color: oklch(0.15 0.03 200); }
.proof .modesel button { background: oklch(0.205 0.02 245); border-color: oklch(0.33 0.02 245); }
.proof .modesel button .mhz { color: oklch(0.92 0.01 230); }
.proof .modesel button .mlb { color: oklch(0.60 0.012 230); }
.proof .modesel button.active { border-color: var(--accent); background: oklch(0.30 0.05 200 / 0.38); }
.proof .modesel button.active .mhz { color: var(--accent); }
.proof .readouts { background: oklch(0.32 0.02 245); border-color: oklch(0.32 0.02 245); }
.proof .readouts .ro { background: oklch(0.198 0.02 245); }
.proof .readouts .ro .rv { color: #fff; }
.proof .readouts .ro .rv.warm { color: var(--warm); }
.proof .readouts .ro .rl { color: oklch(0.62 0.012 230); }
.proof .readouts .ro .rsub { color: oklch(0.50 0.012 230); }
.proof .controls > p { color: oklch(0.66 0.012 230) !important; }
.proof .controls .hl { color: var(--accent); }

/* ============================================================
   FALCONEYE RECORDER
   ============================================================ */
.fe-nowrap { white-space: nowrap; }

/* A new frontier — equation (on dark .problem band) */
.fe-eq {
  display: flex; flex-wrap: wrap; align-items: stretch; gap: 12px;
  margin-top: 8px;
}
.fe-eqp {
  flex: 1 1 200px; min-width: 180px;
  border: 1px solid oklch(0.34 0.02 245); border-radius: var(--r);
  background: oklch(0.20 0.02 245);
  padding: 26px 24px;
  font-family: var(--mono); font-size: clamp(15px, 1.5vw, 19px); font-weight: 600;
  color: oklch(0.86 0.01 230);
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.fe-eqp.on { border-color: var(--accent); background: oklch(0.30 0.05 200 / 0.32); color: var(--accent); }
.fe-eqx { display: flex; align-items: center; font-family: var(--display); font-size: 28px; color: oklch(0.55 0.02 245); }
@media (max-width: 700px) { .fe-eqx { display: none; } }

/* Uncompressed recording */
.fe-raw { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.fe-h2 { font-size: clamp(28px, 3.4vw, 44px); margin-top: 18px; }
.fe-raw .lead { margin-top: 18px; }
.fe-pts { list-style: none; margin: 28px 0 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.fe-pts li {
  position: relative; padding-left: 26px; font-size: 15px; color: var(--ink-soft); line-height: 1.55;
}
.fe-pts li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--accent);
}
.fe-pts b { color: var(--ink); font-weight: 600; }

.fe-rate {
  border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--surface);
  padding: clamp(26px, 3vw, 38px);
  box-shadow: 0 30px 60px -46px oklch(0.4 0.05 220 / 0.5);
}
.fe-rate-row { display: flex; justify-content: space-between; gap: 12px; font-size: 12.5px; color: var(--muted); }
.fe-rate-row .mono { font-family: var(--mono); letter-spacing: 0.04em; }
.fe-rate-bar { margin-top: 12px; height: 12px; border-radius: 8px; background: var(--bg-2); overflow: hidden; }
.fe-rate-bar i { display: block; height: 100%; width: 0; border-radius: 8px; background: var(--brand-grad); transition: width 1.2s cubic-bezier(.22,.61,.36,1); }
.reveal.in .fe-rate-bar i { width: 100%; }
.fe-rate-big { margin-top: 14px; font-family: var(--display); font-size: clamp(40px, 5vw, 60px); font-weight: 600; letter-spacing: -0.02em; color: var(--ink); line-height: 1; }
.fe-rate-big .u { font-size: 0.35em; color: var(--accent-ink); font-weight: 500; font-family: var(--sans); }
.fe-rate-times { margin-top: 14px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.fe-rate-times > div { background: var(--surface); padding: 16px 14px; display: flex; flex-direction: column; gap: 5px; }
.fe-rate-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.fe-rate-stats > div { background: var(--surface); padding: 18px 16px; display: flex; flex-direction: column; gap: 6px; }
.fe-dur .u { font-size: 0.5em; color: var(--accent-ink); font-weight: 500; font-family: var(--sans); }
.fe-cap { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.fe-dur { font-family: var(--display); font-size: 21px; font-weight: 600; color: var(--ink); }
@media (max-width: 860px) { .fe-raw { grid-template-columns: 1fr; } }

/* Capture every anomaly */
.fe-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.fe-glyph { font-family: var(--display); font-size: 22px; }
.fe-opt { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-ink); background: var(--accent-wash); border: 1px solid var(--accent-wash-2); padding: 3px 9px; border-radius: 100px; vertical-align: middle; margin-left: 8px; }
@media (max-width: 760px) { .fe-grid2 { grid-template-columns: 1fr; } }

/* Lineup */
.fe-models { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.fe-model {
  border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--surface);
  padding: 32px 30px; display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s;
}
.fe-model:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -36px oklch(0.4 0.05 220 / .55); border-color: var(--line-2); }
.fe-tag { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-ink); font-weight: 600; }
.fe-model h3 { font-size: 25px; margin-top: 14px; }
.fe-ff { font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; color: var(--muted); margin-top: 8px; text-transform: uppercase; }
.fe-model p { margin-top: 16px; font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; flex: 1; }
.fe-meter { margin-top: 22px; }
.fe-meter-lbl { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.fe-mb { margin-top: 8px; height: 8px; border-radius: 6px; background: var(--bg-2); overflow: hidden; }
.fe-mb i { display: block; height: 100%; border-radius: 6px; background: var(--accent); }
.fe-note { margin-top: 26px; font-size: 13.5px; color: var(--muted); line-height: 1.6; max-width: 90ch; }
@media (max-width: 860px) { .fe-models { grid-template-columns: 1fr; } }

/* ============================================================
   BILINGUAL (EN / JA)
   ============================================================ */
.i18-ja { display: none !important; }
html.lang-ja .i18-en { display: none !important; }
html.lang-ja .i18-ja { display: inline !important; }
html.lang-ja body { font-family: "Noto Sans JP", var(--sans); }
html.lang-ja h1, html.lang-ja h2, html.lang-ja h3, html.lang-ja h4,
html.lang-ja .founder-quote, html.lang-ja .fe-dur, html.lang-ja .vm-val,
html.lang-ja .num, html.lang-ja .pct, html.lang-ja .cv, html.lang-ja .fe-rate-big {
  font-family: "Noto Serif JP", var(--display);
}
html.lang-ja .eyebrow, html.lang-ja .mono, html.lang-ja .fe-tag,
html.lang-ja .fe-ff, html.lang-ja .ctl-label, html.lang-ja .lbl,
html.lang-ja .vm-lbl, html.lang-ja .fe-cap, html.lang-ja .fe-meter-lbl {
  font-family: "Noto Sans JP", var(--mono);
}

/* language switch pill */
.lang-switch { display: inline-flex; align-items: center; border: 1px solid var(--line-2); border-radius: 100px; padding: 3px; gap: 2px; background: var(--surface); }
.lang-switch button { border: none; background: transparent; font-family: var(--mono); font-size: 12px; font-weight: 600; letter-spacing: 0.02em; color: var(--muted); padding: 6px 12px; border-radius: 100px; transition: .2s; line-height: 1; }
.lang-switch button.active { background: var(--ink); color: var(--bg); }
/* over dark hero (nav not scrolled) */
.nav .lang-switch { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.28); }
.nav .lang-switch button { color: oklch(0.86 0.01 230); }
.nav .lang-switch button.active { background: #fff; color: var(--ink); }
.nav.scrolled .lang-switch { background: var(--surface); border-color: var(--line-2); }
.nav.scrolled .lang-switch button { color: var(--muted); }
.nav.scrolled .lang-switch button.active { background: var(--ink); color: var(--bg); }
