/* ============================================================
   PodCorta — Landing
   Aesthetic: late-night studio. Violet-black base, electric
   purple + cyan accents, viral-coral CTA. Editorial typography,
   glass cards, animated waveform, subtle grain.
   ============================================================ */

@import url('https://api.fontshare.com/v2/css?f[]=cabinet-grotesk@700,800,900&f[]=satoshi@500,700,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── Tokens ──────────────────────────────────────────────────── */
:root {
  --bg-base:       #0B0613;
  --bg-surface:    #14091F;
  --bg-elev:       #1B0D2A;
  --accent-1:      #B026FF;   /* roxo elétrico */
  --accent-2:      #00E5FF;   /* ciano */
  --accent-warn:   #FF6B4A;   /* coral viral */
  --text-primary:  #F4ECFF;
  --text-muted:    #8A7A99;
  --text-dim:      #5A4A6E;
  --border:        #2A1A3D;
  --border-bright: #3D2858;

  --font-display:  'Cabinet Grotesk', 'Satoshi', system-ui, sans-serif;
  --font-body:     'Inter Tight', system-ui, -apple-system, sans-serif;
  --font-mono:     'JetBrains Mono', ui-monospace, Menlo, monospace;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-pill: 999px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --max: 1240px;

  /* gradients */
  --grad-headline: linear-gradient(105deg, #F4ECFF 0%, #F4ECFF 35%, #B026FF 55%, #00E5FF 85%);
  --grad-cta: linear-gradient(135deg, #FF6B4A 0%, #B026FF 100%);
  --grad-rim: linear-gradient(135deg, rgba(176,38,255,0.35), rgba(0,229,255,0.15), transparent 70%);
}

/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
  font-feature-settings: "ss01", "cv11";
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

/* ── Ambient atmosphere ─────────────────────────────────────── */
.ambient {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 12% 8%,  rgba(176, 38, 255, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 88% 22%, rgba(0, 229, 255, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse 70% 40% at 50% 100%, rgba(255, 107, 74, 0.07) 0%, transparent 60%);
}
.grain {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* ── Layout helpers ─────────────────────────────────────────── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
section { position: relative; }
.section-pad { padding: 120px 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-muted);
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-1);
  box-shadow: 0 0 12px var(--accent-1);
  animation: pulse-dot 2.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.section-tag {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-size: 12px;
  color: var(--text-muted); letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.section-tag .num {
  color: var(--accent-2);
  font-weight: 500;
}
.section-tag .line {
  width: 32px; height: 1px; background: var(--border-bright);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--text-primary);
}

.h-section {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  letter-spacing: -0.04em;
  margin-bottom: 18px;
  max-width: 740px;
}
.h-section em {
  font-style: normal;
  background: linear-gradient(105deg, var(--accent-1), var(--accent-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section-sub {
  font-size: 1.075rem; color: var(--text-muted); max-width: 580px;
  margin-bottom: 56px;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px; border-radius: var(--r-pill);
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  transition: transform 0.2s var(--ease), box-shadow 0.25s var(--ease),
              background 0.2s var(--ease), color 0.2s var(--ease),
              border-color 0.2s var(--ease);
  white-space: nowrap; user-select: none;
  border: 1px solid transparent;
  letter-spacing: -0.01em;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--grad-cta);
  color: #fff;
  box-shadow: 0 8px 32px -8px rgba(255, 107, 74, 0.55),
              inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 40px -8px rgba(255, 107, 74, 0.75),
              inset 0 1px 0 rgba(255,255,255,0.3);
}
.btn-ghost {
  background: rgba(244, 236, 255, 0.04);
  color: var(--text-primary);
  border-color: var(--border-bright);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(244, 236, 255, 0.08);
  border-color: var(--text-muted);
}
.btn-sm { padding: 9px 16px; font-size: 13.5px; }

/* ── Nav ────────────────────────────────────────────────────── */
.nav-wrap {
  position: fixed; top: 18px; left: 50%; transform: translateX(-50%);
  z-index: 100; width: calc(100% - 32px); max-width: 1080px;
  transition: top 0.3s var(--ease);
}
nav.bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px 10px 22px;
  background: rgba(20, 9, 31, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(244, 236, 255, 0.08);
  border-radius: var(--r-pill);
  box-shadow: 0 16px 48px -16px rgba(0,0,0,0.7);
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 800;
  font-size: 19px; letter-spacing: -0.025em;
  color: var(--text-primary);
}
.logo-mark {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-muted);
  padding: 8px 14px; border-radius: var(--r-pill);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--text-primary); background: rgba(244,236,255,0.05); }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.nav-actions .login {
  font-size: 14px; font-weight: 500; color: var(--text-muted);
  padding: 8px 14px; border-radius: var(--r-pill);
  transition: color 0.2s;
}
.nav-actions .login:hover { color: var(--text-primary); }
.nav-burger { display: none; }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  padding: 160px 0 80px;
  position: relative; overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 56px; align-items: center;
}
.hero-text { display: flex; flex-direction: column; gap: 28px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 11.5px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-muted);
  align-self: flex-start;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  background: rgba(20, 9, 31, 0.6);
  backdrop-filter: blur(8px);
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-warn);
  box-shadow: 0 0 12px var(--accent-warn);
  animation: pulse-dot 2.4s ease-in-out infinite;
}

.hero h1 {
  font-size: clamp(2.6rem, 6.4vw, 5.4rem);
  font-weight: 800; line-height: 0.98;
  letter-spacing: -0.045em;
}
.hero h1 .scribble {
  position: relative; display: inline-block;
  background: var(--grad-headline);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shimmer-text 8s ease-in-out infinite;
}
.hero h1 .underlined {
  position: relative; display: inline-block;
}
.hero h1 .underlined::after {
  content: ''; position: absolute;
  left: -2%; right: -2%; bottom: -2px;
  height: 14px;
  background: var(--accent-warn);
  opacity: 0.35;
  border-radius: 8px;
  z-index: -1;
  transform: skewX(-4deg);
}
@keyframes shimmer-text {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

.hero-sub {
  font-size: 1.15rem; color: var(--text-muted);
  max-width: 480px; line-height: 1.5;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero-micro {
  font-family: var(--font-mono); font-size: 12.5px;
  color: var(--text-dim); letter-spacing: 0.02em;
  display: inline-flex; align-items: center; gap: 8px;
}
.hero-micro::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: #58D17A; box-shadow: 0 0 10px #58D17A;
}

/* Hero visual — animated phone mock with waveform */
.hero-visual {
  position: relative;
  height: 560px;
  display: grid; place-items: center;
}
.hero-visual::before {
  content: ''; position: absolute; inset: -10%;
  background: radial-gradient(circle at 60% 50%, rgba(176,38,255,0.25), transparent 60%);
  filter: blur(40px);
  z-index: -1;
}

.phone {
  position: relative;
  width: 290px; height: 540px;
  background: linear-gradient(160deg, #1B0D2A 0%, #0B0613 100%);
  border-radius: 38px;
  border: 1px solid var(--border-bright);
  box-shadow:
    0 60px 120px -30px rgba(0,0,0,0.8),
    0 0 0 8px #050108,
    inset 0 1px 0 rgba(244,236,255,0.08);
  overflow: hidden;
  transform: rotate(-3deg) translateY(0);
  animation: float-phone 6s ease-in-out infinite;
}
@keyframes float-phone {
  0%, 100% { transform: rotate(-3deg) translateY(0); }
  50%      { transform: rotate(-3deg) translateY(-10px); }
}
.phone::before {
  content: ''; position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 80px; height: 22px; background: #050108; border-radius: 12px; z-index: 5;
}
.phone-screen {
  position: absolute; inset: 4px; border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(11,6,19,0.4) 0%, rgba(11,6,19,0) 30%, rgba(11,6,19,0) 70%, rgba(11,6,19,0.9) 100%),
    radial-gradient(circle at 40% 30%, rgba(176,38,255,0.4), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(0,229,255,0.3), transparent 60%),
    #14091F;
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px 22px 32px;
}
.phone-time {
  position: absolute; top: 16px; right: 24px;
  font-family: var(--font-mono); font-size: 13px; font-weight: 500;
  color: var(--text-primary);
}
.phone-tag {
  position: absolute; top: 60px; left: 22px;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(244,236,255,0.7);
  background: rgba(255,107,74,0.18);
  border: 1px solid rgba(255,107,74,0.4);
  padding: 4px 10px; border-radius: var(--r-pill);
}
.phone-caption {
  font-family: var(--font-display); font-weight: 900;
  font-size: 28px; line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  margin-bottom: 22px;
}
.phone-caption .word {
  display: inline-block;
  margin-right: 6px;
  opacity: 0;
  transform: translateY(8px) scale(0.92);
  animation: word-pop 5.6s ease-out infinite;
}
.phone-caption .word.hl {
  background: var(--accent-warn);
  color: #0B0613;
  padding: 0 6px;
  border-radius: 4px;
  transform-origin: center;
}
.phone-caption .word.cy {
  color: var(--accent-2);
}
.phone-caption .word:nth-child(1) { animation-delay: 0.0s; }
.phone-caption .word:nth-child(2) { animation-delay: 0.7s; }
.phone-caption .word:nth-child(3) { animation-delay: 1.4s; }
.phone-caption .word:nth-child(4) { animation-delay: 2.1s; }
.phone-caption .word:nth-child(5) { animation-delay: 2.8s; }
@keyframes word-pop {
  0%, 8% { opacity: 0; transform: translateY(10px) scale(0.9); }
  12%    { opacity: 1; transform: translateY(0) scale(1.08); }
  18%    { transform: translateY(0) scale(1); }
  88%    { opacity: 1; }
  100%   { opacity: 0; transform: translateY(0) scale(1); }
}

.phone-bars {
  display: flex; align-items: flex-end; gap: 3px;
  height: 32px; margin-bottom: 18px;
}
.phone-bars span {
  flex: 1; background: linear-gradient(180deg, var(--accent-2), var(--accent-1));
  border-radius: 2px; opacity: 0.85;
  animation: bar-jump 1.2s ease-in-out infinite;
}
.phone-bars span:nth-child(1) { animation-delay: 0.0s; }
.phone-bars span:nth-child(2) { animation-delay: 0.08s; }
.phone-bars span:nth-child(3) { animation-delay: 0.16s; }
.phone-bars span:nth-child(4) { animation-delay: 0.24s; }
.phone-bars span:nth-child(5) { animation-delay: 0.32s; }
.phone-bars span:nth-child(6) { animation-delay: 0.40s; }
.phone-bars span:nth-child(7) { animation-delay: 0.48s; }
.phone-bars span:nth-child(8) { animation-delay: 0.56s; }
.phone-bars span:nth-child(9) { animation-delay: 0.64s; }
.phone-bars span:nth-child(10){ animation-delay: 0.72s; }
.phone-bars span:nth-child(11){ animation-delay: 0.80s; }
.phone-bars span:nth-child(12){ animation-delay: 0.88s; }
@keyframes bar-jump {
  0%, 100% { transform: scaleY(0.3); }
  50%      { transform: scaleY(1); }
}

.phone-progress {
  height: 3px; background: rgba(244,236,255,0.18); border-radius: 2px;
  overflow: hidden; position: relative;
}
.phone-progress::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
  width: 38%;
  box-shadow: 0 0 8px var(--accent-1);
  animation: prog 5.6s ease-in-out infinite;
}
@keyframes prog {
  0%   { width: 18%; }
  100% { width: 88%; }
}

/* Floating "cut" cards around phone */
.cut-card {
  position: absolute;
  background: rgba(27, 13, 42, 0.85);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border-bright);
  border-radius: var(--r-md);
  padding: 12px 14px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-primary);
  box-shadow: 0 12px 36px -8px rgba(0,0,0,0.6);
  display: flex; align-items: center; gap: 10px;
  white-space: nowrap;
  animation: float-card 5.2s ease-in-out infinite;
}
.cut-card .badge {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent-2); box-shadow: 0 0 10px var(--accent-2);
}
.cut-card.c1 { top: 8%;  left: -12%; animation-delay: 0s; }
.cut-card.c2 { top: 38%; right: -14%; animation-delay: 1.4s; }
.cut-card.c3 { bottom: 12%; left: -8%; animation-delay: 2.8s; }
.cut-card .label { color: var(--text-muted); letter-spacing: 0.05em; }
.cut-card .tstamp { color: var(--accent-2); }
@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* Backdrop waveform stripe behind hero */
.hero-wave {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 120px;
  opacity: 0.35;
  pointer-events: none;
  z-index: -1;
  mask-image: linear-gradient(180deg, transparent, #000 40%, transparent);
}

/* ── Logo strip / trusted ───────────────────────────────────── */
.trust {
  padding: 24px 0 48px;
  text-align: center;
}
.trust-label {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 24px;
}
.trust-logos {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 48px 64px; align-items: center;
  filter: grayscale(1); opacity: 0.55;
  transition: opacity 0.3s;
}
.trust-logos:hover { opacity: 0.85; }
.trust-logo {
  font-family: var(--font-display); font-weight: 900;
  font-size: 22px; color: var(--text-primary);
  letter-spacing: -0.03em;
  display: flex; align-items: center; gap: 8px;
}
.trust-logo .dot-mark {
  width: 14px; height: 14px; border-radius: 4px;
  background: var(--text-primary);
}

/* ── Demo section ───────────────────────────────────────────── */
.demo {
  padding: 80px 0 100px;
}
.demo-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-xl);
  border: 1px solid var(--border-bright);
  background:
    radial-gradient(circle at 30% 40%, rgba(176,38,255,0.18), transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(0,229,255,0.12), transparent 55%),
    linear-gradient(160deg, #1B0D2A 0%, #0B0613 100%);
  overflow: hidden;
  box-shadow: 0 40px 100px -30px rgba(0,0,0,0.7),
              inset 0 1px 0 rgba(244,236,255,0.05);
  cursor: pointer;
  transition: transform 0.3s var(--ease);
}
.demo-frame:hover { transform: scale(1.005); }
.demo-frame::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(244,236,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,236,255,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
}
.demo-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 88px; height: 88px; border-radius: 50%;
  background: var(--grad-cta);
  display: grid; place-items: center;
  box-shadow: 0 0 0 12px rgba(255,107,74,0.12),
              0 20px 50px -10px rgba(255,107,74,0.6);
  animation: pulse-play 2.6s ease-in-out infinite;
  transition: transform 0.25s var(--ease);
}
.demo-play:hover { transform: translate(-50%, -50%) scale(1.06); }
.demo-play svg { width: 32px; height: 32px; fill: #fff; margin-left: 4px; }
@keyframes pulse-play {
  0%, 100% { box-shadow: 0 0 0 12px rgba(255,107,74,0.12), 0 20px 50px -10px rgba(255,107,74,0.6); }
  50%      { box-shadow: 0 0 0 20px rgba(255,107,74,0.04), 0 20px 50px -10px rgba(255,107,74,0.8); }
}
.demo-label {
  position: absolute; bottom: 20px; left: 24px;
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-muted);
  display: flex; align-items: center; gap: 10px;
}
.demo-label .rec {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent-warn); box-shadow: 0 0 10px var(--accent-warn);
}
.demo-duration {
  position: absolute; bottom: 20px; right: 24px;
  font-family: var(--font-mono); font-size: 12px;
  color: var(--text-muted); letter-spacing: 0.04em;
}

