/* ============================================
   ROHAN'S GAMSAT — Premium Redesign
   Design: Dark navy authority + electric blue
   Type:   Figtree (headings) · Inter (body)
   ============================================ */

/* ---- Custom Properties ---- */
:root {
  --navy:       #080F1A;
  --navy-mid:   #0D1827;
  --navy-light: #162236;
  --blue:       #1677BE;
  --blue-hover: #1a8ce0;
  --blue-light: #5BA4E0;
  --blue-glow:  rgba(22, 119, 190, 0.25);
  --blue-accent-soft: rgba(22,119,190,0.2);
  --blue-accent-hover: rgba(22,119,190,0.35);
  --blue-accent-border: rgba(22,119,190,0.4);
  --green:      #10BF7A;
  --green-hover:#0fda8a;
  --green-glow: rgba(16, 191, 122, 0.2);
  --indigo:     #7C6FE0;
  --navy-dark:  #050C16;
  --white:        #FFFFFF;
  --off-white:    #F4F7FB;
  --cream:        #F9F7F3;
  --text:         #0D1117;
  --text-muted:   #6B7280;
  --text-light:   #C9D5E4;
  --text-dark-muted: #B8C7D8;
  --text-dark-soft:  #D7E2EE;
  --border:       rgba(255,255,255,0.08);
  --border-light: rgba(0, 0, 0, 0.08);
  --border-soft:  #E5EAF0;
  --border-strong:#E0E8F2;
  --premium-gold: #D4AF53;
  --premium-gold-deep: #B8922A;
  --premium-ink:  #1A0F00;

  --font-heading: 'Figtree', system-ui, sans-serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.12);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.18);
  --shadow-lg:  0 24px 64px rgba(0,0,0,0.24);

  /* Nav: logo 120px + 14px top + 14px bottom padding */
  --header-height: 148px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
body.menu-open {
  overflow: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
main section[id] {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

/* ---- Skip link ---- */
.skip-link {
  position: absolute;
  top: 12px;
  left: 16px;
  z-index: 1000;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-md);
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}
.skip-link:focus-visible {
  transform: translateY(0);
  outline: 2px solid rgba(22, 119, 190, 0.7);
  outline-offset: 3px;
}

/* ---- Typography ---- */
h1, h2 { font-family: var(--font-heading); line-height: 1.05; letter-spacing: -0.035em; }
h1 { font-size: clamp(2.6rem, 5.5vw, 6rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.5vw, 3.25rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; line-height: 1.3; }
p { line-height: 1.7; color: var(--text-muted); }
em { font-style: italic; color: var(--blue-light); }
strong { font-weight: 700; color: inherit; }

.label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 100px;
  padding: 12px 28px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
  max-width: 100%;
  white-space: normal;
  text-align: center;
  line-height: 1.3;
  overflow-wrap: anywhere;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 24px var(--blue-glow);
}
.btn--primary:hover { background: var(--blue-hover); box-shadow: 0 8px 32px var(--blue-glow); }
.btn:has(.btn__sub) { flex-direction: column; gap: 2px; }
.btn__sub { display: block; font-size: 1rem; font-weight: 600; color: #ffb06b; letter-spacing: 0.01em; }
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn--ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn--outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn--outline:hover { background: var(--blue); color: var(--white); }
.btn--ghost-alt {
  background: rgba(8, 15, 26, 0.04);
  color: var(--navy);
  border-color: rgba(8, 15, 26, 0.12);
}
.btn--ghost-alt:hover {
  background: rgba(8, 15, 26, 0.08);
  border-color: rgba(8, 15, 26, 0.2);
}
.btn--white {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-md);
}
.btn--white:hover { box-shadow: var(--shadow-lg); }
.btn--gold {
  background: linear-gradient(135deg, var(--premium-gold) 0%, var(--premium-gold-deep) 100%);
  color: var(--premium-ink);
  border-color: transparent;
  box-shadow: 0 6px 22px rgba(184, 146, 42, 0.28);
}
.btn--gold:hover {
  background: linear-gradient(135deg, color-mix(in srgb, var(--premium-gold) 90%, white) 0%, var(--premium-gold) 100%);
  color: var(--premium-ink);
  box-shadow: 0 10px 32px rgba(184, 146, 42, 0.34);
}
.btn--nav {
  background: var(--blue);
  color: var(--white);
  padding: 10px 22px;
  font-size: 0.875rem;
  box-shadow: 0 2px 12px var(--blue-glow);
}
.btn--nav:hover { background: var(--blue-hover); transform: none; }
.btn--lg { padding: 16px 36px; font-size: 1.05rem; }

.floating-quiz-cta[hidden] {
  display: none !important;
}
.floating-quiz-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom));
  z-index: 130;
  display: none;
  align-items: flex-start;
  gap: 10px;
  max-width: 320px;
  margin: 0 auto;
  padding: 10px 12px;
  border-radius: 18px;
  border: 1px solid rgba(91, 164, 224, 0.18);
  background: rgba(8, 15, 26, 0.94);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(8, 15, 26, 0.28);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), opacity var(--transition);
}
.floating-quiz-cta:hover {
  box-shadow: 0 20px 40px rgba(8, 15, 26, 0.32);
  border-color: rgba(91, 164, 224, 0.26);
}
.floating-quiz-cta:focus-visible {
  outline: 2px solid rgba(149, 204, 255, 0.9);
  outline-offset: 4px;
}
.floating-quiz-cta__link {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.floating-quiz-cta__dismiss {
  position: absolute;
  top: 8px;
  right: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-light);
  font: inherit;
  font-size: 1rem;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.floating-quiz-cta__dismiss:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}
