/* =========================================================
   FAi Tech, Inc. — Corporate Design System
   Parent company of REGARA. Shares the editorial-enterprise
   bones of the Regara system, but with a more neutral,
   institutional palette built around the corporate blue
   of the FAi mark (#00407e) — far less accent than Regara.

   Type pairing: Source Serif 4 (headings) · Geist (body)
                 · JetBrains Mono (labels)
   ========================================================= */

:root {
  /* Palette — deep neutral graphite base + corporate blue accent.
     Cooler and grayer than Regara's navy; the accent is restrained. */
  --ink:        #0b0f14;   /* Page background — deep graphite */
  --ink-2:      #11161d;   /* Elevated surface */
  --ink-3:      #161d26;   /* Card / deeper surface */
  --ink-line:   #232c37;   /* Hairline border */
  --paper:      #e9edf2;   /* Off-white, cool */
  --paper-2:    #cdd5de;
  --paper-mute: #828f9f;   /* Muted neutral slate text */
  --slate:      #828f9f;
  --slate-2:    #9fadbc;

  --brand:      #00407e;   /* FAi corporate blue — solid fills (logo tile) */
  --accent:     #2f6fc0;   /* Restrained accent — dots, hairline highlights */
  --accent-bright: #4d8bd4;/* Accent on dark — links, marks, hovers */
  --accent-soft: #93b7e2;  /* Soft tint for tags / subtle fills */
  --ok:         #8fcfae;   /* Quiet success/positive */

  /* Type */
  --font-serif: "Source Serif 4", "Iowan Old Style", Georgia, serif;
  --font-sans:  "Geist", "Söhne", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono:  "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Density */
  --pad-section-y: 144px;
  --pad-x: 56px;
  --hero-size: clamp(56px, 8.4vw, 128px);
  --h2-size:   clamp(36px, 4.6vw, 66px);
  --h3-size:   clamp(22px, 2.0vw, 30px);
  --body-size: 17px;
  --body-line: 1.55;
  --label-size: 11px;

  --ease: cubic-bezier(0.2, 0.6, 0.2, 1);
}

/* =========================================================
   Reset + base
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-sans);
  font-size: var(--body-size);
  line-height: var(--body-line);
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; letter-spacing: -0.02em; margin: 0; text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }

::selection { background: var(--accent); color: #fff; }

/* =========================================================
   Brand lockup — logo tile + wordmark
   ========================================================= */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
}
.brand-logo {
  display: block;
  height: 34px;
  width: auto;
  border-radius: 6px;
}
.brand-word {
  font-family: var(--font-serif);
  font-size: 22px;
  letter-spacing: -0.018em;
  color: var(--paper);
  line-height: 1;
  white-space: nowrap;
}
.brand-word b { font-weight: 600; }
.brand-word .tld {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper-mute);
  display: block;
  margin-top: 4px;
}
.site-footer .brand-logo { height: 40px; }

/* =========================================================
   Layout primitives
   ========================================================= */
.wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.section { padding: var(--pad-section-y) 0; }
.section-tight { padding: calc(var(--pad-section-y) * 0.55) 0; }
.divider { height: 1px; background: var(--ink-line); width: 100%; }
.ruled-top { border-top: 1px solid var(--ink-line); }

/* =========================================================
   Typography utilities
   ========================================================= */
.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--label-size);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper-mute);
  font-weight: 500;
}
.eyebrow .dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: 2px;
}
.h-display {
  font-family: var(--font-serif);
  font-size: var(--hero-size);
  line-height: 0.98;
  letter-spacing: -0.025em;
  font-weight: 380;
}
.h-display em { font-style: italic; color: var(--slate-2); font-weight: 380; }
.h2 {
  font-family: var(--font-serif);
  font-size: var(--h2-size);
  line-height: 1.02;
  letter-spacing: -0.022em;
  font-weight: 400;
}
.h2 em { font-style: italic; color: var(--slate-2); }
.h3 {
  font-family: var(--font-serif);
  font-size: var(--h3-size);
  line-height: 1.15;
  letter-spacing: -0.015em;
  font-weight: 420;
}
.lead {
  font-size: clamp(18px, 1.3vw, 22px);
  line-height: 1.45;
  color: var(--paper);
  opacity: 0.78;
  max-width: 56ch;
}
.mono { font-family: var(--font-mono); }
.muted { color: var(--paper-mute); }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border-radius: 2px;
  transition: all 240ms var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--paper); color: var(--ink); }
