/* ============================================================
   URBAN GLIDE — V3
   General Sans (headings/btns) · Erode (body) · Olive green accent · Obsidian dark theme.
   ============================================================ */

@import url('https://api.fontshare.com/v2/css?f[]=erode@400&display=swap');


@font-face {
  font-family: 'General Sans';
  src: url('../fonts/GeneralSans-Variable.woff2') format('woff2'),
       url('../fonts/GeneralSans-Variable.woff') format('woff');
  font-weight: 200 700;
  font-style: normal;
  font-display: swap;
}

/* ─── Tokens ────────────────────────────────────────────── */
:root {
  /* Light base */
  --ink:           #000000;
  --canvas:        #ffffff;
  --paper:         #fafafa;
  --slate:         #6a6a6a;
  --mute:          rgba(0,0,0,0.55);

  /* Secure-mode additions */
  --obsidian:      #0A0B0D;
  --graphite:      #15171C;
  --carbon:        #1f232b;
  --hairline-l:    rgba(0,0,0,0.10);
  --hairline-ll:   rgba(0,0,0,0.06);
  --hairline-d:    rgba(255,255,255,0.10);
  --hairline-dd:   rgba(255,255,255,0.06);

  /* Accents */
  --green:         #A8C038;
  --green-soft:    #C2D65A;
  --green-glow:    rgba(168,192,56,0.35);
  --green-veil:    rgba(168,192,56,0.06);
  --forest-deep:   #1B4332;

  /* Type */
  --font-head:     'General Sans', sans-serif;
  --font-body:     'Erode', serif;
  --mono:          'General Sans', sans-serif;

  --t-sm:          15px;
  --t-xs:          12px;
  --t-body:        17px;
  --t-sub:         20px;
  --t-h-sm:        clamp(22px, 2.2vw, 28px);
  --t-h:           clamp(32px, 4vw, 46px);
  --t-h-lg:        clamp(38px, 5vw, 56px);
  --t-display:     clamp(44px, 5.6vw, 84px);

  /* Spacing */
  --s4: 4px; --s8: 8px; --s12: 12px; --s16: 16px; --s24: 24px;
  --s32: 32px; --s40: 40px; --s48: 48px; --s64: 64px; --s80: 80px;
  --s96: 96px; --s128: 128px; --s160: 160px;

  /* Radius */
  --r-card: 16px;
  --r-badge: 8px;
  --r-pill: 999px;

  /* Layout */
  --pad-x: clamp(20px, 5vw, 80px);
  --max-w: 1280px;
}

/* ─── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--t-body);
  line-height: 1.5;
  color: var(--ink);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}
img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-head); text-wrap: balance; letter-spacing: -0.02em; }
em { font-style: normal; font-weight: inherit; }

/* Grain overlay (premium texture, 3%) */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* Scroll progress hairline */
.x-progress {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--green), var(--green-soft));
  z-index: 10000;
  transition: width 80ms linear;
}

/* ─── Type primitives ───────────────────────────────────── */
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--t-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--mute);
  display: inline-flex; align-items: center; gap: var(--s8);
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--green);
  box-shadow: 0 0 0 4px var(--green-veil);
  border-radius: 1px;
}
.eyebrow.light { color: rgba(255,255,255,0.70); }
.eyebrow.light::before { background: var(--green); box-shadow: 0 0 0 4px rgba(168,192,56,0.18); }

.h-lg { font-size: var(--t-h-lg); font-weight: 700; line-height: 1.08; letter-spacing: -0.025em; }
.h    { font-size: var(--t-h);    font-weight: 700; line-height: 1.12; letter-spacing: -0.022em; }
.h-sm { font-size: var(--t-h-sm); font-weight: 600; line-height: 1.2;  letter-spacing: -0.018em; }

