/* =========================================================
   ORION'S BRIDGE — STYLES
   Capital-markets fintech aesthetic: dark navy + cyan accents,
   editorial serif display, distinctive sans body.
   ========================================================= */

/* ---------------------------------------------------------
   DOLLAR-SIGN FIX
   Playfair Display draws the $ glyph with a "double-bar"
   stroke (typographic feature of that typeface). We force
   any $ rendered in a Playfair-styled element to fall back
   to a single-bar sans-serif glyph by mapping U+0024 to a
   system sans-serif via @font-face + unicode-range.
   --------------------------------------------------------- */
@font-face {
  font-family: 'OB-Dollar-Fix';
  src: local('Geist'),
       local('Inter'),
       local('Helvetica Neue'),
       local('Helvetica'),
       local('Arial'),
       local('Liberation Sans'),
       local('DejaVu Sans');
  unicode-range: U+0024; /* $ only */
  font-display: swap;
}

:root {
  /* Brand colors — dark navy backbone */
  --navy-deepest: #050E1F;
  --navy-deep:    #0A1628;
  --navy-mid:     #142845;
  --navy-light:   #1E365A;
  --navy-line:    #243F66;

  /* Mid-blue tones for variety */
  --blue-steel:   #3D5C82;
  --blue-mid:     #5B7CA8;
  --blue-soft:    #8AA8CC;

  /* Light blue palette (for light sections) */
  --blue-paper:   #F0F5FB;
  --blue-mist:    #DDE7F2;
  --blue-haze:    #C0D2E5;
  --blue-stone:   #6B82A0;

  /* Cyan accents */
  --cyan:         #4FD8E5;
  --cyan-bright:  #6FEAF5;
  --cyan-dark:    #2BA8B5;
  --cyan-deep:    #1B6F88;
  --teal:         #19E2D8;
  --gold:         #F5B842;

  /* Text colors — dark sections */
  --text-primary:   #F5F8FB;
  --text-secondary: #B8C5D6;
  --text-tertiary:  #7A8AA0;
  --text-muted:     #5A6B82;

  /* Text colors — light sections */
  --ink-primary:    #0A1628;
  --ink-secondary:  #2D4566;
  --ink-tertiary:   #5B7CA8;
  --ink-muted:      #8AA8CC;

  --font-display: 'OB-Dollar-Fix', 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Geist', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-mono:    'Geist Mono', 'SF Mono', Consolas, monospace;

  --max-width:    1600px;
  --gutter:       clamp(1.25rem, 4vw, 3rem);
  --section-pad:  clamp(4rem, 9vw, 7.5rem);
  --radius-sm:    4px;
  --radius-md:    10px;
  --radius-lg:    16px;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-y: scroll; }

body {
  font-family: var(--font-body);
  /* One continuous gradient that flows through the whole page —
     subtle navy-to-blue tonal journey, never any hard cuts */
  background:
    linear-gradient(180deg,
      var(--navy-deep)  0%,
      #0E1E36           12%,
      #122846           28%,
      #0F2240           45%,
      #14294A           62%,
      #112443           78%,
      var(--navy-deep)  92%,
      var(--navy-deepest) 100%
    );
  background-attachment: fixed;
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Subtle starfield + blue atmospheric depth */
body::before {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(1px 1px at 23% 14%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 67% 28%, rgba(79,216,229,0.35), transparent),
    radial-gradient(1.5px 1.5px at 84% 67%, rgba(255,255,255,0.25), transparent),
    radial-gradient(1px 1px at 12% 78%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1px 1px at 45% 88%, rgba(79,216,229,0.2), transparent),
    radial-gradient(1.5px 1.5px at 78% 12%, rgba(255,255,255,0.2), transparent),
    radial-gradient(1px 1px at 33% 42%, rgba(255,255,255,0.15), transparent),
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(91,124,168,0.1), transparent 65%),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(79,216,229,0.04), transparent 70%);
  background-size: 200% 200%;
  pointer-events: none;
  z-index: 0;
  animation: drift 60s linear infinite;
}

@keyframes drift {
  0%   { background-position: 0% 0%; }
  50%  { background-position: 30% 20%; }
  100% { background-position: 0% 0%; }
}

main, header, footer { position: relative; z-index: 2; }

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.022em;
  color: var(--text-primary);
}
h1 { font-size: clamp(2.5rem, 5.8vw, 4.75rem); font-weight: 300; letter-spacing: -0.035em; }
h2 { font-size: clamp(1.9rem, 4.2vw, 3.25rem); font-weight: 400; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.85rem); }
h4 { font-size: 1.1rem; font-family: var(--font-body); font-weight: 500; letter-spacing: -0.005em; }

