﻿/* ===================================================================
   BBA Landing Page â€” Blue Â· Black Â· White
   Cloned from: bba.betterbodyacademy.com/men---thank-you-page-...

   COLOR SYSTEM
   Black:  #05070d (base)  Â· #0c1220 (panel)  Â· #131b2e (raised card)
   Blue:   #3b82f6 (primary) Â· #60a5fa (light) Â· #1e3a8a (deep)
   White:  #ffffff Â· #cbd5e1 (muted) Â· #64748b (subtle)
=================================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: #05070d;
  color: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: #3b82f6; color: #ffffff; }

/* ============ LAYOUT ============ */
.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section { padding: 40px 0; position: relative; scroll-margin-top: 80px; }

/* ============ BG GLOW ============ */
.bg-glow {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 15% 10%, rgba(59,130,246,0.20), transparent 55%),
    radial-gradient(circle at 85% 90%, rgba(30,58,138,0.25), transparent 55%),
    radial-gradient(circle at 50% 50%, rgba(96,165,250,0.05), transparent 70%),
    linear-gradient(180deg, #05070d 0%, #0a1020 100%);
  z-index: -1;
}

/* ============ SHARED TYPOGRAPHY ============ */
.eyebrow {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 0.25em;
  color: #60a5fa;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-label {
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 18px;
  letter-spacing: 0.3em;
  color: #cbd5e1;
  margin-bottom: 16px;
}
.section-headline {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-align: center;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.section-headline.left { text-align: left; }
.section-sub {
  text-align: center;
  font-size: clamp(16px, 1.8vw, 18px);
  color: #cbd5e1;
  margin-bottom: 48px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.grad {
  background: linear-gradient(135deg, #38B6FF 0%, #60a5fa 50%, #38B6FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 18px;
  letter-spacing: 0.15em;
  padding: 18px 40px;
  border-radius: 10px;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
}
.btn-primary {
  background: #00AEEF;
  color: #ffffff;
  box-shadow: 0 8px 32px rgba(0, 174, 239, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 44px rgba(0, 174, 239, 0.55);
  filter: brightness(1.1);
}
.section-apply-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.section-apply-cta .btn-primary {
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
}
.btn-platform {
  background: #0c1220;
  color: #ffffff;
  border: 1px solid rgba(59, 130, 246, 0.4);
  font-size: 16px;
  padding: 16px 28px;
}
.btn-platform:hover {
  background: #131b2e;
  border-color: #3b82f6;
  transform: translateY(-2px);
}
.platform-icon {
  display: inline-block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #3b82f6;
  color: #ffffff;
  font-size: 14px;
  line-height: 22px;
  text-align: center;
}
.cta-center { text-align: center; margin-top: 24px; }

/* ============ HERO ============ */
.hero {
  padding: 130px 0 60px;
  text-align: center;
  position: relative;
}
@media (max-width: 720px) {
  .hero { padding: 90px 0 40px; }
}
/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}
.navbar.scrolled {
  background: rgba(5, 7, 13, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: rgba(59, 130, 246, 0.18);
}
.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 14px 24px;
  gap: 24px;
}
.nav-inner > .nav-logo-link { justify-self: start; }
.nav-inner > .nav-links { justify-self: center; }
.nav-inner > button { justify-self: end; }
.nav-logo-link { display: inline-flex; align-items: center; }
.nav-logo {
  height: 70px;
  width: auto;
  filter: drop-shadow(0 0 14px rgba(59, 130, 246, 0.4));
  transition: height 0.3s ease;
}
.navbar.scrolled .nav-logo { height: 52px; }
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.18em;
  color: #cbd5e1;
  text-transform: uppercase;
  transition: color 0.2s ease;
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  transition: width 0.25s ease;
}
.nav-links a:hover { color: #ffffff; }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }

/* ============ APPLY NOW â€” beam border pill ============ */
.nav-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  padding: 0 28px;
  border-radius: 9999px;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  white-space: nowrap;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  margin-left: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.nav-cta:hover {
  transform: scale(1.02);
  box-shadow: 0 0 40px -10px rgba(59, 130, 246, 0.5);
}

/* Border beam layer (1px rotating blue arc) */
.nav-cta .cta-border {
  position: absolute;
  inset: 0;
  z-index: -2;
  border-radius: 9999px;
  overflow: hidden;
  padding: 1px;
}
.nav-cta .cta-border-spin {
  position: absolute;
  inset: -100%;
  background: conic-gradient(from 0deg, transparent 0deg 300deg, #3b82f6 360deg);
  animation: beam-spin 3s linear infinite;
}
.nav-cta .cta-border-fill {
  position: absolute;
  inset: 1px;
  border-radius: 9999px;
  background: #050505;
}

/* Inner content area (2px inset from outer button) */
.nav-cta .cta-inner {
  position: absolute;
  top: 2px;
  right: 2px;
  bottom: 2px;
  left: 2px;
  z-index: -1;
  border-radius: 9999px;
  background: #00AEEF;
  overflow: hidden;
}
.nav-cta .cta-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(30, 58, 138, 0.2), transparent);
}
.nav-cta .cta-lines {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  mix-blend-mode: plus-lighter;
  background-image: repeating-linear-gradient(90deg, #fff, #fff 1px, transparent 1px, transparent 8px);
  background-size: 24px 100%;
  animation: lines-slide 1.5s linear infinite;
}
.nav-cta .cta-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 66%;
  height: 50%;
  background: rgba(59, 130, 246, 0.2);
  filter: blur(24px);
  border-radius: 9999px;
  pointer-events: none;
  transition: background 0.5s ease;
}
.nav-cta:hover .cta-glow {
  background: rgba(59, 130, 246, 0.4);
}

/* Foreground content */
.nav-cta .cta-text {
  position: relative;
  z-index: 10;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s ease;
}
.nav-cta:hover .cta-text {
  color: #ffffff;
}
.nav-cta .cta-icon {
  position: relative;
  z-index: 10;
  width: 16px;
  height: 16px;
  margin-left: 8px;
  transition: transform 0.3s ease;
}
.nav-cta:hover .cta-icon {
  transform: translateX(4px);
}
.nav-cta::after { display: none; }

@keyframes beam-spin {
  to { transform: rotate(360deg); }
}
@keyframes lines-slide {
  0% { background-position: 0 0; }
  100% { background-position: 24px 0; }
}

@media (max-width: 720px) {
  .nav-inner { padding: 10px 16px; gap: 12px; }
  .nav-logo { height: 50px; }
  .navbar.scrolled .nav-logo { height: 40px; }
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 13px; letter-spacing: 0.14em; }
  .nav-cta { height: 46px; padding: 0 20px; font-size: 13px; margin-left: 4px; }
  .nav-cta .cta-icon { width: 14px; height: 14px; margin-left: 6px; }
}
@media (max-width: 520px) {
  .nav-logo { height: 42px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .nav-cta { height: 44px; padding: 0 18px; }
}
.hero-headline {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: clamp(18px, 5.2vw, 64px);
  line-height: 1.06;
  letter-spacing: 0.005em;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.hero-headline .line {
  display: block;
  white-space: nowrap;
}
.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: #cbd5e1;
  max-width: 720px;
  margin: 0 auto 36px;
  line-height: 1.6;
}
.hero-image {
  margin-top: 56px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(59, 130, 246, 0.25);
  border: 1px solid rgba(59, 130, 246, 0.2);
}
.hero-photo,
.hero-video {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  background: #0a0b14;
}

/* ============ AS SEEN IN ============ */
.as-seen-in {
  padding: 24px 0;
  border-top: 1px solid rgba(59, 130, 246, 0.1);
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}
.logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}
.logo-slot {
  width: 180px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12, 18, 32, 0.6);
  border: 1px dashed rgba(96, 165, 250, 0.3);
  border-radius: 8px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  letter-spacing: 0.2em;
  color: #64748b;
}