.btn-primary:hover { background: #fff; transform: translateY(-1px); }
.btn-accent { background: var(--brand); color: #fff; }
.btn-accent:hover { background: #00529e; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--paper); border: 1px solid var(--ink-line); }
.btn-ghost:hover { border-color: var(--paper-mute); background: rgba(255,255,255,0.02); }
.btn-link {
  color: var(--paper);
  padding: 0 0 4px;
  border-bottom: 1px solid var(--ink-line);
  border-radius: 0;
  font-size: 15px;
}
.btn-link:hover { border-color: var(--paper); }
.btn .arrow { font-family: var(--font-serif); font-style: italic; transition: transform 240ms var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* =========================================================
   Site chrome — Nav
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--ink) 88%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ink-line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px var(--pad-x);
  max-width: 1440px;
  margin: 0 auto;
}
.nav-links {
  display: flex;
  gap: 4px;
  font-size: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  color: var(--paper);
  opacity: 0.74;
  font-size: 14px;
  border-radius: 3px;
  transition: opacity 180ms var(--ease);
}
.nav-link:hover { opacity: 1; }
.nav-link.active { opacity: 1; }
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px;
  bottom: -20px;
  height: 1px;
  background: var(--accent);
}
.nav-cta { display: flex; gap: 12px; align-items: center; }
.nav-ext {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: 0.74;
  padding: 9px 13px;
  border: 1px solid var(--ink-line);
  border-radius: 3px;
  transition: opacity 180ms var(--ease), border-color 180ms var(--ease);
}
.nav-ext:hover { opacity: 1; border-color: var(--paper-mute); }
.nav-ext .ext-arr { font-style: normal; opacity: 0.7; }

.nav-burger {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--ink-line);
  border-radius: 4px;
}
.nav-burger .nb-line { width: 18px; height: 1.5px; background: var(--paper); transition: transform 220ms var(--ease), opacity 180ms var(--ease); }
.nav-burger.is-open .nb-line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.is-open .nb-line:nth-child(2) { opacity: 0; }
.nav-burger.is-open .nb-line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: var(--ink);
  padding: 96px var(--pad-x) 40px;
  opacity: 0;
  transition: opacity 240ms var(--ease);
}
.mobile-menu.open { opacity: 1; }
.mobile-menu[hidden] { display: none; }
.mm-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.mm-list li { border-bottom: 1px solid var(--ink-line); }
.mm-list a {
  display: block;
  padding: 22px 0;
  font-family: var(--font-serif);
  font-size: 28px;
  letter-spacing: -0.015em;
}
.mm-cta { display: flex; flex-direction: column; gap: 14px; margin-top: 40px; }

/* =========================================================
   Footer
   ========================================================= */
footer.site-footer {
  background: var(--ink-2);
  border-top: 1px solid var(--ink-line);
  padding: 80px 0 32px;
  color: var(--paper);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--ink-line);
}
.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper-mute);
  margin: 0 0 18px;
  font-weight: 500;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 14px; opacity: 0.74; transition: opacity 200ms var(--ease); }
.footer-col a:hover { opacity: 1; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 28px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--paper-mute);
  text-transform: uppercase;
}
.footer-brand-line {
  font-family: var(--font-serif);
  font-size: clamp(34px, 5vw, 56px);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-top: 32px;
  color: var(--paper);
  opacity: 0.92;
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  padding: 160px 0 120px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 60% 70% at 78% 22%, rgba(0, 64, 126, 0.30) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 12% 88%, rgba(45, 90, 160, 0.14) 0%, transparent 60%),
    linear-gradient(160deg, #0b0f14 0%, #0c1118 60%, #0d141d 100%);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg, transparent 0, transparent 119px,
    rgba(255,255,255,0.022) 119px, rgba(255,255,255,0.022) 120px);
}
.hero-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.hero h1 { max-width: 18ch; }
.hero-sub {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 1fr);
  gap: 48px;
  align-items: end;
  margin-top: 56px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* =========================================================
   Editorial split
   ========================================================= */
.split { display: grid; grid-template-columns: 1fr 1.2fr; gap: 96px; align-items: start; }
.split.reverse { grid-template-columns: 1.2fr 1fr; }
.split-meta { position: sticky; top: 100px; }
.split-meta .h2 { margin-top: 24px; }
.split-meta .lead { margin-top: 28px; }

.feature-list { list-style: none; margin: 0; padding: 0; }
.feature-list li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--ink-line);
}
.feature-list li:first-child { padding-top: 0; }
.feature-list .num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--paper-mute);
  padding-top: 6px;
}
.feature-list .ft-title {
  font-family: var(--font-serif);
  font-size: 26px;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}
.feature-list p { opacity: 0.72; max-width: 56ch; }

