/* ===== The Never Miss System — Premium Dark Landing Page ===== */
/* Applied Intelligence | $200K quality standard */

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

/* ===== DESIGN TOKENS ===== */
:root {
  /* Backgrounds — true dark, not grey */
  --bg:              #06060A;
  --surface:         #0E0E14;
  --surface-raised:  #16161F;
  --surface-overlay: #1C1C28;

  /* Primary — warm orange for CTAs */
  --primary:         #FF7A45;
  --primary-hover:   #FF8D5E;
  --primary-glow:    rgba(255, 122, 69, 0.15);
  --primary-subtle:  rgba(255, 122, 69, 0.08);
  --primary-border:  rgba(255, 122, 69, 0.25);

  /* Accent — cyan for highlights */
  --accent:          #00B4D8;
  --accent-glow:     rgba(0, 180, 216, 0.1);

  /* Semantic */
  --success:         #22C55E;
  --success-light:   rgba(34, 197, 94, 0.1);

  /* Text */
  --text:            #F0F0F5;
  --text-secondary:  #8A8AA3;
  --text-muted:      #5A5A72;

  /* Borders */
  --border:          rgba(255, 255, 255, 0.06);
  --border-hover:    rgba(255, 255, 255, 0.12);

  /* Glass */
  --glass-bg:        rgba(255, 255, 255, 0.03);
  --glass-border:    rgba(255, 255, 255, 0.06);
  --glass-blur:      20px;

  /* Shadows */
  --shadow-sm:       0 1px 3px rgba(0,0,0,0.5);
  --shadow-md:       0 4px 16px rgba(0,0,0,0.5);
  --shadow-lg:       0 8px 32px rgba(0,0,0,0.6);
  --shadow-glow:     0 0 40px rgba(255,122,69,0.12), 0 0 80px rgba(255,122,69,0.04);

  /* Typography */
  --font-display:    'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body:       'DM Sans', system-ui, -apple-system, sans-serif;

  /* Spacing — 8px rhythm */
  --space-1: 8px;   --space-2: 16px;  --space-3: 24px;
  --space-4: 32px;  --space-5: 40px;  --space-6: 48px;
  --space-8: 64px;  --space-10: 80px; --space-12: 96px;
  --space-16: 128px;

  /* Radius */
  --radius:    12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 999px;

  /* Animation */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --duration:    0.6s;
}

/* ===== BASE ===== */
html {
  font-size: 16px;
  scroll-behavior: auto; /* Lenis handles this */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
strong { font-weight: 600; }
em { font-style: italic; }

/* ===== UTILITIES ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
}

.skip-to-content {
  position: absolute;
  left: -9999px;
  top: var(--space-2);
  padding: var(--space-1) var(--space-2);
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  z-index: 1000;
  font-size: 0.875rem;
}
.skip-to-content:focus {
  left: var(--space-2);
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ===== SCROLL ANIMATIONS ===== */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration) var(--ease-out), transform var(--duration) var(--ease-out);
}
[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}

[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }
[data-delay="6"] { transition-delay: 0.6s; }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-2) 0;
  background: rgba(6, 6, 10, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(6, 6, 10, 0.95);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
  position: relative;
}
.nav-link:hover,
.nav-link.active {
  color: var(--text);
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
}

.nav-cta {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  padding: var(--space-1) var(--space-2);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius-full);
  transition: background 0.2s, color 0.2s;
}
.nav-cta:hover {
  background: var(--primary);
  color: #fff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-1);
}
.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.active .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle.active .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all 0.25s var(--ease-smooth);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow);
}

.btn-glow {
  box-shadow: 0 0 20px rgba(255,122,69,0.2), 0 0 60px rgba(255,122,69,0.08);
  animation: glowPulse 3s ease-in-out infinite;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-hover);
}
.btn-outline:hover {
  border-color: var(--text-secondary);
  background: rgba(255,255,255,0.03);
}

.btn-white {
  background: #fff;
  color: var(--bg);
  font-weight: 700;
}
.btn-white:hover {
  background: #f0f0f0;
  transform: translateY(-1px);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.125rem;
}

