/* ==========================================================================
   UNIFIED BARBER ACADEMY (UBA) : UNIFIED MASTER DESIGN SYSTEM
   Merged Masterclass Hero (Sections 1-9) + Four Pillars + Curriculum + Full Site
   Brand Palette: #060709 (Midnight Dark) · #1be392 (Emerald Signature) · Light Breaks
   ========================================================================== */

:root {
  /* Core UBA Brand Palette */
  --bg-base: #060709;
  --bg-surface: #0c0e12;
  --bg-card: #11141a;
  --bg-card-elevated: #161922;
  --bg-card-hover: #1c202c;
  --bg-glass: rgba(12, 14, 18, 0.85);
  --bg-glass-card: rgba(17, 20, 26, 0.88);

  /* Light Canvas Theme (Palette Breaks: Sections 4 & 9 & 11 & 15 & 16) */
  --bg-light-base: #f8fafc;
  --bg-light-surface: #ffffff;
  --bg-light-card: #ffffff;
  --border-light: rgba(0, 0, 0, 0.08);
  --grid-line-light: rgba(0, 0, 0, 0.045);
  --text-light-h: #09090b;
  --text-light-p: #475569;
  --text-light-muted: #94a3b8;

  /* Typography Colors */
  --text-primary: #ffffff;
  --text-secondary: #9aa1b0;
  --text-muted: #5e6575;

  /* Signature UBA Emerald Accent */
  --accent: #1be392;
  --accent-light: #47f3ad;
  --accent-dark: #0fa668;
  --accent-glow: rgba(27, 227, 146, 0.22);
  --accent-glow-strong: rgba(27, 227, 146, 0.45);
  --accent-subtle: rgba(27, 227, 146, 0.08);

  /* Borders & Grid */
  --border-subtle: rgba(255, 255, 255, 0.07);
  --border-card: rgba(255, 255, 255, 0.1);
  --border-hover: rgba(27, 227, 146, 0.4);
  --border-accent: rgba(27, 227, 146, 0.5);
  --grid-line-dark: rgba(255, 255, 255, 0.055);

  /* Direct-Response Proof Colors */
  --imessage-blue: #007aff;
  --imessage-dark-gray: #26272b;
  --whatsapp-green: #005d4b;
  --whatsapp-incoming: #202c33;
  --bubble-grey: #232733;

  /* Fonts */
  --font-display: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', Consolas, monospace;

  /* Sizing & Spacing */
  --container-max: 1180px;
  --section-pad-y: clamp(70px, 8vw, 120px);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-card: 0 12px 35px -10px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 35px var(--accent-glow);
}

/* Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-body);
  -webkit-text-size-adjust: 100%;
}

body {
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  background-color: var(--bg-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Accessibility: WCAG 2.1 AA Focus Rings & Skip Link */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -120px;
  left: 20px;
  background: var(--accent);
  color: #060709;
  padding: 12px 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  z-index: 999999;
  text-decoration: none;
  transition: top 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.skip-link:focus {
  top: 20px;
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.site-wrapper {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  position: relative;
  z-index: 2;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   AMBIENT BACKGROUND GLOW & HOLOGRAPHIC FRAME LINES
   ========================================================================== */
.bg-ambient-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1400px;
  height: 800px;
  background: radial-gradient(circle at 50% 12%, rgba(27, 227, 146, 0.14) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.bg-ambient-glow-mid {
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  height: 700px;
  background: radial-gradient(circle at 50% 50%, rgba(27, 227, 146, 0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.bg-ambient-glow-bottom {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  height: 600px;
  background: radial-gradient(circle at 50% 80%, rgba(27, 227, 146, 0.1) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.holo-frame {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
}

.holo-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent 0%, rgba(27, 227, 146, 0.12) 15%, rgba(27, 227, 146, 0.18) 50%, rgba(27, 227, 146, 0.12) 85%, transparent 100%);
}

.holo-line-left  { left: clamp(8px, 2.5vw, 32px); }
.holo-line-right { right: clamp(8px, 2.5vw, 32px); }

.holo-scan {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
  border-radius: 2px;
  animation: holo-scan-travel 4s ease-in-out infinite;
  filter: blur(0.5px);
}

.holo-line-right .holo-scan { animation-delay: 2s; }

@keyframes holo-scan-travel {
  0%   { top: -60px; opacity: 0; }
  10%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { top: 100vh; opacity: 0; }
}

/* ==========================================================================
   BRANDED GLOBAL PRESENTATION LOADING SCREEN
   ========================================================================== */
#uba-loader {
  display: none !important;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #040507;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.65s, transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: auto;
}

#uba-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(1.03);
}

.uba-loader-bg-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 85%);
  -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 85%);
  pointer-events: none;
}

.uba-loader-spotlight {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27, 227, 146, 0.12) 0%, rgba(0, 242, 254, 0.04) 40%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: left 0.15s ease-out, top 0.15s ease-out;
  left: 50%;
  top: 50%;
  mix-blend-mode: screen;
}

.uba-loader-hud {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.28);
  text-transform: uppercase;
  pointer-events: none;
  padding: 1.5rem;
}

.hud-tl { top: 0; left: 0; }
.hud-tr { top: 0; right: 0; }
.hud-bl { bottom: 0; left: 0; }
.hud-br { bottom: 0; right: 0; }

@media (max-width: 768px) {
  .uba-loader-hud { display: none; }
}

.uba-loader-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  max-width: 780px;
}

.uba-loader-badge {
  position: relative;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.uba-badge-orbit {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px dashed rgba(27, 227, 146, 0.45);
  box-shadow: 0 0 20px rgba(27, 227, 146, 0.2);
  animation: loaderOrbitRotate 12s linear infinite;
}

@keyframes loaderOrbitRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.uba-loader-logo {
  width: 44px;
  height: auto;
  filter: drop-shadow(0 0 12px rgba(27, 227, 146, 0.45));
}

.uba-loader-brand-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.uba-loader-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(27, 227, 146, 0.06);
  border: 1px solid rgba(27, 227, 146, 0.25);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #1be392;
  text-transform: uppercase;
  box-shadow: 0 0 16px rgba(27, 227, 146, 0.15);
  margin-bottom: 0.5rem;
}

.kicker-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1be392;
  box-shadow: 0 0 8px #1be392;
  animation: pulseDot 1.6s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 0.4; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.2); }
}

.uba-loader-main-heading {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.05;
}

.uba-loader-word.word-unified {
  font-family: 'Cinzel', 'Outfit', var(--font-display);
  font-size: clamp(2.4rem, 6.5vw, 4.4rem);
  font-weight: 900;
  letter-spacing: 0.18em;
  background: linear-gradient(135deg, #ffffff 0%, #f4f4f5 35%, #1be392 70%, #ffffff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textMetallicShimmer 4s ease infinite;
  text-shadow: 0 0 40px rgba(27, 227, 146, 0.25);
}

@keyframes textMetallicShimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.uba-loader-word.word-barber {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 2.4vw, 1.4rem);
  font-weight: 800;
  letter-spacing: 0.38em;
  color: #a1a1aa;
  text-transform: uppercase;
  margin-top: 0.4rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.uba-loader-word.word-barber::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #1be392, transparent);
  box-shadow: 0 0 10px #1be392;
}

.uba-loader-tagline {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
}

.uba-loader-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
}

.status-pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00f2fe;
  box-shadow: 0 0 8px #00f2fe;
  animation: pulseDot 1.2s ease-in-out infinite;
}

/* ==========================================================================
   STICKY FLOATING HEADER
   ========================================================================== */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 14px 0;
  background: rgba(6, 7, 9, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.3s ease, border-color 0.3s ease, padding 0.3s ease;
}

.sticky-header.scrolled {
  background: rgba(6, 7, 9, 0.96);
  padding: 12px 0;
}

.header-nav-container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(20px, 3.5vw, 48px);
  padding-right: clamp(20px, 3.5vw, 48px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

@media (max-width: 767px) {
  .sticky-header {
    padding: 12px 0;
  }

  .sticky-header.scrolled {
    padding: 10px 0;
  }

  .header-nav-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .nav-right {
    gap: 10px;
  }

  .btn-pill-sm {
    height: 38px;
    padding: 0 14px;
    font-size: 0.8rem;
  }

  .fab {
    width: 40px;
    height: 40px;
  }

  .hamburger-lines {
    width: 18px;
    height: 13px;
  }

  .widget-root.is-open .hamburger-lines .line-1,
  .fab-hamburger.is-active .hamburger-lines .line-1 {
    transform: translateY(5.5px) rotate(45deg);
  }

  .widget-root.is-open .hamburger-lines .line-3,
  .fab-hamburger.is-active .hamburger-lines .line-3 {
    transform: translateY(-5.5px) rotate(-45deg);
  }


}

.brand-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo-img {
  height: clamp(28px, 2.5vw, 34px);
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.25));
}