.lede {
  font-size: var(--t-sub); line-height: 1.55;
  color: var(--mute); max-width: 68ch;
}
.lede.light { color: rgba(255,255,255,0.72); }
.lede strong { color: var(--ink); font-weight: 600; }
.lede.light strong { color: #fff; }

.mono { font-family: var(--mono); letter-spacing: 0; }
.uc   { text-transform: uppercase; letter-spacing: 0.14em; }

/* ─── Layout primitives ─────────────────────────────────── */
.wrap { max-width: var(--max-w); margin: 0 auto; padding-inline: var(--pad-x); }
.section {
  padding-block: clamp(64px, 9vw, 128px);
  position: relative;
}
.section.tight { padding-block: clamp(40px, 5vw, 72px); }
.section.dark  { background: var(--obsidian); color: #fff; }
.section.dark .lede { color: rgba(255,255,255,0.72); }
.section.dark .lede strong { color: #fff; }
.section.dark::before {
  /* secure perimeter inner glow */
  content: "";
  position: absolute; inset: 0;
  box-shadow: inset 0 0 120px rgba(168,192,56,0.06);
  pointer-events: none;
}
.section + .section { border-top: 1px solid var(--hairline-l); }
.section.dark + .section,
.section + .section.dark { border-top: 0; }

/* ─── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: var(--s8);
  font-family: var(--font-head); font-size: var(--t-sm); font-weight: 500;
  padding: 12px 20px;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn-sm { padding: 9px 14px; font-size: 13px; }
.btn .arr { transition: transform .2s ease; display: inline-block; }
.btn:hover .arr { transform: translateX(3px); }

.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { box-shadow: 0 0 0 4px var(--green-veil); border-color: var(--green); }

.btn-green { background: var(--green); color: var(--obsidian); font-weight: 600; }
.btn-green:hover { box-shadow: 0 0 0 6px var(--green-veil); }

.btn-light { background: #fff; color: var(--obsidian); }
.btn-light:hover { box-shadow: 0 0 0 4px rgba(255,255,255,0.18); }

.btn-ghost { background: transparent; border-color: var(--hairline-l); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); }

.btn-ghost-dark { background: transparent; border-color: rgba(255,255,255,0.22); color: #fff; }
.btn-ghost-dark:hover { border-color: var(--green); color: var(--green); }

/* Focus rings — green halo */
a:focus-visible, button:focus-visible, .btn:focus-visible, .x-pill:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: var(--r-pill);
}

/* ─── Nav ───────────────────────────────────────────────── */
.x-nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  padding-inline: var(--pad-x);
  z-index: 100;
  font-family: var(--font-head);
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
  border-bottom: 1px solid transparent;
}
.x-nav.scrolled {
  background: #fff;
  border-bottom-color: var(--hairline-l);
}
.x-nav-logo { display: inline-flex; align-items: center; gap: 10px; }
.x-nav-logo img { height: 30px; }
.x-nav-links { display: flex; gap: var(--s24); }
.x-nav-link {
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: color .2s ease;
}
.x-nav-link:hover { color: #fff; }
.x-nav.scrolled .x-nav-link { color: rgba(0,0,0,0.65); }
.x-nav.scrolled .x-nav-link:hover { color: var(--ink); }

/* Logo white on dark hero, restore on scroll */
.x-nav-logo img { filter: brightness(0) invert(1); transition: filter .25s ease; }
.x-nav.scrolled .x-nav-logo img { filter: none; }

/* Sign in (btn-ghost) white on dark hero, restore on scroll */
.x-nav .btn-ghost { color: rgba(255,255,255,0.80); border-color: rgba(255,255,255,0.28); }
.x-nav .btn-ghost:hover { color: #fff; border-color: #fff; }
.x-nav.scrolled .btn-ghost { color: var(--ink); border-color: var(--hairline-l); }
.x-nav.scrolled .btn-ghost:hover { border-color: var(--ink); }

.x-nav-right { display: flex; align-items: center; gap: var(--s8); }
.x-nav-region {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em;
  color: var(--mute); padding: 4px 8px;
  border: 1px solid var(--hairline-l); border-radius: 6px;
}
.x-nav .x-nav-region { color: rgba(255,255,255,0.55); border-color: rgba(255,255,255,0.18); }
.x-nav.scrolled .x-nav-region { color: var(--mute); border-color: var(--hairline-l); }

@media (max-width: 720px) {
  .x-nav-links { display: none; }
  .x-nav-region { display: none; }
}

/* ─── Hero ──────────────────────────────────────────────── */
.x-hero {
  position: relative;
  min-height: min(860px, 100vh);
  display: flex; align-items: center;
  padding-top: 120px; padding-bottom: 80px;
  color: #fff;
  background: var(--obsidian);
  overflow: hidden;
}
.x-hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.55;
  transform: translateZ(0);
}
.x-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(168,192,56,0.10), transparent 55%),
    linear-gradient(180deg, rgba(10,11,13,0.5) 0%, rgba(10,11,13,0.85) 70%, rgba(10,11,13,0.95) 100%);
}
.x-hero-overlay::after {
  /* fine grain on hero */
  content: ""; position: absolute; inset: 0; opacity: 0.10;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.x-hero-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: var(--s48);
  align-items: center;
}
.x-hero-eyebrow { margin-bottom: var(--s24); }
.x-hero h1 {
  font-size: var(--t-display);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.035em;
  color: #fff;
  margin-bottom: var(--s24);
}
.x-hero h1 em {
  position: relative; display: inline-block;
  color: #fff;
}
.x-hero h1 em::after {
  content: ""; position: absolute;
  left: 0; right: 0; bottom: 0.02em;
  height: 2px;
  background: linear-gradient(90deg, var(--green) 0%, transparent 100%);
}
.x-hero-sub {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  max-width: 56ch;
  margin-bottom: var(--s32);
}
.x-hero-actions { display: flex; gap: var(--s12); flex-wrap: wrap; margin-bottom: var(--s48); }

