/* ============================================================
   GRAHAM FIRM AI — Neon Purple Futuristic Design System
   Based on: landing-page-neon-purple-design-prompt.md
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  --bg-base: #08060F;
  --bg-deep: #0D0818;
  --bg-panel: #151022;
  --bg-panel-2: #1A0B2E;
  --purple: #B24BFF;
  --purple-light: #C77DFF;
  --purple-deep: #7A2BFF;
  --purple-mid: #9D4DFF;
  --purple-soft: #A78BFA;
  --cyan: #4DE8F4;
  --cyan-light: #7CF5FF;
  --indigo: #4C1D95;
  --violet-deep: #1A0B2E;
  --nav-bg: rgba(26, 10, 51, .88); /* matches logo.webp dark indigo */
  --text-primary: #F3EEFF;
  --text-secondary: #8B84A8;
  --font-display: 'Orbitron', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --nav-h: 68px;
  --radius: 14px;
  --glow-purple: 0 0 24px rgba(178, 75, 255, .45);
  --glow-purple-2: 0 0 24px rgba(122, 43, 255, .4);
  --glow-cyan: 0 0 20px rgba(77, 232, 244, .35);
  --gradient-text: linear-gradient(90deg, #B24BFF 0%, #9D4DFF 50%, #4DE8F4 100%);
  --gradient-panel: radial-gradient(120% 140% at 50% 0%, #4C1D95 0%, #1A0B2E 45%, #0D0818 100%);
  /* Elevation scale (DESIGN.md) */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .3);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, .4), 0 2px 4px -2px rgba(0, 0, 0, .3);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, .5), 0 4px 6px -4px rgba(0, 0, 0, .4);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, .6), 0 8px 10px -6px rgba(0, 0, 0, .4);
  --shadow-glow-purple: 0 0 24px rgba(178, 75, 255, .45);
  --shadow-glow-cyan: 0 0 20px rgba(77, 232, 244, .35);
  /* Motion tokens (DESIGN.md) */
  --dur-fast: 150ms;
  --dur-normal: 250ms;
  --dur-slow: 600ms;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-in-out: cubic-bezier(.4, 0, .2, 1);
}

/* ---------- Reset / Base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }

body {
  background: var(--bg-base);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img, svg { display: block; max-width: 100%; }

::selection { background: rgba(178, 75, 255, .35); color: var(--text-primary); }

/* DESIGN.md — focus-visible rings everywhere */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Background texture ---------- */
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(178, 75, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(178, 75, 255, .05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 100%);
}

/* Scanlines overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent 0 3px,
    rgba(0, 0, 0, .06) 3px 4px
  );
  opacity: .35;
}

/* ---------- Typography helpers ---------- */
.micro-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 16px;
  display: inline-block;
}
.micro-label.dark { color: #0A0614; }

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: .02em;
  color: var(--text-primary);
  margin-bottom: 18px;
  text-shadow: 0 0 30px rgba(178, 75, 255, .35);
}
.section-sub { max-width: 720px; margin-bottom: 24px; }
.section-note {
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-secondary);
  border-left: 2px solid var(--purple);
  padding-left: 16px;
  opacity: .85;
}
.role { font-family: var(--font-mono); font-size: 10px; letter-spacing: .18em; color: var(--cyan); text-transform: uppercase; margin-bottom: 14px; }

/* ---------- Stat callouts (large impactful banners) ---------- */
.stat-callout {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 28px;
  margin-top: 28px;
  padding: 28px 32px;
  border: 1px solid rgba(178, 75, 255, .3);
  border-radius: 16px;
  background:
    radial-gradient(120% 180% at 0% 0%, rgba(76, 29, 149, .35), transparent 60%),
    linear-gradient(160deg, var(--bg-panel), rgba(21, 16, 34, .6));
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(178, 75, 255, .12);
  position: relative;
  overflow: hidden;
}
.stat-callout::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--purple), var(--cyan));
  box-shadow: 0 0 14px rgba(178, 75, 255, .8);
}
.stat-callout-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 0 24px rgba(178, 75, 255, .45));
  white-space: nowrap;
}
.stat-callout-body { display: flex; flex-direction: column; gap: 8px; }
.stat-callout-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--cyan-light);
  text-shadow: 0 0 10px rgba(77, 232, 244, .4);
}
.stat-callout-body p { font-size: 15px; color: rgba(243, 238, 255, .8); margin: 0; }