/* =========================================================
   Pillar cards
   ========================================================= */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
}
.pillar {
  padding: 48px 36px 56px;
  border-right: 1px solid var(--ink-line);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pillar:last-child { border-right: none; }
.pillar .p-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--paper-mute);
}
.pillar .p-title {
  font-family: var(--font-serif);
  font-size: 27px;
  letter-spacing: -0.015em;
  line-height: 1.1;
}
.pillar p { opacity: 0.74; }

/* =========================================================
   Quote / pull
   ========================================================= */
.pull {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.4vw, 50px);
  line-height: 1.14;
  letter-spacing: -0.02em;
  max-width: 24ch;
}
.pull em { font-style: italic; color: var(--slate-2); }
.pull-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper-mute);
  margin-top: 32px;
}

/* =========================================================
   Stats
   ========================================================= */
.stat { border-top: 1px solid var(--ink-line); padding-top: 24px; }
.stat .num {
  font-family: var(--font-serif);
  font-size: clamp(48px, 5vw, 80px);
  letter-spacing: -0.025em;
  line-height: 0.95;
}
.stat .lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper-mute);
  margin-top: 12px;
}

/* =========================================================
   Cards / grids
   ========================================================= */
.block-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.block-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

.card {
  border: 1px solid var(--ink-line);
  padding: 32px;
  background: var(--ink-2);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 200ms var(--ease), transform 200ms var(--ease);
}
.card:hover { border-color: var(--paper-mute); }
.card .c-title { font-family: var(--font-serif); font-size: 24px; letter-spacing: -0.01em; }
.card .c-eye { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--paper-mute); }
.card p { opacity: 0.74; }

/* =========================================================
   Venture / product feature block (Regara)
   ========================================================= */
.venture {
  border: 1px solid var(--ink-line);
  background: var(--ink-2);
  border-radius: 6px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
}
.venture-body { padding: 56px 52px; display: flex; flex-direction: column; gap: 20px; }
.venture-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-soft);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.venture-tag .pip { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-bright); }
.venture-name {
  font-family: var(--font-serif);
  font-size: clamp(34px, 3.4vw, 46px);
  letter-spacing: -0.02em;
  line-height: 1;
}
.venture-name .tm { font-size: 0.4em; vertical-align: 0.9em; opacity: 0.7; }
.venture-meta {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--paper-mute);
  border-top: 1px solid var(--ink-line);
  padding-top: 22px;
  margin-top: 6px;
}
.venture-meta span b { color: var(--paper); font-weight: 500; display: block; margin-top: 5px; font-family: var(--font-sans); font-size: 14px; letter-spacing: 0; text-transform: none; }
.venture-visual {
  position: relative;
  background:
    radial-gradient(ellipse 80% 70% at 70% 30%, rgba(0,192,255,0.10) 0%, transparent 60%),
    linear-gradient(155deg, #0a1426 0%, #0f1c33 100%);
  border-left: 1px solid var(--ink-line);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  overflow: hidden;
}

/* Mini product mock inside venture visual */
.vmock {
  width: 78%;
  background: rgba(8,16,30,0.7);
  border: 1px solid #1e3050;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.4);
}
.vmock-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  background: #14253f;
  border-bottom: 1px solid #1e3050;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #7895b4;
}
.vmock-bar .vdots { display: flex; gap: 5px; margin-right: 8px; }
.vmock-bar .vdots span { width: 7px; height: 7px; border-radius: 50%; background: #1e3050; }
.vmock-body { padding: 18px 20px; display: flex; flex-direction: column; gap: 8px; }
.vmock-row {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 11px;
  background: #0f1c33;
  border: 1px solid #1e3050;
  border-radius: 3px;
  font-size: 12px;
  color: #c8d2de;
}
.vmock-row .vbar { flex: 1; height: 5px; border-radius: 1px; background: #1e3050; position: relative; overflow: hidden; }
.vmock-row .vbar::after { content:""; position:absolute; inset:0 var(--rest,40%) 0 0; background: linear-gradient(90deg, #7BD9D5, #00C0FF); }
.vmock-row.a .vbar { --rest: 9%; }
.vmock-row.b .vbar { --rest: 38%; }
.vmock-row.c .vbar { --rest: 14%; }
.vmock-pill {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 3px 7px; border-radius: 2px;
  border: 1px solid rgba(158,229,199,0.3); color: #9EE5C7; background: rgba(158,229,199,0.08);
}

/* =========================================================
   Page heading (sub-pages)
   ========================================================= */
.page-head { padding: 120px 0 80px; border-bottom: 1px solid var(--ink-line); position: relative; overflow: hidden; }
.page-head .hero-bg { z-index: -1; }
.page-head .eyebrow { margin-bottom: 28px; display: inline-block; }
.page-head .h-display { max-width: 20ch; }
.page-head .lead { margin-top: 32px; }
.page-head-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: end; }

/* =========================================================
   News / press list
   ========================================================= */
.press-row {
  display: grid;
  grid-template-columns: 150px 1fr 150px 60px;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--ink-line);
  align-items: baseline;
  transition: background 200ms var(--ease);
}
.press-row:hover { background: rgba(255,255,255,0.015); }
.press-row .p-date { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; color: var(--paper-mute); }
.press-row .p-tag { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-soft); }
.press-row .p-title { font-family: var(--font-serif); font-size: clamp(22px, 2vw, 28px); letter-spacing: -0.015em; line-height: 1.15; }
.press-row .p-title .p-sub { display: block; font-family: var(--font-sans); font-size: 15px; letter-spacing: 0; opacity: 0.66; margin-top: 8px; line-height: 1.5; }
.press-row .p-arrow { text-align: right; font-family: var(--font-serif); font-style: italic; opacity: 0.5; font-size: 22px; }
.press-row:hover .p-arrow { opacity: 1; }

/* Featured press lead */
.press-lead {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 0;
  border: 1px solid var(--ink-line);
  border-radius: 6px;
  overflow: hidden;
  background: var(--ink-2);
}
.press-lead-body { padding: 48px 44px; display: flex; flex-direction: column; gap: 18px; }
.press-lead-visual {
  border-left: 1px solid var(--ink-line);
  background:
    radial-gradient(ellipse 70% 60% at 60% 35%, rgba(0,64,126,0.4) 0%, transparent 65%),
    linear-gradient(150deg, #0c1118, #0e1722);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.press-lead-visual .pl-mark {
  font-family: var(--font-serif);
  font-size: clamp(48px, 7vw, 96px);
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.08);
  line-height: 0.9;
  text-align: center;
}

/* =========================================================
   Form
   ========================================================= */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 32px; }
