/* ═══════════════════════════════════════════════════════════════════════════
   Ordinex — marketing landing (ordinex.ca)
   Same design tokens as the app: obsidian surfaces, high-vis #FFC72C accent,
   Inter. Text on accent fills is ALWAYS dark (#0a0b0e) — see docs/brand.md.
   Zero JS page: everything here is layout + native elements.
   ═══════════════════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0a0b0e;
  --bg-2: #0f1115;
  --surface: #181a20;
  --surface-2: #1d1f26;
  --surface-3: #23252c;
  --border: rgba(255,255,255,0.07);
  --border-strong: rgba(255,255,255,0.12);
  --text: #ecedee;
  --text-muted: #8b8d96;
  --text-dim: #7a7d87;
  --accent: #FFC72C;
  --accent-hi: #FFD960;
  --accent-deep: #D89A14;
  --accent-ring: rgba(255,199,44,0.30);
  --success: #4ade80;
  --radius: 14px;
  --display: 'Archivo', system-ui, sans-serif;
  --body: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
.mono { font-variant-numeric: tabular-nums; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ── Header ─────────────────────────────────────────────────────────────── */
.hdr {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,11,14,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.hdr-in { display: flex; align-items: center; gap: 28px; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 800; font-size: 18px; letter-spacing: -0.02em; text-decoration: none; }
.ring { display: block; flex: none; }
.ring--sm { width: 26px; height: 26px; }
.hdr-nav { display: flex; gap: 22px; margin-left: auto; align-items: center; }
.hdr-nav a { text-decoration: none; font-size: 14px; font-weight: 500; color: var(--text-muted); padding: 4px 2px; }
.hdr-nav a:hover { color: var(--text); }
.hdr-nav a.active { color: var(--accent-hi); }

/* Dropdowns (Trades / Company) — pure CSS, keyboard-reachable via :focus-within */
.hdr-drop { position: relative; }
.hdr-caret { display: inline-block; margin-left: 5px; width: 7px; height: 7px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-2px); opacity: .6; }
.hdr-drop-menu {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%);
  min-width: 190px; padding: 8px;
  background: var(--surface); border: 1px solid var(--border-strong); border-radius: 12px;
  box-shadow: 0 24px 50px -18px rgba(0,0,0,.7);
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; translate: 0 -4px;
  transition: opacity .14s ease, translate .14s ease, visibility .14s;
}
/* Hover bridge so the pointer can cross the 10px gap without closing it */
.hdr-drop-menu::before { content: ''; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
.hdr-drop:hover .hdr-drop-menu,
.hdr-drop:focus-within .hdr-drop-menu { opacity: 1; visibility: visible; translate: 0 0; }
.hdr-drop-menu a { padding: 9px 12px; border-radius: 8px; font-size: 13.5px; }
.hdr-drop-menu a:hover { background: var(--surface-2); }
.hdr-cta { display: flex; gap: 10px; align-items: center; }
.btn {
  display: inline-block; text-decoration: none; font-weight: 600; font-size: 14.5px;
  padding: 10px 20px; border-radius: 10px; transition: background .15s, border-color .15s;
  font-family: var(--body); border: 1px solid transparent; cursor: pointer;
}
.btn-ghost { color: var(--text); border: 1px solid var(--border-strong); }
.btn-ghost:hover { border-color: rgba(255,255,255,0.25); }
.btn-accent { background: var(--accent); color: #0a0b0e; font-weight: 700; }
.btn-accent:hover { background: var(--accent-hi); }
.btn-lg { padding: 14px 28px; font-size: 16px; border-radius: 12px; }

.hdr-burger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 36px; height: 36px; background: none; border: none; cursor: pointer; }
.hdr-burger span { display: block; width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .18s, opacity .18s; }
.hdr-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hdr-burger.open span:nth-child(2) { opacity: 0; }
.hdr-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 760px) {
  .hdr-cta .btn-ghost { display: none; }
  .hdr-burger { display: flex; }
  .hdr-nav {
    position: fixed; inset: 64px 0 auto 0; margin: 0; flex-direction: column; gap: 0;
    align-items: stretch;
    background: var(--bg); border-bottom: 1px solid var(--border);
    max-height: 0; overflow: hidden; transition: max-height .2s ease;
  }
  .hdr-nav.open { max-height: calc(100dvh - 64px); overflow-y: auto; }
  .hdr-nav a { padding: 15px 24px; border-bottom: 1px solid var(--border); }
  /* Dropdowns flatten into an always-visible indented list on mobile */
  .hdr-drop { display: contents; }
  .hdr-caret { display: none; }
  .hdr-drop-menu {
    position: static; transform: none; translate: 0 0; opacity: 1; visibility: visible;
    min-width: 0; padding: 0; background: none; border: none; border-radius: 0; box-shadow: none;
    transition: none;
  }
  .hdr-drop-menu::before { display: none; }
  .hdr-drop-menu a { padding: 12px 24px 12px 40px; border-radius: 0; border-bottom: 1px solid var(--border); font-size: 13.5px; color: var(--text-dim); }
}

/* ── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 96px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(1000px 640px at 20% -10%, rgba(255,199,44,0.10), transparent 60%),
    radial-gradient(800px 600px at 78% 45%, rgba(255,199,44,0.07), transparent 65%),
    linear-gradient(165deg, #12141a 0%, #0c0d11 55%, #08090c 100%);
}
.hero-in { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.hero-pill {
  display: inline-block; font-size: 12.5px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent-hi);
  border: 1px solid rgba(255,199,44,0.4); border-radius: 999px; padding: 5px 14px; margin-bottom: 22px;
}
.hero h1 { font-family: var(--display); font-size: clamp(34px, 5vw, 56px); font-weight: 900; letter-spacing: -0.03em; line-height: 1.08; text-wrap: balance; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-sub { margin-top: 20px; font-size: 18px; color: var(--text-muted); max-width: 54ch; }
.hero-ctas { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-note { margin-top: 14px; font-size: 13px; color: var(--text-dim); }

/* CSS-built product vignette (honest — no fake screenshots) */
.hero-visual { position: relative; min-height: 340px; }
.mock-card {
  position: absolute; background: var(--surface); border: 1px solid var(--border-strong);
  border-radius: var(--radius); padding: 18px; box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.mock-form { top: 0; left: 0; right: 60px; }
.mock-form .mf-title { font-weight: 700; font-size: 15px; display: flex; align-items: center; gap: 8px; }
.mock-form .mf-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--success); flex: none; }
.mock-row { margin-top: 12px; }
.mock-row .mr-lbl { font-size: 11px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.05em; }
.mock-row .mr-bar { margin-top: 5px; height: 10px; border-radius: 5px; background: var(--surface-2); border: 1px solid var(--border); }
.mock-row .mr-bar.f70 { width: 70%; } .mock-row .mr-bar.f45 { width: 45%; } .mock-row .mr-bar.f85 { width: 85%; }
.mock-check { display: flex; gap: 8px; align-items: center; margin-top: 10px; font-size: 13.5px; color: var(--text-muted); }
.mock-check .mc-box {
  width: 16px; height: 16px; border-radius: 4px; background: rgba(74,222,128,0.15);
  border: 1px solid rgba(74,222,128,0.5); color: var(--success); font-size: 11px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex: none;
}
.mock-pdf { bottom: 0; right: 0; width: 210px; }
.mock-pdf .mp-band { height: 26px; border-radius: 6px; background: #00205B; display: flex; align-items: center; padding: 0 10px; }
.mock-pdf .mp-band span { font-size: 9px; font-weight: 800; color: #fff; letter-spacing: 0.08em; }
.mock-pdf .mp-line { height: 6px; border-radius: 3px; background: var(--surface-2); margin-top: 8px; }
.mock-pdf .mp-line.f60 { width: 60%; }
.mock-pdf .mp-sig { margin-top: 12px; display: flex; justify-content: space-between; align-items: center; }
.mock-pdf .mp-sig i { font-style: normal; font-size: 10px; color: var(--text-dim); }
.mock-pdf .mp-badge { font-size: 9px; font-weight: 800; color: var(--success); border: 1px solid rgba(74,222,128,0.4); border-radius: 999px; padding: 2px 8px; }

@media (max-width: 900px) {
  .hero-in { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
}

/* ── Differentiator strip ──────────────────────────────────────────────── */
.trust { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-2); }
.diff-head { text-align: center; padding: 22px 0 4px; font-size: 15px; color: var(--text-muted); }
.diff-head strong { color: var(--text); }
.trust-in { display: flex; flex-wrap: wrap; gap: 12px 32px; justify-content: center; padding: 12px 0 22px; }
.trust-chip { display: flex; gap: 9px; align-items: center; font-size: 14px; color: var(--text-muted); }
.trust-chip::before { content: '✓'; color: var(--success); font-weight: 800; }

/* ── Module lists (persona deep-dives — compact, no icons: honest over
   decorative when a feature list runs past a handful of items) ─────────── */
.mod-grid { margin-top: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 4px 40px; }
.mod-item { display: flex; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.mod-item .mod-mark { color: var(--accent); font-weight: 800; flex: none; line-height: 1.5; }
.mod-item strong { display: block; font-size: 14.5px; font-weight: 700; }
.mod-item span { display: block; margin-top: 3px; font-size: 13.5px; color: var(--text-muted); }
@media (max-width: 760px) { .mod-grid { grid-template-columns: 1fr; } }

/* Section badge (e.g. "Masonry pack — more trades coming") */
.sec-badge {
  display: inline-block; margin-left: 10px; font-size: 11.5px; font-weight: 700;
  color: var(--text-dim); background: var(--surface-2); border: 1px solid var(--border-strong);
  border-radius: 999px; padding: 3px 10px; vertical-align: middle;
}

/* Security & data ownership — reuses .trade card styling at 4-up */
.security-grid { margin-top: 40px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.security-grid .trade { border-left-color: var(--accent-hi); }
@media (max-width: 900px) { .security-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .security-grid { grid-template-columns: 1fr; } }

/* ── Sections ───────────────────────────────────────────────────────────── */
.sec { padding: 88px 0; }
.sec-alt { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.sec-kicker { font-size: 12.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-hi); }
.sec h2 { margin-top: 10px; font-family: var(--display); font-size: clamp(26px, 3.4vw, 38px); font-weight: 800; letter-spacing: -0.02em; text-wrap: balance; }
.sec-sub { margin-top: 12px; color: var(--text-muted); max-width: 62ch; }

/* Features */
.feat-grid { margin-top: 44px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feat {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px;
}
.feat img { width: 44px; height: 44px; margin-bottom: 14px; }
.feat h3 { font-size: 16.5px; font-weight: 700; }
.feat p { margin-top: 8px; font-size: 14.5px; color: var(--text-muted); }
@media (max-width: 900px) { .feat-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .feat-grid { grid-template-columns: 1fr; } }

/* How it works */
.steps { margin-top: 44px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: step; }
.step { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 24px 24px; }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; top: -14px; left: 22px;
  width: 28px; height: 28px; border-radius: 50%; background: var(--accent); color: #0a0b0e;
  font-weight: 800; font-size: 14px; display: flex; align-items: center; justify-content: center;
}
.step h3 { font-size: 16px; font-weight: 700; }
.step p { margin-top: 8px; font-size: 14.5px; color: var(--text-muted); }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; gap: 26px; } }

/* Trades */
.trades-grid { margin-top: 44px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.trade { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 24px; border-left: 3px solid var(--accent); }
.trade h3 { font-size: 16px; font-weight: 700; }
.trade p { margin-top: 6px; font-size: 13.5px; color: var(--text-muted); }
@media (max-width: 900px) { .trades-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .trades-grid { grid-template-columns: 1fr; } }

/* GC wedge */
.gc-band { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.gc-list { margin-top: 20px; list-style: none; }
.gc-list li { display: flex; gap: 10px; margin-top: 12px; font-size: 15px; color: var(--text-muted); }
.gc-list li::before { content: '→'; color: var(--accent-hi); font-weight: 700; flex: none; }
@media (max-width: 860px) { .gc-band { grid-template-columns: 1fr; } }

/* Pricing */
.price-grid { margin-top: 44px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.price {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 26px; display: flex; flex-direction: column;
}
.price.pop { border-color: rgba(255,199,44,0.55); position: relative; }
.price.pop::before {
  content: 'Most common'; position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #0a0b0e; font-size: 11px; font-weight: 700; border-radius: 999px; padding: 3px 12px;
}
.price .p-seats { font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-dim); }
.price .p-amt { margin-top: 10px; font-size: 40px; font-weight: 800; letter-spacing: -0.03em; }
.price .p-amt small { font-size: 14px; font-weight: 500; color: var(--text-muted); }
.price .p-note { margin-top: 4px; font-size: 13px; color: var(--text-muted); }
.price .btn { margin-top: 22px; text-align: center; }
.price-fine { margin-top: 26px; font-size: 13.5px; color: var(--text-dim); text-align: center; }
@media (max-width: 860px) { .price-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; } }

/* FAQ */
.faq { margin-top: 40px; max-width: 760px; }
.faq details { border-bottom: 1px solid var(--border); padding: 4px 0; }
.faq summary {
  cursor: pointer; list-style: none; padding: 16px 0; font-weight: 600; font-size: 15.5px;
  display: flex; justify-content: space-between; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--text-dim); font-weight: 400; font-size: 20px; }
.faq details[open] summary::after { content: '–'; }
.faq .faq-a { padding: 0 0 18px; font-size: 14.5px; color: var(--text-muted); max-width: 64ch; }

/* Final CTA */
.cta-band { text-align: center; padding: 96px 0; }
.cta-band h2 { font-family: var(--display); font-size: clamp(28px, 4vw, 42px); font-weight: 900; letter-spacing: -0.02em; }
.cta-band p { margin-top: 12px; color: var(--text-muted); }
.cta-band .btn { margin-top: 30px; }

/* ── Footer ─────────────────────────────────────────────────────────────── */
.ftr { border-top: 1px solid var(--border); padding: 56px 0 28px; }
.ftr-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 32px; }
.ftr-brand-col .brand { font-size: 17px; }
.ftr-brand-col p { margin-top: 12px; font-size: 13.5px; color: var(--text-muted); max-width: 32ch; }
.ftr-region { display: inline-block; margin-top: 14px; font-size: 11.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-dim); border: 1px solid var(--border-strong); border-radius: 999px; padding: 3px 10px; }
.ftr-col { display: flex; flex-direction: column; gap: 10px; }
.ftr-h { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 4px; }
.ftr-col a { font-size: 14px; color: var(--text-muted); text-decoration: none; }
.ftr-col a:hover { color: var(--text); }
.ftr-bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--border); font-size: 13px; color: var(--text-dim); }
.ftr-subscribe { margin-top: 16px; display: flex; flex-direction: column; gap: 6px; }
.ftr-sub-row { display: flex; gap: 8px; }
.ftr-sub-row input {
  flex: 1; min-width: 0; background: var(--surface); border: 1px solid var(--border-strong);
  border-radius: 10px; padding: 9px 12px; font-size: 13.5px; color: var(--text); font-family: var(--body);
}
.ftr-sub-row input:focus { outline: none; border-color: var(--accent-ring); }
.ftr-sub-row .btn { padding: 9px 16px; font-size: 13.5px; }
.ftr-sub-note { font-size: 11.5px; color: var(--text-dim); }