/* ---------- Layout ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 56px 0; position: relative; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: box-shadow .3s ease, transform .2s ease, background .3s ease, border-color .3s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--purple-deep));
  color: #fff;
  box-shadow: var(--glow-purple);
}
.btn-primary:hover { box-shadow: 0 0 42px rgba(178, 75, 255, .8), 0 0 60px rgba(122, 43, 255, .4); }
.btn-ghost {
  background: transparent;
  color: var(--purple-light);
  border-color: rgba(178, 75, 255, .5);
}
.btn-ghost:hover { box-shadow: var(--glow-purple); border-color: var(--purple-light); color: #fff; }
.btn-dark {
  background: #0A0614;
  color: var(--purple-light);
  border-color: rgba(255, 255, 255, .2);
}
.btn-dark:hover { box-shadow: 0 0 30px rgba(77, 232, 244, .4); border-color: var(--cyan); }
.btn-lg { padding: 18px 40px; font-size: 13px; }
.btn-sm { padding: 12px 22px; font-size: 10px; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(178, 75, 255, .18);
  box-shadow: 0 1px 0 rgba(178, 75, 255, .12);
}
/* Gradient hairline under nav */
.nav::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--purple), var(--cyan), transparent);
  opacity: .5;
  pointer-events: none;
}
.nav-inner {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-img {
  height: 56px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 12px rgba(178, 75, 255, .55));
  transition: filter .3s ease;
}
.logo:hover .logo-img { filter: drop-shadow(0 0 20px rgba(178, 75, 255, .95)); }

.logo-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .18em;
  color: var(--cyan-light);
  background: rgba(77, 232, 244, .08);
  border: 1px solid rgba(77, 232, 244, .25);
  border-radius: 20px;
  padding: 4px 10px;
  text-shadow: 0 0 8px rgba(77, 232, 244, .5);
}
.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  animation: status-blink 1.6s ease-in-out infinite;
}
@keyframes status-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: .35; }
}
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a:not(.nav-cta) {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--text-secondary);
  transition: color .25s ease, text-shadow .25s ease;
}
.nav-links a:not(.nav-cta):hover { color: var(--purple-light); text-shadow: 0 0 12px rgba(178, 75, 255, .8); }
.nav-links a.active { color: var(--cyan-light); text-shadow: 0 0 12px rgba(77, 232, 244, .6); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -6px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  box-shadow: 0 0 8px rgba(77, 232, 244, .7);
}
.nav-links a { position: relative; }
.nav-cta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .16em;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--purple-deep));
  padding: 10px 18px;
  border-radius: 8px;
  box-shadow: var(--glow-purple);
  transition: box-shadow .3s ease;
}
.nav-cta:hover { box-shadow: 0 0 30px rgba(178, 75, 255, .9); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--purple-light); margin: 5px 0; transition: transform .3s ease, opacity .3s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  padding: calc(var(--nav-h) + 20px) 0 70px;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(76, 29, 149, .6), transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 110%, rgba(122, 43, 255, .22), transparent 60%),
    var(--bg-base);
  overflow: hidden;
}
.hero-banner {
  width: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}
.hero-logo-wrap {
  width: 100%;
  max-width: 1400px;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0;
}
.hero-logo {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 42px rgba(178, 75, 255, .5));
  animation: logo-float 7s ease-in-out infinite;
}
@keyframes logo-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-inner { max-width: 900px; position: relative; z-index: 2; padding: 0 24px; margin-top: 6px; }

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Ambient full-page particle field */
#ambient-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: .6;
}
body > * { position: relative; z-index: 1; }
.nav, .hero, .footer { z-index: 2; }

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(34px, 6.5vw, 78px);
  line-height: 1.08;
  letter-spacing: .01em;
  color: var(--text-primary);
  margin: 10px 0 24px;
}
.hero-title .line { display: block; text-shadow: 0 0 40px rgba(178, 75, 255, .5); }
.hero-sub { max-width: 620px; margin: 0 auto 34px; font-size: 17px; color: var(--text-secondary); }
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }

.hero-stats { display: flex; justify-content: center; gap: 60px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  color: var(--text-primary);
  text-shadow: 0 0 18px rgba(77, 232, 244, .5);
}
.stat-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--text-secondary); }

