/* ==========================================================================
   1116 Course — styled to match 1116.info brand palette + typography
   ========================================================================== */

:root {
  /* 1116 brand palette (from 1116.info/) */
  --blue: #6aafd2;
  --blue-light: #8ec5e2;
  --blue-deep: #4a8fb8;
  --blue-glow: rgba(106, 175, 210, 0.3);
  --orange: #e8a87c;
  --orange-deep: #d4905e;
  --pink: #f2a0b5;
  --teal: #4ecdc4;
  --purple: #b07cc6;
  --coral: #ff6b6b;
  --gold: #f0c040;
  --navy: #1a2236;
  --navy-deep: #111827;
  --slate: #64748b;

  /* Surfaces - light-first to match 1116.info */
  --bg-base: #ffffff;
  --bg-surface: #ffffff;
  --bg-raised: #f7f9fc;
  --bg-code: #0f1120;
  --border: #e2e8f0;
  --border-strong: rgba(26, 34, 54, 0.18);
  --text-primary: #1a2233;
  --text-secondary: #4b5566;
  --text-muted: #64748b;
  --surface-1: rgba(26, 34, 54, 0.02);
  --surface-2: rgba(26, 34, 54, 0.04);
  --surface-3: rgba(26, 34, 54, 0.06);
  --nav-bg: rgba(255, 255, 255, 0.92);
  --card-gradient: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  --card-gradient-hover: linear-gradient(180deg, rgba(106, 175, 210, 0.06) 0%, rgba(106, 175, 210, 0.02) 100%);
  --grid-line: rgba(26, 34, 54, 0.03);
  --orb-opacity: 0.14;

  /* Accent aliases — all CTAs + highlights use 1116 blue as primary */
  --accent-teal: var(--teal);
  --accent-purple: var(--purple);
  --accent-blue: var(--blue);
  --accent-emerald: var(--teal);
  --accent-light: var(--blue-light);
  --gradient-primary: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
  --gradient-teal: linear-gradient(135deg, var(--teal) 0%, var(--blue) 100%);
  --gradient-purple-teal: linear-gradient(135deg, var(--purple) 0%, var(--teal) 100%);
  --shadow-glow: 0 0 40px rgba(106, 175, 210, 0.28);

  /* Typography — Geist Sans to match 1116.info */
  --font-sans: 'Geist', 'GeistSans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Geist', 'GeistSans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'Geist Mono', 'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace;

  /* Layout */
  --container: 1140px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
}

/* Dark-theme carryover no longer applied; kept minimal for theme-switcher script compatibility */
:root[data-theme="dark"] {
  --bg-base: #0b0e19;
  --bg-surface: #111827;
  --bg-raised: #1a2236;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text-primary: #f7f8fb;
  --text-secondary: #a6b0c0;
  --text-muted: #6b7a93;
  --surface-1: rgba(255, 255, 255, 0.03);
  --surface-2: rgba(255, 255, 255, 0.04);
  --surface-3: rgba(255, 255, 255, 0.06);
  --nav-bg: rgba(11, 14, 25, 0.75);
  --card-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  --card-gradient-hover: linear-gradient(180deg, rgba(106, 175, 210, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  --grid-line: rgba(255, 255, 255, 0.025);
  --orb-opacity: 0.38;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

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

h1, h2, h3, h4, h5, h6,
.hero-title,
.section-title,
.hero-badge,
.step-badge,
.section-eyebrow,
.nav-logo,
.tool-card h3,
.step-body h3,
.account-name,
.stat-value,
.footer-brand {
  font-family: var(--font-display);
  letter-spacing: -0.01em;
}

::selection {
  background: rgba(123, 94, 167, 0.35);
  color: #fff;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-base);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-raised);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--border-strong);
}

/* ==========================================================================
   Background effects
   ========================================================================== */

.grid-overlay {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 90%);
}

.gradient-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: var(--orb-opacity);
  animation: orb-float 20s ease-in-out infinite;
  transition: opacity 0.4s ease;
}

.gradient-orb-1 {
  width: 500px;
  height: 500px;
  top: -100px;
  left: -150px;
  background: radial-gradient(circle, rgba(123, 94, 167, 0.5) 0%, transparent 70%);
  animation-delay: 0s;
}

.gradient-orb-2 {
  width: 600px;
  height: 600px;
  top: 20%;
  right: -200px;
  background: radial-gradient(circle, rgba(58, 125, 232, 0.35) 0%, transparent 70%);
  animation-delay: -7s;
}

.gradient-orb-3 {
  width: 450px;
  height: 450px;
  bottom: 10%;
  left: 30%;
  background: radial-gradient(circle, rgba(61, 214, 163, 0.3) 0%, transparent 70%);
  animation-delay: -14s;
}

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(50px, -30px) scale(1.05); }
  50% { transform: translate(-30px, 40px) scale(0.95); }
  75% { transform: translate(30px, 20px) scale(1.02); }
}

/* ==========================================================================
   Scroll progress
   ========================================================================== */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--gradient-primary);
  z-index: 1000;
  width: 0%;
  transition: width 0.15s ease-out;
  box-shadow: 0 0 20px rgba(123, 94, 167, 0.6);
}

