/* === TOKENS === */
:root {
  --bg: #06060e;
  --surface: #0d0d1a;
  --surface-2: #13131f;
  --border: #1c1c2e;
  --fg: #f0f0f8;
  --fg-muted: #8888a8;
  --accent: #00D4FF;
  --accent-dark: #0099cc;
  --accent-dim: rgba(0, 212, 255, 0.08);
  --accent-glow: rgba(0, 212, 255, 0.18);
  --purple: #7c3aed;
  --purple-dim: rgba(124, 58, 237, 0.1);
  --green: #4ade80;
  --radius: 14px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::selection { background: var(--accent-glow); color: var(--accent); }
a { color: inherit; text-decoration: none; }

/* === NAV === */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 64px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 6, 14, 0.9);
  backdrop-filter: blur(20px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  color: var(--fg-muted);
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}
.nav-link:hover { color: var(--fg); background: var(--surface-2); }

.btn-outline {
  border: 1px solid var(--border);
  color: var(--fg-muted);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 7px 18px;
  border-radius: 8px;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-dim); }

.btn-primary {
  background: var(--accent);
  color: #06060e;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.15s, box-shadow 0.15s;
}
.btn-primary:hover { background: #00b8e0; box-shadow: 0 0 20px var(--accent-glow); }

/* === HERO === */
.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  padding: 80px 48px;
  max-width: 1280px;
  margin: 0 auto;
}

.hero-left {}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 32px;
}

.tag-dot {
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline-block {
  margin-bottom: 28px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--fg);
}

.hero-headline .accent-line {
  display: block;
  color: var(--accent);
  font-style: italic;
}

.hero-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 40px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary-lg {
  background: var(--accent);
  color: #06060e;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.15s, box-shadow 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary-lg:hover { background: #00b8e0; box-shadow: 0 0 32px var(--accent-glow); }

.btn-ghost {
  background: transparent;
  color: var(--fg-muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 12px 28px;
  border-radius: 10px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-dim); }

/* === HERO VISUAL === */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Big background glow behind the shield image */
.hero-right::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.12) 0%, rgba(123, 47, 255, 0.08) 40%, transparent 70%);
  border-radius: 50%;
  animation: glow-pulse 4s ease-in-out infinite;
  pointer-events: none;
}

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

.hero-image-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 212, 255, 0.2);
  box-shadow: 0 0 80px rgba(0, 212, 255, 0.12), 0 0 40px rgba(123, 47, 255, 0.06);
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.04), rgba(123, 47, 237, 0.04));
}

.hero-image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.06) 0%, transparent 40%, rgba(123, 47, 237, 0.04) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-image-wrap::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.4), transparent 40%, rgba(123, 47, 237, 0.3) 100%);
  pointer-events: none;
  z-index: 2;
}

.hero-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 0;
}

/* Orbit rings decoration around hero */
.hero-orb {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(0, 212, 255, 0.06);
  pointer-events: none;
  animation: orb-rotate 20s linear infinite;
}
.hero-orb:nth-child(1) { width: 300px; height: 300px; top: 50%; left: 50%; transform: translate(-50%, -50%); animation-duration: 20s; }
.hero-orb:nth-child(2) { width: 400px; height: 400px; top: 50%; left: 50%; transform: translate(-50%, -50%); border-color: rgba(123, 47, 255, 0.04); animation-duration: 30s; animation-direction: reverse; }

@keyframes orb-rotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* === PILLARS === */
.pillars {
  padding: 100px 48px;
  position: relative;
}
.pillars::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(0, 212, 255, 0.04) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 30%, rgba(123, 47, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}
.pillars-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }

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

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 12px;
  color: var(--fg);
}
.section-title .t-accent { color: var(--accent); }
.section-title .t-purple { color: #9d5cff; }

.section-sub { color: var(--fg-muted); font-size: 0.98rem; }

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

.pillar-card {
  background: var(--surface);
  border: 1px solid rgba(0, 212, 255, 0.08);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--purple));
  opacity: 0;
  transition: opacity 0.25s;
}
.pillar-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.03) 0%, transparent 50%);
  pointer-events: none;
}
.pillar-card:hover {
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 212, 255, 0.1), 0 0 0 1px rgba(0, 212, 255, 0.1);
}
.pillar-card:hover::before { opacity: 1; }

.pillar-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.12), rgba(123, 47, 255, 0.08));
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
  box-shadow: 0 0 16px rgba(0, 212, 255, 0.1);
}

.pillar-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  color: var(--fg);
}

.pillar-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

.section-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0, 212, 255, 0.06);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 100px;
  padding: 4px 14px;
  margin-bottom: 16px;
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.08);
}

.section-tag.purple {
  color: #b87aff;
  background: rgba(123, 47, 255, 0.06);
  border-color: rgba(123, 47, 255, 0.3);
  box-shadow: 0 0 12px rgba(123, 47, 255, 0.08);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 12px;
  color: var(--fg);
}
.section-title .t-accent { color: var(--accent); }
.section-title .t-purple { color: #9d5cff; }

.section-sub { color: var(--fg-muted); font-size: 0.98rem; }

/* === HOW IT WORKS === */
.how {
  padding: 100px 48px;
  position: relative;
}
.how::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(0, 212, 255, 0.04) 0%, transparent 50%),
              radial-gradient(ellipse at 20% 30%, rgba(123, 47, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}
.how-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.step-card {
  background: var(--surface);
  border: 1px solid rgba(0, 212, 255, 0.08);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.step-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 212, 255, 0.03) 0%, transparent 60%);
  pointer-events: none;
}
.step-card:hover {
  border-color: rgba(0, 212, 255, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 212, 255, 0.08);
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(123, 47, 255, 0.1));
  border: 1px solid rgba(0, 212, 255, 0.3);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.1);
}

