/* ═══════════════════════════════════════════════
   DESIGN TOKENS — GoodsGroove DS
═══════════════════════════════════════════════ */
:root {
  /* Core palette */
  --gg-black: #0a0a0a;
  --gg-dark: #111111;
  --gg-dark-2: #181818;
  --gg-dark-3: #222222;
  --gg-white: #ffffff;
  --gg-off-white: #f8f8f8;
  --gg-muted: rgba(255, 255, 255, 0.40);
  --gg-faint: rgba(255, 255, 255, 0.07);

  /* Accent — GoodsGroove green */
  --gg-accent: #8cff2e;
  --gg-accent-glow: rgba(140, 255, 46, 0.35);
  --gg-accent-dim: rgba(140, 255, 46, 0.12);

  /* Typography */
  --font-primary: 'Manrope', sans-serif;
  --font-secondary: 'Inter', sans-serif;
  --font-tertiary: 'Space Grotesk', sans-serif;

  /* Easing */
  --ease-ws: cubic-bezier(0.12, 0.23, 0.5, 1);
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);

  /* Spacing */
  --gap: 24px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 110px;
}

.gg-section-desc {
  font-size: clamp(16px, 1.6vw, 18px);
  font-weight: 500;
  line-height: 1.75em;
  letter-spacing: -0.01em;
}

/* ── Reset ──────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  /* overflow-x: clip — unlike 'hidden', clip does NOT create a scroll container
         so position:sticky on .gg-top-block remains fully functional. */
  overflow-x: clip;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  background: var(--gg-black);
  color: var(--gg-white);
  font-family: var(--font-primary);
  scrollbar-width: thin;
  scrollbar-color: #2f2f2f #0a0a0a;
  overflow-x: clip;
  width: 100%;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 3px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

::selection {
  background: var(--gg-accent);
  color: #000;
}

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
}

.material-symbols-outlined[data-weight="fill"] {
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}


/* ═══════════════════════════════════════════════
   KEYFRAMES & ANIMATIONS
═══════════════════════════════════════════════ */

/* Clip-path text reveal */
@keyframes gg-clip-rise {
  from {
    clip-path: inset(0 0 100% 0);
    transform: translateY(12px);
  }

  to {
    clip-path: inset(0 0 0% 0);
    transform: translateY(0);
  }
}

/* Marquee */
@keyframes gg-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Shimmer sweep */
@keyframes gg-shimmer {
  from {
    transform: translateX(-100%) skewX(-15deg);
  }

  to {
    transform: translateX(200%) skewX(-15deg);
  }
}

/* Conic spin (beam button) */
@keyframes gg-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Accent dot pulse */
@keyframes gg-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 var(--gg-accent-glow);
  }

  50% {
    box-shadow: 0 0 0 8px transparent;
  }
}

/* Subtle float */
@keyframes gg-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Grain noise overlay */
@keyframes gg-grain {

  0%,
  100% {
    transform: translate(0, 0);
  }

  20% {
    transform: translate(-2px, 2px);
  }

  40% {
    transform: translate(2px, -2px);
  }

  60% {
    transform: translate(-1px, 3px);
  }

  80% {
    transform: translate(3px, -1px);
  }
}

/* FAQ expand */
@keyframes gg-expand {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Cinematic beam orb drift */
@keyframes gg-orb-drift {
  0% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(40px, -30px) scale(1.08);
  }

  66% {
    transform: translate(-30px, 20px) scale(0.95);
  }

  100% {
    transform: translate(0, 0) scale(1);
  }
}

/* Mobile menu slide */
@keyframes gg-menu-in {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ═══════════════════════════════════════════════
   SCROLL-TRIGGERED ANIMATION SYSTEM
   • Sem blur: evita repaint caro (GPU) a cada frame
   • Delays calibrados por bloco visual, não por elemento
   • .gg-reveal-group: observa o container, anima filhos
═══════════════════════════════════════════════ */
.gg-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.65s var(--ease-spring),
    transform 0.65s var(--ease-spring);
  will-change: opacity, transform;
}

.gg-reveal.visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}

/* Stagger delays — usados DENTRO de um mesmo bloco visual */
.gg-reveal[data-delay="0"] {
  transition-delay: 0s;
}

.gg-reveal[data-delay="1"] {
  transition-delay: 0.08s;
}

.gg-reveal[data-delay="2"] {
  transition-delay: 0.16s;
}

.gg-reveal[data-delay="3"] {
  transition-delay: 0.24s;
}

.gg-reveal[data-delay="4"] {
  transition-delay: 0.32s;
}

.gg-reveal[data-delay="5"] {
  transition-delay: 0.40s;
}

.gg-reveal[data-delay="6"] {
  transition-delay: 0.48s;
}

/*
     * .gg-reveal-group
     * Container observado como unidade. Quando entra no viewport,
     * o JS adiciona .visible em todos os filhos .gg-reveal juntos.
     * O stagger visual vem dos data-delay nos filhos.
     */
.gg-reveal-group .gg-reveal {
  /* delay zero até o grupo ser ativado */
  transition-delay: 0s;
}

.gg-reveal-group.visible .gg-reveal[data-delay="0"] {
  transition-delay: 0s;
}

.gg-reveal-group.visible .gg-reveal[data-delay="1"] {
  transition-delay: 0.08s;
}

.gg-reveal-group.visible .gg-reveal[data-delay="2"] {
  transition-delay: 0.16s;
}

.gg-reveal-group.visible .gg-reveal[data-delay="3"] {
  transition-delay: 0.24s;
}

.gg-reveal-group.visible .gg-reveal[data-delay="4"] {
  transition-delay: 0.32s;
}

.gg-reveal-group.visible .gg-reveal[data-delay="5"] {
  transition-delay: 0.40s;
}

.gg-reveal-group.visible .gg-reveal[data-delay="6"] {
  transition-delay: 0.48s;
}

.gg-reveal-group.visible .gg-reveal {
  opacity: 1;
  transform: none;
  will-change: auto;
}


/* ═══════════════════════════════════════════════
   FIXED NAV
═══════════════════════════════════════════════ */
.gg-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  height: 60px;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0;
  transition: background 0.4s, border-color 0.4s, transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.gg-nav-container {
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  box-sizing: border-box;
}

/* Slide nav out of view when scrolling down */
.gg-nav--hidden {
  transform: translateY(-100%);
}

.gg-nav.scrolled {
  background: rgba(10, 10, 10, 0.98);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.gg-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--gg-white);
  transition: opacity 0.2s, color 0.4s;
}

.gg-nav.scrolled .gg-nav-logo {
  color: var(--gg-white);
}

.gg-nav-logo:hover {
  opacity: 0.75;
}

.gg-nav-dot {
  width: 9px;
  height: 9px;
  background: var(--gg-accent);
  border-radius: 50%;
  animation: gg-pulse 2.5s ease infinite;
  flex-shrink: 0;
}

.gg-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.gg-nav-links a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gg-muted);
  padding: 5px 13px;
  border-radius: 6px;
  transition: color 0.2s var(--ease-ws), background 0.2s;
  white-space: nowrap;
}

.gg-nav.scrolled .gg-nav-links a {
  color: var(--gg-muted);
}

.gg-nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.gg-nav.scrolled .gg-nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.gg-nav-links a.active,
.gg-mobile-menu a.active {
  color: var(--gg-accent) !important;
}

/* Nav CTA morphs on scroll */
.gg-nav>a.btn-accent {
  background: var(--gg-accent);
  color: #000;
  transition: background 0.4s, color 0.4s, transform 0.2s, box-shadow 0.2s;
}

.gg-nav.scrolled>a.btn-accent {
  background: var(--gg-accent);
  color: #000;
}

/* Hamburger */
.gg-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 10000;
}

.gg-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-spring), opacity 0.3s var(--ease-spring), background 0.4s;
  transform-origin: center;
}

.gg-nav.scrolled .gg-hamburger span {
  background: rgba(255, 255, 255, 0.7);
}

.gg-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.gg-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.gg-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile drawer */
.gg-mobile-menu {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 20px 32px;
  z-index: 9998;
  animation: gg-menu-in 0.3s var(--ease-spring);
}

.gg-mobile-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gg-accent), transparent);
  opacity: 0.5;
}

.gg-mobile-menu.open {
  display: flex;
}

.gg-mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
  list-style: none;
  width: 100%;
  padding: 0;
  margin: 0;
}

.gg-mobile-menu li {
  width: 100%;
  display: block;
}

.gg-mobile-menu a {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  padding: 14px 18px;
  border-radius: 12px;
  transition: all 0.25s var(--ease-out);
  width: 100%;
  box-sizing: border-box;
}

.gg-mobile-menu a:hover,
.gg-mobile-menu a:active {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  padding-left: 24px;
}

.gg-mobile-menu-cta {
  margin-top: 12px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: var(--gg-accent) !important;
  color: #000 !important;
}

.gg-mobile-menu-cta:hover {
  padding-left: 18px !important; /* Reset pull-in for CTA */
  transform: scale(0.98);
}

@media (max-width: 760px) {
  .gg-nav {
    padding: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .gg-nav-container {
    padding: 16px 20px;
  }

  .gg-nav-links {
    display: none;
  }

  .gg-nav>a.btn-accent {
    display: none;
  }

  .gg-hamburger {
    display: flex;
  }
}


/* ═══════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════ */

/* Primary — dark pill */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 28px;
  background: #2f2f2f;
  border-radius: var(--radius-pill);
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #fff;
  cursor: pointer;
  border: none;
  transition: transform 0.2s var(--ease-ws), box-shadow 0.2s var(--ease-ws);
  will-change: transform;
  box-shadow:
    0 0.6px 0.6px -1.25px #00000017,
    0 2.3px 2.3px -2.5px #00000014,
    0 10px 10px -3.75px #00000008;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: skewX(-15deg);
  transition: none;
}