/* ============ PAIN POINTS ============ */
.why-eyebrow {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #38B6FF;
  text-align: center;
  margin-bottom: 14px;
}
.why-headline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #ffffff;
  text-align: center;
  max-width: 22ch;
  margin: 0 auto 18px;
}
.why-intro {
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.6;
  color: #cbd5e1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 760px) {
  .why-grid { grid-template-columns: 1fr; }
}
.why-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: linear-gradient(180deg, #0c1220 0%, #131b2e 100%);
  border: 1px solid rgba(59, 130, 246, 0.18);
  border-radius: 16px;
  padding: 24px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.why-card:hover {
  transform: translateY(-3px);
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.2);
}
.why-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-card-title {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}
.why-card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #cbd5e1;
}

/* ============ PILLARS ============ */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.pillar-card {
  background: linear-gradient(180deg, #0c1220 0%, #131b2e 100%);
  border: 1px solid rgba(59, 130, 246, 0.18);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.pillar-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.pillar-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 16px 40px rgba(59, 130, 246, 0.2);
}
.pillar-card:hover::before { opacity: 1; }
.pillar-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #1e3a8a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 24px;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
  position: relative;
  z-index: 1;
}
.pillar-title {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.3em;
  color: #60a5fa;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.pillar-name {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.pillar-list {
  display: grid;
  gap: 8px;
  position: relative;
  z-index: 1;
}
.pillar-list li {
  font-size: 14px;
  color: #cbd5e1;
  padding-left: 18px;
  position: relative;
}
.pillar-list li::before {
  content: 'âœ“';
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: 700;
}
.pillar-text {
  display: grid;
  gap: 6px;
  position: relative;
  z-index: 1;
}
.pillar-text p {
  margin: 0;
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.5;
}