.x-hero-trust { display: flex; align-items: center; gap: var(--s16); flex-wrap: wrap; }
.x-hero-trust-label {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.x-hero-trust-logos { display: flex; gap: var(--s24); flex-wrap: wrap; }
.x-hero-trust-item {
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.78);
  position: relative; padding-right: var(--s24);
}
.x-hero-trust-item:not(:last-child)::after {
  content: ""; position: absolute; right: 0; top: 50%;
  width: 1px; height: 12px; background: rgba(255,255,255,0.18);
  transform: translateY(-50%);
}

/* Hero telemetry panel */
.x-hero-panel {
  background: rgba(21,23,28,0.72);
  border: 1px solid var(--hairline-d);
  border-radius: 12px;
  padding: 18px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 24px 80px -20px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.04);
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(255,255,255,0.88);
}
.x-hero-panel-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 12px; margin-bottom: 12px;
  border-bottom: 1px solid var(--hairline-d);
}
.x-hero-panel-title {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.x-hero-panel-dot {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--green);
}
.x-hero-panel-dot::before {
  content: ""; width: 6px; height: 6px; border-radius: 999px;
  background: var(--green); box-shadow: 0 0 0 3px var(--green-veil);
  animation: pulse 1.6s ease-in-out infinite;
}
.x-hero-panel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; }
.x-hero-panel-row { display: flex; flex-direction: column; gap: 2px; }
.x-hero-panel-k {
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.x-hero-panel-v { color: #fff; font-size: 14px; }
.x-hero-panel-v .ok { color: var(--green); }
.x-hero-panel-foot {
  margin-top: 14px; padding-top: 12px;
  border-top: 1px solid var(--hairline-d);
  display: flex; justify-content: space-between;
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.48);
}

@media (max-width: 980px) {
  .x-hero-inner { grid-template-columns: 1fr; gap: var(--s32); }
  .x-hero-panel { max-width: 480px; }
}

/* Trust ribbon (below hero) */
.x-ribbon {
  border-top: 1px solid var(--hairline-d);
  border-bottom: 1px solid var(--hairline-l);
  background: var(--canvas);
}
.x-ribbon-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 44px;
  gap: var(--s24);
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mute);
}
.x-ribbon-inner span {
  display: inline-flex; align-items: center; gap: 8px;
}
.x-ribbon-inner .ico { color: var(--forest-deep); }
@media (max-width: 880px) {
  .x-ribbon-inner { overflow-x: auto; white-space: nowrap; justify-content: flex-start; }
}