.btn-primary:hover::after {
  animation: gg-shimmer 0.8s var(--ease-spring);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px -2px #0000002a, 0 18px 30px -4px #00000018;
}

/* Accent pill — CTA */
.btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  background: var(--gg-accent);
  border-radius: var(--radius-pill);
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #000;
  cursor: pointer;
  border: none;
  transition: transform 0.2s var(--ease-ws), box-shadow 0.2s var(--ease-ws);
  will-change: transform;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Shimmer effect removed for minimalist design */

.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

#hero-brand-cta {
  margin-bottom: 4px;
  text-decoration: none;
}

#hero-brand-cta .btn-beam-inner {
  background: var(--gg-accent);
  color: var(--gg-black);
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-size: 16px;
}

#hero-brand-cta .material-symbols-outlined {
  font-size: 18px;
}

#hero-cta-primary {
  background: var(--gg-accent) !important;
  color: var(--gg-black) !important;
  font-size: 16px;
  font-weight: 600;
  padding: 8px 8px 8px 24px !important;
  border-radius: 110px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.3s ease;
  overflow: hidden;
  clip-path: inset(0 round 110px);
}

#hero-cta-primary:hover {
  transform: translateY(-2px);
}

.btn-icon-circle {
  background: #fff;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-icon-circle .material-symbols-outlined {
  font-size: 20px;
  font-weight: 600;
  color: var(--gg-black);
}

.btn-accent:active {
  transform: scale(0.97);
}

.mentor-quote {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.4;
  font-style: italic;
  border-left: 2px solid rgba(255, 255, 255, 0.15);
  padding-left: 24px;
  margin-left: 4px;
}

/* Ghost outline */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 27px;
  background: transparent;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: border-color 0.2s var(--ease-ws), color 0.2s, transform 0.2s var(--ease-ws);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
  transform: translateY(-2px);
}

/* Beam Button — conic spin */
.btn-beam {
  position: relative;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-pill);
  padding: 1.5px;
  cursor: pointer;
  overflow: hidden;
  clip-path: inset(0 round 110px);
  isolation: isolate !important;
}

.btn-beam::before {
  content: "";
  position: absolute;
  inset: -100%;
  background: conic-gradient(from 0deg, transparent 340deg, var(--gg-accent) 360deg);
  animation: gg-spin 2.5s linear infinite;
  z-index: -1 !important;
  /* Force below text */
}

/* Hero Specific: Contrast beam for green buttons */
#hero-brand-cta::before {
  background: conic-gradient(from 0deg, transparent 340deg, #ffffff 360deg) !important;
  z-index: -1 !important;
}

#hero-brand-cta .btn-beam-inner {
  z-index: 10 !important;
}

.btn-beam-inner {
  position: relative;
  z-index: 10 !important;
  /* Force above the light beam */
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 30px;
  background: #0a0a0a;
  border-radius: calc(var(--radius-pill) - 2px);
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  overflow: hidden;
}

.btn-beam-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  transform: translateX(-100%) skewX(-15deg);
}

.btn-beam:hover .btn-beam-inner::after {
  animation: gg-shimmer 1.2s var(--ease-spring);
}


/* ═══════════════════════════════════════════════
   TRANSPARENT LETTERING PRESETS
═══════════════════════════════════════════════ */
.text-stroke-lg {
  font-family: var(--font-primary);
  font-size: clamp(64px, 9vw, 120px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.92em;
  color: rgba(255, 255, 255, 0.14);
}

.text-gradient-fill {
  font-family: var(--font-primary);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.96em;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.55) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-accent-gradient {
  font-family: var(--font-primary);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--gg-accent) 0%, rgba(140, 255, 46, 0.6) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-mixed-headline {
  font-family: var(--font-primary);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1em;
}

.text-mixed-headline .stroke {
  color: rgba(255, 255, 255, 0.18);
  display: block;
}

.text-mixed-headline .fill {
  color: #fff;
  display: block;
}


/* ═══════════════════════════════════════════════
   SECTION WRAPPER
═══════════════════════════════════════════════ */
.gg-section {
  width: 100%;
  scroll-margin-top: 60px;
}

.gg-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 100px 48px;
}

.gg-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gg-muted);
  margin-bottom: 48px;
}

.gg-label-line {
  width: 28px;
  height: 1px;
  background: currentColor;
}

@media (max-width: 768px) {
  .gg-inner {
    padding: 64px 20px;
  }
}


/* ═══════════════════════════════════════════════
   GLASSMORPHISM CARDS
═══════════════════════════════════════════════ */
.glass {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.glass::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

/* Flashlight reveal */
.glass-flash {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}

.glass-flash::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%),
      rgba(255, 255, 255, 0.07),
      transparent 40%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.glass-flash:hover::after {
  opacity: 1;
}

.glass-flash:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

/* Accent dot */
.accent-dot {
  width: 10px;
  height: 10px;
  background: var(--gg-accent);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.accent-dot-glow {
  width: 13px;
  height: 13px;
  background: var(--gg-accent);
  border-radius: 50%;
  box-shadow: 0 2px 13px rgba(140, 255, 46, 0.5);
  display: inline-block;
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════════
   BADGE
═══════════════════════════════════════════════ */
.gg-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  width: fit-content;
  margin-bottom: 28px;
}

/* Hero badge variant — dark text on light bg */
.gg-badge.hero-badge {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.10);
  color: rgba(0, 0, 0, 0.55);
}

.gg-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--gg-accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gg-accent-glow);
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════════
   MARQUEE
═══════════════════════════════════════════════ */
.marquee-wrap {
  position: relative;
  overflow: hidden;
  padding: 22px 0;
  background: var(--gg-accent);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  z-index: 10;
  /* Anti-gap fixes: seal the 1px background sliver */
  margin-top: -1.5px;
  margin-bottom: -1px;
  box-shadow: 0 0 0 1px var(--gg-accent);
}

.marquee-wrap::before,
.marquee-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
}

.marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--gg-accent), transparent);
}

.marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--gg-accent), transparent);
}

.marquee-track {
  display: flex;
  animation: gg-marquee 35s linear infinite;
  width: max-content;
  gap: 48px;
  align-items: center;
}

.marquee-item {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gg-black);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 16px;
}

.marquee-icon {
  width: 14px;
  height: 14px;
  color: var(--gg-black);
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
/* ═══════════════════════════════════════
   HERO — DARK THEME
═══════════════════════════════════════ */
/* ═══════════════════════════════════════
   TOP BLOCK — animation + hero wrapper
═══════════════════════════════════════ */
/* ═══════════════════════════════════════════════
   STICKY HERO ROLLOVER EFFECT
   .gg-top-block stays pinned at top:0 via CSS sticky (backed by JS guardian).
   All sections that follow carry position:relative + z-index:10 so they
   visually roll OVER the pinned hero as the user scrolls.
   JS self-healer in <script id="rollover-engine"> reinforces this if
   overflow or GSAP ever resets the stacking.
═══════════════════════════════════════════════ */
.gg-top-block {
  position: sticky;
  top: 0;
  background: var(--gg-off-white);
  z-index: 1;
  /* Promotes to its own GPU layer — faster compositing */
  will-change: transform;
  /* Isolate stacking so inner z-indices don't bleed out */
  isolation: isolate;
}

/* Spacer injected by JS engine — holds layout when hero is force-fixed */
[data-rollover-spacer] {
  pointer-events: none;
  /* display controlled by JS */
}

/* State added by JS when sticky has broken and we fall back to fixed */
.gg-top-block.is-force-fixed {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
}

.gg-market-banner {
  position: relative;
  width: 100%;
  height: 55vh;
  min-height: 320px;
  max-height: 560px;
  background: transparent;
  /* parent handles bg */
  overflow: visible;
  /* no hard clip edge */
  z-index: 0;
  padding-top: 110px;
  box-sizing: border-box;
}

.gg-market-banner::after {
  content: "";
  position: absolute;
  bottom: -120px;
  /* extend fade well below banner edge */
  left: 0;
  right: 0;
  height: 280px;
  /* long, gradual fade */
  background: linear-gradient(to bottom,
      transparent 0%,
      rgba(252, 252, 252, 0.5) 40%,
      var(--gg-off-white) 80%);
  pointer-events: none;
  z-index: 5;
}

.gg-hero {
  position: relative;
  min-height: auto;
  background: transparent;
  /* parent handles bg */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: visible;
  margin-top: -220px;
  padding-top: 0;
  z-index: 2;
  /* above banner's ::after overlay */
}

/* Subtle noise grain — on the banner */
.gg-market-banner::before {
  content: "";
  position: absolute;
  inset: -50%;
  opacity: 0.018;
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 180px;
  animation: gg-grain 0.5s steps(1) infinite;
  pointer-events: none;
  z-index: 2;
}

/* Cinematic market background map — scoped to banner */
#viewport-3d {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  perspective: 2000px;
  transform-style: preserve-3d;
  transform: rotateX(10deg) rotateY(-2deg);
  transition: transform 0.5s ease-out;
  will-change: transform;
  pointer-events: none;
  z-index: 0;
}

#marketCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  will-change: transform;
  transform: scale(1.05);
  mask-image: radial-gradient(ellipse 90% 80% at center, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at center, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 100%);
}

.glass-fx {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  mask-image: radial-gradient(ellipse at center, transparent 40%, black 100%);
  -webkit-mask-image: radial-gradient(ellipse at center, transparent 40%, black 100%);
}

