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

:root {
  --navy: #0D1B2A;
  --orange: #FF4D2E;
  --cream: #FAFAF7;
  --muted: #F0EDE6;
  --gray-600: #4A5568;
  --gray-400: #718096;
  --gray-200: #CBD5E0;
  --font-display: 'Archivo', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
}

::selection { background: var(--orange); color: white; }

/* ===================== NAV ===================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(13, 27, 42, 0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.nav-cta {
  margin-left: auto;
  background: var(--orange);
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}

.nav-cta:hover { opacity: 0.85; }

/* ===================== HERO ===================== */
.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 80px 48px 60px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--muted);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-600);
  letter-spacing: 0.02em;
  margin-bottom: 28px;
  text-transform: uppercase;
}

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

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 18px;
  color: var(--gray-600);
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-cta {
  margin-bottom: 32px;
}

.tier-line {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}

.tier-label {
  font-size: 14px;
  color: var(--gray-400);
  font-weight: 500;
}

.tier-price {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.03em;
}

.tier-mo {
  font-size: 20px;
  font-weight: 600;
  color: var(--gray-400);
}

.hero-logos {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logos-label {
  font-size: 12px;
  color: var(--gray-400);
  font-weight: 500;
}

.platform-icons {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.platform-badge {
  background: var(--navy);
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.03em;
}

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

.phone-frame {
  width: 220px;
  background: var(--navy);
  border-radius: 36px;
  padding: 12px 12px 20px;
  box-shadow: 0 40px 80px rgba(13, 27, 42, 0.25), 0 0 0 1px rgba(255,255,255,0.1) inset;
  position: relative;
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 22px;
  background: var(--navy);
  border-radius: 0 0 16px 16px;
  z-index: 2;
}

.phone-screen {
  background: #1a2d42;
  border-radius: 26px;
  overflow: hidden;
  aspect-ratio: 9/16;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 6px;
  padding: 16px;
  width: 100%;
  height: 100%;
}

.video-card {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.video-card-1 { background: linear-gradient(135deg, #FF4D2E 0%, #ff7a5c 100%); }
.video-card-2 { background: linear-gradient(135deg, #2D9CDB 0%, #5bb8f5 100%); }
.video-card-3 { background: linear-gradient(135deg, #27AE60 0%, #52d68a 100%); }
.video-card-4 { background: linear-gradient(135deg, #8B5CF6 0%, #b99bff 100%); }

.video-card-inner {
  height: 100%;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.play-icon {
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.video-stats {
  display: flex;
  align-items: baseline;
  gap: 3px;
  font-family: var(--font-display);
}

.views {
  color: white;
  font-size: 14px;
  font-weight: 700;
}

.plays {
  color: rgba(255,255,255,0.7);
  font-size: 10px;
}

.video-caption-bar {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 4px;
}

.cap-line {
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.4);
}

.cap-1 { width: 85%; }
.cap-2 { width: 60%; }
.cap-3 { width: 70%; }
.cap-4 { width: 90%; }
.cap-5 { width: 55%; }
.cap-6 { width: 75%; }

.hero-stat-float {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 10px 16px;
  box-shadow: 0 8px 30px rgba(13, 27, 42, 0.12);
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: var(--font-display);
  border: 1px solid rgba(13, 27, 42, 0.06);
}

.stat-1 {
  right: -20px;
  top: 30%;
}

.stat-2 {
  bottom: 30%;
  left: -20px;
}

.stat-num {
  font-size: 18px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.stat-desc {
  font-size: 10px;
  color: var(--gray-400);
  font-family: var(--font-body);
  max-width: 90px;
  line-height: 1.3;
}

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

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

.problem-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}

.problem-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900;
  color: white;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 700px;
}

.problem-body {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 60px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.problem-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px;
  transition: background 0.3s ease;
}

.problem-card:hover {
  background: rgba(255,255,255,0.09);
}

.pc-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 77, 46, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.problem-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.problem-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

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

.how-header {
  text-align: center;
  margin-bottom: 72px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  display: block;
}

.how-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.how-sub {
  font-size: 18px;
  color: var(--gray-400);
  line-height: 1.6;
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: var(--orange);
  opacity: 0.3;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 16px;
}

.step-connector {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), transparent);
  opacity: 0.25;
  margin-bottom: 24px;
}

.step-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.step-desc {
  font-size: 15px;
  color: var(--gray-400);
  line-height: 1.65;
}

.tools-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 20px 32px;
  background: var(--muted);
  border-radius: 100px;
  max-width: fit-content;
  margin: 0 auto;
}

.tools-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tools-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tool-tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  background: white;
  border: 1px solid var(--gray-200);
  padding: 4px 10px;
  border-radius: 6px;
}

/* ===================== PRICING ===================== */
.pricing {
  background: var(--muted);
  padding: 100px 48px;
}

.pricing-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.pricing-sub {
  font-size: 16px;
  color: var(--gray-400);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.price-card {
  background: white;
  border-radius: 20px;
  padding: 36px;
  border: 1.5px solid var(--gray-200);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(13, 27, 42, 0.08);
}

.price-card-featured {
  background: var(--navy);
  border-color: var(--navy);
}

.price-card-featured:hover {
  box-shadow: 0 20px 60px rgba(13, 27, 42, 0.3);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.plan-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.price-card-featured .plan-name {
  color: rgba(255,255,255,0.5);
}

.plan-price {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}

.price-card-featured .plan-price {
  color: white;
}

.pm {
  font-size: 20px;
  font-weight: 600;
  color: var(--gray-400);
}

.price-card-featured .pm {
  color: rgba(255,255,255,0.4);
}

.plan-target {
  font-size: 14px;
  color: var(--gray-400);
  margin-bottom: 28px;
  line-height: 1.4;
}

.price-card-featured .plan-target {
  color: rgba(255,255,255,0.5);
}

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

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--navy);
  font-weight: 500;
}

.price-card-featured .plan-features li {
  color: white;
}

/* ===================== OUTCOMES ===================== */
.outcomes {
  position: relative;
  padding: 100px 48px;
  overflow: hidden;
}

.outcomes-bg-art {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.bg-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
}

.bg-c1 {
  width: 600px;
  height: 600px;
  background: var(--orange);
  top: -200px;
  right: -100px;
}

.bg-c2 {
  width: 400px;
  height: 400px;
  background: var(--navy);
  bottom: -150px;
  left: -50px;
}

.outcomes-content {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.outcomes-headline {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 60px;
  max-width: 600px;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.outcome-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  border: 1.5px solid rgba(13, 27, 42, 0.06);
  box-shadow: 0 4px 20px rgba(13, 27, 42, 0.04);
}

.oc-stat {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}

.oc-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.4;
}

.oc-source {
  font-size: 13px;
  color: var(--gray-400);
}

.outcomes-quote {
  background: var(--navy);
  border-radius: 20px;
  padding: 40px;
  position: relative;
}

.outcomes-quote::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 40px;
  right: auto;
  width: 60px;
  height: 3px;
  background: var(--orange);
  border-radius: 0 0 4px 4px;
}

.outcomes-quote p {
  font-size: 20px;
  color: white;
  line-height: 1.65;
  font-style: italic;
  max-width: 700px;
}

.quote-attribution {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-top: 16px;
}

/* ===================== CLOSING ===================== */
.closing {
  background: var(--navy);
  padding: 120px 48px;
}

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

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 900;
  color: white;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.closing-promise {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 320px;
  margin: 0 auto;
}

.closing-cta {
  display: inline-block;
  margin-top: 48px;
  background: var(--orange);
  color: white;
  padding: 16px 36px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s;
  letter-spacing: -0.01em;
}

.closing-cta:hover { opacity: 0.85; }

.promise-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

/* ===================== FOOTER ===================== */
.footer {
  background: #080f18;
  padding: 48px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: white;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.3);
  margin-left: auto;
}

.footer-built {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  white-space: nowrap;
}

.footer-built a {
  color: var(--orange);
  text-decoration: none;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 60px 24px;
    text-align: center;
  }

  .hero-headline { font-size: 38px; }
  .hero-sub { max-width: 100%; }
  .hero-logos { justify-content: center; }
  .hero-visual { display: none; }

  .problem-grid,
  .steps-row,
  .pricing-grid,
  .outcomes-grid {
    grid-template-columns: 1fr;
  }

  .nav { padding: 16px 24px; }
  .problem, .how, .pricing, .outcomes, .closing, .footer {
    padding: 60px 24px;
  }

  .footer-inner { flex-wrap: wrap; }
  .footer-tagline { margin-left: 0; }
}

@media (max-width: 600px) {
  .hero-headline { font-size: 32px; }
  .tier-price { font-size: 36px; }
  .problem-headline, .how-headline, .pricing-headline { font-size: 26px; }
  .closing-headline { font-size: 28px; }
  .outcomes-quote p { font-size: 16px; }
}