/* ─── Trust stats (bento 2×2) ───────────────────────────── */
.x-trust-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--s16);
}
.x-trust-grid--strip {
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: auto;
}
.x-trust-cell {
  border: 1px solid var(--hairline-l);
  border-radius: var(--r-card);
  padding: var(--s32);
  background: var(--canvas);
  position: relative;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.x-trust-cell:hover {
  border-color: var(--green);
  box-shadow: 0 0 0 4px var(--green-veil);
}
.x-trust-cell .ix {
  position: absolute; top: 16px; right: 16px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mute);
}
.x-trust-cell--hero {
  grid-row: span 2;
  background: var(--obsidian); color: #fff;
  border-color: var(--obsidian);
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 280px;
  overflow: hidden;
}
.x-trust-cell--hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 10%, var(--green-glow), transparent 50%);
  opacity: 0.4; pointer-events: none;
}
.x-trust-cell--hero .ix { color: rgba(255,255,255,0.55); }
.x-trust-num {
  font-family: var(--mono);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: var(--s12);
}
.x-trust-cell--hero .x-trust-num { color: #fff; position: relative; z-index: 1; }
.x-trust-num sup {
  font-size: 0.45em; font-weight: 500;
  vertical-align: super; color: var(--green);
  margin-left: 4px;
}
.x-trust-label {
  font-size: 17px; color: var(--ink);
  line-height: 1.5; max-width: 32ch;
  position: relative; z-index: 1;
}
.x-trust-grid--strip .x-trust-num {
  font-size: clamp(36px, 3.8vw, 56px);
}
.x-trust-grid--strip .x-trust-label {
  font-size: 16px; color: var(--ink);
  opacity: 0.85;
}
.x-trust-cell--hero .x-trust-label { color: rgba(255,255,255,0.72); }

@media (max-width: 880px) {
  .x-trust-grid { grid-template-columns: 1fr 1fr; }
  .x-trust-cell--hero { grid-row: auto; grid-column: span 2; min-height: 200px; }
  .x-trust-grid--strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .x-trust-grid { grid-template-columns: 1fr; }
  .x-trust-cell--hero { grid-column: auto; }
  .x-trust-grid--strip { grid-template-columns: 1fr; }
}

/* ─── Moving Pills marquee ──────────────────────────────── */
.x-marq {
  padding-block: var(--s48);
  border-top: 1px solid var(--hairline-l);
  border-bottom: 1px solid var(--hairline-l);
  background: var(--paper);
  position: relative;
}
.x-marq-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-inline: var(--pad-x);
  margin-bottom: var(--s24);
  max-width: var(--max-w); margin-left: auto; margin-right: auto;
  width: 100%;
}
.x-marq-head .label {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mute);
  display: inline-flex; align-items: center; gap: 8px;
}
.x-marq-head .label::before {
  content: ""; width: 6px; height: 6px; border-radius: 999px;
  background: var(--green); box-shadow: 0 0 0 4px var(--green-veil);
  animation: pulse 1.6s ease-in-out infinite;
}
.x-marq-mask {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  overflow: hidden;
}
.x-marq-track {
  display: flex; width: max-content;
  animation: marq 48s linear infinite;
}
.x-marq:hover .x-marq-track { animation-play-state: paused; }
.x-marq-row {
  display: flex; gap: 12px;
  padding-right: 12px;
}
@keyframes marq {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.x-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--hairline-l);
  border-radius: var(--r-pill);
  background: var(--canvas);
  font-size: 14px; font-weight: 500;
  white-space: nowrap; color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.x-pill:hover { border-color: var(--green); box-shadow: 0 0 0 4px var(--green-veil); }
.x-pill .ico { width: 14px; height: 14px; flex-shrink: 0; color: var(--forest-deep); }
.x-pill .dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--green); box-shadow: 0 0 0 4px var(--green-veil);
  flex-shrink: 0;
}
.x-pill--filled { background: var(--obsidian); color: #fff; border-color: var(--obsidian); }
.x-pill--filled .ico { color: var(--green); }
.x-pill--logo {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mute); background: transparent;
}

@media (prefers-reduced-motion: reduce) {
  .x-marq-track { animation: none; }
}

/* ─── Section heads ─────────────────────────────────────── */
.x-head { max-width: 820px; margin-bottom: var(--s64); }
.x-head > .eyebrow { margin-bottom: var(--s16); }
.x-head h2 { margin-bottom: var(--s16); }

.section.dark .x-head { position: relative; }
.section.dark .x-head::before {
  content: ""; position: absolute;
  left: -10%; top: -20%;
  width: 60%; height: 200%;
  background: radial-gradient(ellipse at center, var(--green-glow), transparent 60%);
  filter: blur(80px); opacity: 0.18;
  pointer-events: none;
}

/* ─── Audiences ─────────────────────────────────────────── */
.x-aud-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s24);
}
.x-aud-card {
  border: 1px solid var(--hairline-l);
  border-radius: var(--r-card);
  background: var(--canvas);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.x-aud-card:hover {
  border-color: var(--green);
  box-shadow: 0 0 0 4px var(--green-veil);
  transform: translateY(-2px);
}
.x-aud-img {
  aspect-ratio: 4 / 3; overflow: hidden;
  border-bottom: 1px solid var(--hairline-l);
}
.x-aud-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.x-aud-card:hover .x-aud-img img { transform: scale(1.04); }
.x-aud-body { padding: var(--s24); display: flex; flex-direction: column; gap: var(--s12); flex: 1; }
.x-aud-card .badge {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mute);
  display: inline-flex; align-items: center; gap: 6px;
}
.x-aud-card .badge::before {
  content: ""; width: 4px; height: 4px; background: var(--green); border-radius: 1px;
}
.x-aud-card h3 { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; }
.x-aud-card p { font-size: 16px; line-height: 1.6; color: var(--mute); flex: 1; }
.x-aud-link {
  font-size: 13px; font-weight: 500;
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 6px;
  padding-top: var(--s8);
  border-top: 1px solid var(--hairline-l);
}
.x-aud-link .arr { transition: transform .2s ease; }
.x-aud-card:hover .x-aud-link .arr { transform: translateX(4px); color: var(--green); }