.scanlines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.02) 50%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.01));
  background-size: 100% 2px, 3px 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.3;
}

.gg-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 48px 120px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
  align-items: start;
}

.gg-hero-line-divider {
  position: absolute;
  top: 10%;
  /* Extend bottom so the line runs all the way to and through the button */
  bottom: -420px;
  left: calc(33.333% - 40px);
  width: 4px;
  border-radius: 4px;
  background: rgba(140, 255, 46, 0.25);
  z-index: 20;
  overflow: visible;
  /* was hidden — now the glow can bleed past the line end */
}

.gg-hero-line-divider::after {
  content: "";
  position: absolute;
  top: -80px;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--gg-accent), transparent);
  animation: gg-line-flow 2.5s infinite ease-in-out;
}

@keyframes gg-line-flow {
  0% {
    top: -80px;
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  100% {
    top: 100%;
    opacity: 0;
  }
}

@media (max-width: 1080px) {
  .gg-hero-line-divider {
    display: none;
  }
}

/* ── Scroll-down green button ─────────────────────────────────
       Lives in a standalone wrapper between hero and dark section.
       z-index: 9999 ensures it always floats above EVERYTHING.
    ─────────────────────────────────────────────────────────────── */
.gg-scroll-btn-wrap {
  /* Positioned relative so the button can use absolute centering */
  position: relative;
  width: 100%;
  height: 0;
  /* takes no layout space */
  z-index: 9999;
  /* above sticky hero (z:1) and dark section (z:10) */
  pointer-events: none;
}

.gg-intersection-marker {
  position: absolute;
  /*
        Horizontal: default fallback CSS — JS overrides this to exactly
        match the line center after measuring getBoundingClientRect().
        Vertical: -85px = dark section peek amount, translateY(-50%) centers
        the button exactly ON the visual white/black boundary.
      */
  left: calc(33.333% - 64px);
  top: -60px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gg-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  z-index: 9999;
  pointer-events: auto;
  /* Thick black ring, no glow */
  box-shadow: 0 0 0 8px var(--gg-black);
  cursor: pointer;
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s ease;
}

.gg-intersection-marker:hover {
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 0 0 8px var(--gg-black);
}

.gg-intersection-marker .material-symbols-outlined {
  font-size: 24px;
  font-weight: 700;
  color: var(--gg-black);
  animation: gg-bounce-down 2s infinite ease-in-out;
}

@keyframes gg-bounce-down {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(4px);
  }

  60% {
    transform: translateY(2px);
  }
}

@media (max-width: 1080px) {
  .gg-intersection-marker {
    display: none;
  }
}

/* --- Left column: badge + subcategories (spans both rows) --- */
.gg-hero-badge-col {
  grid-column: 1;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 62px 0 0;
  /* overflow:clip + clip-path: belt-and-suspenders clipping.
       * clip-path catches transformed/animated children that overflow:clip misses. */
  overflow: clip;
  padding-right: 16px;
  /* Clip 4px before the right edge — hides any tag that creeps toward the line */
  clip-path: inset(0 0px 0 0);
}

/* Larger label above the badge */
.gg-hero-brand-label {
  font-family: var(--font-primary);
  font-size: clamp(13px, 1.1vw, 16px);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.4);
}

/* Larger prominent brand badge */
.gg-hero-brand-title {
  font-family: var(--font-primary);
  font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1em;
  color: #0a0a0a;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Subcategory tags wrapper */
.gg-hero-subcats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 4px;
  overflow: clip;
  width: 100%;
  /* Extra right padding so no tag can reach the green line */
  padding-right: 4px;
}

.gg-hero-subcats .gg-hero-proof-tag {
  cursor: grab;
  user-select: none;
  /* Hard cap: no single tag wider than the available column space */
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gg-hero-subcats .gg-hero-proof-tag:active {
  cursor: grabbing;
}

/* SortableJS ghost / drag clone — keep inside column */
.gg-tag-ghost {
  opacity: 0.4;
}

.gg-tag-drag {
  /* While dragging, enforce a max-width so the clone can't widen past the column */
  max-width: calc(100% - 16px) !important;
}

/* --- Headline spans 2 right columns --- */
.gg-hero-headline {
  grid-column: 2 / 4;
  grid-row: 1;
  font-family: var(--font-primary);
  font-size: clamp(48px, 6.2vw, 80px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05em;
  color: var(--gg-black);
  overflow: visible;
  padding-left: 24px;
  position: relative;
  z-index: 20;
  /* Ensure it stays above the dark shadow from below */
}

.gg-hero-headline .accent {
  color: var(--gg-accent);
  font-style: italic;
  font-weight: 700;
}

.gg-hero-headline .bold {
  font-weight: 700;
  color: var(--gg-black);
}

.gg-hero-headline .faded {
  font-weight: 400;
  opacity: 0.32;
  -webkit-text-fill-color: initial;
  color: var(--gg-black);
  display: block;
  margin-top: 0.02em;
}

/* --- Sub + CTAs (bottom-left column row 2) --- */
.gg-hero-bottom-left {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  padding: 50px 0 0;
}

.gg-hero-sub {
  font-family: var(--font-primary);
  font-size: clamp(16px, 1.6vw, 18px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.5em;
  color: rgba(255, 255, 255, 0.65);
  max-width: 340px;
}

.gg-hero-cta-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  flex-wrap: wrap;
}

/* --- Stats / proof column (bottom-right 2 cols row 2) --- */
.gg-hero-bottom-right {
  grid-column: 2 / 4;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 90px;
  padding: 50px 0 0;
}

.gg-hero-proof-text {
  font-family: var(--font-primary);
  font-size: clamp(14px, 1.4vw, 19px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.5em;
  color: rgba(255, 255, 255, 0.65);
  max-width: 760px;
  opacity: 0.7;
}

.gg-hero-proof-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding-top: 4px;
}

.gg-hero-proof-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 110px;
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: rgba(0, 0, 0, 0.55);
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  background: transparent;
  transition: border-color 0.2s, background 0.2s;
  white-space: nowrap;
}

.gg-hero-proof-tag:hover {
  border-color: rgba(0, 0, 0, 0.15);
  background: rgba(0, 0, 0, 0.03);
}

.gg-hero-proof-tag.dark {
  background: #0a0a0a;
  color: #fff;
  border-color: transparent;
}

/* Responsive hero grid */
@media (max-width: 1080px) {
  .gg-hero-inner {
    grid-template-columns: 1fr 1fr;
    padding: 180px 32px 90px;
  }

  .gg-hero-badge-col {
    grid-column: 1;
    grid-row: 1;
    padding: 0;
  }

  .gg-hero-headline {
    grid-column: 1 / 3;
    grid-row: 2;
    margin-top: 14px;
  }

  .gg-hero-bottom-left {
    grid-column: 1;
    grid-row: 3;
    padding: 24px 0 0;
  }

  .gg-hero-bottom-right {
    grid-column: 2;
    grid-row: 3;
    gap: 54px;
    padding: 24px 0 0;
  }
}

/* Visibility Utilities */
.show-mobile { display: none !important; }
.hide-mobile { display: block !important; }
.hero-video-text .hide-mobile { display: inline-flex !important; }

@media (max-width: 920px) {

  /* Background banner as non-blocking backdrop */
  .gg-market-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100% !important;
    /* Cover the whole hero section */
    z-index: 0 !important;
    /* Send to back */
    opacity: 0.4 !important;
    /* Restore visibility on mobile */
    pointer-events: none;
  }

  .gg-hero {
    position: relative;
    z-index: 2;
    padding-top: 0;
    /* Reset previous padding */
  }

  /* 🛑 PROTECTED SECTION: DO NOT MODIFY PADDING/GAPS WITHOUT PERMISSION */
  .gg-hero-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 200px 24px 80px;
    gap: 16px;
  }

  .gg-hero-cta-row {
    order: 5 !important;
    /* Move to the end of the mobile stack */
    margin-top: 10px;
  }

  .gg-hero-badge-col {
    display: contents;
  }

  /* 1. Primeira Sessão (Label) */
  .gg-hero-badge-col .section-label {
    order: 1;
    margin-bottom: 0 !important;
  }

  /* 2. Botão GoodsgroveFx */
  .gg-hero-badge-col .btn-beam {
    order: 2;
    margin-bottom: 0 !important;
    transform-origin: left;
  }

  /* 3. Frase (Headline) */
  .gg-hero-headline {
    order: 3;
    grid-column: 1;
    grid-row: auto;
    padding-left: 0 !important;
    margin-top: 0;
    /* Keep it bold but ensure it fits by capping line height and slightly clamping */
    font-size: clamp(32px, 9vw, 42px) !important;
    line-height: 1.15em !important;
    max-width: 100%;
  }

  /* 4. Botões (Tags) */
  .gg-hero-badge-col .gg-hero-subcats {
    order: 4;
    padding-top: 4px;
    gap: 4px !important;
    /* Tighter gap for better fitting */
  }

  .gg-hero-proof-tag {
    font-size: 11px !important;
    /* Smaller text */
    padding: 6px 14px !important;
    /* Smaller padding */
    gap: 6px !important;
  }

  /* Unified Stats Grid for Mobile */
  .hero-stats-bar {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0 !important;
    padding: 0 !important;
    align-items: stretch !important;
    text-align: center !important;
    margin-top: 20px !important;
    /* Brought closer to the video */
  }

  .hero-stat-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center !important;
    padding: 18px 12px !important;
    /* Tighter padding for 'compact' look */
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  }

  .hero-stat-item:nth-child(even) {
    border-left: 1px solid rgba(255, 255, 255, 0.08) !important;
  }

  .hero-stat-item:nth-last-child(-n+2) {
    border-bottom: none !important;
  }

  .hero-stat-divider {
    display: none !important;
  }

  .hero-stat-value {
    font-size: 26px !important;
    /* Scaled down from 32px */
  }

  .hero-stat-value.is-text {
    font-size: 18px !important;
    /* Visual match for long word values */
    letter-spacing: 0;
  }

  .hero-stat-label {
    font-size: 11px !important;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  /* 🛑 PROTECTED SECTION: DO NOT MODIFY PEEK/BUTTON OFFSETS (FROZEN STATE) */
  /* Ultra-subtle peek: -18px shows just the tip of the curve */
  .gg-dark-hero-bottom {
    margin-top: -18px !important;
    border-radius: 40px 40px 0 0 !important;
    z-index: 10 !important;
  }

  /* Scroll indicator: Locked exactly on the border line */
  .gg-scroll-btn-wrap {
    display: flex !important;
    justify-content: center;
    height: 0 !important;
    margin-top: -18px !important;
    z-index: 10001 !important;
    pointer-events: none;
  }

  .gg-intersection-marker {
    display: flex !important;
    position: relative !important;
    left: auto !important;
    top: -27px !important;
    /* Centered 50/50 on the line (half of 44px) */
    transform: none !important;
    /* Prevent GSAP/Reveal overrides from shifting it */
    background: var(--gg-accent) !important;
    color: var(--gg-black) !important;
    width: 44px !important;
    height: 44px !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4), 0 0 0 4px var(--gg-black) !important;
    pointer-events: auto !important;
  }

  .gg-intersection-marker .material-symbols-outlined {
    font-size: 20px !important;
  }

  .gg-hero-bottom-left,
  .gg-hero-bottom-right {
    display: none;
  }

  .show-mobile { display: flex !important; }
  .hide-mobile, .hero-video-text .hide-mobile { display: none !important; }

  /* Video Preview Mobile refinement */
  .hero-preview-inner {
    aspect-ratio: 4 / 3 !important;
    /* Extra height for impact */
    min-height: auto !important;
  }

  .hero-video-text {
    left: 10px !important;
    right: 10px !important;
    top: 48% !important; /* Slightly higher to give title more "air" */
    transform: translateY(-50%) !important;
    max-width: 100% !important;
    align-items: center !important;
    text-align: center !important;
    gap: 64px !important; /* Larger gap for bigger fonts and player button */
  }

  .hero-video-text h3 {
    font-size: 28px !important;
    line-height: 1.05em !important;
    font-weight: 800 !important;
    letter-spacing: -0.03em !important;
  }

  .br-mobile {
    display: block;
  }

  .hero-video-text p {
    font-size: 15px !important;
    opacity: 0.95;
    max-width: 95% !important;
  }

  /* Miniature centered play button */
  .hero-play-btn {
    width: 44px !important;
    height: 44px !important;
    left: 50% !important;
    right: auto !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
  }

  .hero-play-btn span {
    font-size: 20px !important;
    margin-left: 2px !important;
  }

  /* Scaled down buttons for mobile */
  .btn-primary,
  .btn-accent,
  .btn-ghost {
    padding: 14px 24px !important;
    font-size: 14px !important;
  }

  .btn-beam-inner {
    padding: 13px 26px !important;
    font-size: 14px !important;
  }

  /* Specific fix for the disproportionate 'Lucrar' button on mobile */
  #hero-brand-cta .btn-beam-inner {
    padding: 12px 22px !important;
    font-size: 14px !important;
  }

  #hero-cta-primary {
    padding: 6px 6px 6px 18px !important;
    font-size: 14px !important;
    gap: 12px !important;
  }

  #hero-cta-primary .btn-icon-circle {
    width: 30px !important;
    height: 30px !important;
  }

  #hero-cta-primary .btn-icon-circle .material-symbols-outlined {
    font-size: 16px !important;
  }

  .mentor-quote {
    font-size: 19px !important;
  }
}

