/* ═══════════════════════════════════════════════════════════
   VeloxARB — Dark Fintech Landing Page
   Brand: Navy #0A1628 · Cyan #00D4FF · Green #00FF88
   ═══════════════════════════════════════════════════════════ */

/* ─── 1. DESIGN TOKENS ─────────────────────────────────── */
:root {
  /* Brand colors */
  --color-bg: #0A1628;
  --color-surface: #0F1F3A;
  --color-surface-2: #122040;
  --color-surface-raised: #162848;
  --color-border: rgba(0, 212, 255, 0.12);
  --color-border-bright: rgba(0, 212, 255, 0.3);
  --color-divider: rgba(255, 255, 255, 0.06);

  /* Text */
  --color-text: #E8EFF8;
  --color-text-muted: #7A90B0;
  --color-text-faint: #3D5475;

  /* Accents */
  --color-cyan: #00D4FF;
  --color-cyan-dim: rgba(0, 212, 255, 0.15);
  --color-cyan-glow: rgba(0, 212, 255, 0.25);
  --color-green: #00FF88;
  --color-green-dim: rgba(0, 255, 136, 0.15);

  /* Silver for LLC — v2.0 corrected to match logo spec */
  --color-silver: #8A9AB0;

  /* Cyan bright — hover state (replaces hardcoded #1ADEFF) */
  --color-cyan-bright: #33DDFF;

  /* V-mark charcoal — for SVG watermark layer */
  --color-v-mark: #1A1A1A;

  /* Type scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Fonts */
  --font-display: 'Space Grotesk', 'Helvetica Neue', system-ui, sans-serif;
  --font-body: 'Space Grotesk', 'Helvetica Neue', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;

  /* Radii */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* Transitions */
  --t-fast: 150ms cubic-bezier(0.16, 1, 0.3, 1);
  --t-med: 280ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-card: 0 1px 3px rgba(0,0,0,0.4), 0 8px 24px rgba(0,0,0,0.3);
  --shadow-glow-cyan: 0 0 24px rgba(0, 212, 255, 0.2);
  --shadow-glow-green: 0 0 20px rgba(0, 255, 136, 0.2);

  /* Layout */
  --content-default: 1100px;
  --content-narrow: 700px;
}

/* ─── 2. RESET & BASE ───────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  text-size-adjust: none;
}

body {
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

ul[role="list"], ol[role="list"] { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  text-wrap: balance;
  line-height: 1.1;
}

p, li, figcaption { text-wrap: pretty; }

button { cursor: pointer; background: none; border: none; }

a { color: inherit; text-decoration: none; }

::selection {
  background: rgba(0, 212, 255, 0.2);
  color: var(--color-text);
}

:focus-visible {
  outline: 2px solid var(--color-cyan);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

@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;
  }
}

/* ─── 3. LAYOUT UTILITIES ───────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--content-default);
  margin-inline: auto;
  padding-inline: clamp(var(--space-5), 5vw, var(--space-12));
}

.container--narrow {
  max-width: var(--content-narrow);
}

.section {
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(var(--space-10), 5vw, var(--space-16));
}

.section-label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-cyan);
  text-transform: uppercase;
  display: block;
  margin-bottom: var(--space-3);
}

.section-title {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

.section-sub {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 52ch;
  margin-inline: auto;
}

/* ─── 4. WORDMARK ───────────────────────────────────────── */
.wm-velox { color: #FFFFFF; font-weight: 700; }
.wm-arb   { color: var(--color-cyan); font-weight: 700; }
.wm-llc   { color: var(--color-silver); font-weight: 500; font-size: 0.75em; letter-spacing: 0.06em; }

/* ─── 5. BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-md);
  padding: 0.65em 1.5em;
  transition: all var(--t-fast);
  white-space: nowrap;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn--primary {
  background: var(--color-cyan);
  color: #0A1628;
}

.btn--primary:hover {
  background: var(--color-cyan-bright);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.4), 0 4px 16px rgba(0,0,0,0.3);
  transform: translateY(-1px);
}

.btn--primary:active { transform: translateY(0); }

.btn--outline {
  background: transparent;
  color: var(--color-cyan);
  border: 1.5px solid rgba(0, 212, 255, 0.4);
}

.btn--outline:hover {
  background: var(--color-cyan-dim);
  border-color: var(--color-cyan);
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.2);
}

.btn--ghost {
  background: transparent;
  color: var(--color-text-muted);
  border: 1.5px solid var(--color-border);
}

.btn--ghost:hover {
  color: var(--color-text);
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.04);
}

.btn--nav {
  background: transparent;
  color: var(--color-cyan);
  border: 1.5px solid rgba(0, 212, 255, 0.4);
  font-size: var(--text-xs);
  padding: 0.5em 1.2em;
  letter-spacing: 0.04em;
}

.btn--nav:hover {
  background: var(--color-cyan-dim);
  border-color: var(--color-cyan);
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.2);
}

.btn--lg {
  font-size: var(--text-base);
  padding: 0.8em 2em;
}

.btn--full { width: 100%; }

.btn--glow:hover {
  box-shadow: 0 0 32px rgba(0, 212, 255, 0.5), 0 8px 24px rgba(0,0,0,0.4);
  transform: translateY(-2px);
}

/* ─── 6. NAVIGATION ─────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-divider);
  transition: box-shadow var(--t-med);
}

.nav--scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
  border-bottom-color: var(--color-border);
}

.nav__inner {
  max-width: var(--content-default);
  margin-inline: auto;
  padding-inline: clamp(var(--space-5), 5vw, var(--space-12));
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
}

.nav__wordmark {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* ─── 7. HERO ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: clamp(var(--space-20), 10vw, var(--space-24));
  padding-inline: clamp(var(--space-5), 5vw, var(--space-12));
  text-align: center;
  overflow: hidden;
}

/* Grid background */
.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(0,0,0,0.6) 0%, transparent 100%);
  pointer-events: none;
}