.step-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--fg);
}

.step-desc {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

.step-connector {
  position: absolute;
  top: 50%;
  right: -16px;
  transform: translateY(-50%);
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 212, 255, 0.2);
  font-size: 0.65rem;
}

.step-card:last-child .step-connector { display: none; }

.step-optional {
  margin-top: 8px;
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b87aff;
  background: rgba(123, 47, 255, 0.08);
  border: 1px solid rgba(123, 47, 255, 0.25);
  border-radius: 100px;
  padding: 2px 10px;
}

/* === TRUST === */
.trust {
  padding: 80px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 24px 16px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-dim);
  border: 1px solid rgba(0, 212, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.trust-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--fg);
}

.trust-desc {
  font-size: 0.7rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* === TRANSCRIPTION === */
.transcribe {
  padding: 80px 48px;
  max-width: 1280px;
  margin: 0 auto;
}

.transcribe-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 48px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
}

.transcribe-copy {}

.transcribe-tag {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple);
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: 100px;
  padding: 3px 12px;
  margin-bottom: 16px;
}

.transcribe-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.transcribe-desc {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.transcribe-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tf-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--fg-muted);
}

.tf-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.transcribe-visual {
  display: flex;
  justify-content: center;
}

.transcribe-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  width: 100%;
  max-width: 320px;
}

.tc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.tc-title {
  font-size: 0.82rem;
  font-weight: 600;
}

.tc-badge {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.2);
  border-radius: 100px;
  padding: 2px 8px;
}

.tc-waveform {
  height: 40px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 2px;
}

.tc-waveform .bar {
  width: 3px;
  border-radius: 2px;
  background: var(--accent);
  opacity: 0.4;
  animation: wave 1.2s ease-in-out infinite;
}

.tc-waveform .bar:nth-child(1) { height: 20px; animation-delay: 0s; }
.tc-waveform .bar:nth-child(2) { height: 35px; animation-delay: 0.1s; }
.tc-waveform .bar:nth-child(3) { height: 25px; animation-delay: 0.2s; }
.tc-waveform .bar:nth-child(4) { height: 40px; animation-delay: 0.3s; }
.tc-waveform .bar:nth-child(5) { height: 15px; animation-delay: 0.4s; }
.tc-waveform .bar:nth-child(6) { height: 30px; animation-delay: 0.5s; }
.tc-waveform .bar:nth-child(7) { height: 20px; animation-delay: 0.6s; }
.tc-waveform .bar:nth-child(8) { height: 35px; animation-delay: 0.7s; }
.tc-waveform .bar:nth-child(9) { height: 28px; animation-delay: 0.8s; }
.tc-waveform .bar:nth-child(10) { height: 18px; animation-delay: 0.9s; }

@keyframes wave {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.15); }
}

.tc-timestamp {
  font-size: 0.7rem;
  color: var(--fg-muted);
  margin-bottom: 8px;
}

.tc-speaker {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 4px;
}

.tc-text {
  font-size: 0.78rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* === PRICING === */
.pricing {
  padding: 100px 48px;
  position: relative;
}
.pricing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(0, 212, 255, 0.05) 0%, rgba(123, 47, 255, 0.04) 40%, transparent 70%);
  pointer-events: none;
}
.pricing-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.price-card {
  background: var(--surface);
  border: 1px solid rgba(0, 212, 255, 0.08);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.price-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 212, 255, 0.02) 0%, transparent 50%);
  pointer-events: none;
}
.price-card:hover {
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 212, 255, 0.08);
}
.price-card.featured {
  border-color: rgba(0, 212, 255, 0.35);
  background: linear-gradient(160deg, var(--surface) 0%, rgba(0, 212, 255, 0.06) 100%);
  box-shadow: 0 0 60px rgba(0, 212, 255, 0.1), 0 0 0 1px rgba(0, 212, 255, 0.15);
  transform: translateY(-2px);
}
.price-card.featured:hover { transform: translateY(-6px); }

.price-tier {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 8px;
}

.price-card.featured .price-tier {
  color: var(--accent);
  text-shadow: 0 0 12px rgba(0, 212, 255, 0.3);
}

.price-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--fg);
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 4px;
}

.price-card.featured .price-amount {
  color: var(--accent);
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.price-period {
  font-size: 0.78rem;
  color: var(--fg-muted);
  margin-bottom: 20px;
}

.price-note {
  font-size: 0.78rem;
  color: var(--fg-muted);
  margin-bottom: 24px;
  font-style: italic;
}

.price-overage {
  font-size: 0.72rem;
  color: var(--fg-muted);
  margin-bottom: 16px;
  padding: 8px 12px;
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 6px;
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--fg-muted);
}

.price-features li::before {
  content: '✓';
  color: var(--accent);
  font-size: 0.75rem;
  margin-top: 1px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px rgba(0, 212, 255, 0.4));
}

.price-btn {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-align: center;
}

