/* ═══════════════════════════════════════════════════════════
   RETRO by Oronzo — Landing Page Styles
   ═══════════════════════════════════════════════════════════ */

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

:root {
  --col-bg:        #0b0618;
  --col-surface:   #110d22;
  --col-card:      rgba(255,255,255,0.04);
  --col-border:    rgba(255,255,255,0.08);
  --col-border-hi: rgba(255,255,255,0.14);

  --col-violet:    #7c3aed;
  --col-violet-hi: #9d5cf7;
  --col-violet-lo: rgba(124,58,237,0.15);
  --col-teal:      #14b8a6;
  --col-teal-lo:   rgba(20,184,166,0.15);
  --col-amber:     #f59e0b;
  --col-amber-lo:  rgba(245,158,11,0.15);
  --col-rose:      #f43f5e;
  --col-blue:      #3b82f6;
  --col-green:     #22c55e;

  --text-primary:   #f1f0fd;
  --text-secondary: #9b97c9;
  --text-muted:     #5e5a82;

  --gradient-primary: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #14b8a6 100%);
  --gradient-violet:  linear-gradient(135deg, #7c3aed, #a855f7);
  --gradient-teal:    linear-gradient(135deg, #14b8a6, #0891b2);

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

  --shadow-card: 0 4px 32px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 40px rgba(124,58,237,0.25);

  --font-sans: 'Inter', system-ui, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;

  --nav-height: 68px;
  --section-gap: 120px;
}

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

body {
  background: var(--col-bg);
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--col-bg); }
::-webkit-scrollbar-thumb { background: var(--col-violet); border-radius: 3px; }

/* ── Selection ── */
::selection { background: rgba(124,58,237,0.4); color: #fff; }

/* ── Container ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ── Section spacing ── */
.section { padding: var(--section-gap) 0; }

/* ── Gradient text ── */
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ════════════════════════════════════════════════════════
   BACKGROUND
   ════════════════════════════════════════════════════════ */
.bg-canvas {
  position: fixed; inset: 0;
  z-index: 0; pointer-events: none; overflow: hidden;
}

.aurora {
  position: absolute; border-radius: 50%;
  filter: blur(100px); opacity: 0.45;
}
.aurora-1 {
  width: 700px; height: 700px;
  top: -200px; right: -100px;
  background: radial-gradient(circle, #7c3aed 0%, transparent 70%);
  animation: aurora-drift 18s ease-in-out infinite alternate;
}
.aurora-2 {
  width: 550px; height: 550px;
  bottom: 100px; left: -150px;
  background: radial-gradient(circle, #14b8a6 0%, transparent 70%);
  animation: aurora-drift 22s ease-in-out infinite alternate-reverse;
}
.aurora-3 {
  width: 400px; height: 400px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, #a855f7 0%, transparent 70%);
  animation: aurora-pulse 14s ease-in-out infinite;
  opacity: 0.2;
}

.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(124,58,237,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

#particles-canvas { position: absolute; inset: 0; }

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

/* ════════════════════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-height);
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(11,6,24,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--col-border);
}

.nav-inner {
  display: flex; align-items: center;
  height: var(--nav-height); gap: 32px;
}

.nav-brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.brand-icon {
  width: 36px; height: 36px;
  background: var(--gradient-violet);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800; font-size: 18px; color: #fff;
  box-shadow: 0 4px 16px rgba(124,58,237,0.4);
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 700; font-size: 20px; color: var(--text-primary);
}
.brand-badge {
  font-size: 11px; color: var(--text-muted);
  border: 1px solid var(--col-border); border-radius: 20px;
  padding: 2px 8px; letter-spacing: 0.02em;
}

.nav-links {
  display: flex; align-items: center; gap: 4px; margin-left: auto;
}
.nav-link {
  text-decoration: none; color: var(--text-secondary); font-size: 14px;
  font-weight: 500; padding: 8px 14px; border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--text-primary); background: var(--col-card); }

.nav-actions {
  display: flex; align-items: center; gap: 12px; flex-shrink: 0;
}
.btn-ghost {
  text-decoration: none; color: var(--text-secondary); font-size: 14px;
  font-weight: 500; padding: 8px 16px; border-radius: var(--radius-sm);
  border: 1px solid var(--col-border); transition: all 0.2s;
}
.btn-ghost:hover { color: var(--text-primary); border-color: var(--col-border-hi); }

.btn-primary-sm {
  text-decoration: none; color: #fff; font-size: 14px; font-weight: 600;
  padding: 9px 18px; border-radius: var(--radius-sm);
  background: var(--gradient-violet);
  box-shadow: 0 4px 16px rgba(124,58,237,0.35);
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}
.btn-primary-sm:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(124,58,237,0.5); }
.btn-primary-sm:active { transform: translateY(0); }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text-secondary); border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════ */
.hero { padding-top: calc(var(--nav-height) + 80px); padding-bottom: 100px; }

.hero-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500;
  color: var(--col-teal); letter-spacing: 0.04em;
  text-transform: uppercase; margin-bottom: 24px;
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--col-teal);
  animation: pulse-glow 2s ease-in-out infinite;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 18px; line-height: 1.7;
  color: var(--text-secondary); max-width: 480px;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap; margin-bottom: 28px;
}

.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; color: #fff; font-size: 16px; font-weight: 700;
  padding: 14px 28px; border-radius: var(--radius-md);
  background: var(--gradient-primary);
  box-shadow: 0 6px 30px rgba(124,58,237,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(124,58,237,0.6); }
.btn-hero-primary:active { transform: translateY(0); }

.btn-hero-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--text-secondary);
  font-size: 16px; font-weight: 600;
  padding: 13px 24px; border-radius: var(--radius-md);
  border: 1px solid var(--col-border);
  transition: all 0.2s; background: var(--col-card);
  backdrop-filter: blur(10px);
}
.btn-hero-ghost:hover { color: var(--text-primary); border-color: var(--col-border-hi); background: rgba(255,255,255,0.07); }

.hero-meta {
  display: flex; align-items: center; gap: 12px;
  flex-wrap: wrap;
}
.hero-meta-item { font-size: 13px; color: var(--text-muted); }
.hero-meta-sep { color: var(--text-muted); opacity: 0.4; }

/* ── Board Mockup ── */
.hero-visual { position: relative; }

.board-mockup {
  background: rgba(17,13,34,0.9);
  border: 1px solid var(--col-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card), var(--shadow-glow);
  backdrop-filter: blur(20px);
}

.board-header {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--col-border);
}
.board-dot { width: 10px; height: 10px; border-radius: 50%; }
.board-dot-red    { background: #ff5f57; }
.board-dot-yellow { background: #febc2e; }
.board-dot-green  { background: #28c840; }

.board-title-bar {
  flex: 1; text-align: center;
  font-size: 12px; color: var(--text-muted); letter-spacing: 0.02em;
}
.board-timer {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 700; color: var(--col-teal);
  background: var(--col-teal-lo); border-radius: 20px; padding: 3px 10px;
}
.board-timer.running svg { animation: spin 8s linear infinite; }

.board-columns {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 0; padding: 16px; gap: 12px;
}

.board-col {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--col-border);
  border-radius: var(--radius-md);
  padding: 12px; min-height: 200px;
}

.col-header {
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 10px; padding-bottom: 8px;
  border-bottom: 1px solid var(--col-border);
}
.col-icon { font-size: 14px; }
.col-title { font-size: 11px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; flex: 1; }
.col-count {
  font-size: 10px; font-weight: 700; color: var(--text-muted);
  background: var(--col-card); border-radius: 20px;
  padding: 2px 7px; border: 1px solid var(--col-border);
}

.col-green  .col-title { color: #4ade80; }
.col-amber  .col-title { color: var(--col-amber); }
.col-violet .col-title { color: #a78bfa; }
.col-green  { border-top: 2px solid rgba(74,222,128,0.4); }
.col-amber  { border-top: 2px solid rgba(245,158,11,0.4); }
.col-violet { border-top: 2px solid rgba(167,139,250,0.4); }

.card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--col-border);
  border-radius: var(--radius-sm);
  padding: 8px 10px; margin-bottom: 8px;
  font-size: 11px; color: var(--text-primary); line-height: 1.5;
}
.card-author {
  display: block; font-size: 10px; color: var(--text-muted); margin-top: 4px;
}

/* floating badges */
.float-badge {
  position: absolute;
  background: rgba(17,13,34,0.92);
  border: 1px solid var(--col-border-hi);
  border-radius: 24px; padding: 8px 16px;
  font-size: 12px; font-weight: 600; color: var(--text-primary);
  display: flex; align-items: center; gap: 8px;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  white-space: nowrap;
}
.badge-1 { top: -18px; left: -24px; animation: float-1 4s ease-in-out infinite; }
.badge-2 { bottom: 40px; left: -32px; animation: float-2 5s ease-in-out infinite; }
.badge-3 { bottom: -18px; right: -16px; animation: float-3 4.5s ease-in-out infinite; }

/* ── Scroll hint ── */
.scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 12px; color: var(--text-muted); letter-spacing: 0.06em;
  text-transform: uppercase; animation: fade-bounce 2s ease-in-out infinite;
}
.scroll-hint-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--col-violet), transparent);
}