@media (max-width: 980px) {
  .x-aud-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .x-aud-grid { grid-template-columns: 1fr; }
}

/* ─── Platform modules (terminal panels) ────────────────── */
.x-mod-list { display: flex; flex-direction: column; gap: var(--s32); }
.x-mod-panel {
  border: 1px solid var(--hairline-l);
  border-radius: 12px;
  background: var(--canvas);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.x-mod-panel:hover { border-color: rgba(0,0,0,0.18); box-shadow: 0 24px 60px -28px rgba(0,0,0,0.16); }

.x-mod-chrome {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--hairline-l);
  background: var(--paper);
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.06em; color: var(--mute);
}
.x-mod-chrome .dots { display: flex; gap: 6px; }
.x-mod-chrome .dots span {
  width: 10px; height: 10px; border-radius: 999px;
  background: var(--hairline-l);
}
.x-mod-chrome .dots span:nth-child(3) { background: var(--green); }
.x-mod-chrome .crumb { flex: 1; text-align: center; }
.x-mod-chrome .status {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--green); text-transform: uppercase;
}
.x-mod-chrome .status::before {
  content: ""; width: 5px; height: 5px; border-radius: 999px;
  background: var(--green); box-shadow: 0 0 0 3px var(--green-veil);
}

.x-mod-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s48);
  padding: var(--s48);
  align-items: center;
}
.x-mod-row.reverse .x-mod-text { order: 2; }
.x-mod-text { display: flex; flex-direction: column; gap: var(--s16); }
.x-mod-tag {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mute);
  display: inline-flex; align-items: center; gap: 6px;
  align-self: flex-start;
}
.x-mod-tag::before { content: ""; width: 4px; height: 4px; background: var(--green); border-radius: 1px; }
.x-mod-row h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700; line-height: 1.18; letter-spacing: -0.022em;
}
.x-mod-row h3 em { color: var(--ink); border-bottom: 2px solid var(--green); padding-bottom: 1px; }
.x-mod-row p { font-size: 17px; line-height: 1.65; color: var(--mute); max-width: 52ch; }
.x-mod-features {
  display: flex; flex-direction: column; gap: 8px;
  margin-top: 4px; padding-top: var(--s12);
  border-top: 1px solid var(--hairline-l);
}
.x-mod-features li {
  font-size: 14px; color: var(--ink);
  display: flex; align-items: flex-start; gap: 10px;
  line-height: 1.45;
}
.x-mod-features .ico { width: 14px; height: 14px; flex-shrink: 0; margin-top: 3px; color: var(--forest-deep); }

.x-mod-status {
  display: flex; gap: var(--s24); flex-wrap: wrap;
  margin-top: var(--s16); padding-top: var(--s12);
  border-top: 1px dashed var(--hairline-l);
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.10em; color: var(--mute);
}
.x-mod-status span { display: inline-flex; align-items: center; gap: 6px; }
.x-mod-status .k { color: rgba(0,0,0,0.4); text-transform: uppercase; }
.x-mod-status .v { color: var(--ink); }
.x-mod-status .v.ok { color: var(--green); }

.x-mod-link {
  font-size: 13px; font-weight: 500; color: var(--ink);
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: var(--s8);
}
.x-mod-link:hover { color: var(--green); }

.x-mod-img {
  border: 1px solid var(--hairline-l); border-radius: 12px;
  overflow: hidden;
  background: var(--paper);
}
.x-mod-img img { width: 100%; height: auto; transition: transform .8s ease; }
.x-mod-panel:hover .x-mod-img img { transform: scale(1.02); }

@media (max-width: 980px) {
  .x-mod-row { grid-template-columns: 1fr; padding: var(--s32); gap: var(--s24); }
  .x-mod-row.reverse .x-mod-text { order: 1; }
}