/* ==========================================================================
   BUTTON SYSTEM
   ========================================================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #ffffff;
  color: #060709;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(255, 255, 255, 0.15);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.25);
  background: #f0f0f0;
}

.btn-pill-sm {
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1;
}

.btn-full {
  width: 100%;
}

.btn-glow-pulse {
  position: relative;
}

.btn-glow-pulse::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: var(--radius-full);
  background: var(--accent);
  opacity: 0.35;
  filter: blur(10px);
  z-index: -1;
  animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.2; transform: scale(0.98); }
  50% { opacity: 0.5; transform: scale(1.03); }
}

.btn-emerald-pill {
  width: 100%;
  min-height: 48px;
  padding: 0 24px;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: #040507;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px var(--accent-glow);
  transition: background 0.2s ease, transform 0.15s ease;
}

.btn-emerald-pill:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}

.btn-black-pill {
  min-height: 48px;
  padding: 0 32px;
  border-radius: var(--radius-sm);
  background: #09090b;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.15s ease;
}

.btn-black-pill:hover {
  background: #18181b;
  transform: translateY(-1px);
}

.btn-zera-dark {
  width: 100%;
  min-height: 52px;
  padding: 0 24px;
  border-radius: var(--radius-sm);
  background: #09090b;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: background 0.2s ease, transform 0.15s ease;
}

.btn-zera-dark:hover {
  background: #18181b;
}

.btn-micro-sub {
  font-size: 0.74rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 8px;
}

/* ==========================================================================
   BLUEPRINT GRID & 4-CORNER CROP MARKS
   ========================================================================== */
.blueprint-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(var(--grid-line-dark) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line-dark) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 1;
}

.blueprint-grid-light {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(var(--grid-line-light) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line-light) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 1;
}

.corner-mark {
  position: absolute;
  width: 14px;
  height: 14px;
  pointer-events: none;
  z-index: 5;
  opacity: 0.35;
}

.corner-mark.top-left { top: 16px; left: 16px; border-top: 1.5px solid #ffffff; border-left: 1.5px solid #ffffff; }
.corner-mark.top-right { top: 16px; right: 16px; border-top: 1.5px solid #ffffff; border-right: 1.5px solid #ffffff; }
.corner-mark.bottom-left { bottom: 16px; left: 16px; border-bottom: 1.5px solid #ffffff; border-left: 1.5px solid #ffffff; }
.corner-mark.bottom-right { bottom: 16px; right: 16px; border-bottom: 1.5px solid #ffffff; border-right: 1.5px solid #ffffff; }

/* ==========================================================================
   SECTION 1: HERO (Masterclass Frame)
   ========================================================================== */
.section-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding: clamp(90px, 12vh, 140px) 24px clamp(40px, 8vh, 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #040507 !important;
  overflow: hidden;
}

.section-hero::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(27, 227, 146, 0.16) 0%, rgba(27, 227, 146, 0.04) 45%, transparent 70%);
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}

.section-hero .blueprint-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px) !important;
  background-size: 48px 48px !important;
  pointer-events: none;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 960px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.focus-resolve-target {
  animation: focusResolveIn 1s var(--transition-smooth) forwards;
}

@keyframes focusResolveIn {
  0% { opacity: 0; filter: blur(12px); transform: scale(0.98); }
  100% { opacity: 1; filter: blur(0px); transform: scale(1); }
}

.hero-brand-top,
.uba-loader-brand-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.hero-brand-title,
.uba-loader-word.word-unified {
  font-family: 'Cinzel', 'Outfit', var(--font-display);
  font-size: clamp(2.4rem, 6.5vw, 4.4rem);
  font-weight: 900;
  letter-spacing: 0.18em;
  background: linear-gradient(135deg, #ffffff 0%, #f4f4f5 35%, #1be392 70%, #ffffff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: textMetallicShimmer 4s ease infinite;
  text-shadow: 0 0 40px rgba(27, 227, 146, 0.25);
  filter: drop-shadow(0 0 20px rgba(27, 227, 146, 0.25));
  line-height: 1.05;
  text-align: center;
  margin: 0;
}

@keyframes textMetallicShimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-brand-sub,
.uba-loader-word.word-barber {
  font-family: 'Cinzel', 'Outfit', var(--font-display);
  font-size: clamp(0.9rem, 2.4vw, 1.4rem);
  font-weight: 800;
  letter-spacing: 0.38em;
  color: #a1a1aa;
  text-transform: uppercase;
  margin: 0;
  position: relative;
  padding-bottom: 0.5rem;
  text-align: center;
  display: block;
}

.hero-brand-sub::after,
.uba-loader-word.word-barber::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #1be392, transparent);
  box-shadow: 0 0 10px #1be392;
}

.hero-brand-line {
  display: none;
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6.2vw, 4.5rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #ffffff;
  max-width: 860px;
  margin-bottom: clamp(16px, 2.5vh, 24px);
  text-wrap: balance;
}

.mobile-break { display: inline; }
.highlight-text { color: #ffffff; }

.hero-subhead {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 680px;
  margin-bottom: clamp(14px, 2vh, 20px);
  text-wrap: balance;
}

.hero-reassurance {
  font-size: clamp(0.88rem, 1.6vw, 1.02rem);
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.02em;
  margin-bottom: clamp(28px, 4vh, 40px);
}

.scroll-action-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-secondary);
  margin-bottom: 24px;
  cursor: pointer;
  transition: transform 0.25s ease, color 0.25s ease;
}

.scroll-action-wrap:hover {
  color: #ffffff;
  transform: translateY(2px);
}

.scroll-label {
  font-family: var(--font-display);
  font-size: clamp(0.75rem, 1.2vw, 0.85rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.circle-chevron-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(27, 227, 146, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  box-shadow: 0 0 16px rgba(27, 227, 146, 0.15);
  animation: heroChevronBounce 2.2s infinite ease-in-out;
  transition: all 0.3s ease;
}

.circle-chevron-btn:hover {
  background: rgba(27, 227, 146, 0.12);
  border-color: var(--accent);
  box-shadow: 0 0 24px rgba(27, 227, 146, 0.35);
  transform: scale(1.08);
}

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

.hero-logo-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

.logo-text {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

/* ==========================================================================
   SECTION 2: TECHNICAL FRAMEWORK & ROTATING HEADLINE
   ========================================================================== */
.section-mock-browser {
  position: relative;
  padding: 80px 20px;
  background: var(--bg-base);
  overflow: hidden;
}

.mock-browser-container {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
}

.browser-section-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.section-counter .dim {
  color: var(--text-muted);
}

.section-category {
  letter-spacing: 0.14em;
  color: var(--accent);
}

.browser-frame {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.6);
  transition: border-color 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.browser-frame:hover {
  border-color: rgba(27, 227, 146, 0.3);
}

.browser-canvas {
  padding: 44px 36px 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.blueprint-micro-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 14px;
}

.browser-rotating-headline {
  position: relative;
  width: 100%;
  min-height: 68px;
  margin-bottom: 12px;
}

.rot-line {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.8vw, 2.1rem);
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
  display: none;
  margin: 0;
  text-align: left;
}

.rot-line.active {
  display: block;
  animation: rotFadeIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.browser-intro-p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 760px;
  margin: 0 0 32px 0;
}

.browser-diagnostic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  width: 100%;
}

.diag-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.diag-card:hover {
  border-color: rgba(27, 227, 146, 0.3);
  background: rgba(27, 227, 146, 0.03);
}

.diag-step {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.diag-heading {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.diag-text {
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin: 0;
}

/* ==========================================================================
   SECTION 3: PINNED TRACKER
   ========================================================================== */
.section-pinned-tracker {
  position: relative;
  padding: 80px 20px;
  background: var(--bg-base);
  overflow: hidden;
}

.tracker-container {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
}

.tracker-status-bar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.tracker-title-block {
  margin-bottom: 30px;
}

.pinned-statement-h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.18;
  color: #ffffff;
  margin: 0 0 10px 0;
}

.tracker-statement-sub {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0;
}

.tracker-pills-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tracker-pillar {
  display: flex;
  flex-direction: column;
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.25s cubic-bezier(0.16, 1, 0.3, 1), background 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}

.tracker-pillar:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.tracker-pillar:focus-visible {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent-glow);
}

.tracker-pillar.active {
  border-color: var(--accent);
  background: rgba(27, 227, 146, 0.035);
  box-shadow: 0 8px 30px -10px rgba(0, 0, 0, 0.5), 0 0 18px -4px rgba(27, 227, 146, 0.12);
}

.pillar-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
}

.pillar-bullet-indicator {
  position: relative;
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pillar-bullet-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--border-card);
  transition: border-color 0.2s ease;
}

.pillar-bullet-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
  transition: background 0.2s ease, transform 0.2s ease;
}

.tracker-pillar.active .pillar-bullet-ring {
  border-color: var(--accent);
}

.tracker-pillar.active .pillar-bullet-dot {
  background: var(--accent);
  transform: scale(1.2);
  box-shadow: 0 0 8px var(--accent);
}

.pillar-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.pillar-name {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #ffffff;
}

.pillar-sub {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.pillar-module-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: var(--radius-xs);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  white-space: nowrap;
}

