/* Fonts */
:root {
  --bg: #111111;
  --bg-alt: #1a1a1a;
  --fg: #f5f5f5;
  --fg-muted: #888;
  --accent: #FF8C00;
  --accent-dim: rgba(255, 140, 0, 0.12);
  --border: rgba(255,255,255,0.08);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

* { 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;
  overflow-x: hidden;
}

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 999;
}

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 2rem 4rem;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 1.25rem;
}

.hero-left h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.accent-text { color: var(--accent); }

.lede {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-weight: 500;
}

.dot { color: var(--accent); font-weight: 700; }

/* Video card stack */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-stack {
  display: flex;
  gap: 1rem;
  transform: rotate(-3deg);
}

.video-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  width: 160px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.video-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 12px 12px 0 0;
}

.card-1::before { background: var(--accent); }
.card-2::before { background: #E840A0; }
.card-3::before { background: #FF0033; }

.card-bar {
  height: 6px;
  background: var(--border);
  border-radius: 4px;
  margin-bottom: 8px;
}
.card-bar.short { width: 60%; }
.card-bar.medium { width: 85%; }
.card-bar.long { width: 95%; background: rgba(255,140,0,0.3); }

.card-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-top: 0.5rem;
  display: block;
}

/* ─── Sections ─── */
.section-inner { max-width: 1100px; margin: 0 auto; padding: 5rem 2rem; }

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 1rem;
}

.section-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--fg-muted);
  font-size: 1rem;
  margin-bottom: 3rem;
}

/* ─── How It Works ─── */
.how-it-works { background: var(--bg-alt); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.step { position: relative; }

.step::before {
  content: '';
  position: absolute;
  top: 0.6rem;
  right: 0;
  width: 1px;
  height: calc(100% - 1.2rem);
  background: var(--border);
}

.step:last-child::before { display: none; }

.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-dim);
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.step p { color: var(--fg-muted); font-size: 0.95rem; line-height: 1.7; }

/* ─── Pricing ─── */
.pricing-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3rem;
  max-width: 480px;
}

.pricing-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.plan-name {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.price { display: flex; align-items: baseline; gap: 0.2rem; }
.currency { font-size: 1.5rem; font-weight: 700; color: var(--fg-muted); }
.amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--fg);
}
.period { font-size: 1rem; color: var(--fg-muted); }

.pricing-features { list-style: none; }

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.pricing-features li:last-child { border-bottom: none; }

.check { color: var(--accent); font-size: 1.1rem; font-weight: 700; }

.upgrade-note {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-align: center;
}

/* ─── Different ─── */
.different { background: var(--bg-alt); }

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin: 3rem 0 2rem;
}

.comp-col { padding: 2.5rem; background: var(--bg); }

.comp-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  display: block;
  margin-bottom: 1.5rem;
}

.success .comp-label { color: var(--accent); }

.comp-col ul { list-style: none; }
.comp-col ul li {
  padding: 0.5rem 0;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.failure ul li::before { content: '×'; color: #555; font-weight: 700; font-size: 1.1rem; }
.success ul li::before { content: '✓'; color: var(--accent); font-weight: 700; font-size: 1.1rem; }

.diff-note {
  font-size: 0.9rem;
  color: var(--fg-muted);
  font-style: italic;
  text-align: center;
}

/* ─── Closing ─── */
.closing { text-align: center; }
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.closing p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.8;
}

/* ─── Footer ─── */
footer { border-top: 1px solid var(--border); }
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  display: block;
}

.brand-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  display: block;
  margin-top: 0.2rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--fg-muted);
}

.sep { color: var(--border); }

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-right { display: none; }
  .steps-grid { grid-template-columns: 1fr; gap: 2rem; }
  .step::before { display: none; }
  .comparison-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero { padding: 5rem 1.5rem 3rem; }
  .section-inner { padding: 4rem 1.5rem; }
  .pricing-card { padding: 2rem; }
  .amount { font-size: 2.5rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}