/* ═══════════════════════════════════════════════════
   VOICEOS — DESIGN SYSTEM
   Palette: Deep Space + Electric Violet + Neon Cyan
   Fonts: Clash Display + Plus Jakarta Sans
═══════════════════════════════════════════════════ */

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

:root {
  --bg-base:       #0A0A0F;
  --bg-surface:    #12121A;
  --bg-elevated:   #1A1A28;
  --bg-glass:      rgba(255,255,255,0.04);
  --bg-glass-hover:rgba(255,255,255,0.07);

  --violet:        #7C3AED;
  --violet-light:  #9D5FF5;
  --violet-dim:    rgba(124,58,237,0.15);
  --cyan:          #06B6D4;
  --cyan-light:    #22D3EE;
  --cyan-dim:      rgba(6,182,212,0.15);
  --purple:        #A855F7;

  --text-primary:  #F8FAFC;
  --text-secondary:#94A3B8;
  --text-muted:    #475569;
  --border:        rgba(255,255,255,0.08);
  --border-bright: rgba(255,255,255,0.14);

  --grad-main:     linear-gradient(135deg, #7C3AED, #06B6D4);
  --grad-glow:     linear-gradient(135deg, rgba(124,58,237,0.4), rgba(6,182,212,0.4));
  --grad-text:     linear-gradient(135deg, #A855F7, #06B6D4);

  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     20px;
  --radius-xl:     28px;
  --radius-full:   9999px;

  --shadow-sm:     0 2px 8px rgba(0,0,0,0.4);
  --shadow-md:     0 8px 32px rgba(0,0,0,0.5);
  --shadow-lg:     0 20px 60px rgba(0,0,0,0.6);
  --shadow-violet: 0 0 40px rgba(124,58,237,0.3);
  --shadow-cyan:   0 0 40px rgba(6,182,212,0.2);

  --transition:    all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

/* ── CUSTOM CURSOR ── */
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, background 0.2s ease;
}
.cursor-ring {
  width: 32px; height: 32px;
  border: 1.5px solid rgba(124,58,237,0.6);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
}
.cursor-ring.hovering {
  width: 48px; height: 48px;
  border-color: var(--cyan);
  background: rgba(6,182,212,0.05);
}
@media (hover: none) {
  .cursor-dot, .cursor-ring { display: none; }
  body { cursor: auto; }
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Clash Display', 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }

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

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  background: var(--grad-main);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600; font-size: 0.95rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  border: none; cursor: pointer;
  position: relative; overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 0 0 0 rgba(124,58,237,0);
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-violet); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  background: transparent;
  color: var(--text-primary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600; font-size: 0.95rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  border: 1.5px solid var(--border-bright);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline:hover {
  border-color: var(--violet-light);
  background: var(--violet-dim);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  background: transparent;
  color: var(--text-secondary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500; font-size: 0.9rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  border: none; cursor: pointer;
  transition: var(--transition);
}
.btn-ghost:hover { color: var(--text-primary); background: var(--bg-glass); }

.btn-large { padding: 16px 36px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── SECTION LAYOUT ── */
.section-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--violet-dim);
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: var(--radius-full);
  color: var(--violet-light);
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 20px;
}
.section-title { margin-bottom: 20px; }
.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem; max-width: 560px; margin: 0 auto;
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
.nav-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}
.nav-header.scrolled {
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 40px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.logo-text {
  font-family: 'Clash Display', sans-serif;
  font-size: 1.3rem; font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex; align-items: center; gap: 8px;
  list-style: none; margin: 0 auto;
}
.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem; font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  transition: var(--transition);
}
.nav-link:hover { color: var(--text-primary); background: var(--bg-glass); }
.nav-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text-primary); border-radius: 2px;
  transition: var(--transition);
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  position: relative;
}

/* Background grid */
.hero-grid {
  position: fixed; inset: 0; z-index: -2;
  background-image:
    linear-gradient(rgba(124,58,237,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Orbs */
.orb {
  position: fixed; border-radius: 50%;
  filter: blur(80px); pointer-events: none; z-index: -1;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(124,58,237,0.18) 0%, transparent 70%);
  top: -200px; left: -200px;
  animation: orbFloat1 12s ease-in-out infinite;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(6,182,212,0.12) 0%, transparent 70%);
  top: 20%; right: -150px;
  animation: orbFloat2 15s ease-in-out infinite;
}
.orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(168,85,247,0.1) 0%, transparent 70%);
  bottom: 10%; left: 30%;
  animation: orbFloat3 18s ease-in-out infinite;
}
@keyframes orbFloat1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(40px,30px)} }
@keyframes orbFloat2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-30px,40px)} }
@keyframes orbFloat3 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(20px,-30px)} }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  background: var(--bg-glass);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-full);
  font-size: 0.82rem; font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100%{ box-shadow: 0 0 8px var(--cyan); transform: scale(1); }
  50%{ box-shadow: 0 0 16px var(--cyan); transform: scale(1.2); }
}