.tracker-pillar.active .pillar-module-tag {
  background: rgba(27, 227, 146, 0.12);
  border-color: rgba(27, 227, 146, 0.35);
  color: var(--accent);
}

.pillar-drawer {
  display: none;
}

.tracker-pillar.active .pillar-drawer {
  display: block;
  animation: drawerSlideDown 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes drawerSlideDown {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pillar-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px 24px 22px 54px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.pillar-metric {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pillar-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.pillar-desc {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-secondary);
  margin: 0;
}

.pillar-metric.alert-metric {
  background: rgba(245, 158, 11, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: var(--radius-xs);
  padding: 12px 16px;
  margin-top: 2px;
}

.pillar-metric.alert-metric .pillar-label {
  color: #f59e0b;
}

.pillar-metric.alert-metric .pillar-desc {
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 767px) {
  .section-mock-browser,
  .section-pinned-tracker {
    padding: 50px 16px;
  }

  .browser-canvas {
    padding: 28px 18px 24px;
  }

  .browser-diagnostic-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .browser-rotating-headline {
    min-height: 84px;
  }

  .pillar-header {
    padding: 14px 16px;
    gap: 12px;
  }

  .pillar-body {
    padding: 14px 16px 18px 16px;
  }

  .pillar-text .pillar-name {
    font-size: 0.85rem;
  }

  .pillar-text .pillar-sub {
    font-size: 0.76rem;
  }

  .pillar-module-tag {
    font-size: 0.6rem;
    padding: 3px 7px;
  }
}

/* ==========================================================================
   SECTION 4: PROOF (Light Grid Break)
   ========================================================================= */
.section-proof-light {
  position: relative;
  padding: 70px 20px;
  background: var(--bg-light-base);
  color: var(--text-light-h);
}

.proof-container {
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin: 0 auto;
}

.proof-category-tag, .learn-category-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent-dark);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.proof-h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-light-h);
  margin-bottom: 12px;
}

.proof-subhead {
  font-size: 0.95rem;
  color: var(--text-light-p);
  line-height: 1.5;
  margin-bottom: 32px;
}

.chat-feed-stream {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}

.chat-box-card {
  background: #09090b;
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.chat-bubble-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.bubble {
  max-width: 85%;
  padding: 10px 14px;
  font-size: 0.86rem;
  line-height: 1.4;
  border-radius: 16px;
}

.bubble-grey {
  align-self: flex-start;
  background: var(--bubble-grey);
  color: #ffffff;
  border-bottom-left-radius: 4px;
}

.bubble-blue {
  align-self: flex-end;
  background: var(--imessage-blue);
  color: #ffffff;
  border-bottom-right-radius: 4px;
}

.bubble-green {
  align-self: flex-end;
  background: var(--whatsapp-green);
  color: #ffffff;
  border-bottom-right-radius: 4px;
}

.chat-card-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.68rem;
}

.chat-app-tag { color: var(--text-muted); letter-spacing: 0.1em; }
.chat-outcome-tag.outcome-emerald { color: var(--accent); font-weight: 700; }

.proof-cta-center { text-align: center; }

@media (min-width: 768px) {
  .proof-container {
    max-width: 880px;
  }
  .chat-feed-stream {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: stretch;
  }
  .chat-box-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
}

/* ==========================================================================
   SECTION 5: WHAT YOU LEARN
   ========================================================================= */
.section-what-you-learn {
  position: relative;
  padding: 60px 20px;
  background: var(--bg-base);
}

.learn-container {
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .learn-container {
    max-width: 880px;
  }
}

.learn-h2, .master-h2, .pricing-h2, .why-h2, .contrast-h2, .about-h2, .faq-h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 6vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 8px;
}

.learn-subhead { font-size: 0.95rem; color: var(--text-secondary); margin-bottom: 24px; }

.inside-course-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 24px 20px;
}

.curriculum-sync-header {
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sync-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  background: rgba(27, 227, 146, 0.08);
  border: 1px solid rgba(27, 227, 146, 0.25);
  padding: 5px 12px;
  border-radius: 9999px;
}

.sync-pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse-dot 2s infinite ease-in-out;
}

.curriculum-sync-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 768px) {
  .curriculum-sync-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

.sync-col-title {
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.02em;
}

.checklist-items { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.check-li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.86rem; color: #e4e4e7; line-height: 1.4; }
.check-mark { color: var(--accent); font-weight: 800; font-size: 0.9rem; flex-shrink: 0; margin-top: 1px; }
.check-subtext { display: block; font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }

.anchor-value-card {
  background: var(--bg-card-elevated);
  border: 1px solid rgba(27, 227, 146, 0.2);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
  margin: 24px 0 16px;
}

.anchor-title { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: #ffffff; }
.anchor-sub { font-size: 0.82rem; color: var(--accent); }

.btn-micro-sub {
  font-size: 0.76rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-micro-sub svg {
  width: 14px;
  height: 14px;
  color: inherit;
  flex-shrink: 0;
}

/* ==========================================================================
   SECTION 6: MASTER THE SYSTEM
   ========================================================================= */
.section-master-system {
  position: relative;
  padding: 60px 20px;
  background: var(--bg-base);
}

.master-container {
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin: 0 auto;
}

.master-photo-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 24px;
}

.master-img, .why-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.photo-overlay-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.75);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: var(--accent);
  padding: 4px 8px;
  border-radius: 4px;
}

.master-lead { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.55; margin-bottom: 20px; }

.three-pillars-stack { display: flex; flex-direction: column; gap: 14px; }
.p-item strong { display: block; font-family: var(--font-display); font-size: 0.92rem; color: #ffffff; }
.p-item p { font-size: 0.82rem; color: var(--text-muted); }

/* ==========================================================================
   SECTION 7: VISUAL CRAFT STORY (Editorial Photographic Bridge)
   ========================================================================= */
.section-craft-story {
  position: relative;
  padding: 60px 20px;
  background: var(--bg-base);
}

.craft-story-container {
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .craft-story-container {
    max-width: 880px;
  }
}

.craft-story-h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 6vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 8px;
}

.craft-story-lead {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 24px;
}

.craft-story-photo-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid var(--border-card);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.craft-story-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .craft-story-img {
    height: 480px;
  }
}

.craft-story-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 768px) {
  .craft-story-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

.craft-highlight-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  padding: 16px;
}

.highlight-step {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.highlight-title {
  display: block;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.highlight-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ==========================================================================
   SECTION 8: WHY THIS WORKS
   ========================================================================= */
.section-why-this-works {
  position: relative;
  padding: 60px 20px;
  background: var(--bg-base);
}

.why-container {
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin: 0 auto;
}

.why-lead { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.5; margin-bottom: 12px; }
.why-body { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 20px; }
.why-photo-wrap { border-radius: var(--radius-md); overflow: hidden; }

/* ==========================================================================
   SECTION 9: THE DIFFERENCE (Light Break)
   ========================================================================= */
.section-comparison-light {
  position: relative;
  padding: 70px 20px;
  background: var(--bg-light-base);
  color: var(--text-light-h);
}

.comp-container {
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin: 0 auto;
}

.comp-category-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #0d8050;
  margin-bottom: 12px;
}

.comp-h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 6vw, 2.3rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-light-h);
  margin-bottom: 28px;
}

.comp-cards-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comp-card {
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-bad {
  background: #ffffff;
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.card-good {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
}

.comp-card-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent-dark);
  margin-bottom: 14px;
}

.comp-items-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-light-p);
  margin: 16px 0 24px;
  text-align: left;
}

.comp-items-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
}

.comp-cross {
  color: #64748b;
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
  line-height: 1.3;
}

.comp-check {
  color: #0d8050;
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
  line-height: 1.3;
}

.comp-arrow-outcome {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--text-light-h);
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.comp-cta-center { margin-top: 28px; }

@media (min-width: 768px) {
  .comp-container {
    max-width: 880px;
  }
  .comp-cards-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
  }
  .comp-card {
    height: 100%;
  }
}

/* ==========================================================================
   SECTION 10: THE FOUR PILLARS OF MODERN BARBERING (4 Play Cards)
   ========================================================================== */
.what-you-learn-section {
  position: relative;
  overflow: hidden;
  padding: var(--section-pad-y) 0;
  background: var(--bg-base);
  border-top: 1px solid var(--border-subtle);
}

.wyl-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.wyl-sticky-col {
  position: sticky;
  top: 100px;
}

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 14px;
  text-align: left;
}

.section-title {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  text-align: left;
}

.section-desc {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--text-secondary);
  max-width: 580px;
  line-height: 1.65;
  text-align: left;
  margin: 0;
}

.wyl-feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.wyl-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.wyl-feature-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-subtle);
  border: 1px solid rgba(27, 227, 146, 0.3);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.wyl-feature-text h3, .wyl-feature-text h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.wyl-feature-text p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.5; }

.wyl-luxury-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.wyl-luxury-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.wyl-luxury-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.7);
}

.wyl-luxury-card-media {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
}

.wyl-luxury-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.wyl-luxury-card:hover .wyl-luxury-card-media img { transform: scale(1.05); }

