/* ─────────────────────────────────────────────────────────
   AIZO · cre8.fun · Stylesheet v2
   Palette: CP2077 HUD  steel #a8c0cc · cyan #00d4ff · amber #ffa82d · red #ff2040
   Fonts: Inter (UI) · Chakra Petch (card %) · JetBrains Mono (data labels)
   ───────────────────────────────────────────────────────── */

/* ── Variables ──────────────────────────────────────────── */
:root {
  --bg:          #050508;
  --bg-2:        #080b12;
  --steel:       #a8c0cc;
  --steel-dim:   rgba(168, 192, 204, 0.14);
  --steel-faint: rgba(168, 192, 204, 0.06);
  --cyan:        #00d4ff;
  --cyan-dim:    rgba(0, 212, 255, 0.10);
  --cyan-glow:   rgba(0, 212, 255, 0.38);
  --amber:       #ffa82d;
  --amber-dim:   rgba(255, 168, 45, 0.10);
  --amber-glow:  rgba(255, 168, 45, 0.38);
  --red:         #ff2040;
  --mint:        rgba(0, 255, 200, 0.82);
  --text:        #dce8ee;
  --text-muted:  rgba(168, 192, 204, 0.55);
  --text-dim:    rgba(168, 192, 204, 0.32);
  --border:      rgba(168, 192, 204, 0.09);
  --r:           8px 0 8px 0;
  --r-sm:        4px 0 4px 0;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea { font-family: inherit; }

/* ── Typography utilities ───────────────────────────────── */
.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-headline {
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 48px;
  line-height: 1.65;
}
.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 18px;
}

/* ── Buttons ────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: var(--cyan);
  color: #000;
  font-weight: 700;
  font-size: 13px;
  border-radius: var(--r);
  transition: opacity 0.2s, box-shadow 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-primary:hover {
  opacity: 0.9;
  box-shadow: 0 0 24px var(--cyan-glow);
  transform: translateY(-1px);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 13px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-secondary:hover {
  border-color: rgba(168,192,204,0.25);
  color: var(--cyan);
  transform: translateY(-1px);
}

/* ── NAV ────────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 60px;
  background: rgba(5, 5, 8, 0.70);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
#nav.scrolled { background: rgba(5, 5, 8, 0.96); }

.nav-left {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-logo { flex-shrink: 0; }
.nav-logo img {
  display: block;
  height: 32px;
  width: auto;
  max-width: none;
}

.nav-links { display: flex; gap: 36px; }
.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: var(--amber);
  color: #000;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.02em;
  border-radius: var(--r-sm);
  animation: nav-pulse 3.5s ease-in-out infinite;
  transition: box-shadow 0.2s, transform 0.18s;
}
.nav-cta:hover {
  animation: none;
  box-shadow: 0 0 28px var(--amber-glow);
  transform: scale(1.04);
}
.nav-cta:hover .cta-arrow { transform: translateX(3px); }
.nav-cta .cta-arrow { display: inline-block; transition: transform 0.18s; }
.nav-cta .cta-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transform: scale(0);
  animation: cta-ripple 0.55s ease-out forwards;
  pointer-events: none;
}

/* Pulsing outward ring */
.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-sm);
  border: 2px solid var(--amber);
  opacity: 0;
  animation: cta-ping 2.4s ease-out infinite;
  pointer-events: none;
}
.nav-cta:hover::before { animation: none; }

@keyframes nav-pulse {
  0%, 100% { box-shadow: 0 0 0 0 transparent; }
  50%       { box-shadow: 0 0 18px 3px rgba(255,168,45,0.35); }
}
@keyframes cta-ping {
  0%   { transform: scale(1);   opacity: 0.7; }
  100% { transform: scale(1.5); opacity: 0;   }
}
@keyframes cta-ripple {
  to { transform: scale(4); opacity: 0; }
}

/* ══════════════════════════════════════════════════════════
   PERSISTENT AIZO CARD — matches actual app card exactly
   ══════════════════════════════════════════════════════════ */

#card-world {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 900px;
  perspective-origin: 50% 50%;
}

#card-scene {
  /* Flex child — centred by parent. GSAP x/y = offset from centre. */
  transform-style: preserve-3d;
  will-change: transform;
}

/* Window frame — zero-footprint wrapper, only hosts the card */
#card-frame {
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform-style: preserve-3d;
}

/* ── Card shell ─────────────────────────────────────────── */
#aizo-card,
#card-mobile {
  /* CSS custom props — state-driven, mirrors app's service-card vars */
  --card-neon:      #00d4ff;
  --card-glow:      rgba(0, 212, 255, 0.40);
  --card-seg-empty: rgba(0, 212, 255, 0.07);
  --card-steel:     #a8c0cc;
  --card-steel-dim: rgba(168, 192, 204, 0.14);

  position: relative;
  width: 300px;
  height: 120px;
  padding: 8px 10px 6px 10px;
  background: rgba(3, 5, 10, 0.98);
  border-radius: 8px 0 8px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  overflow: hidden;
}

#card-mobile { display: none; } /* hidden on desktop — shown via mobile media query */

#aizo-card.card-state-caution,
#card-mobile.card-state-caution {
  --card-neon:      #ffa82d;
  --card-glow:      rgba(255, 168, 45, 0.40);
  --card-seg-empty: rgba(255, 168, 45, 0.07);
}
#aizo-card.card-state-critical,
#card-mobile.card-state-critical {
  --card-neon:      #ff2040;
  --card-glow:      rgba(255, 32, 64, 0.45);
  --card-seg-empty: rgba(255, 32, 64, 0.06);
}
#aizo-card.card-blur { filter: blur(3px) brightness(0.65); }