.price-btn-primary {
  background: var(--accent);
  color: #06060e;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}
.price-btn-primary:hover {
  background: #00c8f5;
  box-shadow: 0 0 32px rgba(0, 212, 255, 0.5), 0 0 8px rgba(0, 212, 255, 0.3);
}

.price-btn-outline {
  background: transparent;
  border: 1px solid rgba(0, 212, 255, 0.15);
  color: var(--fg-muted);
}
.price-btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0, 212, 255, 0.05);
  box-shadow: 0 0 16px rgba(0, 212, 255, 0.1);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 540px;
  margin: 16px auto 0;
  line-height: 1.65;
  font-family: var(--font-body);
}

.edition-benefits {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin: 40px 0 32px;
  flex-wrap: wrap;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg);
}

.benefit-icon {
  color: var(--accent);
  display: flex;
  align-items: center;
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px rgba(0, 212, 255, 0.35));
}

.edition-paths {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 48px;
}

.edition-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
}

.edition-link:hover {
  opacity: 0.75;
}

.edition-link-muted {
  color: var(--fg-muted);
}

.edition-link-locked {
  color: var(--green);
  cursor: default;
  opacity: 0.6;
  position: relative;
}
.edition-link-locked::after {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 6px;
  vertical-align: middle;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Crect x='3' y='11' width='18' height='11' rx='2' ry='2'/%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'/%3E%3C/svg%3E") center/contain no-repeat;
  mask-size: contain;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Crect x='3' y='11' width='18' height='11' rx='2' ry='2'/%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'/%3E%3C/svg%3E") center/contain no-repeat;
  opacity: 0.6;
}
.edition-link-locked:hover { opacity: 0.6; }

.edition-link-cta {
  color: var(--accent);
  font-size: 1rem;
}

.enterprise-block {
  display: flex;
  justify-content: center;
}

.enterprise-block-inner {
  background: var(--surface);
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: var(--radius);
  padding: 36px 40px;
  max-width: 560px;
  width: 100%;
  text-align: center;
}

.enterprise-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7c3aed;
  margin-bottom: 10px;
}

.enterprise-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
  margin: 0 0 12px;
}

.enterprise-body {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin: 0 0 24px;
}

.btn-outline-sm {
  display: inline-block;
  padding: 10px 24px;
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fg-muted);
  text-decoration: none;
  transition: all 0.2s;
}

.btn-outline-sm:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0, 212, 255, 0.05);
  box-shadow: 0 0 16px rgba(0, 212, 255, 0.1);
}

/* === CLOSING === */
.closing {
  padding: 120px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center top, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 30% 50%, rgba(123, 47, 255, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 40%, rgba(0, 212, 255, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

/* Animated orbs in closing */
.closing::after {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.06) 0%, rgba(123, 47, 255, 0.04) 40%, transparent 70%);
  border-radius: 50%;
  animation: glow-pulse 5s ease-in-out infinite;
  pointer-events: none;
}

.closing-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.closing-headline .line {
  display: block;
}

.closing-headline .accent {
  color: var(--accent);
  text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.closing-tagline {
  font-size: 1rem;
  color: var(--fg-muted);
  margin-bottom: 48px;
}

.closing-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

.closing-wordmark {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.03em;
  text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.closing-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === FOOTER === */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 48px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto auto auto 1fr;
  align-items: center;
  gap: 32px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
}

.footer-note {
  font-size: 0.78rem;
  color: var(--fg-muted);
  text-align: center;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.footer-link {
  font-size: 0.72rem;
  color: var(--fg-muted);
  transition: color 0.15s;
}
.footer-link:hover { color: var(--accent); }

.footer-sep {
  font-size: 0.65rem;
  color: var(--fg-muted);
  opacity: 0.3;
}

.footer-copy {
  font-size: 0.72rem;
  color: var(--fg-muted);
  text-align: right;
  opacity: 0.5;
}

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .how-steps { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { order: -1; }
  .hero-image-wrap img { object-fit: cover; height: 260px; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .transcribe-layout { grid-template-columns: 1fr; }
  .transcribe-visual { display: none; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; text-align: center; gap: 12px; }
  .footer-brand { justify-content: center; }
  .footer-copy { text-align: center; }
}

@media (max-width: 768px) {
  .nav { padding: 0 24px; }
  .hero { padding: 48px 24px; }
  .pillars, .how, .transcribe, .pricing, .closing { padding: 60px 24px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .trust { padding: 60px 24px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer { padding: 32px 24px; }
}

/* === GRADIENT SECTION BACKGROUNDS === */
.grad-section-dark {
  background: linear-gradient(180deg, #080818 0%, #0a0b1e 40%, #06060e 100%);
}
.grad-section-purple {
  background: linear-gradient(180deg, #0d0820 0%, #12072e 40%, #0a0b1e 100%);
}
.grad-section-navy {
  background: linear-gradient(180deg, #06060e 0%, #0a0f1e 50%, #0d0d1a 100%);
}
.grad-section-glow {
  background: radial-gradient(ellipse at center top, rgba(0, 212, 255, 0.06) 0%, rgba(123, 47, 255, 0.04) 40%, transparent 70%);
}

/* === GRADIENT DIVIDER LINES === */
.grad-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 212, 255, 0.3) 20%, rgba(123, 47, 255, 0.3) 50%, rgba(0, 212, 255, 0.3) 80%, transparent 100%);
  border: none;
  margin: 0;
}

/* === PLATFORM WHAT === */
.platform-what {
  padding: 100px 48px;
  position: relative;
}
.platform-what::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(123, 47, 255, 0.06) 0%, transparent 60%);
  pointer-events: none;
}
.pw-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }
.pw-eyebrow { margin-bottom: 24px; }
.pw-content { max-width: 820px; }
.pw-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--fg);
}
.pw-headline .hl-accent {
  color: var(--accent);
  font-style: italic;
}
.pw-headline .hl-purple {
  color: #9d5cff;
}
.pw-body { font-size: 1rem; color: var(--fg-muted); line-height: 1.8; }
.br-lg { display: none; }
@media (min-width: 768px) { .br-lg { display: inline; } }

/* === PLATFORM PRIVACY === */
.platform-privacy {
  padding: 100px 48px;
  position: relative;
}
.platform-privacy::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #06060e 0%, #0a0920 50%, #06060e 100%);
  pointer-events: none;
}
.pp-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }
.pp-header { margin-bottom: 48px; }
.pp-header .section-sub { margin-top: 12px; }
.pp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pp-card {
  background: var(--surface);
  border: 1px solid rgba(123, 47, 255, 0.12);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.pp-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--accent));
  opacity: 0;
  transition: opacity 0.25s;
}
.pp-card:hover {
  border-color: rgba(123, 47, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(123, 47, 255, 0.08);
}
.pp-card:hover::before { opacity: 1; }
.pp-card-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(123, 47, 255, 0.15), rgba(0, 212, 255, 0.1));
  border: 1px solid rgba(123, 47, 255, 0.25);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #b87aff;
  margin-bottom: 16px;
  box-shadow: 0 0 16px rgba(123, 47, 255, 0.12);
}
.pp-card-title { font-family: var(--font-display); font-size: 1rem; font-weight: 600; margin-bottom: 10px; color: var(--fg); }
.pp-card-desc { font-size: 0.82rem; color: var(--fg-muted); line-height: 1.65; }

