/*
  Style: "Shade" - matched to actual product screenshots (not the mismatched
  text spec, which described a light near-monochrome theme with hard-only
  shadows; the real site is dark with a vivid violet accent and soft ambient
  glow behind hero visuals).
*/
:root {
  --bg: #06060a;
  --bg-elevated: #0e0e14;
  --bg-elevated-2: #15151d;
  --text: #ffffff;
  --text-muted: #a3a3ae;
  --text-faint: #6c6c78;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --violet: #7c5cfc;
  --violet-hover: #8f70ff;
  --violet-glow: rgba(124, 92, 252, 0.35);
  --danger: #ef4444;

  --font-display: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --radius-buttons: 999px;
  --radius-cards: 16px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

p {
  margin: 0;
}

section {
  padding: 100px 0;
  position: relative;
}

code {
  font-family: var(--font-mono);
  background: var(--bg-elevated-2);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.9em;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--violet);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-buttons);
  font-weight: 500;
  font-size: 14px;
  padding: 12px 22px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s ease, opacity 0.2s ease, background 0.2s ease;
}

.btn:active {
  transform: scale(0.97);
}

.btn-accent {
  background: var(--violet);
  color: #ffffff;
  box-shadow: 0 8px 24px var(--violet-glow);
}

.btn-accent:hover {
  background: var(--violet-hover);
}

.btn-ghost {
  background: var(--bg-elevated-2);
  color: var(--text);
  border-color: var(--border-strong);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-lg {
  padding: 15px 26px;
  font-size: 15px;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6, 6, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-row {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
}

.brand img {
  width: 24px;
  height: 24px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a:not(.btn) {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.nav-links a:not(.btn):hover {
  color: var(--text);
}

.nav-links .btn-accent {
  display: none;
}

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

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--text);
  cursor: pointer;
  padding: 8px;
}

.nav-toggle svg {
  width: 20px;
  height: 20px;
}

/* ---------- Hero: soft ambient violet/blue glow behind the visual, per the real screenshots ---------- */
.hero {
  padding: 64px 0 100px;
  min-height: calc(100svh - 64px);
  display: flex;
  align-items: center;
  overflow: clip;
}

.hero::before {
  content: "";
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(124, 92, 252, 0.35) 0%, rgba(59, 60, 214, 0.18) 40%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(32px, 4.2vw, 52px);
  letter-spacing: -0.03em;
  max-width: 780px;
}

.hero .lead {
  margin: 20px auto 0;
  color: var(--text-muted);
  font-size: 17px;
  max-width: 460px;
}

.hero .lead strong {
  color: var(--text);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.hero-note {
  margin-top: 6px;
  color: var(--text-faint);
  font-size: 13px;
}

/* ---------- Video embed (Kinescope placeholder) - elevated card floating on the glow ---------- */
.video-embed {
  width: 100%;
  max-width: 860px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-cards);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(124, 92, 252, 0.12);
  overflow: hidden;
}

.video-embed iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
}

.video-embed-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  aspect-ratio: 16 / 9;
  color: var(--text-muted);
  font-size: 14px;
}

.video-embed-placeholder .play-icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--violet);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Section heads ---------- */
.section-head {
  max-width: 620px;
  margin: 0 auto 56px;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: clamp(26px, 3vw, 36px);
}

.section-head p {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 16px;
}

/* ---------- Comparison ---------- */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.compare-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-cards);
  padding: 32px;
}

.compare-card h3 {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.compare-card.is-new {
  border-color: rgba(124, 92, 252, 0.35);
  box-shadow: 0 0 0 1px rgba(124, 92, 252, 0.1) inset;
}

.compare-card.is-new h3 {
  color: var(--violet);
}

.compare-list {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.compare-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-muted);
}

.compare-card.is-new .compare-item {
  color: var(--text);
}

.compare-mark {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.compare-card:not(.is-new) .compare-mark {
  background: rgba(239, 68, 68, 0.14);
  color: var(--danger);
}

.compare-card.is-new .compare-mark {
  background: var(--violet);
  color: #fff;
}

.compare-mark svg {
  width: 11px;
  height: 11px;
}

.compare-note {
  margin-top: 32px;
  text-align: center;
  color: var(--text-muted);
  font-size: 15px;
}

/* ---------- Steps ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.step-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-cards);
  padding: 32px;
}

.step-index {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--violet);
  letter-spacing: 0.04em;
}

.step-card h3 {
  margin-top: 16px;
  font-size: 20px;
}

.step-card p {
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 15px;
}

.steps-payoff {
  margin-top: 32px;
  text-align: center;
  font-size: 16px;
  color: var(--text);
}

.steps-payoff strong {
  color: var(--violet);
}

/* ---------- Founder ---------- */
.founder-panel {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 64px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.founder-panel h2 {
  font-size: clamp(24px, 3vw, 30px);
}

.founder-panel p {
  margin-top: 20px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
}

.founder-sign {
  margin-top: 28px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-faint);
}

/* ---------- Features ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-cards);
  padding: 28px;
}

.feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(124, 92, 252, 0.16);
  color: var(--violet);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 17px;
}

.feature-card p {
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 14px;
}

.audience-row {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.audience-chip {
  padding: 8px 16px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 13px;
  color: var(--text-muted);
}

/* ---------- Social proof ---------- */
.proof-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.proof-stat {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-cards);
  padding: 28px;
  text-align: center;
}

.proof-stat .value {
  font-size: 32px;
  font-weight: 600;
  color: var(--text-faint);
  letter-spacing: -0.02em;
}

.proof-stat .label {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-faint);
}

.proof-quote {
  background: var(--bg-elevated);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-cards);
  padding: 32px;
  text-align: center;
}

.proof-quote p {
  font-size: 16px;
  color: var(--text-faint);
  font-style: italic;
}

.proof-quote span {
  display: block;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-faint);
}

/* ---------- Pricing ---------- */
.price-card {
  max-width: 420px;
  margin: 0 auto;
  background: var(--bg-elevated);
  border: 1px solid rgba(124, 92, 252, 0.3);
  border-radius: var(--radius-cards);
  padding: 44px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(124, 92, 252, 0.1);
}

.price-card .eyebrow {
  margin-bottom: 8px;
}

.price-card h3 {
  font-size: 20px;
}

.price-amount {
  margin-top: 18px;
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.price-card .price-desc {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 14px;
}

.price-card .btn {
  width: 100%;
  margin-top: 28px;
}

.price-card .price-fine {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-faint);
}

.price-exception {
  max-width: 520px;
  margin: 28px auto 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.price-exception a {
  color: var(--violet);
  border-bottom: 1px solid rgba(124, 92, 252, 0.4);
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: 0;
  padding: 22px 0;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  text-align: left;
}

.faq-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  position: relative;
  color: var(--text-faint);
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  transition: transform 0.2s ease;
}

.faq-icon::before {
  top: 8px;
  left: 1px;
  width: 16px;
  height: 1.5px;
}

.faq-icon::after {
  top: 1px;
  left: 8px;
  width: 1.5px;
  height: 16px;
}

.faq-item.is-open .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: var(--text-muted);
  font-size: 14px;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding-bottom: 22px;
  max-width: 600px;
}

.faq-item.is-open .faq-answer {
  max-height: 200px;
}

/* ---------- Final CTA ---------- */
.final-cta {
  text-align: center;
}

.final-cta h2 {
  font-size: clamp(30px, 5vw, 52px);
  letter-spacing: -0.03em;
}

.final-cta .hero-actions {
  justify-content: center;
  margin-top: 40px;
}

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
}

.footer-brand p {
  margin-top: 12px;
  color: var(--text-faint);
  font-size: 13px;
  max-width: 240px;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 16px;
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-faint);
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Legal pages ---------- */
.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 24px 96px;
}

.legal h1 {
  font-size: 32px;
}

.legal .updated {
  margin-top: 8px;
  font-family: var(--font-mono);
  color: var(--text-faint);
  font-size: 13px;
}

.legal h2 {
  font-size: 18px;
  margin-top: 40px;
}

.legal p, .legal li {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

.legal p {
  margin-top: 12px;
}

.legal ul {
  margin-top: 12px;
  padding-left: 20px;
}

.legal li {
  margin-top: 6px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero {
    min-height: auto;
    padding: 40px 0 72px;
  }

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

  .compare-grid,
  .steps-grid,
  .feature-grid,
  .proof-stats {
    grid-template-columns: 1fr;
  }

  .founder-panel {
    padding: 48px 28px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 72px 0;
  }

  .nav-links {
    display: none;
  }

  .nav.is-open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 12px 24px 20px;
  }

  .nav-links a:not(.btn) {
    padding: 12px 14px;
  }

  .nav.is-open .nav-links .btn-accent {
    display: inline-flex;
    margin-top: 8px;
  }

  .nav-actions .btn-accent {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 375px) {
  .price-card,
  .founder-panel {
    padding: 32px 20px;
  }
}