/* ════════════════════════════════════════════════════════
   STATS BAR
   ════════════════════════════════════════════════════════ */
.stats-bar {
  padding: 60px 0;
  border-top: 1px solid var(--col-border);
  border-bottom: 1px solid var(--col-border);
  background: rgba(255,255,255,0.015);
}
.stats-grid {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0; align-items: center;
}
.stat-item { text-align: center; padding: 8px 24px; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px); font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 13px; color: var(--text-muted); font-weight: 500; }
.stat-divider {
  width: 1px; height: 64px;
  background: linear-gradient(to bottom, transparent, var(--col-border), transparent);
}

/* ════════════════════════════════════════════════════════
   SECTION HEADER
   ════════════════════════════════════════════════════════ */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--col-violet); margin-bottom: 16px;
  padding: 5px 14px; border-radius: 20px;
  border: 1px solid rgba(124,58,237,0.3);
  background: rgba(124,58,237,0.1);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px); font-weight: 800;
  line-height: 1.15; letter-spacing: -0.025em;
  color: var(--text-primary); margin-bottom: 16px;
}
.section-sub { font-size: 17px; color: var(--text-secondary); line-height: 1.7; }

/* ════════════════════════════════════════════════════════
   FEATURES
   ════════════════════════════════════════════════════════ */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--col-card);
  border: 1px solid var(--col-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at top left, rgba(124,58,237,0.08), transparent 60%);
  opacity: 0; transition: opacity 0.3s;
}
.feature-card:hover { transform: translateY(-4px); border-color: var(--col-border-hi); }
.feature-card:hover::before { opacity: 1; }