/* Large hero crosshair */
.hero__crosshair-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0.12;
  width: min(60vw, 500px);
  height: min(60vw, 500px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__crosshair {
  width: 100%;
  height: 100%;
}

/* Animated pulse rings on hero crosshair */
.pulse-ring {
  transform-origin: 60px 60px;
}

.pulse-ring--1 { animation: pulse-expand 3s ease-out infinite; }
.pulse-ring--2 { animation: pulse-expand 3s ease-out infinite 0.6s; }
.pulse-ring--3 { animation: pulse-expand 3s ease-out infinite 1.2s; }

@keyframes pulse-expand {
  0% { opacity: 0.8; transform: scale(0.95); }
  50% { opacity: 1; }
  100% { opacity: 0.2; transform: scale(1.08); }
}

/* Scan ring — rotating arc */
.scan-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--color-cyan);
  animation: scan-rotate 4s linear infinite;
  opacity: 0.5;
}

@keyframes scan-rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Hero content */
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--color-cyan-dim);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: var(--radius-full);
  padding: var(--space-1) var(--space-4);
  margin-bottom: var(--space-6);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--color-cyan);
  letter-spacing: 0.05em;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--color-green);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes blink {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px var(--color-green); }
  50% { opacity: 0.4; box-shadow: none; }
}

.hero__headline {
  font-size: var(--text-3xl);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: var(--space-6);
  color: #FFFFFF;
  letter-spacing: -0.02em;
}

.hero__subhead {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-8);
  max-width: 58ch;
  margin-inline: auto;
}