.btn-icon { flex-shrink: 0; }

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(255,122,69,0.2), 0 0 60px rgba(255,122,69,0.08); }
  50% { box-shadow: 0 0 30px rgba(255,122,69,0.3), 0 0 80px rgba(255,122,69,0.12); }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0;
  animation: heroGlowIn 1.5s var(--ease-out) forwards;
  pointer-events: none;
}
.hero-glow--orange {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,122,69,0.2) 0%, transparent 70%);
  top: 10%; right: -10%;
  animation-delay: 0.2s;
}
.hero-glow--cyan {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,180,216,0.12) 0%, transparent 70%);
  bottom: 20%; left: -5%;
  animation-delay: 0.5s;
}
.hero-glow--purple {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(120,80,200,0.08) 0%, transparent 70%);
  top: 40%; left: 30%;
  animation-delay: 0.8s;
}

@keyframes heroGlowIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

/* Slow drift for ambient feel */
.hero-glow--orange { animation: heroGlowIn 1.5s var(--ease-out) 0.2s forwards, floatOrb1 25s ease-in-out infinite 2s; }
.hero-glow--cyan { animation: heroGlowIn 1.5s var(--ease-out) 0.5s forwards, floatOrb2 30s ease-in-out infinite 2.5s; }
.hero-glow--purple { animation: heroGlowIn 1.5s var(--ease-out) 0.8s forwards, floatOrb3 20s ease-in-out infinite 3s; }

@keyframes floatOrb1 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(-30px, 20px); }
  66% { transform: translate(20px, -15px); }
}
@keyframes floatOrb2 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(25px, -20px); }
  66% { transform: translate(-15px, 25px); }
}
@keyframes floatOrb3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, 15px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: var(--space-3);
}
.hero-line {
  display: block;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  opacity: 0;
  transform: translateY(20px);
  animation: heroTextIn 0.8s var(--ease-out) forwards;
}
.hero-line:nth-child(1) { animation-delay: 0.3s; }
.hero-line--highlight {
  color: var(--primary);
  animation-delay: 0.5s;
}

@keyframes heroTextIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--text-secondary);
  margin-bottom: var(--space-5);
  opacity: 0;
  animation: heroTextIn 0.8s var(--ease-out) 0.7s forwards;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: center;
  margin-bottom: var(--space-4);
  opacity: 0;
  animation: heroTextIn 0.8s var(--ease-out) 0.9s forwards;
}

.hero-guarantee {
  font-size: 0.9375rem;
  color: var(--text-muted);
  font-style: italic;
  opacity: 0;
  animation: heroTextIn 0.8s var(--ease-out) 1.1s forwards;
}

.hero-trust {
  position: absolute;
  bottom: 80px;
  left: 0;
  right: 0;
  z-index: 2;
  opacity: 0;
  animation: heroTextIn 0.8s var(--ease-out) 1.3s forwards;
}

.trust-strip {
  display: flex;
  justify-content: center;
  gap: var(--space-5);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
}
.trust-icon { stroke: var(--text-muted); }

.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0;
  animation: heroTextIn 0.8s var(--ease-out) 1.6s forwards, scrollBounce 2s ease-in-out infinite 2.5s;
}
.scroll-indicator-line {
  width: 1px;
  height: 24px;
  background: linear-gradient(to bottom, transparent, var(--text-muted));
}
.scroll-indicator svg { stroke: var(--text-muted); }

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== SECTIONS ===== */
.section {
  position: relative;
  padding: clamp(80px, 10vw, 120px) 0;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--space-2);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: var(--space-3);
  max-width: 700px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: var(--space-8);
}

/* ===== PROBLEM SECTION ===== */
.section--problem {
  background: var(--surface);
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.glow-orb--orange {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,122,69,0.1) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}

.stat-card {
  padding: var(--space-4) var(--space-3);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, var(--primary-border), transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: var(--space-1);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.problem-narrative {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.8;
}

/* ===== WALKTHROUGH SECTION ===== */
.section--walkthrough {
  padding-bottom: 0;
}

.walkthrough-pinned {
  display: block;
  position: relative;
}

.walkthrough-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: start;
  min-height: 100vh;
  padding: var(--space-8) 0;
}

.walkthrough-steps {
  position: relative;
  padding-left: var(--space-5);
}

.walkthrough-progress {
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
  border-radius: 1px;
}
.walkthrough-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: var(--primary);
  border-radius: 1px;
  transition: height 0.3s var(--ease-smooth);
}

.walkthrough-step {
  position: relative;
  padding: var(--space-4) 0;
  opacity: 0.3;
  transition: opacity 0.4s var(--ease-smooth);
}
.walkthrough-step.active {
  opacity: 1;
}

.walkthrough-step-dot {
  position: absolute;
  left: calc(-1 * var(--space-5) + 2px);
  top: calc(var(--space-4) + 4px);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--border);
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.walkthrough-step.active .walkthrough-step-dot {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 12px var(--primary-glow);
}