/* 2px accent line — bottom of card, state-coloured, matches app */
.card-accent {
  position: absolute;
  bottom: 0;
  left: 6px;
  right: 6px;
  height: 2px;
  background: var(--card-neon);
  opacity: 0.38;
  box-shadow: 0 0 4px var(--card-glow), 0 0 10px var(--card-glow);
  z-index: 6;
  pointer-events: none;
  border-radius: 1px;
  transition: opacity 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}
@keyframes accent-pulse {
  0%   { opacity: 0.92; box-shadow: 0 0 8px var(--card-glow), 0 0 20px var(--card-glow); }
  100% { opacity: 0.38; box-shadow: 0 0 4px var(--card-glow), 0 0 10px var(--card-glow); }
}
.card-accent.pulse { animation: accent-pulse 0.65s ease-out forwards; }

/* Scanlines — exact match to app */
.card-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent      0px, transparent      4px,
    rgba(0,0,0,0.04) 4px, rgba(0,0,0,0.04) 5px
  );
  pointer-events: none;
  z-index: 20;
}

/* ── Top row: SERVICE  plan  [BADGE]  ⚙ ────────────────── */
.card-row-top {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-right: 22px; /* reserve space for gear btn */
  position: relative;
  z-index: 5;
}

.card-svc-label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--card-steel);
  text-shadow: 0 0 2px var(--card-steel), 0 0 8px rgba(168,192,204,0.18);
  text-transform: uppercase;
  flex-shrink: 0;
}
/* Live source dot after service name */
.card-svc-label::after {
  content: '●';
  font-size: 5px;
  color: var(--card-neon);
  margin-left: 4px;
  vertical-align: middle;
  text-shadow: 0 0 4px var(--card-glow);
  animation: dot-pulse 2s ease-in-out infinite;
}
@keyframes dot-pulse { 0%,100%{opacity:1} 50%{opacity:0.30} }

.card-plan-label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(168,192,204,0.35);
  text-transform: uppercase;
  white-space: nowrap;
  flex: 1;
}

/* State badge — outlined rectangle, matches app exactly */
.card-state-badge {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
  padding: 2px 6px;
  min-width: 56px;
  text-align: center;
  border: 1px solid var(--card-neon);
  border-radius: 1px;
  color: var(--card-neon);
  background: transparent;
  text-shadow: 0 0 6px var(--card-glow);
  white-space: nowrap;
  transition: color 0.4s, border-color 0.4s, background 0.4s, text-shadow 0.4s;
  flex-shrink: 0;
}
/* Critical → filled badge (app behaviour) */
#aizo-card.card-state-critical .card-state-badge {
  background: var(--card-neon);
  color: rgba(3, 5, 10, 0.92);
  text-shadow: none;
}

.card-gear-btn {
  position: absolute;
  top: 0; right: 0;
  width: 18px; height: 18px;
  font-size: 11px;
  color: rgba(168,192,204,0.28);
  line-height: 1;
  transition: color 0.2s;
}
.card-gear-btn:hover { color: var(--card-steel); }

/* ── Main row: health bar + percentage ──────────────────── */
.card-row-main {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 5;
}

.card-bar-section { flex: 1; min-width: 0; }

/* Health bar — segmented, 21px, matches app */
.card-health-bar {
  height: 21px;
  background: repeating-linear-gradient(
    90deg,
    var(--card-seg-empty) 0px, var(--card-seg-empty) 9px,
    rgba(3, 5, 10, 1)     9px, rgba(3, 5, 10, 1)    11px
  );
  border: 1px solid var(--card-steel-dim);
  position: relative;
  overflow: visible;
  transition: border-color 0.4s;
}

.card-bar-fill {
  position: relative;
  height: 100%;
  width: 0%;
  overflow: hidden;
  background: repeating-linear-gradient(
    90deg,
    var(--card-neon) 0px, var(--card-neon) 9px,
    transparent      9px, transparent     11px
  );
  filter:
    drop-shadow(0 0 2px var(--card-neon))
    drop-shadow(0 0 6px var(--card-glow))
    drop-shadow(0 0 12px var(--card-glow));
  transition: width 0.5s ease, filter 0.4s ease;
}

/* Flash on new data arrival */
.card-bar-flash {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}
@keyframes bar-arrive {
  0%   { background: rgba(255,255,255,0.20); }
  100% { background: rgba(255,255,255,0); }
}
.card-bar-flash.active { animation: bar-arrive 0.55s ease-out forwards; }

/* Critical breathing animation */
@keyframes bar-breathe-hot { 0%,100%{opacity:1} 50%{opacity:0.50} }
#aizo-card.card-state-critical .card-bar-fill {
  animation: bar-breathe-hot 1.8s ease-in-out infinite;
}

/* Percentage — Chakra Petch 22px, matches app */
.card-percent {
  font-family: 'Chakra Petch', 'Inter', system-ui, sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--card-neon);
  line-height: 1;
  flex-shrink: 0;
  width: 58px;
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
  transition: color 0.4s;
  text-shadow: 0 0 12px var(--card-glow);
}

/* ── Weekly row: 7D  [mint bar]  % ─────────────────────── */
.card-row-weekly {
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
  z-index: 5;
}

.card-weekly-lbl {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(0, 255, 200, 0.82);
  flex-shrink: 0;
  width: 14px;
}

.card-weekly-section { flex: 1; min-width: 0; }

/* Weekly bar — mint, segmented (4px/3px pitch) */
.card-weekly-bar {
  height: 8px;
  background: repeating-linear-gradient(
    90deg,
    rgba(0, 255, 200, 0.06) 0px, rgba(0, 255, 200, 0.06) 4px,
    rgba(3, 5, 10, 1)       4px, rgba(3, 5, 10, 1)       7px
  );
  border: 1px solid rgba(0, 255, 200, 0.13);
  position: relative;
  overflow: visible;
}