.card-glow:hover { box-shadow: 0 8px 40px rgba(124,58,237,0.2); }

.feature-icon {
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.icon-violet { background: var(--col-violet-lo); color: #a78bfa; border: 1px solid rgba(124,58,237,0.25); }
.icon-teal   { background: var(--col-teal-lo);   color: #2dd4bf; border: 1px solid rgba(20,184,166,0.25); }
.icon-amber  { background: var(--col-amber-lo);  color: var(--col-amber); border: 1px solid rgba(245,158,11,0.25); }
.icon-rose   { background: rgba(244,63,94,0.12); color: var(--col-rose); border: 1px solid rgba(244,63,94,0.25); }
.icon-blue   { background: rgba(59,130,246,0.12); color: var(--col-blue); border: 1px solid rgba(59,130,246,0.25); }
.icon-green  { background: rgba(34,197,94,0.12); color: var(--col-green); border: 1px solid rgba(34,197,94,0.25); }

.feature-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; }
.feature-desc  { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* ════════════════════════════════════════════════════════
   HOW IT WORKS
   ════════════════════════════════════════════════════════ */
.how-it-works { background: rgba(255,255,255,0.01); }

.steps-layout {
  display: flex; gap: 0; position: relative;
  justify-content: space-between; align-items: flex-start;
}

.step-line {
  position: absolute; top: 32px; left: 96px; right: 96px; height: 1px;
  background: linear-gradient(to right, var(--col-violet), var(--col-teal));
  opacity: 0.3;
}

.step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; flex: 1; padding: 0 24px; max-width: 320px;
}

.step-number {
  font-family: var(--font-display); font-size: 12px; font-weight: 800;
  letter-spacing: 0.08em; color: var(--text-muted);
  margin-bottom: 20px;
}

.step-content {
  background: var(--col-card);
  border: 1px solid var(--col-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px; width: 100%;
  transition: border-color 0.3s, transform 0.3s;
}
.step-content:hover { border-color: rgba(124,58,237,0.4); transform: translateY(-4px); }

.step-icon-wrap {
  width: 60px; height: 60px; border-radius: var(--radius-md);
  background: var(--col-violet-lo); border: 1px solid rgba(124,58,237,0.25);
  color: #a78bfa;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}

.step-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; }
.step-desc  { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* ════════════════════════════════════════════════════════
   DEMO SECTION
   ════════════════════════════════════════════════════════ */
.demo-window {
  background: rgba(11,6,24,0.8);
  border: 1px solid var(--col-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 80px rgba(0,0,0,0.5), 0 0 0 1px var(--col-border-hi);
}

.demo-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 18px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--col-border);
}
.demo-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--col-border);
}
.demo-url {
  flex: 1; text-align: center;
  font-size: 12px; color: var(--text-muted);
  background: rgba(255,255,255,0.04); border: 1px solid var(--col-border);
  border-radius: 6px; padding: 4px 12px;
  max-width: 320px; margin: 0 auto;
}
.demo-live-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; color: var(--col-rose);
  background: rgba(244,63,94,0.12); border: 1px solid rgba(244,63,94,0.3);
  border-radius: 20px; padding: 3px 10px; letter-spacing: 0.06em;
}
.live-blink {
  width: 6px; height: 6px; border-radius: 50%; background: var(--col-rose);
  animation: blink 1s ease-in-out infinite;
}