/* ============ TRANSFORMATIONS ============ */
.transformation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 980px) {
  .transformation-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .transformation-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
.transformation-card {
  background: #0c1220;
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.transformation-card:hover {
  transform: translateY(-3px);
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.2);
}
.ba-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  background: #05070d;
  display: block;
}

/* ============ FOUNDER ============ */
.founder-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.founder-image {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(59, 130, 246, 0.2);
  box-shadow: 0 24px 60px rgba(59, 130, 246, 0.2);
}
.founder-photo {
  width: 100%;
  aspect-ratio: 1200 / 1727;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.founder-copy .section-headline { margin-bottom: 24px; }
.founder-text {
  font-size: clamp(15px, 1.6vw, 18px);
  color: #cbd5e1;
  margin-bottom: 20px;
  line-height: 1.7;
}

/* ============ TESTIMONIALS ============ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 880px) {
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}
.testimonial-card {
  background: linear-gradient(180deg, #0c1220 0%, #131b2e 100%);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 14px;
  padding: 28px 24px;
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.2);
}
.stars {
  color: #60a5fa;
  letter-spacing: 0.15em;
  margin-bottom: 14px;
  font-size: 15px;
}
.quote {
  font-size: 15px;
  line-height: 1.65;
  color: #ffffff;
  margin-bottom: 18px;
  font-style: italic;
}
.reviewer {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  letter-spacing: 0.2em;
  color: #60a5fa;
  font-size: 14px;
}

/* ============ PODCAST ============ */
.podcast-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.podcast-cover {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(59, 130, 246, 0.35);
  border: 1px solid rgba(59, 130, 246, 0.3);
}
.podcast-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}
.podcast-copy .section-headline { margin-bottom: 16px; }
.podcast-sub {
  font-size: 20px;
  color: #60a5fa;
  margin-bottom: 16px;
  font-style: italic;
}
.podcast-text {
  font-size: 17px;
  color: #cbd5e1;
  margin-bottom: 28px;
  line-height: 1.65;
}
.podcast-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============ FOOTER ============ */
.page-footer {
  padding: 20px 0 32px;
  border-top: 1px solid rgba(59, 130, 246, 0.12);
  margin-top: 24px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
}
.footer-logo { height: 40px; opacity: 0.85; }
.copyright {
  color: #64748b;
  font-size: 14px;
  letter-spacing: 0.05em;
}
.disclaimer {
  color: #475569;
  font-size: 12px;
  letter-spacing: 0.02em;
  text-align: center;
  max-width: 640px;
  margin: 8px auto 0;
}

