:root {
  --navy: #0B1628;
  --amber: #F5A623;
  --cream: #FDF6EC;
  --warm-gray: #8A7E72;
  --sand: #F0E8D8;
  --deep: #0B1628;
  --text: #1A1A1A;
  --text-light: #6B6560;
  --white: #FFFFFF;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Navbar ── */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  position: relative;
  z-index: 10;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.5px;
}

.nav-tagline {
  font-size: 12px;
  color: var(--warm-gray);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ── Hero ── */
.hero {
  min-height: calc(100vh - 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 0 48px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
}

.hero-blob-1 {
  width: 600px;
  height: 600px;
  background: var(--amber);
  top: -200px;
  left: -200px;
}

.hero-blob-2 {
  width: 400px;
  height: 400px;
  background: #D4895A;
  bottom: -100px;
  right: 20%;
}

.hero-blob-3 {
  width: 300px;
  height: 300px;
  background: var(--navy);
  top: 40%;
  right: -100px;
  opacity: 0.06;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--sand) 1px, transparent 1px),
    linear-gradient(90deg, var(--sand) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 420px;
}

.hero-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.hero-pill {
  background: var(--navy);
  color: var(--cream);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}

.hero-footnote {
  font-size: 13px;
  color: var(--warm-gray);
  font-style: italic;
}

/* ── Hero Visual ── */
.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.phone-mockup {
  background: var(--navy);
  border-radius: 40px;
  padding: 16px;
  box-shadow: 0 40px 80px rgba(11,22,40,0.2), 0 0 0 1px rgba(11,22,40,0.05);
  max-width: 280px;
  width: 100%;
}

.phone-screen {
  background: #111827;
  border-radius: 28px;
  padding: 20px 16px 16px;
}

.mock-label {
  font-size: 9px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.mock-video-placeholder {
  background: linear-gradient(135deg, #1a2a4a, #2d1f3d, #1a2a4a);
  border-radius: 16px;
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
}

.mock-video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 8px,
    rgba(255,255,255,0.02) 8px,
    rgba(255,255,255,0.02) 9px
  );
}

.play-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: white;
  backdrop-filter: blur(4px);
  position: relative;
}

.mock-views {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  position: relative;
}

.mock-caption {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  margin-bottom: 10px;
}

.mock-stats {
  display: flex;
  gap: 14px;
  font-size: 10px;
  color: rgba(255,255,255,0.4);
}

.platform-row {
  display: flex;
  gap: 20px;
  font-size: 12px;
  color: var(--warm-gray);
  letter-spacing: 1px;
  font-weight: 500;
  text-transform: uppercase;
}

/* ── Proof ── */
.proof {
  padding: 100px 48px;
  background: var(--navy);
  color: var(--cream);
}

.proof-header {
  max-width: 640px;
  margin-bottom: 64px;
}

.section-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 16px;
}

.proof-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.2;
  font-style: italic;
  color: var(--cream);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.proof-card {
  padding: 40px 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}

.proof-stat {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 16px;
}

.proof-desc {
  font-size: 14px;
  color: rgba(253,246,236,0.6);
  line-height: 1.6;
}

/* ── Services ── */
.services {
  padding: 100px 48px;
  background: var(--cream);
}

.services-header {
  max-width: 540px;
  margin-bottom: 64px;
}

.services-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.5px;
}

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

.service-card {
  background: var(--white);
  padding: 36px 32px;
  border: 1px solid rgba(11,22,40,0.06);
  transition: transform 0.2s ease;
}

.service-card:hover {
  transform: translateY(-2px);
}

.service-icon {
  font-size: 28px;
  color: var(--amber);
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ── Pricing ── */
.pricing {
  padding: 100px 48px;
  background: var(--sand);
}

.pricing-header {
  max-width: 500px;
  margin-bottom: 64px;
}

.pricing-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.pricing-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 900px;
  background: var(--white);
  border: 1px solid rgba(11,22,40,0.08);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(11,22,40,0.08);
}

.pricing-tier {
  padding: 48px;
  background: var(--navy);
  color: var(--cream);
}

.tier-name {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 16px;
}

.tier-price {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 32px;
}

.tier-price span {
  font-size: 18px;
  font-weight: 400;
  color: rgba(253,246,236,0.5);
}

.tier-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin-bottom: 32px;
}

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

.tier-features li {
  font-size: 15px;
  color: rgba(253,246,236,0.8);
  line-height: 1.4;
}

.pricing-note {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.pricing-note p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}

.pricing-footnote {
  font-size: 13px;
  color: var(--amber);
  font-weight: 500;
}

/* ── Process ── */
.process {
  padding: 100px 48px;
  background: var(--cream);
}

.process-header {
  max-width: 500px;
  margin-bottom: 64px;
}

.process-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.step {
  padding: 32px 28px;
  border-right: 1px solid rgba(11,22,40,0.08);
}

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

.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--amber);
  opacity: 0.3;
  margin-bottom: 16px;
  line-height: 1;
}

.step-body h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.step-body p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.65;
}

/* ── Closing ── */
.closing {
  padding: 100px 48px;
  background: var(--navy);
}

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

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 32px;
}

.closing-body {
  font-size: 16px;
  color: rgba(253,246,236,0.65);
  line-height: 1.8;
  margin-bottom: 24px;
}

.closing-tagline {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  color: var(--amber);
  margin-top: 48px;
  letter-spacing: 1px;
}

/* ── Footer ── */
footer {
  padding: 48px;
  text-align: center;
  background: #070F1A;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 8px;
}

.footer-location {
  font-size: 12px;
  color: rgba(253,246,236,0.4);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(253,246,236,0.25);
  font-style: italic;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 40px 24px 60px; }
  .hero-visual { display: none; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .pricing-card { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .proof, .services, .pricing, .process, .closing { padding: 64px 24px; }
  .navbar { padding: 20px 24px; }
}

@media (max-width: 600px) {
  .hero-headline { font-size: 42px; }
  .proof-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid rgba(11,22,40,0.08); }
}