p { color: var(--text-secondary); font-size: 1rem; }

.italic { font-style: italic; font-weight: 300; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: '';
  width: 22px; height: 1px;
  background: var(--cyan);
}

.accent {
  background: linear-gradient(135deg, var(--cyan-bright) 0%, var(--cyan) 50%, var(--teal) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  font-weight: 300;
}

/* Layout */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section { padding: var(--section-pad) 0; position: relative; }

.section-header {
  max-width: 760px;
  margin-bottom: 4rem;
}
.section-header.centered {
  margin-left: auto; margin-right: auto;
  text-align: center;
}
.section-header.centered .eyebrow { justify-content: center; }
.section-header p {
  font-size: 1.075rem;
  color: var(--text-secondary);
  margin-top: 1.25rem;
  max-width: 640px;
}
.section-header.centered p { margin-left: auto; margin-right: auto; }

/* =========================================================
   PER-SECTION ATMOSPHERICS
   No hard section backgrounds — body gradient flows underneath.
   Each section adds a SOFT radial glow, positioned differently,
   so the eye gets variation without any harsh cut lines.
   ========================================================= */

/* Market — gentle steel-blue glow on the left */
#market::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 15% 50%, rgba(91,124,168,0.12), transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 30%, rgba(79,216,229,0.05), transparent 65%);
  pointer-events: none;
  z-index: 0;
}
#market > * { position: relative; z-index: 1; }

/* Platform — cyan glow centered */
#platform::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 30%, rgba(79,216,229,0.08), transparent 65%);
  pointer-events: none;
  z-index: 0;
}
#platform > * { position: relative; z-index: 1; }

/* Advantage — warm gold glow bottom-right for variety */
#advantage::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 85% 70%, rgba(245,184,66,0.05), transparent 65%),
    radial-gradient(ellipse 60% 50% at 15% 30%, rgba(91,124,168,0.1), transparent 65%);
  pointer-events: none;
  z-index: 0;
}
#advantage > * { position: relative; z-index: 1; }

/* Efficiency — subtle steel-blue ambient */
.efficiency::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(91,124,168,0.1), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.efficiency > * { position: relative; z-index: 1; }

/* Pricing — soft brightening so it feels lifted but never harsh */
#pricing::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 50% 40%, rgba(91,124,168,0.16), transparent 65%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(79,216,229,0.05), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
#pricing > * { position: relative; z-index: 1; }

/* Team — soft cyan glow on the right */
#team::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 80% 50%, rgba(79,216,229,0.07), transparent 65%);
  pointer-events: none;
  z-index: 0;
}
#team > * { position: relative; z-index: 1; }

/* Light section utility kept for backwards compatibility but now muted */
.section-light, .section-dark { background: transparent; }

/* =========================================================
   NAVIGATION
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  background: rgba(5, 14, 31, 0.6);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: all 0.3s var(--ease-out);
}
.nav.scrolled {
  border-bottom-color: var(--navy-line);
  padding: 0.75rem 0;
  background: rgba(5, 14, 31, 0.85);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo { display: flex; align-items: center; }
.nav-logo img {
  height: 48px;
  width: auto;
  display: block;
  transition: opacity 0.2s;
}
.nav-logo:hover img { opacity: 0.9; }

.nav-links {
  display: flex;
  gap: 2.25rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 400;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--cyan); }

.nav-cta {
  background: linear-gradient(135deg, #1961A0 0%, #1A7DB0 40%, #1A9490 70%, #1A8B7B 100%);
  background-size: 200% 200%;
  background-position: 0% 50%;
  color: #FFFFFF !important;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
  box-shadow: 0 4px 16px rgba(25,97,160,0.3), 0 0 0 1px rgba(26,139,123,0.2);
  transition: all 0.4s ease, background-position 0.6s ease !important;
}
.nav-cta:hover {
  background-position: 100% 50%;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(25,97,160,0.45), 0 0 0 1px rgba(26,139,123,0.4);
  color: #FFFFFF !important;
}

.mobile-toggle {
  display: none;
  background: none; border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: 0.5rem;
}

@media (max-width: 880px) {
  html body header.nav nav ul.nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: #050E1F;
    background-color: #050E1F;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
    z-index: 998;
    isolation: isolate;
    overflow-y: auto;
  }
  html body header.nav nav ul.nav-links.open { transform: translateX(0); }
  .nav-links a {
    font-size: 1.1rem;
    color: var(--text-primary);
  }
  .mobile-toggle { display: block; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  padding-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

/* Canvas sits behind everything as the animated background */
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  animation: canvasFadeIn 2s ease-out 0.5s forwards;
}
@keyframes canvasFadeIn { to { opacity: 1; } }