.card-weekly-fill {
  position: relative;
  height: 100%;
  width: 35%;
  background: repeating-linear-gradient(
    90deg,
    rgba(0, 255, 200, 0.68) 0px, rgba(0, 255, 200, 0.68) 4px,
    transparent             4px, transparent              7px
  );
  filter: drop-shadow(0 0 2px #00ffc8) drop-shadow(0 0 6px rgba(0,255,200,0.42));
  transition: width 0.8s ease;
}

.card-weekly-pct {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(0, 255, 200, 0.82);
  flex-shrink: 0;
  text-align: left;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* ── Bottom row: timer  burn rate ───────────────────────── */
.card-row-bottom {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  position: relative;
  z-index: 5;
}

.card-timer {
  font-size: 10.5px;
  font-weight: normal;
  letter-spacing: 0.06em;
  color: var(--card-steel);
  text-shadow: 0 0 6px rgba(168,192,204,0.18);
  transition: color 0.4s;
}
#aizo-card.card-state-critical .card-timer {
  color: #ff4050;
  text-shadow: 0 0 8px rgba(255,64,80,0.75);
}

.card-brm {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(168,192,204,0.38);
  white-space: nowrap;
  margin-left: auto;
  text-transform: uppercase;
}

/* ── Activity viz — exact match to app's viz-track/viz-beam ─ */
.card-viz-track {
  height: 3px;
  background: repeating-linear-gradient(
    90deg,
    var(--card-seg-empty) 0px, var(--card-seg-empty) 9px,
    rgba(3, 5, 10, 1)     9px, rgba(3, 5, 10, 1)    11px
  );
  position: relative;
  overflow: visible;
  margin-top: 5px;
}

.card-viz-beam {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: repeating-linear-gradient(
    90deg, var(--card-neon) 0px, var(--card-neon) 9px, transparent 9px, transparent 11px
  );
  clip-path: inset(0 100% 0 0);
  opacity: 0;
  will-change: clip-path, opacity;
}

/* Active: wave animation; idle: drain to nothing */
#aizo-card[data-active="true"]  .card-viz-beam { animation: card-viz-wave  2.6s linear infinite; }
#aizo-card[data-active="false"] .card-viz-beam { animation: card-viz-drain 1.6s ease-in forwards; }

@keyframes card-viz-wave {
  0%   { clip-path: inset(0 58% 0 0); opacity: 0.82; }
  10%  { clip-path: inset(0 35% 0 0); opacity: 1.00; }
  20%  { clip-path: inset(0 54% 0 0); opacity: 0.84; }
  30%  { clip-path: inset(0 28% 0 0); opacity: 1.00; }
  40%  { clip-path: inset(0 50% 0 0); opacity: 0.86; }
  50%  { clip-path: inset(0 32% 0 0); opacity: 1.00; }
  60%  { clip-path: inset(0 56% 0 0); opacity: 0.83; }
  70%  { clip-path: inset(0 34% 0 0); opacity: 0.98; }
  80%  { clip-path: inset(0 52% 0 0); opacity: 0.87; }
  90%  { clip-path: inset(0 37% 0 0); opacity: 0.96; }
  100% { clip-path: inset(0 58% 0 0); opacity: 0.82; }
}
@keyframes card-viz-drain {
  0%   { clip-path: inset(0 48% 0 0); opacity: 0.95; }
  50%  { clip-path: inset(0 82% 0 0); opacity: 0.40; }
  100% { clip-path: inset(0 100% 0 0); opacity: 0;   }
}

/* ── Edge shine — follows mouse, sold 3D feel ───────────────── */
.card-shine {
  position: absolute;
  inset: 0;
  border-radius: 8px 0 8px 0;
  background: radial-gradient(
    ellipse at var(--sx, 50%) var(--sy, 50%),
    rgba(255,255,255,0.07) 0%,
    rgba(255,255,255,0.02) 45%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 22;
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 0.3s;
}

/* ══════════════════════════════════════════════════════════
   HERO — mobile: stacked flex column (original, unchanged)
          desktop: full-bleed image backdrop, all content overlaid
   ══════════════════════════════════════════════════════════ */

/* ── Base (mobile-first) ────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 140px 48px 40px;
  gap: 0;
}

/* Android image — hidden on mobile */
#hero-android-img {
  display: none;
}

/* Gradient overlay — hidden on mobile */
#hero-overlay {
  display: none;
}

/* Clone card — hidden on mobile */

/* Hero content — full width centred on mobile */
#hero-content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

/* Mobile callouts */
.hero-mobile-callouts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  justify-content: center;
  margin-bottom: 24px;
}

/* Desktop callout strip — hidden on mobile */
#hero-callout-row {
  display: none;
}

.hero-callout-tile {
  flex: 1;
  padding: 20px 36px 28px;
  border-right: 1px solid var(--border);
}
.hero-callout-tile:last-child { border-right: none; }
.hero-callout-tile h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.hero-callout-tile p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════
   HERO DESKTOP (>960px) — full-bleed overlay architecture
   ══════════════════════════════════════════════════════════ */
