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

:root {
  --bg: #0a0a0a;
  --bg-2: #111111;
  --bg-3: #1a1a1a;
  --fg: #f0ede8;
  --fg-2: #c8c3bc;
  --fg-3: #8a857e;
  --accent: #e8a030;
  --accent-2: #c07818;
  --border: #222222;
  --card: #141414;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.nav-inner {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}

.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: var(--fg);
  letter-spacing: -0.01em;
}

.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-3);
  font-weight: 400;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 8rem 2.5rem 5rem;
  max-width: 1100px;
  margin: 0 auto;
  gap: 3rem;
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(3.5rem, 9vw, 7rem);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--fg);
  max-width: 600px;
}

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

.hero-sub {
  font-size: 1.2rem;
  color: var(--fg-2);
  max-width: 420px;
  line-height: 1.5;
  margin-top: 1.5rem;
}

.hero-devices {
  padding-top: 3rem;
}

.device-bench {
  display: flex;
  justify-content: center;
}

.phone-mockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.phone-frame {
  width: 240px;
  height: 500px;
  background: var(--bg-3);
  border-radius: 36px;
  border: 2px solid #2a2a2a;
  padding: 12px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 40px 80px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--bg);
  border-radius: 26px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.video-card {
  flex: 1;
  background: linear-gradient(160deg, #1a1210 0%, #0f1a12 50%, #0a1020 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-thumb {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.7) 100%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,0.02) 40px,
      rgba(255,255,255,0.02) 41px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 60px,
      rgba(255,255,255,0.015) 60px,
      rgba(255,255,255,0.015) 61px
    );
}

/* House silhouette overlay */
.video-thumb::before {
  content: '';
  position: absolute;
  bottom: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 60px;
  background: rgba(232,160,48,0.15);
  clip-path: polygon(20% 100%, 0% 60%, 30% 60%, 30% 0%, 70% 0%, 70% 60%, 100% 60%, 80% 100%);
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(4px);
  position: relative;
}

.play-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 9px 0 9px 15px;
  border-color: transparent transparent transparent rgba(255,255,255,0.9);
}

.video-meta {
  padding: 0.75rem 1rem;
  background: var(--bg-2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.vid-tag {
  font-size: 0.7rem;
  color: var(--fg-2);
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
}

.vid-actions {
  display: flex;
  gap: 0.75rem;
}

.heart::before { content: '♡'; color: var(--fg-3); font-size: 0.9rem; }
.comment::before { content: '💬'; font-size: 0.7rem; }

.phone-label {
  font-size: 0.72rem;
  color: var(--fg-3);
  letter-spacing: 0.05em;
}

/* === PROBLEM === */
.problem {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 2.5rem;
}

.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
}

.problem-divider {
  width: 1px;
  height: 120px;
  background: var(--border);
  margin: 0 2rem;
}

.problem-stat {
  text-align: center;
  padding: 0 1.5rem;
}

.stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: 3.5rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--fg-3);
  line-height: 1.5;
  max-width: 180px;
  margin: 0 auto;
}

/* === PROOF / FORMATS === */
.proof {
  padding: 7rem 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.proof-header {
  margin-bottom: 3.5rem;
}

.proof-overline {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.proof-heading {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--fg);
  letter-spacing: -0.02em;
  max-width: 480px;
  line-height: 1.15;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
}

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

.format-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 1.5rem;
  background: var(--accent);
  opacity: 0.8;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.format-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: var(--fg);
  margin-bottom: 0.75rem;
  font-weight: 400;
}

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

/* === HOW === */
.how {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 7rem 2.5rem;
}

.how-header {
  max-width: 1100px;
  margin: 0 auto 4rem;
}

.how-overline {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.how-heading {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--fg);
  letter-spacing: -0.02em;
  max-width: 480px;
}

.steps {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

.step {}

.step-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem;
  color: var(--accent);
  opacity: 0.5;
  margin-bottom: 1rem;
  line-height: 1;
}

.step-body h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.5rem;
}

.step-body p {
  font-size: 0.875rem;
  color: var(--fg-3);
  line-height: 1.6;
}

/* === PRICING === */
.pricing {
  padding: 7rem 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-header {
  margin-bottom: 3.5rem;
}

.pricing-overline {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.pricing-heading {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--fg);
  letter-spacing: -0.02em;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.price-card {
  background: var(--card);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}

.price-card-featured {
  background: #181410;
  border: 1px solid var(--accent);
}

.price-tier {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 1rem;
}

.price-card-featured .price-tier {
  color: var(--accent);
}

.price-amount {
  font-family: 'DM Serif Display', serif;
  font-size: 3rem;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 1.25rem;
}

.per-mo {
  font-size: 1rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--fg-3);
  font-weight: 400;
}

.price-desc {
  font-size: 0.875rem;
  color: var(--fg-3);
  line-height: 1.6;
  margin-bottom: 2rem;
  flex: 1;
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.price-features li {
  font-size: 0.875rem;
  color: var(--fg-2);
  padding-left: 1.25rem;
  position: relative;
}

.price-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.price-card-featured .price-features li::before {
  background: var(--accent);
}

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

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

.closing-statement {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--fg-2);
  line-height: 1.5;
  margin-bottom: 3rem;
}

.closing-cta-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.cta-icon {
  width: 24px;
  height: 24px;
  background: var(--accent);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  flex-shrink: 0;
}

.closing-cta-line p {
  font-size: 1rem;
  color: var(--fg);
  font-weight: 500;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1rem;
  color: var(--fg);
}

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

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

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .problem-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .problem-divider {
    display: none;
  }
  .proof-grid {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .footer {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .footer-brand {
    align-items: center;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 7rem 1.5rem 3rem;
  }
  .problem, .proof, .how, .pricing, .closing {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .nav {
    padding: 1rem 1.5rem;
  }
  .phone-frame {
    width: 180px;
    height: 380px;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .stat-number {
    font-size: 2.5rem;
  }
}