/* Ensure all hero content sits above the canvas */
.hero-inner,
.hero-stats-wrap { position: relative; z-index: 1; }
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 30%, rgba(79,216,229,0.13), transparent 65%),
    radial-gradient(ellipse 80% 40% at 80% 75%, rgba(245,184,66,0.04), transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}

.hero-logo-wrap {
  position: relative;
  width: 100%;
  max-width: 620px;
  margin: 0 auto 2rem;
  aspect-ratio: 1600 / 620;
}

/* Text layer — always visible, fades in immediately */
.hero-logo-text {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}

/* Arc layer — stacked exactly on top, clips in left-to-right over 3 seconds */
.hero-logo-arc {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: block;
  object-fit: contain;
  clip-path: inset(0 100% 0 0);
  animation: arcReveal 3s cubic-bezier(0.25, 0.1, 0.25, 1) 0.7s forwards;
}
@keyframes arcReveal {
  from { clip-path: inset(0 100% 0 0); }
  to   { clip-path: inset(0 0% 0 0); }
}

/* Star glows — fire as arc clip passes each star's x position.
   Arc: 3s starting at 0.7s.
   Left  28.6%: 0.7 + 3.0 × 0.286 = 1.56s
   Center 49.9%: 0.7 + 3.0 × 0.499 = 2.20s
   Right  71.1%: 0.7 + 3.0 × 0.711 = 2.83s */
.star-glow {
  position: absolute;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none;
  background: radial-gradient(circle,
    rgba(255,255,255,0.95) 0%,
    rgba(160,235,255,0.5)  25%,
    rgba(79,216,229,0.15)  55%,
    rgba(79,216,229,0)     75%);
  mix-blend-mode: screen;
  filter: blur(2px);
  opacity: 0;
}
.star-glow--left {
  top: 35.6%; left: 28.6%;
  width: 70px; height: 70px;
  animation: starIgnite 0.7s ease-out 1.56s forwards,
             starPulse  3.5s linear 2.26s infinite;
}
.star-glow--center {
  top: 18.2%; left: 49.9%;
  width: 100px; height: 100px;
  animation: starIgnite 0.7s ease-out 2.20s forwards,
             starPulse  4s linear 2.90s infinite;
}
.star-glow--right {
  top: 35.7%; left: 71.1%;
  width: 60px; height: 60px;
  animation: starIgnite 0.7s ease-out 2.83s forwards,
             starPulse  3s linear 3.53s infinite;
}
@keyframes starIgnite {
  0%   { opacity: 0; transform: translate(-50%,-50%) scale(0); }
  50%  { opacity: 1; transform: translate(-50%,-50%) scale(1.6); }
  80%  { opacity: 0.8; transform: translate(-50%,-50%) scale(1); }
  100% { opacity: 0.5; transform: translate(-50%,-50%) scale(1); }
}
@keyframes starPulse {
  0%   { opacity: 0.5; transform: translate(-50%,-50%) scale(1); }
  50%  { opacity: 0;   transform: translate(-50%,-50%) scale(0.7); }
  100% { opacity: 0.5; transform: translate(-50%,-50%) scale(1); }
}

@media (max-width: 680px) {
  .hero-logo-wrap {
    max-width: 85vw;
  }
}

.hero h1 {
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.4s forwards;
}
.hero .eyebrow {
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.2s forwards;
}
.hero-sub {
  font-size: clamp(1.05rem, 1.55vw, 1.3rem);
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 auto 3rem;
  line-height: 1.6;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.6s forwards;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.8s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--navy-line);
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 1.1s forwards;
}
.hero-stat {
  text-align: center;
  padding: 0 1rem;
  border-right: 1px solid var(--navy-line);
}
.hero-stat:last-child { border-right: none; }

.hero-stat-num {
  font-family: 'Geist', sans-serif;
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
  font-weight: 300;
  color: var(--cyan);
  letter-spacing: -0.025em;
  margin-bottom: 0.4rem;
  display: block;
}
.hero-stat-label {
  font-size: 0.72rem;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-family: var(--font-mono);
}