/* === PLATFORM INDUSTRIES === */
.platform-industries {
  padding: 100px 48px;
  position: relative;
}
.platform-industries::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #06060e 0%, #0d0a20 50%, #06060e 100%);
  pointer-events: none;
}
.pi-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }
.pi-inner .section-sub { margin-top: 12px; }
.pi-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.pi-card {
  background: var(--surface);
  border: 1px solid rgba(0, 212, 255, 0.08);
  border-radius: var(--radius);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.pi-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 212, 255, 0.04) 0%, transparent 50%);
  pointer-events: none;
}
.pi-card:hover {
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 212, 255, 0.08);
}
.pi-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.12), rgba(123, 47, 255, 0.08));
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.1);
}
.pi-name { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--fg); }
.pi-desc { font-size: 0.78rem; color: var(--fg-muted); line-height: 1.6; }

/* === CLOSING WORDMARK (LARGE) === */
.closing-wordmark-lg {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.05em;
  margin-bottom: 16px;
}

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .how-steps { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .pp-grid { grid-template-columns: repeat(2, 1fr); }
  .pi-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { order: -1; }
  .hero-image-wrap img { object-fit: cover; height: 260px; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .transcribe-layout { grid-template-columns: 1fr; }
  .transcribe-visual { display: none; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; text-align: center; gap: 12px; }
  .footer-brand { justify-content: center; }
  .footer-copy { text-align: center; }
  .pp-grid { grid-template-columns: repeat(2, 1fr); }
  .pi-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav { padding: 0 24px; }
  .hero { padding: 48px 24px; }
  .pillars, .how, .transcribe, .pricing, .closing { padding: 60px 24px; }
  .platform-what, .platform-privacy, .platform-industries { padding: 60px 24px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .trust { padding: 60px 24px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer { padding: 32px 24px; }
  .pp-grid { grid-template-columns: 1fr; }
  .pi-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 1.8rem; }
  .closing-headline { font-size: 1.6rem; }
  .closing-wordmark-lg { font-size: 2.8rem; }
  .hero-cta { flex-direction: column; }
  .closing-cta { flex-direction: column; align-items: center; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .pi-grid { grid-template-columns: 1fr; }
}

/* === FEATURE COLOR TOKENS === */
:root {
  /* Per-capability accent colors */
  --accent-answer: #7c3aed;     /* Answer Engine — violet */
  --accent-answer-dim: rgba(124, 58, 237, 0.08);
  --accent-answer-glow: rgba(124, 58, 237, 0.18);
  --accent-timeline: #14B8A6;    /* Timeline — teal */
  --accent-timeline-dim: rgba(20, 184, 166, 0.08);
  --accent-capture: #F59E0B;     /* Quick Capture — amber */
  --accent-capture-dim: rgba(245, 158, 11, 0.1);
  --accent-transcribe: #F43F5E; /* Transcription — coral/rose */
  --accent-transcribe-dim: rgba(244, 63, 94, 0.1);
  --accent-usage: #22C55E;        /* Usage & Plan — green */
  --accent-usage-dim: rgba(34, 197, 94, 0.08);
  --accent-files: #00D4FF;       /* Files — cyan (primary accent) */
  --accent-files-dim: rgba(0, 212, 255, 0.08);
  --accent-ai: #EC4899;          /* AI badges — magenta/pink */
  --accent-ai-dim: rgba(236, 72, 153, 0.1);

  /* Workspace color system */
  --ws-personal: #3B82F6;       /* blue */
  --ws-personal-dim: rgba(59, 130, 246, 0.08);
  --ws-legal: #6366F1;         /* indigo */
  --ws-legal-dim: rgba(99, 102, 241, 0.08);
  --ws-business: #10B981;       /* emerald */
  --ws-business-dim: rgba(16, 185, 129, 0.08);
  --ws-health: #14B8A6;         /* teal */
  --ws-health-dim: rgba(20, 184, 166, 0.08);

  /* Active workspace accent (dynamically set via inline style on body) */
  --ws-accent: var(--ws-personal);
  --ws-accent-dim: var(--ws-personal-dim);
}

/* === CARD LEFT BORDER STRIPES === */
.card-answer { border-left: 3px solid var(--accent-answer) !important; }
.card-timeline { border-left: 3px solid var(--accent-timeline) !important; }
.card-capture { border-left: 3px solid var(--accent-capture) !important; }
.card-transcribe { border-left: 3px solid var(--accent-transcribe) !important; }
.card-usage { border-left: 3px solid var(--accent-usage) !important; }
.card-files { border-left: 3px solid var(--accent-files) !important; }
.card-ai { border-left: 3px solid var(--accent-ai) !important; }

/* Card hover — lift + shadow */
.card-hover {
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.card-hover:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

/* Section headers — bold + feature color */
.section-hdr {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-hdr.violet { color: var(--accent-answer); border-color: rgba(124,58,237,0.25); }
.section-hdr.teal { color: var(--accent-timeline); border-color: rgba(6,182,212,0.25); }
.section-hdr.amber { color: var(--accent-capture); border-color: rgba(245,158,11,0.25); }
.section-hdr.coral { color: var(--accent-transcribe); border-color: rgba(248,113,113,0.25); }
.section-hdr.green { color: var(--accent-usage); border-color: rgba(74,222,128,0.25); }
.section-hdr.cyan { color: var(--accent-files); border-color: rgba(0,212,255,0.25); }
.section-hdr.magenta { color: var(--accent-ai); border-color: rgba(232,121,249,0.25); }

/* Stats number hero */
.stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--fg);
  line-height: 1;
}
.stat-number-sm {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
  line-height: 1;
}

/* AI badge */
.tc-ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(232, 121, 249, 0.1);
  border: 1px solid rgba(232, 121, 249, 0.25);
  color: var(--accent-ai);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 100px;
  letter-spacing: 0.03em;
}

/* Usage bar green */
.usage-bar-fill.green { background: var(--accent-usage); }

/* Processing pulse in feature accent */
.processing-pulse {
  animation: processing-pulse 1.5s ease-in-out infinite;
}
@keyframes processing-pulse {
  0%, 100% { opacity: 0.5; box-shadow: 0 0 0 0 transparent; }
  50% { opacity: 1; box-shadow: 0 0 16px rgba(0,212,255,0.3); }
}

/* Quick stat card with top accent bar */
.qstat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 10px;
  transition: border-color 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.qstat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent-files);
  opacity: 0.7;
}
.qstat-card.violet::before { background: var(--accent-answer); }
.qstat-card.teal::before { background: var(--accent-timeline); }
.qstat-card.amber::before { background: var(--accent-capture); }
.qstat-card.coral::before { background: var(--accent-transcribe); }
.qstat-card.green::before { background: var(--accent-usage); }
.qstat-card:hover { border-color: rgba(0,212,255,0.3); box-shadow: 0 4px 20px rgba(0,0,0,0.2); }