.demo-content { padding: 24px; }

.demo-board-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--col-border);
  flex-wrap: wrap; gap: 16px;
}
.demo-board-info h3 {
  font-family: var(--font-display); font-size: 18px; font-weight: 700;
  color: var(--text-primary); margin-bottom: 4px;
}
.demo-board-meta { font-size: 12px; color: var(--text-muted); }

.demo-session-info { display: flex; align-items: center; gap: 16px; }

.demo-timer-ring {
  position: relative; width: 56px; height: 56px; flex-shrink: 0;
}
.demo-timer-ring svg { transform: rotate(-90deg); width: 100%; height: 100%; }
.ring-bg  { fill: none; stroke: rgba(255,255,255,0.06); stroke-width: 3; }
.ring-fill {
  fill: none; stroke: var(--col-violet); stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 100; stroke-dashoffset: 30;
  transition: stroke-dashoffset 1s linear;
}
.demo-timer-text {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: var(--text-primary); font-family: var(--font-display);
}
.demo-session-labels { display: flex; flex-direction: column; gap: 6px; }
.session-phase {
  font-size: 12px; font-weight: 600; border-radius: 20px; padding: 3px 10px;
}
.session-phase.collecting {
  color: var(--col-green); background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.25);
}
.session-members { font-size: 12px; color: var(--text-muted); }

.demo-cols {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}

.demo-col {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--col-border); border-radius: var(--radius-md); padding: 14px;
}
.demo-col-green  { border-top: 2px solid rgba(74,222,128,0.5); }
.demo-col-amber  { border-top: 2px solid rgba(245,158,11,0.5); }
.demo-col-violet { border-top: 2px solid rgba(167,139,250,0.5); }