/* Hero video card — light border treatment */
.hero-video-wrapper {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.10);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.06),
    0 8px 24px rgba(0, 0, 0, 0.08),
    0 40px 80px -20px rgba(0, 0, 0, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  transition: box-shadow 0.4s;
}

.hero-video-wrapper:hover {
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.08),
    0 12px 32px rgba(0, 0, 0, 0.12),
    0 50px 100px -20px rgba(0, 0, 0, 0.18),
    0 0 0 80px rgba(140, 255, 46, 0.04) inset;
}

.hero-video-wrapper img {
  width: 100%;
  display: block;
  opacity: 0.75;
  filter: grayscale(0.6) contrast(1.1);
  transition: opacity 0.8s, filter 0.8s;
}

.hero-video-wrapper:hover img {
  opacity: 0.9;
  filter: grayscale(0.15) contrast(1.05);
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.6) 30%, transparent 60%);
  z-index: 1;
}

.hero-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: var(--gg-accent);
  border: 1px solid rgba(140, 255, 46, 0.5);
  backdrop-filter: blur(12px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.25s var(--ease-spring), background 0.2s;
  z-index: 4;
}

.hero-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.12);
  background: #9dff4d;
}

.hero-play-btn span {
  color: var(--gg-black);
  font-size: 36px;
  margin-left: 4px;
  /* visually center play icon */
}

/* Full-width preview bar below hero grid */
.hero-preview-bar {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 48px 80px;
  max-width: 1320px;
  margin: 0 auto;
  box-sizing: border-box;
}

.br-desktop {
  display: block;
  content: "";
}

@media (max-width: 900px) {
  .br-desktop {
    display: none;
  }
}

/* ═══════════════════════════════════════════════
   BORDER-BEAM — @property conic-gradient approach
   Works on any size element, no JS measurement needed.
   A "comet" of accent color rotates around the border.
═══════════════════════════════════════════════ */

/* Animatable CSS custom properties for the beam angle */
@property --gg-beam-cw {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@property --gg-beam-ccw {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes beam-spin-cw {
  to {
    --gg-beam-cw: 360deg;
  }
}

@keyframes beam-spin-ccw {
  to {
    --gg-beam-ccw: -360deg;
  }
}

/* 
     The ::after pseudo-element carries the spinning gradient.
     A CSS mask shows only the outer 2px ring (the border strip).
     Works independently of overflow: hidden on the parent.
    */
.beam-cw::after,
.beam-ccw::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1.5px;
  /* slim 1.5px beam strip for elegance */
  /* Punch a hole in the center so only the border strip is visible */
  -webkit-mask: linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 25;
}

/* Clockwise beam — video card & pricing card
       The gradient has three layers:
       1. A ghost-ring base (6% opacity whole circle) — the "track"
       2. A 100°-wide soft tail that builds up gently
       3. A concentrated bright head (~10°) at peak brightness               */
.beam-cw::after {
  background: conic-gradient(from var(--gg-beam-cw),
      /* ghost track — always present, very faint */
      rgba(140, 255, 46, .06) 0deg,
      rgba(140, 255, 46, .06) 260deg,
      /* tail begins — gentle fade-in */
      rgba(140, 255, 46, .12) 280deg,
      rgba(140, 255, 46, .28) 308deg,
      rgba(140, 255, 46, .55) 330deg,
      /* head — bright apex */
      rgba(140, 255, 46, .92) 350deg,
      #8CFF2E 355deg,
      /* instant micro-tail-off then back to ghost */
      rgba(140, 255, 46, .18) 358deg,
      rgba(140, 255, 46, .06) 360deg);
  filter: blur(0.4px) drop-shadow(0 0 8px rgba(140, 255, 46, .45)) drop-shadow(0 0 20px rgba(140, 255, 46, .15));
  animation: beam-spin-cw var(--beam-dur, 5s) linear infinite;
}

/* Counter-clockwise beam — stats bar */
.beam-ccw::after {
  background: conic-gradient(from var(--gg-beam-ccw),
      rgba(140, 255, 46, .06) 0deg,
      rgba(140, 255, 46, .06) 260deg,
      rgba(140, 255, 46, .12) 280deg,
      rgba(140, 255, 46, .28) 308deg,
      rgba(140, 255, 46, .55) 330deg,
      rgba(140, 255, 46, .92) 350deg,
      #8CFF2E 355deg,
      rgba(140, 255, 46, .18) 358deg,
      rgba(140, 255, 46, .06) 360deg);
  filter: blur(0.4px) drop-shadow(0 0 8px rgba(140, 255, 46, .45)) drop-shadow(0 0 20px rgba(140, 255, 46, .15));
  animation: beam-spin-ccw var(--beam-dur, 7s) linear infinite;
}

/* Keep old SVG classes invisible (no longer used) */
.beam-svg {
  display: none;
}

/* ── Video wrapper ───────────────────────────── */
.hero-preview-inner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
  /* ← allow ::after beam to show outside boundary */
  aspect-ratio: 16 / 9;
  background: rgba(255, 255, 255, 0.08);
  padding: 1px;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.06),
    0 8px 24px rgba(0, 0, 0, 0.2),
    0 40px 80px -20px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  transition: box-shadow 0.4s;
}

/* OLD conic spin beam — keep only for btn-beam */
.hero-preview-inner::before {
  content: none;
}

/* Re-enable for btn-beam buttons only */
.btn-beam::before {
  content: "";
  position: absolute;
  inset: -100%;
  background: conic-gradient(from 0deg, transparent 340deg, var(--gg-accent) 360deg);
  animation: gg-spin 2.5s linear infinite;
  z-index: -1 !important;
  /* Force duplicate below text */
}

.hero-preview-content {
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius-lg) - 1px);
  background: var(--gg-black);
  overflow: hidden;
  z-index: 1;
  transition: opacity 0.5s ease, visibility 0.5s;
}