.floating-quiz-cta__dismiss:focus-visible,
.floating-quiz-cta__link:focus-visible {
  outline: 2px solid rgba(149, 204, 255, 0.9);
  outline-offset: 4px;
}
.floating-quiz-cta__eyebrow {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-light);
}
.floating-quiz-cta__body {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}
.floating-quiz-cta__title {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--white);
}
.floating-quiz-cta__arrow {
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--blue-light);
}

/* ---- Scroll reveal ---- */
.reveal {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: none;
  }

  .floating-quiz-cta {
    animation: floating-quiz-cta-enter 0.5s ease-out;
  }
}
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

.hero .reveal,
.hero .reveal.visible {
  opacity: 1;
  transform: none;
  transition: none;
}

@keyframes floating-quiz-cta-enter {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--transition), backdrop-filter var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}
.nav::after {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(5, 12, 22, 0.76);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
body.menu-open .nav::after {
  opacity: 1;
}
.nav.scrolled {
  background: rgba(8, 15, 26, 0.92);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}
.nav__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
}
.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  color: var(--white);
  margin-right: auto;
  letter-spacing: -0.02em;
}
.nav__logo-r {
  color: var(--blue-light);
}
.nav__logo-img {
  height: 120px;
  width: auto;
  display: block;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark-soft);
  transition: color var(--transition);
}
.nav__links a:hover,
.nav__dropdown-trigger:hover { color: var(--white); }
.nav__links a[aria-current="page"],
.nav__mobile a[aria-current="page"] { color: var(--white); font-weight: 600; }

/* ---- Nav dropdown ---- */
.nav__dropdown-wrap {
  position: relative;
}
.nav__dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  border: none;
  background: none;
  color: var(--text-dark-soft);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  min-height: 44px;
  transition: color var(--transition);
}
.nav__dropdown-caret {
  font-size: 0.65rem;
  opacity: 0.6;
  display: inline-block;
  transition: transform 0.2s ease;
  line-height: 1;
}
.nav__dropdown-wrap:hover .nav__dropdown-caret,
.nav__dropdown-wrap:focus-within .nav__dropdown-caret,
.nav__dropdown-wrap.is-open .nav__dropdown-caret {
  transform: rotate(180deg);
}
.nav__dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(8, 15, 26, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 8px;
  min-width: 290px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  pointer-events: none;
  z-index: 200;
}
/* Bridge gap so menu stays open when moving cursor into it */
.nav__dropdown::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}
.nav__dropdown-wrap:hover .nav__dropdown,
.nav__dropdown-wrap:focus-within .nav__dropdown,
.nav__dropdown-wrap.is-open .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.nav__dropdown-item {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 3px;
  padding: 10px 14px;
  border-radius: 8px;
  transition: background var(--transition);
  color: var(--text-light);
}
.nav__dropdown-item:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-light);
}
.nav__dropdown-item + .nav__dropdown-item {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.nav__dropdown-item-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  overflow-wrap: anywhere;
}
.nav__dropdown-item-desc {
  font-size: 0.775rem;
  color: var(--text-dark-muted);
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.nav__burger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  padding: 0;
}
.nav__burger:focus-visible,
.nav__dropdown-trigger:focus-visible,
.nav__mobile-trigger:focus-visible,
.nav__mobile a:focus-visible,
.nav__dropdown-item:focus-visible {
  outline: 2px solid rgba(149, 204, 255, 0.9);
  outline-offset: 4px;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  position: relative;
  z-index: 2;
  background: #0A1421;
  padding: 8px 24px 24px;
  border-top: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.32);
}
.nav__mobile-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1;
  border: none;
  background: transparent;
  opacity: 0;
  cursor: default;
  transition: opacity var(--transition);
}
.nav__mobile-backdrop.open {
  opacity: 1;
}
.nav__mobile-group {
  display: flex;
  flex-direction: column;
}
.nav__mobile-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 14px 0;
  border: none;
  border-bottom: 1px solid var(--border);
  background: none;
  color: var(--text-dark-soft);
  font: inherit;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: color var(--transition);
}
.nav__mobile-trigger:hover {
  color: var(--white);
}
.nav__mobile-trigger-caret {
  font-size: 0.7rem;
  opacity: 0.72;
  transition: transform 0.2s ease;
}
.nav__mobile-group.is-open .nav__mobile-trigger-caret {
  transform: rotate(180deg);
}
.nav__mobile-submenu {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 8px 0 14px 12px;
  border-bottom: 1px solid var(--border);
}
.nav__mobile-submenu.open {
  display: flex;
}
.nav__mobile-submenu .nav__dropdown-item {
  padding: 10px 0;
  border-radius: 0;
}
.nav__mobile-submenu .nav__dropdown-item + .nav__dropdown-item {
  border-top: 1px solid var(--border);
}
.nav__mobile-submenu .nav__dropdown-item:hover {
  background: transparent;
}
.nav__mobile-submenu .nav__dropdown-item-title {
  font-size: 0.95rem;
}
.nav__mobile-submenu .nav__dropdown-item-desc {
  font-size: 0.8rem;
}
.nav__mobile a {
  color: var(--text-dark-soft);
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.nav__mobile > a:last-child { border-bottom: none; padding-bottom: 0; }
.nav__mobile-submenu .nav__dropdown-item:last-child { padding-bottom: 0; }
.nav__mobile.open { display: flex; }

@media (max-width: 860px) {
  :root { --header-height: 88px; }
  .nav__links, .btn--nav { display: none; }
  .nav__burger { display: flex; }
  .nav__logo-img { height: 60px; }
  .nav.scrolled { backdrop-filter: none; }
  .nav__mobile {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
  }
  body.menu-open .floating-quiz-cta {
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
  }
}

@media (max-width: 640px) {
  body.has-floating-quiz-cta {
    padding-bottom: 88px;
  }
  .floating-quiz-cta {
    display: flex;
    max-width: min(320px, calc(100vw - 32px));
    padding-right: 42px;
  }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__shader {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  background: transparent;
}
.hero__shader::after {
  content: '';
  position: absolute;
  inset: -10%;
  opacity: 0;
  background:
    radial-gradient(circle at 62% 48%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 22%),
    radial-gradient(circle at 82% 72%, rgba(91, 164, 224, 0.1) 0%, rgba(91, 164, 224, 0) 28%);
  filter: blur(42px);
}
.hero__shader canvas {
  display: block;
  width: 100%;
  height: 100%;
}
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: none;
}
.hero__orb {
  display: none !important;
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero__orb--1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(22,119,190,0.18) 0%, transparent 70%);
  top: -200px; right: -200px;
}
.hero__orb--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(16,191,122,0.08) 0%, transparent 70%);
  bottom: -100px; left: -100px;
}