/* Suggested prompts */
.suggested-prompt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 8px;
  font-size: 0.82rem;
  color: var(--fg-muted);
  cursor: pointer;
  transition: all 0.15s;
}
.suggested-prompt:hover {
  border-color: rgba(0,212,255,0.3);
  color: var(--fg);
  transform: translateX(4px);
}
.suggested-prompt .sp-icon { color: var(--accent-answer); font-size: 0.85rem; flex-shrink: 0; }

/* Quick actions strip */
.quick-actions-strip {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.qa-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--fg-muted);
  font-family: var(--font-body);
}
.qa-btn:hover { border-color: var(--accent); color: var(--accent); }
.qa-btn.violet:hover { border-color: var(--accent-answer); color: var(--accent-answer); }
.qa-btn.teal:hover { border-color: var(--accent-timeline); color: var(--accent-timeline); }
.qa-btn.amber:hover { border-color: var(--accent-capture); color: var(--accent-capture); }
.qa-btn.coral:hover { border-color: var(--accent-transcribe); color: var(--accent-transcribe); }

/* Onboarding starter cards */
.starter-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}
.starter-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}
.starter-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  opacity: 0.7;
}
.starter-card.cyan::before { background: var(--accent-files); }
.starter-card.amber::before { background: var(--accent-capture); }
.starter-card.coral::before { background: var(--accent-transcribe); }
.starter-card:hover {
  border-color: rgba(0,212,255,0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}
.starter-icon { font-size: 2rem; margin-bottom: 12px; }
.starter-title { font-size: 0.85rem; font-weight: 600; color: var(--fg); margin-bottom: 4px; }
.starter-desc { font-size: 0.72rem; color: var(--fg-muted); margin-bottom: 14px; }
.starter-cta {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  transition: all 0.15s;
}
.starter-cta.cyan { background: var(--accent-files-dim); color: var(--accent-files); border: 1px solid rgba(0,212,255,0.2); }
.starter-cta.amber { background: var(--accent-capture-dim); color: var(--accent-capture); border: 1px solid rgba(245,158,11,0.2); }
.starter-cta.coral { background: var(--accent-transcribe-dim); color: var(--accent-transcribe); border: 1px solid rgba(248,113,113,0.2); }
.starter-cta:hover { filter: brightness(1.2); }

/* This week stats bar */
.week-stats-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.ws-stat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--fg-muted);
}
.ws-stat strong { color: var(--fg); font-weight: 600; }
.ws-stat .ws-icon { font-size: 0.9rem; }