@media (max-width: 700px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 1.75rem 0; padding-top: 2rem; }
  .hero-stat:nth-child(2) { border-right: none; }
  .hero-stat:nth-child(1), .hero-stat:nth-child(2) { padding-bottom: 1.5rem; border-bottom: 1px solid var(--navy-line); }
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.005em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s var(--ease-out);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, #1961A0 0%, #1A7DB0 40%, #1A9490 70%, #1A8B7B 100%);
  background-size: 200% 200%;
  background-position: 0% 50%;
  color: #FFFFFF;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
  box-shadow: 0 4px 20px rgba(25,97,160,0.3), 0 0 0 1px rgba(26,139,123,0.2);
  transition: all 0.4s ease, background-position 0.6s ease;
}
.btn-primary:hover {
  background-position: 100% 50%;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(25,97,160,0.45), 0 0 0 1px rgba(26,139,123,0.4);
  color: #FFFFFF;
}
.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--navy-line);
}
.btn-secondary:hover {
  border-color: var(--cyan);
  background: rgba(79,216,229,0.06);
  transform: translateY(-2px);
}
.btn-arrow { transition: transform 0.2s; display: inline-block; }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* =========================================================
   MARKET / PROBLEM
   ========================================================= */
.market-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--navy-line);
  border: 1px solid var(--navy-line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.market-cell {
  background: var(--navy-deep);
  padding: 2rem 1.75rem;
  position: relative;
  transition: background 0.3s;
}
.market-cell:hover { background: var(--navy-mid); }
.market-cell-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-tertiary);
  margin-bottom: 0.875rem;
}
.market-cell-num {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: -0.025em;
  margin-bottom: 0.6rem;
  line-height: 1;
}
.market-cell-num .accent {
  font-size: 0.65em;
  vertical-align: baseline;
}
.market-cell-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.55;
}
.market-footnote {
  font-size: 0.85rem;
  color: var(--text-tertiary);
  margin-top: 2rem;
  font-style: italic;
}

/* =========================================================
   PLATFORM / 3 LAYERS
   ========================================================= */
.layers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 980px) {
  .layers-grid { grid-template-columns: 1fr; }
}

.layer-card {
  background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy-deep) 100%);
  border: 1px solid var(--navy-line);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  transition: all 0.4s var(--ease-out);
}
.layer-card:hover {
  border-color: rgba(79,216,229,0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(5, 14, 31, 0.5);
}

.layer-card--featured {
  background: linear-gradient(180deg, rgba(79,216,229,0.08) 0%, var(--navy-mid) 60%, var(--navy-deep) 100%);
  border-color: rgba(79,216,229,0.3);
}

.layer-num {
  position: absolute;
  top: 2rem; right: 2rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--text-tertiary);
}
.layer-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: rgba(79,216,229,0.08);
  border: 1px solid rgba(79,216,229,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
  margin-bottom: 1.5rem;
}
.layer-icon svg { width: 30px; height: 30px; }

.layer-card h3 {
  margin-bottom: 0.4rem;
}
.layer-tagline {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cyan);
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--navy-line);
}

.layer-features {
  list-style: none;
}
.layer-features li {
  position: relative;
  padding: 0.6rem 0 0.6rem 1.5rem;
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.5;
  border-bottom: 1px dashed rgba(31,51,84,0.6);
}
.layer-features li:last-child { border-bottom: none; }
.layer-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 1.05rem;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}

/* =========================================================
   ADVANTAGE / COMPARISON
   ========================================================= */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 4rem;
}
@media (max-width: 820px) { .compare-grid { grid-template-columns: 1fr; } }

.compare-card {
  border: 1px solid var(--navy-line);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy-deep) 100%);
  position: relative;
}
.compare-card--featured {
  background: linear-gradient(180deg, rgba(79,216,229,0.1) 0%, var(--navy-mid) 60%, var(--navy-deep) 100%);
  border-color: rgba(79,216,229,0.4);
  box-shadow: 0 0 0 1px rgba(79,216,229,0.12) inset, 0 20px 48px rgba(5, 14, 31, 0.4);
}

.compare-tag, .compare-tag-featured {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 1rem;
  display: inline-block;
}
.compare-tag { color: var(--text-tertiary); }
.compare-tag-featured {
  color: var(--navy-deepest);
  background: var(--cyan);
  padding: 0.3rem 0.7rem;
  border-radius: 3px;
  font-weight: 600;
}

.compare-price {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-bottom: 2rem;
}
.compare-card--featured .compare-price { color: var(--cyan-bright); }

.compare-price-sub {
  font-size: 0.95rem;
  color: var(--text-tertiary);
  font-family: var(--font-body);
  font-weight: 400;
  margin-left: 0.4rem;
}

.compare-list { list-style: none; }
.compare-list li {
  position: relative;
  padding: 0.85rem 0 0.85rem 2rem;
  font-size: 0.93rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--navy-line);
}
.compare-list li:last-child { border-bottom: none; }
.compare-list li::before {
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
}
.compare-list li.neg::before {
  content: '\2715';
  background: rgba(220,80,80,0.12);
  color: rgba(220,120,120,0.9);
}
.compare-list li.pos::before {
  content: '\2713';
  background: rgba(79,216,229,0.15);
  color: var(--cyan);
}