/* ==========================================================================
   Navigation
   ========================================================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 24px;
  transition: all 0.3s ease;
}

.nav.scrolled {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: var(--nav-bg);
  border-bottom: 1px solid var(--border);
  padding: 14px 24px;
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
}

.nav-logo svg {
  color: var(--accent-teal);
  filter: drop-shadow(0 0 10px rgba(61, 214, 163, 0.45));
}

.nav-links {
  display: flex;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.nav-links a:hover {
  color: var(--text-primary);
  background: var(--surface-3);
}

.nav-links .nav-signin {
  color: var(--accent-teal);
  border: 1px solid rgba(61, 214, 163, 0.35);
  margin-left: 6px;
}

.nav-links .nav-signin:hover {
  background: rgba(61, 214, 163, 0.1);
  border-color: rgba(61, 214, 163, 0.55);
  color: var(--accent-teal);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.theme-toggle {
  display: inline-flex;
  gap: 2px;
  padding: 3px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.theme-btn {
  width: 34px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 7px;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  padding: 0;
}

.theme-btn:hover {
  color: var(--text-secondary);
}

.theme-btn.active {
  background: var(--accent-teal);
  color: #07080f;
  box-shadow: 0 2px 12px rgba(61, 214, 163, 0.35);
}

.theme-btn svg {
  width: 16px;
  height: 16px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-primary);
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
}

.menu-toggle:hover {
  background: var(--surface-3);
  border-color: var(--border-strong);
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  visibility: hidden;
}

.mobile-drawer.open {
  pointer-events: auto;
  visibility: visible;
}

.mobile-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-drawer.open .mobile-drawer-backdrop {
  opacity: 1;
}

.mobile-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 86vw);
  background: var(--bg-surface);
  border-left: 1px solid var(--border);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(0.32, 0.72, 0, 1);
  overflow-y: auto;
}

.mobile-drawer.open .mobile-drawer-panel {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
  min-width: 0;
}

.mobile-drawer-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.mobile-drawer-close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-primary);
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
}

.mobile-drawer-close:hover {
  background: var(--surface-3);
  border-color: var(--border-strong);
}

.mobile-drawer-close svg {
  width: 18px;
  height: 18px;
}

.mobile-drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0;
  margin: 0;
  min-width: 0;
}

.mobile-drawer-links a {
  display: flex;
  align-items: center;
  padding: 16px 14px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.2s ease, transform 0.2s ease;
  min-height: 48px;
}

.mobile-drawer-links a:hover {
  background: var(--surface-2);
  transform: translateX(4px);
}

.mobile-drawer-cta {
  justify-content: center;
  margin-top: auto;
}

body.drawer-open {
  overflow: hidden;
}

.mobile-drawer-theme {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 14px 18px;
  border-top: 1px solid var(--border);
}

.mobile-drawer-theme-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.mobile-drawer-theme .theme-toggle {
  width: 100%;
  justify-content: stretch;
}

.mobile-drawer-theme .theme-btn {
  flex: 1;
  height: 40px;
}

@media (max-width: 820px) {
  .nav-links {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .nav > .nav-inner > .nav-right > .theme-toggle {
    display: none;
  }
  .nav-right {
    gap: 10px;
  }
}

@media (min-width: 821px) {
  .mobile-drawer {
    display: none;
  }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 24px 80px;
  z-index: 1;
}

.hero-content {
  max-width: 900px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(123, 94, 167, 0.1);
  border: 1px solid rgba(123, 94, 167, 0.25);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #c8bdf0;
  margin-bottom: 32px;
  animation: fade-in-up 0.8s ease-out;
}

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

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

.hero-title {
  font-size: clamp(44px, 7vw, 84px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
  animation: fade-in-up 0.8s 0.1s ease-out both;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  position: relative;
  display: inline-block;
}

.hero-subtitle {
  font-size: clamp(17px, 2vw, 22px);
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 44px;
  line-height: 1.55;
  animation: fade-in-up 0.8s 0.2s ease-out both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 72px;
  animation: fade-in-up 0.8s 0.3s ease-out both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow:
    0 4px 20px rgba(123, 94, 167, 0.35),
    0 0 0 0 rgba(123, 94, 167, 0.5);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 30px rgba(123, 94, 167, 0.5),
    0 0 40px rgba(58, 125, 232, 0.3);
}

.btn-secondary {
  background: var(--surface-3);
  color: var(--text-primary);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: var(--surface-3);
  border-color: var(--border-strong);
  transform: translateY(-2px);
  filter: brightness(1.2);
}

:root[data-theme="light"] .btn-secondary:hover {
  filter: brightness(0.96);
}

.hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  padding: 24px 44px;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  animation: fade-in-up 0.8s 0.4s ease-out both;
}

.stat {
  text-align: center;
}

.stat-value {
  font-size: 36px;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border-strong);
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   Sections
   ========================================================================== */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.section-overview {
  padding-top: 40px;
}

.section-header {
  max-width: 780px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-purple);
  margin-bottom: 16px;
  padding: 6px 14px;
  background: rgba(123, 94, 167, 0.1);
  border: 1px solid rgba(123, 94, 167, 0.2);
  border-radius: 100px;
}

.step-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
  padding: 6px 14px;
  background: var(--gradient-primary);
  border-radius: 100px;
  box-shadow: 0 0 20px rgba(123, 94, 167, 0.4);
}

.section-title {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.section-lead {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto;
}

.section-footnote {
  text-align: center;
  color: var(--text-muted);
  margin-top: 40px;
  font-size: 14px;
}

/* ==========================================================================
   Final CTA panel
   ========================================================================== */

.section-final-cta {
  padding: 60px 0 40px;
}

.final-cta-card {
  max-width: 780px;
  margin: 0 auto;
  padding: 64px 48px;
  background:
    radial-gradient(ellipse 80% 100% at 50% 0%, rgba(61, 214, 163, 0.14), transparent 70%),
    radial-gradient(ellipse 80% 100% at 50% 100%, rgba(123, 94, 167, 0.12), transparent 70%),
    var(--surface-1);
  border: 1px solid rgba(61, 214, 163, 0.32);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(61, 214, 163, 0.6) 0%, rgba(123, 94, 167, 0.5) 50%, rgba(58, 125, 232, 0.6) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.65;
}

.final-cta-badge {
  display: inline-block;
  padding: 8px 18px;
  margin-bottom: 24px;
  background: rgba(61, 214, 163, 0.12);
  border: 1px solid rgba(61, 214, 163, 0.4);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-teal);
}

.final-cta-card .section-title {
  margin-bottom: 18px;
}