/* ---- Photo column: strictly contained, right half only ---- */
.hero__photo-col {
  position: absolute;
  top: 0;
  right: 0;
  width: 52%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  background: var(--navy);
  /* clip-path instead of overflow:hidden — preserves mix-blend-mode in Safari */
  clip-path: inset(0);
}

.hero__photo-col::before {
  content: '';
  position: absolute;
  top: 15%;
  right: 9%;
  width: 54%;
  height: 50%;
  border-radius: 50%;
  background: transparent;
  filter: blur(54px);
  opacity: 0;
  z-index: 0;
  display: none;
}

.hero__photo-col::after {
  content: '';
  position: absolute;
  top: 21%;
  right: 17%;
  width: 34%;
  height: 32%;
  border-radius: 50%;
  background: transparent;
  filter: blur(26px);
  opacity: 0;
  z-index: 0;
  display: none;
}

.hero__photo {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: top right;
  mix-blend-mode: normal;
  filter:
    brightness(1.03)
    contrast(1.16)
    saturate(1.04)
    drop-shadow(0 20px 56px rgba(38, 108, 229, 0.18));
  opacity: 1;
  z-index: 1;
}

/* Gradient sits INSIDE the column, fades left edge into navy */
.hero__photo-fade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to right,
    rgba(8, 15, 26, 0.96) 0%,
    rgba(8, 15, 26, 0.74) 16%,
    rgba(8, 15, 26, 0.14) 34%,
    rgba(8, 15, 26, 0.02) 46%,
    transparent 60%
  );
}

/* Bottom fade: dissolve photo into page */
.hero__photo-fade::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: transparent;
  display: none;
}

/* Hero inner: left column content, always contained to left 52% */
.hero__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: calc(66px + 72px) 24px 96px;
}

.hero__content {
  max-width: min(500px, 46vw);
}

/* Hero urgency */
.hero__urgency {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--text-light);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
}
.hero__urgency:hover,
.hero__urgency:focus-visible {
  color: var(--white);
}
.hero__urgency-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(16, 191, 122, 0.12);
  flex-shrink: 0;
}
.hero__urgency-text {
  overflow-wrap: anywhere;
}

/* Headline */
.hero__headline {
  max-width: 11ch;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 0.98;
}

/* Sub */
.hero__sub {
  max-width: 34rem;
  margin-bottom: 28px;
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.96);
}

