/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0a0a0a;
  --bg-card: #111111;
  --bg-card-hover: #161616;
  --fg: #f5f5f0;
  --fg-muted: #888888;
  --fg-subtle: #444444;
  --accent: #FF6B2C;
  --accent-dim: rgba(255,107,44,0.15);
  --border: #222222;
  --border-light: #2a2a2a;
  --success: #22c55e;
  --error: #ef4444;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 2rem;
  border-bottom: 1px solid var(--border);
  background: rgba(10,10,10,0.8);
  backdrop-filter: blur(12px);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 56px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
}

.nav-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  border-radius: 4px;
  padding: 2px 6px;
  line-height: 1.4;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  padding: 120px 2rem 80px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  pointer-events: none;
}

.hero-bg-glow {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,107,44,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: var(--fg);
}

.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.hero-stat {}

.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--fg-muted);
  line-height: 1.4;
}

.hero-stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* ===== HERO VISUAL ===== */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.thumbnail-showcase {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.thumb {
  width: 280px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}

.thumb--bad { opacity: 0.5; filter: grayscale(1); }
.thumb--good { box-shadow: 0 0 0 2px var(--accent), 0 20px 60px rgba(255,107,44,0.2); }

.thumb-label {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
}

.thumb-label--bad { background: var(--bg-card); color: var(--fg-muted); }
.thumb-label--good { background: var(--accent); color: #fff; }

.thumb-placeholder {
  background: #1a1a1a;
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 2rem;
}

.tp-icon { font-size: 2rem; color: var(--fg-subtle); }

.tp-lines { display: flex; flex-direction: column; gap: 6px; width: 80%; }

.tp-line {
  height: 12px;
  background: var(--border-light);
  border-radius: 3px;
}

.tp-line--short { width: 60%; }

.thumb-generated {
  background: linear-gradient(135deg, #1a0a05 0%, #2d1208 100%);
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.tg-face {
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.tg-text {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: 0.05em;
  text-shadow: 0 2px 12px rgba(255,107,44,0.5);
  line-height: 1;
}

.tg-text-sub {
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  color: #fff;
  opacity: 0.9;
  margin-top: 2px;
}

.tg-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, #ff9f6a 100%);
}

.thumb-arrow {
  font-size: 2rem;
  color: var(--fg-muted);
}

/* ===== PROBLEM ===== */
.problem {
  padding: 100px 2rem;
  border-top: 1px solid var(--border);
}

.problem-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.problem-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.problem-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 4rem;
  max-width: 600px;
}

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

.problem-card {
  background: var(--bg-card);
  padding: 2.5rem;
}

.pc-icon {
  width: 40px;
  height: 40px;
  background: rgba(239,68,68,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--error);
  margin-bottom: 1.25rem;
}

.problem-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.problem-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

.problem-callout {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
}

.pc-number {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
}

.pc-text {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  padding-top: 0.5rem;
}

/* ===== HOW IT WORKS ===== */
.how {
  padding: 100px 2rem;
  border-top: 1px solid var(--border);
}

.how-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.how-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.how-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 4rem;
}

.steps {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 4rem;
}

.step {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
}

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1rem;
}

.step-content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.step-content p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

.step-connector {
  width: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-connector::after {
  content: '...';
  font-size: 1.5rem;
  color: var(--fg-subtle);
  letter-spacing: 0.2em;
}

.how-specs {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.spec {
  flex: 1;
  padding: 1.5rem 2rem;
  border-right: 1px solid var(--border);
}

.spec:last-child { border-right: none; }

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

.spec-val {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fg);
}

/* ===== PRICING ===== */
.pricing {
  padding: 100px 2rem;
  border-top: 1px solid var(--border);
}

.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.pricing-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.pricing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.pricing-sub {
  font-size: 1.125rem;
  color: var(--fg-muted);
  margin-bottom: 4rem;
}

.plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  text-align: left;
  margin-bottom: 2rem;
}

.plan {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
}

.plan--featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), inset 0 0 40px rgba(255,107,44,0.05);
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.plan-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--fg);
}

.price-period {
  font-size: 1rem;
  color: var(--fg-muted);
}

.plan-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.plan-features {
  list-style: none;
  margin-bottom: 2rem;
}

.plan-features li {
  font-size: 0.875rem;
  color: var(--fg-muted);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.plan-features li::before {
  content: '—';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

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

.plan-cta {
  padding-top: 1rem;
}

.cta-text {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.5rem 1.5rem;
}

.pricing-note {
  margin-top: 3rem;
}

.pricing-note p {
  font-size: 0.875rem;
  color: var(--fg-muted);
}

/* ===== DIFFERENT ===== */
.different {
  padding: 100px 2rem;
  border-top: 1px solid var(--border);
}

.different-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.different-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.different-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 4rem;
}

.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 4rem;
}

.diff-col {
  padding: 2.5rem;
}

.diff-col:first-child {
  border-right: 1px solid var(--border);
  background: var(--bg-card);
}

.diff-col:last-child {
  background: rgba(255,107,44,0.03);
}

.diff-col-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
}

.diff-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.diff-row--no { color: var(--fg-muted); }
.diff-row--yes { color: var(--fg); }

.diff-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  margin-top: 1px;
}

.diff-row--no .diff-icon {
  background: rgba(239,68,68,0.1);
  color: var(--error);
}

.diff-row--yes .diff-icon {
  background: rgba(34,197,94,0.1);
  color: var(--success);
}

.diff-profiles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.diff-profile {
  display: flex;
  gap: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
}

.dp-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #ff9f6a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: #fff;
  flex-shrink: 0;
}

.dp-body blockquote {
  font-size: 1rem;
  font-style: italic;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.dp-meta {
  font-size: 0.8rem;
  color: var(--fg-subtle);
  font-weight: 500;
}

/* ===== CLOSING ===== */
.closing {
  padding: 100px 2rem;
  border-top: 1px solid var(--border);
}

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

.closing-decoration {
  width: 64px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), #ff9f6a);
  border-radius: 2px;
  margin: 0 auto 2.5rem;
}

.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.closing-sub {
  font-size: 1.125rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
  padding: 60px 2rem;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  margin-bottom: 1rem;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
}

.footer-logo-accent {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  border-radius: 4px;
  padding: 2px 6px;
  margin-left: 0.25rem;
  vertical-align: middle;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
}

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

.footer-legal {
  font-size: 0.75rem;
  color: var(--fg-subtle);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-top: 100px;
    min-height: auto;
  }

  .hero-visual {
    order: -1;
  }

  .thumbnail-showcase {
    flex-direction: column;
    gap: 1rem;
  }

  .thumb {
    width: 100%;
    max-width: 320px;
  }

  .thumb-arrow {
    transform: rotate(90deg);
  }

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

  .steps {
    flex-direction: column;
    gap: 1rem;
  }

  .step-connector { display: none; }

  .how-specs {
    flex-direction: column;
  }

  .spec { border-right: none; border-bottom: 1px solid var(--border); }
  .spec:last-child { border-bottom: none; }

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

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

  .diff-col:first-child { border-right: none; border-bottom: 1px solid var(--border); }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.5rem; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .hero-stat-divider { display: none; }
  .problem-callout { flex-direction: column; }
  .diff-profile { flex-direction: column; }
}