@media (min-width: 961px) {

  /* Hero becomes a positioned container, no flex centering */
  #hero {
    display: block;
    height: 100vh;
    min-height: 0;
    padding: 0;
    overflow: hidden;
  }

  /* Full-bleed android image — starts below 60px fixed navbar */
  #hero-android-img {
    display: block;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
    object-position: left top;
    z-index: 1;
  }

  /* Right-side + bottom gradients so text stays legible */
  #hero-overlay {
    display: block;
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to top, rgba(5, 5, 8, 0.82) 0%, transparent 28%),
      linear-gradient(
        to right,
        transparent 35%,
        rgba(5, 5, 8, 0.55) 48%,
        rgba(5, 5, 8, 0.92) 65%,
        rgba(5, 5, 8, 0.97) 100%
      );
    z-index: 2;
  }


  /* Content block — absolute, right side, vertically centred */
  #hero-content {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 42%;
    padding: 0 60px 0 32px;
    align-items: flex-start;
    text-align: left;
    z-index: 5;
  }

  #hero-content .hero-top {
    text-align: left;
    max-width: none;
    margin-bottom: 36px;
  }

  #hero-content .hero-bottom {
    align-items: flex-start;
    margin-top: 0;
  }

  /* Hide mobile-only elements */
  #hero-content .hero-center { display: none; }
  .hero-mobile-callouts      { display: none; }

  /* Callout strip — transparent overlay at hero bottom */
  #hero-callout-row {
    display: flex;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    align-items: stretch;
    z-index: 5;
  }

  /* Scroll cue — bottom of hero, centred — sits above callout strip */
  .scroll-cue {
    position: absolute;
    bottom: 130px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 6;
  }
}

/* ── Top: eyebrow + headline + one-liner — all centred ── */
.hero-top {
  text-align: center;
  max-width: 600px;
  margin-bottom: 36px;
}

.hero-headline {
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.0;
  color: var(--text);
  margin-bottom: 16px;
}

.hero-sub {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── Middle: 3-column grid — callouts | card zone | callouts ── */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 340px 1fr;
  gap: 0 32px;
  align-items: stretch;
  width: 100%;
  max-width: 1200px;
  min-height: 260px;
}

/* Left + right callout columns */
.hero-left,
.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-callout {
  padding: 28px 24px;
}

.hero-callout h4 {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 10px;
}

.hero-callout p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Centre: holds vertical space for the fixed card */
.hero-center {
  height: 140px;
  align-self: center;
}

/* ── Bottom: Download + Unlock + micro — all centred ── */
.hero-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
}

.hero-cta-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-dl-btn {
  min-width: 220px;
  justify-content: center;
}

.hero-unlock-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.hero-unlock-link:hover { color: var(--text); }

.hero-micro {
  font-size: 11px;
  color: var(--text-dim);
}

/* Scroll cue — circle ring treatment */
.scroll-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-bottom: 8px;
  animation: scroll-bounce 2.5s ease-in-out infinite;
}

.scroll-cue-ring {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(168, 192, 204, 0.28);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-dim);
}

.scroll-cue p {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--text-dim);
}

@keyframes scroll-bounce {
  0%, 100% { opacity: 0.5; transform: translateY(0); }
  50%       { opacity: 0.9; transform: translateY(8px); }
}

/* ── DOWNLOAD ───────────────────────────────────────────── */
#download {
  position: relative;
  z-index: 1;
  padding: 120px 48px;
  border-top: 1px solid var(--border);
}

.section-inner { max-width: 920px; margin: 0 auto; }

/* 3-column: platforms | card space | paths */
.download-grid {
  display: grid;
  grid-template-columns: 1fr 340px 1fr;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 0 32px;
}

.download-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.download-center {
  min-height: 260px; /* card floats here — keep space open */
}

.download-right {
  display: flex;
  flex-direction: column;
}

.download-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
  width: 100%;
}

.dl-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--bg-2);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
  width: 100%;
}
.dl-btn:hover { border-color: rgba(0,212,255,0.25); box-shadow: 0 0 20px rgba(0,212,255,0.05); transform: translateY(-2px); }
.dl-btn.dl-primary { border-color: rgba(0,212,255,0.18); }
.dl-btn.dl-disabled { opacity: 0.30; cursor: not-allowed; }
.dl-btn.dl-disabled:hover { transform: none; border-color: var(--border); box-shadow: none; }

.dl-trust-note {
  margin-top: 14px;
  font-size: 11px;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 380px;
}

.dl-icon { font-size: 18px; color: var(--cyan); min-width: 22px; text-align: center; }
.dl-disabled .dl-icon { color: var(--text-dim); }
.dl-text { display: flex; flex-direction: column; gap: 2px; }
.dl-label { font-size: 13px; font-weight: 600; color: var(--text); }
.dl-meta { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--text-muted); }

.path-card {
  padding: 24px 28px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.download-right .path-card:first-child { border-radius: 8px 8px 0 0; border-bottom: none; }
.download-right .path-card:last-child  { border-radius: 0 0 8px 8px; }

.download-trust {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 680px;
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 6px;
}
.trust-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.6);
}
.trust-body {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
}
.trust-body a { color: rgba(0,212,255,0.6); text-decoration: none; }
.trust-body a:hover { color: #00d4ff; }

.path-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--cyan);
  margin-bottom: 10px;
}
.path-card p  { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

.path-divider-h {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-dim);
  background: var(--bg-2);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

/* ── USE CASES ──────────────────────────────────────────── */
#use-cases {
  padding: 80px 48px;
  border-top: 1px solid var(--border);
}
#use-cases .section-headline { margin-bottom: 8px; }
#use-cases .section-sub { margin-bottom: 0; }
.uc-windows-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border: 1px solid rgba(0, 212, 255, 0.22);
  border-radius: 4px 0 4px 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.10em;
  color: var(--cyan);
  margin-top: 20px;
  background: rgba(0, 212, 255, 0.04);
}
.uc-groups {
  display: flex;
  flex-direction: column;
  gap: 56px;
  margin-top: 56px;
}
.uc-group-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.uc-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.uc-cards-3 { grid-template-columns: repeat(3, 1fr); }
.uc-card {
  background: var(--bg);
  padding: 28px 28px 32px;
}
.uc-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  line-height: 1.3;
}
.uc-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}
.uc-card-future {
  background: rgba(0, 212, 255, 0.025);
}
.uc-future-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--cyan);
  opacity: 0.65;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* ── DEMO ───────────────────────────────────────────────── */