.demo-col-head {
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
  margin-bottom: 10px; color: var(--text-secondary); display: flex; align-items: center; justify-content: space-between;
}
.demo-col-green  .demo-col-head { color: #4ade80; }
.demo-col-amber  .demo-col-head { color: var(--col-amber); }
.demo-col-violet .demo-col-head { color: #a78bfa; }

.demo-count {
  font-size: 10px; background: var(--col-card); border: 1px solid var(--col-border);
  border-radius: 20px; padding: 1px 7px; color: var(--text-muted);
}

.demo-card {
  background: rgba(255,255,255,0.04); border: 1px solid var(--col-border);
  border-radius: var(--radius-sm); padding: 8px 10px; margin-bottom: 8px;
  font-size: 12px; color: var(--text-primary); line-height: 1.5;
}
.demo-card span { display: block; font-size: 10px; color: var(--text-muted); margin-top: 4px; }

.typing-card {
  display: flex; align-items: center; gap: 10px;
  opacity: 0.7; border-style: dashed;
}
.typing-indicator { display: flex; gap: 3px; align-items: center; }
.typing-indicator span {
  display: block !important; width: 4px; height: 4px; border-radius: 50%;
  background: var(--text-muted); animation: typing-dot 1.2s ease-in-out infinite;
  margin: 0;
}
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }
.typing-label { font-size: 11px; color: var(--text-muted); }

/* ════════════════════════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════════════════════════ */
.testimonials { background: rgba(255,255,255,0.01); }

.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}

.testimonial-card {
  background: var(--col-card); border: 1px solid var(--col-border);
  border-radius: var(--radius-lg); padding: 32px 28px;
  transition: transform 0.3s, border-color 0.3s;
}
.testimonial-card:hover { transform: translateY(-4px); border-color: var(--col-border-hi); }

.testimonial-stars { font-size: 16px; color: var(--col-amber); margin-bottom: 20px; letter-spacing: 2px; }
.testimonial-text {
  font-size: 15px; line-height: 1.75; color: var(--text-secondary);
  font-style: italic; margin-bottom: 28px;
}
.testimonial-text::before { content: '\201C'; color: var(--col-violet); font-size: 24px; line-height: 0; vertical-align: -8px; margin-right: 4px; }
.testimonial-text::after  { content: '\201D'; color: var(--col-violet); font-size: 24px; line-height: 0; vertical-align: -8px; margin-left: 4px; }

.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800; color: #fff;
}
.author-name { font-weight: 700; font-size: 14px; color: var(--text-primary); }
.author-role { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* ════════════════════════════════════════════════════════
   CTA SECTION
   ════════════════════════════════════════════════════════ */
.cta-card {
  position: relative; overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--col-border);
  border-radius: var(--radius-xl);
  padding: 80px 60px; text-align: center;
}
.cta-glow {
  position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.cta-eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--col-teal); margin-bottom: 20px;
}
.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px); font-weight: 800;
  line-height: 1.15; letter-spacing: -0.025em;
  color: var(--text-primary); margin-bottom: 20px;
}
.cta-sub {
  font-size: 17px; color: var(--text-secondary); max-width: 480px;
  margin: 0 auto 40px; line-height: 1.7;
}
.cta-buttons { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }
.cta-trust {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  font-size: 13px; color: var(--text-muted); flex-wrap: wrap;
}
.cta-trust span:not(:last-child)::after { content: ''; }

/* ════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════ */
.footer {
  border-top: 1px solid var(--col-border);
  background: rgba(255,255,255,0.01);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px;
  padding-bottom: 56px; border-bottom: 1px solid var(--col-border);
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-tagline { font-size: 14px; color: var(--text-muted); line-height: 1.7; max-width: 280px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: var(--col-card); border: 1px solid var(--col-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); text-decoration: none; transition: all 0.2s;
}
.footer-social a:hover { color: var(--text-primary); border-color: var(--col-border-hi); background: rgba(255,255,255,0.07); }

.footer-links-group { display: flex; flex-direction: column; gap: 12px; }
.footer-links-group h4 { font-size: 13px; font-weight: 700; color: var(--text-primary); letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 4px; }
.footer-links-group a { font-size: 14px; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-links-group a:hover { color: var(--text-primary); }

.footer-bottom { padding: 24px 0; }
.footer-bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--text-muted);
}

/* ════════════════════════════════════════════════════════
   SCROLL REVEAL
   ════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.revealed { opacity: 1; transform: none; }
.reveal-right { transform: translateX(32px); }
.reveal-right.revealed { transform: none; }

.stagger-1 { transition-delay: 0.0s; }
.stagger-2 { transition-delay: 0.1s; }
.stagger-3 { transition-delay: 0.2s; }

/* ════════════════════════════════════════════════════════
   CUSTOM CURSOR
   ════════════════════════════════════════════════════════ */