.final-cta-card .section-lead {
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.btn-large {
  padding: 18px 36px;
  font-size: 16px;
}

@media (max-width: 680px) {
  .final-cta-card {
    padding: 48px 28px;
  }
}

/* ==========================================================================
   FAQ section
   ========================================================================== */

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item[open] {
  border-color: rgba(123, 94, 167, 0.35);
  background: rgba(123, 94, 167, 0.05);
}

.faq-item summary {
  padding: 22px 26px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  list-style: none;
  position: relative;
  padding-right: 56px;
  transition: color 0.2s ease;
  letter-spacing: -0.005em;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 300;
  color: var(--accent-teal);
  transition: transform 0.3s ease;
  line-height: 1;
  font-family: var(--font-sans);
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-item summary:hover {
  color: var(--accent-teal);
}

.faq-item p {
  padding: 0 26px 22px;
  color: var(--text-secondary);
  line-height: 1.65;
  font-size: 15px;
  margin: 0 0 12px;
}

.faq-item p:last-child {
  margin-bottom: 0;
}

.faq-item strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* ==========================================================================
   Problem section
   ========================================================================== */

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

.problem-card {
  padding: 32px 28px;
  background: var(--card-gradient);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
  transition: all 0.35s ease;
}

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

.problem-num {
  font-family: var(--font-mono, monospace);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-purple);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

.problem-card h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}

.problem-card p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) {
  .problem-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }
}

/* ==========================================================================
   Audience section
   ========================================================================== */

.audience-card {
  max-width: 880px;
  margin: 0 auto;
  padding: 56px 48px;
  background:
    radial-gradient(ellipse 60% 80% at 20% 20%, rgba(61, 214, 163, 0.06), transparent 70%),
    radial-gradient(ellipse 60% 80% at 80% 80%, rgba(123, 94, 167, 0.08), transparent 70%),
    var(--surface-1);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  text-align: center;
}

.audience-card .section-title {
  margin-bottom: 18px;
}

.audience-card .section-lead {
  margin-bottom: 40px;
}

.audience-split {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  text-align: left;
  margin-bottom: 32px;
}

.audience-col {
  padding: 24px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.audience-col-for {
  border-color: rgba(61, 214, 163, 0.25);
  background: rgba(61, 214, 163, 0.04);
}

.audience-col-not {
  border-color: rgba(167, 94, 94, 0.22);
  background: rgba(167, 94, 94, 0.03);
}

.audience-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-teal);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(61, 214, 163, 0.2);
}

.audience-label-not {
  color: #d98b8b;
  border-bottom-color: rgba(167, 94, 94, 0.25);
}

.audience-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.audience-col li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 8px 0;
  line-height: 1.5;
}

.audience-footnote {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  font-style: italic;
  color: var(--accent-teal);
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

@media (max-width: 780px) {
  .audience-card {
    padding: 44px 28px;
  }
  .audience-split {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ==========================================================================
   Instructors grid
   ========================================================================== */

/* People sections: instructors + hosts, same card size */

.people-group {
  margin-bottom: 36px;
}

.people-group:last-child {
  margin-bottom: 0;
}

.people-group-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-teal);
  text-align: center;
  margin-bottom: 24px;
  padding: 8px 18px;
  background: rgba(61, 214, 163, 0.08);
  border: 1px solid rgba(61, 214, 163, 0.25);
  border-radius: 100px;
  display: inline-block;
  width: auto;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.people-grid {
  display: grid;
  gap: 20px;
  margin: 0 auto;
}

.people-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 720px;
}

.people-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1080px;
}

.person-card {
  padding: 36px 30px 32px;
  background: var(--card-gradient);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.35s ease;
  backdrop-filter: blur(20px);
}

.person-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  background: var(--card-gradient-hover);
}

.person-card-instructor {
  background:
    radial-gradient(ellipse 100% 80% at 50% 0%, rgba(61, 214, 163, 0.08), transparent 65%),
    var(--card-gradient);
  border-color: rgba(61, 214, 163, 0.32);
}

.person-card-instructor:hover {
  border-color: rgba(61, 214, 163, 0.5);
  box-shadow: 0 24px 60px -24px rgba(61, 214, 163, 0.35);
}

.person-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 13px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.person-tag-teal {
  background: rgba(61, 214, 163, 0.12);
  border: 1px solid rgba(61, 214, 163, 0.4);
  color: var(--accent-teal);
}

.person-tag-blue {
  background: rgba(58, 125, 232, 0.12);
  border: 1px solid rgba(58, 125, 232, 0.45);
  color: #7da8f0;
}

.person-avatar {
  width: 96px;
  height: 96px;
  margin: 0 auto 20px;
}

.person-avatar svg {
  width: 100%;
  height: 100%;
}

.person-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.person-role {
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent-teal);
  margin-bottom: 18px;
}

.person-bio {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .people-grid-2,
  .people-grid-3 {
    grid-template-columns: 1fr;
    max-width: 460px;
  }
  .person-card {
    padding: 32px 26px 28px;
  }
}

/* ==========================================================================
   Timeline (Your four hours)
   ========================================================================== */

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
}

.timeline-grid::before {
  content: '';
  position: absolute;
  top: 58px;
  left: 4%;
  right: 4%;
  height: 2px;
  background: linear-gradient(90deg, rgba(123, 94, 167, 0.3), rgba(61, 214, 163, 0.4), rgba(58, 125, 232, 0.3));
  z-index: 0;
}

.timeline-card {
  position: relative;
  padding: 32px 24px 28px;
  background: var(--card-gradient);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
  transition: all 0.35s ease;
  text-align: center;
  z-index: 1;
}

.timeline-card:hover {
  transform: translateY(-6px);
  border-color: rgba(61, 214, 163, 0.3);
  background: var(--card-gradient-hover);
}