/* Savings strip */
.savings-strip {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
  padding: 3rem 2rem;
  border: 1px solid var(--navy-line);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
}
.saving { text-align: center; }
.saving-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  letter-spacing: -0.035em;
  background: linear-gradient(135deg, var(--cyan-bright) 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.4rem;
  line-height: 1;
}
.saving-num span {
  font-size: 0.5em;
  vertical-align: baseline;
  margin-left: 0.1em;
}
.saving-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  max-width: 220px;
  margin: 0 auto;
  line-height: 1.45;
}
.saving-divider {
  width: 1px;
  height: 80px;
  background: var(--navy-line);
}
@media (max-width: 820px) {
  .savings-strip { grid-template-columns: 1fr; padding: 2.5rem 1.5rem; gap: 2rem; }
  .saving-divider { width: 60%; height: 1px; margin: 0 auto; }
}

/* =========================================================
   EFFICIENCY / TIME & COST
   ========================================================= */
.efficiency-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 980px) {
  .efficiency-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

.efficiency-rows {
  border-top: 1px solid var(--navy-line);
}
.eff-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--navy-line);
}
.eff-row-key {
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.eff-row-from {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-tertiary);
  text-decoration: line-through;
  text-decoration-color: rgba(220,120,120,0.5);
}
.eff-row-arrow {
  color: var(--cyan);
  font-size: 1.2rem;
}
.eff-row-to {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--cyan-bright);
  letter-spacing: -0.01em;
}
@media (max-width: 700px) {
  .eff-row {
    grid-template-columns: 1fr auto 1fr;
    grid-template-areas:
      "key key key"
      "from arrow to";
    gap: 0.5rem 0.75rem;
  }
  .eff-row-key { grid-area: key; font-weight: 500; color: var(--text-primary); }
  .eff-row-from { grid-area: from; }
  .eff-row-arrow { grid-area: arrow; }
  .eff-row-to { grid-area: to; }
}

/* =========================================================
   PRICING
   ========================================================= */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 4rem;
}
@media (max-width: 1024px) { .tier-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px)  { .tier-grid { grid-template-columns: 1fr; } }

.tier-card {
  background: var(--navy-deep);
  border: 1px solid var(--navy-line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.3s var(--ease-out);
}
.tier-card:hover {
  transform: translateY(-4px);
  border-color: rgba(79,216,229,0.3);
}
.tier-card--featured {
  background: linear-gradient(180deg, rgba(79,216,229,0.07) 0%, var(--navy-deep) 100%);
  border-color: rgba(79,216,229,0.4);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4);
}
.tier-flag {
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  background: var(--cyan);
  color: var(--navy-deepest);
  padding: 0.3rem 0.85rem;
  border-radius: 3px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tier-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.4rem;
  letter-spacing: -0.015em;
}
.tier-price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}
.tier-card--featured .tier-price { color: var(--cyan-bright); }
.tier-price span {
  font-size: 0.95rem;
  color: var(--text-tertiary);
  font-family: var(--font-body);
  font-weight: 400;
  margin-left: 0.2rem;
}
.tier-monthly {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-tertiary);
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--navy-line);
}
.tier-features {
  list-style: none;
  margin-bottom: 2rem;
  flex: 1;
}
.tier-features li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.5rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
}
.tier-features li::before {
  content: '\2713';
  position: absolute;
  left: 0; top: 0.55rem;
  color: var(--cyan);
  font-weight: 600;
}
.btn-tier {
  width: 100%;
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--navy-line);
  justify-content: center;
}
.btn-tier:hover {
  border-color: var(--cyan);
  background: rgba(79,216,229,0.06);
}
.btn-tier.featured {
  background: var(--cyan);
  color: var(--navy-deepest);
  border-color: var(--cyan);
}
.btn-tier.featured:hover {
  background: var(--cyan-bright);
  border-color: var(--cyan-bright);
}

.pricing-extras {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 700px) { .pricing-extras { grid-template-columns: 1fr; } }

.pricing-extra {
  border: 1px solid var(--navy-line);
  border-left: 2px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  background: var(--navy-deep);
}
.pricing-extra-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.pricing-extra-value {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}
.pricing-extra p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* =========================================================
   TEAM
   ========================================================= */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 980px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .team-grid { grid-template-columns: 1fr; } }