/* Nav active states per feature */
.nav-item.active.violet { color: var(--accent-answer); background: var(--accent-answer-dim); }
.nav-item.active.violet::before { background: var(--accent-answer); opacity: 1; }
.nav-item.active.teal { color: var(--accent-timeline); background: var(--accent-timeline-dim); }
.nav-item.active.teal::before { background: var(--accent-timeline); opacity: 1; }
.nav-item.active.amber { color: var(--accent-capture); background: var(--accent-capture-dim); }
.nav-item.active.amber::before { background: var(--accent-capture); opacity: 1; }
.nav-item.active.coral { color: var(--accent-transcribe); background: var(--accent-transcribe-dim); }
.nav-item.active.coral::before { background: var(--accent-transcribe); opacity: 1; }
.nav-item.active.green { color: var(--accent-usage); background: var(--accent-usage-dim); }
.nav-item.active.green::before { background: var(--accent-usage); opacity: 1; }
.nav-item.active.cyan { color: var(--accent-files); background: var(--accent-files-dim); }
.nav-item.active.cyan::before { background: var(--accent-files); opacity: 1; }

/* Workspace color card classes */
.timeline-card.ws-personal { border-left-color: var(--ws-personal) !important; }
.timeline-card.ws-legal { border-left-color: var(--ws-legal) !important; }
.timeline-card.ws-business { border-left-color: var(--ws-business) !important; }
.timeline-card.ws-health { border-left-color: var(--ws-health) !important; }

/* Feature icon colors */
.fi-violet { color: var(--accent-answer) !important; }
.fi-teal { color: var(--accent-timeline) !important; }
.fi-amber { color: var(--accent-capture) !important; }
.fi-coral { color: var(--accent-transcribe) !important; }
.fi-green { color: var(--accent-usage) !important; }
.fi-cyan { color: var(--accent-files) !important; }
.fi-magenta { color: var(--accent-ai) !important; }

/* Empty state warm + actionable */
.empty-state { text-align: center; padding: 56px 24px; }
.empty-state h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
}
.empty-state p { font-size: 0.85rem; color: var(--fg-muted); }
.empty-icon { font-size: 2.8rem; margin-bottom: 16px; opacity: 0.4; }

/* Command bar placeholder prompts */
.cmd-placeholder-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.cmd-placeholder-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.7rem;
  color: var(--fg-muted);
  background: var(--surface-2);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.15s;
}
.cmd-placeholder-chip:hover { border-color: var(--accent-answer); color: var(--accent-answer); }

/* Spinner in feature color */
.spinner-answer { border-top-color: var(--accent-answer) !important; }
.spinner-timeline { border-top-color: var(--accent-timeline) !important; }
.spinner-capture { border-top-color: var(--accent-capture) !important; }
.spinner-transcribe { border-top-color: var(--accent-transcribe) !important; }

/* === AIUFO HERO — full-bleed raw image, copy below === */
.aiufo-hero {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.aiufo-hero-img {
  width: 100%;
  height: auto;
  display: block;
  /* NO filter, NO opacity, NO overlay — raw as uploaded */
}
.aiufo-hero-copy {
  padding: 80px 48px;
  background: #06060e;
}
.aiufo-hero-copy-inner {
  max-width: 1280px;
  margin: 0 auto;
  max-width: 700px;
}
.aiufo-hero-tag {
  font-size: 0.8rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  color: #00d4ff;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.aiufo-hero-tag::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #00d4ff;
  border-radius: 50%;
  flex-shrink: 0;
}
.aiufo-hero-headline {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 24px;
  color: #fff;
}
.aiufo-hero-headline .accent-line {
  background: linear-gradient(135deg, #fff 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.aiufo-hero-sub {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  max-width: 560px;
}
.aiufo-hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .aiufo-hero-copy { padding: 60px 24px 72px; }
  .aiufo-hero-cta { flex-direction: column; }
  .aiufo-hero-cta .btn-primary-lg,
  .aiufo-hero-cta .btn-ghost {
    text-align: center;
  }
}

/* === LEGAL HERO — image first, copy below, clean === */
.legal-hero {
  background: var(--bg);
  overflow: hidden;
}
.legal-hero-img-wrap {
  width: 100%;
  padding: 0;
}
.legal-hero-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}
.legal-hero-copy {
  padding: 80px 48px 100px;
  background: var(--bg);
}
.legal-hero-copy-inner {
  max-width: 1280px;
  margin: 0 auto;
  max-width: 700px;
}
.legal-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 32px;
}
.legal-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--fg);
  margin-bottom: 24px;
}
.accent-text { color: var(--accent); }
.legal-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 40px;
}
.legal-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.legal-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.trust-item {
  font-size: 0.72rem;
  color: var(--fg-muted);
  font-weight: 500;
}
.trust-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--fg-muted);
  opacity: 0.4;
}