/* ---------- Cards ---------- */
.card {
  background: linear-gradient(160deg, var(--bg-panel) 0%, rgba(21, 16, 34, .55) 100%);
  border: 1px solid rgba(178, 75, 255, .22);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  box-shadow: inset 0 1px 0 rgba(178, 75, 255, .12), 0 0 24px rgba(178, 75, 255, .04);
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}
/* Futuristic-minimalist corner brackets (HUD targeting frame) */
.card::before,
.card::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  pointer-events: none;
  transition: width .3s ease, height .3s ease, border-color .3s ease;
}
.card::before {
  top: 6px;
  left: 6px;
  border-top: 2px solid var(--purple);
  border-left: 2px solid var(--purple);
  border-top-left-radius: 6px;
}
.card::after {
  bottom: 6px;
  right: 6px;
  border-bottom: 2px solid var(--purple);
  border-right: 2px solid var(--purple);
  border-bottom-right-radius: 6px;
}
.card:hover {
  border-color: rgba(178, 75, 255, .6);
  box-shadow: var(--glow-purple), inset 0 1px 0 rgba(178, 75, 255, .2);
  transform: translateY(-3px);
}
.card:hover::before,
.card:hover::after {
  width: 22px;
  height: 22px;
  border-color: var(--cyan);
}
.card-status {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(178, 75, 255, .65);
  margin-bottom: 12px;
  display: block;
}
.card-icon {
  font-size: 26px;
  line-height: 1;
  margin-bottom: 18px;
  color: var(--cyan);
  text-shadow: var(--glow-cyan);
}
.card h3 { font-family: var(--font-display); font-size: 17px; letter-spacing: .03em; color: var(--text-primary); margin-bottom: 12px; }
.card p { font-size: 14px; color: var(--text-secondary); }
.card .tick-list li { font-size: 13.5px; color: var(--text-secondary); margin-bottom: 8px; }

/* ---------- Split sections ---------- */
.split-grid { display: grid; grid-template-columns: 40% 60%; gap: 50px; align-items: center; margin-top: 20px; }
.feature-block { margin: 26px 0; }
.feature-block h3 { font-family: var(--font-display); font-size: 15px; letter-spacing: .05em; color: var(--text-primary); margin-bottom: 12px; }

.tick-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 14.5px;
  color: var(--text-secondary);
}
.tick-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--purple);
  text-shadow: var(--glow-purple);
}

/* ---------- Holo panels ---------- */
.holo-panel {
  background: linear-gradient(160deg, rgba(21, 16, 34, .9), rgba(10, 6, 20, .85));
  border: 1px solid;
  border-image: linear-gradient(135deg, var(--purple), var(--cyan)) 1;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 0 40px rgba(178, 75, 255, .12), inset 0 0 40px rgba(178, 75, 255, .05);
  position: relative;
}
.holo-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, transparent 50%, rgba(77, 232, 244, .06));
  pointer-events: none;
}
.panel-title { font-family: var(--font-mono); font-size: 11px; letter-spacing: .22em; color: var(--purple-light); margin-bottom: 22px; display: flex; align-items: center; gap: 10px; }
.panel-title .live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
  animation: status-blink 1.2s ease-in-out infinite;
}
.panel-foot { font-family: var(--font-mono); font-size: 9px; letter-spacing: .2em; color: var(--text-secondary); margin-top: 20px; opacity: .8; }

/* Scanline sweep across holo-panel */
.holo-panel { position: relative; overflow: hidden; }
.holo-panel::before {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: -20%;
  height: 25%;
  background: linear-gradient(180deg, transparent, rgba(77, 232, 244, .12), transparent);
  animation: scan-sweep 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}
@keyframes scan-sweep {
  0% { top: -20%; }
  100% { top: 120%; }
}

.metric { margin-bottom: 18px; }
.metric-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-secondary); margin-bottom: 7px; }
.metric-bar {
  display: block;
  height: 20px;
  border-radius: 4px;
  background: rgba(178, 75, 255, .08);
  border: 1px solid rgba(178, 75, 255, .25);
  overflow: hidden;
  position: relative;
}
.bar {
  display: block;
  height: 100%;
  width: var(--w);
  min-width: 60px;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  box-shadow: 0 0 12px rgba(77, 232, 244, .5);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  line-height: 20px;
  padding-left: 8px;
  letter-spacing: .05em;
  border-radius: 3px;
}
.metric-compare { font-family: var(--font-mono); font-size: 10px; color: var(--purple-soft); margin-top: 5px; letter-spacing: .08em; }