.walkthrough-step h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: var(--space-1);
}

.walkthrough-step p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

/* Device frame */
.device-frame {
  position: sticky;
  top: 120px;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.04);
}

.device-notch {
  width: 120px;
  height: 28px;
  margin: 8px auto 0;
  background: var(--bg);
  border-radius: 0 0 16px 16px;
}

.device-screen {
  position: relative;
  height: calc(100% - 36px);
  padding: var(--space-3);
  overflow: hidden;
}

.screen-state {
  position: absolute;
  inset: 0;
  padding: var(--space-3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
  pointer-events: none;
}
.screen-state--active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Screen 0: Incoming call */
.screen-incoming {
  text-align: center;
  width: 100%;
}
.screen-incoming-ring {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--success);
  margin: 0 auto var(--space-2);
  animation: ringPulse 2s ease-in-out infinite;
  position: relative;
}
.screen-incoming-ring::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(34,197,94,0.3);
  animation: ringPulse 2s ease-in-out infinite 0.3s;
}
@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.7; }
}

.screen-incoming-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  margin: 0 auto var(--space-2);
  color: #fff;
}
.screen-incoming-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 4px;
}
.screen-incoming-label {
  color: var(--text-secondary);
  font-size: 0.8125rem;
  margin-bottom: var(--space-3);
}
.screen-incoming-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--success);
  font-weight: 500;
}
.screen-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Screen 1: Lead card */
.screen-lead {
  width: 100%;
}
.screen-lead-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-3);
}
.screen-lead-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}
.screen-lead-badge--hot {
  background: rgba(255,122,69,0.15);
  color: var(--primary);
}
.screen-lead-time {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.screen-lead-field {
  padding: var(--space-1) 0;
  border-bottom: 1px solid var(--border);
}
.screen-lead-field:last-child { border-bottom: none; }
.screen-lead-label {
  display: block;
  font-size: 0.6875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}
.screen-lead-value {
  font-size: 0.875rem;
  color: var(--text);
  font-weight: 500;
}
.screen-lead-value--urgent {
  color: var(--primary);
}

/* Screen 2: SMS notification */
.screen-sms { width: 100%; }
.screen-sms-header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: var(--space-2);
}
.screen-sms-header svg { stroke: var(--accent); }
.screen-sms-bubble {
  background: var(--surface-raised);
  border-radius: var(--radius) var(--radius) var(--radius) 4px;
  padding: var(--space-2);
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--text);
  position: relative;
}
.screen-sms-bubble--outbound {
  background: rgba(255,122,69,0.08);
  border-radius: var(--radius) var(--radius) 4px var(--radius);
}
.screen-sms-time {
  display: block;
  font-size: 0.6875rem;
  color: var(--text-muted);
  margin-top: var(--space-1);
}

/* Screen 3: Follow-up */
.screen-followup { width: 100%; }
.screen-followup-header {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--success);
  margin-bottom: var(--space-2);
}
.screen-followup-link {
  color: var(--accent);
  text-decoration: underline;
}
.screen-followup-check {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--success);
  margin-top: var(--space-2);
}

/* Screen 4: Pipeline */
.screen-pipeline { width: 100%; }
.screen-pipeline-header {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: var(--space-2);
}
.screen-pipeline-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.screen-pipeline-col {
  background: var(--surface-raised);
  border-radius: var(--radius);
  padding: 8px;
  min-height: 100px;
}
.screen-pipeline-col--active {
  border: 1px solid var(--primary-border);
}
.screen-pipeline-col-title {
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.screen-pipeline-card {
  background: var(--surface);
  border-radius: 8px;
  padding: 8px;
  font-size: 0.6875rem;
}
.screen-pipeline-card strong {
  display: block;
  font-size: 0.75rem;
  margin-bottom: 2px;
}
.screen-pipeline-card span { color: var(--text-secondary); }
.screen-pipeline-card--muted { opacity: 0.5; }
.screen-pipeline-tag {
  display: inline-block;
  font-size: 0.5625rem;
  font-weight: 700;
  background: var(--primary-subtle);
  color: var(--primary);
  padding: 1px 6px;
  border-radius: var(--radius-full);
  margin-top: 4px;
}

/* Mobile walkthrough */
.walkthrough-mobile { display: none; }

.walkthrough-mobile-card {
  padding: var(--space-3);
  margin-bottom: var(--space-2);
  display: flex;
  gap: var(--space-2);
  align-items: flex-start;
}
.walkthrough-mobile-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.walkthrough-mobile-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
}
.walkthrough-mobile-card p {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

/* ===== OFFER STACK ===== */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}