.wyl-luxury-card-content {
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wyl-card-meta h3 { font-size: 1.2rem; font-weight: 700; }
.wyl-card-meta p { font-size: 0.84rem; color: var(--text-secondary); margin-top: 4px; }

.wyl-card-badge {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-subtle);
  border: 1px solid rgba(27, 227, 146, 0.3);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

@media (max-width: 860px) {
  .wyl-layout-grid { grid-template-columns: 1fr; }
  .wyl-sticky-col { position: static; }
}

/* ==========================================================================
   SECTION 11: INSIDE THE STUDIO VIDEO SHOWCASE
   ========================================================================== */
.video-showcase-section {
  position: relative;
  overflow: hidden;
  padding: var(--section-pad-y) 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.section-header {
  text-align: left;
  max-width: 960px;
  margin: 0 auto clamp(36px, 5vw, 56px);
}

.pricing-section .section-header {
  max-width: 600px;
}

.testi-marquee-section .section-header {
  max-width: 1200px;
}

.curriculum-roadmap-section .section-header {
  max-width: 800px;
}

.founders-section .section-header {
  max-width: 1040px;
}

.faq-section .section-header {
  max-width: 760px;
}

.video-stacked-container {
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 5vw, 48px);
  max-width: 960px;
  margin: 0 auto;
}

.video-stacked-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: clamp(14px, 3vw, 24px);
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.8);
}

.video-player-wrapper {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000;
}

.video-element {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* ==========================================================================
   SECTION 12: COURSE ENROLLMENT (Full Card)
   ========================================================================== */
.pricing-section {
  position: relative;
  overflow: hidden;
  padding: var(--section-pad-y) 0;
  background: var(--bg-base);
  border-top: 1px solid var(--border-subtle);
}

.pricing-card-wrap {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.pricing-card {
  background: var(--bg-card);
  border: 1.5px solid rgba(27, 227, 146, 0.45);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 6vw, 44px);
  text-align: center;
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.8), 0 0 45px rgba(27, 227, 146, 0.15);
  position: relative;
}

.pricing-badge-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #040507;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 16px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 18px rgba(27, 227, 146, 0.4);
  white-space: nowrap;
}

.price-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
}

.price-current {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 4.4rem);
  font-weight: 800;
  color: #ffffff;
}

.price-cadence {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.price-feature-list {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
  padding: 22px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.price-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: #e2e8f0;
}

.price-feature-item .check-icon {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

/* Pricing Advisory Bridge Card */
.pricing-advisory-bridge {
  margin-top: 36px;
  background: linear-gradient(165deg, rgba(16, 22, 19, 0.9) 0%, rgba(7, 9, 8, 0.96) 100%);
  border: 1px solid rgba(61, 220, 151, 0.28);
  border-radius: 16px;
  padding: clamp(20px, 3vw, 32px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 32px rgba(61, 220, 151, 0.08);
}

.pricing-advisory-bridge::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #3ddc97;
}

.advisory-bridge-content {
  flex: 1;
}

.advisory-bridge-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #3ddc97;
  margin-bottom: 8px;
}

.advisory-bridge-title {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px 0;
  letter-spacing: -0.01em;
}

.advisory-bridge-desc {
  font-size: 0.92rem;
  color: #a7b6b0;
  line-height: 1.55;
  margin: 0;
  max-width: 680px;
}

.advisory-bridge-action {
  flex-shrink: 0;
}

.btn-advisory-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(61, 220, 151, 0.12);
  border: 1px solid rgba(61, 220, 151, 0.4);
  border-radius: 999px;
  color: #3ddc97;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.btn-advisory-link:hover {
  background: #3ddc97;
  color: #040507;
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(61, 220, 151, 0.4);
}

.btn-advisory-link .arrow {
  transition: transform 0.2s ease;
}

.btn-advisory-link:hover .arrow {
  transform: translateX(3px);
}

@media (max-width: 767px) {
  .pricing-advisory-bridge {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 20px;
  }
  .btn-advisory-link {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   SECTION 13: TESTIMONIAL MARQUEE WALL
   ========================================================================== */
.testi-marquee-section {
  padding: var(--section-pad-y) 0;
  overflow: hidden;
  position: relative;
}

.testi-viewport {
  overflow: hidden;
  max-height: 600px;
  position: relative;
}

.testi-viewport::before, .testi-viewport::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 100px;
  z-index: 2;
  pointer-events: none;
}

.testi-viewport::before { top: 0; background: linear-gradient(to bottom, var(--bg-base), transparent); }
.testi-viewport::after { bottom: 0; background: linear-gradient(to top, var(--bg-base), transparent); }

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

@media (max-width: 768px) {
  .testi-columns { grid-template-columns: 1fr; }
  .testi-col:nth-child(2), .testi-col:nth-child(3) { display: none; }
  .testi-viewport { max-height: 440px; }
}

.testi-col-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: testi-scroll-up 28s linear infinite;
}

.testi-col:nth-child(2) .testi-col-inner {
  animation-duration: 22s;
  margin-top: -60px;
}

.testi-col:nth-child(3) .testi-col-inner {
  animation-duration: 32s;
  margin-top: -30px;
}

@keyframes testi-scroll-up {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 18px 20px;
}

.testi-card p { font-size: 0.88rem; line-height: 1.6; color: var(--text-secondary); margin-bottom: 12px; }
.testi-card p span { color: #ffffff; font-weight: 600; }
.testi-card footer { display: flex; align-items: center; gap: 10px; }

.testi-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-card-elevated);
  border: 1.5px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
}

.testi-card footer strong { display: block; font-size: 0.84rem; color: #ffffff; }
.testi-card footer small { font-size: 0.72rem; color: var(--text-muted); }

/* ==========================================================================
   SECTION 14: 7-MODULE CURRICULUM ROADMAP
   ========================================================================== */
.curriculum-section {
  position: relative;
  overflow: hidden;
  padding: var(--section-pad-y) 0;
  background: var(--bg-base);
}

.zera-module-roadmap {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.zera-roadmap-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  transition: border-color var(--transition-fast);
}

.zera-roadmap-item:hover {
  border-color: var(--border-hover);
}

.zera-roadmap-num {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-subtle);
  border: 1px solid rgba(27, 227, 146, 0.25);
  padding: 4px 10px;
  border-radius: 6px;
}