/* ── Section: Para quem é ───────────────────────────────────── */
.audience .audience-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.aud-card {
  position: relative;
  padding: 32px 28px;
  background: linear-gradient(160deg, rgba(27,13,42,0.7), rgba(20,9,31,0.5));
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  backdrop-filter: blur(10px);
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
  overflow: hidden;
}
.aud-card::before {
  content: ''; position: absolute; inset: 0;
  background: var(--grad-rim);
  opacity: 0; transition: opacity 0.3s;
  pointer-events: none;
}
.aud-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-bright);
  box-shadow: 0 20px 50px -20px rgba(176,38,255,0.3);
}
.aud-card:hover::before { opacity: 0.5; }
.aud-icon {
  width: 48px; height: 48px; border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(176,38,255,0.2), rgba(0,229,255,0.1));
  border: 1px solid var(--border-bright);
  display: grid; place-items: center;
  margin-bottom: 20px;
  color: var(--accent-2);
}
.aud-icon svg { width: 24px; height: 24px; }
.aud-card h3 {
  font-size: 1.35rem; font-weight: 800;
  margin-bottom: 10px; letter-spacing: -0.02em;
}
.aud-card p {
  color: var(--text-muted); font-size: 14.5px; line-height: 1.55;
}

/* ── Section: Features (4 features) ─────────────────────────── */
.features-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 20px;
  grid-template-rows: 1fr 1fr;
}
.feature {
  position: relative;
  padding: 36px;
  background: linear-gradient(160deg, rgba(27,13,42,0.85), rgba(20,9,31,0.6));
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.feature::after {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(176,38,255,0.5), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.feature:hover { border-color: var(--border-bright); transform: translateY(-3px); }
.feature:hover::after { opacity: 1; }
.feature-1 { grid-row: 1 / 3; min-height: 480px; display: flex; flex-direction: column; justify-content: space-between; }
.feature-num {
  font-family: var(--font-mono); font-size: 12px;
  color: var(--text-dim); letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.feature-num span { color: var(--accent-2); }
.feature h3 {
  font-size: 1.55rem; font-weight: 800;
  letter-spacing: -0.025em; margin-bottom: 12px;
  line-height: 1.1;
}
.feature-1 h3 { font-size: 2rem; }
.feature p {
  color: var(--text-muted); font-size: 15px; line-height: 1.55;
  max-width: 380px;
}
.feature-vis {
  margin-top: 28px;
  border-radius: var(--r-md);
  overflow: hidden;
}

/* feature 1 — viral caption demo (mini) */
.viral-demo {
  position: relative;
  height: 220px;
  background:
    radial-gradient(circle at 20% 80%, rgba(0,229,255,0.2), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(176,38,255,0.3), transparent 55%),
    #0B0613;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  display: grid; place-items: center;
  padding: 24px;
  overflow: hidden;
}
.viral-demo .vcaption {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  letter-spacing: -0.025em;
  text-align: center; line-height: 1.1;
}
.viral-demo .vcaption .w {
  display: inline-block; margin: 0 4px;
}
.viral-demo .vcaption .w.acc {
  background: var(--accent-warn); color: #0B0613;
  padding: 0 8px; border-radius: 4px;
  animation: viral-bounce 2.4s ease-in-out infinite;
}
.viral-demo .vcaption .w.cy { color: var(--accent-2); }
@keyframes viral-bounce {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-4px) rotate(2deg); }
}

/* feature 2 — transcription mock */
.transcribe-mock {
  font-family: var(--font-mono); font-size: 12.5px;
  display: flex; flex-direction: column; gap: 6px;
  padding: 16px; height: 160px;
  background: rgba(11,6,19,0.5); border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.transcribe-mock .line { display: flex; gap: 12px; align-items: flex-start; }
.transcribe-mock .ts { color: var(--accent-2); flex-shrink: 0; }
.transcribe-mock .speaker { color: var(--text-muted); }
.transcribe-mock .text { color: var(--text-primary); }
.transcribe-mock .chapter {
  margin-top: 4px;
  font-size: 11px; color: var(--accent-warn);
  letter-spacing: 0.12em; text-transform: uppercase;
  border-top: 1px dashed var(--border-bright);
  padding-top: 8px;
}

/* feature 3 — eq bars */
.eq-mock {
  height: 160px;
  background: rgba(11,6,19,0.5);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 16px;
  display: flex; align-items: flex-end; gap: 4px;
}
.eq-mock span {
  flex: 1;
  background: linear-gradient(180deg, var(--accent-1), var(--accent-2));
  border-radius: 2px;
  animation: eq-jump 1.6s ease-in-out infinite;
  min-height: 8px;
  opacity: 0.85;
}
@keyframes eq-jump {
  0%, 100% { transform: scaleY(0.2); }
  50%      { transform: scaleY(1); }
}

/* feature 4 — voice clone wave */
.voice-mock {
  height: 160px;
  background: rgba(11,6,19,0.5);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  display: grid; place-items: center;
  position: relative;
  overflow: hidden;
}
.voice-mock svg {
  width: 90%; height: 60px; color: var(--accent-1);
}
.voice-mock .voice-tag {
  position: absolute; top: 12px; right: 12px;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-warn);
  border: 1px solid var(--accent-warn);
  padding: 4px 8px; border-radius: var(--r-pill);
}

/* ── Comparison table ───────────────────────────────────────── */
.compare-wrap {
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  background: linear-gradient(160deg, rgba(27,13,42,0.6), rgba(20,9,31,0.3));
  overflow: hidden;
  position: relative;
}
.compare-table {
  width: 100%; border-collapse: collapse;
}
.compare-table th, .compare-table td {
  padding: 18px 22px;
  text-align: center;
  font-size: 14.5px;
  border-bottom: 1px solid var(--border);
}
.compare-table th {
  font-family: var(--font-display); font-weight: 800;
  font-size: 16px; letter-spacing: -0.02em;
  color: var(--text-primary);
  background: rgba(11,6,19,0.4);
}
.compare-table th:first-child,
.compare-table td:first-child {
  text-align: left;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  padding-left: 26px;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table .col-us {
  background: linear-gradient(180deg, rgba(176,38,255,0.12), rgba(176,38,255,0.04));
  position: relative;
}
.compare-table thead .col-us {
  background: linear-gradient(180deg, rgba(176,38,255,0.3), rgba(176,38,255,0.1));
  color: var(--text-primary);
  position: relative;
}
.compare-table thead .col-us::before {
  content: ''; position: absolute;
  inset: 0;
  border-left: 1px solid rgba(176,38,255,0.4);
  border-right: 1px solid rgba(176,38,255,0.4);
  pointer-events: none;
}
.compare-table .col-us {
  border-left: 1px solid rgba(176,38,255,0.3);
  border-right: 1px solid rgba(176,38,255,0.3);
}
.compare-table .check { color: #58D17A; font-weight: 700; }
.compare-table .x     { color: var(--text-dim); }
.compare-table .warn  { color: var(--accent-warn); }
.compare-table .em    { font-weight: 700; color: var(--text-primary); }
.compare-table td.col-us { font-weight: 600; color: var(--text-primary); }
.compare-table tbody tr:hover {
  background: rgba(244,236,255,0.02);
}

/* ── Pricing ────────────────────────────────────────────────── */
.pricing-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  align-items: stretch;
}
.price-card {
  position: relative;
  padding: 32px 26px;
  background: linear-gradient(160deg, rgba(27,13,42,0.75), rgba(20,9,31,0.5));
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  display: flex; flex-direction: column; gap: 22px;
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.price-card:hover { transform: translateY(-4px); border-color: var(--border-bright); }
.price-card.pro {
  background:
    linear-gradient(160deg, rgba(176,38,255,0.18), rgba(20,9,31,0.7));
  border-color: var(--accent-1);
  box-shadow: 0 30px 80px -30px rgba(176,38,255,0.45);
  transform: translateY(-12px);
}
.price-card.pro:hover { transform: translateY(-16px); }
.price-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--grad-cta); color: #fff;
  padding: 6px 14px; border-radius: var(--r-pill);
  box-shadow: 0 8px 24px -6px rgba(255,107,74,0.55);
  white-space: nowrap;
}
.price-tier {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-muted);
}
.price-card.pro .price-tier { color: var(--accent-2); }
.price-num {
  font-family: var(--font-display); font-weight: 800;
  font-size: 2.6rem; line-height: 1; letter-spacing: -0.04em;
  display: flex; align-items: baseline; gap: 4px;
}
.price-num .currency {
  font-size: 1.1rem; color: var(--text-muted); font-weight: 600;
}
.price-num .per {
  font-size: 0.95rem; color: var(--text-muted);
  font-weight: 500; font-family: var(--font-body);
}
.price-yearly {
  font-family: var(--font-mono); font-size: 11.5px;
  color: var(--text-muted); letter-spacing: 0.04em;
  margin-top: -10px;
}
.price-features {
  display: flex; flex-direction: column; gap: 10px;
  margin: 4px 0 0;
  flex: 1;
}
.price-features li {
  font-size: 13.5px; color: var(--text-primary);
  display: flex; align-items: flex-start; gap: 10px;
  line-height: 1.4;
}
.price-features li::before {
  content: '✓'; color: var(--accent-2);
  font-weight: 700; flex-shrink: 0;
  margin-top: 1px;
}
.price-card.pro .price-features li::before { color: var(--accent-warn); }
.price-cta {
  width: 100%; padding: 12px;
  border-radius: var(--r-pill);
  font-weight: 600; font-size: 14px;
  text-align: center;
  background: rgba(244,236,255,0.06);
  border: 1px solid var(--border-bright);
  color: var(--text-primary);
  transition: background 0.2s, border-color 0.2s, transform 0.2s var(--ease);
}
.price-cta:hover {
  background: rgba(244,236,255,0.1);
  border-color: var(--text-muted);
}
.price-card.pro .price-cta {
  background: var(--grad-cta); color: #fff; border-color: transparent;
  box-shadow: 0 8px 24px -8px rgba(255,107,74,0.5);
}
.price-card.pro .price-cta:hover { transform: scale(1.02); }