/* ─── Depot (dark) ──────────────────────────────────────── */
.x-depot { background: var(--obsidian); color: #fff; position: relative; }
.x-depot::before {
  content: ""; position: absolute; inset: 0;
  box-shadow: inset 0 0 160px rgba(168,192,56,0.07);
  pointer-events: none;
}
.x-depot .x-head { color: #fff; }
.x-depot .x-head h2 { color: #fff; }
.x-depot .x-head h2 em { color: var(--green); }
.x-depot-image {
  border: 1px solid var(--hairline-d); border-radius: var(--r-card);
  overflow: hidden;
  margin-bottom: var(--s64);
  position: relative;
}
.x-depot-image::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,11,13,0.55));
  pointer-events: none;
}
.x-depot-image img { width: 100%; height: auto; }

.x-depot-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s32); }
.x-depot-pillar {
  border: 1px solid var(--hairline-d);
  border-radius: var(--r-card);
  padding: var(--s32);
  background: var(--graphite);
  position: relative;
}
.x-depot-pillar-tag {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green);
  display: inline-flex; align-items: center; gap: 6px;
  margin-bottom: var(--s12);
}
.x-depot-pillar-tag::before {
  content: ""; width: 6px; height: 6px; border-radius: 999px;
  background: var(--green); box-shadow: 0 0 0 4px rgba(168,192,56,0.15);
}
.x-depot-pillar h3 {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 600; line-height: 1.22;
  color: #fff;
  margin-bottom: var(--s12);
}
.x-depot-pillar h3 em { color: var(--green); border-bottom: 1px solid var(--green); }
.x-depot-pillar-lead {
  font-size: 14px; line-height: 1.55;
  color: rgba(255,255,255,0.65);
  margin-bottom: var(--s24);
  padding-bottom: var(--s24);
  border-bottom: 1px solid var(--hairline-d);
}
.x-depot-pillar-label {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: var(--s16);
}
.x-depot-mods { display: flex; flex-direction: column; gap: var(--s16); }
.x-depot-mod {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: var(--s12);
  padding: 14px;
  border: 1px solid var(--hairline-d);
  border-radius: 10px;
  background: rgba(255,255,255,0.02);
  transition: border-color .2s ease, background .2s ease;
}
.x-depot-mod:hover { border-color: var(--green); background: rgba(168,192,56,0.04); }
.x-depot-mod-num {
  font-family: var(--mono); font-size: 12px;
  color: var(--green);
  border: 1px solid var(--hairline-d);
  border-radius: 6px;
  display: inline-flex; align-items: center; justify-content: center;
  height: 24px;
}
.x-depot-mod-name {
  font-size: 14px; font-weight: 600; color: #fff;
  margin-bottom: 4px;
  display: inline-flex; align-items: center; gap: 8px;
}
.x-depot-mod-name .ico { width: 12px; height: 12px; color: var(--green); }
.x-depot-mod-body { font-size: 13px; line-height: 1.55; color: rgba(255,255,255,0.65); }

@media (max-width: 980px) {
  .x-depot-pillars { grid-template-columns: 1fr; }
}

/* ─── Video block ───────────────────────────────────────── */
.x-video {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-card);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--hairline-l);
  box-shadow: 0 0 0 0 var(--green-veil);
  transition: box-shadow .3s ease, border-color .3s ease;
}
.x-video:hover { border-color: var(--green); box-shadow: 0 0 0 8px var(--green-veil); }
.x-video img { width: 100%; height: 100%; object-fit: cover; }
.x-video::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,11,13,0) 40%, rgba(10,11,13,0.85));
}
.x-video-caption {
  position: absolute; left: var(--s32); right: var(--s32); bottom: var(--s32);
  color: #fff; z-index: 2;
}
.x-video-tag {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--green);
  margin-bottom: 10px;
}
.x-video-tag::before {
  content: ""; width: 6px; height: 6px; border-radius: 999px;
  background: var(--green); box-shadow: 0 0 0 4px rgba(168,192,56,0.18);
  animation: pulse 1.6s ease-in-out infinite;
}
.x-video-title { font-size: clamp(22px, 2.4vw, 32px); font-weight: 700; letter-spacing: -0.02em; }
.x-video-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  border-radius: 999px;
  background: rgba(255,255,255,0.96);
  color: var(--obsidian);
  display: inline-flex; align-items: center; justify-content: center;
  z-index: 2;
  box-shadow: 0 0 0 0 var(--green-glow);
  transition: box-shadow .3s ease, transform .3s ease;
}
.x-video:hover .x-video-play { box-shadow: 0 0 0 12px var(--green-veil); transform: translate(-50%, -50%) scale(1.05); }
.x-video-play svg { width: 28px; height: 28px; }