.zera-roadmap-title { font-size: 1.05rem; font-weight: 700; color: #ffffff; margin-bottom: 4px; }
.zera-roadmap-desc { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; }

.module-bonus-card {
  background: linear-gradient(135deg, rgba(27, 227, 146, 0.12), rgba(18, 21, 28, 0.9));
  border: 1.5px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 14px;
}

.bonus-badge {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .module-bonus-card { flex-direction: column; align-items: stretch; text-align: left; }
}

/* ==========================================================================
   SECTION 15: FOUNDERS / INSTRUCTORS
   ========================================================================== */
.founders-section {
  position: relative;
  overflow: hidden;
  padding: var(--section-pad-y) 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

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

@media (max-width: 840px) {
  .founders-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

.founder-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth);
}

.founder-card:hover { transform: translateY(-4px); border-color: var(--border-hover); }

.founder-photo {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.founder-info { padding: 22px 18px; }
.founder-name { font-size: 1.3rem; font-weight: 800; margin-bottom: 4px; }
.founder-role { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.founder-bio { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; }
.founder-exp-pill { display: inline-block; margin-top: 12px; font-size: 0.74rem; font-weight: 600; color: var(--text-muted); background: var(--bg-surface); padding: 4px 12px; border-radius: var(--radius-full); }

/* ==========================================================================
   SECTION 16: FAQ ACCORDIONS
   ========================================================================== */
.faq-section {
  position: relative;
  overflow: hidden;
  padding: var(--section-pad-y) 0;
  background: var(--bg-base);
}

.zera-faq-stack {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.zera-faq-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.zera-faq-trigger {
  width: 100%;
  padding: 16px 18px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  text-align: left;
}

.zera-faq-num { font-family: var(--font-mono); font-size: 0.75rem; font-weight: 700; color: var(--accent); }
.zera-faq-q { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: #ffffff; flex-grow: 1; }
.zera-faq-chevron { font-size: 0.7rem; color: var(--text-muted); transition: transform 0.2s ease; }

.zera-faq-card.active .zera-faq-chevron { transform: rotate(180deg); color: var(--accent); }

.zera-faq-body {
  display: none;
  padding: 0 18px 18px 42px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.zera-faq-card.active .zera-faq-body { display: block; }

/* ==========================================================================
   SECTION 17: FINAL CONVERSION CTA (Floating Light Card)
   ========================================================================= */
.final-cta-section {
  position: relative;
  overflow: hidden;
  padding: 80px 20px 100px;
  background: #f4f4f5;
  color: #09090b;
}

.zera-final-card {
  max-width: 600px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 44px 28px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.zera-final-kicker {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent-dark);
  margin-bottom: 14px;
  display: block;
}

.zera-final-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 6vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
  color: #09090b;
  margin-bottom: 14px;
}

.zera-final-desc {
  font-size: 0.95rem;
  color: #52525b;
  line-height: 1.55;
  margin-bottom: 28px;
}

.zera-final-trust {
  margin-top: 18px;
  font-size: 0.78rem;
  color: #71717a;
}

/* ==========================================================================
   SECTION 18: MASTER ATELIER FOOTER
   ========================================================================= */
.footer-master {
  background: #040507;
  border-top: 1px solid var(--border-subtle);
  padding: 70px 0 40px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

@media (max-width: 860px) {
  .footer-top-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 540px) {
  .footer-top-grid { grid-template-columns: 1fr; gap: 24px; }
}

.footer-logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; margin-bottom: 14px; }
.footer-logo-img { height: 26px; }
.footer-logo-text { font-family: var(--font-display); font-size: 0.85rem; font-weight: 800; color: #ffffff; letter-spacing: 0.08em; }
.footer-bio { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 18px; }

.footer-socials { display: flex; gap: 12px; }
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.social-link:hover { color: var(--accent); border-color: var(--accent); }

.footer-col-title { font-family: var(--font-display); font-size: 0.88rem; font-weight: 800; color: #ffffff; margin-bottom: 16px; }
.footer-nav-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-nav-list a { color: var(--text-secondary); text-decoration: none; font-size: 0.82rem; transition: color 0.2s; }
.footer-nav-list a:hover { color: var(--accent); }

.footer-contact-item { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; font-size: 0.82rem; }
.footer-contact-item a { color: var(--text-secondary); text-decoration: none; }
.footer-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(27, 227, 146, 0.08);
  border: 1px solid rgba(27, 227, 146, 0.25);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.pulse-green { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 6px var(--accent); }

.proof-disclaimer-link {
  text-align: center;
  margin-top: 12px;
}

.proof-disclaimer-link a {
  font-size: 0.72rem;
  color: var(--text-light-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-disclaimer-box {
  margin: 30px 0 20px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  text-align: center;
}

.footer-disclaimer-text {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.footer-bottom-bar {
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==========================================================================
   CHECKOUT MODAL DRAWER
   ========================================================================= */
.checkout-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  background: rgba(4, 6, 8, 0.78);
}
.checkout-modal-backdrop.active { opacity: 1; visibility: visible; }
.checkout-modal-drawer {
  width: 100%;
  max-width: 500px;
  background: rgba(10, 13, 16, 0.95);
  border: 1px solid rgba(27, 227, 146, 0.25);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.7), 0 0 32px rgba(27, 227, 146, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  border-radius: 20px 20px 0 0;
  padding: 0;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 92vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(27, 227, 146, 0.3) transparent;
}
.checkout-modal-backdrop.active .checkout-modal-drawer { transform: translateY(0); }
.modal-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: sticky;
  top: 0;
  background: rgba(10, 13, 16, 0.98);
  backdrop-filter: blur(12px);
  z-index: 2;
}
.modal-top-brand { display: flex; align-items: center; gap: 8px; }
.modal-lock-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(27, 227, 146, 0.1);
  border-radius: 6px;
  border: 1px solid rgba(27, 227, 146, 0.2);
}
.m-store { font-family: var(--font-display); font-size: 0.88rem; font-weight: 700; color: #ffffff; letter-spacing: 0.01em; }
.m-close {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}
.m-close:hover { background: rgba(255, 255, 255, 0.14); color: #ffffff; }

/* 2-Step Flow Styles */
.checkout-step-panel { padding: 18px 22px 22px; }
.checkout-step-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(27, 227, 146, 0.08);
  border: 1px solid rgba(27, 227, 146, 0.22);
  border-radius: 100px;
  padding: 4px 12px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 10px;
}
.step-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}
.checkout-step-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
  line-height: 1.2;
}
.checkout-step-sub {
  font-size: 0.82rem;
  color: #94a3b8;
  line-height: 1.4;
  margin-bottom: 14px;
}
.step-form-grid {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.step-form-grid .stripe-field-wrap {
  margin-bottom: 0;
}
.step-form-grid .stripe-field-label {
  margin-bottom: 5px;
}
.step-form-grid .stripe-email-input {
  padding: 10px 13px;
  font-size: 14px;
}
.step-form-grid .stripe-field-error {
  min-height: 0;
  margin-top: 3px;
  font-size: 0.74rem;
}
.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 500px) {
  .form-row-2col {
    grid-template-columns: 1fr;
  }
}
.required-star {
  color: var(--accent);
  margin-left: 2px;
}
.optional-tag {
  font-size: 0.72rem;
  color: rgba(148, 163, 184, 0.6);
  font-weight: normal;
  text-transform: none;
  margin-left: 4px;
}
.phone-input-group {
  display: flex;
  gap: 8px;
  align-items: center;
}
.lead-select-country {
  height: 46px;
  padding: 0 10px;
  background: #060e18;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #e8edf2;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  outline: none;
  cursor: pointer;
  transition: border-color 200ms ease;
}
.lead-select-country:focus {
  border-color: #1be392;
}
.phone-text-input {
  flex: 1;
}
.btn-step-next {
  margin-top: 8px;
}
.step1-privacy-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.72rem;
  color: rgba(148, 163, 184, 0.65);
  margin-top: 14px;
  text-align: center;
  line-height: 1.4;
}

/* Step 2 Order Confirmation & Recap */
.order-recap-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 18px;
}
.recap-box-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 8px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.recap-title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-transform: uppercase;
}
.btn-recap-edit {
  background: transparent;
  border: none;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 6px;
  border-radius: 4px;
  transition: background 150ms ease, color 150ms ease;
}
.btn-recap-edit:hover {
  background: rgba(27, 227, 146, 0.12);
  color: #24f7a5;
}
.recap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 14px;
}
@media (max-width: 440px) {
  .recap-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
.recap-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.recap-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(148, 163, 184, 0.6);
  font-family: var(--font-mono);
}
.recap-value {
  font-size: 0.86rem;
  color: #ffffff;
  font-weight: 500;
  word-break: break-word;
}
.checkout-state { padding: 20px 22px 22px; }
.checkout-state[hidden] { display: none; }
.m-product-summary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.m-prod-details { display: flex; align-items: flex-start; gap: 12px; flex: 1; min-width: 0; }
.m-prod-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(27, 227, 146, 0.08);
  border-radius: 8px;
  border: 1px solid rgba(27, 227, 146, 0.15);
  flex-shrink: 0;
}
.m-prod-text { min-width: 0; }
.m-prod-title { font-size: 0.82rem; font-weight: 600; color: #e8edf2; line-height: 1.3; margin-bottom: 3px; }
.m-prod-sub { font-size: 0.72rem; color: rgba(148, 163, 184, 0.8); }
.m-price-block { text-align: right; flex-shrink: 0; }
.m-price-bold { font-family: var(--font-display); font-size: 1.35rem; font-weight: 800; color: #ffffff; line-height: 1; margin-bottom: 3px; }
.m-currency { font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.5); vertical-align: middle; }
.m-strike-note { font-size: 0.68rem; color: rgba(27, 227, 146, 0.7); }
.stripe-field-wrap { margin-bottom: 16px; }
.stripe-field-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  margin-bottom: 8px;
}
.stripe-field-label svg { opacity: 0.6; flex-shrink: 0; }
.stripe-email-input {
  width: 100%;
  padding: 12px 14px;
  background: #060e18;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #e8edf2;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  transition: border-color 200ms ease, box-shadow 200ms ease;
  outline: none;
  box-sizing: border-box;
}
.stripe-email-input::placeholder { color: #4a5568; }
.stripe-email-input:focus { border-color: #1be392; box-shadow: 0 0 0 3px rgba(27, 227, 146, 0.15); }
#stripe-card-element {
  padding: 12px 14px;
  background: #060e18;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  min-height: 46px;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
#stripe-card-element.StripeElement--focus { border-color: #1be392; box-shadow: 0 0 0 3px rgba(27, 227, 146, 0.15); }
#stripe-card-element.StripeElement--invalid { border-color: #f87171; box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.12); }
.stripe-field-error { font-size: 0.78rem; color: #f87171; margin-top: 6px; min-height: 1.1em; }

/* Stripe Terms Checkbox Styling */
.stripe-terms-wrap {
  margin: 14px 0 16px;
}
.stripe-terms-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}
.stripe-terms-checkbox {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: #1be392;
  cursor: pointer;
  border-radius: 4px;
}
.stripe-terms-text {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.82rem;
  line-height: 1.45;
  color: #9CA3AF;
}
.stripe-terms-link {
  color: #E5E7EB;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 150ms ease;
}
.stripe-terms-link:hover {
  color: #1be392;
}

.btn-stripe-direct {
  width: 100%;
  min-height: 52px;
  background: var(--accent);
  color: #040507;
  border: none;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  margin-bottom: 16px;
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: 0.01em;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}
.btn-stripe-direct:hover:not(:disabled) { transform: translateY(-1px); box-shadow: 0 8px 30px rgba(27, 227, 146, 0.4); background: #24f7a5; }
.btn-stripe-direct:active:not(:disabled) { transform: translateY(0); box-shadow: 0 4px 12px rgba(27, 227, 146, 0.3); }
.btn-stripe-direct:disabled { opacity: 0.65; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-lock-icon { flex-shrink: 0; }
#stripe-pay-btn-text { display: flex; align-items: center; gap: 8px; }
.btn-spinner { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; }
.spinner-ring { width: 18px; height: 18px; border: 2.5px solid rgba(4,5,7,0.3); border-top-color: #040507; border-radius: 50%; animation: uba-spin 0.7s linear infinite; flex-shrink: 0; }
@keyframes uba-spin { to { transform: rotate(360deg); } }
.m-trust-row { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; }
.m-trust-item { display: flex; align-items: center; gap: 5px; font-size: 0.7rem; font-weight: 500; color: rgba(148, 163, 184, 0.85); }
.m-trust-divider { color: rgba(148, 163, 184, 0.3); font-size: 0.7rem; }
.m-card-icons { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 14px; }
.card-brand-icon { width: 38px; height: 24px; border-radius: 4px; flex-shrink: 0; }
.m-powered-stripe { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 0.68rem; color: rgba(148, 163, 184, 0.5); margin: 0; }
.stripe-wordmark { width: 42px; height: 17px; flex-shrink: 0; opacity: 0.6; }
.checkout-processing { display: flex; align-items: center; justify-content: center; min-height: 280px; padding: 40px 22px; }
.processing-content { display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; }
.processing-spinner { width: 56px; height: 56px; position: relative; }
.spin-ring { position: absolute; inset: 0; border: 3px solid rgba(27, 227, 146, 0.15); border-top-color: #1be392; border-radius: 50%; animation: uba-spin 0.9s linear infinite; }
.processing-text { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: #e8edf2; margin: 0; }
.processing-sub { font-size: 0.78rem; color: #64748b; margin: 0; }
.checkout-success { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 32px 22px 28px; gap: 16px; }
.success-icon-wrap { width: 64px; height: 64px; flex-shrink: 0; }
.success-checkmark { width: 100%; height: 100%; display: block; }
.checkmark-circle { stroke-dasharray: 166; stroke-dashoffset: 166; animation: uba-stroke 0.6s cubic-bezier(0.65,0,0.45,1) forwards; }
.checkmark-path { stroke-dasharray: 48; stroke-dashoffset: 48; animation: uba-stroke 0.3s cubic-bezier(0.65,0,0.45,1) 0.4s forwards; }
@keyframes uba-stroke { to { stroke-dashoffset: 0; } }
.success-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: #ffffff; margin: 0; }
.success-body { font-size: 0.88rem; color: #94a3b8; margin: 0; line-height: 1.5; }
.success-body strong { color: #1be392; font-weight: 600; }
.success-steps { width: 100%; display: flex; flex-direction: column; gap: 10px; text-align: left; margin-top: 4px; }
.success-step { display: flex; align-items: flex-start; gap: 12px; background: rgba(27,227,146,0.05); border: 1px solid rgba(27,227,146,0.12); border-radius: 10px; padding: 12px 14px; }
.step-num { display: flex; align-items: center; justify-content: center; width: 22px; height: 22px; min-width: 22px; background: rgba(27,227,146,0.15); color: #1be392; border-radius: 50%; font-size: 0.72rem; font-weight: 700; }
.success-step span:last-child { font-size: 0.8rem; color: #94a3b8; line-height: 1.45; }
.success-dismiss-btn { width: 100%; padding: 13px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; color: rgba(255,255,255,0.7); font-family: var(--font-display); font-size: 0.88rem; font-weight: 600; cursor: pointer; transition: background 180ms ease, color 180ms ease; margin-top: 8px; }
.success-dismiss-btn:hover { background: rgba(255,255,255,0.12); color: #ffffff; }
@media (min-width: 540px) {
  .checkout-modal-backdrop { align-items: center; padding: 20px; }
  .checkout-modal-drawer { border-radius: 20px; max-height: 88vh; }
}
@media (prefers-reduced-motion: reduce) {
  .checkout-modal-drawer { transition: none; }
  .spinner-ring, .spin-ring { animation: none; border-top-color: #1be392; }
  .checkmark-circle, .checkmark-path { animation: none; stroke-dashoffset: 0; }
}
.m-security-note { font-size: 0.72rem; color: var(--text-muted); text-align: center; }
.m-security-note { font-size: 0.72rem; color: var(--text-muted); text-align: center; }

/* ==========================================================================
   MOBILE STICKY THUMB-ZONE BAR
   ========================================================================= */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  background: rgba(6, 7, 9, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--border-subtle);
  padding: 10px 16px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  transform: translateY(120%);
  transition: transform 0.25s ease;
}

.mobile-sticky-bar.visible { transform: translateY(0); }

.sticky-inner {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sticky-price-row { display: flex; align-items: baseline; gap: 6px; }
.s-label { font-size: 0.65rem; color: var(--text-muted); font-weight: 700; }
.s-strike { font-size: 0.8rem; color: var(--text-muted); text-decoration: line-through; }
.s-price { font-family: var(--font-display); font-size: 1.15rem; font-weight: 800; color: #ffffff; }

.btn-sticky-cta {
  background: var(--accent);
  color: #040507;
  border: none;
  border-radius: var(--radius-sm);
  padding: 0 18px;
  min-height: 40px;
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

@media (min-width: 768px) {
  .mobile-sticky-bar {
    display: none !important;
  }
}

/* ==========================================================================
   DEV CONTROL BAR & HEATMAP
   ========================================================================= */
.dev-control-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 42px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 2500;
}

.dev-inner { max-width: 600px; margin: 0 auto; height: 100%; padding: 0 14px; display: flex; align-items: center; justify-content: space-between; }
.dev-tag { font-family: var(--font-mono); font-size: 0.65rem; color: var(--accent); font-weight: 700; }
.dev-actions { display: flex; gap: 6px; }
.dev-btn { background: var(--bg-surface); border: 1px solid var(--border-subtle); color: #ffffff; font-size: 0.7rem; padding: 4px 8px; border-radius: 4px; cursor: pointer; }

.heatmap-overlay {
  position: fixed;
  inset: 0;
  z-index: 2400;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  background: rgba(0, 0, 0, 0.3);
}

.heatmap-overlay.show { opacity: 1; visibility: visible; }
.heatmap-legend { position: absolute; top: 50px; right: 14px; background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-sm); padding: 10px; display: flex; flex-direction: column; gap: 4px; }
.legend-header { font-size: 0.65rem; color: var(--text-muted); font-weight: 700; }
.heat-chip { font-size: 0.68rem; font-weight: 600; padding: 2px 6px; border-radius: 3px; }
.heat-chip.high { background: rgba(239, 68, 68, 0.25); color: #f87171; border-left: 2px solid #ef4444; }
.heat-chip.med { background: rgba(245, 158, 11, 0.25); color: #fbbf24; border-left: 2px solid #f59e0b; }
.heat-chip.low { background: rgba(27, 227, 146, 0.25); color: var(--accent); border-left: 2px solid var(--accent); }
.heat-spot { position: absolute; border-radius: 50%; filter: blur(35px); mix-blend-mode: screen; }
.spot-cta { width: 220px; height: 220px; background: radial-gradient(circle, rgba(255, 0, 0, 0.8) 0%, rgba(255, 120, 0, 0.5) 50%, transparent 100%); top: 50vh; left: 50%; transform: translate(-50%, -50%); }
.spot-h1 { width: 280px; height: 140px; background: radial-gradient(circle, rgba(255, 140, 0, 0.6) 0%, rgba(255, 220, 0, 0.3) 60%, transparent 100%); top: 32vh; left: 50%; transform: translate(-50%, -50%); }


/* ==========================================================================
   NEWSLETTER LEAD CAPTURE POP-UP
   ========================================================================== */
.newsletter-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(4, 5, 7, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s ease;
}

.newsletter-modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.newsletter-modal-card {
  width: 100%;
  max-width: 460px;
  background: var(--bg-card);
  border: 1.5px solid rgba(27, 227, 146, 0.35);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 5vw, 36px) clamp(20px, 4vw, 28px);
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85), 0 0 35px rgba(27, 227, 146, 0.15);
  transform: scale(0.94) translateY(12px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.newsletter-modal-backdrop.active .newsletter-modal-card {
  transform: scale(1) translateY(0);
}

.newsletter-close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.newsletter-close-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.newsletter-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent);
  background: var(--accent-subtle);
  border: 1px solid rgba(27, 227, 146, 0.25);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.newsletter-title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 4vw, 1.55rem);
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 8px;
}

.newsletter-sub {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 20px;
}

.newsletter-input-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter-input {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 16px; /* Prevents iOS auto-zoom */
  transition: border-color var(--transition-fast);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
}

.btn-newsletter-submit {
  width: 100%;
  min-height: 48px;
  background: var(--accent);
  color: #040507;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 18px var(--accent-glow);
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.btn-newsletter-submit:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}

.newsletter-feedback {
  font-size: 0.82rem;
  font-weight: 600;
  margin-top: 10px;
  min-height: 20px;
  text-align: center;
}

.newsletter-feedback.success {
  color: var(--accent);
}

.newsletter-feedback.error {
  color: #f87171;
}

.newsletter-trust {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ==========================================================================
   FLOATING LIQUID GLASS CONCIERGE WIDGET
   ========================================================================== */
.widget-root {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
}

/* Liquid Glass FAB Button with Fluid Glow */
.fab {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  border: 1px solid rgba(61, 220, 151, 0.3);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 0 20px rgba(61, 220, 151, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease, box-shadow 0.25s ease;
  flex-shrink: 0;
}

.fab:hover {
  transform: translateY(-1px) scale(1.04);
  border-color: #3ddc97;
  box-shadow: 0 0 28px rgba(61, 220, 151, 0.4);
}

.fab:focus-visible {
  outline: 3px solid #3ddc97;
  outline-offset: 3px;
}

.fab .liquid-blob {
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at 35% 35%, #3ddc97, transparent 65%);
  opacity: 0.32;
  filter: blur(10px);
  animation: liquidFlow 7s ease-in-out infinite alternate;
}

@keyframes liquidFlow {
  0% { transform: translate(-10%, -10%) rotate(0deg) scale(1); }
  50% { transform: translate(10%, 15%) rotate(180deg) scale(1.2); }
  100% { transform: translate(-5%, 5%) rotate(360deg) scale(0.95); }
}

/* 3-Line Animated Hamburger Icon & Morph to Close X */
.hamburger-lines {
  position: relative;
  z-index: 2;
  width: 20px;
  height: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger-lines .line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #3ddc97;
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease, width 0.3s ease;
  transform-origin: center;
}

.widget-root.is-open .hamburger-lines .line-1,
.fab-hamburger.is-active .hamburger-lines .line-1 {
  transform: translateY(6px) rotate(45deg);
}

.widget-root.is-open .hamburger-lines .line-2,
.fab-hamburger.is-active .hamburger-lines .line-2 {
  opacity: 0;
  transform: scaleX(0);
}

.widget-root.is-open .hamburger-lines .line-3,
.fab-hamburger.is-active .hamburger-lines .line-3 {
  transform: translateY(-6px) rotate(-45deg);
}

/* Concierge Glass Panel */
.panel {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  width: 360px;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(61, 220, 151, 0.24);
  background: linear-gradient(165deg, rgba(16, 22, 19, 0.96) 0%, rgba(7, 9, 8, 0.98) 100%);
  backdrop-filter: blur(28px) saturate(190%);
  -webkit-backdrop-filter: blur(28px) saturate(190%);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6), 0 0 40px rgba(61, 220, 151, 0.15);
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
  flex-direction: column;
}

.panel.open {
  max-height: min(680px, calc(100vh - 90px));
  opacity: 1;
  visibility: visible;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.panel::-webkit-scrollbar {
  width: 4px;
}

.panel::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
}

.panel::-webkit-scrollbar-thumb {
  background: rgba(61, 220, 151, 0.25);
  border-radius: 4px;
}

.panel-head {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.panel-head .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #fff;
  font-family: inherit;
  white-space: nowrap;
}

.panel-head .brand .brand-title {
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3ddc97;
  box-shadow: 0 0 10px #3ddc97;
  animation: pulse 2s infinite;
}

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

.panel-head .close-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 22px;
  cursor: pointer;
  transition: color 0.2s ease;
  padding: 4px;
  line-height: 1;
}

.panel-head .close-btn:hover {
  color: #fff;
}

/* Single Column Navigation List */
.nav-section-single-col {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-section-single-col .nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 10px;
  border-radius: 7px;
  color: #d1dad6;
  font-size: 12.5px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-section-single-col .nav-item:hover {
  background: rgba(61, 220, 151, 0.12);
  color: #3ddc97;
}

.nav-section-single-col .nav-item .arrow {
  opacity: 0.6;
  transform: translateX(0);
  transition: transform 0.2s ease, opacity 0.2s ease;
  font-size: 12px;
  color: #3ddc97;
}

.nav-section-single-col .nav-item:hover .arrow {
  opacity: 1;
  transform: translateX(3px);
}

.nav-section-single-col .nav-item.nav-item-mentorship {
  background: rgba(61, 220, 151, 0.09);
  border-left: 3px solid #3ddc97;
  color: #3ddc97;
  font-weight: 700;
  padding-left: 10px;
}

.nav-section-single-col .nav-item.nav-item-mentorship:hover {
  background: rgba(61, 220, 151, 0.2);
  color: #47f3ad;
}

.nav-section-single-col .nav-item.nav-item-cta {
  background: rgba(61, 220, 151, 0.15);
  border: 1px solid rgba(61, 220, 151, 0.35);
  color: #3ddc97;
  font-weight: 700;
  margin-top: 3px;
}

.nav-section-single-col .nav-item.nav-item-cta:hover {
  background: #3ddc97;
  color: #040507;
}

.nav-section-single-col .nav-item.nav-item-cta:hover .arrow {
  color: #040507;
}

@media (max-width: 767px) {
  .panel {
    top: calc(100% + 12px);
    right: 0;
    left: auto;
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    border-radius: 16px;
  }

  .panel.open {
    max-height: calc(100vh - 84px);
  }

  .nav-section-single-col {
    padding: 6px 10px;
    gap: 2px;
  }

  .nav-section-single-col .nav-item {
    padding: 6px 8px;
    font-size: 12px;
  }
}

/* Chat Container */
.chat-container {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 240px;
  overflow-y: auto;
}

.chat-container::-webkit-scrollbar {
  width: 4px;
}

.chat-container::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.msg {
  max-width: 90%;
  padding: 10px 14px;
  font-size: 13px;
  line-height: 1.5;
  border-radius: 14px;
  animation: fadeIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.msg.assistant {
  background: rgba(61, 220, 151, 0.08);
  border: 1px solid rgba(61, 220, 151, 0.2);
  color: #e2e8e5;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.msg.user {
  background: #3ddc97;
  color: #04120b;
  font-weight: 600;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

/* Input Bar */
.input-bar {
  flex-shrink: 0;
  padding: 12px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  gap: 8px;
  align-items: center;
}

.input-bar input {
  flex: 1;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(61, 220, 151, 0.22);
  border-radius: 10px;
  padding: 10px 12px;
  color: #fff;
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s ease;
}

.input-bar input:focus {
  border-color: #3ddc97;
}

.input-bar input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.input-bar button {
  background: #3ddc97;
  border: none;
  border-radius: 10px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #04120b;
  font-weight: 700;
  font-size: 16px;
  transition: transform 0.2s ease, filter 0.2s ease;
  flex-shrink: 0;
}

.input-bar button:hover {
  filter: brightness(1.1);
  transform: scale(1.05);
}

/* ==========================================================================
   LIQUID GLASS LEAD CAPTURE MODAL (DISCUSSION & QUESTION SUBMISSION)
   ========================================================================== */
.concierge-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4, 5, 7, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100000;
  padding: 20px;
}

.concierge-modal-backdrop.open {
  display: flex;
  animation: modalFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.concierge-glass-dialog {
  background: linear-gradient(165deg, rgba(16, 22, 19, 0.96) 0%, rgba(7, 9, 8, 0.98) 100%);
  border: 1px solid rgba(61, 220, 151, 0.32);
  border-radius: 20px;
  padding: clamp(24px, 4vw, 36px);
  max-width: 480px;
  width: 100%;
  box-shadow: 0 0 50px rgba(61, 220, 151, 0.18);
  position: relative;
  box-sizing: border-box;
}

.concierge-dialog-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color 0.2s ease;
}

.concierge-dialog-close:hover {
  color: #fff;
}

.concierge-dialog-header {
  margin-bottom: 20px;
}

.concierge-dialog-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin: 4px 0 8px 0;
  letter-spacing: -0.01em;
}

.concierge-dialog-sub {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin: 0;
}

.concierge-lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.concierge-form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.concierge-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.concierge-input {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(61, 220, 151, 0.22);
  border-radius: 10px;
  padding: 12px 14px;
  color: #fff;
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
  width: 100%;
}

.concierge-input:focus {
  border-color: #3ddc97;
  box-shadow: 0 0 12px rgba(61, 220, 151, 0.2);
}

.concierge-lead-status {
  font-size: 0.85rem;
  font-weight: 500;
  min-height: 20px;
  margin-top: 4px;
  text-align: center;
}

.concierge-lead-status.success {
  color: #3ddc97;
}

.concierge-lead-status.error {
  color: #f87171;
}

/* ==========================================================================
   DESIGN SYSTEM: ALTERNATING SECTION CONTRAST (SECTION BANDING)
   Rule: Adjacent sections alternate between Dark (#0A0A0A) and Light (#F7F8FA).
   Hard cuts, unified typography, consistent padding/max-width, constant accent.
   ========================================================================== */

/* Dark Section Baseline */
.section-band-dark {
  background-color: #0A0A0A !important;
  color: #FFFFFF;
}

.section-band-dark .section-title,
.section-band-dark .hero-h1,
.section-band-dark .rot-line,
.section-band-dark .tracker-pinned-h2,
.section-band-dark .learn-h2,
.section-band-dark .craft-story-h2,
.section-band-dark .comp-h2,
.section-band-dark .video-showcase-title,
.section-band-dark .curriculum-timeline-title,
.section-band-dark .faq-h2,
.section-band-dark .zera-faq-title {
  color: #FFFFFF !important;
}

.section-band-dark .section-desc,
.section-band-dark .hero-lead,
.section-band-dark .tracker-desc,
.section-band-dark .learn-subhead,
.section-band-dark .craft-story-lead,
.section-band-dark .video-showcase-subtitle,
.section-band-dark .faq-desc {
  color: #9CA3AF !important;
}

/* Light Section Baseline */
.section-band-light {
  background-color: #F7F8FA !important;
  color: #111827 !important;
}

/* Light Section Blueprint Grid & Accents */
.section-band-light .blueprint-grid,
.section-band-light .blueprint-grid-light {
  background-image: 
    linear-gradient(to right, rgba(0, 0, 0, 0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.045) 1px, transparent 1px) !important;
  background-size: 40px 40px !important;
  opacity: 1 !important;
}

.section-band-light .corner-mark {
  border-color: rgba(0, 0, 0, 0.18) !important;
}

/* Light Section Headings */
.section-band-light h1,
.section-band-light h2,
.section-band-light h3,
.section-band-light h4,
.section-band-light .section-title,
.section-band-light .proof-h2,
.section-band-light .master-h2,
.section-band-light .why-h2,
.section-band-light .rot-line,
.section-band-light .browser-section-header,
.section-band-light .wyl-card-title,
.section-band-light .wyl-card-h2,
.section-band-light .price-current,
.section-band-light .advisory-bridge-title,
.section-band-light .founder-name,
.section-band-light .zera-final-title {
  color: #111827 !important;
}

/* Light Section Paragraphs & Subheadings */
.section-band-light p,
.section-band-light .section-desc,
.section-band-light .proof-subhead,
.section-band-light .browser-intro-p,
.section-band-light .master-lead,
.section-band-light .why-lead,
.section-band-light .why-body,
.section-band-light .wyl-card-desc,
.section-band-light .price-feature-item span,
.section-band-light .advisory-bridge-desc,
.section-band-light .founder-bio,
.section-band-light .founder-role,
.section-band-light .zera-final-desc {
  color: #4B5563 !important;
}

/* Light Section Category Tags & Kickers */
.section-band-light .section-tag,
.section-band-light .section-category,
.section-band-light .proof-category-tag,
.section-band-light .learn-category-tag,
.section-band-light .blueprint-micro-tag,
.section-band-light .advisory-bridge-tag,
.section-band-light .diag-step {
  color: #0d8050 !important;
}

/* Light Section Cards Adaptation */
.section-band-light .browser-frame,
.section-band-light .diag-card,
.section-band-light .p-item,
.section-band-light .master-photo-card,
.section-band-light .why-photo-wrap,
.section-band-light .wyl-luxury-card,
.section-band-light .pricing-card,
.section-band-light .pricing-advisory-bridge,
.section-band-light .founder-card,
.section-band-light .zera-final-card {
  background: #FFFFFF !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 8px 28px -4px rgba(0, 0, 0, 0.05) !important;
}

.section-band-light .diag-heading,
.section-band-light .p-item strong,
.section-band-light .wyl-feature-item h3 {
  color: #111827 !important;
}

.section-band-light .diag-text,
.section-band-light .p-item p,
.section-band-light .wyl-feature-item p {
  color: #4B5563 !important;
}

.section-band-light .wyl-feature-icon {
  background: rgba(27, 227, 146, 0.15) !important;
  color: #0d8050 !important;
}

.section-band-light .wyl-stat-num {
  color: #111827 !important;
}

.section-band-light .wyl-stat-label {
  color: #6B7280 !important;
}

.section-band-light .price-cadence,
.section-band-light .zera-final-trust {
  color: #6B7280 !important;
}

.section-band-light .founder-exp-pill {
  background: #F3F4F6 !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  color: #111827 !important;
}

.section-band-light .price-feature-list {
  border-top-color: rgba(0, 0, 0, 0.08) !important;
  border-bottom-color: rgba(0, 0, 0, 0.08) !important;
}

.section-band-light .price-feature-item {
  color: #374151 !important;
}

.section-band-light .price-feature-item .check-icon {
  color: #0d8050 !important;
}

.section-band-light .btn-advisory-link {
  background: rgba(13, 128, 80, 0.08) !important;
  border-color: rgba(13, 128, 80, 0.3) !important;
  color: #0d8050 !important;
}

.section-band-light .wyl-card-badge {
  background: rgba(0, 0, 0, 0.06) !important;
  color: #111827 !important;
  border-color: rgba(0, 0, 0, 0.1) !important;
}

.section-band-light .wyl-card-meta h3 {
  color: #111827 !important;
}

.section-band-light .wyl-card-meta p {
  color: #4B5563 !important;
}

.section-band-light .wyl-luxury-card-content {
  background: #FFFFFF !important;
}

.section-band-light .zera-final-kicker {
  color: #0d8050 !important;
}

/* Section 9 Comparison Dark Adaptation */
.section-comparison-dark {
  position: relative;
  padding: 70px 20px;
  background-color: #0A0A0A !important;
  color: #FFFFFF;
}

.section-comparison-dark .comp-container {
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin: 0 auto;
}

.section-comparison-dark .comp-category-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-comparison-dark .comp-h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 6vw, 2.3rem);
  font-weight: 800;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 28px;
}

.section-comparison-dark .comp-card.card-bad {
  background: #12151C !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: none !important;
}

.section-comparison-dark .comp-card.card-bad .comp-card-label {
  color: #94A3B8 !important;
}

.section-comparison-dark .comp-card.card-bad .comp-items-list {
  color: #9AA1B0 !important;
}

.section-comparison-dark .comp-card.card-bad .comp-cross {
  color: #EF4444 !important;
}

.section-comparison-dark .comp-card.card-bad .comp-arrow-outcome {
  color: #E2E8F0 !important;
  border-top-color: rgba(255, 255, 255, 0.08) !important;
}

.section-comparison-dark .comp-card.card-good {
  background: #161922 !important;
  border: 1px solid rgba(27, 227, 146, 0.35) !important;
  box-shadow: 0 0 35px rgba(27, 227, 146, 0.08) !important;
}

.section-comparison-dark .comp-card.card-good .comp-card-label {
  color: var(--accent) !important;
}

.section-comparison-dark .comp-card.card-good .comp-items-list {
  color: #E2E8F0 !important;
}

.section-comparison-dark .comp-card.card-good .comp-check {
  color: var(--accent) !important;
}

.section-comparison-dark .comp-card.card-good .comp-arrow-outcome {
  color: var(--accent-light) !important;
  border-top-color: rgba(27, 227, 146, 0.2) !important;
}

/* =======================================================================
   UNIFIED LUXURY NAV BUTTON (Formatted to match hero UNIFIED brand lockup)
   ======================================================================= */
.btn-pill-unified {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 24px;
  border-radius: var(--radius-full);
  background: rgba(6, 8, 10, 0.85);
  border: 1px solid rgba(27, 227, 146, 0.4);
  box-shadow: 0 0 16px rgba(27, 227, 146, 0.18), inset 0 0 12px rgba(27, 227, 146, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-pill-unified::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #1be392, transparent);
  box-shadow: 0 0 10px #1be392;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.btn-pill-unified .btn-unified-text {
  font-family: 'Cinzel', 'Outfit', var(--font-display);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffffff 0%, #f4f4f5 35%, #1be392 70%, #ffffff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textMetallicShimmer 4s ease infinite;
  filter: drop-shadow(0 0 12px rgba(27, 227, 146, 0.3));
  white-space: nowrap;
  line-height: 1;
}

@media (hover: hover) {
  .btn-pill-unified:hover {
    transform: translateY(-2px);
    border-color: #1be392;
    background: rgba(10, 15, 12, 0.95);
    box-shadow: 0 0 28px rgba(27, 227, 146, 0.45), inset 0 0 14px rgba(27, 227, 146, 0.15);
  }

  .btn-pill-unified:hover::after {
    left: 10%;
    right: 10%;
    box-shadow: 0 0 16px #1be392;
  }
}

.btn-pill-unified:active {
  transform: translateY(0);
  box-shadow: 0 0 14px rgba(27, 227, 146, 0.25);
}

@media (max-width: 767px) {
  .btn-pill-unified {
    height: 38px;
    padding: 0 16px;
  }

  .btn-pill-unified .btn-unified-text {
    font-size: 0.76rem;
    letter-spacing: 0.14em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn-pill-unified .btn-unified-text {
    animation: none;
    background: #ffffff;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #1be392;
    color: #1be392;
  }
}