/* App mockup in hero */
.legal-mockup {
  background: var(--surface);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(0, 212, 255, 0.1), 0 0 0 1px rgba(0, 212, 255, 0.08);
}
.mockup-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}
.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot-red { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green { background: #28c840; }
.mockup-title {
  font-size: 0.72rem;
  color: var(--fg-muted);
  margin-left: 6px;
  font-weight: 500;
}
.mockup-body {
  display: grid;
  grid-template-columns: 160px 1fr;
  min-height: 300px;
}
.mockup-sidebar {
  border-right: 1px solid var(--border);
  padding: 16px 0;
}
.sidebar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 0.75rem;
  color: var(--fg-muted);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.sidebar-item:hover { background: var(--surface-2); }
.sidebar-item.active {
  color: var(--accent);
  background: rgba(0, 212, 255, 0.06);
  border-left: 2px solid var(--accent);
}
.mockup-content {
  padding: 16px;
}
.mockup-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.72rem;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.mockup-results { display: flex; flex-direction: column; gap: 12px; }
.mockup-result {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
}
.result-filename {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 6px;
}
.result-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.result-tag {
  font-size: 0.62rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.tag-blue { color: var(--accent); background: rgba(0, 212, 255, 0.1); border: 1px solid rgba(0, 212, 255, 0.2); }
.tag-purple { color: #b87aff; background: rgba(123, 47, 237, 0.1); border: 1px solid rgba(123, 47, 237, 0.2); }
.result-date { font-size: 0.62rem; color: var(--fg-muted); }
.result-snippet {
  font-size: 0.7rem;
  color: var(--fg-muted);
  line-height: 1.55;
}
.result-snippet strong { color: var(--accent); }

/* === LEGAL FEATURES === */
.legal-features {
  padding: 100px 48px;
  position: relative;
}
.legal-features::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #06060e 0%, #0a0920 50%, #06060e 100%);
  pointer-events: none;
}
.legal-features-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }
.lf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.lf-card {
  background: var(--surface);
  border: 1px solid rgba(0, 212, 255, 0.08);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.lf-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--purple));
  opacity: 0;
  transition: opacity 0.25s;
}
.lf-card:hover {
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 212, 255, 0.1);
}
.lf-card:hover::before { opacity: 1; }
.lf-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.12), rgba(123, 47, 237, 0.08));
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
}
.lf-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--fg);
}
.lf-desc {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* === LEGAL HOW IT WORKS === */
.legal-how {
  padding: 100px 48px;
  position: relative;
  background: #06060e;
}
.legal-how-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.lhow-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 56px;
  max-width: 720px;
}
.lhow-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.lhow-step:last-child { border-bottom: none; }
.lhow-step-number {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.08em;
  padding-top: 4px;
}
.lhow-step-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}
.lhow-step-desc {
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.75;
}
.lhow-proof {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.lhow-proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--fg-muted);
  font-weight: 500;
}
.lhow-proof-item svg { color: var(--accent); flex-shrink: 0; }

/* === LEGAL PRICING === */
.legal-pricing {
  padding: 100px 48px;
  position: relative;
}
.legal-pricing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 20%, rgba(0, 212, 255, 0.06) 0%, rgba(123, 47, 237, 0.04) 40%, transparent 70%);
  pointer-events: none;
}
.legal-pricing-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }
.legal-pricing-headline { max-width: 680px; }

/* Competitor note */
.competitor-note {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--fg-muted);
  background: rgba(0, 212, 255, 0.04);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 10px;
  padding: 12px 18px;
  margin-top: 24px;
  max-width: 680px;
}
.competitor-note svg { color: var(--accent); flex-shrink: 0; }
.competitor-note strong { color: var(--accent); }

/* Pricing grid */
.legal-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

/* Enterprise badge */
.enterprise-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffd700;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 100px;
  padding: 3px 12px;
  margin-bottom: 12px;
}

/* Enterprise card — visually distinct */
.price-card-enterprise {
  border: 1px solid rgba(123, 47, 237, 0.3) !important;
  background: linear-gradient(160deg, var(--surface) 0%, rgba(123, 47, 237, 0.06) 100%) !important;
  box-shadow: 0 0 40px rgba(123, 47, 237, 0.12), 0 0 0 1px rgba(123, 47, 237, 0.1) !important;
}
.price-card-enterprise::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(123, 47, 237, 0.04) 0%, transparent 50%);
  pointer-events: none;
  border-radius: var(--radius);
}
.enterprise-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--fg) !important;
  letter-spacing: -0.02em;
}

