/* ==========================================================================
   K9X — style refresh layer (loads after the page's inline styles)
   Keeps the black / crimson / silver brand; modernizes type, surfaces,
   buttons, CTA panels, and contrast. Pricing-section rules are prefixed
   with `body` because that section's styles are declared in-body.
   ========================================================================== */

:root {
  --bg: #0a0a0b;
  --bg-2: #0e0e10;
  --surface: #141416;
  --surface-2: #1a1a1d;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #f4f4f6;
  --text-2: #b9bcc6;
  --text-3: #8b8f9a;
  --red: #dc143c;
  --red-2: #ff2a55;
  --red-soft: #ff5c7a;
  --red-deep: #8b0000;
  --red-glow: rgba(220, 20, 60, 0.35);
  --font-display: 'Barlow Condensed', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --r-lg: 20px;
  --r: 14px;
  --r-sm: 10px;
  --shadow-card: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 24px 48px -32px rgba(0, 0, 0, 0.9);
  --grad-red: linear-gradient(135deg, #ff2a55 0%, #dc143c 48%, #9b0a28 100%);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
::selection { background: rgba(220, 20, 60, 0.55); color: #fff; }
* { scrollbar-width: thin; scrollbar-color: #2a2a2e transparent; }

/* --- Type ---------------------------------------------------------------- */
h1, .section-header h2, .page-header h1, .section h2,
.final-cta h2, .final-cta h3, .timeline-cta h2, .timeline-cta h3,
.faq-cta h2, .faq-cta h3, .cta-section h2, .modal h2, .safety-highlight h2,
.problem-side h3, .solution-side h3 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.95;
}
body .pricing-cta h2, body .pricing-cta h3, body .vip-content h3 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.95;
}
h1 { font-size: clamp(3.2rem, 8vw, 6.8rem); letter-spacing: 0; margin-bottom: 28px; }
.section-header h2 { font-size: clamp(2.8rem, 5.5vw, 4.6rem); letter-spacing: 0; margin-bottom: 18px; }
.section-header h2::after {
  content: ''; display: block; width: 64px; height: 4px; margin: 20px auto 0;
  border-radius: 2px; background: linear-gradient(90deg, var(--red-2), var(--red));
}
.final-cta h2, .final-cta h3, .timeline-cta h2, .timeline-cta h3, .faq-cta h2, .faq-cta h3,
.cta-section h2, body .pricing-cta h2, body .pricing-cta h3 { font-size: clamp(2.2rem, 4vw, 3.4rem); }
.problem-side h3, .solution-side h3 { font-size: 2.2rem; letter-spacing: 0.02em; }
.highlight-text, .highlight, span.highlight {
  background: linear-gradient(90deg, #ff2a55 0%, #dc143c 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.subheadline, .section-subtitle, .step-description, .benefit-card p, .faq-answer, .faq-answer p,
.problem-list li p, .solution-list li p, .cta-subtext, .counter-text, .footer-tagline,
.final-cta p, .timeline-cta p, .faq-cta p, .cta-section p, .page-header p, .modal p, .detail-item {
  color: var(--text-2);
}
.subheadline { font-size: clamp(1.1rem, 1.8vw, 1.35rem); line-height: 1.65; }
.section-subtitle { font-size: 1.15rem; }
body .card-subtitle, body .price-period, .countdown-label, .vip-label { color: var(--text-3); }

/* --- Nav ---------------------------------------------------------------- */
nav {
  background: rgba(10, 10, 11, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}
.logo { height: 56px; }
nav.scrolled .logo { height: 46px; }
.nav-link { color: var(--text-2); font-weight: 500; font-size: 0.95rem; position: relative; text-decoration: none; }
.nav-link::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
  background: var(--red-2); transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.nav-link:hover { color: #fff; }
.nav-link:hover::after { transform: scaleX(1); }
.nav-cta {
  border-radius: 999px; padding: 11px 22px; font-weight: 700; letter-spacing: 0.02em;
  background: var(--grad-red); box-shadow: 0 8px 22px -8px var(--red-glow), inset 0 1px 0 rgba(255,255,255,.18);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 12px 28px -8px var(--red-glow); }

/* --- Buttons ------------------------------------------------------------ */
.cta-button, .btn-primary, .form-submit, .footer-cta-btn {
  font-family: var(--font-body); font-weight: 700; letter-spacing: 0.06em; border-radius: 12px;
}
.cta-primary, .btn-primary, .form-submit, .footer-cta-btn {
  background: var(--grad-red);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 34px -10px rgba(220, 20, 60, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  color: #fff;
}
.cta-primary:hover, .btn-primary:hover, .form-submit:hover, .footer-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px -12px rgba(220, 20, 60, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.cta-secondary {
  border: 1px solid var(--line-strong); background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px); color: #fff;
}
.cta-secondary:hover { background: rgba(255, 255, 255, 0.07); border-color: rgba(255,255,255,.28); }
.service-check-btn {
  border-radius: 999px; background: rgba(220, 20, 60, 0.1); border: 1px solid rgba(220, 20, 60, 0.35); color: var(--red-soft);
}
.service-check-btn:hover { background: rgba(220, 20, 60, 0.18); }

/* --- Hero --------------------------------------------------------------- */
.hero {
  background:
    radial-gradient(900px 520px at 50% -12%, rgba(220, 20, 60, 0.26), transparent 62%),
    linear-gradient(180deg, #0d0d0f 0%, #0a0a0b 100%);
}
.status-badge {
  background: rgba(220, 20, 60, 0.12); border: 1px solid rgba(220, 20, 60, 0.45); color: var(--red-soft);
  box-shadow: 0 0 0 4px rgba(220, 20, 60, 0.08); letter-spacing: 0.16em; font-size: 0.78rem; padding: 8px 20px;
}
.countdown-item {
  background: rgba(255, 255, 255, 0.035); border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: var(--shadow-card);
}
.countdown-number {
  font-family: var(--font-display); font-weight: 800; font-size: 3.2rem; line-height: 1;
  background: linear-gradient(180deg, #ff2a55, #dc143c); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.countdown-label { letter-spacing: 0.18em; font-size: 0.72rem; text-transform: uppercase; }
.proof-item { color: var(--text-2); }

/* --- Surfaces / cards --------------------------------------------------- */
.benefit-card, .timeline-content, .faq-item, .problem-list li, .solution-list li, .modal-content,
body .pricing-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)), var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}
.benefit-card, .timeline-content, body .pricing-card, .modal-content { border-radius: var(--r-lg); }
.faq-item, .problem-list li, .solution-list li { border-radius: var(--r); }
.benefit-card:hover, .timeline-item:hover .timeline-content, .faq-item:hover, body .pricing-card:hover {
  border-color: rgba(220, 20, 60, 0.4);
  transform: translateY(-3px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 30px 60px -30px rgba(220, 20, 60, 0.45);
}
.benefit-card h3, .timeline-content h3 {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; font-size: 1.75rem;
}
.problem-list li strong, .solution-list li strong { color: #fff; }
.icon-check { background: var(--grad-red); color: #fff; box-shadow: 0 6px 16px -6px var(--red-glow); }
.icon-cross { background: rgba(255, 255, 255, 0.06); border: 1px solid var(--line-strong); color: var(--text-3); }

/* Icon badges (emoji icons sit in a tinted tile) */
.benefit-icon, .step-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 72px; height: 72px; border-radius: 18px; font-size: 2rem; margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(220, 20, 60, 0.2), rgba(220, 20, 60, 0.06));
  border: 1px solid rgba(220, 20, 60, 0.3);
  box-shadow: 0 10px 26px -14px var(--red-glow);
}
body .vip-icon {
  display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto;
  width: 60px; height: 60px; border-radius: 16px; font-size: 1.7rem;
  background: linear-gradient(135deg, rgba(220, 20, 60, 0.2), rgba(220, 20, 60, 0.06));
  border: 1px solid rgba(220, 20, 60, 0.3);
}
.benefit-badge, .step-badge {
  border-radius: 999px; background: rgba(220, 20, 60, 0.1); border: 1px solid rgba(220, 20, 60, 0.3);
  color: var(--red-soft); letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.72rem; font-weight: 700;
}

/* --- CTA / glow panels ---------------------------------------------------- */
.waitlist-counter, .final-cta, .timeline-cta, .faq-cta, .cta-section, .safety-highlight,
body .pricing-cta, body .vip-banner {
  position: relative; overflow: hidden;
  border: 1px solid rgba(220, 20, 60, 0.32);
  border-radius: var(--r-lg);
  background:
    radial-gradient(720px 320px at 12% 0%, rgba(220, 20, 60, 0.24), transparent 62%),
    radial-gradient(520px 260px at 92% 100%, rgba(220, 20, 60, 0.12), transparent 62%),
    var(--surface);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 40px 90px -50px rgba(220, 20, 60, 0.45);
}
.counter-number {
  font-family: var(--font-display); font-weight: 800; font-size: 5.4rem; line-height: 1;
  background: linear-gradient(180deg, #ff2a55, #dc143c); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.counter-text { font-size: 1.05rem; letter-spacing: 0.02em; }

/* --- Pricing (in-body styles → `body` prefix) ----------------------------- */
body .card-header h3 {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; font-size: 2rem;
}
body .price-amount { font-family: var(--font-display); font-weight: 800; font-size: 3.8rem; letter-spacing: 0.01em; line-height: 1; }
body .card-features li { color: var(--text-2); }
body .check-icon { color: var(--red-2); }
body .sessions-info {
  border-radius: var(--r-sm); background: rgba(220, 20, 60, 0.1); border: 1px solid rgba(220, 20, 60, 0.25); color: var(--red-soft);
}
body .vip-pricing {
  background: rgba(220, 20, 60, 0.08); border: 1px solid rgba(220, 20, 60, 0.32); border-radius: var(--r);
}
body .vip-price { font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; line-height: 1; }
body .savings { color: var(--red-soft); }
body .popular-card {
  border: 1px solid rgba(220, 20, 60, 0.6);
  box-shadow: 0 0 0 1px rgba(220, 20, 60, 0.25), inset 0 1px 0 rgba(255,255,255,.06), 0 30px 70px -30px rgba(220, 20, 60, 0.55);
}
body .popular-card:hover { border-color: rgba(220, 20, 60, 0.8); }
body .vip-content p { color: var(--text-2); }

/* --- Timeline ------------------------------------------------------------ */
.marker-circle {
  background: var(--grad-red); animation: none;
  box-shadow: 0 0 0 6px rgba(220, 20, 60, 0.12), 0 12px 30px -10px var(--red-glow);
}
.timeline-line { background: linear-gradient(180deg, rgba(220, 20, 60, 0.6), rgba(220, 20, 60, 0.04)); }
.detail-icon { color: var(--red-2); }

/* --- FAQ ----------------------------------------------------------------- */
.faq-question { font-weight: 600; font-size: 1.08rem; color: #fff; }
.faq-icon {
  width: 32px; height: 32px; border-radius: 50%; flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(220, 20, 60, 0.12); border: 1px solid rgba(220, 20, 60, 0.35); color: var(--red-soft);
}

/* --- Forms / modal -------------------------------------------------------- */
.modal-content { background: var(--surface-2); border: 1px solid var(--line-strong); box-shadow: 0 50px 120px -30px rgba(0,0,0,.95), 0 0 0 1px rgba(220,20,60,.18); }
.modal h2 { font-size: 2.6rem; margin-bottom: 8px; }
.modal-close { color: var(--text-3); }
.form-group label { color: var(--text-2); font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; }
.form-group input, .form-group select {
  background: #0e0e10; border: 1px solid var(--line-strong); border-radius: var(--r-sm); padding: 14px 16px; color: #fff;
}
.form-group input::placeholder { color: #55585f; }
.form-group input:focus, .form-group select:focus {
  outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.25);
}
.form-message.success { background: rgba(46, 204, 113, 0.12); border: 1px solid rgba(46, 204, 113, 0.35); color: #7ee2a8; border-radius: var(--r-sm); }
.form-message.error { background: rgba(220, 20, 60, 0.12); border: 1px solid rgba(220, 20, 60, 0.35); color: var(--red-soft); border-radius: var(--r-sm); }

/* --- Footer -------------------------------------------------------------- */
.footer { background: linear-gradient(180deg, #0c0c0d 0%, #000 100%); border-top: 1px solid var(--line); }
.footer-column h4, .footer h4 { font-family: var(--font-display); letter-spacing: 0.12em; font-size: 1.1rem; text-transform: uppercase; }
.footer-logo { height: 64px; }
.footer-links a, .footer-contact a, .footer-contact li, .footer-legal a, .copyright { color: var(--text-3); }
.footer-links a:hover, .footer-legal a:hover { color: #fff; }
.social-link { border: 1px solid var(--line-strong); background: rgba(255, 255, 255, 0.03); color: var(--red-soft); }
.social-link:hover { border-color: var(--red); background: rgba(220, 20, 60, 0.12); }
.footer-launch { color: var(--text-3); }

/* --- Session Prep page ---------------------------------------------------- */
.page-header {
  background:
    radial-gradient(820px 420px at 50% -20%, rgba(220, 20, 60, 0.26), transparent 62%),
    #0b0b0c;
  border-bottom: 1px solid var(--line);
  padding: 84px 20px 60px;
}
.page-header h1 { font-size: clamp(2.8rem, 6vw, 5rem); letter-spacing: 0; }
.section h2 { font-size: clamp(2.1rem, 3.6vw, 3rem); letter-spacing: 0.01em; }
.section h3 { color: var(--red-soft); }
.section ul li {
  background: var(--surface); border: 1px solid var(--line); border-left: 3px solid var(--red);
  border-radius: 12px; color: var(--text-2); box-shadow: var(--shadow-card);
}
.section ul li:hover { border-color: rgba(220, 20, 60, 0.4); border-left-color: var(--red-2); }
.section ul li strong { color: var(--red-soft); }
.quote-box { background: var(--surface); border: 1px solid var(--line); border-left: 3px solid var(--red); border-radius: 12px; }
.safety-highlight ul li { background: rgba(0, 0, 0, 0.35); }
.mobile-nav { background: rgba(10, 10, 11, 0.96); border-top: 1px solid var(--line); }

/* --- Responsive ---------------------------------------------------------- */
@media (max-width: 768px) {
  h1 { font-size: clamp(2.7rem, 12vw, 4rem); }
  .logo, nav.scrolled .logo { height: 44px; }
  .benefit-icon, .step-icon { width: 60px; height: 60px; font-size: 1.7rem; border-radius: 14px; }
  .counter-number { font-size: 4rem; }
  .countdown-number { font-size: 2.4rem; }
  body .price-amount { font-size: 3.2rem; }
}

/* Respect reduced-motion without hiding the animated-in content */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .hero-content > *, .timeline-item { opacity: 1 !important; transform: none !important; }
}