#demo {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 120px 48px;
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 1300px;
  margin: 0 auto;
  min-height: 70vh;
}

.demo-left { flex: 1; min-width: 0; }
.demo-title { font-size: clamp(26px, 3.5vw, 40px); font-weight: 800; letter-spacing: -0.025em; color: var(--text); margin-bottom: 8px; }
.demo-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 40px; }

.demo-usecases { display: flex; flex-direction: column; gap: 6px; }
.usecase {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  opacity: 0.40;
  transition: opacity 0.4s;
  cursor: default;
}
.usecase.active { opacity: 1; }
.usecase-indicator {
  width: 2px; min-width: 2px;
  background: var(--border);
  border-radius: 1px;
  margin-top: 3px;
  transition: background 0.3s;
}
.usecase.active .usecase-indicator {
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan-glow);
}
.usecase h4 { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 5px; }
.usecase p  { font-size: 12px; color: var(--text-muted); line-height: 1.6; }

.demo-right { flex: 3; min-width: 0; display: flex; align-items: center; justify-content: flex-end; position: relative; }
.demo-screenshot {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.75), 0 8px 24px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.06);
}

/* ── INTELLIGENCE ───────────────────────────────────────── */
#intelligence {
  position: relative;
  z-index: 201;
  padding: 120px 48px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

/* ── Anomaly showcase — two-column layout ── */
.anomaly-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.anomaly-copy { display: flex; flex-direction: column; gap: 0; }

.anomaly-heading {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--text);
  margin: 16px 0 20px;
}

.anomaly-sub {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 32px;
}

.anomaly-bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
}

.anomaly-bullets li {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.anomaly-bullets li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: rgba(255, 149, 0, 0.70);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
}

/* Share card wrap */
.anomaly-card-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.anomaly-card-caption {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(168, 192, 204, 0.28);
  text-align: center;
}

/* ── Screen 3 Share Card ── */
.share-card {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 560 / 320;
  background: #03050a;
  border: 1px solid rgba(168, 192, 204, 0.08);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  padding: 20px 26px 18px;
  font-family: 'JetBrains Mono', monospace;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.80);
  display: flex;
  flex-direction: column;
}

.share-card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.share-card.strong::before  { background: radial-gradient(ellipse at 8% 50%, rgba(255,149,0,0.09) 0%, transparent 55%); }
.share-card.extreme::before { background: radial-gradient(ellipse at 8% 50%, rgba(255,32,64,0.09) 0%, transparent 55%); }
.share-card.phase1::before  { background: radial-gradient(ellipse at 8% 50%, rgba(0,212,255,0.06) 0%, transparent 55%); }

.sc-top { display: flex; align-items: flex-start; margin-bottom: 4px; }
.sc-badge {
  font-size: 7px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 2px 6px;
  border: 1px solid rgba(168, 192, 204, 0.14);
  color: rgba(168, 192, 204, 0.45);
}