/* Enterprise CTA bar */
.enterprise-cta {
  margin-top: 48px;
  background: var(--surface);
  border: 1px solid rgba(123, 47, 237, 0.2);
  border-radius: var(--radius);
  padding: 32px 40px;
}
.enterprise-cta-content {
  display: flex;
  align-items: center;
  gap: 24px;
}
.enterprise-cta-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(123, 47, 237, 0.15), rgba(0, 212, 255, 0.1));
  border: 1px solid rgba(123, 47, 237, 0.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b87aff;
  flex-shrink: 0;
}
.enterprise-cta-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 6px;
}
.enterprise-cta-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Green CTA button */
.price-btn-green {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-align: center;
  background: var(--green);
  color: #06060e;
  box-shadow: 0 0 20px rgba(74, 222, 128, 0.15);
  display: block;
  margin-bottom: 8px;
}
.price-btn-green:hover {
  background: #22c55e;
  box-shadow: 0 0 28px rgba(74, 222, 128, 0.3);
}
.price-btn-enterprise {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-align: center;
  background: rgba(123, 47, 237, 0.9);
  color: white;
  box-shadow: 0 0 20px rgba(123, 47, 237, 0.15);
  display: block;
  margin-bottom: 8px;
}
.price-btn-enterprise:hover {
  background: #6d28d9;
  box-shadow: 0 0 28px rgba(123, 47, 237, 0.3);
}
.price-btn-outline-sm {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  background: transparent;
  border: 1px solid rgba(0, 212, 255, 0.15);
  color: var(--fg-muted);
  display: block;
}
.price-btn-outline-sm:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0, 212, 255, 0.05);
}

/* === LEGAL TESTIMONIALS === */
.legal-testimonials {
  padding: 100px 48px;
  position: relative;
}
.legal-testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(123, 47, 237, 0.06) 0%, transparent 50%);
  pointer-events: none;
}
.legal-testimonials-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.lt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 56px;
}

.lt-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.lt-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.03) 0%, rgba(123, 47, 237, 0.02) 100%);
  pointer-events: none;
}
.lt-card:hover {
  border-color: rgba(124, 58, 237, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(124, 58, 237, 0.08);
}
.lt-card-large { grid-row: span 2; }
.lt-card-wide { grid-column: 1 / -1; }

.lt-quote-mark {
  font-family: var(--font-display);
  font-size: 4.5rem;
  color: var(--purple);
  line-height: 0.8;
  margin-bottom: 16px;
  font-style: italic;
  opacity: 0.7;
}

.lt-text {
  font-size: 0.92rem;
  color: var(--fg);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.lt-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}

.lt-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(123, 47, 237, 0.15));
  border: 1px solid rgba(0, 212, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
  letter-spacing: 0.05em;
}

.lt-meta { display: flex; flex-direction: column; gap: 2px; }

.lt-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--fg);
}

.lt-role {
  font-size: 0.78rem;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* === LEGAL PREVIEW (Product Screenshot) === */
.legal-preview {
  padding: 100px 48px;
  position: relative;
  overflow: hidden;
}
.legal-preview::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(0, 212, 255, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 30% 80%, rgba(123, 47, 237, 0.05) 0%, transparent 45%);
  pointer-events: none;
}
.legal-preview-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.legal-preview-inner .section-header { text-align: center; }
.legal-preview-inner .section-sub { max-width: 480px; }

.preview-card-wrap {
  position: relative;
  margin-top: 56px;
  width: 100%;
  max-width: 900px;
  display: flex;
  justify-content: center;
}

.preview-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0, 212, 255, 0.12) 0%, rgba(123, 47, 237, 0.08) 40%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  animation: glow-pulse 4s ease-in-out infinite;
  pointer-events: none;
}

.preview-card {
  position: relative;
  z-index: 1;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 212, 255, 0.2);
  box-shadow:
    0 0 0 1px rgba(0, 212, 255, 0.08),
    0 32px 80px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(0, 212, 255, 0.1),
    0 0 120px rgba(123, 47, 237, 0.06);
  transform: rotate(-1.5deg);
  transition: transform 0.4s ease;
  background: var(--surface);
}
.preview-card:hover {
  transform: rotate(0deg) scale(1.01);
}

.preview-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--fg-muted);
  padding: 10px 16px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}
.preview-label-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(0, 212, 255, 0.6);
  flex-shrink: 0;
}

.preview-img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 540px;
  object-fit: cover;
}

.preview-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--fg-muted);
  padding: 12px 16px;
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  text-align: center;
}
.preview-caption svg { color: var(--accent); flex-shrink: 0; filter: drop-shadow(0 0 4px rgba(0, 212, 255, 0.4)); }

/* === RESPONSIVE — LEGAL PAGE === */
@media (max-width: 1100px) {
  .lf-grid { grid-template-columns: repeat(2, 1fr); }
  .legal-pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .legal-hero-copy { padding: 48px 24px 60px; }
  .legal-features { padding: 60px 24px; }
  .legal-testimonials { padding: 60px 24px; }
  .lt-grid { grid-template-columns: 1fr; }
  .lt-card-large { grid-row: span 1; }
  .lt-card-wide { grid-column: 1; }
  .legal-preview { padding: 60px 24px; }
  .legal-how { padding: 60px 24px; }
  .legal-pricing { padding: 60px 24px; }
  .lf-grid { grid-template-columns: 1fr; }
  .legal-pricing-grid { grid-template-columns: 1fr; }
  .preview-card { transform: rotate(0deg); }
  .preview-card-wrap { max-width: 100%; }
  .enterprise-cta-content { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .legal-headline { font-size: 1.9rem; }
  .legal-cta { flex-direction: column; }
  .lhow-step { grid-template-columns: 40px 1fr; gap: 16px; }
}