/* Video Player Container */
.hero-video-iframe-container {
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius-lg) - 1px);
  background: #000;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s;
  overflow: hidden;
}

/* Playing state logic */
.hero-preview-inner.is-playing .hero-preview-content {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.hero-preview-inner.is-playing .hero-video-iframe-container {
  opacity: 1;
  visibility: visible;
}

.hero-video-iframe-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.hero-preview-inner:hover {
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.08),
    0 12px 32px rgba(0, 0, 0, 0.3),
    0 50px 100px -20px rgba(0, 0, 0, 0.5);
}

.hero-video-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(140, 255, 46, 0.05) 0%, transparent 60%);
  z-index: 1;
  transition: background 0.5s ease;
}

.hero-preview-inner:hover .hero-video-glow {
  background: radial-gradient(circle at center, rgba(140, 255, 46, 0.12) 0%, transparent 70%);
}

.hero-video-text {
  position: absolute;
  left: 64px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  text-align: left;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  max-width: 700px;
}

.hero-video-text h3 {
  font-family: var(--font-primary);
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1.05em;
  margin: 0;
}

.hero-video-text p {
  font-family: var(--font-primary);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  max-width: 90%;
}

@media (max-width: 768px) {
  .hero-preview-bar {
    padding: 0 20px 48px;
  }
}

/* Hero Stats Bar */
.hero-stats-bar {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  margin-top: 32px;
  padding: 0;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  flex: 1;
  padding: 32px 40px;
  transition: background 0.3s ease;
  cursor: default;
}

.hero-stat-item:hover {
  background: rgba(255, 255, 255, 0.04);
}

.hero-stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.08);
  margin: 0;
  align-self: center;
}

.hero-stat-value {
  font-family: var(--font-primary);
  font-size: clamp(24px, 3.5vw, 36px);
  /* Reduced from 32px-48px */
  font-weight: 800;
  color: var(--gg-accent);
  line-height: 1em;
  letter-spacing: -0.04em;
  transition: color 0.4s var(--ease-out, ease), text-shadow 0.4s var(--ease-out, ease);
}

.hero-stat-item:hover .hero-stat-value {
  text-shadow: 0 0 12px rgba(140, 255, 46, 0.4);
}

.hero-stat-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.3s ease;
}

.hero-stat-item:hover .hero-stat-label {
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 900px) {
  .hero-stats-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
    align-items: stretch;
    text-align: center;
  }

  .hero-stat-item {
    align-items: center;
    padding: 24px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  /* Items on the left get a right border */
  .hero-stat-item:nth-child(even) {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
  }

  /* Bottom items don't need bottom border */
  .hero-stat-item:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .hero-stat-divider {
    display: none;
  }

  .hero-stat-value {
    font-size: 24px;
    /* Reduced from 32px */
  }
}

@media (max-width: 768px) {
  .hero-preview-bar {
    padding: 0 20px 48px;
  }
}

/* Scroll cue */
.gg-scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.gg-scroll-cue span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.22);
}

.gg-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.22), transparent);
  animation: gg-float 2s ease-in-out infinite;
}

@media (max-width: 900px) {
  .gg-hero-inner {
    padding: 60px 24px 50px;
  }
}


/* ═══════════════════════════════════════════════
   STAT STRIP
═══════════════════════════════════════════════ */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: var(--gg-faint);
  border: 1px solid var(--gg-faint);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stat-item {
  padding: 36px 32px;
  background: var(--gg-dark);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 0.3s;
}

.stat-item:hover {
  background: var(--gg-dark-2);
}

.stat-number {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.06em;
  color: rgba(255, 255, 255, 0.16);
  /* transparent lettering preset */
  line-height: 1;
  transition: color 0.4s var(--ease-spring);
}

.stat-item:hover .stat-number {
  color: rgba(255, 255, 255, 0.5);
}

.stat-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.3);
}

.stat-accent {
  color: var(--gg-accent);
}


/* ═══════════════════════════════════════════════
   PAIN / TWO-COL SECTION
═══════════════════════════════════════════════ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.two-col.reverse {
  direction: rtl;
}

.two-col.reverse>* {
  direction: ltr;
}

@media (max-width: 900px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .two-col.reverse {
    direction: ltr;
  }
}

.section-headline {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.9);
}

/* Pain list */
.pain-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.pain-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255, 60, 60, 0.05);
  border: 1px solid rgba(255, 60, 60, 0.12);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.pain-item-icon {
  width: 32px;
  height: 32px;
  background: rgba(255, 60, 60, 0.1);
  border: 1px solid rgba(255, 60, 60, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ff4444;
  font-size: 16px;
}

/* Image glow wrapper */
.img-glow-wrap {
  position: relative;
}

.img-glow-wrap::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, var(--gg-accent-dim), transparent 60%);
  border-radius: var(--radius-lg);
  filter: blur(20px);
  opacity: 0.6;
  transition: opacity 0.6s;
}

.img-glow-wrap:hover::before {
  opacity: 1;
}

.img-glow-wrap .img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.img-glow-wrap img {
  width: 100%;
  display: block;
  filter: grayscale(1) contrast(1.15);
  transition: filter 1s;
}

.img-glow-wrap:hover img {
  filter: grayscale(0) contrast(1);
}

/* ───────────────────────────────────────────────
     PAIN SECTION — Light theme overrides
     ID selector beats class specificity so these always win
    ─────────────────────────────────────────────── */

/* Headline on light background */
#pain .section-headline {
  color: #2f2f2f;
}

#pain .section-headline span {
  color: rgba(47, 47, 47, 0.28);
  font-style: italic;
}

/* Mentor headline — italic span in muted gray, not green */
#mentor .section-headline span {
  color: rgba(255, 255, 255, 0.35);
  font-style: italic;
}

/* ── Card beam wrappers: sections 02 & 03 ──
       The ::after sits on the wrapper (not the card), so overflow:hidden
       on the inner card does NOT clip the beam.
       z-index: 100 ensures it floats above all card children.
    */
@property --card-beam-cw {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@property --card-beam-ccw {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes card-spin-cw {
  to {
    --card-beam-cw: 360deg;
  }
}

@keyframes card-spin-ccw {
  to {
    --card-beam-ccw: -360deg;
  }
}

.pain-card-wrap,
.section-card {
  transition: transform 0.4s var(--ease-spring), border-color 0.4s, box-shadow 0.4s;
  will-change: transform, box-shadow;
}

.section-card:hover {
  border-color: rgba(140, 255, 46, 0.18) !important;
  transform: translateY(-8px);
  box-shadow: 0 30px 70px -15px rgba(0, 0, 0, 0.6), 0 0 40px -20px rgba(140, 255, 46, 0.15);
}

.mentor-card-wrap {
  position: relative;
}

.pain-card-wrap::after,
.mentor-card-wrap::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  padding: 1.5px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 100;
}

.pain-card-wrap::after {
  background: conic-gradient(from var(--card-beam-cw),
      rgba(140, 255, 46, .04) 0deg,
      rgba(140, 255, 46, .04) 260deg,
      rgba(140, 255, 46, .10) 280deg,
      rgba(140, 255, 46, .25) 308deg,
      rgba(140, 255, 46, .55) 330deg,
      rgba(140, 255, 46, .90) 350deg,
      #8CFF2E 355deg,
      rgba(140, 255, 46, .18) 358deg,
      rgba(140, 255, 46, .04) 360deg);
  filter: blur(0.4px) drop-shadow(0 0 8px rgba(140, 255, 46, .4)) drop-shadow(0 0 20px rgba(140, 255, 46, .12));
  animation: card-spin-cw 6s linear infinite;
}

.mentor-card-wrap::after {
  background: conic-gradient(from var(--card-beam-ccw),
      rgba(140, 255, 46, .06) 0deg,
      rgba(140, 255, 46, .06) 260deg,
      rgba(140, 255, 46, .12) 280deg,
      rgba(140, 255, 46, .28) 308deg,
      rgba(140, 255, 46, .55) 330deg,
      rgba(140, 255, 46, .92) 350deg,
      #8CFF2E 355deg,
      rgba(140, 255, 46, .18) 358deg,
      rgba(140, 255, 46, .06) 360deg);
  filter: blur(0.4px) drop-shadow(0 0 8px rgba(140, 255, 46, .45)) drop-shadow(0 0 20px rgba(140, 255, 46, .15));
  animation: card-spin-ccw 8s linear infinite;
}

/* ───────────────────────────────────────────────
     MENTOR TRANSPOSITION EFFECT
    ─────────────────────────────────────────────── */

#mentor-photo-wrap {
  position: relative;
  height: 100%;
  overflow: visible !important;
}

.mentor-portrait {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: auto;
  max-width: 160%;
  display: block;
  object-fit: contain;
  object-position: left top;   /* Anchors to the left side */
  margin-left: -90px;         /* Dragged slightly to the left but less than before */
  margin-right: 0;
  z-index: 5;
  transition: transform 0.4s var(--ease-spring);
  pointer-events: none;
}

@media (max-width: 1080px) {
  #mentor-photo-wrap {
    height: 440px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden !important;
    position: relative;
    background: #0d0d0d;
    border-radius: 20px 20px 0 0;
  }
  .mentor-portrait {
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
    margin-left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center 15%; /* Focus on the face */
  }
}


/* Pain list items — subtle red on cream */
#pain .pain-item {
  background: rgba(220, 40, 40, 0.05);
  border: 1px solid rgba(220, 40, 40, 0.12);
  color: rgba(47, 47, 47, 0.82);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* Pain item icon circle */