.team-card {
  background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy-deep) 100%);
  border: 1px solid var(--navy-line);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  transition: all 0.3s var(--ease-out);
  display: flex;
  flex-direction: column;
}
.team-card:hover {
  border-color: rgba(79,216,229,0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(5, 14, 31, 0.5);
}
.team-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--navy-deepest);
}
.team-photo.team-photo--light {
  background: #FFFFFF;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-out);
}
.team-card:hover .team-photo img {
  transform: scale(1.04);
}
.team-photo::after {
  /* Subtle gradient at the bottom of the photo for visual depth into the card */
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 30%;
  background: linear-gradient(180deg, transparent 0%, rgba(20, 40, 69, 0.4) 100%);
  pointer-events: none;
}
.team-body {
  padding: 1.5rem 1.5rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.team-card h4 {
  margin-bottom: 0.4rem;
  font-size: 1.2rem;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.015em;
}
.team-role {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cyan);
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--navy-line);
}
.team-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.team-tags span {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.65rem;
  border-radius: 3px;
  background: rgba(79,216,229,0.08);
  color: var(--cyan);
  border: 1px solid rgba(79,216,229,0.15);
}

/* =========================================================
   FINAL CTA
   ========================================================= */
.final-cta {
  position: relative;
  background: transparent;
  text-align: center;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(79,216,229,0.14), transparent 65%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(91,124,168,0.1), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.final-cta > * { position: relative; z-index: 1; }
.final-cta-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.final-cta .eyebrow { justify-content: center; }
.final-cta h2 { margin-bottom: 1.25rem; }
.final-cta > .container > .final-cta-inner > p {
  font-size: 1.05rem;
  color: var(--text-secondary);
}

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  background: linear-gradient(180deg, transparent 0%, rgba(5, 14, 31, 0.5) 30%, var(--navy-deepest) 100%);
  border-top: 1px solid rgba(36, 63, 102, 0.4);
  padding: 4rem 0 2rem;
  position: relative;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 760px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}
.footer-brand img { height: 44px; margin-bottom: 1rem; }
.footer-brand p {
  font-size: 0.92rem;
  color: var(--text-tertiary);
  font-style: italic;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 580px) { .footer-cols { grid-template-columns: 1fr 1fr; } }
.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--text-tertiary);
  margin-bottom: 1rem;
  font-weight: 500;
}
.footer-col a {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.92rem;
  padding: 0.35rem 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--cyan); }

.footer-bottom {
  border-top: 1px solid var(--navy-line);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.footer-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan) !important;
}

/* =========================================================
   MODALS
   ========================================================= */
.modal {
  position: fixed; inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  overflow-y: auto;
}
.modal.open {
  display: flex;
  animation: modalFade 0.3s var(--ease-out);
}
@keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }

.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(5, 14, 31, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.modal-panel {
  position: relative;
  width: 100%;
  max-width: 640px;
  background: var(--navy-deep);
  border: 1px solid var(--navy-line);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
  max-height: calc(100vh - 3rem);
  overflow-y: auto;
  animation: modalSlide 0.4s var(--ease-out);
}
@keyframes modalSlide {
  from { transform: translateY(20px) scale(0.98); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  width: 36px; height: 36px;
  background: transparent;
  border: 1px solid var(--navy-line);
  color: var(--text-secondary);
  font-size: 1.4rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  line-height: 1;
}
.modal-close:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.modal h3 { margin-bottom: 0.5rem; }
.modal-sub {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

@media (max-width: 580px) {
  .modal-panel { padding: 2rem 1.5rem; }
}

/* =========================================================
   FORMS
   ========================================================= */
.ob-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
@media (max-width: 580px) { .form-row { grid-template-columns: 1fr; } }

.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
}
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--navy-deepest);
  border: 1px solid var(--navy-line);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.9rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--cyan);
  background: var(--navy-mid);
  box-shadow: 0 0 0 3px rgba(79,216,229,0.1);
}
.form-field textarea {
  resize: vertical;
  min-height: 100px;
  font-family: var(--font-body);
}
.form-field select { cursor: pointer; }

.form-submit {
  margin-top: 0.5rem;
  width: 100%;
  justify-content: center;
}
.form-fallback {
  font-size: 0.85rem;
  color: var(--text-tertiary);
  text-align: center;
  margin-top: 0.5rem;
}
.form-fallback a {
  color: var(--cyan);
  text-decoration: none;
}
.form-fallback a:hover { text-decoration: underline; }