/* ─── Story ─────────────────────────────────────────────── */
.x-story { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s64); align-items: center; }
.x-story-img {
  border: 1px solid var(--hairline-l); border-radius: var(--r-card);
  overflow: hidden; aspect-ratio: 4 / 5;
}
.x-story-img img { width: 100%; height: 100%; object-fit: cover; }
.x-story-text { display: flex; flex-direction: column; gap: var(--s16); }
.x-story-text h2 { font-size: var(--t-h-lg); font-weight: 700; line-height: 1.1; letter-spacing: -0.025em; }
.x-story-text h2 em { color: var(--ink); border-bottom: 2px solid var(--green); }
.x-story-text p { font-size: 17px; line-height: 1.7; color: var(--mute); }
.x-story-text p strong { color: var(--ink); font-weight: 600; }

.x-story-quote {
  margin-top: var(--s16);
  padding: var(--s24);
  border: 1px solid var(--hairline-l);
  border-radius: var(--r-card);
  background: var(--paper);
  position: relative;
}
.x-story-quote::before {
  content: ""; position: absolute; top: -1px; left: var(--s24);
  width: 32px; height: 2px; background: var(--green);
}
.x-story-quote-text {
  font-size: 16px; font-style: italic; line-height: 1.6;
  color: var(--ink);
  display: flex; gap: 10px;
}
.x-story-quote-text::before {
  content: ""; flex-shrink: 0; margin-top: 4px;
  width: 14px; height: 14px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5'><rect x='5' y='11' width='14' height='9' rx='2'/><path d='M8 11V8a4 4 0 1 1 8 0v3'/></svg>") no-repeat center / contain;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5'><rect x='5' y='11' width='14' height='9' rx='2'/><path d='M8 11V8a4 4 0 1 1 8 0v3'/></svg>") no-repeat center / contain;
  color: var(--green);
}
.x-story-quote-attr { margin-top: var(--s16); padding-top: var(--s12); border-top: 1px solid var(--hairline-l); display: flex; flex-direction: column; gap: 2px; }
.x-story-quote-name { font-size: 14px; font-weight: 600; color: var(--ink); }
.x-story-quote-role { font-family: var(--mono); font-size: 11px; letter-spacing: 0.10em; text-transform: uppercase; color: var(--mute); }

@media (max-width: 980px) {
  .x-story { grid-template-columns: 1fr; gap: var(--s32); }
}

/* ─── Team ──────────────────────────────────────────────── */
.x-team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s24); }
.x-team-card {
  display: grid; grid-template-columns: 160px 1fr;
  gap: var(--s24); padding: var(--s24);
  border: 1px solid var(--hairline-l);
  border-radius: var(--r-card);
  background: var(--canvas);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.x-team-card:hover { border-color: var(--green); box-shadow: 0 0 0 4px var(--green-veil); }
.x-team-photo {
  aspect-ratio: 1; border-radius: 12px; overflow: hidden;
  border: 1px solid var(--hairline-l);
}
.x-team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.x-team-body { display: flex; flex-direction: column; gap: 8px; }
.x-team-body h4 { font-size: 20px; font-weight: 600; letter-spacing: -0.018em; }
.x-team-role {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #5a6b1f;
}
.x-team-bio { font-size: 15px; line-height: 1.65; color: var(--mute); }

@media (max-width: 880px) {
  .x-team-grid { grid-template-columns: 1fr; }
  .x-team-card { grid-template-columns: 120px 1fr; }
}
@media (max-width: 560px) {
  .x-team-card {
    grid-template-columns: 1fr;
    gap: var(--s16);
  }
  .x-team-photo {
    aspect-ratio: 1 / 1;
    max-width: 100%;
  }
}

/* ─── Final CTA ─────────────────────────────────────────── */
.x-cta-block {
  position: relative;
  border-radius: var(--r-card);
  overflow: hidden;
  padding: clamp(48px, 7vw, 96px) clamp(32px, 6vw, 80px);
  background: var(--obsidian); color: #fff;
  border: 1px solid var(--hairline-d);
  isolation: isolate;
}
.x-cta-bg { position: absolute; inset: 0; z-index: 0; opacity: 0.25; }
.x-cta-bg img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.1); }
.x-cta-block::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse at 80% 30%, var(--green-glow), transparent 55%),
              linear-gradient(180deg, rgba(10,11,13,0.55), rgba(10,11,13,0.9));
}
.x-cta-inner { position: relative; z-index: 2; max-width: 760px; }
.x-cta-inner h2 {
  font-size: var(--t-h-lg); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.05;
  color: #fff;
}
.x-cta-inner h2 em { color: var(--green); }
.x-cta-actions { display: flex; gap: var(--s12); margin-top: var(--s32); flex-wrap: wrap; }
.x-cta-reassure {
  margin-top: var(--s24);
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  display: inline-flex; align-items: center; gap: 10px;
}
.x-cta-reassure::before {
  content: ""; width: 6px; height: 6px; border-radius: 999px;
  background: var(--green); box-shadow: 0 0 0 4px var(--green-veil);
}