.form-grid .full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper-mute);
}
.field input, .field textarea, .field select {
  font: inherit;
  font-size: 16px;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--ink-line);
  color: var(--paper);
  padding: 12px 0;
  transition: border-color 200ms var(--ease);
  font-family: var(--font-sans);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--paper); }
.field textarea { resize: vertical; min-height: 120px; }
.field select option { background: var(--ink-2); }

/* =========================================================
   CTA band
   ========================================================= */
.cta-band { padding: 140px 0; border-top: 1px solid var(--ink-line); }
.cta-band .h-display { max-width: 14ch; }
.cta-band .lead { margin-top: 28px; }
.cta-band .hero-cta { margin-top: 40px; }

/* =========================================================
   Logo / authority strip
   ========================================================= */
.auth-strip { border-top: 1px solid var(--ink-line); border-bottom: 1px solid var(--ink-line); padding: 36px 0; }
.auth-inner { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.auth-inner .label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper-mute);
}
.badges { display: flex; gap: 36px; align-items: center; flex-wrap: wrap; }
.badge {
  font-family: var(--font-serif);
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--paper);
  opacity: 0.78;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.badge .b-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper-mute);
  padding-left: 10px;
  border-left: 1px solid var(--ink-line);
}

/* Trademark mark */
sup.tm {
  font-size: 0.45em;
  font-weight: 400;
  font-style: normal;
  vertical-align: 0.8em;
  line-height: 1;
  margin-left: 0.04em;
  opacity: 0.8;
}

/* =========================================================
   Reveal hook — kept as an inert class so markup stays stable.
   Content is always fully visible; no JS-gated hidden state.
   ========================================================= */
.reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* =========================================================
   Mobile
   ========================================================= */
@media (max-width: 980px) {
  .venture { grid-template-columns: 1fr; }
  .venture-visual { min-height: 280px; border-left: none; border-top: 1px solid var(--ink-line); }
  .press-lead { grid-template-columns: 1fr; }
  .press-lead-visual { border-left: none; border-top: 1px solid var(--ink-line); min-height: 220px; }
}
@media (max-width: 860px) {
  :root { --pad-x: 24px; --pad-section-y: 88px; }
  .nav-links { display: none; }
  .nav-ext { display: none; }
  .nav-burger { display: flex; }
  .nav-cta .btn-accent { display: none; }
  .hero { padding: 110px 0 80px; }
  .hero-sub { grid-template-columns: 1fr; gap: 32px; }
  .split, .split.reverse { grid-template-columns: 1fr; gap: 48px; }
  .split-meta { position: static; }
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--ink-line); }
  .pillar:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .block-grid-2, .block-grid-3 { grid-template-columns: 1fr; }
  .page-head-grid { grid-template-columns: 1fr; }
  .venture-body { padding: 40px 28px; }
  .press-row { grid-template-columns: 1fr; gap: 8px; }
  .press-row .p-arrow { display: none; }
  .form-grid { grid-template-columns: 1fr; }
}