@media (hover: hover) and (pointer: fine) {
  *, *::before, *::after { cursor: none !important; }
}

.cursor-dot {
  position: fixed; z-index: 9999; pointer-events: none;
  width: 10px; height: 10px; border-radius: 50%;
  background: #fff; top: 0; left: 0;
  transform: translate(-50%, -50%);
  will-change: transform; mix-blend-mode: difference;
  transition: width 0.3s cubic-bezier(0.25,0.46,0.45,0.94),
              height 0.3s cubic-bezier(0.25,0.46,0.45,0.94),
              opacity 0.3s, background 0.3s;
  opacity: 0;
}
.cursor-dot.visible { opacity: 1; }
.cursor-dot.hover-link { width: 18px; height: 18px; }
.cursor-dot.hover-btn {
  width: 56px; height: 56px;
  background: rgba(124,58,237,0.12);
  mix-blend-mode: normal;
  border: 1.5px solid rgba(168,85,247,0.5);
}
.cursor-dot.clicking { transform: translate(-50%, -50%) scale(0.8); }

.cursor-ring {
  position: fixed; z-index: 9998; pointer-events: none;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.3);
  top: 0; left: 0;
  transform: translate(-50%, -50%);
  will-change: transform;
  transition: width 0.5s cubic-bezier(0.25,0.46,0.45,0.94),
              height 0.5s cubic-bezier(0.25,0.46,0.45,0.94),
              border-color 0.4s, opacity 0.3s;
  opacity: 0;
}
.cursor-ring.visible { opacity: 1; }
.cursor-ring.hover-link { width: 52px; height: 52px; border-color: rgba(168,85,247,0.55); }
.cursor-ring.hover-btn { width: 76px; height: 76px; border-color: rgba(124,58,237,0.35); opacity: 0.6; }

/* ════════════════════════════════════════════════════════
   NOISE OVERLAY & SPOTLIGHT
   ════════════════════════════════════════════════════════ */
.noise-overlay {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

.cursor-spotlight {
  position: fixed; z-index: 0; pointer-events: none;
  width: 720px; height: 720px; border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.07) 0%, rgba(168,85,247,0.03) 40%, transparent 70%);
  top: 0; left: 0;
  transform: translate(-50%, -50%);
  will-change: transform;
  transition: opacity 0.6s;
  opacity: 0;
}
.cursor-spotlight.visible { opacity: 1; }

/* ════════════════════════════════════════════════════════
   TRUSTED BY MARQUEE
   ════════════════════════════════════════════════════════ */
.trusted-bar {
  padding: 32px 0;
  border-bottom: 1px solid var(--col-border);
  position: relative; z-index: 1;
  overflow: hidden;
}
.trusted-label {
  text-align: center; font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 22px;
}
.marquee-wrap {
  overflow: hidden; position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
}
.marquee-content {
  display: flex; align-items: center; gap: 48px;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}
.marquee-content span {
  font-family: var(--font-display); font-size: 17px; font-weight: 700;
  color: rgba(255,255,255,0.1); letter-spacing: -0.02em; white-space: nowrap;
  transition: color 0.4s; user-select: none;
}
.marquee-content span:hover { color: rgba(255,255,255,0.3); }
.marquee-dot { font-size: 8px !important; color: rgba(124,58,237,0.25) !important; }

/* ════════════════════════════════════════════════════════
   PREMIUM BUTTON ENHANCEMENTS
   ════════════════════════════════════════════════════════ */
.btn-hero-primary {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 45%, #14b8a6 100%);
  background-size: 200% auto;
  animation: btn-gradient 6s linear infinite;
}
.btn-hero-primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 38%, rgba(255,255,255,0.22) 50%, transparent 62%);
  transform: translateX(-150%) skewX(-15deg);
  animation: btn-shine 4s ease-in-out infinite 2s;
}

/* ════════════════════════════════════════════════════════
   3D TILT
   ════════════════════════════════════════════════════════ */
[data-tilt] {
  transform-style: preserve-3d;
  will-change: transform;
}

/* ════════════════════════════════════════════════════════
   ENHANCED GLASSMORPHISM CARDS
   ════════════════════════════════════════════════════════ */