/* Proof row */
.hero__proof {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
  color: var(--off-white);
}
.hero__proof-item {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.hero__proof-separator {
  width: 18px;
  height: 1px;
  background: rgba(255, 255, 255, 0.28);
}

/* CTAs */
.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.hero__ctas .btn {
  flex: 1;
  min-width: 0;
}
.hero__cta-proof {
  display: none;
  width: 100%;
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  line-height: 1.5;
}

/* ============================================
   HERO RESPONSIVE
   ============================================ */

/* Large desktop */
@media (min-width: 1280px) {
  .hero__content { max-width: 600px; }
}

/* Small desktop / laptop */
@media (max-width: 1100px) {
  .hero__content { max-width: 460px; }
}

@media (max-width: 960px) {
  .hero__photo-col { width: 48%; }
  .hero__content { max-width: 430px; }
}

@media (max-width: 860px) {
  .hero {
    min-height: auto;
  }
  .hero__inner {
    padding-top: calc(var(--header-height) + 36px);
    padding-bottom: 56px;
  }
  .hero__content { max-width: 100%; }
  .hero__photo-col { display: none; }
  .hero__grain { display: none; }
  .hero__urgency {
    margin-bottom: 16px;
    font-size: 0.74rem;
    line-height: 1.45;
  }
  .hero__headline {
    max-width: 10ch;
    margin-bottom: 18px;
  }
  .hero__sub {
    font-size: 1rem;
    margin-bottom: 22px;
  }
  .hero__proof {
    gap: 10px;
    margin-bottom: 28px;
  }
  .hero__ctas {
    gap: 12px;
    margin-bottom: 0;
  }
}

/* Phone layout */
@media (max-width: 640px) {
  .hero__headline,
  .hero__sub,
  .hero__proof {
    text-align: center;
  }
  .hero__headline,
  .hero__sub {
    margin-left: auto;
    margin-right: auto;
  }
  .hero__proof {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 28px;
    justify-items: center;
  }
  .hero__proof-separator {
    display: none;
  }
  .hero__proof-item {
    width: 100%;
  }
  .hero__ctas {
    flex-direction: column;
    gap: 10px;
  }
  .hero__ctas .btn--lg {
    width: 100%;
    justify-content: center;
    padding: 15px 20px;
  }
  .hero__cta-proof {
    display: block;
    text-align: center;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .hero__inner {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: calc(var(--header-height) + 26px);
    padding-bottom: 48px;
  }
  .hero__headline {
    max-width: 100%;
    font-size: 2.35rem;
  }
}

/* Very small phones — stack CTA buttons */
@media (max-width: 400px) {
  .hero__headline {
    font-size: 2.2rem;
  }
  .hero__ctas .btn--lg {
    padding: 14px 18px;
  }
}

/* ============================================
   SELECTOR
   ============================================ */
.selector {
  background: var(--cream);
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}

/* Background orbs */
.selector__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.selector__orb {
  display: none;
}
.selector__orb--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(22,119,190,0.18) 0%, transparent 70%);
  top: -120px; left: -100px;
}
.selector__orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(16,191,122,0.12) 0%, transparent 70%);
  bottom: -80px; right: -60px;
}

.selector__header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
}
.selector__header h2 {
  color: var(--text);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

/* ---- Tab toggle bar ---- */
.selector__tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 100px;
  padding: 4px;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 56px;
}

.selector__tab {
  min-width: 0;
  padding: 10px 28px;
  border-radius: 100px;
  border: none;
  background: none;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  white-space: normal;
  text-align: center;
  overflow-wrap: anywhere;
}

.selector__tab:focus-visible {
  outline: 2px solid rgba(22, 119, 190, 0.45);
  outline-offset: 2px;
}

.selector__tab--active {
  background: var(--white);
  color: var(--text);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04);
}

/* ---- Panels ---- */
.selector__panels {
  max-width: 860px;
  margin: 0 auto;
}

.selector__panel {
  display: none;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  padding: 48px 0;
  border-top: 2px solid transparent;
  align-items: start;
}

.selector__panel--active { display: grid; }

.selector__panel--blue   { border-top-color: var(--blue); }
.selector__panel--green  { border-top-color: var(--green); }
.selector__panel--indigo { border-top-color: var(--indigo); }

.selector__panel-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.selector__panel-left h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--text);
  line-height: 1.15;
  margin: 0;
}

.selector__panel-right p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* ---- Green button variant ---- */
.btn--green {
  background: var(--green);
  color: var(--navy);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(16,191,122,0.3);
}
.btn--green:hover {
  background: var(--green-hover);
  box-shadow: 0 8px 32px rgba(16,191,122,0.45);
}