/* ---------- AI Voice section ---------- */
.voice-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 50% 20%, rgba(76, 29, 149, .35), transparent 60%),
    rgba(8, 6, 15, .4);
}
.voice-section .container { position: relative; z-index: 2; }
#voice-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: .55;
}
.voice-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 22px 0 26px; }
.vchip {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 12px;
  border: 1px solid rgba(178, 75, 255, .3);
  border-radius: 10px;
  background: rgba(21, 16, 34, .6);
  box-shadow: var(--shadow-sm);
}
.vchip-num { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--purple-light); text-shadow: var(--glow-purple); }
.vchip-label { font-family: var(--font-mono); font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: var(--text-secondary); }

.voice-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 0 0 28px; }
.vstep {
  position: relative;
  padding: 16px 14px;
  border: 1px solid rgba(178, 75, 255, .22);
  border-radius: 10px;
  background: linear-gradient(160deg, var(--bg-panel), rgba(21, 16, 34, .5));
  box-shadow: var(--shadow-md);
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}
.vstep:hover { border-color: rgba(178, 75, 255, .6); box-shadow: var(--glow-purple); transform: translateY(-2px); }
.vstep-num { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--cyan); text-shadow: var(--glow-cyan); display: block; margin-bottom: 6px; }
.vstep-title { font-family: var(--font-mono); font-size: 11px; letter-spacing: .18em; color: var(--text-primary); display: block; margin-bottom: 6px; }
.vstep-desc { font-size: 12.5px; color: var(--text-secondary); }

/* ---------- Calculator ---------- */
.calc { margin-top: 36px; }
.calc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: center; }
.calc-item { display: flex; flex-direction: column; gap: 6px; padding: 18px 10px; border: 1px solid rgba(77, 232, 244, .2); border-radius: 10px; background: rgba(77, 232, 244, .04); }
.calc-num { font-family: var(--font-display); font-weight: 700; font-size: 28px; color: var(--cyan-light); text-shadow: var(--glow-cyan); }
.calc-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--text-secondary); }

/* ---------- Timeline ---------- */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 24px 0 40px;
  position: relative;
}
.timeline::before { display: none; }
.timeline-line {
  position: absolute;
  top: 34px;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple), var(--cyan), transparent);
  opacity: .5;
  transform: scaleX(0);
  transform-origin: left;
}
.timeline-step { padding-top: 24px; position: relative; }
.timeline-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bg-base);
  border: 2px solid var(--purple);
  box-shadow: var(--glow-purple);
}
.step-num { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--purple); text-shadow: var(--glow-purple); }
.timeline-step h3 { font-family: var(--font-display); font-size: 15px; color: var(--text-primary); margin: 8px 0 6px; }
.timeline-step h3 em { display: block; font-family: var(--font-mono); font-style: normal; font-size: 10px; letter-spacing: .1em; color: var(--cyan); margin-top: 4px; }
.timeline-step p { font-size: 13px; color: var(--text-secondary); }

.impact-row {
  display: flex;
  justify-content: space-between;
  padding: 13px 4px;
  border-bottom: 1px solid rgba(178, 75, 255, .15);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
}
.impact-row span:first-child { color: var(--text-secondary); text-transform: uppercase; font-size: 10px; letter-spacing: .2em; }
.impact-row span:last-child { color: var(--cyan-light); text-shadow: var(--glow-cyan); }

/* ---------- Gradient CTA panel ---------- */
.gradient-panel {
  border-radius: 22px;
  border: 1px solid rgba(178, 75, 255, .4);
  background: var(--gradient-panel);
  box-shadow: 0 0 60px rgba(122, 43, 255, .3);
  position: relative;
  overflow: hidden;
  animation: panel-breathe 7s ease-in-out infinite;
}
@keyframes panel-breathe {
  0%, 100% { box-shadow: 0 0 40px rgba(122, 43, 255, .25); }
  50% { box-shadow: 0 0 70px rgba(122, 43, 255, .5); }
}
.gp-inner { padding: 56px 32px; text-align: center; position: relative; z-index: 1; }
.gp-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(28px, 4vw, 44px); color: var(--text-primary); margin-bottom: 16px; }
.gp-gradient { background: linear-gradient(90deg, var(--purple-light), var(--cyan-light)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.gp-sub { max-width: 620px; margin: 0 auto 30px; color: rgba(243, 238, 255, .85); }

/* ---------- Why Now ---------- */
.whynow-stats { display: flex; justify-content: space-between; gap: 24px; margin: 24px 0 40px; flex-wrap: wrap; }
.whynow-stats .stat { flex: 1; min-width: 180px; align-items: center; text-align: center; padding: 24px 12px; border: 1px solid rgba(178, 75, 255, .2); border-radius: var(--radius); background: rgba(21, 16, 34, .5); }

/* ---------- Testimonials ---------- */
.tcard {
  background: var(--bg-panel);
  border: 1px solid rgba(178, 75, 255, .3);
  border-radius: var(--radius);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.tcard:hover { border-color: rgba(178, 75, 255, .7); box-shadow: var(--glow-purple); }
.tquote { font-size: 14.5px; font-style: italic; color: var(--text-primary); }
.tquote::before { content: '“'; color: var(--purple-soft); text-shadow: var(--glow-purple-2); font-size: 22px; margin-right: 2px; }
.tquote::after { content: '”'; color: var(--purple-soft); text-shadow: var(--glow-purple-2); font-size: 22px; margin-left: 2px; }
.tmeta { display: flex; justify-content: space-between; align-items: center; gap: 10px; flex-wrap: wrap; }
.tname { font-family: var(--font-mono); font-size: 10px; letter-spacing: .2em; color: var(--cyan); text-transform: uppercase; }
.tag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--purple-light);
  border: 1px solid rgba(178, 75, 255, .5);
  border-radius: 4px;
  padding: 4px 8px;
  background: transparent;
  box-shadow: 0 0 8px rgba(178, 75, 255, .15);
}

/* ---------- Pricing ---------- */
.value-legend { font-family: var(--font-display); font-weight: 700; color: var(--purple-light); text-shadow: var(--glow-purple); }
.price-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: rgba(21, 16, 34, .55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(178, 75, 255, .25);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(178, 75, 255, .14);
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}
/* HUD corner brackets */
.price-card::before,
.price-card::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  pointer-events: none;
  transition: width .3s ease, height .3s ease, border-color .3s ease;
}
.price-card::before {
  top: 6px;
  left: 6px;
  border-top: 2px solid var(--purple);
  border-left: 2px solid var(--purple);
  border-top-left-radius: 6px;
}
.price-card::after {
  bottom: 6px;
  right: 6px;
  border-bottom: 2px solid var(--purple);
  border-right: 2px solid var(--purple);
  border-bottom-right-radius: 6px;
}
.price-card:hover {
  border-color: rgba(178, 75, 255, .6);
  box-shadow: var(--glow-purple), inset 0 1px 0 rgba(178, 75, 255, .2);
  transform: translateY(-4px);
}
.price-card:hover::before,
.price-card:hover::after { width: 22px; height: 22px; border-color: var(--cyan); }
.price-card h3 { font-family: var(--font-display); font-size: 18px; color: var(--text-primary); letter-spacing: .03em; }
.price-card.featured {
  border-color: var(--purple-mid);
  box-shadow: 0 0 30px rgba(122, 43, 255, .3), inset 0 0 30px rgba(122, 43, 255, .05), inset 0 1px 0 rgba(178, 75, 255, .18);
  background: linear-gradient(160deg, rgba(76, 29, 149, .5), rgba(21, 16, 34, .8));
  backdrop-filter: blur(14px);
  transform: translateY(-8px);
}
.price-card.featured:hover { box-shadow: 0 0 50px rgba(122, 43, 255, .55), inset 0 1px 0 rgba(178, 75, 255, .2); transform: translateY(-10px); }

/* POPULAR ribbon */
.price-ribbon {
  position: absolute;
  top: -12px;
  right: 18px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--purple-deep));
  padding: 5px 12px;
  border-radius: 20px;
  box-shadow: var(--glow-purple);
}

/* Price per minute highlight */
.price-min-row { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.price-min {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 30px;
  color: var(--cyan-light);
  text-shadow: var(--glow-cyan);
}
.price-min-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .16em;
  color: var(--text-secondary);
  text-transform: uppercase;
}
.value { font-size: 26px; }
.value-text { font-family: var(--font-display); font-size: 16px; letter-spacing: .1em; color: var(--cyan-light); text-shadow: var(--glow-cyan); }
.price-card .tick-list { flex: 1; }
.price-card .btn { align-self: flex-start; }