.sc-service {
  font-size: 10px;
  letter-spacing: 0.14em;
  color: rgba(168, 192, 204, 0.55);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.sc-hero {
  display: flex;
  align-items: baseline;
  gap: 3px;
  line-height: 1;
  margin-bottom: 2px;
}

.sc-brm {
  font-family: 'Chakra Petch', monospace;
  font-weight: 700;
  font-size: clamp(56px, 8vw, 96px);
  letter-spacing: -0.05em;
  line-height: 0.86;
}
.share-card.strong  .sc-brm { color: #ffa82d; text-shadow: 0 0 60px rgba(255,149,0,0.50); }
.share-card.extreme .sc-brm { color: #ff2040; text-shadow: 0 0 60px rgba(255,32,64,0.50); }
.share-card.phase1  .sc-brm { color: #00d4ff; text-shadow: 0 0 60px rgba(0,212,255,0.45); font-size: clamp(44px, 6vw, 80px); }

.sc-x {
  font-family: 'Chakra Petch', monospace;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 52px);
  opacity: 0.80;
  align-self: flex-end;
  margin-bottom: 14px;
  margin-left: 4px;
}
.share-card.strong  .sc-x { color: #ffa82d; }
.share-card.extreme .sc-x { color: #ff2040; }

.sc-sub {
  font-size: 12px;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  opacity: 0.62;
}
.share-card.strong  .sc-sub { color: rgba(255,168,45,1); }
.share-card.extreme .sc-sub { color: rgba(255,64,80,1); }
.share-card.phase1  .sc-sub { color: rgba(0,212,255,1); }

.sc-chart { flex: 1; position: relative; min-height: 0; }
.sc-chart-canvas { display: block; width: 100%; height: 100%; }

.sc-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 8px;
  gap: 8px;
}
.sc-footer-left { display: flex; flex-direction: column; gap: 3px; }
.sc-legend { display: flex; gap: 10px; align-items: center; }
.sc-legend-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 7px;
  letter-spacing: 0.08em;
  color: rgba(168, 192, 204, 0.40);
}
.sc-stat { font-size: 8px; letter-spacing: 0.08em; color: rgba(168, 192, 204, 0.38); }
.sc-footer-aizo {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(168, 192, 204, 0.55);
  white-space: nowrap;
  align-self: flex-end;
}
.sc-footer-aizo span { color: rgba(168, 192, 204, 0.80); font-weight: 700; }

/* ── NOTIFY ─────────────────────────────────────────────── */
#notify {
  position: relative;
  z-index: 201;
  padding: 100px 48px;
  background: var(--bg);
  border-top: 1px solid var(--border);
  text-align: center;
}

.notify-inner {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.notify-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.notify-heading {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 12px;
}

.notify-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.notify-form { width: 100%; max-width: 420px; }

.notify-row {
  display: flex;
  gap: 10px;
}

.notify-row input[type="email"] {
  flex: 1;
  background: rgba(168, 192, 204, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  font-size: 13px;
  color: var(--text);
  font-family: inherit;
  transition: border-color 0.2s;
  outline: none;
}
.notify-row input[type="email"]::placeholder { color: var(--text-dim); }
.notify-row input[type="email"]:focus { border-color: rgba(0, 212, 255, 0.30); }

.btn-notify {
  padding: 12px 22px;
  background: transparent;
  border: 1px solid var(--cyan);
  border-radius: var(--r-sm);
  color: var(--cyan);
  font-size: 13px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, box-shadow 0.2s;
}
.btn-notify:hover { background: rgba(0, 212, 255, 0.08); box-shadow: 0 0 16px var(--cyan-glow); }

/* ── SOCIAL PROOF ───────────────────────────────────────── */
#social-proof {
  position: relative;
  z-index: 201;
  padding: 88px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

#social-proof .section-label { text-align: center; margin-bottom: 44px; }

.ticker-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.ticker-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: ticker-scroll 80s linear infinite;
}
.ticker-wrap:hover .ticker-track { animation-play-state: paused; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ticker-item {
  flex: 0 0 auto;
  width: 240px;
  padding: 16px 24px;
  border-right: 1px solid var(--border);
}
.ticker-quote {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  line-height: 1.6;
  color: rgba(168, 192, 204, 0.65);
  margin-bottom: 7px;
}
.ticker-attr { font-size: 10px; color: var(--text-dim); }
.ticker-testimonial .ticker-quote { color: var(--text); }
.ticker-testimonial .ticker-attr  { color: rgba(0,212,255,0.6); }

/* ── FEATURES ───────────────────────────────────────────── */
/* ── FEATURES — sticky scroll, 3 features cycling ─────────── */

/* Section — normal height; scroll interception handles feature cycling */
#features {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
}

.features-sticky {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* 3-column grid: heading | card | description */
.features-layout {
  display: grid;
  grid-template-columns: 1fr 360px 1fr;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 48px;
  gap: 0 64px;
  align-items: center;
}

/* Heading column — slides stack, one shown at a time */
.features-col-heading {
  position: relative;
  min-height: 260px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}

/* Card column — empty space, card floats here via fixed positioning */
.features-col-card { min-height: 160px; }

/* Description column — slides stack, one shown at a time */
.features-col-desc {
  position: relative;
  min-height: 180px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}

/* Heading slides — all occupy same grid cell, fade in/out */
.feature-slide {
  grid-column: 1;
  grid-row: 1;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
  align-self: center;
}
.feature-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.feature-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--cyan);
  display: block;
  margin-bottom: 18px;
  opacity: 0.7;
}

.feature-heading {
  font-size: clamp(48px, 5.5vw, 80px);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.04em;
  line-height: 1.0;
}

/* Description slides — same overlay technique */
.feature-desc-slide {
  grid-column: 1;
  grid-row: 1;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
  align-self: center;
}
.feature-desc-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.feature-desc-slide p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── PHILOSOPHY ─────────────────────────────────────────── */
#philosophy {
  position: relative;
  z-index: 201;
  padding: 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  overflow: visible;
}

/* Supporting line — centered above headline */
.phil-sub {
  display: block;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: 'JetBrains Mono', monospace;
  padding: 56px 48px 16px;
}

/* Headline — direct child of section, escapes max-width constraint */
.phil-headline {
  display: block;
  padding: 80px 0 16px 0;
  font-size: clamp(120px, 26vw, 9999px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.88;
  color: var(--text);
  white-space: nowrap;
  text-transform: lowercase;
  text-align: center;
}
.phil-dot { color: var(--cyan); }

/* Inner content block — constrained, all children centered */
.phil-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px 48px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.phil-body {
  font-size: 14px;
  color: rgba(168,192,204,0.55);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 40px;
}

.phil-values {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 28px;
}
.phil-values span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
}

.phil-oss {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--text-dim);
  transition: color 0.2s;
}
.phil-oss:hover { color: var(--cyan); }

/* ── PRICING ────────────────────────────────────────────── */
#pricing {
  position: relative;
  z-index: 201;
  padding: 120px 48px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
/* ── Pricing cards — unified block, equal height ─────────── */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 48px;
  align-items: stretch;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

/* Each card is a flex column; button is last, always at the bottom */
.pricing-card {
  padding: 48px 36px;
  background: var(--bg-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-right: 1px solid var(--border);
}
.pricing-card:last-child { border-right: none; }

/* Featured (middle) card highlight */
.pricing-featured {
  background: rgba(0,212,255,0.025);
  border-left: 1px solid rgba(0,212,255,0.15);
  border-right: 1px solid rgba(0,212,255,0.15);
}

/* Badge */
.pricing-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  padding: 3px 10px;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 28px;
}
.pricing-tag-limited { background: rgba(255,168,45,0.12); color: var(--amber); }
.pricing-tag-new     { background: rgba(0,212,255,0.10);  color: var(--cyan);  }

/* Tier name */
.pricing-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

/* Description — min-height normalises vertical position of price across cards */
.pricing-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.65;
  min-height: 40px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
}

/* Price */
.pricing-price {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 36px;
  line-height: 1;
}
.pricing-featured .pricing-price { color: var(--cyan); }
.pricing-custom { font-size: 32px; color: var(--steel); }