/* ── Scroll reveal (JS in footer partial adds .reveal/.in) ──────────────── */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; translate: 0 14px; transition: opacity .5s ease, translate .5s ease; }
  .reveal.in { opacity: 1; translate: 0 0; }
}
@media (max-width: 760px) { .ftr-grid { grid-template-columns: 1fr 1fr; } .ftr-brand-col { grid-column: 1 / -1; } }
@media (max-width: 480px) { .ftr-grid { grid-template-columns: 1fr; } }

/* ── Hero mock (phone + floating cards + arcs) ─────────────────────────── */
.hero-art { position: relative; }
.hero-art .arc-svg { position: absolute; inset: -10% -10%; width: 120%; height: 120%; z-index: 0; pointer-events: none; }
.hero-phone { position: relative; z-index: 2; width: 240px; margin: 0 auto; background: #050608; border: 8px solid #1b1d22; border-radius: 34px; padding: 13px 12px 16px; box-shadow: 0 40px 90px -30px rgba(0,0,0,.8), 0 0 0 1px rgba(255,255,255,.04); }
.hero-phone .notch { width: 80px; height: 5px; background: #2a2d34; border-radius: 99px; margin: 2px auto 8px; }
.hero-phone .pstat { display: flex; justify-content: space-between; align-items: center; padding: 0 6px 6px; font-size: 10px; font-weight: 600; color: var(--text-dim); }
.hero-phone .scr { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 14px; }
.frow { margin-top: 10px; }
.frow .fl { font-size: 9px; letter-spacing: .08em; text-transform: uppercase; color: var(--text-dim); }
.frow .fv { margin-top: 3px; font-size: 12px; font-weight: 600; color: var(--text); background: var(--surface-2); border: 1px solid var(--border); border-radius: 7px; padding: 6px 9px; }
.sigbox { margin-top: 12px; border: 1px solid var(--border); border-radius: 9px; padding: 8px 10px; }
.sigbox .fl { font-size: 8.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--text-dim); }
.sigbox .sig { margin-top: 2px; padding-top: 0; border-top: none; }
.scr .st { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 13px; }
.scr .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); flex: none; }
.chk { display: flex; gap: 7px; align-items: center; margin-top: 9px; font-size: 11.5px; color: var(--text-muted); }
.chk .b { width: 14px; height: 14px; border-radius: 4px; background: rgba(74,222,128,.15); border: 1px solid rgba(74,222,128,.5); color: var(--success); font-size: 9.5px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex: none; }
.sig { margin-top: 12px; padding-top: 10px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.sig i { font-style: italic; font-family: Georgia, serif; font-size: 14px; color: var(--text); }
.badge { font-size: 9px; font-weight: 800; letter-spacing: .05em; color: var(--success); border: 1px solid rgba(74,222,128,.4); border-radius: 999px; padding: 2px 8px; }
.hero-float { position: absolute; z-index: 2; background: var(--surface); border: 1px solid var(--border-strong); border-radius: 14px; padding: 13px 15px; box-shadow: 0 30px 60px -24px rgba(0,0,0,.7); font-size: 12px; }
.hero-float.f-sign { top: 0; right: 0; width: 178px; }
.hero-float.f-sign .badge { margin-top: 8px; display: inline-block; }
.hero-float.f-comp { bottom: -18px; left: -20px; width: 200px; }
.hero-float.f-comp .cl { font-weight: 700; font-size: 12px; margin-bottom: 8px; }
.hbar { margin-top: 8px; }
.hbar .bl { display: flex; justify-content: space-between; font-size: 11px; color: var(--text-muted); margin-bottom: 4px; }
.hbar .bt { height: 6px; border-radius: 4px; background: var(--surface-3); overflow: hidden; }
.hbar .bf { height: 100%; border-radius: 4px; background: linear-gradient(90deg, #22c55e, #16a34a); }
@media (max-width: 900px) { .hero-visual { display: none; } }

/* ── Built for the way you build — icon row ────────────────────────────── */
.icon-row { margin-top: 44px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.icon-item { text-align: center; }
.icon-item .ii-mark { width: 44px; height: 44px; margin: 0 auto 12px; border-radius: 12px; background: var(--surface); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; }
.icon-item .ii-mark svg { width: 22px; height: 22px; }
.icon-item span { display: block; font-size: 13px; font-weight: 600; color: var(--text-muted); }
@media (max-width: 860px) { .icon-row { grid-template-columns: repeat(3, 1fr); gap: 24px 16px; } }
@media (max-width: 500px) { .icon-row { grid-template-columns: repeat(2, 1fr); } }

/* ── Persona cards (with photo) ─────────────────────────────────────────── */
.persona-grid { margin-top: 44px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.persona {
  background: var(--surface); border: 1px solid var(--border); border-radius: 18px; overflow: hidden;
  display: flex; flex-direction: column;
}
.persona-media { position: relative; height: 168px; overflow: hidden; }
.persona-media img { width: 100%; height: 100%; object-fit: cover; }
.persona-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,11,14,0) 40%, rgba(10,11,14,.92) 100%); }
.persona-kicker { position: absolute; left: 16px; bottom: 12px; z-index: 2; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-hi); }
.persona-body { padding: 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.persona-body h3 { font-family: var(--display); font-size: 18px; font-weight: 800; letter-spacing: -0.01em; }
.persona-ticks { margin-top: 10px; list-style: none; display: flex; flex-direction: column; gap: 8px; }
.persona-ticks li { display: flex; gap: 8px; font-size: 13.5px; color: var(--text-muted); }
.persona-ticks li::before { content: '✓'; color: var(--success); font-weight: 800; flex: none; }
/* Office card: no photo, mockup tiles instead */
.persona-mock { padding: 18px 20px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pm-tile { background: var(--surface-2); border: 1px solid var(--border); border-radius: 12px; padding: 12px 14px; }
.pm-tile .k { font-size: 10px; letter-spacing: .06em; text-transform: uppercase; color: var(--text-dim); }
.pm-tile .v { font-family: var(--display); font-weight: 800; font-size: 24px; margin-top: 3px; }
.pm-tile .v small { font-size: 11px; color: var(--text-muted); font-weight: 600; }
.pm-donut { grid-column: 1 / -1; display: flex; align-items: center; gap: 14px; }
.pm-donut svg { flex: none; }
.pm-donut .n { font-family: var(--display); font-weight: 800; font-size: 22px; }
.pm-donut span { font-size: 11.5px; color: var(--text-muted); }
.pm-feed { grid-column: 1 / -1; background: var(--surface-2); border: 1px solid var(--border); border-radius: 12px; padding: 10px 14px; }
.pm-feed .k { font-size: 10px; letter-spacing: .06em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 4px; }
.pm-feed .fr { display: flex; justify-content: space-between; align-items: center; gap: 10px; padding: 5px 0; border-top: 1px solid var(--border); font-size: 12px; color: var(--text-muted); }
.pm-feed .fr b { color: var(--text); font-weight: 600; }
.pm-feed .fr time { font-size: 11px; color: var(--text-dim); flex: none; }
/* Mini-Gantt: CSS recreation of the real Schedule tab (fictional data —
   never real production screenshots on the marketing site). Toned and
   sized to match the persona-media photo cards (168px, amber duotone),
   so the mock reads as "the same kind of visual", not a UI screenshot
   sitting oddly next to two photographs. */
.persona-media--mock { background: linear-gradient(155deg, #2a2115, #14100b); }
.gantt-shrink {
  position: absolute; inset: 0; padding: 14px 16px 0;
  filter: sepia(.6) saturate(1.35) brightness(.82) contrast(1.08) hue-rotate(-6deg);
  transform: scale(1.18); transform-origin: top center;
}
.pm-gantt { }
.pm-gantt .k { font-size: 10px; letter-spacing: .06em; text-transform: uppercase; color: var(--text-dim); }
.gantt-months { display: flex; margin: 8px 0 4px; padding-left: 76px; }
.gantt-months span { flex: 1; font-size: 9px; letter-spacing: .06em; color: var(--text-dim); text-transform: uppercase; }
.gantt-rows { position: relative; }
.gantt-today { position: absolute; top: -4px; bottom: 0; width: 1px; background: var(--accent); opacity: .7; z-index: 1; }
.gantt-row { display: flex; align-items: center; gap: 8px; padding: 4px 0; }
.gantt-row .gl { width: 68px; flex: none; font-size: 10.5px; font-weight: 600; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gantt-row .gt { position: relative; flex: 1; height: 14px; background: var(--bg-2); border-radius: 4px; overflow: hidden; }
.gantt-row .gb { position: absolute; top: 2px; bottom: 2px; border-radius: 3px; }
.gantt-legend { display: flex; gap: 12px; margin-top: 8px; }
.gantt-legend span { display: flex; align-items: center; gap: 5px; font-size: 9.5px; color: var(--text-dim); }
.gantt-legend i { width: 8px; height: 8px; border-radius: 2px; flex: none; }
.manpower { display: flex; align-items: flex-end; gap: 3px; height: 34px; margin-top: 10px; padding-top: 8px; border-top: 1px solid var(--border); }
.manpower .mb { flex: 1; display: flex; flex-direction: column-reverse; border-radius: 2px 2px 0 0; overflow: hidden; }
.manpower .mb i { display: block; width: 100%; }
.manpower .mb .mf { background: #f59e0b; }
.manpower .mb .ml { background: #3b82f6; }
.manpower .mb .mh { background: #22c55e; }
@media (max-width: 900px) { .persona-grid { grid-template-columns: 1fr; } }

/* ── Compact tile row (beyond safety binder / ecosystem / trade packs) ──── */
.tile-row { margin-top: 44px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.tile-card { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 24px; display: flex; flex-direction: column; }
.tile-card h3 { font-family: var(--display); font-size: 17px; font-weight: 800; }
.tile-card p { margin-top: 8px; font-size: 13.5px; color: var(--text-muted); flex: 1; }
.tile-donut { display: flex; align-items: center; gap: 16px; margin-top: 16px; }
.tile-donut .n { font-family: var(--display); font-weight: 800; font-size: 28px; }
.tile-donut span { font-size: 12px; color: var(--text-muted); }
.tp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 16px; }
.tp { background: var(--surface-2); border: 1px solid var(--border); border-radius: 10px; padding: 10px 6px; text-align: center; }
.tp svg { width: 20px; height: 20px; margin: 0 auto 5px; display: block; }
.tp span { display: block; font-size: 10.5px; font-weight: 600; }
.eco-list { margin-top: 14px; list-style: none; display: flex; flex-direction: column; gap: 9px; }
.eco-list li { display: flex; gap: 8px; font-size: 13px; color: var(--text-muted); }
.eco-list li::before { content: '→'; color: var(--accent-hi); font-weight: 700; flex: none; }
@media (max-width: 900px) { .tile-row { grid-template-columns: 1fr; } }

/* ── Compact pricing tile (Home teaser — full detail lives on /pricing) ─── */
.price-mini { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.pm-row { display: flex; justify-content: space-between; align-items: baseline; padding: 10px 0; border-top: 1px solid var(--border); font-size: 13.5px; }
.pm-row .seats { color: var(--text-muted); }
.pm-row .amt { font-family: var(--display); font-weight: 800; }
.pm-row.pop .seats { color: var(--accent-hi); font-weight: 700; }

/* ── Photo section (your data / how it works side visual) ───────────────── */
.photo-side { position: relative; border-radius: 18px; overflow: hidden; min-height: 340px; }
.photo-side img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .photo-side { min-height: 240px; } }
.shield-ticks { margin-top: 22px; list-style: none; display: flex; flex-direction: column; gap: 14px; }
.shield-ticks li { display: flex; gap: 12px; font-size: 14.5px; color: var(--text-muted); }
.shield-ticks li strong { color: var(--text); font-weight: 700; }
.shield-ticks li::before { content: ''; width: 20px; height: 20px; flex: none; margin-top: 2px; border-radius: 6px; background: var(--accent-soft, rgba(255,199,44,.12)); border: 1px solid var(--accent-ring); }

/* ── CTA band with photo ──────────────────────────────────────────────── */
.cta-band { position: relative; overflow: hidden; }
.cta-band .cta-bg { position: absolute; inset: 0; z-index: 0; }
.cta-band .cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band .cta-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,11,14,.75), rgba(10,11,14,.92)); }
.cta-band .wrap { position: relative; z-index: 1; }

/* ── Trade pages (real pack content) ─────────────────────────────────── */
.pack-cols { margin-top: 44px; display: grid; grid-template-columns: 1fr 1.2fr 1fr; gap: 20px; align-items: start; }
@media (max-width: 960px) { .pack-cols { grid-template-columns: 1fr; } }
.pack-card { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 22px; }
.pack-card > .pc-kicker { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-hi); }
.pack-card > h3 { font-family: var(--display); font-size: 17px; font-weight: 800; margin-top: 6px; }
.pack-card > p.pc-sub { margin-top: 6px; font-size: 13px; color: var(--text-muted); }
.pc-checklist { margin-top: 14px; list-style: none; display: flex; flex-direction: column; gap: 8px; }
.pc-checklist li { display: flex; gap: 9px; font-size: 13.5px; color: var(--text-muted); align-items: flex-start; }
.pc-checklist li::before { content: '✓'; flex: none; width: 17px; height: 17px; border-radius: 5px; font-size: 10.5px; font-weight: 800; display: flex; align-items: center; justify-content: center; background: rgba(74,222,128,.14); border: 1px solid rgba(74,222,128,.45); color: var(--success); margin-top: 1px; }
.flra-item { border: 1px solid var(--border); background: var(--surface-2); border-radius: 12px; padding: 12px 14px; margin-top: 10px; }
.flra-item .ft { display: flex; justify-content: space-between; gap: 10px; align-items: baseline; font-size: 13.5px; font-weight: 600; }
.flra-risk { flex: none; font-size: 10px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; border-radius: 999px; padding: 2px 8px; }
.flra-risk.low { color: var(--success); border: 1px solid rgba(74,222,128,.4); }
.flra-risk.medium { color: var(--accent-hi); border: 1px solid var(--accent-ring); }
.flra-risk.high { color: #f87171; border: 1px solid rgba(248,113,113,.4); }
.flra-item .fh { margin-top: 5px; font-size: 12px; color: var(--text-dim); }
.flra-item .fc { margin-top: 4px; font-size: 12px; color: var(--text-muted); }
.flra-item .fc b { color: var(--text); font-weight: 600; }
.pack-more { margin-top: 12px; font-size: 12.5px; color: var(--text-dim); }

/* Trade index cards */
.trade-index { margin-top: 44px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .trade-index { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .trade-index { grid-template-columns: 1fr; } }
.trade-card { display: block; background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 24px; text-decoration: none; transition: border-color .15s, transform .15s; }
.trade-card:hover { border-color: var(--accent-ring); transform: translateY(-2px); }
.trade-card .tc-ic { width: 44px; height: 44px; border-radius: 12px; background: var(--surface-2); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.trade-card .tc-ic svg { width: 22px; height: 22px; }
.trade-card h3 { font-family: var(--display); font-size: 18px; font-weight: 800; }
.trade-card p { margin-top: 8px; font-size: 13.5px; color: var(--text-muted); }
.trade-card .tc-go { margin-top: 14px; font-size: 13px; font-weight: 700; color: var(--accent-hi); }

/* ── Legal / prose pages ──────────────────────────────────────────────── */
.prose { max-width: 74ch; }
.prose h2 { font-family: var(--display); font-size: 22px; font-weight: 800; margin-top: 40px; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--text-muted); font-size: 15px; margin-top: 12px; }
.prose ul { padding-left: 20px; }
.prose strong { color: var(--text); }
.page-hero { padding: 64px 0 8px; }
.page-hero .sec-kicker { font-size: 12.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-hi); }
.page-hero h1 { margin-top: 10px; font-family: var(--display); font-size: clamp(30px, 4vw, 44px); font-weight: 900; letter-spacing: -0.02em; }
.page-hero p { margin-top: 14px; color: var(--text-muted); max-width: 60ch; font-size: 16px; }