@media (max-width: 640px) {
  .selector__tabs { gap: 2px; padding: 3px; }
  .selector__tab { padding: 9px 18px; font-size: 0.82rem; }
  .selector__panel { grid-template-columns: 1fr; gap: 24px; padding: 36px 0; }
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how {
  padding: 100px 0 112px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

/* Subtle centered radial glow behind content */
.how__bg-glow {
  display: none;
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(22,119,190,0.05) 0%, transparent 70%);
}

.how__header {
  max-width: 700px;
  margin: 0 auto 72px;
  text-align: center;
  position: relative;
}
.how__header .label {
  font-size: 1rem;
  letter-spacing: 0.14em;
  margin-bottom: 18px;
  color: var(--blue);
}
.how__header h2 { color: var(--text); }
.how__intro {
  margin-top: 20px;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---- Vertical timeline ---- */
.how__timeline {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 760px;
}

.how__item {
  display: flex;
  gap: 48px;
  padding: 48px 0;
  border-bottom: 1px solid var(--border-soft);
  align-items: flex-start;
}

.how__item:last-child { border-bottom: none; }

.how__item-num {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  color: var(--blue);
  flex-shrink: 0;
  width: 72px;
  padding-top: 4px;
}

.how__item-body h3 {
  font-size: 1.25rem;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 10px;
}

.how__item-body p {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 640px) {
  .how__item { gap: 28px; padding: 36px 0; }
  .how__item-num { font-size: 2.8rem; width: 52px; }
  .how__item-body h3 { font-size: 1.1rem; }
}

/* ============================================
   COURSES
   ============================================ */
.courses {
  padding: 100px 0 112px;
  background: var(--off-white);
}
.courses__header {
  text-align: center;
  margin-bottom: clamp(52px, 6vw, 72px);
}
.courses__header h2 { color: var(--text); }

/* ---- Three-column compare layout ---- */
.courses__compare {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
  align-items: stretch;
  max-width: 1120px;
  margin: 0 auto 40px;
  padding-top: 18px;
}

/* ---- Base tier card ---- */
.course-tier {
  background: var(--white);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 3vw, 40px) clamp(24px, 2.6vw, 34px) clamp(28px, 2.8vw, 34px);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow var(--transition), transform var(--transition);
}
.course-tier:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

/* ---- Featured (Comprehensive) ---- */
.course-tier--featured {
  background: var(--navy);
  border-color: var(--blue-accent-border);
  box-shadow: 0 24px 64px rgba(8,15,26,0.18), 0 0 0 1px var(--blue-accent-soft);
}
.course-tier--featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 80px rgba(8,15,26,0.24), 0 0 0 1px var(--blue-accent-hover);
}
/* Most Popular badge */
.course-tier__badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  max-width: calc(100% - 32px);
  white-space: normal;
  text-align: center;
  overflow-wrap: anywhere;
}

/* Urgency bar */
.course-tier__urgency {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 20px;
}
.course-tier__urgency-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: courseTierPulse 2s infinite;
}
@keyframes courseTierPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Top block */
.course-tier__top {
  margin-bottom: 28px;
}
.course-tier__type {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 10px;
}
.course-tier h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 18px;
  line-height: 1.25;
  min-height: 3.5rem;
  max-width: 12ch;
  overflow-wrap: anywhere;
}
.course-tier--featured h3 { color: var(--white); }
.course-tier__pricing {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 10px;
}
.course-tier__price {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1;
}
.course-tier--featured .course-tier__price { color: var(--white); }
.course-tier__currency {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}
.course-tier--featured .course-tier__currency { color: var(--text-light); }
.course-tier__was {
  font-size: 1rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-right: 4px;
}
.course-tier__sub {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
  max-width: 28ch;
}
.course-tier--featured .course-tier__sub { color: var(--text-light); }

/* "Everything in Blueprint, plus:" divider */
.course-tier__includes {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Features list */
.course-tier__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 0;
}
.course-tier__features li {
  display: flex;
  align-items: flex-start;
  min-width: 0;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  overflow-wrap: anywhere;
}
.course-tier--featured .course-tier__features li { color: var(--text-light); }
.course-tier__features li svg {
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}
.course-tier__feature--highlight {
  color: var(--text) !important;
  font-weight: 600;
}
.course-tier--featured .course-tier__feature--highlight {
  color: var(--white) !important;
}

/* Value note */
.course-tier__value-note {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
  background: rgba(16,191,122,0.08);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  margin-top: 24px;
}