.hero__cta-group {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── 8. TELEGRAM ALERT CARD ────────────────────────────── */
.tg-alert {
  position: relative;
  z-index: 3;
  margin-top: clamp(var(--space-10), 5vw, var(--space-16));
  background: #17212B;
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  width: min(360px, 90vw);
  box-shadow: var(--shadow-card), 0 0 40px rgba(0, 212, 255, 0.1);
  font-family: var(--font-mono);
  animation: float 5s ease-in-out infinite;
  text-align: left;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.tg-alert__header {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.tg-alert__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: #2B5278;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tg-alert__from {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text);
  flex: 1;
}

.tg-alert__time {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

.tg-alert__body { display: flex; flex-direction: column; gap: var(--space-3); }

.tg-alert__type {
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.tg-alert__type.arb {
  color: var(--color-green);
  text-shadow: 0 0 8px rgba(0, 255, 136, 0.4);
}

.tg-alert__game {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  letter-spacing: 0.03em;
}

.tg-alert__profit {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.tg-profit-label {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tg-profit-value {
  font-size: clamp(1.25rem, 1rem + 1vw, 1.75rem);
  font-weight: 700;
  color: var(--color-green);
  text-shadow: 0 0 12px rgba(0, 255, 136, 0.5);
  line-height: 1;
  white-space: nowrap;
}

.tg-alert__legs {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  background: rgba(0,0,0,0.2);
  border-radius: var(--radius-md);
  padding: var(--space-3);
}

.leg {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-xs);
}

.leg-book { color: var(--color-text-muted); }
.leg-odds { color: var(--color-text); }
.odds-val { color: var(--color-cyan); font-weight: 600; }

.tg-alert__stake {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  letter-spacing: 0.02em;
}

.tg-alert__cursor {
  display: inline-block;
  width: 8px;
  height: 14px;
  background: var(--color-cyan);
  margin-top: var(--space-2);
  opacity: 0.7;
  animation: cursor-blink 1s step-end infinite;
}

@keyframes cursor-blink {
  0%, 100% { opacity: 0.7; }
  50%       { opacity: 0; }
}

/* ─── 9. HOW IT WORKS ───────────────────────────────────── */
.how-it-works {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-surface) 50%, var(--color-bg) 100%);
}

.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: var(--space-6);
  align-items: start;
}

.step {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  position: relative;
  transition: border-color var(--t-med), box-shadow var(--t-med), transform var(--t-med);
}

.step:hover {
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: var(--shadow-glow-cyan);
  transform: translateY(-4px);
}

.step__number {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-cyan);
  letter-spacing: 0.15em;
  opacity: 0.6;
  margin-bottom: var(--space-4);
}

.step__icon {
  margin-inline: auto;
  margin-bottom: var(--space-5);
  width: 56px;
  height: 56px;
  background: var(--color-cyan-dim);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.step__title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.step__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

.step__connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: clamp(80px, 12vw, 110px);
  gap: var(--space-2);
}

.connector-line {
  width: 2px;
  height: 24px;
  background: linear-gradient(180deg, transparent, var(--color-cyan), transparent);
  display: none;
}

.connector-arrow {
  font-size: var(--text-xl);
  color: var(--color-cyan);
  opacity: 0.4;
  animation: arrow-pulse 2s ease-in-out infinite;
}

@keyframes arrow-pulse {
  0%, 100% { opacity: 0.4; transform: translateX(0); }
  50%       { opacity: 0.8; transform: translateX(4px); }
}

/* ─── 10. FEATURES GRID ─────────────────────────────────── */
.features {
  background: var(--color-bg);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.feature-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  transition: border-color var(--t-med), box-shadow var(--t-med), transform var(--t-med);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.4), transparent);
  opacity: 0;
  transition: opacity var(--t-med);
}

.feature-card:hover {
  border-color: rgba(0, 212, 255, 0.25);
  box-shadow: var(--shadow-glow-cyan);
  transform: translateY(-4px);
}

.feature-card:hover::before { opacity: 1; }

.feature-card__icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--color-cyan-dim), rgba(0, 255, 136, 0.08));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
}

.feature-card__title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.feature-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ─── 11. PRICING ───────────────────────────────────────── */
.pricing {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-surface) 100%);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  align-items: stretch;
}

.pricing-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  position: relative;
  transition: transform var(--t-med), box-shadow var(--t-med);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.pricing-card--pro {
  border-color: var(--color-cyan);
  box-shadow: 0 0 0 1px rgba(0, 212, 255, 0.2), var(--shadow-glow-cyan);
  background: linear-gradient(160deg, #0F2040 0%, var(--color-surface) 60%);
}

.pricing-card--pro:hover {
  box-shadow: 0 0 0 1px rgba(0, 212, 255, 0.4), 0 0 48px rgba(0, 212, 255, 0.25), 0 12px 40px rgba(0,0,0,0.4);
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-green);
  color: #0A1628;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-full);
  white-space: nowrap;
  box-shadow: 0 0 16px rgba(0, 255, 136, 0.4);
}

.pricing-card__header { display: flex; flex-direction: column; gap: var(--space-3); }

.pricing-card__name {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
}

.pricing-card--pro .pricing-card__name { color: var(--color-cyan); }

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: var(--space-1);
}

.price-amount {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: #FFFFFF;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

.price-period {
  font-size: var(--text-base);
  color: var(--color-text-muted);
}

.pricing-card__tagline {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
}

.pricing-card__features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  list-style: none;
  margin: 0;
  padding: 0;
}

.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text);
  line-height: 1.45;
}