.feature-card {
  background: linear-gradient(135deg,
    rgba(255,255,255,0.055) 0%,
    rgba(255,255,255,0.02) 100%) !important;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: transform 0.2s ease, border-color 0.3s ease, box-shadow 0.3s ease !important;
}
.feature-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.45), 0 0 40px rgba(124,58,237,0.18) !important;
}

.testimonial-card {
  background: linear-gradient(135deg,
    rgba(255,255,255,0.055) 0%,
    rgba(255,255,255,0.02) 100%) !important;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: transform 0.2s ease, border-color 0.3s ease, box-shadow 0.3s ease !important;
}
.testimonial-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.45), 0 0 40px rgba(124,58,237,0.15) !important;
}

/* ════════════════════════════════════════════════════════
   ENHANCED HERO
   ════════════════════════════════════════════════════════ */
.hero-headline {
  font-size: clamp(46px, 5.5vw, 76px) !important;
  letter-spacing: -0.042em !important;
  line-height: 1.05 !important;
}
.hero { position: relative; }

/* ════════════════════════════════════════════════════════
   ENHANCED BOARD MOCKUP
   ════════════════════════════════════════════════════════ */
.board-mockup {
  background: linear-gradient(145deg, rgba(20,16,38,0.97) 0%, rgba(11,6,24,0.99) 100%) !important;
  box-shadow:
    0 8px 64px rgba(0,0,0,0.65),
    0 0 0 1px rgba(124,58,237,0.22),
    0 0 80px rgba(124,58,237,0.07),
    inset 0 1px 0 rgba(255,255,255,0.05) !important;
}

/* ════════════════════════════════════════════════════════
   TESTIMONIALS ENHANCEMENT
   ════════════════════════════════════════════════════════ */
.testimonial-stars {
  background: linear-gradient(90deg, var(--col-amber), #f97316);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 6px rgba(245,158,11,0.3));
}
.author-avatar {
  box-shadow: 0 0 0 2px rgba(255,255,255,0.1), 0 4px 16px rgba(0,0,0,0.45) !important;
}

/* ════════════════════════════════════════════════════════
   CTA CARD ENHANCEMENT
   ════════════════════════════════════════════════════════ */
.cta-card {
  background: linear-gradient(135deg,
    rgba(124,58,237,0.09) 0%,
    rgba(20,184,166,0.04) 50%,
    rgba(168,85,247,0.09) 100%) !important;
}
.cta-glow {
  background: radial-gradient(ellipse at 50% 0%,
    rgba(124,58,237,0.45) 0%, transparent 65%) !important;
  width: 100% !important; top: -60% !important;
  animation: aurora-pulse 9s ease-in-out infinite;
}

/* ════════════════════════════════════════════════════════
   FLOATING BADGE ENHANCEMENT
   ════════════════════════════════════════════════════════ */
.float-badge {
  background: linear-gradient(135deg, rgba(20,16,38,0.96), rgba(11,6,24,0.92)) !important;
  border: 1px solid rgba(124,58,237,0.28) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.04) !important;
}

/* ════════════════════════════════════════════════════════
   DEMO WINDOW ENHANCEMENT
   ════════════════════════════════════════════════════════ */
.demo-window {
  box-shadow:
    0 32px 100px rgba(0,0,0,0.65),
    0 0 0 1px rgba(124,58,237,0.16),
    0 0 80px rgba(124,58,237,0.05) !important;
}

/* ════════════════════════════════════════════════════════
   SCROLL PROGRESS ENHANCEMENT
   ════════════════════════════════════════════════════════ */
.scroll-progress { height: 3px !important; }
.scroll-progress-fill {
  box-shadow: 0 0 8px rgba(168,85,247,0.8), 0 0 20px rgba(124,58,237,0.4);
}

/* ════════════════════════════════════════════════════════
   ENHANCED GRID OVERLAY
   ════════════════════════════════════════════════════════ */
.grid-overlay {
  background-size: 50px 50px !important;
  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) !important;
}

/* ════════════════════════════════════════════════════════
   AURORA 4TH BLOB
   ════════════════════════════════════════════════════════ */