.timeline-hour {
  display: inline-block;
  padding: 6px 14px;
  background: var(--gradient-teal);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #07080f;
  margin-bottom: 18px;
  box-shadow: 0 4px 14px rgba(61, 214, 163, 0.35);
}

.timeline-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.timeline-outcome {
  font-size: 14.5px;
  color: var(--accent-teal);
  font-weight: 600;
  margin-bottom: 14px;
  min-height: 44px;
}

.timeline-detail {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 980px) {
  .timeline-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .timeline-grid::before {
    display: none;
  }
}

@media (max-width: 560px) {
  .timeline-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Modules grid (What you'll build)
   ========================================================================== */

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

.module-card {
  position: relative;
  padding: 36px 32px 32px;
  background: var(--card-gradient);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
  transition: all 0.35s ease;
  overflow: hidden;
}

.module-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-purple-teal);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.module-card:hover {
  transform: translateY(-4px);
  border-color: rgba(123, 94, 167, 0.35);
  background: var(--card-gradient-hover);
  box-shadow: 0 18px 50px -18px rgba(123, 94, 167, 0.3);
}

.module-card:hover::before {
  opacity: 1;
}

.module-num {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-teal);
  margin-bottom: 12px;
  letter-spacing: 0.1em;
}

.module-num-bonus {
  display: inline-block;
  padding: 4px 12px;
  background: var(--gradient-primary);
  color: #fff;
  border-radius: 100px;
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  box-shadow: 0 4px 14px rgba(123, 94, 167, 0.4);
}

.module-card-bonus {
  grid-column: 1 / -1;
  border-color: rgba(123, 94, 167, 0.45);
  background:
    radial-gradient(ellipse 60% 100% at 30% 0%, rgba(123, 94, 167, 0.12), transparent 65%),
    radial-gradient(ellipse 60% 100% at 80% 100%, rgba(61, 214, 163, 0.08), transparent 65%),
    var(--card-gradient);
  padding: 44px 40px;
  position: relative;
}

.module-card-bonus::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(135deg, rgba(123, 94, 167, 0.5) 0%, rgba(61, 214, 163, 0.4) 50%, rgba(58, 125, 232, 0.5) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.55;
}

.module-card-bonus .module-title {
  font-size: 30px;
  margin-top: 4px;
}

.module-card-bonus .module-outcome {
  font-size: 17px;
  max-width: 720px;
}

.module-card-bonus .module-example {
  max-width: 720px;
}

@media (max-width: 720px) {
  .module-card-bonus {
    padding: 36px 28px;
  }
  .module-card-bonus .module-title {
    font-size: 24px;
  }
}

