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

:root {
  --bg: #F9F6F0;
  --bg-dark: #111111;
  --fg: #111111;
  --fg-light: #6B6B6B;
  --accent: #E85D3B;
  --accent-dark: #C94A2A;
  --white: #FFFFFF;
  --cream: #F9F6F0;
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

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

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  max-width: 1280px;
  margin: 0 auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-name {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--fg);
}

.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  background: var(--bg-dark);
  color: var(--white);
  padding: 80px 48px 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232,93,59,0.12) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 500;
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1.05;
  margin-bottom: 28px;
  color: var(--white);
}

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

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 32px;
  font-weight: 300;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  font-size: 0.75rem;
  padding: 5px 12px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  color: rgba(255,255,255,0.6);
}

/* HERO VISUAL */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-preview-stack {
  position: relative;
  width: 100%;
}

.video-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.video-card-1 {
  width: 90%;
  transform: rotate(-1deg);
}

.video-card-2 {
  width: 90%;
  margin-top: -16px;
  margin-left: auto;
  transform: rotate(1.5deg);
  border-color: var(--accent);
  border-width: 1px;
}

.vc-screen {
  aspect-ratio: 9/16;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
}

.vc-screen-edited {
  background: linear-gradient(135deg, #1a0a00 0%, #2d1200 100%);
  border: 1px solid var(--accent);
}

.vc-bars {
  display: flex;
  gap: 3px;
  align-items: flex-end;
  height: 40px;
}

.vc-bar {
  width: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
}

.vc-bar-1 { height: 60%; }
.vc-bar-2 { height: 80%; }
.vc-bar-3 { height: 45%; }
.vc-bar-4 { height: 70%; }

.vc-bars-light .vc-bar { background: rgba(232,93,59,0.6); }

.vc-play {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vc-play-red { background: var(--accent); }

.vc-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 50px;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.5);
  padding: 4px 8px;
  border-radius: 4px;
  line-height: 1.3;
}

.vc-label {
  padding: 10px 16px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.vc-label-red { color: var(--accent); }

.transform-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--bg-dark);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  border: 1px solid rgba(232,93,59,0.4);
}

/* SECTION COMMON */
.section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 500;
}

.section-headline {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--fg);
}

/* PROBLEM */
.problem {
  padding: 100px 48px;
  background: var(--cream);
}

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

.problem-stat {
  text-align: center;
}

.stat-number {
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--fg-light);
  line-height: 1.4;
}

.problem-divider {
  background: rgba(17,17,17,0.1);
  height: 80px;
}

.problem-headline {
  font-family: var(--serif);
  font-size: 2.2rem;
  line-height: 1.2;
  margin-bottom: 24px;
}

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

.problem-body {
  color: var(--fg-light);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* SERVICES */
.services {
  padding: 100px 48px;
  background: var(--white);
}

.services-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.service-card {
  padding: 32px;
  border: 1px solid rgba(17,17,17,0.08);
  border-radius: 16px;
  transition: border-color 0.2s, transform 0.2s;
}

.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.service-icon {
  color: var(--accent);
  margin-bottom: 20px;
}

.service-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--fg-light);
  line-height: 1.6;
}

/* PRICING */
.pricing {
  padding: 100px 48px;
  background: var(--bg-dark);
  color: var(--white);
}

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

.pricing-sub {
  color: rgba(255,255,255,0.5);
  margin-bottom: 60px;
  font-size: 0.95rem;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
  margin-bottom: 32px;
}

.price-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
}

.price-card-featured {
  border-color: var(--accent);
  background: rgba(232,93,59,0.06);
}

.price-tier {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}

.price-tier-featured {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.price-amount {
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 8px;
}

.price-per {
  font-size: 1rem;
  color: rgba(255,255,255,0.4);
  font-family: var(--sans);
}

.price-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
  line-height: 1.5;
}

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

.price-features li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  padding-left: 20px;
  position: relative;
}

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

.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pricing-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* HOW IT WORKS */
.how {
  padding: 100px 48px;
  background: var(--cream);
}

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

.steps {
  display: flex;
  align-items: center;
  margin-top: 60px;
  margin-bottom: 60px;
  gap: 0;
}

.step {
  flex: 1;
  padding: 32px;
}

.step-num {
  font-family: var(--serif);
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 16px;
  line-height: 1;
}

.step-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--fg-light);
  line-height: 1.5;
}

.step-connector {
  width: 40px;
  height: 1px;
  background: rgba(17,17,17,0.15);
  flex-shrink: 0;
}

.how-quote {
  border-left: 3px solid var(--accent);
  padding-left: 28px;
  max-width: 500px;
  margin: 0 auto 0 0;
}

.how-quote blockquote {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 12px;
}

.how-quote cite {
  font-size: 0.8rem;
  color: var(--fg-light);
}

/* CLOSING */
.closing {
  padding: 100px 48px;
  background: var(--bg-dark);
  color: var(--white);
}

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

.closing-headline {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 24px;
}

.closing-body {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 440px;
}

.closing-visual {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.closing-badge {
  background: rgba(232,93,59,0.1);
  border: 1px solid rgba(232,93,59,0.3);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
}

.badge-number {
  font-family: var(--serif);
  font-size: 3.5rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.badge-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}

.closing-stat {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

/* FOOTER */
.footer {
  background: #0a0a0a;
  padding: 48px;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.3);
  margin-bottom: 24px;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 60px 24px 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .problem { padding: 60px 24px; }
  .problem-inner { grid-template-columns: 1fr; gap: 32px; }
  .problem-divider { display: none; }
  .services { padding: 60px 24px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .pricing { padding: 60px 24px; }
  .pricing-cards { grid-template-columns: 1fr; }
  .how { padding: 60px 24px; }
  .steps { flex-direction: column; gap: 24px; }
  .step-connector { width: 40px; height: 1px; }
  .closing { padding: 60px 24px; }
  .closing-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .section-headline { font-size: 1.8rem; }
  .hero-headline { font-size: 2.5rem; }
  .closing-headline { font-size: 1.8rem; }
}