.offer-card {
  padding: var(--space-4);
  transition: transform 0.3s var(--ease-smooth), box-shadow 0.3s;
  position: relative;
}
.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.offer-card--hero {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(255,122,69,0.06), var(--glass-bg));
  border-color: var(--primary-border);
}

.offer-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-2);
}
.offer-card-icon svg { stroke: var(--accent); }
.offer-card-icon--primary {
  background: var(--primary-subtle);
}
.offer-card-icon--primary svg { stroke: var(--primary); }

.offer-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: var(--space-1);
}

.offer-card p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin-bottom: var(--space-2);
}

.offer-card-fear {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ===== CTA STRIP ===== */
.cta-strip {
  padding: var(--space-8) 0;
  background: linear-gradient(135deg, var(--primary), #E85D2A);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.08), transparent 60%);
  pointer-events: none;
}

.cta-strip-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: #fff;
  margin-bottom: var(--space-4);
}

.cta-strip .btn-white {
  position: relative;
  z-index: 2;
}

/* ===== COMPARISON TABLE ===== */
.section--comparison {
  background: var(--surface);
}

.comparison-table-wrap {
  overflow-x: auto;
  margin-bottom: var(--space-5);
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.comparison-table th {
  padding: var(--space-2) var(--space-3);
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.comparison-table th.comparison-highlight {
  color: var(--primary);
  background: var(--primary-subtle);
  border-radius: var(--radius) var(--radius) 0 0;
}

.comparison-table td {
  padding: var(--space-2) var(--space-3);
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.comparison-table td:first-child {
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
}
.comparison-table td.comparison-highlight {
  background: var(--primary-subtle);
  color: var(--text);
  font-weight: 500;
}
.comparison-table td.comparison-highlight:last-child {
  border-radius: 0 0 var(--radius) 0;
}
.comparison-muted {
  color: var(--text-muted);
}

.check-icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 4px;
}

/* Pricing summary */
/* Pricing tiers — two-column layout */
.pricing-tiers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  max-width: 800px;
  margin: 0 auto;
}

.pricing-tier {
  padding: var(--space-4);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.pricing-tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--primary);
  color: #fff;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.pricing-tier-name {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 4px;
  margin-top: var(--space-1);
}

.pricing-tier-tagline {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: var(--space-3);
}

.pricing-amount {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.5rem;
  letter-spacing: -0.02em;
  color: var(--text);
}
.pricing-period {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.pricing-detail {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin-top: var(--space-1);
  margin-bottom: var(--space-3);
}

.pricing-features {
  list-style: none;
  text-align: left;
  width: 100%;
  margin-bottom: var(--space-3);
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-feature--muted {
  color: var(--text-muted) !important;
  font-style: italic;
}

.pricing-tier--primary {
  border-color: var(--primary-border);
  background: linear-gradient(135deg, rgba(255,122,69,0.06), var(--glass-bg));
}
.pricing-tier--primary .pricing-amount {
  color: var(--primary);
}

/* ===== GUARANTEE ===== */
.section--guarantee {
  text-align: center;
}

.guarantee-box {
  max-width: 750px;
  margin: 0 auto;
  padding: var(--space-8) var(--space-5);
  background: var(--surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  position: relative;
}
.guarantee-box::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-xl);
  padding: 1px;
  background: linear-gradient(135deg, var(--primary-border), var(--accent-glow), transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.guarantee-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-subtle);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}

.guarantee-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  letter-spacing: -0.01em;
  line-height: 1.35;
  color: var(--text);
  margin-bottom: var(--space-3);
  text-shadow: 0 0 60px rgba(255,122,69,0.15);
}

.guarantee-first {
  font-size: 0.875rem;
  font-weight: 600;
  color: #D4A853;
  letter-spacing: 0.03em;
  margin-bottom: var(--space-5);
}

.guarantee-trust {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.guarantee-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
}
.guarantee-trust-item svg { stroke: var(--text-muted); }

/* ===== LAUNCH TIMELINE ===== */
.section--launch {
  background: var(--surface);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}

.timeline-line {
  position: absolute;
  top: 20px;
  left: 40px;
  right: 40px;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.timeline-line-fill {
  height: 100%;
  width: 0%;
  background: var(--primary);
  border-radius: 1px;
  transition: width 0.5s var(--ease-smooth);
}

.timeline-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.timeline-node {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface-raised);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0 auto var(--space-2);
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.timeline-step.active .timeline-node {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 0 16px var(--primary-glow);
}

.timeline-info h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  margin-bottom: 4px;
}
.timeline-info p {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.launch-capacity {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  font-size: 0.9375rem;
  color: var(--text-secondary);
  text-align: center;
}
.launch-capacity svg { flex-shrink: 0; }

/* ===== FAQ ===== */
.faq-list {
  max-width: 700px;
}

.faq-item {
  margin-bottom: var(--space-2);
  overflow: hidden;
}

.faq-question {
  padding: var(--space-3);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--primary); }
.faq-question::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item[open] .faq-question::after {
  content: '−';
  transform: rotate(0deg);
}
.faq-question::-webkit-details-marker { display: none; }

.faq-answer {
  padding: 0 var(--space-3) var(--space-3);
}
.faq-answer p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ===== FINAL CTA ===== */
.section--final {
  text-align: center;
  padding: var(--space-16) 0;
  position: relative;
}

.final-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: var(--space-2);
}