.module-title {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.module-outcome {
  font-size: 16px;
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.55;
  margin-bottom: 14px;
}

.module-example {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
  font-style: italic;
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

@media (max-width: 780px) {
  .modules-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Pricing section
   ========================================================================== */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  padding: 40px 32px 32px;
  background: var(--card-gradient);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

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

.pricing-card-featured {
  border-color: rgba(123, 94, 167, 0.4);
  background:
    linear-gradient(180deg, rgba(123, 94, 167, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  box-shadow: 0 20px 60px -20px rgba(123, 94, 167, 0.3);
}

.pricing-card-premium {
  border-color: rgba(61, 214, 163, 0.45);
  background:
    radial-gradient(ellipse 80% 100% at 50% 0%, rgba(61, 214, 163, 0.1), transparent 60%),
    linear-gradient(180deg, rgba(123, 94, 167, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
  box-shadow: 0 24px 72px -24px rgba(61, 214, 163, 0.35);
}

.pricing-card-premium::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(135deg, #3dd6a3 0%, #7b5ea7 50%, #3a7de8 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.6;
}

.pricing-ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  background: var(--gradient-primary);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(123, 94, 167, 0.4);
}

.pricing-ribbon-premium {
  background: var(--gradient-teal);
  box-shadow: 0 4px 16px rgba(61, 214, 163, 0.45);
}

.pricing-header {
  margin-bottom: 24px;
}

.pricing-tier {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-teal);
  margin-bottom: 10px;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.pricing-price span {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 4px;
}

.pricing-tagline {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}

.pricing-features li {
  position: relative;
  padding: 10px 0 10px 26px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
  border-bottom: 1px solid var(--border);
}

.pricing-features li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233dd6a3' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.pricing-features li strong {
  color: var(--text-primary);
  font-weight: 600;
}

.pricing-reversal {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 12px 14px;
  margin-bottom: 20px;
  background: rgba(61, 214, 163, 0.08);
  border: 1px solid rgba(61, 214, 163, 0.25);
  border-radius: 10px;
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.pricing-reversal svg {
  color: var(--accent-teal);
  flex-shrink: 0;
  margin-top: 2px;
}

.btn-pricing {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

.pricing-footnote {
  text-align: center;
  color: var(--text-muted);
  font-size: 13.5px;
  margin-top: 32px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
}

/* ==========================================================================
   Waitlist form
   ========================================================================== */

.waitlist-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 44px;
  background:
    radial-gradient(ellipse 80% 100% at 30% 0%, rgba(123, 94, 167, 0.12), transparent 70%),
    radial-gradient(ellipse 80% 100% at 70% 100%, rgba(61, 214, 163, 0.1), transparent 70%),
    var(--surface-1);
  border: 1px solid rgba(123, 94, 167, 0.28);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.waitlist-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #7b5ea7, #3dd6a3, transparent);
  opacity: 0.75;
}

.waitlist-card .section-header {
  margin-bottom: 36px;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.form-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-optional {
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-muted);
  opacity: 0.7;
}

.form-field input,
.form-field select {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text-primary);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  transition: all 0.2s ease;
  width: 100%;
  min-width: 0;
}

.form-field input::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: rgba(61, 214, 163, 0.5);
  background: var(--surface-3);
  box-shadow: 0 0 0 4px rgba(61, 214, 163, 0.1);
}

.form-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23b4b6c5' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

.btn-waitlist {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
  padding: 16px 26px;
  font-size: 16px;
}

.form-privacy {
  font-size: 12.5px;
  color: var(--text-muted);
  text-align: center;
  margin: 4px 0 0;
  line-height: 1.55;
}

.waitlist-success {
  text-align: center;
  padding: 40px 20px;
}

.success-icon {
  color: var(--accent-teal);
  margin-bottom: 18px;
  filter: drop-shadow(0 0 12px rgba(61, 214, 163, 0.4));
}

.waitlist-success h3 {
  font-size: 28px;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.waitlist-success p {
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 420px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .waitlist-card {
    padding: 44px 28px;
  }
}

.inline-pdf-link {
  color: var(--accent-teal);
  text-decoration: none;
  border-bottom: 1px dashed rgba(61, 214, 163, 0.5);
  font-weight: 600;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.inline-pdf-link:hover {
  color: #58e3b4;
  border-bottom-color: #58e3b4;
}

/* ==========================================================================
   Reveal on scroll
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.section-podcast {
  padding: 60px 0 80px;
}

.podcast-card {
  padding: 56px 48px;
  background:
    radial-gradient(ellipse 60% 80% at 20% 20%, rgba(123, 94, 167, 0.1), transparent 70%),
    radial-gradient(ellipse 60% 80% at 80% 80%, rgba(61, 214, 163, 0.08), transparent 70%),
    var(--surface-1);
  border: 1px solid rgba(123, 94, 167, 0.22);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.podcast-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #3dd6a3, #7b5ea7, transparent);
  opacity: 0.7;
}

.podcast-content .section-eyebrow {
  margin-bottom: 14px;
}

.podcast-content .section-title {
  font-size: clamp(28px, 3.5vw, 40px);
  margin-bottom: 14px;
  text-align: left;
}

.podcast-content .section-lead {
  font-size: 15.5px;
  text-align: left;
  margin: 0;
  max-width: none;
}

.podcast-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.podcast-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.25s ease;
  min-width: 0;
}

.podcast-link:hover {
  transform: translateY(-2px);
  border-color: rgba(61, 214, 163, 0.4);
  background: var(--surface-3);
  box-shadow: 0 10px 30px -10px rgba(61, 214, 163, 0.25);
}

.podcast-link svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--accent-teal);
}

.podcast-link-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.podcast-link-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-family: var(--font-display);
}

.podcast-link-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  font-family: var(--font-display);
  letter-spacing: -0.01em;
}

@media (max-width: 820px) {
  .podcast-card {
    grid-template-columns: 1fr;
    padding: 44px 32px;
    gap: 32px;
  }
  .podcast-content .section-title {
    text-align: center;
  }
  .podcast-content .section-lead {
    text-align: center;
  }
}

.footer {
  padding: 48px 0 60px;
  border-top: 1px solid var(--border);
}

.footer-content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
}

.footer-brand svg {
  color: var(--accent-teal);
}

.footer-brand a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-brand a:hover {
  color: var(--accent-teal);
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 13.5px;
  text-align: center;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-secondary);
  transition: all 0.2s ease;
}

.footer-social a:hover {
  color: var(--accent-teal);
  border-color: rgba(61, 214, 163, 0.4);
  background: var(--surface-3);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 17px;
  height: 17px;
}

@media (max-width: 700px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    gap: 18px;
  }
  .footer-tagline {
    order: 3;
  }
}

/* ==========================================================================
   Mobile adjustments
   ========================================================================== */

@media (max-width: 700px) {
  .section {
    padding: 70px 0;
  }
  .section-header {
    margin-bottom: 48px;
  }
  .hero {
    padding: 120px 20px 60px;
  }
  .hero-title {
    line-height: 1.05;
  }
  .hero-subtitle {
    padding: 0 6px;
  }
  .hero-stats {
    gap: 20px;
    padding: 18px 22px;
  }
  .stat-value {
    font-size: 30px;
  }
  .stat-divider {
    height: 28px;
  }
  .step {
    flex-direction: column;
    gap: 18px;
    padding: 24px 0;
  }
  .ready-card {
    padding: 48px 24px;
  }
  .tools-grid,
  .accounts-grid,
  .connect-grid {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .btn {
    justify-content: center;
    width: 100%;
  }
  .tool-card {
    padding: 28px 22px;
  }
  .tool-cost {
    top: 18px;
    right: 18px;
  }
  .container {
    padding: 0 20px;
  }
  .platform-toggle {
    max-width: 100%;
  }
  .step-number {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }
  .step-body h3 {
    font-size: 20px;
  }
  .ideas-grid {
    gap: 8px;
  }
  .idea {
    font-size: 12.5px;
    padding: 8px 14px;
  }
}

@media (max-width: 420px) {
  .hero-stats {
    gap: 14px;
    padding: 16px 18px;
  }
  .stat-value {
    font-size: 26px;
  }
  .stat-divider {
    display: none;
  }
  .stat {
    flex: 1;
  }
}

/* ==========================================================================
   1116 brand overrides — dark hero + dark footer + light body sections.
   Matches 1116.info/ visual identity. Appended so it cascades over earlier
   definitions without needing an audit of the 2000-line upstream.
   ========================================================================== */

/* Nav: transparent on top, darkens on scroll — matches 1116.info */
.nav {
  background: transparent !important;
  backdrop-filter: none !important;
  border-bottom: none !important;
}
.nav.scrolled {
  background: rgba(17, 24, 39, 0.97) !important;
  box-shadow: 0 1px 12px rgba(0,0,0,0.2) !important;
  backdrop-filter: blur(12px) !important;
}
.nav .nav-logo { color: var(--navy) !important; }
.nav.scrolled .nav-logo,
.nav.scrolled .nav-links a,
.nav.scrolled .menu-toggle { color: #fff !important; }
.nav.scrolled .nav-logo { color: #fff !important; }
.nav.scrolled .nav-logo img { filter: brightness(0) invert(1); }

/* Hero: dark navy gradient like 1116.info hero */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 60%, #0a0f1e 100%) !important;
  color: #fff !important;
  padding-top: 140px !important;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(106,175,210,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -100px; left: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,168,124,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-title { color: #fff !important; }
.hero-title .gradient-text {
  background: linear-gradient(135deg, var(--blue-light), var(--pink), var(--orange)) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
}
.hero-subtitle { color: rgba(255,255,255,0.72) !important; }
.hero-badge {
  background: rgba(106,175,210,0.18) !important;
  border: 1px solid rgba(106,175,210,0.35) !important;
  color: #fff !important;
}
.hero-badge-dot { background: #fff !important; }
.hero-stats .stat-value,
.hero-stats .stat-label { color: #fff !important; }
.hero-stats .stat-label { color: rgba(255,255,255,0.6) !important; }
.hero-stats .stat-divider { background: rgba(255,255,255,0.14) !important; }
.scroll-progress { background: var(--blue) !important; }

/* Gradient orbs / grid overlay from old theme — tone down on light body */
.gradient-orb { opacity: 0.08 !important; }
.grid-overlay { opacity: 0.4 !important; }

/* Primary CTA: solid 1116 blue with glow pulse */
@keyframes cta-glow-1116 {
  0%, 100% { box-shadow: 0 2px 12px var(--blue-glow); }
  50% { box-shadow: 0 4px 24px var(--blue-glow), 0 0 40px rgba(106,175,210,0.15); }
}
.btn-primary,
.btn.btn-primary {
  background: var(--blue) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 2px 12px var(--blue-glow) !important;
  animation: cta-glow-1116 3s ease-in-out infinite !important;
}
.btn-primary:hover,
.btn.btn-primary:hover {
  background: var(--blue-deep) !important;
  animation: none !important;
  box-shadow: 0 4px 20px var(--blue-glow) !important;
}
.btn-secondary,
.btn.btn-secondary {
  background: transparent !important;
  color: rgba(255,255,255,0.85) !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
}
.btn-secondary:hover,
.btn.btn-secondary:hover {
  border-color: rgba(255,255,255,0.4) !important;
  color: #fff !important;
  background: rgba(255,255,255,0.04) !important;
}

/* Body sections on light — override dark-era surface colors */
body { background: #ffffff !important; color: var(--navy) !important; }
main, .section { background: #ffffff; }
.section-problem,
.section-audience { background: #f7f9fc !important; }

/* Cards on light body */
.timeline-card,
.module-card,
.problem-card,
.person-card,
.pricing-card,
.audience-card,
.faq-item,
.final-cta-card {
  background: #ffffff !important;
  border: 1px solid var(--border) !important;
  box-shadow: 0 1px 2px rgba(26, 34, 54, 0.03);
}
.module-card-bonus {
  background: linear-gradient(180deg, rgba(106,175,210,0.05) 0%, rgba(242,160,181,0.03) 100%) !important;
  border-color: rgba(106,175,210,0.25) !important;
}
.pricing-card-featured {
  background: #ffffff !important;
  border-color: var(--blue) !important;
  box-shadow: 0 8px 28px rgba(106,175,210,0.18) !important;
}
.pricing-ribbon { background: var(--blue) !important; color: #fff !important; }
.pricing-ribbon-premium { background: var(--pink) !important; color: var(--navy) !important; }

/* Section headings + eyebrows */
.section-eyebrow {
  color: var(--blue) !important;
  letter-spacing: 0.08em;
}
.section-title { color: var(--navy) !important; }
.section-lead { color: var(--slate) !important; }

/* Timeline / module / pricing card text */
.timeline-hour,
.module-num,
.problem-num { color: var(--blue) !important; }
.timeline-title,
.module-title,
.problem-card h3,
.pricing-tier,
.person-name { color: var(--navy) !important; }
.timeline-outcome,
.module-outcome { color: var(--navy) !important; font-weight: 500 !important; }
.timeline-detail,
.module-example,
.problem-card p,
.pricing-tagline,
.person-role,
.person-bio { color: var(--slate) !important; }
.pricing-price { color: var(--navy) !important; }
.pricing-price span { color: var(--slate) !important; }
.pricing-features li { color: var(--navy) !important; }
.pricing-features li strong { color: var(--navy) !important; }

/* Person tags */
.person-tag-teal { background: rgba(78,205,196,0.12) !important; color: var(--teal) !important; }
.person-tag-blue { background: rgba(106,175,210,0.12) !important; color: var(--blue-deep) !important; }

/* Audience section */
.audience-col-for ul li { color: var(--navy) !important; }
.audience-col-not ul li { color: var(--slate) !important; }
.audience-label { color: var(--teal) !important; }
.audience-label-not { color: var(--coral) !important; }
.audience-footnote { color: var(--slate) !important; }

/* FAQ */
.faq-item summary { color: var(--navy) !important; }
.faq-item p { color: var(--slate) !important; }
.faq-item strong { color: var(--navy) !important; }
.faq-item[open] summary,
.faq-item summary:hover { color: var(--blue) !important; }

/* Final CTA */
.final-cta-card { background: linear-gradient(135deg, rgba(106,175,210,0.06), rgba(242,160,181,0.04)) !important; border-color: rgba(106,175,210,0.2) !important; }
.final-cta-badge { background: var(--blue) !important; color: #fff !important; }

/* Footer: dark navy like 1116.info footer */
.footer {
  background: var(--navy) !important;
  color: rgba(255,255,255,0.8) !important;
  border-top: 1px solid rgba(255,255,255,0.06) !important;
}
.footer-brand a { color: #fff !important; }
.footer-brand img { filter: brightness(0) invert(1); }
.footer-tagline { color: rgba(255,255,255,0.55) !important; }

/* People grid single-card layout */
.people-grid-1 {
  display: flex;
  justify-content: center;
}
.people-grid-1 .person-card {
  max-width: 420px;
}

/* Mobile drawer */
.mobile-drawer-panel { background: #ffffff !important; }
.mobile-drawer-title,
.mobile-drawer-links a { color: var(--navy) !important; }
.mobile-drawer-links a:hover { color: var(--blue) !important; }

/* Pricing reversal (refund note) */
.pricing-reversal { color: var(--slate) !important; border-color: var(--border) !important; }
.pricing-footnote { color: var(--slate) !important; }

/* Updated nav styling to match 1116.info: wordmark logo + blue CTA login */
.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
  transition: filter 0.2s;
}
.nav-logo-sub {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: -0.01em;
  margin-left: 2px;
  transition: color 0.2s;
}
.nav:not(.scrolled) .nav-logo-img { filter: none; } /* hero is dark, logo is already white */
.nav-login {
  background: var(--blue);
  color: #fff !important;
  font-size: 13.5px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 8px;
  margin-left: 8px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 2px 12px var(--blue-glow);
  animation: cta-glow-1116 3s ease-in-out infinite;
}
.nav-login:hover {
  background: var(--blue-deep);
  transform: translateY(-1px);
  animation: none;
}

/* Real instructor photo */
.person-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.person-avatar {
  overflow: hidden;
  border-radius: 50%;
}

/* ─── Round-4 patches ─────────────────────────────────────────────── */

/* Pro Framework BONUS label: readable white text on gradient */
.module-num-bonus,
.module-num.module-num-bonus {
  color: #fff !important;
  background: linear-gradient(135deg, var(--blue) 0%, var(--pink) 100%) !important;
  box-shadow: 0 4px 14px rgba(106, 175, 210, 0.35) !important;
  font-size: 11px !important;
  padding: 6px 14px !important;
}

/* Nav Home button — small icon + label */
.nav-home {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
}
.nav-home svg { opacity: 0.75; }
.nav-home:hover svg { opacity: 1; }

/* Hero badge: match 1116 landing exactly — pill with subtle blue bg */
.hero-badge {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  background: rgba(106, 175, 210, 0.18) !important;
  border: 1px solid rgba(106, 175, 210, 0.35) !important;
  border-radius: 100px !important;
  padding: 6px 16px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #fff !important;
  letter-spacing: 0.04em;
  text-transform: none !important;
  margin-bottom: 24px !important;
}

/* Footer structure matching 1116.info */
.footer {
  background: var(--navy-deep) !important;
  padding: 60px 0 32px !important;
  border-top: 1px solid rgba(255,255,255,0.06) !important;
  color: rgba(255,255,255,0.4) !important;
}
.footer .container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.footer-top {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 24px;
}
.footer-logo { height: 38px; opacity: 0.85; display: block; width: auto; filter: none !important; }
.footer-nav {
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
}
.footer-link {
  font-size: 13px;
  color: rgba(255,255,255,0.4) !important;
  transition: color 0.2s;
  text-decoration: none;
}
.footer-link-home:hover { color: var(--blue) !important; }
.footer-link-modules:hover { color: var(--pink) !important; }
.footer-link-pricing:hover { color: var(--orange) !important; }
.footer-link-faq:hover { color: var(--teal) !important; }
.footer-cta {
  font-size: 13px; font-weight: 600;
  color: #fff !important;
  background: var(--blue) !important;
  border-radius: 8px;
  padding: 8px 20px;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
}
.footer-cta:hover { background: var(--blue-deep) !important; transform: translateY(-1px); }
.footer-bottom {
  margin-top: 48px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: rgba(255,255,255,0.25) !important;
}
.footer-privacy {
  color: rgba(255,255,255,0.25) !important;
  transition: color 0.2s;
  text-decoration: none;
}
.footer-privacy:hover { color: rgba(255,255,255,0.5) !important; }
.footer-bottom span { color: rgba(255,255,255,0.25) !important; }

/* ─── Round-5 patches: enhanced modules + photo rotation ───────────── */

/* Dev stack chip row on Module 01 */
.stack-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 12px;
}
.stack-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: var(--bg-raised) !important;
  border: 1px solid var(--border) !important;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy) !important;
  letter-spacing: -0.005em;
  transition: border-color 0.2s, color 0.2s;
}
.stack-chip:hover {
  border-color: var(--blue) !important;
  color: var(--blue) !important;
}

/* Pro Framework bonus features grid */
.bonus-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 32px;
  margin: 24px 0 16px;
}
@media (max-width: 640px) {
  .bonus-features { grid-template-columns: 1fr; gap: 16px; }
}
.bonus-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.bonus-feature-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(106,175,210,0.14), rgba(242,160,181,0.1));
  color: var(--blue) !important;
}
.bonus-feature-icon svg { width: 16px; height: 16px; }
.bonus-feature-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy) !important;
  margin-bottom: 2px;
}
.bonus-feature-body {
  font-size: 13px;
  color: var(--slate) !important;
  line-height: 1.55;
}

/* Jake photo rotation (mirror 1116.info pattern) */
.person-avatar-rotating {
  position: relative;
  overflow: hidden;
  border-radius: 50%;
}
.person-photo-rotate {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  border-radius: 50%;
}
.person-photo-rotate.active {
  opacity: 1;
}

/* Link under instructor bio */
.person-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue) !important;
  transition: color 0.2s;
  text-decoration: none;
}
.person-link:hover { color: var(--blue-deep) !important; }
.person-link svg { transition: transform 0.2s; }
.person-link:hover svg { transform: translate(2px, -2px); }

/* ─── Round-6 patches: nav align + instructor card sizing + mobile ─── */

/* Home nav link: match sibling nav-link styling exactly (no icon, white, same alignment) */
.nav-home {
  display: inline-flex !important;
  align-items: center;
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 13.5px !important;
  font-weight: 500 !important;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.nav-home:hover { color: #fff !important; }
.nav.scrolled .nav-home { color: rgba(255, 255, 255, 0.7) !important; }
.nav.scrolled .nav-home:hover { color: #fff !important; }

/* Instructor card sizing — bigger, more readable */
.people-grid-1 {
  display: flex;
  justify-content: center;
}
.people-grid-1 .person-card.person-card-instructor {
  max-width: 680px !important;
  width: 100%;
  padding: 40px 44px !important;
  text-align: center;
}
.people-grid-1 .person-avatar,
.people-grid-1 .person-avatar-rotating {
  width: 180px !important;
  height: 180px !important;
  margin: 0 auto 24px;
}
.people-grid-1 .person-name {
  font-size: 28px !important;
  margin-bottom: 6px;
}
.people-grid-1 .person-role {
  font-size: 15px !important;
  margin-bottom: 14px;
}
.people-grid-1 .person-bio {
  font-size: 16px !important;
  line-height: 1.6;
  max-width: 540px;
  margin: 0 auto 8px;
}
.people-grid-1 .person-link {
  margin-top: 18px;
  font-size: 14px !important;
}
.people-grid-1 .person-tag {
  font-size: 12px !important;
  margin-bottom: 18px;
}

@media (max-width: 640px) {
  .people-grid-1 .person-card.person-card-instructor {
    padding: 32px 24px !important;
  }
  .people-grid-1 .person-avatar,
  .people-grid-1 .person-avatar-rotating {
    width: 140px !important;
    height: 140px !important;
  }
  .people-grid-1 .person-name { font-size: 24px !important; }
  .people-grid-1 .person-bio { font-size: 15px !important; }
}

/* ─── Mobile optimization ─── */
@media (max-width: 900px) {
  .nav-links { display: none !important; }
  .menu-toggle { display: inline-flex !important; }
  .hero-title { font-size: 40px !important; line-height: 1.06; }
  .hero-subtitle { font-size: 15px !important; }
  .section-title { font-size: 30px !important; }
  .section { padding: 60px 0 !important; }
  .container { padding: 0 20px !important; }
  .modules-grid,
  .pricing-grid {
    grid-template-columns: 1fr !important;
  }
  .module-card-bonus { grid-column: 1 !important; }
  .bonus-features { grid-template-columns: 1fr !important; gap: 16px !important; }
  .footer-top { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-nav { gap: 16px; flex-wrap: wrap; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 34px !important; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .pricing-card { padding: 28px 22px !important; }
}

/* Mobile drawer: match 1116.info drawer aesthetic (dark navy, white text) */
.mobile-drawer-panel {
  background: var(--navy) !important;
  color: #fff !important;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}
.mobile-drawer-title,
.mobile-drawer-links a {
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 500;
}
.mobile-drawer-links a:hover { color: var(--blue-light) !important; }
.mobile-drawer-close svg { stroke: #fff !important; }

/* ─── Course mobile drawer: match 1116.info full-screen overlay exactly ─── */
.mobile-drawer {
  display: none !important;
  position: fixed !important;
  top: 0 !important; left: 0 !important; right: 0 !important; bottom: 0 !important;
  z-index: 101 !important;
}
.mobile-drawer.open {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 24px !important;
  background: rgba(17, 24, 39, 0.98) !important;
  backdrop-filter: blur(16px) !important;
}
.mobile-drawer-backdrop { display: none !important; }
.mobile-drawer-panel {
  background: transparent !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  gap: 24px !important;
  width: auto !important;
  max-width: none !important;
  height: auto !important;
  border: none !important;
  box-shadow: none !important;
}
.mobile-drawer-header {
  position: absolute !important;
  top: 20px !important;
  right: 24px !important;
  width: auto !important;
  padding: 0 !important;
  border-bottom: none !important;
}
.mobile-drawer-title { display: none !important; }
.mobile-drawer-close {
  background: none !important;
  border: none !important;
  color: #fff !important;
  cursor: pointer;
  padding: 0 !important;
}
.mobile-drawer-close svg {
  width: 28px !important;
  height: 28px !important;
  stroke: #fff !important;
}
.mobile-drawer-links {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 4px !important;
}
.mobile-drawer-links li { list-style: none; }
.mobile-drawer-links a {
  font-size: 18px !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.8) !important;
  padding: 10px 24px !important;
  transition: color 0.2s;
  display: inline-block;
  text-decoration: none !important;
}
.mobile-drawer-links a:hover { color: #fff !important; }
.mobile-drawer-cta {
  font-size: 16px !important;
  padding: 12px 32px !important;
  margin-top: 8px !important;
}

/* ─── Round-7 patches: nav parity with 1116.info root ─────────────────
   The course nav should render identically to 1116.info:
   - flat <a> elements inside .nav-links (no <li> bullets, no chip padding)
   - 32px gap, 13.5px links, rgba(255,255,255,0.7) color, white on hover
   - Log in is the CTA pill (already styled by .nav-login above) */
.nav-links {
  display: flex !important;
  align-items: center !important;
  gap: 32px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.nav-links a {
  font-size: 13.5px !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.7) !important;
  letter-spacing: -0.01em !important;
  padding: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  transition: color 0.2s !important;
}
.nav-links a:hover {
  color: #fff !important;
  background: transparent !important;
}
/* Log in CTA pill keeps its own padding + bg; re-assert over the reset above */
.nav-links a.nav-login {
  padding: 8px 20px !important;
  border-radius: 8px !important;
  background: var(--blue) !important;
  color: #fff !important;
  font-weight: 600 !important;
}
.nav-links a.nav-login:hover {
  background: var(--blue-deep) !important;
  color: #fff !important;
}

/* ─── Round-8: restore mobile nav hide (Round-7's !important clobbered the
     earlier @media rule; re-assert it after the desktop rules so it wins) ─── */
@media (max-width: 900px) {
  .nav-links { display: none !important; }
  .menu-toggle { display: inline-flex !important; }
}