/* =========================================================
   TOAST
   ========================================================= */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(150%);
  background: var(--navy-deep);
  border: 1px solid var(--cyan);
  color: var(--text-primary);
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(79,216,229,0.2);
  z-index: 300;
  transition: transform 0.4s var(--ease-out);
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast svg { color: var(--cyan); flex-shrink: 0; }

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
[data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* =========================================================
   MULTI-PAGE EXTENSIONS
   ========================================================= */

/* Active nav state — current page link */
.nav-links a.active {
  color: var(--cyan);
  position: relative;
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -8px; left: 0; right: 0;
  height: 1px;
  background: var(--cyan);
}
@media (max-width: 880px) {
  .nav-links a.active::after { display: none; }
}

/* Page hero — used on Advantage / Pricing / Team / Contact */
.page-hero {
  padding-top: clamp(8rem, 16vw, 11rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  text-align: center;
  position: relative;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 30%, rgba(79,216,229,0.1), transparent 65%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(91,124,168,0.08), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero .eyebrow { justify-content: center; margin-bottom: 1.5rem; }
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin-bottom: 1.25rem;
}
.page-hero p {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Spots-left badge */
.spots-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.95rem;
  border-radius: 100px;
  background: rgba(245,184,66,0.1);
  border: 1px solid rgba(245,184,66,0.3);
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
}
.spots-badge::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.3); }
}

/* "Why Orion's Bridge" 4-up benefit grid for home page */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
@media (max-width: 980px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .why-grid { grid-template-columns: 1fr; } }

.why-card {
  background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy-deep) 100%);
  border: 1px solid var(--navy-line);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  transition: all 0.3s var(--ease-out);
}
.why-card:hover {
  border-color: rgba(79,216,229,0.4);
  transform: translateY(-3px);
}
.why-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: rgba(79,216,229,0.08);
  border: 1px solid rgba(79,216,229,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
  margin-bottom: 1.25rem;
}
.why-icon svg { width: 22px; height: 22px; }
.why-card h4 {
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}
.why-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* FAQ accordion */
.faq {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--navy-line);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-primary);
  text-align: left;
  padding: 1.5rem 3rem 1.5rem 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--cyan); }
.faq-question::after {
  content: '+';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--cyan);
  font-weight: 300;
  transition: transform 0.3s var(--ease-out);
}
.faq-item.open .faq-question::after { transform: translateY(-50%) rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}
.faq-answer-inner {
  padding: 0 0 1.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 720px;
}
.faq-item.open .faq-answer { max-height: 600px; }

/* Use-cases / scenarios on Advantage page */
.scenarios {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 980px) { .scenarios { grid-template-columns: 1fr; } }

.scenario {
  background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy-deep) 100%);
  border: 1px solid var(--navy-line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: all 0.3s var(--ease-out);
}
.scenario:hover {
  border-color: rgba(79,216,229,0.4);
  transform: translateY(-3px);
}
.scenario-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--cyan);
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--navy-line);
}
.scenario h3 {
  font-size: 1.3rem;
  margin-bottom: 0.85rem;
}
.scenario p {
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Contact page two-column layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  max-width: 1080px;
  margin: 0 auto;
  padding-top: 1rem;
}
@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}
.contact-info h3 {
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
}
.contact-info p {
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
  line-height: 1.65;
  font-size: 0.98rem;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--navy-line);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: rgba(79,216,229,0.08);
  border: 1px solid rgba(79,216,229,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
}
.contact-info-item-icon svg { width: 16px; height: 16px; }
.contact-info-item-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--text-tertiary);
  margin-bottom: 0.2rem;
}
.contact-info-item-value {
  color: var(--text-primary);
  font-size: 0.95rem;
}
.contact-info-item-value a {
  color: var(--cyan);
  text-decoration: none;
}
.contact-info-item-value a:hover { text-decoration: underline; }

.contact-form-card {
  background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy-deep) 100%);
  border: 1px solid var(--navy-line);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
@media (max-width: 580px) {
  .contact-form-card { padding: 2rem 1.5rem; }
}

/* Form-type radio toggle on contact page */
.form-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  background: var(--navy-deepest);
  border: 1px solid var(--navy-line);
  border-radius: var(--radius-md);
  padding: 0.35rem;
  margin-bottom: 1.5rem;
}
.form-toggle input { display: none; }
.form-toggle label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1rem;
  border-radius: 5px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: all 0.2s var(--ease-out);
  font-weight: 500;
}
.form-toggle input:checked + label {
  background: var(--cyan);
  color: var(--navy-deepest);
}

/* Mission / values block */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 880px) { .values-grid { grid-template-columns: 1fr; } }
.value-card {
  padding: 2rem 0;
  border-top: 1px solid var(--navy-line);
}
.value-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: var(--cyan);
  margin-bottom: 1rem;
}
.value-card h4 {
  font-size: 1.25rem;
  font-family: var(--font-display);
  font-weight: 400;
  margin-bottom: 0.85rem;
  letter-spacing: -0.015em;
}
.value-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Highlight stat callouts on About page */
.highlight-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--navy-line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy-deep) 100%);
  margin: 4rem 0;
  overflow: hidden;
}
@media (max-width: 720px) { .highlight-stats { grid-template-columns: 1fr; } }
.highlight-stat {
  padding: 2.5rem 2rem;
  text-align: center;
  border-right: 1px solid var(--navy-line);
}
.highlight-stat:last-child { border-right: none; }
@media (max-width: 720px) {
  .highlight-stat { border-right: none; border-bottom: 1px solid var(--navy-line); }
  .highlight-stat:last-child { border-bottom: none; }
}
.highlight-stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--cyan);
  margin-bottom: 0.5rem;
  line-height: 1;
}
.highlight-stat-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--text-tertiary);
}