.final-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-5);
}

.final-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: center;
}

/* ===== FOOTER ===== */
.footer {
  padding: var(--space-6) 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.footer-tagline {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.footer-links {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }

.footer-copy {
  width: 100%;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: var(--space-3);
}

/* ===== MOBILE CTA BAR ===== */
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: none;
  padding: var(--space-1) var(--space-2);
  background: rgba(6,6,10,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  gap: var(--space-1);
}
.mobile-cta.visible { display: flex; }

.mobile-cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius);
  border: none;
  text-decoration: none;
}
.mobile-cta-btn--call {
  background: var(--primary);
  color: #fff;
}
.mobile-cta-btn--book {
  background: var(--surface-raised);
  color: var(--text);
  border: 1px solid var(--border);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 80px;
  right: 24px;
  z-index: 80;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface-raised);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--surface-overlay);
  color: var(--text);
}

/* ===== FOCUS STYLES ===== */
.btn:focus-visible,
.nav-link:focus-visible,
.nav-cta:focus-visible,
.faq-question:focus-visible,
.back-to-top:focus-visible,
.mobile-cta-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-animate] {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-line {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-subtitle, .hero-cta-group, .hero-guarantee, .hero-trust, .scroll-indicator {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-glow { opacity: 1 !important; }
}

/* ===== RESPONSIVE — TABLET ===== */
@media (max-width: 1024px) {
  .walkthrough-inner {
    grid-template-columns: 1fr;
  }
  .walkthrough-screen { display: none; }
  .walkthrough-pinned { display: none; }
  .walkthrough-mobile { display: block; }

  .timeline {
    grid-template-columns: 1fr;
    gap: var(--space-4);
    padding-left: var(--space-6);
  }
  .timeline-line {
    top: 0; bottom: 0; left: 20px; right: auto;
    width: 2px; height: auto;
  }
  .timeline-step { text-align: left; }
  .timeline-node {
    position: absolute;
    left: calc(-1 * var(--space-6));
    margin: 0;
  }
  .timeline-info { padding-left: 0; }
}

/* ===== RESPONSIVE — MOBILE ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(6,6,10,0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    padding: var(--space-4);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-link { font-size: 1.125rem; }
  .nav-cta { font-size: 1rem; padding: var(--space-1) var(--space-3); }

  .stats-grid { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: 1fr; }
  .offer-card--hero { grid-column: 1; }

  .hero-line { font-size: clamp(2rem, 8vw, 2.75rem); }

  .hero-trust { position: relative; bottom: auto; padding-top: var(--space-5); }
  .trust-strip { gap: var(--space-3); }

  .comparison-table { font-size: 0.8125rem; }
  .comparison-table th,
  .comparison-table td { padding: var(--space-1) var(--space-2); }

  .pricing-tiers { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

  .guarantee-box { padding: var(--space-5) var(--space-3); }
  .guarantee-trust { gap: var(--space-2); }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }

  .final-cta-group { flex-direction: column; align-items: center; }

  .back-to-top { bottom: 70px; right: 16px; }

  /* Show mobile CTA bar on phones */
  .mobile-cta { display: none; } /* JS toggles .visible */

  /* Extra bottom padding for mobile CTA bar */
  .footer { padding-bottom: 80px; }
}

@media (max-width: 480px) {
  .trust-strip { flex-direction: column; align-items: center; gap: var(--space-2); }
  .guarantee-trust { flex-direction: column; align-items: center; }
  .hero-cta-group { flex-direction: column; align-items: stretch; }
  .hero-cta-group .btn { width: 100%; }
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface-overlay); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }
