 :root {
  --bg: #070708;
  --bg-elevated: rgba(19, 19, 24, 0.92);
  --panel: rgba(22, 22, 27, 0.85);
  --panel-solid: #15151a;
  --text: #f4f5f7;
  --muted: #a6acb9;
  --brand: #8b5cf6;
  --brand-2: #22d3ee;
  --accent: #10b981;
  --border: rgba(148, 163, 184, 0.12);
  --glow: rgba(139, 92, 246, 0.22);
  --noise: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
 }

 * {
  box-sizing: border-box;
 }

 html,
 body {
  margin: 0;
  padding: 0;
  background: radial-gradient(120% 120% at 0% 0%, rgba(139, 92, 246, 0.35), transparent 55%),
    radial-gradient(140% 140% at 100% 10%, rgba(34, 211, 238, 0.25), transparent 60%),
    var(--bg);
  color: var(--text);
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  background-image: var(--noise);
 }

 .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
 }

 .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
 }

 .site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(24px) saturate(160%);
  background: rgba(7, 7, 8, 0.8);
  border-bottom: 1px solid var(--border);
  z-index: 100;
 }

 .site-header .brand {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  padding: 20px 0;
  background: linear-gradient(120deg, #f9fafb, #a78bfa 55%, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
 }

 .site-header .brand .dot {
  color: var(--brand);
 }

 .site-header .nav a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 24px;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
 }

 .site-header .nav a:hover {
  color: var(--text);
 }

 .hero {
  padding: 140px 0 120px;
  position: relative;
  display: grid;
  gap: 64px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
 }

 .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 20% 20%, rgba(139, 92, 246, 0.28), transparent 55%),
    radial-gradient(circle at 80% 0%, rgba(34, 211, 238, 0.24), transparent 60%);
  z-index: -2;
 }

 .hero-copy {
  max-width: 520px;
 }

 .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(34, 211, 238, 0.15));
  border: 1px solid rgba(139, 92, 246, 0.35);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
 }

 .hero-badge::before {
  content: "●";
  font-size: 10px;
  color: var(--brand);
 }

 .hero h1 {
  margin: 24px 0;
  font-size: clamp(46px, 5vw, 68px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(120deg, #f9fafb, #e0e7ff 55%, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
 }

 .hero .sub {
  margin: 0 0 32px;
  color: var(--muted);
  font-size: 18px;
 }

 .cta {
  display: flex;
  gap: 16px;
  align-items: center;
 }

 .hero-note {
  margin-top: 28px;
  color: var(--muted);
  font-size: 14px;
 }

 .hero-visual {
  position: relative;
  display: grid;
  gap: 20px;
  justify-items: end;
 }

 .glow {
  position: absolute;
  inset: -60px;
  background: radial-gradient(80% 80% at 50% 0%, rgba(139, 92, 246, 0.65), transparent 70%);
  filter: blur(40px);
  z-index: -1;
 }

 .mockup {
  width: min(420px, 100%);
  background: var(--panel);
  border-radius: 24px;
  border: 1px solid rgba(139, 92, 246, 0.25);
  backdrop-filter: blur(40px);
  box-shadow: 0 40px 120px rgba(10, 10, 15, 0.6);
  padding: 28px;
  display: grid;
  gap: 20px;
 }

 .mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
 }

 .mockup-pill {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(139, 92, 246, 0.4);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.25), rgba(34, 211, 238, 0.2));
 }

 .mockup-time {
  font-size: 12px;
  color: var(--muted);
 }

 .mockup-chat {
  display: grid;
  gap: 12px;
 }

 .chat-bubble {
  padding: 14px 16px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.5;
 }

 .chat-bubble.user {
  background: rgba(139, 92, 246, 0.18);
  border: 1px solid rgba(139, 92, 246, 0.35);
 }

 .chat-bubble.ai {
  background: rgba(34, 211, 238, 0.18);
  border: 1px solid rgba(34, 211, 238, 0.35);
 }

 .mockup-timeline {
  display: grid;
  gap: 12px;
 }

 .track {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 6px;
 }

 .clip {
  height: 40px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
 }

 .clip.brand {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.8), rgba(59, 130, 246, 0.85));
 }

 .clip.overlay {
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.7), rgba(6, 182, 212, 0.85));
 }

 .clip.captions {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.8), rgba(52, 211, 153, 0.75));
 }

 .audio-track {
  height: 34px;
  border-radius: 12px;
  border: 1px solid rgba(139, 92, 246, 0.25);
  background: rgba(12, 12, 18, 0.9);
  padding: 0 10px;
  display: flex;
  align-items: center;
 }

 .wave {
  width: 100%;
  height: 12px;
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, rgba(139, 92, 246, 0.45) 0, rgba(139, 92, 246, 0.45) 6px, transparent 6px, transparent 12px);
 }

 .metrics {
  display: flex;
  gap: 16px;
  margin-right: 20px;
 }

 .metric-card {
  min-width: 120px;
  padding: 16px 20px;
  border-radius: 16px;
  background: rgba(12, 12, 18, 0.75);
  border: 1px solid rgba(139, 92, 246, 0.3);
  backdrop-filter: blur(20px);
  display: grid;
  gap: 4px;
 }

 .metric-value {
  font-size: 20px;
  font-weight: 600;
  color: #f1f5f9;
 }

 .metric-label {
  font-size: 13px;
  color: var(--muted);
 }

 .social-proof {
  padding: 32px 0 12px;
  background: linear-gradient(180deg, rgba(10, 10, 12, 0.95), rgba(7, 7, 8, 0.8));
  border-block: 1px solid rgba(148, 163, 184, 0.07);
 }

 .proof-label {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.3em;
 }

 .proof-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
 }

 .logo-pill {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(13, 13, 18, 0.65);
  color: #e2e8f0;
  font-size: 13px;
  letter-spacing: 0.08em;
 }

 .features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  padding: 110px 0;
 }

 .feature {
  display: flex;
  gap: 20px;
  padding: 32px;
  background: linear-gradient(160deg, rgba(17, 17, 24, 0.92), rgba(11, 11, 16, 0.88));
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease;
 }

 .feature::after {
  content: "";
  position: absolute;
  inset: -40% 50% 60% -30%;
  background: linear-gradient(120deg, rgba(139, 92, 246, 0.4), transparent 65%);
  opacity: 0;
  transition: opacity 0.35s ease;
 }

 .feature:hover {
  transform: translateY(-6px);
  border-color: rgba(139, 92, 246, 0.45);
 }

 .feature:hover::after {
  opacity: 1;
 }

 .feature-icon {
  font-size: 30px;
  flex-shrink: 0;
  height: 52px;
  width: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(139, 92, 246, 0.18);
  border: 1px solid rgba(139, 92, 246, 0.25);
 }

 .feature-body h3 {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 600;
 }

 .feature-body p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
 }

 .workflow {
  padding: 120px 0;
  background: linear-gradient(180deg, rgba(11, 11, 16, 0.92), rgba(7, 7, 8, 0.95));
  border-block: 1px solid rgba(148, 163, 184, 0.08);
 }

 .workflow-header {
  max-width: 580px;
  margin-bottom: 48px;
 }

 .workflow-header h2 {
  margin: 0 0 16px;
  font-size: clamp(32px, 4vw, 44px);
 }

 .workflow-header p {
  margin: 0;
  color: var(--muted);
 }

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

 .workflow-card {
  padding: 32px;
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: linear-gradient(145deg, rgba(17, 17, 24, 0.96), rgba(12, 12, 18, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
 }

 .workflow-card h4 {
  margin: 0 0 12px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #e2e8f0;
 }

 .workflow-card p {
  margin: 0;
  color: var(--muted);
 }

 .spotlight {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 110px 0 120px;
 }

 .spotlight-card {
  padding: 32px;
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(139, 92, 246, 0.16), rgba(12, 12, 18, 0.88));
  border: 1px solid rgba(139, 92, 246, 0.35);
  box-shadow: 0 24px 60px rgba(10, 10, 15, 0.45);
  position: relative;
  overflow: hidden;
 }

 .spotlight-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% -20%;
  height: 70%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.35), transparent 65%);
  opacity: 0;
  transition: opacity 0.35s ease;
 }

 .spotlight-card:hover::after {
  opacity: 1;
 }

 .spotlight-badge {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(12, 12, 18, 0.55);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
 }

 .spotlight-card h3 {
  margin: 18px 0 14px;
  font-size: 22px;
 }

 .spotlight-card p {
  margin: 0;
  color: var(--muted);
 }

 .waitlist {
  padding: 120px 0;
 }

 .waitlist-inner {
  padding: 48px;
  border-radius: 28px;
  background: linear-gradient(150deg, rgba(139, 92, 246, 0.22), rgba(12, 12, 18, 0.9));
  border: 1px solid rgba(139, 92, 246, 0.35);
  max-width: 720px;
  margin: 0 auto;
 }

 .waitlist h2 {
  margin: 0 0 12px;
  font-size: 38px;
 }

 .waitlist > p,
 .waitlist-inner > p {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 24px;
 }

 .waitlist-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
  flex-wrap: wrap;
 }

 .waitlist-form input[type="email"] {
  width: 340px;
  max-width: 80vw;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(139, 92, 246, 0.35);
  background: rgba(8, 8, 10, 0.75);
  color: var(--text);
  font-size: 15px;
  transition: all 0.2s ease;
 }

 .waitlist-form input[type="email"]:focus {
  outline: none;
  border-color: rgba(34, 211, 238, 0.65);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.12);
 }

 .disclaimer {
  color: var(--muted);
  font-size: 13px;
  margin-top: 16px;
 }

 .faq {
  padding: 120px 0 140px;
  max-width: 820px;
  margin: 0 auto;
 }

 .faq h2 {
  text-align: center;
  margin: 0 0 48px;
  font-size: clamp(32px, 4vw, 44px);
 }

 .qa {
  background: linear-gradient(165deg, rgba(17, 17, 24, 0.88), rgba(11, 11, 16, 0.92));
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 20px;
  padding: 28px;
  margin-bottom: 16px;
  transition: transform 0.25s ease;
 }

 .qa:hover {
  transform: translateX(6px);
  border-color: rgba(139, 92, 246, 0.45);
 }

 .qa h4 {
  margin: 0 0 12px;
  font-size: 18px;
 }

 .qa p {
  margin: 0;
  color: var(--muted);
 }

 .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(12, 12, 18, 0.6);
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
 }

 .button:hover {
  transform: translateY(-2px);
  background: rgba(18, 18, 24, 0.9);
  box-shadow: 0 18px 48px rgba(8, 8, 12, 0.4);
 }

 .button.primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  border: none;
  color: #fff;
  box-shadow: 0 20px 45px rgba(22, 163, 255, 0.22);
 }

 .button.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 60px rgba(34, 211, 238, 0.28);
 }

 .button.secondary {
  background: rgba(10, 10, 15, 0.55);
 }

 .site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  padding: 36px 0;
  color: var(--muted);
  font-size: 14px;
  background: rgba(4, 4, 6, 0.85);
  backdrop-filter: blur(18px);
 }

 .site-footer a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 16px;
  transition: color 0.2s ease;
 }

 .site-footer a:hover {
  color: var(--text);
 }

 @media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .hero-visual {
    justify-items: start;
  }

  .metrics {
    justify-content: flex-start;
  }

  .spotlight {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
 }

 @media (max-width: 860px) {
  .features {
    grid-template-columns: 1fr;
  }

  .workflow-grid {
    grid-template-columns: 1fr;
  }

  .spotlight {
    grid-template-columns: 1fr;
  }
 }

 @media (max-width: 640px) {
  .container {
    padding: 0 24px;
  }

  .cta {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .site-header .nav {
    display: none;
  }

  .waitlist-form {
    flex-direction: column;
    align-items: stretch;
  }

  .waitlist-form input[type="email"] {
    width: 100%;
  }
 }
