/* NEVERMISS — LANDING PAGE STYLES */
/* Typography: DM Sans (body) + Instrument Serif (hero headline) */

:root {
  --bg: #0a0f1a;
  --bg-alt: #0f1623;
  --bg-card: #131b2a;
  --fg: #e8eaf0;
  --fg-muted: #8892a4;
  --accent: #f59e0b;
  --accent-dim: rgba(245, 158, 11, 0.15);
  --green: #22c55e;
  --red: #ef4444;
  --border: rgba(255,255,255,0.08);
  --radius: 14px;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;
}

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

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Radial glow atmosphere */
body::before {
  content: '';
  position: fixed;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(245,158,11,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Typography */
h1, h2, h3, h4 { font-family: var(--font-body); font-weight: 600; line-height: 1.2; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 15, 26, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
}
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* HERO */
.hero {
  position: relative;
  padding: 7rem 2rem 6rem;
  overflow: hidden;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.hero-lede {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 2.5rem;
}
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.hero-stat {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.stat-num {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  min-width: 80px;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* PHONE MOCKUP */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.phone-mockup {
  position: relative;
}
.phone-frame {
  width: 280px;
  background: #1a2336;
  border: 2px solid rgba(255,255,255,0.12);
  border-radius: 36px;
  padding: 1.25rem;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
}
.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  padding: 0 0.25rem;
}
.phone-time { font-size: 0.75rem; color: var(--fg-muted); }
.phone-signal { font-size: 0.65rem; letter-spacing: 2px; color: var(--fg-muted); }
.phone-chat {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  min-height: 280px;
}
.chat-bubble {
  max-width: 82%;
  padding: 0.65rem 0.9rem;
  border-radius: 14px;
  font-size: 0.8rem;
  line-height: 1.5;
}
.incoming {
  background: rgba(245,158,11,0.15);
  color: var(--fg);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.outgoing {
  background: var(--accent);
  color: #0a0f1a;
  font-weight: 600;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.chat-time {
  display: block;
  font-size: 0.65rem;
  color: var(--fg-muted);
  margin-top: 0.25rem;
}
.outgoing .chat-time { color: rgba(10,15,26,0.6); }
.phone-footer {
  text-align: center;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  margin-top: 0.5rem;
}
.input-dots {
  font-size: 1.2rem;
  letter-spacing: 4px;
  color: var(--fg-muted);
}
.notification-badge {
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 99px;
  padding: 0.4rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
}
.notification-badge span { font-size: 0.72rem; color: var(--accent); font-weight: 600; }

/* PROBLEM */
.problem {
  padding: 6rem 2rem;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.problem-inner { max-width: 900px; margin: 0 auto; }
.problem-headline {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1.5rem;
}
.problem-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 700px;
  margin-bottom: 1.25rem;
}
.problem-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
.problem-col {
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.problem-col.wrong { background: rgba(239,68,68,0.05); }
.problem-col.right { background: rgba(34,197,94,0.05); border-color: rgba(34,197,94,0.2); }
.col-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.wrong .col-icon { background: rgba(239,68,68,0.15); color: var(--red); }
.right .col-icon { background: rgba(34,197,94,0.15); color: var(--green); }
.problem-col h4 { font-size: 1rem; margin-bottom: 1rem; }
.problem-col ul { list-style: none; }
.problem-col ul li {
  font-size: 0.875rem;
  color: var(--fg-muted);
  padding: 0.3rem 0;
  padding-left: 1.25rem;
  position: relative;
}
.problem-col ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--fg-muted);
  opacity: 0.5;
}
.right ul li { color: var(--fg); }

/* HOW */
.how { padding: 6rem 2rem; }
.how-inner { max-width: 900px; margin: 0 auto; }
.how-headline { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 3rem; }
.how-steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.step:last-child { border-bottom: none; }
.step-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  font-family: var(--font-serif);
  line-height: 1;
  padding-top: 0.2rem;
}
.step-content h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.step-content p { font-size: 0.9rem; color: var(--fg-muted); max-width: 520px; }
.how-visual { margin-top: 3rem; }
.timeline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow-x: auto;
}
.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  flex-shrink: 0;
}
.tl-time { font-size: 0.9rem; font-weight: 700; color: var(--fg); }
.tl-label { font-size: 0.72rem; color: var(--fg-muted); }
.timeline-item.success .tl-time { color: var(--green); }
.timeline-arrow { color: var(--fg-muted); font-size: 1.2rem; flex-shrink: 0; }

/* FEATURES */
.features {
  padding: 6rem 2rem;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.features-inner { max-width: 1100px; margin: 0 auto; }
.features-headline { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 3rem; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color 0.2s;
}
.feature-card:hover { border-color: rgba(245,158,11,0.3); }
.feature-icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.feature-card h3 { font-size: 0.95rem; margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.8rem; color: var(--fg-muted); line-height: 1.6; }

/* PRICING */
.pricing { padding: 6rem 2rem; }
.pricing-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.pricing-headline { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 0.75rem; }
.pricing-subhead { font-size: 1rem; color: var(--fg-muted); margin-bottom: 3rem; }
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  text-align: left;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.pricing-card.featured {
  border-color: rgba(245,158,11,0.4);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(245,158,11,0.04) 100%);
}
.pricing-card h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--fg-muted); margin-bottom: 0.75rem; }
.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.price-period { font-size: 1.2rem; font-weight: 400; color: var(--fg-muted); }
.price-note { font-size: 0.8rem; color: var(--fg-muted); margin-bottom: 1.5rem; }
.price-includes { list-style: none; margin-bottom: 1.5rem; }
.price-includes li {
  font-size: 0.85rem;
  color: var(--fg-muted);
  padding: 0.4rem 0;
  padding-left: 1.25rem;
  position: relative;
}
.price-includes li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.payback-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
  padding: 0.75rem 1rem;
  background: var(--accent-dim);
  border-radius: 8px;
}
.payback-icon { font-size: 1rem; }
.pricing-cta { margin-top: 2.5rem; }
.pricing-cta p { font-size: 1.2rem; color: var(--fg); }
.pricing-cta strong { color: var(--accent); }
.cta-sub { font-size: 0.85rem; color: var(--fg-muted); margin-top: 0.5rem; }