.course-tier__actions {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* CTA */
.course-tier__cta {
  width: 100%;
  margin-top: 0;
  align-self: stretch;
}

.course-tier__meta {
  min-height: 44px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Guarantee */
.course-tier__guarantee {
  display: flex;
  align-items: flex-start;
  min-width: 0;
  gap: 8px;
  margin-top: 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
  justify-content: center;
  text-align: center;
  line-height: 1.45;
  overflow-wrap: anywhere;
}
.course-tier__guarantee svg { color: var(--green); flex-shrink: 0; }

/* CTA note below button */
.course-tier__cta-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0;
  margin-bottom: 0;
}
.course-tier--featured .course-tier__cta-note { color: var(--text-light); }

/* ---- Premium (Mastery) tier ---- */
.course-tier--premium {
  background: var(--navy-mid);
  border-color: color-mix(in srgb, var(--premium-gold) 30%, transparent);
  box-shadow: 0 20px 56px rgba(8,15,26,0.15), 0 0 0 1px color-mix(in srgb, var(--premium-gold) 12%, transparent);
}
.course-tier--premium:hover {
  box-shadow: 0 28px 72px rgba(8,15,26,0.22), 0 0 0 1px color-mix(in srgb, var(--premium-gold) 28%, transparent);
}
.course-tier__badge--premium {
  background: linear-gradient(135deg, var(--premium-gold) 0%, var(--premium-gold-deep) 100%);
  color: var(--premium-ink);
}
.course-tier--premium .course-tier__type { color: var(--premium-gold); }
.course-tier--premium h3 { color: var(--white); }
.course-tier--premium .course-tier__price { color: var(--white); }
.course-tier--premium .course-tier__currency { color: var(--text-light); }
.course-tier--premium .course-tier__sub { color: var(--text-light); }
.course-tier--premium .course-tier__includes {
  color: var(--premium-gold);
  border-bottom-color: rgba(255,255,255,0.08);
}
.course-tier--premium .course-tier__features li { color: var(--text-light); }
.course-tier--premium .course-tier__feature--highlight { color: var(--white) !important; }
.course-tier--premium .course-tier__cta-note { color: var(--text-light); }

/* Gold CTA button */
.course-tier__cta--gold {
  border: 1.5px solid var(--premium-gold);
  color: var(--navy);
  background: var(--premium-gold);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  border-radius: var(--radius-md);
  padding: 13px 24px;
  text-align: center;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
.course-tier__cta--gold:hover {
  background: color-mix(in srgb, var(--premium-gold) 84%, white);
  color: var(--navy);
  box-shadow: 0 8px 28px color-mix(in srgb, var(--premium-gold) 30%, transparent);
}

/* Pricing transparency note */
.courses__pricing-note {
  text-align: center;
  color: var(--text);
  font-size: 0.95rem;
  max-width: 560px;
  margin: 16px auto 0;
  line-height: 1.6;
}

/* Footer */
.courses__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  max-width: 42rem;
  margin: 36px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--border-light);
}
.courses__footer p {
  margin-bottom: 0;
  color: var(--text);
  max-width: 38rem;
}
.courses__footer-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.courses__footer-note {
  font-size: 0.92rem;
  color: var(--text-muted);
}

@media (max-width: 960px) {
  .courses__compare {
    grid-template-columns: 1fr;
    max-width: 640px;
    padding-top: 8px;
  }
  .course-tier--featured { transform: none; }
  .course-tier--featured:hover { transform: translateY(-4px); }
}

@media (max-width: 640px) {
  .courses {
    padding: 84px 0 96px;
  }
  .courses__header {
    margin-bottom: 44px;
  }
  .course-tier h3 {
    max-width: none;
    min-height: 0;
  }
  .courses__footer-actions .btn {
    width: 100%;
  }
}

/* ============================================
   SOCIAL PROOF
   ============================================ */
.proof {
  position: relative;
  padding: 96px 0;
  background: var(--cream);
  overflow: hidden;
}
.proof__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.proof__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.15;
}
.proof__header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}
.proof__header h2 { color: var(--text); }
.proof__lede {
  max-width: 42rem;
  margin: 18px auto 0;
}

.proof__feature {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: clamp(24px, 4vw, 56px);
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}
.proof__highlight {
  background: var(--white);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 4vw, 44px);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.proof__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
}
.proof__highlight-score {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 9vw, 6.5rem);
  color: var(--blue);
  margin-bottom: 18px;
  line-height: 1;
}
.proof__highlight-quote {
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 28px;
  font-style: italic;
}
.proof__highlight-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  border-top: 1px solid var(--border-light);
  padding-top: 18px;
  margin-top: auto;
}
.proof__highlight-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}
.proof__highlight-tag {
  font-size: 0.75rem;
  color: var(--blue);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.proof__list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
.proof__item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 0 0 18px;
  border-bottom: 1px solid var(--border-light);
}
.proof__item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.proof__item-score {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  line-height: 1;
  color: var(--blue);
}
.proof__item-body p {
  color: var(--text);
  margin-bottom: 8px;
  font-style: italic;
}
.proof__item-body span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.proof__uni-strip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}
.proof__uni-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.proof__unis {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 48px;
  justify-content: center;
  align-items: center;
}

.uni-logo {
  height: 45px;
  width: auto;
  max-width: 225px;
  object-fit: contain;
}

img[loading="lazy"] {
  content-visibility: auto;
}

/* UQ logo is square — give it slightly more height so it reads at the same visual weight */
.uni-logo--sq {
  height: 57px;
  max-width: 57px;
}

