/* ============================================================
   CONTINUAS — design system
   ============================================================ */
:root {
  --bg: #060509;
  --surface: #0e0c16;
  --surface-2: #14111f;
  --line: rgba(168, 130, 255, 0.12);
  --accent: #8b3dff;
  --accent-soft: #b794ff;
  --accent-glow: rgba(139, 61, 255, 0.35);
  --text: #ffffff;
  --muted: #9b94ad;
  --radius: 20px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

::selection { background: var(--accent); color: #fff; }

a, button, input, select, textarea { outline: none; }
a:focus, button:focus, input:focus, select:focus, textarea:focus,
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: none;
  box-shadow: none;
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

h1, h2, h3, h4 { font-weight: 700; letter-spacing: -0.03em; line-height: 1.05; }
h1 { font-size: clamp(44px, 6.5vw, 88px); font-weight: 800; }
h2 { font-size: clamp(34px, 4.6vw, 64px); font-weight: 800; }
h3 { font-size: 22px; letter-spacing: -0.02em; }
h1 .dim { display: block; color: var(--muted); }

.center { text-align: center; }

.eyebrow {
  font-size: 13px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--accent-soft); margin-bottom: 24px;
}
.eyebrow.center { text-align: center; }

/* premium-tier markers (Assistant = Pro, Automation = Autopilot) */
.plan-tag {
  display: inline-flex; align-items: center; gap: 4px; vertical-align: middle;
  margin-left: 9px; position: relative; top: -1px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: #fff; background: linear-gradient(135deg, #9d5cff, #7a2fe8);
  padding: 3px 9px 3px 8px; border-radius: 100px; box-shadow: 0 2px 14px var(--accent-glow);
}
.plan-tag svg { width: 10px; height: 10px; }
.soon-tag {
  display: inline-flex; align-items: center; gap: 6px; vertical-align: middle;
  margin-left: 9px; position: relative; top: -1px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: #cdb6ff; background: rgba(139,61,255,0.10);
  border: 1px solid rgba(157,92,255,0.45); padding: 3px 10px 3px 8px; border-radius: 100px;
}
.soon-tag::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #9d5cff; box-shadow: 0 0 8px #9d5cff; }
.plan-note {
  display: flex; align-items: center; gap: 7px;
  margin: 18px 0 26px; font-size: 13px; color: var(--muted);
}
.plan-note.center { justify-content: center; text-align: center; }
.plan-note svg { width: 13px; height: 13px; color: var(--accent-soft); flex: none; }
.plan-note span { color: var(--accent-soft); font-weight: 600; }

.pillar-band { text-align: center; padding: 92px 0 4px; }
.pillar-eyebrow { margin: 0; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; color: var(--accent-soft); }
.pillar-title { font-size: clamp(23px, 3vw, 36px); font-weight: 800; line-height: 1.12; margin-top: 16px; }

.accent { color: var(--accent-soft); }
.accent-grad {
  background: linear-gradient(100deg, #b794ff 0%, #8b3dff 55%, #d6c4ff 110%);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradShift 6s ease-in-out infinite alternate;
}
@keyframes gradShift { from { background-position: 0% 0; } to { background-position: 100% 0; } }

.sub {
  font-size: clamp(17px, 1.6vw, 21px); color: var(--muted);
  max-width: 640px; font-weight: 400; line-height: 1.65;
}
.sub.center { margin: 20px auto 0; text-align: center; }

section { position: relative; padding: 160px 0; }

/* ---------- ambient background ---------- */
#particles {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0.7;
}
.ambient {
  position: fixed; border-radius: 50%; filter: blur(120px);
  pointer-events: none; z-index: 0;
}
.ambient-1 {
  width: 60vw; height: 60vw; top: -25vw; right: -20vw;
  background: radial-gradient(circle, rgba(139,61,255,0.16), transparent 70%);
  animation: drift1 24s ease-in-out infinite alternate;
}
.ambient-2 {
  width: 50vw; height: 50vw; bottom: -25vw; left: -18vw;
  background: radial-gradient(circle, rgba(91,46,184,0.13), transparent 70%);
  animation: drift2 30s ease-in-out infinite alternate;
}
@keyframes drift1 { to { transform: translate(-8vw, 10vh) scale(1.15); } }
@keyframes drift2 { to { transform: translate(10vw, -8vh) scale(1.1); } }

main, .nav, .footer, .mobile-menu { position: relative; z-index: 1; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font); font-size: 15px; font-weight: 600;
  padding: 13px 26px; border-radius: 100px; text-decoration: none;
  cursor: pointer; border: none; transition: all 0.35s var(--ease);
  letter-spacing: -0.01em; white-space: nowrap;
}
.btn-lg { font-size: 16px; padding: 16px 34px; }
.btn-sm { font-size: 14px; padding: 9px 20px; }
.btn-primary {
  background: linear-gradient(135deg, #9d5cff, #7a2fe8);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.12) inset, 0 8px 40px var(--accent-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(255,255,255,0.18) inset, 0 12px 56px rgba(139,61,255,0.55); }
.btn-glass {
  background: rgba(255,255,255,0.05); color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.btn-glass:hover { background: rgba(255,255,255,0.1); border-color: rgba(183,148,255,0.4); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--muted); }
.btn-ghost:hover { color: #fff; }
.btn.full { width: 100%; justify-content: center; }

.cta-row { display: flex; gap: 16px; flex-wrap: wrap; }
.cta-row.center { justify-content: center; }

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.d-1 { transition-delay: 0.12s; }
.d-2 { transition-delay: 0.24s; }
.d-3 { transition-delay: 0.36s; }
.d-4 { transition-delay: 0.48s; }
.d-5 { transition-delay: 0.6s; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(6, 5, 9, 0.96);
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s, opacity 2s ease;
  border-bottom: 1px solid transparent;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.24);
}
.nav.scrolled {
  background: rgba(6, 5, 9, 0.98);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.32);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 18px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo {
  display: flex; align-items: center; gap: 11px;
  color: #fff; text-decoration: none; font-weight: 700; font-size: 19px; letter-spacing: -0.02em;
}
.logo-img {
  width: 32px; height: 32px; display: block;
  filter: drop-shadow(0 0 12px rgba(139, 61, 255, 0.45));
}
.logo-ai {
  background: linear-gradient(100deg, #b794ff, #8b3dff);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.nav-links { display: flex; gap: 34px; align-items: center; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 14.5px; font-weight: 500; transition: color 0.25s; }
.nav-links a:hover { color: #fff; }
.nav-cta { display: flex; gap: 10px; align-items: center; }
.nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: #fff; margin: 5px 0; border-radius: 2px; transition: 0.3s; }

.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: rgba(6,5,9,0.97);
  backdrop-filter: blur(24px);
  display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 30px;
  padding: 84px 24px 24px;
  opacity: 0; pointer-events: none; transition: opacity 0.35s;
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  max-height: 100vh;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a { color: #fff; text-decoration: none; font-size: 26px; font-weight: 600; letter-spacing: -0.02em; }
.mobile-menu .btn { font-size: 17px; }

/* ============================================================
   1 · HERO
   ============================================================ */
.hero { display: flex; align-items: center; min-height: 88vh; padding: 138px 0 64px; }
.hero-grid {
  width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 1.02fr 1.08fr; gap: clamp(32px, 5vw, 60px);
  align-items: center;
}
.hero-copy { max-width: 620px; text-align: left; }
.hero h1 { font-size: clamp(40px, 4.7vw, 66px); }
.hero .sub { margin: 24px 0 32px; max-width: 560px; }
.hero .cta-row { justify-content: flex-start; align-items: center; }
/* micro-copy sits on its own line, directly under "Start My Free Trial", left-aligned */
.hero .cta-row .cta-micro { flex: 0 0 100%; width: 100%; margin-top: 0; text-align: left; }
.hero-cta { display: inline-flex; flex-direction: column; align-items: center; }
.hero-cta .cta-micro { margin-top: 12px; text-align: center; }
.hero-trust { margin-top: 18px; font-size: 13px; color: rgba(155,148,173,0.92); line-height: 1.5; }
.hero-trust .lock { margin-right: 2px; }

/* hero product dashboard */
.hero-dash { position: relative; }
.hd-win {
  background: linear-gradient(168deg, rgba(139,61,255,0.10), rgba(20,17,31,0.88));
  border: 1px solid rgba(183,148,255,0.18); border-radius: 20px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 60px rgba(139,61,255,0.10);
}
.hd-head { display: flex; align-items: center; gap: 10px; padding: 13px 18px; border-bottom: 1px solid rgba(168,130,255,0.10); }
.hd-title { font-size: 13px; font-weight: 600; color: #cfc9da; }
.hd-badge { margin-left: auto; font-size: 11px; font-weight: 600; color: #c4a6ff; background: rgba(139,61,255,0.18); border-radius: 20px; padding: 3px 10px; }
.hd-body { padding: 16px 18px; display: flex; flex-direction: column; gap: 12px; }
.hd-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(168,130,255,0.10); border-radius: 14px; padding: 14px; }
.hd-r1 { display: flex; align-items: center; gap: 10px; margin-bottom: 9px; }
.hd-av { width: 34px; height: 34px; border-radius: 50%; background: rgba(139,61,255,0.18); color: #c4a6ff; display: grid; place-items: center; font-size: 12px; font-weight: 600; flex: none; }
.hd-av.teal { background: rgba(93,202,165,0.18); color: #7fdcbe; }
.hd-who { flex: 1; min-width: 0; line-height: 1.25; }
.hd-who b { font-size: 13.5px; font-weight: 600; display: block; }
.hd-who span { font-size: 12px; color: #8a8398; }
.hd-chip { font-size: 11px; font-weight: 500; padding: 3px 9px; border-radius: 20px; flex: none; }
.hd-chip.risk { background: rgba(226,75,74,0.16); color: #f0908f; }
.hd-chip.owed { background: rgba(239,159,39,0.16); color: #f2b659; }
.hd-why { font-size: 12.5px; color: #9b94ad; margin-bottom: 9px; }
.hd-draft { font-size: 13px; color: #d6d1e4; line-height: 1.55; background: rgba(139,61,255,0.08); border-left: 2px solid var(--accent); border-radius: 0 8px 8px 0; padding: 9px 12px; margin-bottom: 12px; }
.hd-act { display: flex; align-items: center; gap: 9px; }
.hd-send { font-size: 12.5px; font-weight: 600; color: #fff; background: #8b3dff; border-radius: 8px; padding: 6px 14px; }
.hd-ghost { font-size: 12.5px; color: #cfc9da; border: 1px solid rgba(183,148,255,0.26); border-radius: 8px; padding: 6px 12px; }
.hd-when { margin-left: auto; font-size: 11px; color: #6f6880; }
.hd-card.compact .hd-why { margin-bottom: 0; }

@media (max-width: 920px) {
  .hero { min-height: auto; padding: 116px 0 56px; }
  .hero-grid { grid-template-columns: 1fr; gap: 38px; }
  .hero-copy { max-width: 640px; margin: 0 auto; text-align: center; }
  .hero .sub { margin: 22px auto 30px; }
  .hero .cta-row { justify-content: center; }
  .hero .cta-row .cta-micro { text-align: center; }
  .hero-trust { text-align: center; }
}

/* flow visual — one email in, one outcome out, on loop */
.hero-visual { width: 100%; max-width: 1020px; margin-top: 90px; }
.flow {
  position: relative; height: 290px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  padding: 30px 0;
}
#flowCanvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.flow-pill {
  position: absolute; left: 50%; top: 50%;
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(20, 17, 31, 0.78);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-radius: 100px; padding: 11px 20px;
  font-size: 15px; font-weight: 500; color: #d9d4e8;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
  white-space: nowrap; opacity: 0;
  will-change: transform, opacity; z-index: 2;
}
.flow-pill i { font-style: normal; font-size: 14px; opacity: 0.85; }
.flow-pill.out { border-color: rgba(183,148,255,0.32); color: #e9dfff; }
.flow-pill.out i { color: var(--accent-soft); }
.flow-pill.in { animation: pillIn 5.2s ease-in-out infinite; }
.flow-pill.out { animation: pillOut 5.2s ease-in-out infinite; }
@keyframes pillIn {
  0%   { transform: translate(calc(-50% - 440px), -50%) scale(1); opacity: 0; }
  10%  { opacity: 1; }
  30%  { opacity: 1; }
  42%  { transform: translate(-50%, -50%) scale(0.18); opacity: 0; }
  100% { transform: translate(-50%, -50%) scale(0.18); opacity: 0; }
}
@keyframes pillOut {
  0%, 50% { transform: translate(-50%, -50%) scale(0.18); opacity: 0; }
  60%  { transform: translate(calc(-50% + 250px), -50%) scale(1); opacity: 1; }
  88%  { transform: translate(calc(-50% + 410px), -50%) scale(1); opacity: 1; }
  100% { transform: translate(calc(-50% + 440px), -50%) scale(1); opacity: 0; }
}
@keyframes pillInY {
  0%   { transform: translate(-50%, calc(-50% - 165px)) scale(1); opacity: 0; }
  10%  { opacity: 1; }
  30%  { opacity: 1; }
  42%  { transform: translate(-50%, -50%) scale(0.18); opacity: 0; }
  100% { transform: translate(-50%, -50%) scale(0.18); opacity: 0; }
}
@keyframes pillOutY {
  0%, 50% { transform: translate(-50%, -50%) scale(0.18); opacity: 0; }
  60%  { transform: translate(-50%, calc(-50% + 110px)) scale(1); opacity: 1; }
  88%  { transform: translate(-50%, calc(-50% + 150px)) scale(1); opacity: 1; }
  100% { transform: translate(-50%, calc(-50% + 165px)) scale(1); opacity: 0; }
}

.flow-core { position: relative; width: 190px; height: 190px; display: grid; place-items: center; z-index: 2; }
.core-orb {
  width: 92px; height: 92px; border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #b685ff, #6f23d8 60%, #3d0f87);
  box-shadow: 0 0 70px rgba(139,61,255,0.65), 0 0 140px rgba(139,61,255,0.3);
  display: grid; place-items: center;
  font-weight: 800; font-size: 34px; color: #fff;
  animation: orbPulse 5.2s ease-in-out infinite;
}
.core-mark { width: 56%; height: auto; display: block; }
/* the 46% surge lands as the inbound pill is absorbed (pillIn ends at 42%) */
@keyframes orbPulse {
  0%, 28%, 64%, 100% { box-shadow: 0 0 70px rgba(139,61,255,0.65), 0 0 140px rgba(139,61,255,0.3); transform: scale(1); }
  46% { box-shadow: 0 0 110px rgba(139,61,255,0.9), 0 0 210px rgba(139,61,255,0.45); transform: scale(1.1); }
}
.core-ring {
  position: absolute; border-radius: 50%; border: 1px solid rgba(183,148,255,0.22);
}
.core-ring.r1 { inset: 26px; animation: ringSpin 14s linear infinite; border-top-color: rgba(183,148,255,0.65); }
.core-ring.r2 { inset: 10px; animation: ringSpin 22s linear infinite reverse; border-bottom-color: rgba(183,148,255,0.5); }
.core-ring.r3 { inset: -8px; animation: ringSpin 32s linear infinite; border-left-color: rgba(183,148,255,0.35); }
@keyframes ringSpin { to { transform: rotate(360deg); } }

.flow-caption { margin-top: 44px; font-size: clamp(17px, 2vw, 22px); font-weight: 600; letter-spacing: -0.02em; }
.flow-caption span { color: var(--muted); }
.flow-caption .accent { color: var(--accent-soft); }

.scroll-hint {
  position: relative; margin: 30px auto 0;
  width: 24px; height: 40px; border: 1.5px solid rgba(255,255,255,0.2); border-radius: 14px;
}
.scroll-hint span {
  position: absolute; top: 7px; left: 50%; width: 3px; height: 8px; margin-left: -1.5px;
  background: var(--accent-soft); border-radius: 3px;
  animation: hint 2s ease-in-out infinite;
}
@keyframes hint { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(14px); opacity: 0; } 100% { opacity: 0; } }

/* ============================================================
   2 · PROBLEM
   ============================================================ */
.problem { text-align: center; }
.decay {
  display: flex; gap: 20px; margin: 90px 0 70px;
  align-items: stretch; justify-content: center;
}
.decay-card {
  flex: 1; max-width: 240px; text-align: left;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 24px;
  position: relative;
  opacity: 0;
}
.decay-card.in { opacity: calc(var(--fade)); }
.decay-card::after {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius);
  background: linear-gradient(180deg, transparent 30%, rgba(6,5,9, calc(1 - var(--fade))));
  pointer-events: none;
}
.decay-time {
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-soft); display: block; margin-bottom: 14px;
}
.decay-card h4 { font-size: 17px; margin-bottom: 10px; line-height: 1.3; }
.decay-card p { font-size: 14px; color: var(--muted); line-height: 1.55; }
.problem-kicker { font-size: clamp(20px, 2.4vw, 28px); font-weight: 700; letter-spacing: -0.02em; color: var(--muted); }
.problem-kicker span { color: #fff; }

/* ============================================================
   3 · SYSTEM
   ============================================================ */
.system { padding-bottom: 56px; }
.context { padding-top: 104px; }
.pipeline { margin-top: 100px; position: relative; }
.pipeline-line { position: absolute; top: 7px; left: 0; width: 100%; height: 4px; overflow: visible; }
.pipe-bg { stroke: rgba(168,130,255,0.14); stroke-width: 2; }
.pipe-draw {
  stroke: url(#none); stroke: var(--accent); stroke-width: 2;
  stroke-dasharray: 1000; stroke-dashoffset: 1000;
  filter: drop-shadow(0 0 6px var(--accent-glow));
  transition: stroke-dashoffset 2.4s var(--ease);
}
.pipeline.in .pipe-draw { stroke-dashoffset: 0; }
.pipe-steps {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 28px;
}
.pipe-dot {
  display: block; width: 14px; height: 14px; border-radius: 50%;
  background: var(--accent); margin-bottom: 26px;
  box-shadow: 0 0 18px var(--accent-glow);
  animation: dotPulse 3s ease-in-out infinite;
}
.pipe-step:nth-child(2) .pipe-dot { animation-delay: 0.5s; }
.pipe-step:nth-child(3) .pipe-dot { animation-delay: 1s; }
.pipe-step:nth-child(4) .pipe-dot { animation-delay: 1.5s; }
.pipe-step:nth-child(5) .pipe-dot { animation-delay: 2s; }
.pipe-step:nth-child(6) .pipe-dot { animation-delay: 2.5s; }
@keyframes dotPulse { 0%,100% { box-shadow: 0 0 12px var(--accent-glow); } 50% { box-shadow: 0 0 26px rgba(139,61,255,0.7); } }
.pipe-step h4 { font-size: 16.5px; margin-bottom: 10px; line-height: 1.3; }
.pipe-step p { font-size: 13.5px; color: var(--muted); line-height: 1.55; }

/* ============================================================
   SPLIT LAYOUT (sections 4–6)
   ============================================================ */
.split {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center;
}
.split.rev .split-copy { order: 2; }
.split.rev .split-visual { order: 1; }
/* keep the assistant headline to two lines (one per phrase) */
.assistant .split-copy h2 { font-size: clamp(30px, 3.4vw, 48px); white-space: nowrap; }
.check-list { list-style: none; margin-top: 36px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 28px; }
.check-list li {
  position: relative; padding-left: 30px; font-size: 15.5px; color: #d9d4e8; font-weight: 500;
}
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 20px; height: 20px; border-radius: 7px;
  background: rgba(139,61,255,0.18); border: 1px solid rgba(183,148,255,0.35);
  color: var(--accent-soft); font-size: 11px; font-weight: 700;
  display: grid; place-items: center;
}

/* glass panel base */
.glass-panel {
  background: linear-gradient(160deg, rgba(22,18,35,0.85), rgba(13,11,21,0.9));
  border: 1px solid rgba(183,148,255,0.16);
  border-radius: 24px;
  backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 80px rgba(139,61,255,0.07);
  overflow: hidden;
}
.panel-head {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 22px; border-bottom: 1px solid rgba(183,148,255,0.1);
}
.dot-row { display: flex; gap: 6px; }
.dot-row i { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.14); }
.panel-title { font-size: 13px; color: var(--muted); font-weight: 500; }

/* — transcript (section 4) — */
.transcript { padding-bottom: 24px; }
.t-line { padding: 28px 26px 20px; font-size: 16.5px; line-height: 1.85; color: #cfc9e0; }
.t-line mark {
  background: transparent; color: #fff; font-weight: 600;
  border-bottom: 2.5px solid; padding-bottom: 1px; border-radius: 2px;
  transition: background 0.4s;
}
/* the detected annotations now live in a clean row below the text (.t-insights),
   so the old floating in-line call-outs are removed */
.t-line mark::after { display: none; }
.transcript.lit mark { background: rgba(139,61,255,0.1); }
.m-commit { border-color: #8b3dff; } .m-commit::after { background: rgba(139,61,255,0.25); color: #cdb0ff; border: 1px solid rgba(139,61,255,0.5); }
.m-deadline { border-color: #d49bff; } .m-deadline::after { background: rgba(212,155,255,0.18); color: #e7c8ff; border: 1px solid rgba(212,155,255,0.45); }
.m-action { border-color: #7ee2c0; } .m-action::after { background: rgba(126,226,192,0.14); color: #a9f0d8; border: 1px solid rgba(126,226,192,0.4); }
.m-intent { border-color: #ffd479; } .m-intent::after { background: rgba(255,212,121,0.13); color: #ffe2a3; border: 1px solid rgba(255,212,121,0.4); }
.transcript.lit .m-commit::after { transition-delay: 0.2s; }
.transcript.lit .m-deadline::after { transition-delay: 0.7s; }
.transcript.lit .m-action::after { transition-delay: 1.2s; }
.transcript.lit .m-intent::after { transition-delay: 1.7s; }

.t-insights { display: flex; flex-wrap: wrap; gap: 10px; padding: 4px 26px 0; }
.chip {
  font-size: 12.5px; font-weight: 600; padding: 6px 13px; border-radius: 100px;
  border: 1px solid; letter-spacing: 0.01em;
}
.chip-commit { color: #cdb0ff; border-color: rgba(139,61,255,0.5); background: rgba(139,61,255,0.12); }
.chip-deadline { color: #e7c8ff; border-color: rgba(212,155,255,0.4); background: rgba(212,155,255,0.08); }
.chip-action { color: #a9f0d8; border-color: rgba(126,226,192,0.35); background: rgba(126,226,192,0.07); }
.chip-intent { color: #ffe2a3; border-color: rgba(255,212,121,0.35); background: rgba(255,212,121,0.07); }

/* — chat (section 5) — */
.chat-body { padding: 26px 24px; min-height: 290px; display: flex; flex-direction: column; gap: 18px; }
.msg { max-width: 88%; font-size: 15px; line-height: 1.6; }
.msg.user {
  align-self: flex-end;
  background: linear-gradient(135deg, #8b3dff, #6324c9);
  color: #fff; padding: 12px 18px; border-radius: 18px 18px 4px 18px;
  font-weight: 500;
  box-shadow: 0 6px 24px rgba(139,61,255,0.3);
}
.msg.ai { align-self: flex-start; }
.ai-label {
  display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent-soft); margin-bottom: 8px;
}
.msg.ai #chatText, .msg.ai div {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(183,148,255,0.14);
  padding: 14px 18px; border-radius: 4px 18px 18px 18px; color: #d9d4e8;
  min-height: 24px; white-space: pre-line;
}
#chatText .hl { color: #fff; font-weight: 600; }
#chatActions {
  background: none; border: 0; padding: 0; border-radius: 0; min-height: 0;
  display: flex; align-items: center; flex-wrap: wrap; gap: 9px; margin-top: 14px; white-space: normal;
  opacity: 0; transform: translateY(4px); transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
#chatActions[hidden] { display: none; }
#chatActions.in { opacity: 1; transform: none; }
.ca-send { font-size: 12.5px; font-weight: 600; color: #fff; background: #8b3dff; border-radius: 8px; padding: 6px 14px; cursor: pointer; }
.ca-edit { font-size: 12.5px; color: #cfc9da; border: 1px solid rgba(183,148,255,0.26); border-radius: 8px; padding: 6px 12px; cursor: pointer; }
.ca-meta { font-size: 12px; color: var(--muted); margin-left: 2px; }
.caret { display: inline-block; width: 2px; height: 15px; background: var(--accent-soft); vertical-align: -2px; animation: blink 0.9s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.chat-input {
  margin: 0 24px 22px; padding: 13px 18px; border-radius: 100px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(183,148,255,0.16);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 14px; color: var(--muted);
}
.chat-input .send {
  width: 28px; height: 28px; border-radius: 50%; font-style: normal;
  background: linear-gradient(135deg, #9d5cff, #7a2fe8); color: #fff;
  display: grid; place-items: center; font-size: 14px;
}
.prompt-hint { display: inline-flex; align-items: center; gap: 8px; margin: 30px 0 0; font-size: 13.5px; font-weight: 500; color: var(--accent-soft); }
.prompt-hint svg { width: 16px; height: 16px; flex: none; }
.prompt-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.prompt-chip {
  font-family: var(--font); font-size: 12px; font-weight: 500; color: #d9d4e8;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(183,148,255,0.18);
  padding: 7px 13px; border-radius: 100px; cursor: pointer;
  transition: all 0.3s var(--ease);
}
.prompt-chip:hover, .prompt-chip.active {
  background: rgba(139,61,255,0.16); border-color: rgba(183,148,255,0.5); color: #fff;
  box-shadow: 0 0 24px rgba(139,61,255,0.2);
}

/* — timeline (section 6) — */
.timeline-panel .panel-head { justify-content: space-between; }
.person { display: flex; align-items: center; gap: 12px; }
.person strong { display: block; font-size: 14.5px; letter-spacing: -0.01em; }
.person em { font-style: normal; font-size: 12px; color: var(--muted); }
.avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, #8b3dff, #45128f);
  display: grid; place-items: center; font-size: 13px; font-weight: 700;
}
.health { font-size: 12px; font-weight: 600; color: #7ee2c0; }
.timeline { padding: 26px 26px 30px; position: relative; }
.timeline::before {
  content: ""; position: absolute; left: 32px; top: 34px; bottom: 38px;
  width: 1.5px; background: linear-gradient(180deg, rgba(139,61,255,0.5), rgba(139,61,255,0.08));
}
.tl-item { display: flex; gap: 18px; padding: 11px 0; position: relative; }
.tl-dot {
  flex: none; width: 13px; height: 13px; border-radius: 50%; margin-top: 5px;
  background: var(--surface-2); border: 2px solid rgba(183,148,255,0.5);
  z-index: 1;
}
.tl-item.open .tl-dot { border-color: #ffd479; box-shadow: 0 0 14px rgba(255,212,121,0.4); }
.tl-item.next .tl-dot { background: var(--accent); border-color: var(--accent-soft); box-shadow: 0 0 16px var(--accent-glow); animation: dotPulse 2.5s infinite; }
.tl-date { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 2px; }
.tl-item strong { font-size: 14.5px; }
.tl-item p { font-size: 13.5px; color: var(--muted); line-height: 1.5; margin-top: 2px; }
.tl-item.open strong { color: #ffe2a3; }
.tl-item.next strong { color: var(--accent-soft); }

/* ============================================================
   7 · USE CASES
   ============================================================ */
.uc-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 80px;
}
.uc-card {
  position: relative; overflow: hidden;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 44px 30px 40px;
  transition: transform 0.5s var(--ease), border-color 0.5s;
  will-change: transform;
}
.uc-card:hover { transform: translateY(-8px); border-color: rgba(183,148,255,0.4); }
.uc-glow {
  position: absolute; top: -60px; right: -60px; width: 200px; height: 200px;
  border-radius: 50%; filter: blur(60px); opacity: 0.5; transition: opacity 0.5s;
}
.uc-card:hover .uc-glow { opacity: 0.9; }
.g1 { background: rgba(139,61,255,0.4); }
.g2 { background: rgba(91,108,255,0.35); }
.g3 { background: rgba(214,98,255,0.32); }
.g4 { background: rgba(126,86,255,0.38); }
.uc-icon { display: block; margin-bottom: 22px; color: var(--accent-soft); }
.uc-icon svg { display: block; width: 30px; height: 30px; }
.b-icon svg { width: 20px; height: 20px; }
.lock { width: 13px; height: 13px; vertical-align: -2px; display: inline-block; }
.uc-card h3 { margin-bottom: 12px; position: relative; }
.uc-card p { font-size: 14.5px; color: var(--muted); line-height: 1.6; position: relative; }

/* ============================================================
   8 · PRODUCT WALKTHROUGH
   ============================================================ */
.product { padding-bottom: 60px; }
.walkthrough {
  max-width: 1200px; margin: 90px auto 0; padding: 0 32px;
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 70px;
  align-items: start;
}
.wt-sticky { position: sticky; top: 110px; }
.wt-stage { min-height: 430px; display: flex; flex-direction: column; }
.wt-screens { position: relative; flex: 1; }
.wt-screen {
  position: absolute; inset: 0; padding: 34px 30px;
  opacity: 0; transform: translateY(20px) scale(0.98);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  pointer-events: none;
  display: flex; flex-direction: column; gap: 16px; justify-content: center;
}
.wt-screen.active { opacity: 1; transform: none; pointer-events: auto; }

.ws-call { font-size: 14px; font-weight: 600; color: #ff8da3; display: flex; align-items: center; gap: 10px; }
.pulse-dot { width: 9px; height: 9px; border-radius: 50%; background: #ff5577; animation: dotPulse 1.6s infinite; box-shadow: 0 0 12px rgba(255,85,119,0.6); }
.ws-wave { display: flex; align-items: center; gap: 5px; height: 56px; }
.ws-wave i {
  width: 5px; border-radius: 4px; background: linear-gradient(180deg, #b794ff, #8b3dff);
  animation: wave 1.1s ease-in-out infinite alternate;
}
.ws-wave i:nth-child(odd) { animation-duration: 0.9s; }
.ws-wave i:nth-child(3n) { animation-duration: 1.3s; }
.ws-wave i:nth-child(1) { height: 35%; } .ws-wave i:nth-child(2) { height: 70%; }
.ws-wave i:nth-child(3) { height: 50%; } .ws-wave i:nth-child(4) { height: 90%; }
.ws-wave i:nth-child(5) { height: 60%; } .ws-wave i:nth-child(6) { height: 100%; }
.ws-wave i:nth-child(7) { height: 45%; } .ws-wave i:nth-child(8) { height: 80%; }
.ws-wave i:nth-child(9) { height: 55%; } .ws-wave i:nth-child(10) { height: 75%; }
.ws-wave i:nth-child(11) { height: 40%; } .ws-wave i:nth-child(12) { height: 65%; }
@keyframes wave { from { transform: scaleY(0.5); } to { transform: scaleY(1.1); } }
.ws-quote { font-size: 17px; color: #d9d4e8; font-style: italic; line-height: 1.6; }

.ws-row {
  display: flex; align-items: center; gap: 14px; font-size: 15px; color: #d9d4e8;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(183,148,255,0.12);
  padding: 14px 18px; border-radius: 14px;
}
.ws-insight {
  background: rgba(139,61,255,0.08); border: 1px solid rgba(183,148,255,0.22);
  border-radius: 16px; padding: 18px 20px;
}
.ws-insight strong { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-soft); }
.ws-insight p { font-size: 15px; color: #d9d4e8; margin-top: 6px; line-height: 1.55; }
.ws-insight.dim2 { background: rgba(255,212,121,0.05); border-color: rgba(255,212,121,0.2); }
.ws-insight.dim2 strong { color: #ffe2a3; }
.ws-action {
  background: rgba(139,61,255,0.1); border: 1px solid rgba(183,148,255,0.3);
  border-radius: 18px; padding: 24px;
  box-shadow: 0 0 50px rgba(139,61,255,0.12);
}
.ws-action span { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-soft); font-weight: 700; }
.ws-action p { font-size: 17px; font-weight: 600; margin: 10px 0 18px; }
.ws-done { text-align: center; }
.big-check {
  display: inline-grid; place-items: center; width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, #9d5cff, #6324c9); font-size: 28px; font-weight: 800;
  box-shadow: 0 0 50px var(--accent-glow); margin-bottom: 20px;
}
.ws-done p { font-size: 17px; line-height: 1.8; color: #d9d4e8; }
.ws-done strong { color: #fff; }

.wt-steps { display: flex; flex-direction: column; }
.wt-step {
  padding: 90px 0; border-bottom: 1px solid rgba(183,148,255,0.08);
  opacity: 0.3; transition: opacity 0.5s;
}
.wt-step.active { opacity: 1; }
.wt-step span { font-size: 13px; font-weight: 700; letter-spacing: 0.2em; color: var(--accent-soft); }
.wt-step h3 { font-size: 26px; margin: 14px 0 12px; }
.wt-step p { color: var(--muted); font-size: 15.5px; max-width: 380px; }

/* ============================================================
   9 · FEATURES (bento)
   ============================================================ */
.bento {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 80px;
}
.bento-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 26px;
  position: relative; overflow: hidden;
  transition: border-color 0.4s, transform 0.4s var(--ease), box-shadow 0.4s;
}
.bento-card:hover {
  border-color: rgba(183,148,255,0.38); transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.4), 0 0 40px rgba(139,61,255,0.08);
}
.bento-card.span2 { grid-column: span 2; }
.b-icon {
  display: inline-grid; place-items: center; width: 40px; height: 40px;
  border-radius: 12px; font-size: 17px; color: var(--accent-soft);
  background: rgba(139,61,255,0.12); border: 1px solid rgba(183,148,255,0.25);
  margin-bottom: 18px;
}
.bento-card h3 { font-size: 17.5px; margin-bottom: 8px; }
.bento-card p { font-size: 14px; color: var(--muted); line-height: 1.55; }
.b-visual { margin-top: 22px; display: flex; align-items: flex-end; gap: 8px; height: 46px; }
.b-capture i {
  flex: 1; height: 100%; border-radius: 8px;
  background: linear-gradient(180deg, rgba(139,61,255,0.25), rgba(139,61,255,0.05));
  border: 1px solid rgba(183,148,255,0.18);
  animation: capturePulse 3s ease-in-out infinite;
}
.b-capture i:nth-child(2) { animation-delay: 0.4s; } .b-capture i:nth-child(3) { animation-delay: 0.8s; }
.b-capture i:nth-child(4) { animation-delay: 1.2s; } .b-capture i:nth-child(5) { animation-delay: 1.6s; }
@keyframes capturePulse { 0%,100% { opacity: 0.45; } 50% { opacity: 1; } }
.b-bars i {
  flex: 1; height: calc(var(--h) * 100%); border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, #9d5cff, rgba(139,61,255,0.15));
  animation: barGrow 2.8s ease-in-out infinite alternate;
  transform-origin: bottom;
}
.b-bars i:nth-child(2) { animation-delay: 0.3s; } .b-bars i:nth-child(3) { animation-delay: 0.6s; }
.b-bars i:nth-child(4) { animation-delay: 0.9s; } .b-bars i:nth-child(5) { animation-delay: 1.2s; }
@keyframes barGrow { from { transform: scaleY(0.85); } to { transform: scaleY(1.05); } }

/* ============================================================
   10 · TESTIMONIALS
   ============================================================ */
.testimonials { padding: 180px 0; }
.quote-stage { position: relative; min-height: 300px; max-width: 880px; margin: 0 auto; }
.quote {
  position: absolute; inset: 0; text-align: center;
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  pointer-events: none;
  display: flex; flex-direction: column; justify-content: center; gap: 34px;
}
.quote.active { opacity: 1; transform: none; pointer-events: auto; }
.quote p {
  font-size: clamp(24px, 3.4vw, 42px); font-weight: 700; letter-spacing: -0.025em;
  line-height: 1.25;
}
.quote em { font-style: normal; color: var(--accent-soft); }
.quote footer strong { display: block; font-size: 16px; }
.quote footer span { font-size: 14px; color: var(--muted); }
.quote-dots { display: flex; justify-content: center; gap: 10px; margin-top: 50px; }
.quote-dots button {
  width: 9px; height: 9px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,0.18); transition: all 0.35s; padding: 0;
}
.quote-dots button.active { background: var(--accent-soft); width: 26px; border-radius: 6px; box-shadow: 0 0 12px var(--accent-glow); }

/* ============================================================
   11 · PRICING
   ============================================================ */
.billing-toggle {
  display: flex; gap: 4px; width: max-content; margin: 44px auto 0;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(183,148,255,0.15);
  border-radius: 100px; padding: 5px;
}
.bt-opt {
  font-family: var(--font); font-size: 14px; font-weight: 600; color: var(--muted);
  background: transparent; border: none; border-radius: 100px;
  padding: 9px 22px; cursor: pointer; transition: all 0.3s var(--ease);
  display: flex; align-items: center; gap: 8px;
}
.period-toggle { margin-top: 14px; }
.period-toggle[hidden] { display: none; }
.bt-opt em { font-style: normal; font-size: 11.5px; color: var(--accent-soft); font-weight: 700; }
.bt-opt.active { background: linear-gradient(135deg, #9d5cff, #7a2fe8); color: #fff; box-shadow: 0 4px 20px var(--accent-glow); }
.bt-opt.active em { color: rgba(255,255,255,0.85); }

.price-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  margin-top: 64px; align-items: stretch;
}
.price-grid[hidden] { display: none; }
.price-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 24px; padding: 38px 32px;
  display: flex; flex-direction: column;
  transition: transform 0.45s var(--ease), border-color 0.45s;
}
.price-card:hover { transform: translateY(-6px); border-color: rgba(183,148,255,0.35); }
.price-card.featured {
  background: linear-gradient(170deg, rgba(139,61,255,0.14), rgba(20,17,31,0.9) 55%);
  border-color: rgba(183,148,255,0.45);
  box-shadow: 0 0 70px rgba(139,61,255,0.16);
  position: relative;
}
.badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  background: linear-gradient(135deg, #9d5cff, #7a2fe8); color: #fff;
  padding: 6px 16px; border-radius: 100px; white-space: nowrap;
  box-shadow: 0 4px 20px var(--accent-glow);
}
.price-card h3 { font-size: 18px; color: var(--accent-soft); }
.price { margin: 18px 0 4px; display: flex; align-items: baseline; gap: 5px; }
.amount { font-size: 52px; font-weight: 800; letter-spacing: -0.04em; }
.per { color: var(--muted); font-size: 15px; }
.price-was { font-size: 22px; font-weight: 600; color: var(--muted); text-decoration: line-through; text-decoration-thickness: 1.5px; align-self: center; }
.price-was:empty { display: none; }
.price-bill { font-size: 12.5px; color: var(--muted); margin: 0 0 18px; }
.price-roi { font-size: clamp(15px, 1.6vw, 18px); color: #fff; margin: 14px auto 30px; max-width: 620px; }
.price-roi { font-weight: 500; }
.price-sub { font-size: 14px; color: var(--muted); margin-bottom: 28px; line-height: 1.5; }
.price-micro { font-size: 12px; color: var(--muted); text-align: center; margin-top: 10px; }
.price-card ul { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-bottom: 36px; flex: 1; }
.price-card li {
  position: relative; padding-left: 26px; font-size: 14.5px; color: #d9d4e8;
}
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--accent-soft); font-weight: 700; font-size: 13px; }

/* ============================================================
   12 · FINAL CTA
   ============================================================ */
.final {
  text-align: center; padding: 240px 0; overflow: hidden;
}
.final-glow {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 900px; height: 900px; border-radius: 50%;
  background: radial-gradient(circle, rgba(139,61,255,0.22), rgba(139,61,255,0.06) 45%, transparent 70%);
  filter: blur(40px);
  animation: glowBreathe 7s ease-in-out infinite;
  pointer-events: none;
}
@keyframes glowBreathe { 0%,100% { opacity: 0.8; transform: translate(-50%,-50%) scale(1); } 50% { opacity: 1; transform: translate(-50%,-50%) scale(1.08); } }
.final h2 { position: relative; }
.final-q {
  position: relative; margin: 28px auto 48px;
  font-size: clamp(18px, 2.2vw, 26px); color: var(--accent-soft); font-weight: 500;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--line); padding: 56px 0; }
.footer-inner {
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
}
.footer p { font-size: 13.5px; color: var(--muted); flex: 1; min-width: 240px; }
.footer nav { display: flex; gap: 24px; }
.footer nav a { color: var(--muted); text-decoration: none; font-size: 13.5px; transition: color 0.25s; }
.footer nav a:hover { color: #fff; }
.footer .copy { font-size: 13px; color: rgba(155,148,173,0.6); }
.footer-social { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 9px; border: 1px solid var(--line); color: var(--muted); transition: color 0.25s, border-color 0.25s, background 0.25s; }
.footer-social:hover { color: #fff; border-color: var(--accent-soft); background: rgba(139,61,255,0.12); }
.footer-social svg { width: 17px; height: 17px; }

/* ============================================================
   HERO NOTE
   ============================================================ */
.hero-note {
  margin-top: 22px; font-size: 13.5px; color: var(--muted);
}
.hero-note::before { content: "⤓ "; color: var(--accent-soft); }

/* ============================================================
   3 · HISTORICAL IMPORT
   ============================================================ */
.import-toggle {
  display: flex; gap: 4px; width: max-content; margin-top: 36px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(183,148,255,0.15);
  border-radius: 100px; padding: 5px;
}
.imp-opt {
  font-family: var(--font); font-size: 14px; font-weight: 600; color: var(--muted);
  background: transparent; border: none; border-radius: 100px;
  padding: 9px 22px; cursor: pointer; transition: all 0.3s var(--ease);
}
.imp-opt.active {
  background: linear-gradient(135deg, #9d5cff, #7a2fe8); color: #fff;
  box-shadow: 0 4px 20px var(--accent-glow);
}
.import-kicker { margin-top: 26px; font-size: 15px; color: var(--muted); }
.import-kicker span { color: var(--accent-soft); font-weight: 600; }

.import-panel .panel-title em { font-style: normal; color: var(--accent-soft); font-weight: 700; }
.imp-depth { margin: 22px 26px 2px; }
.imp-depth-bars { display: flex; align-items: flex-end; gap: 4px; height: 48px; }
.imp-depth-bars i { flex: 1; height: max(6px, calc(var(--h) * 0.48px)); border-radius: 3px; background: rgba(183,148,255,0.1); transition: background 0.5s var(--ease), box-shadow 0.5s var(--ease); }
.imp-depth-bars i.lit { background: linear-gradient(180deg, #b794ff, #7a2fe8); box-shadow: 0 0 10px rgba(139,61,255,0.22); }
.imp-depth-axis { display: flex; justify-content: space-between; margin-top: 9px; font-size: 11px; color: var(--muted); }
.imp-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  padding: 24px 26px 6px;
}
.imp-stat strong {
  display: block; font-size: clamp(22px, 2.4vw, 30px); font-weight: 800;
  letter-spacing: -0.03em; color: #fff;
}
.imp-stat span { font-size: 12px; color: var(--muted); line-height: 1.35; display: block; margin-top: 4px; }
.imp-found { padding: 18px 26px 20px; display: flex; flex-direction: column; gap: 10px; transition: opacity 0.22s ease; }
.imp-more { margin: -4px 26px 20px; padding: 9px 14px; border-radius: 12px; border: 1px dashed rgba(183,148,255,0.28); font-size: 12.5px; font-weight: 600; color: var(--accent-soft); text-align: center; letter-spacing: 0.01em; }
.imp-more[hidden] { display: none; }
.imp-found.swapping { opacity: 0; }
.imp-row {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(183,148,255,0.12);
  border-radius: 14px; padding: 12px 16px;
}
.imp-row .chip { flex: none; }
.imp-row p { font-size: 13.5px; color: #d9d4e8; line-height: 1.5; }

/* ============================================================
   6 · YOUR VOICE
   ============================================================ */
.voice-switch {
  margin-left: auto; display: flex; gap: 3px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(183,148,255,0.18);
  border-radius: 100px; padding: 3px;
}
.vs-opt {
  font-family: var(--font); font-size: 12px; font-weight: 600; color: var(--muted);
  background: transparent; border: none; border-radius: 100px;
  padding: 6px 14px; cursor: pointer; transition: all 0.3s var(--ease); white-space: nowrap;
}
.vs-opt.active {
  background: linear-gradient(135deg, #9d5cff, #7a2fe8); color: #fff;
  box-shadow: 0 2px 14px var(--accent-glow);
}
.voice-body { padding: 28px 26px 22px; }
.voice-draft {
  font-size: 16.5px; line-height: 1.8; color: #e6e1f2;
  min-height: 120px; transition: opacity 0.3s;
}
.voice-draft.swap { opacity: 0; }
.voice-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.voice-train {
  padding: 16px 26px; border-top: 1px solid rgba(183,148,255,0.1);
  font-size: 13px; color: var(--muted);
}
.voice-train strong { color: var(--accent-soft); font-weight: 600; }

/* ============================================================
   8 · CONTROL — INTENSITY + AUTOPILOT
   ============================================================ */
.control-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  margin-top: 80px; align-items: stretch;
}
.ctl-card { padding: 36px 34px; display: flex; flex-direction: column; }
.ctl-card h3 { font-size: 21px; }
.ctl-sub { font-size: 14.5px; color: var(--muted); line-height: 1.6; margin: 12px 0 30px; }

.ctl-range {
  -webkit-appearance: none; appearance: none; width: 100%; height: 6px;
  border-radius: 6px; outline: none; cursor: pointer;
  background: linear-gradient(90deg, rgba(139,61,255,0.7), rgba(183,148,255,0.25));
}
.ctl-range::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 26px; height: 26px; border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #c9a8ff, #8b3dff 70%);
  border: 2px solid rgba(255,255,255,0.85);
  box-shadow: 0 0 24px var(--accent-glow);
  transition: transform 0.2s var(--ease);
}
.ctl-range::-webkit-slider-thumb:hover { transform: scale(1.12); }
.ctl-range::-moz-range-thumb {
  width: 24px; height: 24px; border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #c9a8ff, #8b3dff 70%);
  border: 2px solid rgba(255,255,255,0.85);
  box-shadow: 0 0 24px var(--accent-glow);
}
.ctl-labels {
  display: grid; grid-template-columns: 1fr 1fr 1fr; margin-top: 14px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted);
}
.ctl-labels span:nth-child(1) { text-align: left; }
.ctl-labels span:nth-child(2) { text-align: center; }
.ctl-labels span:nth-child(3) { text-align: right; }
.ctl-labels span { transition: color 0.3s; }
.ctl-labels span.on { color: var(--accent-soft); }
.ctl-preview {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  margin-top: 30px; padding: 20px 18px;
  background: rgba(139,61,255,0.07); border: 1px solid rgba(183,148,255,0.16);
  border-radius: 16px; text-align: center;
}
.ctl-stat strong { display: block; font-size: 16.5px; letter-spacing: -0.01em; }
.ctl-stat span { font-size: 11.5px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; display: block; margin-top: 4px; }
.ctl-note { margin-top: auto; padding-top: 22px; font-size: 13.5px; color: var(--muted); line-height: 1.55; }

.ap-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.ap-toggle {
  flex: none; width: 56px; height: 31px; border-radius: 100px; cursor: pointer;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(183,148,255,0.25);
  position: relative; transition: all 0.35s var(--ease); padding: 0;
}
.ap-toggle span {
  position: absolute; top: 3px; left: 3px; width: 23px; height: 23px; border-radius: 50%;
  background: #cfc9e0; transition: all 0.35s var(--ease);
}
.ap-toggle.on {
  background: linear-gradient(135deg, #9d5cff, #7a2fe8);
  border-color: rgba(255,255,255,0.25);
  box-shadow: 0 0 28px var(--accent-glow);
}
.ap-toggle.on span { left: 28px; background: #fff; }
.ap-duration { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 14px; transition: opacity 0.3s var(--ease); }
.ap-dopt { font: 600 12.5px Inter, sans-serif; color: var(--muted); background: rgba(255,255,255,0.03); border: 1px solid var(--line); border-radius: 9px; padding: 7px 12px; cursor: pointer; transition: color 0.2s, background 0.2s, border-color 0.2s; }
.ap-dopt:hover { color: #fff; border-color: rgba(183,148,255,0.4); }
.ap-dopt.active { color: #fff; background: rgba(139,61,255,0.18); border-color: rgba(183,148,255,0.55); }
.ap-sched { display: flex; flex-wrap: wrap; gap: 14px; margin: -4px 0 16px; }
.ap-sched[hidden] { display: none; }
.ap-date { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--muted); }
.ap-date input { background: rgba(255,255,255,0.04); border: 1px solid var(--line); border-radius: 8px; color: #fff; padding: 6px 10px; font: inherit; color-scheme: dark; }
.ap-date input:focus { outline: none; border-color: rgba(183,148,255,0.55); }
.ap-status {
  margin-bottom: 24px; padding: 14px 18px; border-radius: 14px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(183,148,255,0.14);
  font-size: 14px; color: var(--muted); line-height: 1.55;
  transition: all 0.4s var(--ease);
}
.ap-status strong { color: #fff; }
.ap-status.on {
  background: rgba(139,61,255,0.12); border-color: rgba(183,148,255,0.4);
  color: #d9d4e8; box-shadow: 0 0 30px rgba(139,61,255,0.1);
}
.ap-status.on strong { color: var(--accent-soft); }
.ap-safeguards { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-top: auto; }
.ap-safeguards li {
  position: relative; padding-left: 30px; font-size: 14px; color: #d9d4e8; line-height: 1.5;
}
.ap-safeguards li::before {
  content: "✓"; position: absolute; left: 0; top: 1px;
  width: 20px; height: 20px; border-radius: 7px;
  background: rgba(139,61,255,0.18); border: 1px solid rgba(183,148,255,0.35);
  color: var(--accent-soft); font-size: 11px; font-weight: 700;
  display: grid; place-items: center;
}

/* pricing extras */
.amount.custom { font-size: 40px; line-height: 1.3; }
.price-faq {
  margin: 56px auto 0; max-width: 880px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px 40px;
}
.pf-item h4 { font-size: 15px; font-weight: 600; color: #fff; margin: 0 0 6px; }
.pf-item p { font-size: 13.5px; color: var(--muted); line-height: 1.6; margin: 0; }
@media (max-width: 720px) { .price-faq { grid-template-columns: 1fr; gap: 20px; } }
.pricing-note {
  margin-top: 44px; text-align: center; font-size: 14px; color: var(--muted);
  max-width: 640px; margin-left: auto; margin-right: auto; line-height: 1.65;
}
.pricing-note strong { color: var(--accent-soft); font-weight: 600; }

.final-note { position: relative; margin-top: 26px; font-size: 14.5px; color: var(--muted); }

/* persona preview (intensity card) */
.ctl-preview.persona { display: block; text-align: center; }
.ctl-persona {
  font-size: 22px; font-weight: 800; letter-spacing: -0.02em;
  background: linear-gradient(100deg, #b794ff, #8b3dff);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}
.ctl-traits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.ctl-traits strong { font-size: 13.5px; font-weight: 600; color: #d9d4e8; line-height: 1.35; display: block; }

/* walkthrough email screen */
.ws-email {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(183,148,255,0.16);
  border-radius: 16px; padding: 20px 22px;
}
.ws-email-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.ws-email-head strong { display: block; font-size: 14.5px; }
.ws-email-head em { font-style: normal; font-size: 12.5px; color: var(--muted); }
.ws-time { margin-left: auto; font-size: 12px; color: var(--muted); }
.avatar.sm { width: 34px; height: 34px; font-size: 12px; flex: none; }

/* ============================================================
   SUBPAGES (about, blog, faqs, contact, referral)
   ============================================================ */
.page-hero { padding: 200px 0 90px; text-align: center; }
.page-hero h1 { font-size: clamp(38px, 5.2vw, 68px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; }
.page-hero .sub { margin: 24px auto 0; }
.page-section { padding: 70px 0; }
.page-section.tight { padding: 40px 0; }

/* stats band (about) */
.stat-band {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  margin: 30px 0 0;
}
.stat-cell {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 38px 28px; text-align: center;
}
.stat-cell strong {
  display: block; font-size: clamp(34px, 4vw, 52px); font-weight: 800; letter-spacing: -0.03em;
  background: linear-gradient(100deg, #b794ff, #8b3dff);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-cell span { font-size: 14px; color: var(--muted); display: block; margin-top: 8px; }

/* chips row (audiences) */
.chips-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 36px; }
.chips-row .chip { font-size: 14px; padding: 10px 20px; }

/* numbered steps (referral) */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 60px; }
.step-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 26px;
}
.step-card .num {
  display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 12px;
  background: rgba(139,61,255,0.14); border: 1px solid rgba(183,148,255,0.3);
  color: var(--accent-soft); font-weight: 800; font-size: 15px; margin-bottom: 18px;
}
.step-card h3 { font-size: 17px; margin-bottom: 8px; }
.step-card p { font-size: 14px; color: var(--muted); line-height: 1.55; }

/* blog */
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 24px; }
.post-card {
  display: flex; flex-direction: column; overflow: hidden; text-decoration: none;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  transition: transform 0.45s var(--ease), border-color 0.45s;
}
.post-card:hover { transform: translateY(-6px); border-color: rgba(183,148,255,0.4); }
.post-card img { width: 100%; height: auto; aspect-ratio: 16/9; object-fit: cover; display: block; }
.post-body { padding: 26px 26px 30px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.post-date { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-soft); }
.post-card h3 { font-size: 19px; color: #fff; line-height: 1.3; }
.post-card p { font-size: 14px; color: var(--muted); line-height: 1.6; flex: 1; }
.post-more { font-size: 14px; font-weight: 600; color: var(--accent-soft); }

/* post meta row: category tag · date · reading time */
.post-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; }
.post-meta .post-date { margin: 0; }
.post-tag { font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent-soft); background: rgba(139,61,255,0.12); border: 1px solid rgba(168,130,255,0.22); border-radius: 7px; padding: 3px 9px; }
.post-readtime { font-size: 12px; color: var(--muted); }
.post-readtime::before { content: "·"; margin-right: 10px; color: var(--muted); }

/* featured post: full-width horizontal card above the grid */
.post-card.featured { flex-direction: row; align-items: stretch; margin-top: 30px; }
.post-card.featured img { width: 52%; height: auto; aspect-ratio: auto; object-fit: cover; }
.post-card.featured .post-body { justify-content: center; padding: 38px 40px; gap: 14px; }
.post-card.featured h3 { font-size: clamp(22px, 2.4vw, 30px); letter-spacing: -0.01em; }
.post-card.featured p { font-size: 15px; flex: none; }
@media (max-width: 760px) {
  .post-card.featured { flex-direction: column; }
  .post-card.featured img { width: 100%; aspect-ratio: 16/9; }
  .post-card.featured .post-body { padding: 26px 26px 30px; }
}

/* article */
.article { max-width: 720px; margin: 0 auto; padding: 0 32px; }
.article-hero { padding: 190px 0 50px; }
.article-hero .post-date { display: block; margin-bottom: 18px; }
.article-hero h1 { font-size: clamp(32px, 4.4vw, 52px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; }
.article-img { width: 100%; border-radius: var(--radius); margin: 40px 0; border: 1px solid var(--line); display: block; }
.article h2 { font-size: clamp(22px, 2.6vw, 30px); margin: 52px 0 18px; }
.article p { color: #c9c3da; line-height: 1.85; margin-bottom: 20px; font-size: 16.5px; }
.article blockquote {
  margin: 36px 0; padding: 24px 30px; border-left: 3px solid var(--accent);
  background: rgba(139,61,255,0.07); border-radius: 0 16px 16px 0;
  font-size: 19px; font-weight: 600; color: #fff; line-height: 1.55;
}
.article-cta {
  margin: 64px 0 0; padding: 40px; text-align: center;
  background: linear-gradient(170deg, rgba(139,61,255,0.12), rgba(20,17,31,0.9));
  border: 1px solid rgba(183,148,255,0.3); border-radius: 24px;
}
.article-cta h3 { font-size: 22px; margin-bottom: 10px; }
.article-cta p { font-size: 15px; margin-bottom: 24px; }

.hq-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 30px; align-items: stretch; margin-top: 38px; }
.hq-info { display: flex; flex-direction: column; justify-content: center; gap: 14px; }
.hq-label { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; color: var(--accent-soft); margin: 0; }
.hq-addr { font-size: 19px; line-height: 1.5; font-weight: 500; color: #fff; margin: 0; }
.hq-dir { align-self: flex-start; margin-top: 6px; }
.hq-map { position: relative; min-height: 340px; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; background: #14111f; }
.hq-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; filter: grayscale(1) invert(0.92) contrast(0.88) brightness(0.92); }
@media (max-width: 820px) { .hq-grid { grid-template-columns: 1fr; } .hq-map { min-height: 280px; } }
.back-link { display: inline-block; margin-bottom: 22px; color: var(--accent-soft); text-decoration: none; font-size: 14px; font-weight: 600; }
.back-link:hover { text-decoration: underline; }
/* legal / long-form prose extras */
.article h3 { font-size: clamp(18px, 2vw, 22px); margin: 34px 0 12px; color: #fff; }
.article ul, .article ol { color: #c9c3da; line-height: 1.85; font-size: 16.5px; margin: 0 0 20px; padding-left: 22px; }
.article li { margin-bottom: 9px; }
.article a { color: var(--accent-soft); }
.article-meta { font-size: 13.5px; color: var(--muted); margin: 4px 0 0; }

/* related articles at the foot of each post */
.related-posts { padding: 30px 0 70px; }
.rel-head { font-size: clamp(20px, 2.4vw, 26px); margin-bottom: 22px; }
.rel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.rel-card { display: flex; flex-direction: column; overflow: hidden; text-decoration: none; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); transition: transform 0.4s var(--ease), border-color 0.4s; }
.rel-card:hover { transform: translateY(-5px); border-color: rgba(183,148,255,0.4); }
.rel-card img { width: 100%; height: auto; aspect-ratio: 16/9; object-fit: cover; display: block; }
.rel-cat { font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent-soft); padding: 18px 22px 0; }
.rel-title { font-size: 17px; font-weight: 600; color: #fff; line-height: 1.35; padding: 8px 22px 22px; }
@media (max-width: 620px) { .rel-grid { grid-template-columns: 1fr; } }
.legal-note {
  margin: 24px 0 0; padding: 16px 20px; border: 1px solid rgba(183,148,255,0.25);
  background: rgba(139,61,255,0.06); border-radius: 14px;
  font-size: 14px; color: var(--muted);
}

/* faqs */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq {
  background: var(--surface); border: 1px solid var(--line); border-radius: 18px;
  overflow: hidden; transition: border-color 0.3s;
}
.faq[open] { border-color: rgba(183,148,255,0.4); }
.faq summary {
  cursor: pointer; list-style: none; padding: 22px 26px;
  font-size: 16.5px; font-weight: 600; letter-spacing: -0.01em;
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-size: 22px; font-weight: 400; color: var(--accent-soft);
  transition: transform 0.3s var(--ease); flex: none;
}
.faq[open] summary::after { transform: rotate(45deg); }
.faq .faq-a { padding: 0 26px 24px; font-size: 15px; color: var(--muted); line-height: 1.7; }

/* contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 26px; align-items: start; }
.contact-card { padding: 36px 34px; display: flex; flex-direction: column; gap: 22px; }
.contact-item strong { display: block; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-soft); margin-bottom: 5px; }
.contact-item a, .contact-item span { color: #e6e1f2; font-size: 16px; text-decoration: none; line-height: 1.5; }
.contact-item a:hover { color: var(--accent-soft); }
.contact-form { padding: 36px 34px; display: flex; flex-direction: column; gap: 16px; }
.contact-form label { font-size: 13px; font-weight: 600; color: var(--muted); display: block; margin-bottom: 7px; }
.contact-form input, .contact-form textarea {
  width: 100%; font-family: var(--font); font-size: 15px; color: #fff;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(183,148,255,0.18);
  border-radius: 12px; padding: 13px 16px; outline: none; transition: border-color 0.3s;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: rgba(183,148,255,0.55); }
.contact-form textarea { min-height: 130px; resize: vertical; }

/* about feature grid */
.feat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 60px; }
.feat-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px;
}
.feat-card h3 { font-size: 18px; margin: 16px 0 10px; }
.feat-card p { font-size: 14.5px; color: var(--muted); line-height: 1.6; }

.section-title { text-align: center; margin-bottom: 18px; }
.section-title + .sub.center { margin-bottom: 10px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .pipe-steps { grid-template-columns: repeat(3, 1fr); gap: 40px 28px; }
  .pipeline-line { display: none; }
  .pipe-dot { animation: none; }
  .uc-grid { grid-template-columns: repeat(2, 1fr); }
  .bento { grid-template-columns: repeat(2, 1fr); }
  /* mobile: each step is followed by its own screen (JS moves them inline) */
  .walkthrough { grid-template-columns: 1fr; gap: 0; }
  .wt-steps { display: block; }
  .wt-step { padding: 30px 0 0; opacity: 1; }
  .wt-step h3 { margin-top: 10px; }
  .wt-screen { position: relative; inset: auto; opacity: 1; transform: none; pointer-events: auto;
    display: block; margin: 16px 0 6px; padding: 16px 18px;
    background: rgba(255,255,255,0.02); border: 1px solid rgba(168,130,255,0.12); border-radius: 16px; }
  .wt-stage { min-height: 0; }
}

@media (max-width: 860px) {
  .nav {
    background: rgba(6, 5, 9, 0.98);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.28);
  }
  section { padding: 110px 0; }
  .control-grid { grid-template-columns: 1fr; }
  .voice-switch { margin-left: 0; }
  .voice-panel .panel-head { flex-wrap: wrap; }
  .nav-links, .nav-cta .btn-ghost, .nav-cta .btn-primary { display: none; }
  .nav-cta .nav-signin-m { display: inline-flex; }
  .prompt-chips, .prompt-hint { display: none; }
  .nav-burger { display: block; }
  .split { grid-template-columns: 1fr; gap: 52px; }
  .split.rev .split-copy { order: 1; }
  .split.rev .split-visual { order: 2; }
  .flow { height: 420px; }
  .flow-pill { font-size: 13.5px; padding: 9px 16px; }
  .flow-pill.in { animation-name: pillInY; }
  .flow-pill.out { animation-name: pillOutY; }
  .decay { flex-direction: column; align-items: center; }
  .decay-card { max-width: 420px; width: 100%; }
  .price-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer nav { flex-wrap: wrap; justify-content: center; gap: 14px 20px; }
  .footer p { flex: none; min-width: 0; }
  .hero { padding-top: 130px; }
  .hero-visual { margin-top: 60px; }
  .scroll-hint { display: none; }
}

/* narrow panels: the floating annotation call-outs overlap and clip — the
   colour-coded underlines + the summary chips below already convey each one,
   so drop the floating labels here and tighten the line spacing they needed */
@media (max-width: 700px) {
  .t-line { line-height: 1.78; padding: 24px 22px 18px; }
  .t-line mark { border-bottom-width: 2.5px; }
  .t-line mark::after { display: none; }
}

@media (max-width: 560px) {
  .container { padding: 0 22px; }
  .uc-grid { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
  .bento-card.span2 { grid-column: span 1; }
  .check-list { grid-template-columns: 1fr; }
  .cta-row .btn { width: 100%; justify-content: center; }
  .t-line { font-size: 15px; }
  .quote-stage { min-height: 360px; }
  .imp-stats { grid-template-columns: 1fr 1fr; }
  .imp-row { align-items: flex-start; }
  .ctl-card { padding: 28px 22px; }
  .ctl-preview { gap: 8px; padding: 16px 12px; }
  .ctl-traits { grid-template-columns: 1fr; gap: 8px; }
  .steps-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr; }
  .stat-band { grid-template-columns: 1fr; }
}
@media (min-width: 561px) and (max-width: 1080px) {
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
  .stat-band { grid-template-columns: 1fr 1fr; }
  .page-hero { padding: 160px 0 60px; }
}

/* ============================================================
   CONVERSION ELEMENTS
   ============================================================ */
/* proof strip */
.proof { padding: 90px 0 60px; }
.proof-mini { padding: 16px 0 10px; }
.trust-logos { display: flex; align-items: center; justify-content: center; gap: clamp(22px, 4vw, 44px); flex-wrap: wrap; margin-bottom: 34px; }
.tl-label { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: #6f6880; }
.tl-logo { display: inline-flex; align-items: center; opacity: 0.82; transition: opacity 0.25s var(--ease); }
.tl-logo:hover { opacity: 1; }
.tl-logo img { display: block; width: auto; }
.tl-logo img[src*="vettemps"] { height: 34px; }
.tl-mono { height: 24px; filter: brightness(0) invert(1); opacity: 0.82; }
.mini-quote { text-align: center; max-width: 640px; margin: 0 auto; }
.mini-quote p { font-size: clamp(17px, 1.9vw, 21px); font-weight: 600; letter-spacing: -0.015em; line-height: 1.5; }
.mini-quote em { font-style: normal; color: var(--accent-soft); }
.mini-quote footer { margin-top: 10px; font-size: 13px; color: var(--muted); font-weight: 500; }
.proof-quote { text-align: center; max-width: 780px; margin: 46px auto 0; }
.proof-quote p {
  font-size: clamp(20px, 2.3vw, 27px); font-weight: 600;
  letter-spacing: -0.02em; line-height: 1.45;
}
.proof-quote em { font-style: normal; color: var(--accent-soft); }
.proof-quote footer { margin-top: 16px; font-size: 13.5px; color: var(--muted); font-weight: 500; }
.proof-stats { display: flex; justify-content: center; gap: clamp(28px, 5vw, 64px); margin-top: 48px; flex-wrap: wrap; }
.proof-stat { text-align: center; flex: 1 1 0; min-width: 160px; max-width: 230px; }
.proof-stat strong {
  display: block; font-size: clamp(28px, 3.2vw, 40px); font-weight: 800; letter-spacing: -0.03em;
  background: linear-gradient(100deg, #b794ff, #8b3dff);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.proof-stat span { display: block; font-size: 13px; color: var(--muted); margin-top: 5px; }

/* mid-page CTA bands */
.import { padding-bottom: 48px; }
.cta-band { padding: 30px 0; }
.band-inner {
  text-align: center; padding: 56px 40px; border-radius: 28px;
  background: linear-gradient(170deg, rgba(139,61,255,0.13), rgba(20,17,31,0.85));
  border: 1px solid rgba(183,148,255,0.3);
  box-shadow: 0 0 70px rgba(139,61,255,0.1);
}
.band-inner h3 {
  font-size: clamp(22px, 2.7vw, 33px); letter-spacing: -0.025em; margin-bottom: 26px;
}

/* flip-board headline — reacts to the 30/60/90 import toggle */
.flip-head { perspective: 900px; }
.flip-headline {
  display: inline-block; transform-origin: 50% 0;
  backface-visibility: hidden; will-change: transform, opacity;
}
.flip-headline.flip-out { animation: flapOut 0.26s var(--ease) forwards; }
.flip-headline.flip-in { animation: flapIn 0.34s var(--ease) forwards; }
@keyframes flapOut {
  0% { transform: rotateX(0); opacity: 1; }
  100% { transform: rotateX(88deg); opacity: 0; }
}
@keyframes flapIn {
  0% { transform: rotateX(-88deg); opacity: 0; }
  55% { opacity: 1; }
  100% { transform: rotateX(0); opacity: 1; }
}

/* CTA microcopy + trust line */
.cta-micro { margin-top: 16px; font-size: 13px; color: var(--muted); letter-spacing: 0.01em; }
.cta-micro.center { text-align: center; position: relative; }
.trust-line { margin-top: 9px; font-size: 12.5px; color: rgba(155,148,173,0.85); }
.trust-line.center { text-align: center; margin-top: 14px; }

/* inline contextual CTA — a direct path forward inside each feature block */
.inline-cta {
  display: inline-flex; align-items: center; gap: 9px;
  margin-top: 28px; font-size: 15px; font-weight: 600;
  color: var(--accent-soft); text-decoration: none;
  transition: color 0.25s var(--ease);
}
.inline-cta span {
  display: inline-block; transition: transform 0.25s var(--ease);
}
.inline-cta:hover { color: #fff; }
.inline-cta:hover span { transform: translateX(5px); }
.inline-cta:focus-visible {
  outline: 2px solid var(--accent-soft); outline-offset: 4px; border-radius: 4px;
}

/* ============================================================
   SCROLL SPINE — illuminates with scroll
   ============================================================ */
.spine {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; overflow: visible;
}
#spineBase { fill: none; stroke: rgba(139, 61, 255, 0.09); stroke-width: 2; }
#spineLit {
  fill: none; stroke: #9d5cff; stroke-opacity: 0.6; stroke-width: 2;
  stroke-linecap: round;
  filter: drop-shadow(0 0 6px rgba(139, 61, 255, 0.55));
}
#spineComet {
  fill: #c9a8ff;
  filter: drop-shadow(0 0 9px rgba(139, 61, 255, 0.9));
}
.spine-dot {
  fill: #16121f; stroke: rgba(183, 148, 255, 0.3); stroke-width: 1.5;
  transition: fill 0.5s, stroke 0.5s;
}
.spine-dot.lit {
  fill: var(--accent); stroke: var(--accent-soft);
  filter: drop-shadow(0 0 7px rgba(139, 61, 255, 0.8));
}
/* on mobile the line runs straight down the left edge (built in JS) —
   slightly softer so it never competes with the content */
@media (max-width: 860px) {
  #spineBase { stroke-width: 1.5; }
  #spineLit { stroke-width: 1.5; }
  #spineComet { r: 3.5; }
}

/* ============================================================
   DESKTOP POLISH
   ============================================================ */
/* keyboard focus */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--accent-soft); outline-offset: 3px;
}

/* scrollspy active link */
.nav-links a { position: relative; }
.nav-links a.active { color: #fff; }
.nav-links a.active::after {
  content: ""; position: absolute; left: 50%; transform: translateX(-50%);
  bottom: -9px; width: 4px; height: 4px; border-radius: 50%;
  background: var(--accent-soft); box-shadow: 0 0 8px var(--accent-glow);
}

/* about testimonials: responsive 3-col */
.feat-grid.cols3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1080px) { .feat-grid.cols3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .feat-grid.cols3 { grid-template-columns: 1fr; } }

/* mid-width nav crowding */
@media (min-width: 861px) and (max-width: 1140px) {
  .nav-links { gap: 22px; }
  .nav-cta .btn-ghost { display: none; }
}

/* desktop ≥1081: tighter hero fold */
@media (min-width: 1081px) {
  .hero { padding-top: 118px; }
  .hero-visual { margin-top: 60px; }
}

/* large screens ≥1440: use the room */
@media (min-width: 1440px) {
  .container { max-width: 1380px; }
  .nav-inner { max-width: 1420px; }
  .hero-grid { max-width: 1380px; }
  .walkthrough { max-width: 1380px; }
  section { padding: 180px 0; }
  .hero-visual { max-width: 1180px; }
  .flow { height: 320px; }
  .flow-core { width: 214px; height: 214px; }
  .core-orb { width: 104px; height: 104px; font-size: 38px; }
  .uc-grid, .bento { gap: 24px; }
  .sub { max-width: 700px; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.2s !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
  /* flow pills park beside the orb instead of animating */
  .flow-pill { animation: none !important; opacity: 1; }
  .flow-pill.in { transform: translate(calc(-50% - 290px), -50%); }
  .flow-pill.out { transform: translate(calc(-50% + 290px), -50%); }
}
@media (prefers-reduced-motion: reduce) and (max-width: 860px) {
  .flow-pill.in { transform: translate(-50%, calc(-50% - 140px)); }
  .flow-pill.out { transform: translate(-50%, calc(-50% + 140px)); }
}

/* ============================================================
   INTRO / LOADING SCREEN — homepage, first visit (logo draws on)
   ============================================================ */
html.intro-on { overflow: hidden; }
.intro-skip #intro { display: none; }
#intro {
  position: fixed; inset: 0; z-index: 9999;
  background: #060509; display: grid; place-items: center;
  opacity: 1; transition: opacity 1s ease;
}
#intro::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 70% at 70% 18%, rgba(139,61,255,0.18), transparent 70%);
}
#intro.intro-out { opacity: 0; pointer-events: none; }
.intro-col { position: relative; display: flex; flex-direction: column; align-items: center; gap: 30px; }
.intro-mark { width: 168px; height: 168px; filter: drop-shadow(0 0 26px rgba(139,61,255,0.55)); }
.intro-mark path { fill: none; stroke: url(#cgIntro); stroke-width: 6; stroke-linecap: butt; stroke-linejoin: miter; stroke-dasharray: 1; stroke-dashoffset: 1; opacity: 0; }
.intro-mark rect { opacity: 0; }
/* four beats: big bar fades -> little bar fades -> C draws 6-to-12 -> check-arrow draws in one stroke, head caps it */
.intro-mark .ib1 { animation: introBar1 2.3s ease 0.25s both; }
.intro-mark .ib2 { animation: introBar2 2.3s ease 0.25s both; }
.intro-mark .ip1 { animation: introDraw1 2.3s ease-in-out 0.25s both; }
.intro-mark .ip2 { animation: introDraw2 2.3s ease-in-out 0.25s both; }
.intro-mark .ip3 { animation: introDraw3 2.3s ease-in-out 0.25s both; }
.intro-wm { font-weight: 800; font-size: clamp(26px, 4.6vw, 36px); letter-spacing: -0.01em; color: #fff; opacity: 0; animation: introWm 2.3s ease 0.25s both; }
.intro-ai { color: var(--accent-soft); }
@keyframes introBar1 { 0% { opacity: 0; } 10% { opacity: 1; } 100% { opacity: 1; } }
@keyframes introBar2 { 0%, 15% { opacity: 0; } 25% { opacity: 1; } 100% { opacity: 1; } }
@keyframes introDraw1 { 0%, 30% { stroke-dashoffset: 1; opacity: 0; } 31% { opacity: 1; } 48% { stroke-dashoffset: 0; } 100% { stroke-dashoffset: 0; opacity: 1; } }
@keyframes introDraw2 { 0%, 52% { stroke-dashoffset: 1; opacity: 0; } 53% { opacity: 1; } 70% { stroke-dashoffset: 0; } 100% { stroke-dashoffset: 0; opacity: 1; } }
@keyframes introDraw3 { 0%, 71% { stroke-dashoffset: 1; opacity: 0; } 72% { opacity: 1; } 82% { stroke-dashoffset: 0; } 100% { stroke-dashoffset: 0; opacity: 1; } }
@keyframes introWm { 0%, 76% { opacity: 0; transform: translateY(8px); } 94%, 100% { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { #intro { display: none; } }

/* landing page fades into view as the intro lifts — long, exaggerated reveal */
#particles, .ambient { transition: opacity 2s ease; }
main, .footer { transition: opacity 2s ease, transform 2s cubic-bezier(0.2, 0.7, 0.2, 1); }
html.intro-on #particles,
html.intro-on .ambient,
html.intro-on .nav,
html.intro-on main,
html.intro-on .footer { opacity: 0; }
html.intro-on main,
html.intro-on .footer { transform: translateY(46px) scale(0.985); }

/* ============================================================
   NAV — Product dropdown (desktop) + accordion (mobile)
   ============================================================ */
.nav-dd { position: relative; display: inline-flex; align-items: center; }
.nav-dd-trigger {
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: none; padding: 0; cursor: pointer;
  font-family: inherit; font-size: 14.5px; font-weight: 500;
  color: var(--muted); transition: color 0.25s;
}
.nav-dd-trigger:hover, .nav-dd:hover .nav-dd-trigger, .nav-dd.open .nav-dd-trigger { color: #fff; }
.nav-dd-caret { width: 9px; height: 6px; transition: transform 0.25s; }
.nav-dd:hover .nav-dd-caret, .nav-dd.open .nav-dd-caret { transform: rotate(180deg); }
.nav-dd::after { content: ""; position: absolute; top: 100%; left: -12px; right: -12px; height: 18px; }
.nav-dd-menu {
  position: absolute; top: calc(100% + 16px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 276px; padding: 8px;
  background: rgba(16,12,27,0.97); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(183,148,255,0.18); border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.55);
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; pointer-events: none; z-index: 200;
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease);
}
.nav-dd:hover .nav-dd-menu, .nav-dd:focus-within .nav-dd-menu, .nav-dd.open .nav-dd-menu {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.nav-dd-menu a { display: block; padding: 10px 12px; border-radius: 10px; transition: background 0.18s; }
.nav-dd-menu a:hover { background: rgba(139,61,255,0.14); }
.nav-dd-menu a b { display: flex; align-items: center; gap: 7px; color: #fff; font-size: 13.5px; font-weight: 600; }
.nav-tag {
  font-style: normal; font-size: 9px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: #fff; background: linear-gradient(135deg, #9d5cff, #7a2fe8);
  padding: 2px 7px; border-radius: 100px; line-height: 1.4;
}
.nav-tag.soon { background: transparent; color: #cdb6ff; border: 1px solid rgba(157,92,255,0.5); }
.nav-dd-menu a span { display: block; color: var(--muted); font-size: 12px; line-height: 1.4; margin-top: 2px; }
.nav-dd-menu a::after { display: none !important; }

.mm-group { display: flex; flex-direction: column; align-items: stretch; gap: 10px; width: 100%; }
.mm-acc-trigger {
  display: inline-flex; align-items: center; gap: 10px;
  background: none; border: none; cursor: pointer; font-family: inherit;
  color: #fff; font-size: 26px; font-weight: 600; letter-spacing: -0.02em;
}
.mm-acc-caret { width: 16px; height: 10px; opacity: 0.7; transition: transform 0.3s; }
.mm-acc-trigger[aria-expanded="true"] .mm-acc-caret { transform: rotate(180deg); }
.mm-acc { display: none; flex-direction: column; gap: 10px; width: 100%; max-height: calc(100vh - 320px); overflow-y: auto; padding-right: 4px; }
.mm-acc.open { display: flex; }
.mobile-menu .mm-acc a { display: block; width: 100%; font-size: 19px; font-weight: 500; color: var(--accent-soft); padding: 10px 0; }
.mobile-menu { overscroll-behavior-y: contain; }

/* pipeline → vertical timeline on small screens: the 6-step sequence reads
   cleanly top-to-bottom with a connecting line, instead of a confusing grid */
@media (max-width: 700px) {
  .pipeline-line { display: none; }
  .pipe-steps { grid-template-columns: 1fr; gap: 0; }
  .pipe-step { position: relative; padding: 0 0 30px 34px; }
  .pipe-step:last-child { padding-bottom: 0; }
  .pipe-step::before {
    content: ""; position: absolute; left: 6px; top: 17px; bottom: -2px; width: 2px;
    background: rgba(139,61,255,0.3);
  }
  .pipe-step:last-child::before { display: none; }
  .pipe-dot { position: absolute; left: 0; top: 5px; margin: 0; }
}

/* mobile-only "Sign In" nav button (replaces Start Pilot in the top-right on phones) */
.nav-signin-m { display: none; background: transparent; color: var(--muted); }
.nav-signin-m:hover { color: #fff; }

/* ============================================================
   CONVERSATION FOLDERS
   ============================================================ */
.folders-panel { padding-bottom: 8px; }
.folders-panel .panel-head { justify-content: space-between; }
.fld-count { font-size: 12.5px; color: var(--muted); }
.fld-count strong { color: var(--accent-soft); font-weight: 700; }
.fld-list { display: flex; flex-direction: column; }
.fld-row {
  display: flex; align-items: center; gap: 14px; width: 100%;
  padding: 14px 22px; background: none; border: none; cursor: pointer;
  text-align: left; font-family: inherit; border-top: 1px solid rgba(183,148,255,0.08);
  transition: background 0.2s;
}
.fld-row:hover { background: rgba(139,61,255,0.06); }
.fld-dot { flex: none; width: 9px; height: 9px; border-radius: 50%; background: var(--c); box-shadow: 0 0 10px var(--c); }
.fld-info { flex: 1; display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.fld-name { color: #fff; font-size: 15px; font-weight: 600; letter-spacing: -0.01em; }
.fld-num { color: var(--muted); font-size: 12.5px; }
.fld-state {
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(155,148,173,0.7); min-width: 52px; text-align: right; transition: color 0.25s;
}
.fld-row.on .fld-state { color: var(--accent-soft); }
.fld-sw {
  flex: none; width: 40px; height: 23px; border-radius: 100px; position: relative;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(183,148,255,0.18);
  transition: background 0.28s var(--ease), border-color 0.28s var(--ease);
}
.fld-sw::after {
  content: ""; position: absolute; top: 3px; left: 3px; width: 15px; height: 15px;
  border-radius: 50%; background: #fff; transition: transform 0.28s var(--ease);
  box-shadow: 0 2px 5px rgba(0,0,0,0.4);
}
.fld-row.on .fld-sw { background: var(--accent); border-color: transparent; box-shadow: 0 0 16px rgba(139,61,255,0.45); }
.fld-row.on .fld-sw::after { transform: translateX(17px); }
.fld-cmd { margin: 16px 22px 6px; font-size: 13.5px; color: var(--muted); font-style: italic; }
.fld-cmd em { font-style: normal; font-weight: 600; color: var(--accent-soft); }
@media (max-width: 560px) {
  .fld-row { padding: 13px 18px; gap: 11px; }
  .fld-state { min-width: 0; }
}

/* ============================================================
   FOLDERS — accordion (open a folder to focus)
   ============================================================ */
.fldx { padding-bottom: 8px; }
.fldx .panel-head { justify-content: space-between; }
.fldx-hint { font-size: 12px; color: var(--muted); }
.fldx-list { display: flex; flex-direction: column; }
.fldx-item { border-top: 1px solid rgba(183,148,255,0.08); }
.fldx-item:first-child { border-top: none; }
.fldx-row {
  display: flex; align-items: center; gap: 12px; width: 100%;
  padding: 15px 22px; background: none; border: none; cursor: pointer;
  font-family: inherit; text-align: left; transition: background 0.2s;
}
.fldx-row:hover { background: rgba(139,61,255,0.06); }
.fldx-dot { flex: none; width: 9px; height: 9px; border-radius: 50%; background: var(--c); box-shadow: 0 0 10px var(--c); }
.fldx-name { color: #fff; font-size: 15px; font-weight: 600; flex: 1; letter-spacing: -0.01em; }
.fldx-num { color: var(--muted); font-size: 13px; font-variant-numeric: tabular-nums; }
.fldx-caret { color: var(--muted); font-size: 19px; line-height: 1; transition: transform 0.25s var(--ease); }
.fldx-item.open .fldx-caret { transform: rotate(90deg); color: var(--accent-soft); }
.fldx-body { display: none; padding: 0 22px 16px 43px; }
.fldx-item.open .fldx-body { display: block; }
.fldx-thread { font-size: 13.5px; color: var(--muted); padding: 8px 0; border-top: 1px solid rgba(255,255,255,0.05); line-height: 1.45; }
.fldx-thread:first-child { border-top: none; }
.fldx-thread b { color: #e9e4f5; font-weight: 600; margin-right: 7px; }
.fldx-cmd { margin: 12px 0 0; font-size: 13px; font-style: italic; color: var(--muted); }
.fldx-cmd em { font-style: normal; font-weight: 600; color: var(--accent-soft); }

/* per-folder automation toggles, now inside the Automation card */
.ctl-card .fld-list { margin-top: 16px; }
.ctl-card .fld-row { padding-left: 0; padding-right: 0; }
.ctl-card .fld-row:hover { background: none; }
.ctl-card .fld-row:first-child { border-top: 1px solid rgba(183,148,255,0.08); }

/* ============================================================
   ANALYTICS SECTION
   ============================================================ */
.an-panel { max-width: 1000px; margin: 56px auto 0; padding: 22px 24px; }
.an-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.an-title { font-size: 15px; font-weight: 600; color: #fff; }
.an-range { display: inline-flex; gap: 2px; background: rgba(255,255,255,0.04); border: 1px solid rgba(168,130,255,0.16); border-radius: 10px; padding: 3px; }
.an-range button { font-size: 12px; color: var(--muted); padding: 5px 11px; border-radius: 7px; background: none; border: 0; font-family: inherit; cursor: pointer; transition: color .15s ease, background .15s ease; }
.an-range button:hover { color: var(--fg); }
.an-range button.on { background: var(--accent); color: #fff; font-weight: 600; }

.an-kpis { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; margin-bottom: 24px; }
.an-kpi { background: rgba(139,61,255,0.05); border: 1px solid rgba(168,130,255,0.10); border-radius: 14px; padding: 14px 16px; }
.an-k-label { font-size: 12px; color: var(--muted); display: block; }
.an-kpi strong { font-size: 30px; font-weight: 700; letter-spacing: -0.02em; display: block; margin: 2px 0 4px; }
.an-k-grad { background: linear-gradient(110deg, #b794ff, #7d8bff); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.an-kpi em { font-size: 11.5px; font-style: normal; color: #5dcaa5; }

.an-chart { background: rgba(255,255,255,0.02); border: 1px solid rgba(168,130,255,0.08); border-radius: 14px; padding: 18px 20px 14px; }
.an-chart-head { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; font-size: 12px; color: var(--muted); }
.an-legend { display: inline-flex; align-items: center; gap: 6px; }
.an-d { width: 8px; height: 8px; border-radius: 50%; display: inline-block; margin: 0 3px 0 8px; }
.an-d-you { background: #8b3dff; } .an-d-auto { background: rgba(183,148,255,0.5); } .an-d-reply { background: #5dcaa5; }
.an-plot { position: relative; height: 190px; }
.an-line { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 2; overflow: visible; }
.an-bars { display: flex; align-items: flex-end; gap: clamp(6px, 1.4vw, 18px); height: 100%; }
.an-bar { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; border-radius: 7px 7px 0 0; overflow: hidden; transition: height .55s cubic-bezier(.4,0,.2,1); }
.an-b-auto { background: rgba(183,148,255,0.28); height: 42%; transition: height .55s cubic-bezier(.4,0,.2,1); }
.an-b-you { background: linear-gradient(180deg, #9d5cff, #6f23d8); height: 58%; transition: height .55s cubic-bezier(.4,0,.2,1); }
.an-line polyline, .an-line circle { transition: all .55s cubic-bezier(.4,0,.2,1); }
@media (prefers-reduced-motion: reduce){ .an-bar, .an-b-auto, .an-b-you, .an-line polyline, .an-line circle { transition: none; } }
.an-xaxis { display: flex; justify-content: space-between; margin-top: 8px; font-size: 11px; color: var(--muted); }

.an-tracks { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.an-tracks span { font-size: 12px; color: #cfc9da; background: rgba(139,61,255,0.10); border: 1px solid rgba(168,130,255,0.16); border-radius: 8px; padding: 6px 11px; }

.an-admin { max-width: 1000px; margin: 16px auto 0; padding: 22px 24px; display: flex; gap: 18px; align-items: flex-start; }
.an-admin-ic { flex: none; width: 44px; height: 44px; border-radius: 12px; background: rgba(139,61,255,0.16); color: var(--accent-soft); display: grid; place-items: center; }
.an-admin-ic svg { width: 22px; height: 22px; }
.an-admin-copy h4 { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.an-admin-copy p { font-size: 14px; color: var(--muted); line-height: 1.6; }

@media (max-width: 860px) {
  .an-panel, .an-admin { margin-top: 36px; padding: 18px; }
  .an-plot { height: 150px; }
  .an-admin { flex-direction: column; gap: 12px; }
  .an-kpis { grid-template-columns: 1fr 1fr; }
  .an-kpi strong { font-size: 26px; }
  .an-range button { padding: 8px 13px; }
}
