/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0D0D0D;
  --surface: #141414;
  --surface-2: #1E1E1E;
  --text: #F0EDE8;
  --text-muted: #8A8680;
  --accent: #F45B0E;
  --accent-dim: rgba(244, 91, 14, 0.12);
  --border: #2A2A2A;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Instrument Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── Hero ─── */
.hero {
  padding: 80px 0 0;
  overflow: hidden;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 20px;
}

.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 24px;
}

.hero-text h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-lede {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 32px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-muted);
}

.hero-stat strong {
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 700;
}

.hero-divider { color: var(--border); }

/* Video stack */
.hero-visuals {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.video-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.video-thumb {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.video-thumb-1 {
  box-shadow: 0 8px 40px rgba(244, 91, 14, 0.15);
}

.video-thumb-2 {
  transform: translateX(24px) scale(0.92);
  opacity: 0.8;
}

.video-thumb-3 {
  transform: translateX(48px) scale(0.84);
  opacity: 0.5;
}

.video-labels {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.video-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 12px;
}

.video-label:nth-child(2) {
  transform: translateX(24px) scale(0.92);
}

.video-label:nth-child(3) {
  transform: translateX(48px) scale(0.84);
}

/* Ticker */
.hero-ticker {
  margin-top: 60px;
  background: var(--accent-dim);
  border-top: 1px solid rgba(244, 91, 14, 0.2);
  border-bottom: 1px solid rgba(244, 91, 14, 0.2);
  padding: 14px 0;
  display: flex;
  overflow: hidden;
  white-space: nowrap;
}

.hero-ticker span {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 0 40px;
}

/* ─── Section Labels ─── */
.section-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}

/* ─── Proof ─── */
.proof {
  padding: 100px 0;
  background: var(--surface);
}

.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.proof-headline {
  margin-bottom: 60px;
}

.proof-headline h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  max-width: 640px;
  margin-bottom: 12px;
}

.proof-sub {
  font-size: 18px;
  color: var(--text-muted);
  font-style: italic;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 48px;
}

.proof-card {
  background: var(--surface);
  padding: 36px 32px;
}

.proof-stat {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 16px;
  line-height: 1;
}

.proof-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
}

.proof-quote {
  border-left: 2px solid var(--accent);
  padding-left: 24px;
}

.proof-quote blockquote {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  font-style: italic;
  color: var(--text);
  margin-bottom: 8px;
}

.proof-attribution {
  font-size: 14px;
  color: var(--text-muted);
}

/* ─── Process ─── */
.process {
  padding: 100px 0;
}

.process-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.process-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 60px;
  max-width: 500px;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.step:first-child { border-top: 1px solid var(--border); }

.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  padding-top: 4px;
}

.step:hover .step-num { color: var(--accent); }

.step-body h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-body p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 560px;
}

/* ─── Pricing ─── */
.pricing {
  padding: 100px 0;
  background: var(--surface);
}

.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.pricing-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 48px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}

.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  position: relative;
}

.pricing-card--pro {
  border-color: var(--accent);
  background: var(--surface-2);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-tier {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 28px;
}

.pricing-period {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-features {
  list-style: none;
  margin-bottom: 28px;
}

.pricing-features li {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-features li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.pricing-card--pro .pricing-features li::before {
  background: var(--accent);
}

.pricing-note {
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
}

.pricing-footnote {
  margin-top: 28px;
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
}

/* Pricing subline */
.pricing-subline {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 560px;
}

/* Spec rows inside pricing card */
.pricing-specs {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 0;
  margin-bottom: 20px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 14px;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
}

.spec-row:last-child { border-bottom: none; }

.spec-label {
  color: var(--text-muted);
  font-weight: 500;
}

.spec-val {
  color: var(--text);
  font-weight: 600;
  text-align: right;
}

/* CTA buttons */
.pricing-cta {
  display: block;
  text-align: center;
  padding: 12px 20px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-bottom: 12px;
}

.pricing-cta {
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
}

.pricing-cta:hover {
  background: #e04f07;
  border-color: #e04f07;
  transform: translateY(-1px);
}

.pricing-cta--outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.pricing-cta--outline:hover {
  background: var(--accent-dim);
  transform: translateY(-1px);
}

.pricing-card--pro .pricing-cta {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.pricing-card--pro .pricing-cta:hover {
  background: #e04f07;
  border-color: #e04f07;
}

/* FAQ section */
.pricing-faq {
  margin-top: 64px;
  border-top: 1px solid var(--border);
  padding-top: 48px;
}

.pricing-faq h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 32px;
  color: var(--text);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.faq-item h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.faq-item p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ─── Closing ─── */
.closing {
  padding: 120px 0;
}

.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.closing-badge {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-block;
  margin-bottom: 24px;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 32px;
  color: var(--text);
}

.closing p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 24px;
}

.closing-vision {
  font-family: var(--font-display);
  font-size: 18px !important;
  font-weight: 600;
  color: var(--text) !important;
  border-top: 1px solid var(--border);
  padding-top: 32px;
  margin-top: 32px;
}

/* ─── Footer ─── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  display: block;
  margin-bottom: 4px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-tagline p {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 0 24px;
    gap: 48px;
  }

  .hero-visuals {
    display: none;
  }

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

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

  .step {
    grid-template-columns: 56px 1fr;
    gap: 20px;
  }

  .step-num {
    font-size: 36px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .proof-inner,
  .process-inner,
  .pricing-inner,
  .closing-inner {
    padding: 0 24px;
  }

  .closing {
    padding: 80px 0;
  }

  .proof {
    padding: 60px 0;
  }
}