#pain .pain-item-icon {
  background: rgba(220, 40, 40, 0.08);
  border-color: rgba(220, 40, 40, 0.16);
  color: rgba(200, 40, 40, 0.75);
}

/* Image frame — lighter border on cream bg */
#pain .img-glow-wrap .img-frame {
  border-color: rgba(47, 47, 47, 0.12);
}

/* Image glow — toned-down on light bg */
#pain .img-glow-wrap::before {
  background: linear-gradient(135deg, rgba(140, 255, 46, 0.12), transparent 60%);
  opacity: 0.5;
}

#pain .img-glow-wrap:hover::before {
  opacity: 0.8;
}


#pain div.glass-card-inner {
  grid-template-columns: 4fr 3fr;
  grid-template-rows: auto auto;
  align-items: stretch;
}

#pain-copy {
  grid-column: 1;
  grid-row: 1;
}

#pain-list {
  grid-column: 1;
  grid-row: 2;
}

#pain-image {
  grid-column: 2;
  grid-row: 1 / span 2;
}

/* ── Pain pills — design system: dark ghost pill (matches section 01) ── */
.pain-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 24px;
  box-sizing: border-box;
  background: #1a1a1a;
  border: 1.5px solid rgba(255, 255, 255, 0.10);
  border-radius: 110px;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.75);
  cursor: default;
  width: fit-content;
  white-space: nowrap;
  transition: opacity 0.35s, transform 0.4s var(--ease-spring), filter 0.3s,
    border-color 0.2s, background 0.2s;
  will-change: transform, opacity;
}

/* Green CTA — same height, follows btn-accent pill system */
.pain-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 52px;
  padding: 0 8px 0 24px;
  box-sizing: border-box;
  background: var(--gg-accent);
  border-radius: 110px;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #000;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s var(--ease-ws), box-shadow 0.2s var(--ease-ws);
}

.pain-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(140, 255, 46, 0.25);
}

/* Stagger collapse: pill-out (JS), hover individual, CTA hover group */
.pain-pill.pill-out,
.pain-pill:hover {
  opacity: 0;
  transform: scale(0.82) translateY(6px);
  filter: blur(3px);
}

@media (max-width: 900px) {
  #pain-grid {
    grid-template-columns: 1fr;
  }
}

/* Green CTA beam — slightly darker green border spin */
.pain-cta-beam {
  position: relative;
  overflow: hidden;
  clip-path: inset(0 round 20px);
  isolation: isolate;
  z-index: 0;
}

.pain-cta-beam::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 2px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 25;
  background: conic-gradient(from var(--gg-beam-cw),
      rgba(255, 255, 255, .00) 0deg,
      rgba(255, 255, 255, .00) 255deg,
      rgba(220, 255, 210, .10) 278deg,
      rgba(220, 255, 210, .35) 305deg,
      rgba(235, 255, 225, .70) 328deg,
      rgba(255, 255, 255, .95) 348deg,
      #ffffff 354deg,
      rgba(255, 255, 255, .25) 357deg,
      rgba(255, 255, 255, .00) 360deg);
  filter: blur(0.4px) drop-shadow(0 0 6px rgba(255, 255, 255, .70)) drop-shadow(0 0 16px rgba(200, 255, 180, .40));
  animation: beam-spin-cw 3.5s linear infinite;
}

/* ═══════════════════════════════════════════════
   AUTHORITY / MENTOR SECTION
═══════════════════════════════════════════════ */
.mentor-photo-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.mentor-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.7);
  transition: filter 1.2s;
}

.mentor-photo-wrap:hover img {
  filter: grayscale(0);
}

.mentor-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.85) 0%, transparent 55%);
}

.mentor-nameplate {
  position: absolute;
  bottom: 28px;
  left: 28px;
  z-index: 2;
}

.mentor-nameplate h3 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: #fff;
}

.mentor-nameplate p {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gg-accent);
  margin-top: 6px;
}

.mentor-badge-accent {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gg-accent);
  margin-bottom: 20px;
}


/* ═══════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .testimonial-grid {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 0 20px 20px 20px;
    margin: 0 -20px;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    grid-template-columns: none;
    /* overrides desktop grid */
  }

  .testimonial-grid::-webkit-scrollbar {
    display: none;
  }

  .testimonial-card {
    flex: 0 0 82vw;
    scroll-snap-align: center;
    margin-top: 0 !important;
    /* overrides desktop stagger */
  }

  .testi-progress-wrap {
    display: block;
    width: 120px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 auto;
    margin-top: -10px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    z-index: 5;
  }

  .testi-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--gg-accent);
    box-shadow: 0 0 10px var(--gg-accent-glow);
    transition: width 0.1s ease-out;
  }
}

/* Hide progress wrap on desktop */
.testi-progress-wrap {
  display: none;
}

@media (min-width: 901px) {
  .testimonial-grid .testimonial-card:nth-child(2) {
    margin-top: 32px;
  }
}

.testimonial-card {
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  background: var(--gg-dark);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.35s var(--ease-ws), transform 0.35s var(--ease-spring), box-shadow 0.35s;
  position: relative;
  overflow: hidden;
}

/* Flashlight reveal effect on testimonial cards */
.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(500px circle at var(--mx, 50%) var(--my, 50%),
      rgba(140, 255, 46, 0.055),
      transparent 40%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: 0;
}

.testimonial-card>* {
  position: relative;
  z-index: 1;
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-card:hover {
  border-color: rgba(140, 255, 46, 0.18);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px -15px rgba(0, 0, 0, 0.5), 0 0 40px -20px rgba(140, 255, 46, 0.12);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}

.testimonial-stars span {
  color: var(--gg-accent);
  font-size: 15px;
}

.testimonial-quote {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7em;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.55);
  font-style: italic;
  margin-bottom: 32px;
  border-left: 2px solid rgba(140, 255, 46, 0.2);
  padding-left: 16px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(140, 255, 46, 0.25);
  filter: grayscale(0.5);
  transition: filter 0.4s, border-color 0.4s;
}

.testimonial-card:hover .testimonial-avatar {
  filter: grayscale(0);
  border-color: rgba(140, 255, 46, 0.5);
}

.testimonial-name {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #fff;
}


/* ═══════════════════════════════════════════════
   DELIVERABLES / FEATURES
═══════════════════════════════════════════════ */
.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.deliverable-card {
  padding: 32px 28px;
  background: var(--gg-dark);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.35s var(--ease-ws), transform 0.3s var(--ease-spring), box-shadow 0.35s;
  position: relative;
  overflow: hidden;
}

.deliverable-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 50%),
      rgba(140, 255, 46, 0.06),
      transparent 40%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.deliverable-card:hover::before {
  opacity: 1;
}

.deliverable-card:hover {
  border-color: rgba(140, 255, 46, 0.22);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px -12px rgba(0, 0, 0, 0.45);
}

.deliverable-card:nth-child(even) {
  margin-top: 24px;
}

.deliverable-icon {
  font-size: 30px;
  color: var(--gg-accent);
  filter: drop-shadow(0 0 8px rgba(140, 255, 46, 0.3));
}

.deliverable-card h4 {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #fff;
}

/* Benefits list — refined vertical density */
.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.benefit-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: transform 0.3s var(--ease-ws);
}

.benefit-check {
  width: 44px;
  height: 44px;
  background: var(--gg-accent-dim);
  border: 1px solid rgba(140, 255, 46, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gg-accent);
  font-size: 22px;
  box-shadow: 0 0 15px rgba(140, 255, 46, 0.08);
  position: relative;
}

.benefit-check::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gg-accent-glow) 0%, transparent 70%);
  opacity: 0.15;
}

.benefit-item h4 {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
}

.benefit-item p {
  font-size: clamp(15px, 1.4vw, 16px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.65em;
}


/* ═══════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

.pricing-card {
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  background: var(--gg-dark);
  border: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: border-color 0.3s;
}

.pricing-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.pricing-card:not(.beam-cw)::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%),
      rgba(255, 255, 255, 0.06),
      transparent 40%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: 0;
}

.pricing-card:not(.beam-cw):hover::after {
  opacity: 1;
}

/* Featured card: flashlight via ::before (::after is taken by beam-cw) */
.pricing-card.beam-cw::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%),
      rgba(255, 255, 255, 0.06),
      transparent 40%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: 0;
}

.pricing-card.beam-cw:hover::before {
  opacity: 1;
}

.pricing-card.featured {
  background: var(--gg-dark-2);
  border: 1px solid rgba(140, 255, 46, 0.08);
  /* ghost border — beam handles the real border */
  transform: scale(1.03);
  box-shadow: 0 0 40px -15px rgba(140, 255, 46, 0.2), 0 40px 80px -20px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gg-accent);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 999px;
  white-space: nowrap;
  z-index: 30;
  /* Height must be > beam z-index (25) to avoid overlap */
}

.pricing-tier {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 28px;
}

.pricing-card.featured .pricing-tier {
  color: var(--gg-accent);
}

.pricing-price {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: #fff;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
}

.currency-symbol {
  font-size: 0.45em;
  font-weight: 500;
  margin-right: 6px;
  color: rgba(255, 255, 255, 0.3);
  transform: translateY(-0.1em);
}

.pricing-period {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: -0.02em;
}