/* ── Testimonials ───────────────────────────────────────────── */
.testimonials {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 56px;
}
.testimonial {
  padding: 28px;
  background: linear-gradient(160deg, rgba(27,13,42,0.6), rgba(20,9,31,0.4));
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.testimonial:hover { border-color: var(--border-bright); transform: translateY(-3px); }
.testimonial .quote-mark {
  font-family: var(--font-display); font-weight: 900; font-size: 3rem;
  line-height: 0.5; color: var(--accent-1); opacity: 0.5;
  margin-bottom: -10px;
}
.testimonial p {
  font-size: 15px; color: var(--text-primary);
  line-height: 1.55;
  font-weight: 500;
}
.testimonial .author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}
.testimonial .avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800;
  font-size: 14px; color: #0B0613;
  flex-shrink: 0;
}
.testimonial .who {
  display: flex; flex-direction: column;
}
.testimonial .name { font-weight: 600; font-size: 14px; }
.testimonial .role {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--text-muted); letter-spacing: 0.04em;
}

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-list {
  border-top: 1px solid var(--border);
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
  padding: 24px 4px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.15rem; letter-spacing: -0.02em;
  color: var(--text-primary);
  text-align: left;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--accent-2); }
.faq-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border-bright);
  display: grid; place-items: center;
  transition: transform 0.3s var(--ease), background 0.2s, border-color 0.2s;
  color: var(--text-muted);
}
.faq-q:hover .faq-icon { color: var(--text-primary); border-color: var(--text-muted); }
.faq-item[open] .faq-icon { transform: rotate(45deg); background: var(--accent-1); color: #fff; border-color: var(--accent-1); }
.faq-a {
  padding: 0 4px 24px;
  color: var(--text-muted);
  font-size: 15px; line-height: 1.6;
  max-width: 720px;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q { cursor: pointer; list-style: none; }

/* ── Final CTA ──────────────────────────────────────────────── */
.cta-final {
  padding: 100px 0;
  text-align: center;
}
.cta-card {
  position: relative;
  padding: 80px 40px;
  border-radius: var(--r-xl);
  background:
    radial-gradient(circle at 20% 30%, rgba(176,38,255,0.3), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0,229,255,0.2), transparent 50%),
    linear-gradient(160deg, rgba(27,13,42,0.95), rgba(11,6,19,0.95));
  border: 1px solid var(--border-bright);
  overflow: hidden;
}
.cta-card::before {
  content: ''; position: absolute; inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, var(--accent-1), transparent 50%, var(--accent-2));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  opacity: 0.5;
}
.cta-card h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: -0.04em; line-height: 1;
  margin-bottom: 16px;
  max-width: 720px; margin-left: auto; margin-right: auto;
}
.cta-card p {
  color: var(--text-muted); font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 480px; margin-left: auto; margin-right: auto;
}
.cta-card .hero-ctas { justify-content: center; }