@media (max-width: 600px) {
  .proof__unis {
    gap: 20px 48px;
  }
  .uni-logo {
    height: 36px;
    max-width: 180px;
  }
  .uni-logo--sq {
    height: 45px;
    max-width: 45px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .reveal.visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 900px) {
  .proof__feature {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 540px) {
  .proof__item {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .proof__item-score {
    font-size: 2rem;
  }
}

/* ============================================
   FOUNDER
   ============================================ */
.founder {
  padding: 96px 0;
  background: var(--white);
}
.founder__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.founder__image-wrap {
  position: relative;
}
.founder__image-placeholder {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--off-white);
}
.founder__image-placeholder img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}
.founder__image-badge {
  position: absolute;
  bottom: 32px;
  right: -20px;
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.founder__image-badge span {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--blue-light);
  line-height: 1;
}
.founder__image-badge small {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 500;
}

.founder__content { max-width: 560px; }
.founder__content h2 { color: var(--text); margin-bottom: 28px; margin-top: 16px; }
.founder__body p { margin-bottom: 16px; font-size: 1rem; }
.founder__body p:last-child { margin-bottom: 32px; }

.founder__creds {
  display: flex;
  gap: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.founder__cred {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.founder__cred strong {
  font-size: 1rem;
  color: var(--text);
}
.founder__cred span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (max-width: 860px) {
  .founder__inner { grid-template-columns: 1fr; gap: 48px; }
  .founder__image-badge { right: 16px; }
}

/* ============================================
   FREE RESOURCES
   ============================================ */
.resources {
  padding: 96px 0;
  background: var(--off-white);
}
.resources__header {
  text-align: center;
  margin-bottom: 56px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.resources__header .label {
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  margin-bottom: 16px;
}
.resources__header h2 { color: var(--text); margin-bottom: 12px; }
.resources__header p { font-size: 1rem; }

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

.resource-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}
.resource-card__icon {
  width: 48px; height: 48px;
  background: rgba(22,119,190,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 20px;
}
.resource-card h3 { color: var(--text); margin-bottom: 12px; }
.resource-card p { font-size: 0.9rem; margin-bottom: 24px; flex: 1; }
.resource-card__link {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--blue);
  transition: gap var(--transition);
  margin-top: auto;
}
.resource-card:hover .resource-card__link { opacity: 0.8; }

/* ---- Editorial feature layout ---- */
.resources__feature {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

.resources__secondary { padding-top: 4px; }

.resources__secondary-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.resource-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  column-gap: 12px;
  row-gap: 3px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-light);
  text-decoration: none;
  transition: color var(--transition);
}

.resource-link:first-of-type { border-top: 1px solid var(--border-light); }

.resource-link__title {
  grid-column: 1;
  grid-row: 1;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  transition: color var(--transition);
  overflow-wrap: anywhere;
}

.resource-link__desc {
  grid-column: 1;
  grid-row: 2;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.resource-link__arrow {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  color: var(--blue);
  font-size: 1.1rem;
  transition: transform var(--transition);
}

.resource-link:hover .resource-link__title { color: var(--blue); }
.resource-link:hover .resource-link__arrow { transform: translateX(4px); }

/* ---- Slam panel ---- */
.slam {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 56px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 0;
}
.slam__content {
  flex: 1 1 0;
  max-width: 520px;
}
.slam__label {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(109, 212, 166, 0.12);
  border: 1px solid rgba(109, 212, 166, 0.28);
  color: var(--green);
}
.slam__content h3 {
  font-size: 1.75rem;
  color: var(--white);
  margin-bottom: 8px;
}
.slam__content p {
  color: var(--text-light);
  max-width: 440px;
  margin-bottom: 24px;
}
.slam__preview {
  flex: 0 0 min(39%, 360px);
  width: 100%;
  max-width: 360px;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: var(--shadow-md);
  padding: 16px;
}
.slam__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

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

@media (max-width: 760px) {
  .slam {
    flex-direction: column;
    align-items: stretch;
    padding: 40px 32px;
    gap: 28px;
  }
  .slam__content { max-width: none; display: flex; flex-direction: column; align-items: center; text-align: center; }
  .slam__preview {
    flex-basis: auto;
    max-width: none;
    aspect-ratio: 4 / 5;
    padding: 14px;
  }
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: 96px 0;
  background: var(--white);
}
.faq__header {
  text-align: center;
  margin-bottom: 56px;
}
.faq__header h2 { color: var(--text); }

.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq__item {
  border-bottom: 1px solid var(--border-soft);
}
.faq__item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  gap: 16px;
  transition: color var(--transition);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item summary:hover { color: var(--blue); }

.faq__answer {
  padding-bottom: 24px;
}
.faq__answer p { font-size: 0.95rem; line-height: 1.75; color: var(--text); margin-bottom: 1rem; }
.faq__answer p:last-child { margin-bottom: 0; }
.faq__answer a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.14em;
  transition: color 180ms ease;
}
.faq__answer a:hover,
.faq__answer a:focus-visible {
  color: var(--navy);
}

/* ============================================
   BOOK / CTA
   ============================================ */
.book {
  position: relative;
  padding: 120px 0;
  background: var(--navy);
  overflow: hidden;
  text-align: center;
}
.book__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.book__orb {
  display: none;
  position: absolute;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(22,119,190,0.15) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.book__inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}
.book__inner h2 {
  color: var(--white);
  margin: 16px 0 20px;
  font-size: clamp(2rem, 4vw, 3.25rem);
}
.book__inner > p {
  color: var(--text-light);
  margin-bottom: 40px;
  font-size: 1.05rem;
}
.book__label {
  color: var(--blue-light);
}
.book__note {
  margin-top: 20px;
  font-size: 0.875rem;
  color: var(--text-dark-muted);
}
.book__note a { color: var(--blue-light); text-decoration: underline; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy-dark);
  padding: 64px 0 32px;
  border-top: 1px solid var(--border);
}
.footer__top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.footer__logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--white);
  display: block;
  margin-bottom: 12px;
}
.footer__logo-img {
  height: 120px;
  width: auto;
  display: block;
  margin-bottom: 12px;
}
.footer__brand p {
  font-size: 0.9rem;
  color: var(--text-dark-muted);
  max-width: 240px;
  margin-bottom: 24px;
  line-height: 1.6;
}
.footer__socials {
  display: flex;
  gap: 16px;
}
.footer__socials a {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: background var(--transition), color var(--transition);
}
.footer__socials a:hover { background: var(--blue); color: var(--white); }

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__col h3,
.footer__col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}
.footer__col a {
  font-size: 0.875rem;
  color: var(--text-dark-soft);
  transition: color var(--transition);
  overflow-wrap: anywhere;
}
.footer__col a:hover { color: var(--blue-light); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer__bottom p {
  font-size: 0.8rem;
  color: var(--text-dark-muted);
}

@media (max-width: 860px) {
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
  .footer__links { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .footer__links { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* Homepage quiz CTA band */
.homepage-quiz-cta { padding: 72px 0; background: var(--navy); color: var(--white); }
.homepage-quiz-cta .label { color: var(--blue-light); }
.label--start-here { font-size: 0.9rem; letter-spacing: 0.12em; color: var(--blue-light); }
.homepage-quiz-cta__inner {
  display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center;
}
.homepage-quiz-cta__text h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem); margin: 12px 0 12px; line-height: 1.2;
  color: var(--white);
}
.homepage-quiz-cta__text p { margin: 0; color: rgba(255, 255, 255, 0.96); line-height: 1.6; max-width: 520px; }
@media (max-width: 720px) {
  .homepage-quiz-cta__inner { grid-template-columns: 1fr; text-align: center; }
  .homepage-quiz-cta__inner .btn { justify-self: center; }
}

/* ============ Versus comparison ============ */
.versus {
  position: relative;
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--navy-dark);
  color: var(--white);
  overflow: hidden;
}
.versus::before {
  content: '';
  position: absolute;
  inset: -10% -10% auto -10%;
  height: 60%;
  background: radial-gradient(ellipse at 50% 0%, rgba(22, 119, 190, 0.22), transparent 65%);
  pointer-events: none;
}
.versus__head {
  position: relative;
  text-align: center;
  max-width: 780px;
  margin: 0 auto clamp(40px, 6vw, 64px);
}
.versus__eyebrow { color: var(--blue-light); }
.versus__head h2 {
  color: var(--white);
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  line-height: 1.05;
}
.versus__head h2 em { color: var(--blue-light); font-style: italic; }
.versus__lede {
  margin-top: 18px;
  color: var(--text-dark-soft);
  font-size: 1.02rem;
  line-height: 1.6;
}

.versus__board {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
}
.versus__heads {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px;
}
.versus__col-head {
  border-radius: var(--radius-md);
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.versus__col-head--them {
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.22);
}
.versus__col-head--us {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.07));
  border: 1px solid rgba(52, 211, 153, 0.42);
  box-shadow: 0 8px 32px rgba(16, 185, 129, 0.14);
}
.versus__col-name {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dark-muted);
}
.versus__col-head--us .versus__col-name { color: #34d399; }
.versus__col-price {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.versus__rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
}
.versus__row {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  gap: 14px;
  align-items: stretch;
}
.versus__row-label {
  display: flex;
  align-items: center;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark-soft);
  padding: 16px 4px;
}
.versus__row-cell {
  margin: 0;
  border-radius: var(--radius-md);
  padding: 18px 22px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.97rem;
  line-height: 1.5;
}
.versus__row-cell--them {
  background: rgba(220, 38, 38, 0.07);
  border: 1px solid rgba(239, 68, 68, 0.18);
  color: var(--text-dark-muted);
}
.versus__row-cell--us {
  background: rgba(16, 185, 129, 0.09);
  border: 1px solid rgba(52, 211, 153, 0.28);
  color: var(--white);
}
.versus__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.versus__icon svg { width: 13px; height: 13px; }
.versus__icon--x {
  background: rgba(239, 68, 68, 0.14);
  color: #f87171;
}
.versus__icon--check {
  background: rgba(91, 164, 224, 0.22);
  color: var(--blue-light);
}
.versus__footnote {
  margin-top: 22px;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-dark-muted);
}

@media (max-width: 860px) {
  .versus__heads,
  .versus__row {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .versus__heads-spacer { display: none; }
  .versus__row-label {
    grid-column: 1 / -1;
    padding: 14px 4px 4px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.74rem;
    color: var(--blue-light);
  }
  .versus__col-price { font-size: 1.35rem; }
}
@media (max-width: 540px) {
  .versus__heads,
  .versus__row { grid-template-columns: 1fr; }
  .versus__col-head { padding: 14px 18px; }
  .versus__row-cell { padding: 14px 18px; font-size: 0.93rem; }
}