.pricing-note {
  font-size: 11px;
  font-weight: 700;
  color: var(--gg-accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 8px;
  margin-bottom: 36px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
}

.pricing-card.featured .pricing-features li {
  color: rgba(255, 255, 255, 0.8);
}

.pricing-features li span.material-symbols-outlined {
  color: var(--gg-accent);
  font-size: 18px;
}


/* ═══════════════════════════════════════════════
   GUARANTEE
═══════════════════════════════════════════════ */
.guarantee-wrap {
  max-width: 880px;
  margin: 0 auto;
  padding: 64px 56px;
  border-radius: 32px;
  background: var(--gg-dark);
  border: 1px solid rgba(255, 255, 255, 0.07);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.guarantee-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 150px;
  background: radial-gradient(ellipse, var(--gg-accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.guarantee-icon {
  display: inline-flex;
  padding: 24px;
  background: var(--gg-accent-dim);
  border: 1px solid rgba(140, 255, 46, 0.2);
  border-radius: 50%;
  margin-bottom: 32px;
  color: var(--gg-accent);
  font-size: 56px;
}

.guarantee-wrap h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

.guarantee-wrap p {
  font-size: 17px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7em;
  max-width: 580px;
  margin: 0 auto 40px;
}

/* Smaller card in FAQ section */
#guarantee-card {
  text-align: center;
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--gg-faint);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  transition: border-color 0.35s var(--ease-ws), transform 0.35s var(--ease-spring), box-shadow 0.35s;
}

/* Flashlight reveal effect on guarantee card */
#guarantee-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 50%),
      rgba(140, 255, 46, 0.055),
      transparent 40%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: 0;
}

#guarantee-card:hover::before {
  opacity: 1;
}

#guarantee-card:hover {
  border-color: rgba(140, 255, 46, 0.18);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px -15px rgba(0, 0, 0, 0.5), 0 0 40px -20px rgba(140, 255, 46, 0.12);
}

#guarantee-card > * {
  position: relative;
  z-index: 1;
}

.guarantee-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.guarantee-icon-wrap {
  color: var(--gg-accent);
}

.guarantee-icon-wrap span {
  font-size: 32px;
}

#guarantee-card h3 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.3;
  margin: 0;
}

#guarantee-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin: 0;
}

#guarantee-cta {
  width: 100%;
  justify-content: center;
  margin-top: 28px;
}


/* ═══════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--gg-dark);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.13);
}

.faq-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  cursor: pointer;
  list-style: none;
  gap: 16px;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-summary h3 {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.faq-icon {
  color: var(--gg-accent);
  font-size: 22px;
  transition: transform 0.35s var(--ease-spring);
  flex-shrink: 0;
}

details[open] .faq-icon {
  transform: rotate(180deg);
}

.faq-body {
  padding: 0 28px 24px;
  max-width: 550px;
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7em;
  animation: gg-expand 0.3s var(--ease-spring);
}


/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.gg-footer {
  background: var(--gg-black);
  border-top: 1px solid var(--gg-faint);
  padding: 80px 48px 40px;
  position: relative;
  overflow: hidden;
}

.gg-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(140, 255, 46, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.footer-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
  position: relative;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
  }

  .gg-footer {
    padding: 80px 24px 40px;
  }

  .footer-col:first-child {
    grid-column: span 2;
    border-bottom: 1px solid var(--gg-faint);
    padding-bottom: 32px;
  }

  .footer-bottom {
    text-align: center;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid var(--gg-faint);
    padding-top: 32px;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 32px 16px !important;
    display: grid !important;
  }

  /* First child (Brand) - Span full width */
  .footer-grid>div:nth-child(1) {
    grid-column: span 2 !important;
    border-bottom: 1px solid var(--gg-faint);
    padding-bottom: 24px;
  }

  /* Second and Third children (Nav and Legal) - Side by side */
  .footer-grid>div:nth-child(2),
  .footer-grid>div:nth-child(3) {
    grid-column: span 1 !important;
  }

  /* Fourth child (Newsletter) - Span full width */
  .footer-grid>div:nth-child(4) {
    grid-column: span 2 !important;
    margin-top: 8px;
    padding-top: 32px;
    border-top: 1px solid var(--gg-faint);
  }

  .newsletter-input-row {
    width: 100% !important;
    max-width: none !important;
    position: relative;
  }
}

.footer-logo {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: #fff;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo-dot {
  width: 7px;
  height: 7px;
  background: var(--gg-accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gg-accent-glow);
}

.footer-tagline {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.25);
  line-height: 1.7em;
  font-style: italic;
  margin-bottom: 24px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: var(--gg-accent);
}

.footer-contact a span {
  font-size: 16px;
}

/* Footer social links */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.35);
  font-size: 15px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  text-decoration: none;
}

.footer-social-btn:hover {
  background: rgba(140, 255, 46, 0.08);
  border-color: rgba(140, 255, 46, 0.2);
  color: var(--gg-accent);
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
}

.footer-col ul a:hover {
  color: #fff;
}

/* Newsletter */
.newsletter-input-row {
  display: flex;
  gap: 8px;
}

.newsletter-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  padding: 14px 20px;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  min-width: 0;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.newsletter-input:focus {
  border-color: rgba(140, 255, 46, 0.4);
}

.newsletter-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
}

.newsletter-btn:hover {
  background: var(--gg-accent);
  color: #000;
}

.newsletter-hint {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
  margin-top: 12px;
}

.footer-bottom {
  max-width: 1320px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid var(--gg-faint);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-bottom p {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.18);
}


/* ═══════════════════════════════════════════════
   UTILITY
═══════════════════════════════════════════════ */
.divider {
  width: 100%;
  height: 1px;
  background: var(--gg-faint);
}

.center {
  text-align: center;
}

.flex-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.mb-8 {
  margin-bottom: 8px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mb-48 {
  margin-bottom: 48px;
}

/* ═══════════════════════════════════════════════
   HUD OVERLAY — 4 CORNERS
   Textos espelhados do market-flow-demo.html
═══════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════
       HUD — wrapper covers the full .gg-top-block.
       TL/TR anchor from the visual top (below nav).
       BL/BR use top:calc(100vh-Xpx) because the
       .gg-top-block is sticky at top:0, so its top
       equals the viewport top → calc(100vh) = viewport
       bottom, independent of the parent's actual height.
    ═══════════════════════════════════════════════ */
.gg-hud {
  position: absolute;
  inset: 0;
  z-index: 9;
  pointer-events: none;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.35);
  line-height: 1.7;
  opacity: 0.75;
}

/* TL/TR — below the fixed nav (118px = 110px banner padding + 8px) */
.gg-hud-tl {
  position: absolute;
  top: 118px;
  left: 40px;
}

.gg-hud-tr {
  position: absolute;
  top: 118px;
  right: 40px;
  text-align: right;
}

/* BL/BR — raised above the dark section */
.gg-hud-bl {
  position: absolute;
  top: calc(100vh - 120px);
  left: 40px;
}

.gg-hud-br {
  position: absolute;
  top: calc(100vh - 120px);
  right: 40px;
  text-align: right;
}

/* L-bracket corner markers */
.gg-hud-tl::before {
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  width: 14px;
  height: 14px;
  border-top: 1px solid rgba(90, 185, 10, 0.5);
  border-left: 1px solid rgba(90, 185, 10, 0.5);
}

.gg-hud-tr::after {
  content: '';
  position: absolute;
  top: -6px;
  right: -6px;
  width: 14px;
  height: 14px;
  border-top: 1px solid rgba(90, 185, 10, 0.5);
  border-right: 1px solid rgba(90, 185, 10, 0.5);
}

.gg-hud-bl::before {
  content: '';
  position: absolute;
  bottom: -6px;
  left: -6px;
  width: 14px;
  height: 14px;
  border-bottom: 1px solid rgba(90, 185, 10, 0.5);
  border-left: 1px solid rgba(90, 185, 10, 0.5);
}

.gg-hud-br::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: -6px;
  width: 14px;
  height: 14px;
  border-bottom: 1px solid rgba(90, 185, 10, 0.5);
  border-right: 1px solid rgba(90, 185, 10, 0.5);
}

/* Accents */
.gg-hud-accent {
  color: rgba(70, 160, 5, 0.9);
}

.gg-hud-price {
  font-size: 18px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.5);
  margin: 2px 0;
}

.gg-hud-badge {
  display: inline-block;
  font-size: 8px;
  padding: 2px 6px;
  border: 1px solid currentColor;
  border-radius: 2px;
  margin-top: 4px;
  margin-right: 4px;
}

.gg-hud-badge.live {
  color: rgba(70, 160, 5, 0.85);
}

.gg-hud-badge.ver {
  color: rgba(0, 0, 0, 0.25);
}

.gg-hud-vol {
  font-size: 14px;
  color: rgba(70, 160, 5, 0.85);
  margin: 2px 0;
}

.gg-hud-sub {
  font-size: 8px;
  opacity: 0.35;
  margin-top: 4px;
}

.gg-hud-footer-l {
  font-size: 8px;
  color: rgba(0, 0, 0, 0.55);
  line-height: 1.9;
}

@media (max-width: 768px) {
  .gg-hud {
    display: none;
  }
}

/* ════════════════════════════════════════════
   DEDUPLICATED UTILITY CLASSES
════════════════════════════════════════════ */

/* Section Labels */
.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-tertiary);
  font-weight: 500;
  text-transform: uppercase;
}

.section-label-small {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(47, 47, 47, 0.4);
  margin-bottom: 28px;
}

.section-label-default {
  font-size: 14px;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
}

.section-label-light {
  color: rgba(255, 255, 255, 0.6);
}

.section-label-dark {
  color: rgba(0, 0, 0, 0.5);
}

.section-label-center {
  justify-content: center;
}

.section-label-dot {
  width: 8px;
  height: 8px;
  background: var(--gg-accent);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px rgba(140, 255, 46, 0.5);
  flex-shrink: 0;
}

/* Glass Cards */
.glass-card-inner {
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: stretch;
  min-height: auto;
}