/* TESTIMONIALS */
.testimonials {
  padding: 6rem 2rem;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.testimonials-inner { max-width: 1100px; margin: 0 auto; }
.testimonials-headline { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 3rem; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.testimonial-quote {
  font-size: 0.9rem;
  color: var(--fg);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testimonial-source { border-top: 1px solid var(--border); padding-top: 1rem; }
.source-name { display: block; font-size: 0.8rem; font-weight: 600; color: var(--accent); margin-bottom: 0.2rem; }
.source-detail { font-size: 0.72rem; color: var(--fg-muted); }
.market-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.mstat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}
.mstat-num { display: block; font-size: 2rem; font-weight: 700; color: var(--accent); }
.mstat-label { font-size: 0.78rem; color: var(--fg-muted); margin-top: 0.4rem; display: block; }

/* CLOSING */
.closing {
  padding: 8rem 2rem;
  text-align: center;
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-headline {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.closing-body { font-size: 1.05rem; color: var(--fg-muted); margin-bottom: 1.25rem; max-width: 580px; margin-left: auto; margin-right: auto; }
.closing-product {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}
.closing-logo { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; }
.closing-tagline {
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 3rem 2rem 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.footer-brand .footer-logo {
  font-size: 1.1rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}
.footer-brand p { font-size: 0.8rem; color: var(--fg-muted); max-width: 300px; }
.footer-links { display: flex; align-items: center; }
.footer-links span { font-size: 0.78rem; color: var(--fg-muted); }
.footer-bottom {
  max-width: 1100px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--fg-muted);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-right { display: none; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .market-stats { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .problem-comparison { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero { padding: 4rem 1.5rem 4rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .phone-mockup { display: none; }
  .timeline { gap: 0.4rem; }
  .tl-time { font-size: 0.75rem; }
}