.hero-title { margin-bottom: 24px; }
.hero-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem; line-height: 1.75;
  max-width: 500px; margin-bottom: 40px;
}
.hero-cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-stats {
  display: flex; align-items: center; gap: 32px;
  padding: 20px 28px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  width: fit-content;
}
.stat { text-align: center; }
.stat-number {
  font-family: 'Clash Display', sans-serif;
  font-size: 1.6rem; font-weight: 700;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-suffix {
  font-family: 'Clash Display', sans-serif;
  font-size: 1.2rem; font-weight: 700;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { display: block; font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* ── HERO VISUAL ── */
.hero-visual {
  display: flex; justify-content: center; align-items: center;
  position: relative; height: 500px;
}
.visualizer-container {
  position: relative; width: 220px; height: 220px;
  display: flex; align-items: center; justify-content: center;
}
.visualizer-ring {
  position: absolute; border-radius: 50%;
  border: 1.5px solid;
  animation: ringPulse 3s ease-in-out infinite;
}
.ring-outer {
  width: 220px; height: 220px;
  border-color: rgba(124,58,237,0.2);
  animation-delay: 0s;
}
.ring-mid {
  width: 160px; height: 160px;
  border-color: rgba(124,58,237,0.35);
  animation-delay: 0.5s;
}
.ring-inner {
  width: 100px; height: 100px;
  border-color: rgba(124,58,237,0.5);
  animation-delay: 1s;
}
@keyframes ringPulse {
  0%,100%{ transform: scale(1); opacity: 0.6; }
  50%{ transform: scale(1.06); opacity: 1; }
}
.mic-core {
  width: 72px; height: 72px;
  background: var(--bg-elevated);
  border: 1.5px solid rgba(124,58,237,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 30px rgba(124,58,237,0.3), inset 0 0 20px rgba(124,58,237,0.05);
  z-index: 2;
}

/* Wave bars */
.wave-bars {
  position: absolute;
  bottom: -50px; left: 50%;
  transform: translateX(-50%);
  display: flex; align-items: flex-end; gap: 4px;
  height: 40px;
}
.wave-bars .bar {
  width: 4px;
  background: var(--grad-main);
  border-radius: 2px;
  animation: waveAnim 1.2s ease-in-out infinite;
  min-height: 4px;
}
.wave-bars .bar:nth-child(1)  { animation-delay: 0.0s; }
.wave-bars .bar:nth-child(2)  { animation-delay: 0.1s; }
.wave-bars .bar:nth-child(3)  { animation-delay: 0.2s; }
.wave-bars .bar:nth-child(4)  { animation-delay: 0.3s; }
.wave-bars .bar:nth-child(5)  { animation-delay: 0.4s; }
.wave-bars .bar:nth-child(6)  { animation-delay: 0.5s; }
.wave-bars .bar:nth-child(7)  { animation-delay: 0.6s; }
.wave-bars .bar:nth-child(8)  { animation-delay: 0.7s; }
.wave-bars .bar:nth-child(9)  { animation-delay: 0.8s; }
.wave-bars .bar:nth-child(10) { animation-delay: 0.9s; }
.wave-bars .bar:nth-child(11) { animation-delay: 1.0s; }
.wave-bars .bar:nth-child(12) { animation-delay: 0.9s; }
.wave-bars .bar:nth-child(13) { animation-delay: 0.8s; }
.wave-bars .bar:nth-child(14) { animation-delay: 0.7s; }
.wave-bars .bar:nth-child(15) { animation-delay: 0.6s; }
.wave-bars .bar:nth-child(16) { animation-delay: 0.5s; }
.wave-bars .bar:nth-child(17) { animation-delay: 0.4s; }
.wave-bars .bar:nth-child(18) { animation-delay: 0.3s; }
.wave-bars .bar:nth-child(19) { animation-delay: 0.2s; }
.wave-bars .bar:nth-child(20) { animation-delay: 0.1s; }
@keyframes waveAnim {
  0%,100%{ height: 6px; opacity: 0.4; }
  50%{ height: 36px; opacity: 1; }
}

/* Floating command cards */
.float-card {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  padding: 12px 18px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-md);
  font-size: 0.82rem; font-weight: 500;
  color: var(--text-secondary);
  backdrop-filter: blur(10px);
  white-space: nowrap;
  box-shadow: var(--shadow-md);
}
.cmd-icon { font-size: 1rem; }
.cmd-card-1 { top: 20px; right: -20px; animation: floatCard1 4s ease-in-out infinite; }
.cmd-card-2 { bottom: 80px; left: -30px; animation: floatCard2 5s ease-in-out infinite; }
.cmd-card-3 { bottom: 20px; right: 10px; animation: floatCard3 4.5s ease-in-out infinite; }
@keyframes floatCard1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes floatCard2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }
@keyframes floatCard3 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

/* ═══════════════════════════════════════
   LOGOS
═══════════════════════════════════════ */
.logos-section {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.logos-label {
  text-align: center;
  font-size: 0.8rem; font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 24px;
}
.logos-track { overflow: hidden; position: relative; }
.logos-track::before, .logos-track::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2;
}
.logos-track::before { left: 0; background: linear-gradient(90deg, var(--bg-base), transparent); }
.logos-track::after  { right: 0; background: linear-gradient(-90deg, var(--bg-base), transparent); }
.logos-inner {
  display: flex; align-items: center; gap: 60px;
  width: max-content;
  animation: logoScroll 20s linear infinite;
}
.logo-item {
  font-family: 'Clash Display', sans-serif;
  font-size: 1.1rem; font-weight: 600;
  color: var(--text-muted);
  letter-spacing: -0.01em;
  transition: color 0.3s;
  white-space: nowrap;
}
.logo-item:hover { color: var(--text-secondary); }
@keyframes logoScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════
   FEATURES
═══════════════════════════════════════ */
.features { padding: 120px 0; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}
.feature-card {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--grad-glow);
  opacity: 0; transition: opacity 0.4s;
  border-radius: inherit;
}
.feature-card:hover {
  border-color: rgba(124,58,237,0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-violet);
}
.feature-card:hover::before { opacity: 0.06; }

.feature-card-large {
  grid-column: span 2;
}
.feature-card-wide {
  grid-column: span 2;
}

.feature-icon-wrap {
  width: 52px; height: 52px;
  background: var(--violet-dim);
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.feature-card h3 { margin-bottom: 12px; font-size: 1.15rem; }
.feature-card p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.7; }

.feature-demo {
  margin-top: 20px;
  padding: 16px;
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: 'Plus Jakarta Sans', monospace;
  font-size: 0.82rem;
}
.demo-line {
  color: var(--cyan-light);
  padding: 6px 10px;
  background: rgba(6,182,212,0.08);
  border-radius: 6px;
  margin-bottom: 8px;
}
.demo-line::before { content: '🎤 '; }
.demo-response {
  color: var(--text-muted);
  font-size: 0.78rem;
  padding-left: 4px;
}

.integration-pills {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px;
}
.pill {
  padding: 5px 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.78rem; font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}
.pill:hover { border-color: var(--violet); color: var(--violet-light); }

/* ═══════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════ */
.how-it-works { padding: 120px 0; background: var(--bg-surface); }

.steps-container {
  display: flex; align-items: center; gap: 0;
  position: relative;
}
.step {
  flex: 1;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 24px;
  padding: 40px 32px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: var(--transition);
  position: relative;
}
.step:hover {
  border-color: rgba(124,58,237,0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-violet);
}
.step-number {
  font-family: 'Clash Display', sans-serif;
  font-size: 3rem; font-weight: 700;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.step-content h3 { margin-bottom: 10px; }
.step-content p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; }
.step-icon-wrap {
  width: 80px; height: 80px;
  background: var(--violet-dim);
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.step-connector {
  width: 60px; flex-shrink: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  position: relative;
}
.step-connector::after {
  content: '';
  position: absolute; right: -6px; top: -4px;
  width: 10px; height: 10px;
  border-right: 2px solid var(--cyan);
  border-top: 2px solid var(--cyan);
  transform: rotate(45deg);
}

/* ═══════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */
.testimonials { padding: 120px 0; }

.carousel-wrapper { position: relative; overflow: hidden; }
.carousel-track {
  display: flex; gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  transition: var(--transition);
}
.testimonial-card:hover {
  border-color: rgba(124,58,237,0.35);
  transform: translateY(-4px);
  box-shadow: var(--shadow-violet);
}
.testimonial-stars {
  color: #F59E0B;
  font-size: 0.9rem; letter-spacing: 2px;
  margin-bottom: 20px;
}
.testimonial-card blockquote {
  color: var(--text-secondary);
  font-size: 0.95rem; line-height: 1.75;
  font-style: italic;
  margin-bottom: 28px;
  position: relative;
}
.testimonial-card blockquote::before {
  content: '"';
  font-family: 'Clash Display', sans-serif;
  font-size: 4rem; line-height: 0;
  color: var(--violet-dim);
  position: absolute; top: 20px; left: -8px;
  opacity: 0.5;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.author-info strong { display: block; font-size: 0.9rem; font-weight: 600; }
.author-info span { font-size: 0.8rem; color: var(--text-muted); }

.carousel-controls {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  margin-top: 40px;
}
.carousel-btn {
  width: 44px; height: 44px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.carousel-btn:hover {
  background: var(--violet-dim);
  border-color: var(--violet);
  color: var(--text-primary);
}
.carousel-dots { display: flex; gap: 8px; }
.carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border-bright);
  cursor: pointer; transition: var(--transition);
  border: none;
}
.carousel-dot.active {
  background: var(--violet);
  width: 24px; border-radius: 4px;
  box-shadow: 0 0 8px var(--violet);
}

/* ═══════════════════════════════════════
   PRICING
═══════════════════════════════════════ */
.pricing { padding: 120px 0; background: var(--bg-surface); }

.pricing-toggle {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-bottom: 56px;
}
.toggle-label {
  font-size: 0.9rem; font-weight: 500;
  color: var(--text-secondary);
  display: flex; align-items: center; gap: 8px;
}
.toggle-switch {
  width: 52px; height: 28px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-full);
  cursor: pointer; position: relative;
  transition: var(--transition);
}
.toggle-switch.active { background: var(--violet-dim); border-color: var(--violet); }
.toggle-thumb {
  position: absolute; top: 3px; left: 3px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--text-muted);
  transition: var(--transition);
}
.toggle-switch.active .toggle-thumb {
  transform: translateX(24px);
  background: var(--violet-light);
}
.save-badge {
  padding: 2px 8px;
  background: rgba(6,182,212,0.15);
  border: 1px solid rgba(6,182,212,0.3);
  border-radius: var(--radius-full);
  font-size: 0.72rem; font-weight: 600;
  color: var(--cyan-light);
}

.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  position: relative;
  transition: var(--transition);
}
.pricing-card:hover {
  border-color: rgba(124,58,237,0.35);
  transform: translateY(-4px);
}
.pricing-card-featured {
  background: linear-gradient(135deg, rgba(124,58,237,0.12), rgba(6,182,212,0.08));
  border-color: rgba(124,58,237,0.4);
  transform: scale(1.03);
  box-shadow: var(--shadow-violet);
}
.pricing-card-featured:hover { transform: scale(1.03) translateY(-4px); }

.pricing-popular {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  padding: 5px 18px;
  background: var(--grad-main);
  border-radius: var(--radius-full);
  font-size: 0.75rem; font-weight: 700;
  color: #fff; white-space: nowrap;
  box-shadow: 0 4px 16px rgba(124,58,237,0.4);
}
.pricing-tier {
  font-family: 'Clash Display', sans-serif;
  font-size: 0.85rem; font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 16px;
}
.pricing-price {
  display: flex; align-items: baseline; gap: 2px;
  margin-bottom: 12px;
}
.price-currency {
  font-family: 'Clash Display', sans-serif;
  font-size: 1.4rem; font-weight: 600;
  color: var(--text-secondary);
  align-self: flex-start; margin-top: 8px;
}
.price-amount {
  font-family: 'Clash Display', sans-serif;
  font-size: 3.5rem; font-weight: 700;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  transition: var(--transition);
}
.price-period { color: var(--text-muted); font-size: 0.9rem; margin-left: 4px; }
.pricing-desc { color: var(--text-secondary); font-size: 0.88rem; margin-bottom: 28px; line-height: 1.6; }

.pricing-features { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 12px; }
.pricing-features li { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; }
.pricing-features li.muted { color: var(--text-muted); }
.check { color: var(--cyan); font-size: 0.9rem; flex-shrink: 0; }
.cross { color: var(--text-muted); font-size: 0.9rem; flex-shrink: 0; }

.pricing-note {
  text-align: center; margin-top: 40px;
  color: var(--text-muted); font-size: 0.85rem;
}

/* ═══════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════ */
.cta-banner {
  padding: 120px 0;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(124,58,237,0.08), rgba(6,182,212,0.05));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-orb {
  position: absolute; border-radius: 50%;
  filter: blur(60px); pointer-events: none;
}
.cta-orb-1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(124,58,237,0.2) 0%, transparent 70%);
  top: -100px; left: -100px;
}
.cta-orb-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(6,182,212,0.15) 0%, transparent 70%);
  bottom: -80px; right: -80px;
}
.cta-content { text-align: center; position: relative; z-index: 1; }
.cta-content h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.cta-content p { color: var(--text-secondary); font-size: 1.05rem; margin-bottom: 40px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer { padding: 80px 0 0; background: var(--bg-surface); }
.footer-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1.5fr 2fr;
  gap: 80px; padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}
.footer-tagline {
  color: var(--text-muted); font-size: 0.88rem;
  line-height: 1.7; margin: 16px 0 24px;
  max-width: 280px;
}
.footer-social { display: flex; gap: 12px; }
.social-link {
  width: 38px; height: 38px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}
.social-link:hover {
  background: var(--violet-dim);
  border-color: var(--violet);
  color: var(--violet-light);
}
.footer-links {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
}
.footer-col h4 {
  font-family: 'Clash Display', sans-serif;
  font-size: 0.82rem; font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: var(--text-muted); text-decoration: none;
  font-size: 0.88rem; transition: color 0.2s;
}
.footer-col a:hover { color: var(--text-primary); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding: 24px;
  display: flex; align-items: center; justify-content: space-between;
  color: var(--text-muted); font-size: 0.82rem;
}

/* ═══════════════════════════════════════
   RESPONSIVE — TABLET
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 100px;
  }
  .hero-subtitle { margin: 0 auto 40px; }
  .hero-cta { justify-content: center; }
  .hero-stats { margin: 0 auto; }
  .hero-visual { height: 360px; }
  .cmd-card-1 { right: 10px; }
  .cmd-card-2 { left: 10px; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card-large { grid-column: span 2; }
  .feature-card-wide { grid-column: span 2; }

  .steps-container { flex-direction: column; gap: 20px; }
  .step-connector { width: 2px; height: 40px; }
  .step-connector::after {
    right: -4px; bottom: -6px; top: auto;
    transform: rotate(135deg);
  }

  .testimonial-card { flex: 0 0 calc(50% - 12px); }

  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .pricing-card-featured { transform: scale(1); }
  .pricing-card-featured:hover { transform: translateY(-4px); }

  .footer-container { grid-template-columns: 1fr; gap: 48px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════
   RESPONSIVE — MOBILE
═══════════════════════════════════════ */
@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 64px; left: 0; right: 0;
    background: rgba(10,10,15,0.97);
    backdrop-filter: blur(20px);
    padding: 24px;
    border-bottom: 1px solid var(--border);
    gap: 4px;
    z-index: 999;
  }
  .nav-links.open + .nav-actions {
    display: flex; flex-direction: column;
    position: fixed; top: 64px; left: 0; right: 0;
    padding: 0 24px 24px;
    background: rgba(10,10,15,0.97);
    z-index: 999;
  }

  .hero { padding: 100px 20px 60px; gap: 40px; }
  .hero-visual { height: 280px; }
  .visualizer-container { width: 160px; height: 160px; }
  .ring-outer { width: 160px; height: 160px; }
  .ring-mid { width: 110px; height: 110px; }
  .ring-inner { width: 70px; height: 70px; }
  .cmd-card-1, .cmd-card-2, .cmd-card-3 { font-size: 0.75rem; padding: 8px 12px; }
  .cmd-card-1 { right: 0; top: 10px; }
  .cmd-card-2 { left: 0; bottom: 60px; }
  .cmd-card-3 { right: 0; bottom: 10px; }

  .hero-stats { flex-direction: column; gap: 16px; width: 100%; }
  .stat-divider { width: 100%; height: 1px; }

  .features { padding: 80px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card-large, .feature-card-wide { grid-column: span 1; }

  .how-it-works { padding: 80px 0; }
  .testimonials { padding: 80px 0; }
  .testimonial-card { flex: 0 0 calc(100% - 0px); }

  .pricing { padding: 80px 0; }
  .cta-banner { padding: 80px 0; }

  .footer-links { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .section-header { margin-bottom: 48px; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; align-items: stretch; }
  .btn-large { text-align: center; justify-content: center; }
  .footer-links { grid-template-columns: 1fr 1fr; }
}