.glass-card-light {
  background: linear-gradient(175deg, rgba(140, 255, 46, 0.04) 0%, #ffffff 72px);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-top: 2px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.03), 0 4px 8px rgba(0, 0, 0, 0.04), 0 12px 28px rgba(0, 0, 0, 0.06), 0 32px 56px rgba(0, 0, 0, 0.05);
}

.glass-card-dark {
  background: linear-gradient(175deg, rgba(140, 255, 46, 0.05) 0%, rgba(18, 18, 18, 0.98) 72px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-top: 2px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.16), 0 12px 28px rgba(0, 0, 0, 0.20), 0 32px 56px rgba(0, 0, 0, 0.18);
}

.glow-line-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(140, 255, 46, 0.5) 40%, rgba(140, 255, 46, 0.5) 60%, transparent 100%);
  pointer-events: none;
}

/* Decor Vertical Line */
.vertical-line-bg {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 2px;
  pointer-events: none;
  z-index: -1;
}

.vertical-line-cursor {
  position: absolute;
  top: -120px;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--gg-accent), transparent);
}

/* ═══════════════════════════════════════════════
   GLOBAL MOBILE RESPONSIVENESS OVERRIDES
═══════════════════════════════════════════════ */
@media (max-width: 900px) {

  /* Override inline grid-template-columns */
  .glass-card-inner[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }

  /* Reset rigid paddings on mobile */
  #pain-copy,
  #mentor-copy {
    padding: 32px 24px !important;
  }

  /* Pain Section Mobile Reorder */
  #pain div.glass-card-inner {
    display: flex !important;
    flex-direction: column !important;
  }

  #pain-copy {
    order: 1 !important;
    padding: 32px 24px !important;
  }

  #pain-image {
    order: 2 !important;
    width: 100% !important;
    min-height: 280px !important;
    margin: 0 !important;
  }

  #pain-list {
    order: 3 !important;
    padding: 32px 24px !important;
    margin-bottom: 0 !important;
    gap: 8px !important;
    display: flex;
    flex-wrap: wrap;
  }

  .pain-pill {
    order: 1;
    height: 42px !important;
    padding: 0 16px !important;
    font-size: 13px !important;
  }

  #pain-cta {
    order: 99 !important;
    width: 100%;
    justify-content: space-between;
    margin-top: 12px;
  }

  /* Main headings */
  .section-headline {
    font-size: clamp(28px, 8vw, 36px) !important;
    margin-bottom: 24px !important;
    line-height: 1.15em !important;
  }

  .text-mixed-headline {
    font-size: clamp(28px, 8vw, 36px) !important;
  }

  /* Center labels in mobile layout if needed */
  .section-label {
    font-size: 13px !important;
    margin-bottom: 20px !important;
  }

  /* FAQ grid override */
  #guarantee-faq>.gg-inner>div:nth-child(2) {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  /* Hero video text on mobile */
  .hero-video-text {
    left: 24px !important;
    max-width: calc(100% - 48px) !important;
  }

  .hero-preview-bar {
    padding: 0 24px 60px !important;
  }

  /* ── Mobile Deliverables ── */
  #deliverables-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  #benefits-copy {
    order: 1;
    text-align: center;
  }

  #benefits-copy .section-label {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  #deliverables-cards {
    order: 2;
  }

  /* Optimize Deliverables Grid Spacing on Mobile */
  .deliverables-grid {
    gap: 16px !important;
  }

  .deliverable-card {
    padding: 24px 20px !important;
    gap: 12px !important;
  }

  .deliverable-card h4 {
    font-size: 14px !important;
  }

  .deliverable-card p {
    font-size: 12px !important;
    line-height: 1.4em !important;
  }

  /* ── Mobile Benefit Modules Refresh ── */
  .benefit-list {
    gap: 16px !important;
  }

  .benefit-item {
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-left: 3px solid var(--gg-accent);
    padding: 24px 20px;
    border-radius: 16px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: flex !important;
    flex-direction: row !important;
    /* Horizontal layout: Icon left, Text right */
    align-items: center;
    text-align: left;
    gap: 16px !important;
  }

  /* Remove min-width logic that were overriding to column previously */
  @media (min-width: 480px) {
    /* Rules already covered by the main mobile block */
  }

  .benefit-check {
    width: 36px !important;
    height: 36px !important;
    font-size: 18px !important;
    background: rgba(140, 255, 46, 0.08) !important;
  }

  .benefit-item h4 {
    font-size: 15px !important;
    margin-bottom: 4px !important;
    color: #fff !important;
  }

  .benefit-item p {
    font-size: 13px !important;
    line-height: 1.6em !important;
  }

  /* ── Mobile Pricing Carousel Refresh ── */
  #pricing-progress-container {
    display: block !important;
    margin-left: 24px;
    width: calc(100% - 48px) !important;
  }

  .pricing-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    gap: 16px !important;
    padding: 20px 24px 40px !important;
    margin: 0 -24px !important;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .pricing-grid::-webkit-scrollbar {
    display: none;
  }

  .pricing-card {
    min-width: 85vw !important;
    scroll-snap-align: center !important;
    flex-shrink: 0 !important;
    padding: 32px 28px !important;
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
  }

  .pricing-card.featured {
    transform: scale(1) !important;
    /* Reset desktop scale for mobile carousel consistency */
    border: 1px solid rgba(140, 255, 46, 0.2) !important;
    background: linear-gradient(175deg, rgba(140, 255, 46, 0.05) 0%, rgba(18, 18, 18, 0.98) 72px) !important;
    box-shadow: 0 0 30px -10px rgba(140, 255, 46, 0.15), 0 20px 40px -10px rgba(0, 0, 0, 0.4) !important;
  }

  .pricing-card.featured::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(175deg, rgba(140, 255, 46, 0.3), transparent 40%);
    pointer-events: none;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    padding: 1px;
    z-index: 1;
  }

  .pricing-price {
    font-size: 44px !important;
    display: inline-flex;
    align-items: baseline;
  }

  .currency-symbol {
    font-size: 0.45em !important;
    transform: translateY(-0.25em) !important;
    margin-right: 8px !important;
  }

  .pricing-tier {
    margin-bottom: 20px !important;
  }

  .pricing-features {
    gap: 12px !important;
    margin-bottom: 28px !important;
  }

  .pricing-features li {
    font-size: 13px !important;
  }

  /* ── Mobile Guarantee Horizontal PREMIUM ── */
  #guarantee-card {
    padding: 24px !important;
    text-align: left !important;
    border-radius: 20px !important;
    background: var(--gg-dark) !important;
    border: 1px solid var(--gg-faint) !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    height: auto !important;
    /* Force auto height to kill any JS residue */
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5) !important;
    position: relative !important;
    overflow: hidden !important;
  }

  /* Subtitle glow effect (Design System) */
  #guarantee-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(140, 255, 46, 0.03), transparent 70%);
    pointer-events: none;
  }

  .guarantee-content {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 16px !important;
  }

  .guarantee-icon-wrap {
    width: 44px !important;
    height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(140, 255, 46, 0.08) !important;
    border-radius: 12px !important;
    border: 1px solid rgba(140, 255, 46, 0.15) !important;
    flex-shrink: 0 !important;
    color: var(--gg-accent) !important;
  }

  .guarantee-icon-wrap span {
    font-size: 24px !important;
  }

  .guarantee-text {
    flex: 1 !important;
  }

  .guarantee-text h3 {
    font-size: 20px !important;
    font-weight: 800 !important;
    margin-bottom: 4px !important;
    line-height: 1.2 !important;
    color: #fff !important;
  }

  .guarantee-text p {
    font-size: 14px !important;
    line-height: 1.5 !important;
    color: rgba(255, 255, 255, 0.55) !important;
    margin: 0 !important;
  }

  #guarantee-cta {
    width: 100% !important;
    display: inline-flex !important;
    justify-content: center !important;
    padding: 1.5px !important;
    /* Required for the beam animation gap */
    margin-top: 0 !important;
    isolation: isolate !important;
    /* Fix overlap in mobile guarantee */
  }

  #guarantee-cta .btn-beam-inner {
    width: 100% !important;
    justify-content: center !important;
    padding: 16px 20px !important;
    font-size: 16px !important;
    white-space: nowrap !important;
    border-radius: calc(var(--radius-pill) - 2px) !important;
    z-index: 10 !important;
    /* Ensure mobile override respects stacking context */
  }

  /* Center FAQ Header on Mobile */
  #faq {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    margin-bottom: 32px !important;
  }

  /* Pain Mobile Image Hover */
  .pain-image-mobile img {
    transition: transform 0.8s var(--ease-spring) !important;
  }
  .pain-image-mobile:hover img {
    transform: scale(1.04) !important;
  }
}

/* ═══════════════════════════════════════════════
   FLOATING WHATSAPP BUTTON Styles
═══════════════════════════════════════════════ */
.gg-whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  background: var(--gg-accent);
  color: var(--gg-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 
              0 0 20px var(--gg-accent-glow);
  z-index: 10000;
  text-decoration: none;
  transition: transform 0.3s var(--ease-spring), 
              box-shadow 0.3s var(--ease-spring);
  animation: gg-float 4s ease-in-out infinite;
  will-change: transform;
}

.gg-whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 
              0 0 30px var(--gg-accent-glow);
  color: var(--gg-black);
}

.gg-whatsapp-float svg {
  width: 32px;
  height: 32px;
  stroke-width: 2.5;
}

/* Responsive adjustment */
@media (max-width: 760px) {
  .gg-whatsapp-float {
    bottom: 24px;
    right: 24px;
    width: 50px;
    height: 50px;
  }
  
  .gg-whatsapp-float svg {
    width: 28px;
    height: 28px;
    stroke-width: 2;
  }
}