.pricing-card__features li.unavail {
  color: var(--color-text-faint);
  text-decoration: line-through;
  text-decoration-color: rgba(255,255,255,0.12);
}

.check {
  color: var(--color-green);
  font-weight: 700;
  flex-shrink: 0;
  font-size: var(--text-sm);
}

.x-mark {
  color: var(--color-text-faint);
  flex-shrink: 0;
  font-size: var(--text-sm);
}

/* ─── 12. TESTIMONIALS ──────────────────────────────────── */
.testimonials {
  background: var(--color-bg);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.tcard {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  transition: border-color var(--t-med), transform var(--t-med);
}

.tcard:hover {
  border-color: rgba(0, 212, 255, 0.2);
  transform: translateY(-3px);
}

.tcard__header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.tcard__avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--color-cyan-dim), rgba(0, 255, 136, 0.1));
  border: 1.5px solid rgba(0, 212, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-cyan);
  flex-shrink: 0;
}

.tcard__handle {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
}

.tcard__meta {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  font-family: var(--font-mono);
}

.tcard__quote {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}

.tcard__stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--color-green-dim);
  border: 1px solid rgba(0, 255, 136, 0.15);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
}

.tcard__stat-label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tcard__stat-value {
  font-family: var(--font-mono);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-green);
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.4);
}

/* ─── 13. FAQ ───────────────────────────────────────────── */
.faq { background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-surface) 100%); }

.faq__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--t-med);
}

.faq-item[open] {
  border-color: rgba(0, 212, 255, 0.25);
}

.faq-item__q {
  list-style: none;
  padding: var(--space-6);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  user-select: none;
  transition: color var(--t-fast);
}

.faq-item__q::-webkit-details-marker { display: none; }

.faq-item__q::after {
  content: '+';
  font-size: var(--text-xl);
  color: var(--color-cyan);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform var(--t-med);
  line-height: 1;
}

.faq-item[open] .faq-item__q::after {
  transform: rotate(45deg);
}

.faq-item__q:hover { color: var(--color-cyan); }

.faq-item__a {
  padding: 0 var(--space-6) var(--space-6);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.75;
  border-top: 1px solid var(--color-divider);
}

.faq-item__a p { padding-top: var(--space-4); max-width: none; }

/* ─── 14. TRIAL CTA ─────────────────────────────────────── */
.trial-cta {
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.trial-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(0, 212, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.trial-cta__inner {
  text-align: center;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
}

.trial-cta__crosshair { opacity: 0.6; }

.trial-cta__title {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.02em;
}

.trial-cta__sub {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 52ch;
  line-height: 1.65;
}

/* ─── 15. FOOTER ────────────────────────────────────────── */
.footer {
  background: #060E1A;
  border-top: 1px solid var(--color-divider);
  padding-block: var(--space-12) var(--space-8);
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid var(--color-divider);
  flex-wrap: wrap;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.footer__wordmark {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.footer__links {
  display: flex;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.footer__links a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--t-fast);
}

.footer__links a:hover { color: var(--color-cyan); }

.footer__disclosure {
  margin-block: var(--space-8);
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 165, 0, 0.12);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-8);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.75;
}

.footer__disclosure strong { color: var(--color-text); }
.footer__disclosure a { color: var(--color-cyan); text-decoration: underline; }
.footer__disclosure a:hover { color: var(--color-cyan-bright); }

.footer__bottom {
  display: flex;
  justify-content: center;
}

.footer__copy {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

/* ─── 16. SCROLL ANIMATIONS ─────────────────────────────── */
.fade-in-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: var(--delay, 0ms);
}

.fade-in-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── 17. RESPONSIVE ────────────────────────────────────── */
.break-md { display: none; }

@media (min-width: 768px) {
  .break-md { display: block; }
}

/* Tablet: collapse steps and grids */
@media (max-width: 900px) {
  .steps {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .step__connector {
    flex-direction: row;
    padding-top: 0;
    justify-content: center;
  }

  .connector-arrow {
    transform: rotate(90deg);
    animation: none;
    opacity: 0.3;
  }

  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }
}

@media (max-width: 600px) {
  .hero__headline { letter-spacing: -0.01em; }
  .hero__cta-group { flex-direction: column; align-items: stretch; }
  .hero__cta-group .btn { text-align: center; }

  .features__grid {
    grid-template-columns: 1fr;
  }

  .footer__top {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-5);
  }

  .footer__disclosure {
    padding: var(--space-5);
  }
}