/* ---------- Closing CTA banner ---------- */
.cta-banner {
  position: relative;
  padding: 130px 24px;
  text-align: center;
  overflow: hidden;
  background: var(--bg-deep);
}
.beams {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 0%, rgba(178, 75, 255, .14) 50%, transparent 100%),
    repeating-linear-gradient(90deg, transparent 0 90px, rgba(178, 75, 255, .12) 90px 92px);
  animation: beams-move 14s linear infinite;
}
@keyframes beams-move { from { background-position: 0 0, 0 0; } to { background-position: 0 0, 92px 0; } }
.cta-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.cta-title { font-family: var(--font-display); font-weight: 900; font-size: clamp(30px, 5vw, 56px); color: var(--text-primary); margin-bottom: 20px; text-shadow: 0 0 40px rgba(178, 75, 255, .5); }
.cta-sub { margin-bottom: 36px; color: var(--text-secondary); }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid rgba(178, 75, 255, .18); background: #060409; padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.4fr; gap: 40px; margin-bottom: 50px; }
.footer-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: .24em; color: var(--purple-light); margin-bottom: 18px; }
.footer-text { font-size: 14px; color: var(--text-secondary); }
.footer-col a { display: block; font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; color: var(--text-secondary); padding: 5px 0; transition: color .25s ease, text-shadow .25s ease; }
.footer-col a:hover { color: var(--purple-light); text-shadow: 0 0 12px rgba(178, 75, 255, .8); }

.email-form { display: flex; gap: 10px; margin-bottom: 24px; flex-wrap: wrap; }
.email-form input {
  flex: 1;
  min-width: 180px;
  background: rgba(21, 16, 34, .8);
  border: 1px solid rgba(178, 75, 255, .3);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--text-primary);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  outline: none;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.email-form input::placeholder { color: rgba(139, 132, 168, .6); }
.email-form input:focus { border-color: var(--cyan); box-shadow: 0 0 18px rgba(77, 232, 244, .35); }

.socials { display: flex; gap: 14px; }
.socials a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(178, 75, 255, .35);
  border-radius: 8px;
  color: var(--purple-light);
  transition: box-shadow .3s ease, border-color .3s ease;
}
.socials svg { width: 17px; height: 17px; fill: currentColor; }
.socials a:hover { box-shadow: var(--glow-purple); border-color: var(--purple-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(178, 75, 255, .12);
  padding-top: 26px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .12em;
  color: rgba(139, 132, 168, .7);
}
.legal a { padding: 0 4px; }
.legal a:hover { color: var(--purple-light); }

/* ---------- Scroll progress bar (2026 trend) ---------- */
#scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 2000;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  transform-origin: left;
  transform: scaleX(0);
  box-shadow: 0 0 12px rgba(178, 75, 255, .6);
}

/* ---------- Marquee divider (2026 kinetic trend) ---------- */
.marquee {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(178, 75, 255, .18);
  border-bottom: 1px solid rgba(178, 75, 255, .18);
  background: rgba(10, 6, 20, .6);
  padding: 18px 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 48px;
  padding-left: 48px;
  animation: marquee-scroll 26s linear infinite;
  will-change: transform;
}
.marquee-track span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--purple-light);
  text-shadow: 0 0 10px rgba(178, 75, 255, .4);
}
.marquee-track span em { font-style: normal; color: var(--cyan); text-shadow: 0 0 10px rgba(77, 232, 244, .4); margin: 0 24px; }
@keyframes marquee-scroll { to { transform: translateX(-50%); } }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { display: none; }
  .split-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .price-card.featured { transform: none; }
  .voice-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    flex-direction: column;
    background: rgba(26, 10, 51, .97);
    border-bottom: 1px solid rgba(178, 75, 255, .25);
    padding: 24px;
    gap: 22px;
    transform: translateY(-120%);
    transition: transform .35s ease;
    z-index: 999;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: block; }
  .logo-img { height: 44px; }
  .hero-stats { gap: 30px; }
  .calc-grid { grid-template-columns: 1fr; }
  .gp-inner { padding: 56px 24px; }
  .cta-banner { padding: 90px 24px; }
}

@media (max-width: 480px) {
  .grid-4, .grid-3 { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 48px 0; }
  .hero { padding-bottom: 50px; }
  .whynow-stats { flex-direction: column; }
}