/* ── Footer ─────────────────────────────────────────────────── */
footer.site {
  padding: 60px 0 32px;
  border-top: 1px solid var(--border);
}
.foot-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.foot-brand .logo { margin-bottom: 14px; }
.foot-brand p {
  color: var(--text-muted); font-size: 14px;
  max-width: 320px; line-height: 1.55;
}
.foot-col h4 {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 16px; font-weight: 500;
}
.foot-col ul { display: flex; flex-direction: column; gap: 10px; }
.foot-col a {
  color: var(--text-primary); font-size: 14px;
  transition: color 0.2s;
}
.foot-col a:hover { color: var(--accent-2); }
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-family: var(--font-mono); font-size: 12px;
  color: var(--text-dim); letter-spacing: 0.04em;
  flex-wrap: wrap; gap: 16px;
}
.socials { display: flex; gap: 10px; }
.socials a {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--border);
  display: grid; place-items: center;
  color: var(--text-muted);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.socials a:hover {
  color: var(--text-primary);
  border-color: var(--border-bright);
  background: rgba(244,236,255,0.04);
}
.socials svg { width: 15px; height: 15px; }

/* ── Reveal animation ───────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in {
  opacity: 1; transform: translateY(0);
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .section-pad { padding: 96px 0; }
  .hero { padding: 140px 0 60px; }
  .features-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .feature-1 { grid-row: auto; min-height: auto; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card.pro { transform: translateY(0); }
  .price-card.pro:hover { transform: translateY(-4px); }
  .audience .audience-grid { grid-template-columns: 1fr 1fr; }
  .testimonials { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .wrap { padding: 0 20px; }
  .section-pad { padding: 80px 0; }
  .hero { padding: 120px 0 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero h1 { font-size: clamp(2.2rem, 9vw, 3.2rem); }
  .hero-visual { height: 480px; }
  .nav-links { display: none; }
  .nav-actions .login { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .audience .audience-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; margin-top: 36px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .compare-table { font-size: 12.5px; }
  .compare-table th, .compare-table td { padding: 14px 10px; }
  .compare-table th:first-child, .compare-table td:first-child { padding-left: 14px; font-size: 11.5px; }
  .cta-card { padding: 56px 24px; }
  .h-section { font-size: clamp(1.7rem, 6vw, 2.4rem); }
}

@media (max-width: 480px) {
  .hero-visual { height: 460px; }
  .phone { width: 250px; height: 480px; }
  .cut-card { display: none; }
  .trust-logos { gap: 24px 32px; }
  .trust-logo { font-size: 16px; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
}

/* ── Focus visibility ───────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Reduced motion ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