/* ============ APPLICATION ============ */
.application {
  background: linear-gradient(180deg, #0a1020 0%, #05070d 100%);
}
.application-cta {
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
.application-cta > a { width: auto; }
.application-footnote {
  max-width: 680px;
  margin: 28px auto 0;
  text-align: center;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
}

/* ============ FAQ ============ */
.faq {
  background: linear-gradient(180deg, #05070d 0%, #0a1020 100%);
}
.faq-headline {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4.5vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #ffffff;
  text-align: center;
  max-width: 24ch;
  margin: 0 auto 16px;
}
.faq-list {
  max-width: 820px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.faq-item[open] {
  border-color: rgba(56, 182, 255, 0.35);
  background: rgba(56, 182, 255, 0.04);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 600;
  font-size: 17px;
  color: #fff;
  line-height: 1.4;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: #60a5fa; }
.faq-toggle {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #1e3a8a);
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.3s ease;
}
.faq-item[open] .faq-toggle {
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 24px 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.65;
}
.faq-answer p { margin: 0; }
.faq-answer a {
  color: #60a5fa;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(96, 165, 250, 0.4);
}
.faq-answer a:hover { color: #93c5fd; border-bottom-color: #93c5fd; }
@media (max-width: 560px) {
  .faq-item summary { padding: 16px 18px; font-size: 16px; }
  .faq-answer { padding: 0 18px 18px; font-size: 15px; }
}

/* ============ FINAL CTA ============ */
.final-cta {
  background:
    radial-gradient(circle at 50% 0%, rgba(56, 182, 255, 0.18), transparent 60%),
    linear-gradient(180deg, #05070d 0%, #0a1020 100%);
  text-align: center;
}
.final-cta-headline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}
.final-cta-sub {
  max-width: 640px;
  margin: 0 auto 40px;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}
.final-cta-actions {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}
.final-cta-footnote {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}
.final-cta-footnote a {
  color: #60a5fa;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(96, 165, 250, 0.4);
}
.final-cta-footnote a:hover { color: #93c5fd; border-bottom-color: #93c5fd; }
.final-cta-footnote a.link-pink { color: #f472b6; border-bottom-color: rgba(244, 114, 182, 0.4); }
.final-cta-footnote a.link-pink:hover { color: #f9a8d4; border-bottom-color: #f9a8d4; }

/* ============ RESPONSIVE ============ */
@media (max-width: 880px) {
  .section { padding: 60px 0; }
  .founder-inner,
  .podcast-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .section-headline.left { text-align: center; }
  .founder-copy,
  .podcast-copy { text-align: center; }
  .podcast-ctas { justify-content: center; }
  .logo-row { gap: 24px; }
  .logo-slot { width: 140px; height: 52px; font-size: 14px; }
}
@media (max-width: 560px) {
  .hero { padding: 60px 0 40px; }
  .btn { padding: 16px 28px; font-size: 16px; letter-spacing: 0.1em; }
  .pillar-grid,
  .testimonial-grid { grid-template-columns: 1fr; }
  .pillar-card { max-width: 360px; margin: 0 auto; }
}

/* ============ FEATURED QUOTE ============ */
.featured-quote {
  padding: 28px 0;
  text-align: center;
  background: rgba(59, 130, 246, 0.05);
}
.fq-text {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #ffffff;
  max-width: 820px;
  margin: 0 auto 22px;
}
.fq-author {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #64748b;
}

/* ============ THE FIX heading (left-aligned, eyebrow + Inter title) ============ */
.fix-eyebrow {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #38B6FF;
  text-align: center;
  margin-bottom: 14px;
}
.fix-headline {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4.5vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #ffffff;
  text-align: center;
  max-width: 24ch;
  margin: 0 auto 16px;
}
.fix-intro {
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.6;
  color: #cbd5e1;
  text-align: center;
  max-width: 560px;
  margin: 0 auto 44px;
}

/* ============ FOUNDER (Erin) extras ============ */
.founder-eyebrow {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #38B6FF;
  margin-bottom: 14px;
}
.founder-name {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 24px;
}
.founder-creds {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}
.founder-creds li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #cbd5e1;
  font-size: 15px;
  font-weight: 500;
}
.founder-creds li::before {
  content: "";
  width: 16px;
  height: 2px;
  background: #38B6FF;
  flex-shrink: 0;
}
.founder-placeholder {
  aspect-ratio: 4 / 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #0c1220;
  color: #64748b;
  text-align: center;
  font-size: 15px;
  line-height: 1.4;
}
.founder-placeholder svg { opacity: 0.5; }
@media (max-width: 880px) {
  .founder-creds li { justify-content: center; }
}

/* ============ THE PROOF heading (left-aligned, eyebrow + Inter title) ============ */
.proof-eyebrow {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #38B6FF;
  text-align: center;
  margin-bottom: 14px;
}
.proof-headline {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4.5vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #ffffff;
  text-align: center;
  margin-bottom: 14px;
}
.proof-intro {
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.6;
  color: #cbd5e1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 44px;
}

/* ============ MEMBER REVIEWS — chat style (2 opposite-scrolling rows) ============ */
.reviews-chat {
  padding: 72px 0 80px;
  border-top: 1px solid rgba(59, 130, 246, 0.1);
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
  background: linear-gradient(180deg, #05070d 0%, #070b14 100%);
  overflow: hidden;
}
.rvc-head { text-align: center; margin: 0 auto 44px; padding: 0 24px; }
.rvc-eyebrow {
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  color: #38B6FF; font-weight: 600; margin: 0 0 14px;
}
.rvc-title {
  font-family: 'Inter', sans-serif; font-weight: 800;
  font-size: clamp(28px, 4.5vw, 44px); line-height: 1.1;
  letter-spacing: -0.01em; color: #ffffff; max-width: 20ch; margin: 0 auto;
}
.rvc-rows { display: flex; flex-direction: column; gap: 20px; }
.rvc-viewport {
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.rvc-track { display: flex; width: max-content; will-change: transform; }
.rvc-row-a { animation: rvc-scroll 60s linear infinite; }
.rvc-row-b { animation: rvc-scroll-rev 60s linear infinite; }
.reviews-chat:hover .rvc-track { animation-play-state: paused; }
.rvc-group { display: flex; gap: 18px; padding-right: 18px; align-items: flex-start; }
@keyframes rvc-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-33.3333%); }
}
@keyframes rvc-scroll-rev {
  from { transform: translateX(-33.3333%); }
  to { transform: translateX(0); }
}
.chat-card {
  flex: 0 0 auto;
  width: min(360px, 84vw);
  height: 680px;
  box-sizing: border-box;
  background: #0e1422;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 16px 18px;
  text-align: left;
  display: flex; flex-direction: column; gap: 12px;
  overflow: hidden;
  box-shadow: 0 16px 40px -24px rgba(0, 0, 0, 0.85);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.chat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 182, 255, 0.4);
  box-shadow: 0 22px 50px -24px rgba(0, 0, 0, 0.9);
}
.cc-head { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.cc-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 14px;
  color: #ffffff; letter-spacing: 0.02em;
}
.cc-meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.cc-name { font-size: 14.5px; font-weight: 700; color: #ffffff; line-height: 1.2; }
.cc-date { font-size: 12px; color: #8a93a3; }
.cc-text {
  font-size: 14px; line-height: 1.55; color: #f3f5f8; margin: 0;
  flex: 0 0 auto;
  display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden;
}
.cc-media {
  display: block; flex: 0 0 auto; width: 100%; height: auto;
  border-radius: 12px; border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0e1422;
}
.cc-reactions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; flex: 0 0 auto; }
.cc-react {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px; padding: 3px 9px; font-size: 13px; color: #e8edf5;
}
.cc-react b { font-weight: 600; color: #aab2c0; font-size: 12px; }
@media (prefers-reduced-motion: reduce) {
  .rvc-track { animation: none; }
}
@media (max-width: 720px) {
  .chat-card { width: 84vw; }
}

/* ============ VIDEO TESTIMONIALS ============ */
.video-testimonials {
  background: linear-gradient(180deg, #0a1020 0%, #05070d 100%);
}
.vt-headline {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4.5vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #ffffff;
  text-align: center;
  max-width: 22ch;
  margin: 0 auto 8px;
}
.vt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 28px;
  margin-top: 44px;
}
.vt-card {
  display: flex;
  flex-direction: column;
}
.vt-quote {
  flex: 1;
  background: linear-gradient(180deg, #0c1220 0%, #131b2e 100%);
  border: 1px solid rgba(59, 130, 246, 0.18);
  border-radius: 16px;
  padding: 22px 22px;
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.6;
  color: #cbd5e1;
}
.vt-video {
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(59, 130, 246, 0.18);
}
.vt-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.vt-name {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #ffffff;
  margin: 14px 0 0;
}
.vt-grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) {
  .vt-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .vt-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
}

/* ============ HERO before/after marquee (2 rows) ============ */
.hero-marquee-section {
  padding: 40px 0 56px;
  overflow: hidden;
}
.post-carousel-cta {
  display: flex;
  justify-content: center;
  padding: 160px 24px 60px;
}
.hero-marquee {
  width: 100%;
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hm-viewport {
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.hm-track {
  display: flex;
  width: max-content;
  will-change: transform;
}
.hm-row-a { animation: hm-scroll 35s linear infinite; }
.hm-row-b { animation: hm-scroll-rev 35s linear infinite; }
.hero-marquee:hover .hm-track { animation-play-state: paused; }
.hm-group {
  display: flex;
  gap: 18px;
  padding-right: 18px;
}
@keyframes hm-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-33.3333%); }
}
@keyframes hm-scroll-rev {
  from { transform: translateX(-33.3333%); }
  to { transform: translateX(0); }
}
.hm-card {
  flex: 0 0 auto;
  width: clamp(190px, 22vw, 250px);
  border-radius: 16px;
  overflow: hidden;
  background: #05070d;
  border: 1px solid rgba(59, 130, 246, 0.16);
  box-shadow: 0 14px 36px -16px rgba(0, 0, 0, 0.8);
}
.hm-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  background: #05070d;
  display: block;
}
@media (prefers-reduced-motion: reduce) {
  .hm-track { animation: none; }
}

/* ============ FOOTER brand + socials ============ */
.footer-badge { height: 72px; width: auto; filter: drop-shadow(0 0 14px rgba(59, 130, 246, 0.35)); }

/* social icons: blue glowing circles */
.footer-socials { display: flex; gap: 16px; }
.footer-socials a {
  width: 46px; height: 46px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: #2563eb; border: 1px solid rgba(96, 165, 250, 0.5);
  color: #ffffff; box-shadow: 0 0 22px -4px rgba(37, 99, 235, 0.7);
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}
.footer-socials a svg { width: 20px; height: 20px; display: block; }
.footer-socials a:hover { background: #1d4ed8; transform: translateY(-2px); box-shadow: 0 0 28px -2px rgba(37, 99, 235, 0.9); }

/* ============ FOOTER grid (newsletter / nav) ============ */
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) auto;
  gap: 64px;
  align-items: start;
  padding-bottom: 48px;
}

/* left column */
.footer-headline {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0 0 48px;
  max-width: 14ch;
}
.footer-headline span { color: #64748b; }
.footer-news-label {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
  margin: 0 0 18px;
}
.footer-form { display: flex; flex-wrap: wrap; gap: 14px; align-items: stretch; }
.footer-form input {
  flex: 1 1 200px;
  min-width: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 16px 20px;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  transition: border-color .2s ease, background .2s ease;
}
.footer-form input::placeholder { color: #94a3b8; }
.footer-form input:focus { outline: none; border-color: #2563eb; background: rgba(37, 99, 235, 0.08); }
.footer-subscribe {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #2563eb;
  color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 26px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 0 26px -6px rgba(37, 99, 235, 0.8);
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}
.footer-subscribe svg { width: 18px; height: 18px; }
.footer-subscribe:hover { background: #1d4ed8; transform: translateY(-2px); box-shadow: 0 0 32px -4px rgba(37, 99, 235, 1); }
.footer-disclaimer {
  margin: 20px 0 0;
  max-width: 56ch;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: #64748b;
}
.footer-disclaimer a { color: #cbd5e1; font-weight: 600; }
.footer-disclaimer a:hover { color: #38B6FF; }

/* right column */
.footer-side { display: flex; flex-direction: column; align-items: flex-start; gap: 28px; }
.footer-nav { display: grid; gap: 14px; }
.footer-nav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #cbd5e1;
  transition: color 0.2s ease;
}
.footer-nav a svg { width: 14px; height: 14px; color: #64748b; transition: color 0.2s ease, transform 0.2s ease; }
.footer-nav a:hover { color: #38B6FF; }
.footer-nav a:hover svg { color: #38B6FF; transform: translate(2px, -2px); }
.page-footer .copyright { text-align: center; margin-top: 8px; }

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-headline { margin-bottom: 36px; }
  .footer-side { align-items: flex-start; }
}

/* ============ THE FIX — solar-system radial navigation ============ */
.solar {
  position: relative;
  width: min(680px, 94vw);
  aspect-ratio: 1 / 1;
  margin: 8px auto 0;
  --r: clamp(150px, 30vw, 232px);
  overflow: visible;
  isolation: isolate;
}

/* particle field */
.solar-stars { position: absolute; inset: -8%; pointer-events: none; z-index: 0; }
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(140, 190, 255, 0.9);
  box-shadow: 0 0 8px rgba(120, 180, 255, 0.85);
  animation: particle-twinkle var(--d, 7s) ease-in-out infinite;
}
@keyframes particle-twinkle {
  0%, 100% { opacity: 0.12; transform: translateY(0) scale(0.8); }
  50% { opacity: 0.9; transform: translateY(-7px) scale(1.1); }
}

/* concentric circles */
.solar-rings span {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(96, 165, 250, 0.12);
  z-index: 1;
}
.solar-rings span:nth-child(1) { display: none; }
.solar-rings span:nth-child(2) { width: calc(var(--r) * 1.46); height: calc(var(--r) * 1.46); }
.solar-rings span:nth-child(3) { width: calc(var(--r) * 0.92); height: calc(var(--r) * 0.92); border-color: rgba(96,165,250,0.08); }

/* glowing sun (hub) */
.solar-sun {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(108px, 17vw, 142px);
  height: clamp(108px, 17vw, 142px);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center; text-align: center;
  z-index: 4;
  background: radial-gradient(circle at 50% 32%, #5aa0ff 0%, #3b82f6 42%, #1e3a8a 72%, #0b1430 100%);
  border: 1px solid rgba(120, 180, 255, 0.55);
  box-shadow: 0 0 70px rgba(56, 182, 255, 0.5), inset 0 0 34px rgba(56, 182, 255, 0.4);
  animation: sun-pulse 3.6s ease-in-out infinite;
}
.solar-sun span {
  font-family: 'Inter', sans-serif; font-weight: 800;
  font-size: clamp(15px, 2.4vw, 21px); line-height: 1.04; color: #fff;
  text-shadow: 0 0 16px rgba(56, 182, 255, 0.8);
}
@keyframes sun-pulse {
  0%, 100% { box-shadow: 0 0 56px rgba(56,182,255,0.42), inset 0 0 30px rgba(56,182,255,0.34); }
  50% { box-shadow: 0 0 92px rgba(56,182,255,0.7), inset 0 0 38px rgba(56,182,255,0.5); }
}

/* orbiting system */
.solar-orbit { position: absolute; inset: 0; z-index: 3; animation: solar-spin 60s linear infinite; }
.solar:hover .solar-orbit { animation-play-state: paused; }
@keyframes solar-spin { to { transform: rotate(360deg); } }
@keyframes solar-spin-rev { to { transform: rotate(-360deg); } }

.planet {
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  transform: rotate(var(--a)) translate(var(--r)) rotate(calc(-1 * var(--a)));
}
.planet:hover { z-index: 6; }
.planet-spin { position: absolute; top: 0; left: 0; animation: solar-spin-rev 60s linear infinite; }
.solar:hover .planet-spin { animation-play-state: paused; }

.planet-btn {
  position: absolute;
  top: 0; left: 0;
  transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center; gap: 9px;
  background: none; border: none; padding: 0; cursor: pointer;
}
.planet-ico {
  width: 74px; height: 74px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #d7e8ff;
  background: rgba(13, 20, 38, 0.5);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border: 1px solid rgba(120, 180, 255, 0.32);
  box-shadow: 0 6px 26px rgba(0, 0, 0, 0.4), 0 0 26px rgba(59, 130, 246, 0.22), inset 0 0 18px rgba(56, 182, 255, 0.1);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.55s, color 0.4s;
}
.planet-ico svg { width: 32px; height: 32px; }
.planet-label {
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 0.01em;
  color: #ffffff; white-space: nowrap; text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
  transition: color 0.4s ease;
}
.planet:hover .planet-ico {
  transform: scale(1.14);
  color: #ffffff;
  border-color: #38B6FF;
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.5), 0 0 46px rgba(56, 182, 255, 0.6), inset 0 0 20px rgba(56, 182, 255, 0.25);
}
.planet:hover .planet-label { color: #38B6FF; }

/* hover popover (title + bullets) */
.planet-pop {
  position: absolute;
  top: 100%; left: 50%;
  width: 210px;
  margin-top: 14px;
  padding: 16px 18px;
  border-radius: 16px;
  text-align: center;
  background: rgba(11, 18, 34, 0.82);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border: 1px solid rgba(96, 165, 250, 0.3);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55), 0 0 36px rgba(56, 182, 255, 0.22);
  opacity: 0; pointer-events: none;
  transform: translate(-50%, 6px) scale(0.95);
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1), transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 7;
}
.planet:hover .planet-pop { opacity: 1; transform: translate(-50%, 0) scale(1); }
.planet-pop h4 { font-family: 'Inter', sans-serif; font-weight: 800; font-size: 15px; color: #fff; margin-bottom: 10px; line-height: 1.2; }
.planet-pop ul { list-style: none; margin: 0; }
.planet-pop li { font-size: 13px; line-height: 1.55; color: #cbd5e1; padding: 2px 0; }

@media (prefers-reduced-motion: reduce) {
  .solar-orbit, .planet-spin, .solar-sun, .particle, .solar-rings span { animation: none !important; }
}

/* phone + tablet: scaled-down solar system with orbiting icons */
@media (max-width: 820px) {
  .solar { width: min(440px, 100%); --r: clamp(104px, 31vw, 150px); }
  .solar-sun { width: clamp(82px, 25vw, 116px); height: clamp(82px, 25vw, 116px); }
  .solar-sun span { font-size: clamp(13px, 4.4vw, 18px); }
  .planet-ico { width: clamp(52px, 15vw, 64px); height: clamp(52px, 15vw, 64px); }
  .planet-ico svg { width: 24px; height: 24px; }
  .planet-label { font-size: 11.5px; }
  .planet-pop { display: none; }
}

/* ============ APPLICATION MODAL (HighLevel funnel embed) ============ */
.apply-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}
.apply-modal.is-open { display: flex; }
.apply-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 6, 12, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.apply-modal__panel {
  position: relative;
  width: min(1000px, 94vw);
  height: min(92vh, 900px);
  display: flex;
  flex-direction: column;
  background: #05070d;
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.9);
}
.apply-modal__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px 10px 16px;
  background: #0a0f1c;
  border-bottom: 1px solid rgba(59, 130, 246, 0.16);
  flex: 0 0 auto;
}
.apply-modal__newtab {
  font-size: 13px;
  color: #38B6FF;
  font-weight: 600;
  text-decoration: none;
}
.apply-modal__newtab:hover { text-decoration: underline; }
.apply-modal__close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: #e8edf5;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}
.apply-modal__close:hover { background: rgba(255, 255, 255, 0.12); border-color: rgba(56, 182, 255, 0.5); }
.apply-modal__body { flex: 1 1 auto; min-height: 0; }
.apply-modal__body iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #05070d;
}
@media (max-width: 720px) {
  .apply-modal__panel { width: 100vw; height: 100vh; border: 0; border-radius: 0; }
}

/* ============ WHY section — reframe line under the cards ============ */
.why-reframe {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 2.6vw, 30px);
  line-height: 1.3;
  color: #ffffff;
  max-width: 24ch;
  margin: 44px auto 0;
}

/* ============ SECTION SEAM — flat colours create the break ============ */
.section-simpler { background: #0a0a0a; }
.section-system  { background: #0d1526; }

/* ============ THE SYSTEM — infinity graphic (scoped) ============ */
.infinity-section { text-align: center; }
.infinity-section svg {
  width: min(560px, 88vw);
  height: auto;
  display: block;
  margin: 0 auto;
}
.infinity-section .armL { animation: inf-inL 1s cubic-bezier(.22,1,.36,1) forwards; opacity: 0; }
.infinity-section .armR { animation: inf-inR 1s cubic-bezier(.22,1,.36,1) forwards; opacity: 0; }
.infinity-section .link { animation: inf-inC .7s ease forwards 1s; opacity: 0; transform-origin: 297px 462px; }
.infinity-section .labels {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(4px, 0.8vw, 8px);
  width: auto;
  margin: 18px auto 0;
}
.infinity-section .op {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 3.6vw, 32px);
  color: #ffffff;
  opacity: 0;
  animation: inf-fade .8s ease forwards;
  animation-delay: 1.55s;
}
@keyframes inf-fade { from { opacity: 0; } to { opacity: 1; } }
.infinity-section .lbl {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(15px, 2.8vw, 26px);
  white-space: nowrap;
  opacity: 0;
  animation: inf-fadeUp .8s ease forwards;
}
.infinity-section .lbl.plan { color: #ffffff; text-align: right; animation-delay: 1.4s; }
.infinity-section .lbl.acc  { color: #ffffff; text-align: left;  animation-delay: 1.7s; }

.infinity-result {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(4px, 0.8vw, 8px);
  margin: clamp(4px, 0.8vw, 8px) auto 0;
  text-align: center;
}
.infinity-result .eq {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 3.6vw, 32px);
  line-height: 1;
  color: #ffffff;
  opacity: 0;
  animation: inf-fade .8s ease forwards;
  animation-delay: 2s;
}
.infinity-result .res {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(34px, 6vw, 54px);
  letter-spacing: 0.03em;
  color: #38B6FF;
  text-shadow: 0 0 28px rgba(56, 182, 255, 0.55);
  opacity: 0;
  animation: inf-fadeUp .8s ease forwards;
  animation-delay: 2.3s;
}
@keyframes inf-inL { 0% { opacity: 0; transform: translateX(-120px); } 100% { opacity: 1; transform: translateX(0); } }
@keyframes inf-inR { 0% { opacity: 0; transform: translateX(120px); }  100% { opacity: 1; transform: translateX(0); } }
@keyframes inf-inC { 0% { opacity: 0; transform: scale(.5); }          100% { opacity: 1; transform: scale(1); } }
@keyframes inf-fadeUp { 0% { opacity: 0; transform: translateY(12px); } 100% { opacity: 1; transform: translateY(0); } }

/* ============ INSIDE BBA — feature tabs (scoped) ============ */
.pm-tab {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  border-radius: 16px;
  border: 2px solid rgba(255, 255, 255, 0.07);
  background: #0d1526;
  cursor: pointer;
  transition: border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}
.pm-tab .pm-ic {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.35s ease, color 0.35s ease;
}
.pm-tab .pm-ic svg { stroke: currentColor; width: 22px; height: 22px; }
.pm-tab .pm-title {
  font-size: 17.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.42);
  margin: 0 0 3px;
  transition: color 0.35s ease;
}
.pm-tab .pm-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.22);
  margin: 0;
  transition: color 0.35s ease;
}
.pm-tab.pm-active {
  border-color: #00AEEF;
  background: rgba(0, 174, 239, 0.16);
  box-shadow: 0 0 30px rgba(0, 174, 239, 0.35), inset 0 0 0 1px rgba(0, 174, 239, 0.4);
  transform: scale(1.03);
}
.pm-tab.pm-active .pm-ic { background: rgba(0, 174, 239, 0.28); color: #2ec6ff; }
.pm-tab.pm-active .pm-title { color: #ffffff; }
.pm-tab.pm-active .pm-sub { color: #4fc3f0; }

/* ============ COACHING PHILOSOPHY — trifecta graphic (scoped) ============ */
.trifecta-section { text-align: center; margin-top: 10px; }
.trifecta-section svg {
  width: min(520px, 88vw);
  height: auto;
  display: block;
  margin: 0 auto;
}
.trifecta-section .tri {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: tri-draw 1.8s cubic-bezier(.45, 0, .25, 1) forwards;
}
@keyframes tri-draw { to { stroke-dashoffset: 0; } }
.trifecta-section .lb {
  opacity: 0;
  animation: tri-fadeUp .8s ease forwards 1.6s;
}
@keyframes tri-fadeUp {
  0%   { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ============ Anchor scroll offset (clear the fixed navbar) ============ */
#why, #fix, #proof, #member-reviews, #reviews, #cta, #faq {
  scroll-margin-top: 108px;
}