/* Toast error variant */
.toast.error {
  border-color: #FF7A7A;
}
.toast.error svg { color: #FF7A7A; }

/* =========================================================
   INTRO VIDEO OVERLAY
   ========================================================= */
#intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  opacity: 1;
  transition: opacity 1.8s ease;
  width: 100vw;
  height: 100vh;
}
#intro-overlay.fade-out { opacity: 0; pointer-events: none; }

#intro-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  #intro-video {
    object-fit: contain;
  }
}

/* Lock page layout during intro — use visibility so no reflow occurs */
body.intro-active {
  overflow: hidden;
}
body.intro-active .nav,
body.intro-active main,
body.intro-active footer {
  opacity: 0;
  visibility: hidden;
}
/* Page fades in after overlay has started fading */
body.intro-done .nav,
body.intro-done main,
body.intro-done footer {
  opacity: 1;
  visibility: visible;
  transition: opacity 1.4s ease 0.5s, visibility 0s linear 0.5s;
}

/* Tagline over video — removed, not needed */

/* Skip button */
#intro-skip {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 3;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.6);
  font-family: 'Geist', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
}
#intro-skip:hover {
  background: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.9);
}

/* =========================================================
   INVESTOR UPDATES PAGE
   ========================================================= */
.update-featured {
  border: 1px solid rgba(79, 216, 229, 0.2);
  border-radius: var(--radius-lg);
  padding: 3rem;
  background: linear-gradient(135deg, rgba(15, 28, 51, 0.5), rgba(10, 22, 40, 0.5));
  position: relative;
  overflow: hidden;
}
.update-featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, #1961A0 0%, #1A8B7B 100%);
}
.update-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.update-tag {
  font-family: 'Geist Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(79, 216, 229, 0.1);
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  border: 1px solid rgba(79, 216, 229, 0.25);
}
.update-date {
  font-family: 'Geist Mono', monospace;
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.update-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.update-summary {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 720px;
}
.update-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0 2.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.update-highlight {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
}
.highlight-num {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--cyan);
  line-height: 1;
}
.highlight-label {
  font-family: 'Geist Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.update-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 700px) {
  .update-featured { padding: 2rem 1.5rem; }
  .update-highlights { grid-template-columns: 1fr; gap: 1rem; padding: 1rem 0; }
}

/* Update list (archive) */
.update-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.update-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 1.5rem 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  background: rgba(15, 28, 51, 0.3);
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.25s var(--ease-out);
}
.update-row:hover {
  border-color: rgba(79, 216, 229, 0.3);
  background: rgba(15, 28, 51, 0.6);
  transform: translateY(-2px);
}
.update-row-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 140px;
}
.update-row-date {
  font-family: 'Geist Mono', monospace;
  font-size: 0.85rem;
  color: var(--cyan);
  letter-spacing: 0.04em;
}
.update-row-type {
  font-family: 'Geist Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.update-row-title {
  font-weight: 500;
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}
.update-row-summary {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.5;
}
.update-row-action {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--cyan);
  font-family: 'Geist Mono', monospace;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@media (max-width: 800px) {
  .update-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .update-row-action { justify-self: start; }
}

/* =========================================================
   NVIDIA INCEPTION BADGE
   ========================================================= */
.nvidia-strip {
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(180deg, rgba(15, 28, 51, 0.3), rgba(10, 22, 40, 0.3));
}
.nvidia-strip-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}

/* Option B — badge floats with soft glow halo, no hard box */
.nvidia-badge-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  filter: drop-shadow(0 0 18px rgba(118, 185, 0, 0.25))
          drop-shadow(0 0 40px rgba(118, 185, 0, 0.10));
  transition: filter 0.4s ease;
}
.nvidia-badge-card:hover {
  filter: drop-shadow(0 0 24px rgba(118, 185, 0, 0.38))
          drop-shadow(0 0 56px rgba(118, 185, 0, 0.16));
}
.nvidia-badge-img {
  width: 200px;
  height: auto;
  display: block;
  border-radius: 6px;
}

.nvidia-content h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.nvidia-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 800px) {
  .nvidia-strip-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  .nvidia-badge-card { margin: 0 auto; }
}