/* Spec rows — label above value, both centered, uniform height */
.pricing-specs {
  display: flex;
  flex-direction: column;
  width: 100%;
  flex: 1;
  margin-bottom: 32px;
}
.pricing-spec {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 62px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.pricing-spec:first-child { border-top: 1px solid var(--border); }
.spec-key {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.spec-val {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Buttons — marketing hierarchy:
   Lifetime = white (hero, max contrast)
   EA       = amber outline (urgent, subordinate)
   Teams    = ghost (inquiry, tertiary)            */
.btn-pricing {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: var(--r);
  transition: box-shadow 0.2s, transform 0.15s, opacity 0.2s;
}
.btn-pricing:hover { transform: translateY(-2px); }

/* EA — amber outline: scarcity without stealing hierarchy */
.btn-pricing-ea {
  background: transparent;
  color: var(--amber);
  border: 1px solid var(--amber);
}
.btn-pricing-ea:hover { background: rgba(255,168,45,0.08); box-shadow: 0 0 16px var(--amber-glow); }

/* Lifetime — cyan outline: matches EA style, brand colour */
.btn-pricing-lifetime {
  background: transparent;
  color: var(--cyan);
  border: 1px solid var(--cyan);
}
.btn-pricing-lifetime:hover { background: rgba(0,212,255,0.08); box-shadow: 0 0 16px var(--cyan-glow); }

/* Teams — ghost: clearly tertiary inquiry */
.btn-pricing-teams {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.btn-pricing-teams:hover { border-color: rgba(168,192,204,0.30); color: var(--text); }

/* ── Pricing page additions ──────────────────────────────── */
.pricing-contrast {
  font-size: 16px;
  color: var(--text);
  text-align: center;
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.pricing-guarantee {
  text-align: center;
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 28px;
  letter-spacing: 0.02em;
}

/* FAQ block */
.pricing-faq {
  max-width: 720px;
  margin: 64px auto 0;
  border-top: 1px solid var(--border);
  padding-top: 48px;
}
.faq-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.faq-list { display: flex; flex-direction: column; gap: 0; margin-bottom: 48px; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color 0.2s;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--text-muted);
  flex-shrink: 0;
  line-height: 1;
  transition: color 0.2s;
}
details[open] > .faq-q::after { content: '−'; }
details[open] > .faq-q { color: var(--accent); }
.faq-a {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  padding-bottom: 20px;
}
.faq-a p { margin-bottom: 10px; }
.faq-a p:last-child { margin-bottom: 0; }
.faq-a ul {
  margin: 4px 0 10px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  list-style: disc;
}
.faq-a a { color: var(--text-muted); text-decoration: underline; text-underline-offset: 3px; }

/* Ask form */
.faq-ask {
  border-top: 1px solid var(--border);
  padding-top: 36px;
}
.faq-ask-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.faq-form-row {
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  gap: 10px;
  align-items: start;
}
.faq-form-row input,
.faq-form-row textarea {
  background: rgba(168,192,204,0.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--text);
  font-family: inherit;
  resize: none;
  height: 42px;
  transition: border-color 0.2s;
}
.faq-form-row textarea { height: 42px; }
.faq-form-row input:focus,
.faq-form-row textarea:focus {
  outline: none;
  border-color: rgba(168,192,204,0.30);
}
.btn-faq-submit {
  height: 42px;
  padding: 0 20px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s;
}
.btn-faq-submit:hover { border-color: rgba(168,192,204,0.3); color: var(--text); }

/* Post-pricing OSS link */
.pricing-oss {
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 48px;
  line-height: 1.8;
}
.pricing-oss a {
  color: var(--text-dim);
  transition: color 0.2s;
}
.pricing-oss a:hover { color: var(--cyan); }

/* ── CREATOR PROGRAM ────────────────────────────────────── */
#creators {
  position: relative;
  z-index: 201;
  padding: 120px 48px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.creator-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-bottom: 56px; }
.creator-col h4 { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 10px; letter-spacing: 0.01em; }
.creator-col p  { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

.creator-form {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.creator-form input,
.creator-form textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  font-size: 13px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.creator-form input::placeholder,
.creator-form textarea::placeholder { color: var(--text-dim); }
.creator-form input:focus,
.creator-form textarea:focus {
  border-color: rgba(0,212,255,0.28);
  box-shadow: 0 0 0 2px rgba(0,212,255,0.06);
}
.creator-form textarea { resize: none; min-height: 84px; line-height: 1.6; }

/* Submit — contained width, left-aligned, not full-width */
.creator-form .btn-primary {
  width: fit-content;
  align-self: flex-start;
}

.form-note { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--text-dim); }

/* ── FOOTER ─────────────────────────────────────────────── */
#footer {
  position: relative;
  z-index: 1;
  padding: 56px 48px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.footer-left { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; }
.footer-logo { display: block; height: 96px; width: auto; margin-bottom: 6px; }
.footer-left p { font-size: 12px; color: var(--text-dim); }
.footer-made { opacity: 0.6; }
.footer-links, .footer-legal { display: flex; flex-direction: column; gap: 9px; }
.footer-links a, .footer-legal a { font-size: 12px; color: var(--text-muted); transition: color 0.2s; }
.footer-links a:hover, .footer-legal a:hover { color: var(--cyan); }

/* ── RESPONSIVE ─────────────────────────────────────────── */
/* ── Hamburger nav button — hidden on desktop ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 600;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 60px; left: 0; right: 0;
  background: rgba(5, 5, 8, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  padding: 20px 24px;
  gap: 4px;
  z-index: 490;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  text-transform: uppercase;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.nav-mobile-menu a:last-child { border-bottom: none; }
.nav-mobile-menu a:hover { color: var(--text); }

@media (max-width: 960px) {
  /* ── Nav ── */
  #nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  /* ── Landing page image — hidden on mobile ── */
  #hero-android-img { display: none; }

  /* ── Card: desktop scroll narrative hidden; static card shown in hero ── */
  #card-world  { display: none; }
  #card-scene  { transform: none !important; }
  .hero-center {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    padding: 40px 0 48px;
  }
  /* Prevent card overflow on narrow screens */
  #card-mobile {
    display: flex;
    width: min(300px, calc(100vw - 48px));
  }

  /* ── Hero ── */
  #hero { padding: 120px 24px 64px; }
  .hero-top { margin-bottom: 32px; }
  .hero-sub { max-width: 360px; margin: 0 auto; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .hero-left, .hero-right {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px 16px;
    justify-content: flex-start;
    min-height: auto;
  }
  .hero-left .hero-callout,
  .hero-right .hero-callout { flex: 1 1 calc(50% - 8px); min-width: 140px; }
  /* Card first, then all callouts below on mobile */
  .hero-center { order: -1; }
  .hero-left   { order: 2; }
  .hero-right  { order: 3; }
  .hero-bottom { margin-top: 40px; }

  /* Mobile callout grid — 2 columns, tile style */
  .hero-mobile-callouts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 4px 0 4px 0;
    margin-bottom: 0;
    width: 100%;
  }
  .hero-mobile-callouts .hero-callout {
    background: var(--bg);
    padding: 20px 16px;
  }
  .hero-mobile-callouts .hero-callout h4 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
  }
  .hero-mobile-callouts .hero-callout p {
    font-size: 12px;
    line-height: 1.55;
  }

  /* ── Sections ── */
  #download, #features, #pricing, #creators { padding: 80px 24px; }
  .download-grid { grid-template-columns: 1fr; gap: 40px 0; }
  .download-center { display: none; }
  .download-btns { flex-direction: column; margin-top: 20px; }
  .path-divider-h { width: 100%; border-left: none; border-right: none; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

  /* ── Demo ── */
  #demo { flex-direction: column; gap: 40px; padding: 80px 24px; }
  .demo-left { flex: none; width: 100%; }
  .demo-screenshot { display: none; }

  /* ── Use Cases ── */
  #use-cases { padding: 80px 24px; }
  .uc-cards,
  .uc-cards-3 { grid-template-columns: 1fr; }

  /* ── Features ── */
  /* ── Features: flat flex list, paired heading + desc per feature ── */
  .features-sticky { min-height: auto; padding: 60px 0; }
  .features-layout {
    display: flex;
    flex-direction: column;
    padding: 0 24px;
    gap: 0;
  }
  .features-col-card { display: none; }
  /* display:contents strips the column wrappers — slides become direct flex children */
  .features-col-heading,
  .features-col-desc {
    display: contents;
    min-height: auto;
  }
  /* All slides visible on mobile */
  .feature-slide,
  .feature-desc-slide {
    display: block;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    grid-column: unset;
    grid-row: unset;
  }
  /* Interleave: 01 heading → 01 desc → 02 heading → 02 desc → 03 heading → 03 desc */
  .feature-slide[data-index="0"]      { order: 1; margin-bottom: 10px; }
  .feature-desc-slide[data-index="0"] { order: 2; margin-bottom: 44px; padding-bottom: 44px; border-bottom: 1px solid var(--border); }
  .feature-slide[data-index="1"]      { order: 3; margin-bottom: 10px; }
  .feature-desc-slide[data-index="1"] { order: 4; margin-bottom: 44px; padding-bottom: 44px; border-bottom: 1px solid var(--border); }
  .feature-slide[data-index="2"]      { order: 5; margin-bottom: 10px; }
  .feature-desc-slide[data-index="2"] { order: 6; }
  .feature-heading { font-size: clamp(36px, 9vw, 52px); }

  /* ── Pricing ── */
  .pricing-cards  { grid-template-columns: 1fr; border-radius: 8px; }
  .pricing-card   { border-right: none; border-bottom: 1px solid var(--border); }
  .pricing-card:last-child { border-bottom: none; }
  .pricing-featured { border-left: 1px solid rgba(0,212,255,0.15); border-right: 1px solid rgba(0,212,255,0.15); }

  /* ── Creator / Form ── */
  .creator-cols   { grid-template-columns: 1fr; gap: 20px; }
  .faq-form-row   { grid-template-columns: 1fr; }
  .btn-faq-submit { width: 100%; }
  .form-row       { grid-template-columns: 1fr; }

  /* ── Philosophy ── */
  .phil-sub       { padding: 16px 24px 0; font-size: 13px; }
  .phil-inner     { padding: 16px 24px 80px; }
  .phil-headline  { padding: 60px 0 16px 0; font-size: clamp(72px, 22vw, 9999px); }

  /* ── Footer ── */
  .footer-inner   { flex-direction: column; gap: 28px; }
  #footer         { padding: 48px 24px; }

  /* ── Intelligence ── */
  #intelligence   { padding: 80px 24px; }
  .anomaly-showcase { grid-template-columns: 1fr; gap: 40px; }
  .anomaly-card-wrap { order: -1; }
  .share-card { max-width: 100%; }

  /* ── Notify ── */
  #notify         { padding: 80px 24px; }
  .notify-row     { flex-direction: column; }
  .btn-notify     { width: 100%; }
}

@media (max-width: 600px) {
  .hero-headline { font-size: clamp(40px, 11vw, 60px); }
  .hero-left .hero-callout,
  .hero-right .hero-callout { flex: 1 1 100%; }
  #aizo-card { width: 280px; }
}