.aurora-4 {
  width: 320px; height: 320px;
  top: 40%; right: 20%;
  background: radial-gradient(circle, #0891b2 0%, transparent 70%);
  animation: aurora-drift 26s ease-in-out infinite alternate;
  opacity: 0.12;
}

/* ════════════════════════════════════════════════════════
   SECTION EYEBROW DOT ACCENT
   ════════════════════════════════════════════════════════ */
.section-eyebrow::before {
  content: '';
  position: absolute; left: 50%; bottom: -8px;
  transform: translateX(-50%);
  width: 16px; height: 1px;
  background: var(--col-violet); opacity: 0.5;
  display: none;
}
.section-eyebrow { position: relative; }

/* ════════════════════════════════════════════════════════
   FEATURE ICON GLOW ON HOVER
   ════════════════════════════════════════════════════════ */
.feature-card:hover .icon-violet { box-shadow: 0 0 24px rgba(124,58,237,0.35); }
.feature-card:hover .icon-teal   { box-shadow: 0 0 24px rgba(20,184,166,0.35); }
.feature-card:hover .icon-amber  { box-shadow: 0 0 24px rgba(245,158,11,0.35); }
.feature-card:hover .icon-rose   { box-shadow: 0 0 24px rgba(244,63,94,0.35); }
.feature-card:hover .icon-blue   { box-shadow: 0 0 24px rgba(59,130,246,0.35); }
.feature-card:hover .icon-green  { box-shadow: 0 0 24px rgba(34,197,94,0.35); }
.feature-icon { transition: box-shadow 0.3s; }

/* ════════════════════════════════════════════════════════
   STEP CONTENT ENHANCEMENT
   ════════════════════════════════════════════════════════ */
.step-content {
  background: linear-gradient(135deg,
    rgba(255,255,255,0.05) 0%,
    rgba(255,255,255,0.02) 100%) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* ════════════════════════════════════════════════════════
   PULSE DOT ENHANCEMENT
   ════════════════════════════════════════════════════════ */
.pulse-dot {
  box-shadow: 0 0 0 0 rgba(20,184,166,0.4);
}

/* ════════════════════════════════════════════════════════
   NAVBAR BRAND ICON ENHANCEMENT
   ════════════════════════════════════════════════════════ */
.brand-icon {
  box-shadow: 0 4px 20px rgba(124,58,237,0.55), inset 0 1px 0 rgba(255,255,255,0.2) !important;
}

/* ════════════════════════════════════════════════════════
   HERO META ITEMS
   ════════════════════════════════════════════════════════ */
.hero-meta-item {
  color: rgba(155,151,201,0.75);
  transition: color 0.2s;
}
.hero-meta-item:hover { color: var(--text-secondary); }

/* ════════════════════════════════════════════════════════
   STAT NUMBER GLOW
   ════════════════════════════════════════════════════════ */
.stat-number {
  filter: drop-shadow(0 0 16px rgba(124,58,237,0.25));
}

/* ════════════════════════════════════════════════════════
   RESPONSIVE UPDATES FOR NEW ELEMENTS
   ════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .trusted-bar { padding: 28px 0; }
  .marquee-content { gap: 36px; }
  .cursor-dot, .cursor-ring, .cursor-spotlight { display: none; }
}

/* ════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .demo-cols { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-gap: 80px; }

  .nav-links, .nav-actions { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: fixed;
    top: var(--nav-height); left: 0; right: 0;
    background: rgba(11,6,24,0.96); backdrop-filter: blur(20px);
    padding: 20px 24px; gap: 4px; border-bottom: 1px solid var(--col-border);
    z-index: 90;
  }
  .nav-links.open .nav-link { padding: 12px 8px; font-size: 16px; }
  .nav-hamburger { display: flex; }

  .hero-layout { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero-headline { font-size: 40px; }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr auto 1fr;
    gap: 24px;
  }
  .stat-divider { display: none; }

  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .steps-layout {
    flex-direction: column; align-items: stretch; gap: 24px;
  }
  .step-line { display: none; }
  .step { max-width: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }

  .cta-card { padding: 48px 24px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 32px; }
  .section-title { font-size: 28px; }
  .stats-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
  .demo-cols { grid-template-columns: 1fr; }
}