/* ─── Footer ────────────────────────────────────────────── */
.x-footer {
  background: var(--obsidian); color: #fff;
  padding: var(--s80) var(--pad-x) var(--s32);
  border-top: 1px solid var(--hairline-d);
  position: relative;
}
.x-footer::before {
  content: ""; position: absolute; inset: 0;
  box-shadow: inset 0 0 100px rgba(168,192,56,0.04);
  pointer-events: none;
}
.x-footer-inner {
  position: relative;
  max-width: var(--max-w); margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--s48);
  padding-bottom: var(--s48);
  border-bottom: 1px solid var(--hairline-d);
}
.x-footer-brand img { height: 48px; margin-bottom: var(--s16); filter: brightness(0) invert(1); }
.x-footer-brand p { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,0.55); max-width: 38ch; }
.x-footer-compliance { display: flex; gap: 10px; margin-top: var(--s16); }
.x-footer-compliance span {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  padding: 5px 9px;
  border: 1px solid var(--hairline-d);
  border-radius: 6px;
  display: inline-flex; align-items: center; gap: 6px;
}
.x-footer-compliance .ico { width: 10px; height: 10px; color: var(--green); }

.x-footer-col h5 {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green);
  margin-bottom: var(--s16);
}
.x-footer-col a, .x-footer-col span.muted {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.62);
  padding: 5px 0;
  transition: color .2s ease;
}
.x-footer-col a:hover { color: #fff; }
.x-footer-bottom {
  position: relative;
  max-width: var(--max-w); margin: 0 auto;
  padding-top: var(--s24);
  display: flex; justify-content: space-between; align-items: center;
  gap: var(--s16); flex-wrap: wrap;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.10em;
  color: rgba(255,255,255,0.45);
}
.x-footer-bottom-links { display: flex; gap: var(--s24); }
.x-footer-bottom-links a { color: rgba(255,255,255,0.62); }
.x-footer-bottom-links a:hover { color: #fff; }
.x-footer-status {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--green);
}
.x-footer-status::before {
  content: ""; width: 6px; height: 6px; border-radius: 999px;
  background: var(--green); box-shadow: 0 0 0 4px var(--green-veil);
  animation: pulse 1.6s ease-in-out infinite;
}

@media (max-width: 880px) {
  .x-footer-inner { grid-template-columns: 1fr 1fr; }
  .x-footer-brand { grid-column: span 2; }
}
@media (max-width: 560px) {
  .x-footer-inner { grid-template-columns: 1fr; text-align: center; }
  .x-footer-brand { grid-column: auto; }
  .x-footer-brand img { margin-inline: auto; }
  .x-footer-brand p { margin-inline: auto; font-size: 15px; }
  .x-footer-compliance { justify-content: center; flex-wrap: wrap; }
  .x-footer-col a, .x-footer-col span.muted { font-size: 15px; }
  .x-footer-col h5 { font-size: 12px; }
  .x-footer-bottom {
    justify-content: center; text-align: center;
    font-size: 12px;
  }
  .x-footer-bottom-links { justify-content: center; flex-wrap: wrap; }
  .x-footer-bottom-links a { font-size: 14px; }
}

/* ─── Reveal animation ──────────────────────────────────── */
.r-fade { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.r-fade.in { opacity: 1; transform: none; }
.r-fade.d1 { transition-delay: 80ms; }
.r-fade.d2 { transition-delay: 160ms; }
.r-fade.d3 { transition-delay: 240ms; }
.r-fade.d4 { transition-delay: 320ms; }

@media (prefers-reduced-motion: reduce) {
  .r-fade { opacity: 1; transform: none; transition: none; }
  .x-hero-panel-dot::before, .x-nav-logo .live-dot,
  .x-marq-head .label::before, .x-video-tag::before,
  .x-footer-status::before { animation: none; }
}

.x-hero-panel { display: none; }

/* ─── Utility ───────────────────────────────────────────── */
.peach { background: var(--paper); }
.cloud { background: var(--paper); }
