/* ============================================
   CSS Custom Properties / Brand Tokens
   ============================================ */
:root {
  --color-bg: #0a0a0a;
  --color-bg-card: #111111;
  --color-yellow: #FFD200;
  --color-orange: #FF6B1F;
  --color-white: #FFFFFF;
  --color-offwhite: #F5F5F5;
  --color-muted: #A0A0A0;
  --color-border: #222222;
  --color-negative: #424242;

  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1400px;
  --gutter: 24px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================
   Reset & Base
   ============================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: auto; /* Lenis handles smooth scroll */
}

html.lenis, html.lenis body {
  height: auto;
}

body {
  font-family: var(--font-family);
  background: var(--color-bg);
  color: var(--color-offwhite);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ============================================
   Container
   ============================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============================================
   Typography
   ============================================ */
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-yellow);
  margin-bottom: 20px;
}

.h2-stacked, .h2-single {
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 40px;
}

.h2-stacked {
  font-size: 62px;
}

.h2-stacked span {
  display: block;
}

.h2-single {
  font-size: 62px;
}

.text--yellow {
  color: var(--color-yellow);
}

.section__subhead {
  font-size: 18px;
  color: var(--color-offwhite);
  max-width: 700px;
  margin-bottom: 48px;
  line-height: 1.6;
}

.section__body {
  font-size: 18px;
  color: var(--color-offwhite);
  max-width: 650px;
  margin-bottom: 32px;
  line-height: 1.6;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-block;
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  text-align: center;
}

.btn--primary {
  background: var(--color-yellow);
  color: #000;
  padding: 16px 32px;
  border-radius: 4px;
}

.btn--primary:hover, .btn--primary:focus-visible {
  box-shadow: 0 0 30px rgba(255, 210, 0, 0.4), 0 0 60px rgba(255, 210, 0, 0.15);
  transform: translateY(-1px);
}

.btn--primary:focus-visible {
  outline: 3px solid var(--color-yellow);
  outline-offset: 3px;
}

.btn--outline {
  background: transparent;
  color: var(--color-yellow);
  padding: 16px 32px;
  border: 2px solid var(--color-yellow);
  border-radius: 4px;
}

.btn--outline:hover, .btn--outline:focus-visible {
  background: rgba(255, 210, 0, 0.08);
  box-shadow: 0 0 20px rgba(255, 210, 0, 0.2);
}

.btn--outline:focus-visible {
  outline: 3px solid var(--color-yellow);
  outline-offset: 3px;
}

.btn--large {
  font-size: 18px;
  padding: 20px 40px;
}

.btn--full {
  width: 100%;
}

/* ============================================
   Inline CTA Buttons
   ============================================ */
.inline-cta {
  text-align: center;
  padding: 40px var(--gutter);
}

/* ============================================
   SECTION 1: Sticky Top Bar
   ============================================ */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  transform: translateY(0);
}

.top-bar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 12px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.top-bar__logo {
  flex-shrink: 0;
}

.logo-svg {
  width: 220px;
  height: auto;
}

.top-bar__info {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-white);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.top-bar__cta {
  flex-shrink: 0;
  padding: 10px 20px;
  font-size: 14px;
}

/* ============================================
   SECTION 2: Hero
   ============================================ */
.hero {
  padding: 120px 0 40px;
  min-height: auto;
  display: flex;
  align-items: center;
}

.hero .container {
  max-width: 800px;
  text-align: center;
}

.hero__h1 {
  font-size: 80px;
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero__line {
  display: block;
}

.hero__line--yellow {
  color: var(--color-yellow);
}

.hero__subhead {
  font-size: 18px;
  color: var(--color-offwhite);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero__proof {
  display: flex;
  align-items: stretch;
  gap: 16px;
  margin-bottom: 36px;
  justify-content: center;
}

.yellow-bar-left {
  width: 4px;
  background: var(--color-yellow);
  border-radius: 2px;
  flex-shrink: 0;
}

.hero__proof p {
  font-size: 16px;
  color: var(--color-yellow);
  font-weight: 600;
  line-height: 1.5;
}

.hero__trust {
  font-size: 14px;
  color: var(--color-muted);
  margin-top: 16px;
}

/* ============================================
   VSL Video Section
   ============================================ */
.section--vsl {
  padding: 40px 0 60px;
  position: relative;
}

.section--vsl .container {
  display: flex;
  justify-content: center;
  position: relative;
}

.vsl__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 800px;
  background: radial-gradient(ellipse at center, rgba(255, 210, 0, 0.12) 0%, rgba(255, 210, 0, 0.04) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.vsl__wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #1a1a1a;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 9 / 16;
  z-index: 1;
  box-shadow: 0 0 50px rgba(255, 210, 0, 0.12), 0 0 100px rgba(255, 210, 0, 0.06);
}

.vsl__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.vsl__controls {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__control-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 210, 0, 0.3);
  border-radius: 50%;
  cursor: pointer;
  color: var(--color-yellow);
  transition: all 0.3s var(--ease-out);
}

.hero__control-btn svg {
  width: 18px;
  height: 18px;
}

.hero__control-btn:hover {
  background: rgba(255, 210, 0, 0.15);
  border-color: var(--color-yellow);
}

/* ============================================
   SECTION 3: Press Row
   ============================================ */
.section--press {
  padding: 48px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.press__subhead {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-muted);
  text-align: center;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.press__logos {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.press__track {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: nowrap;
  animation: marquee 20s linear infinite;
  width: max-content;
}

.press__logo {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-white);
  opacity: 0.5;
  white-space: nowrap;
  letter-spacing: 0.05em;
}

/* ============================================
   Sections (general)
   ============================================ */
.section {
  padding: 100px 0;
}

/* ============================================
   SECTION 4: The Problem
   ============================================ */
.punches {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-bottom: 48px;
  max-width: 700px;
}

.punch {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  opacity: 1;
  transform: none;
}

.punch__num {
  font-size: 48px;
  font-weight: 900;
  color: var(--color-yellow);
  line-height: 1;
  flex-shrink: 0;
  width: 70px;
}

.punch__text {
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-offwhite);
}

.transition-line {
  display: flex;
  align-items: stretch;
  gap: 16px;
  max-width: 600px;
}

.transition-line p {
  font-size: 18px;
  color: var(--color-yellow);
  line-height: 1.5;
}

/* ============================================
   SECTION 5: Case Studies
   ============================================ */
.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.case-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 1;
  transform: none;
}

.case-card__number {
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 900;
  color: var(--color-yellow);
  line-height: 1;
}

.case-card__label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-white);
  text-transform: uppercase;
}

.case-card__text {
  font-size: 16px;
  color: var(--color-offwhite);
  line-height: 1.5;
  margin-top: 8px;
}

.case-card__client {
  font-size: 14px;
  color: var(--color-muted);
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
  font-weight: 600;
}

/* ============================================
   SECTION 6: Outcome Blocks
   ============================================ */
.outcome-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.outcome-block {
  background: var(--color-bg-card);
  border-radius: 8px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  opacity: 1;
  transform: none;
}

.outcome-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 48px;
  background: var(--color-yellow);
  border-radius: 0 2px 2px 0;
}

.outcome-block__num {
  font-size: 36px;
  font-weight: 900;
  color: var(--color-yellow);
  line-height: 1;
  display: block;
  margin-bottom: 16px;
}

.outcome-block__title {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-white);
  text-transform: uppercase;
  margin-bottom: 12px;
  line-height: 1.3;
}

.outcome-block__body {
  font-size: 16px;
  color: var(--color-offwhite);
  line-height: 1.6;
}

/* ============================================
   SECTION 7: Who This Is For
   ============================================ */
.qualifier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.qualifier {
  border-radius: 8px;
  padding: 36px 28px;
}

.qualifier--yes {
  background: rgba(255, 210, 0, 0.06);
  border: 1px solid rgba(255, 210, 0, 0.2);
}

.qualifier--no {
  background: rgba(66, 66, 66, 0.2);
  border: 1px solid var(--color-border);
}

.qualifier__title {
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.qualifier--yes .qualifier__title {
  color: var(--color-yellow);
}

.qualifier--no .qualifier__title {
  color: var(--color-muted);
}

.qualifier__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.qualifier__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-offwhite);
}

.icon-tick, .icon-cross {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
  margin-top: 2px;
}

.icon-tick::before, .icon-tick::after {
  content: '';
  position: absolute;
  background: var(--color-yellow);
  border-radius: 2px;
}

.icon-tick::before {
  width: 8px;
  height: 3px;
  bottom: 7px;
  left: 3px;
  transform: rotate(45deg);
}

.icon-tick::after {
  width: 14px;
  height: 3px;
  bottom: 9px;
  left: 6px;
  transform: rotate(-45deg);
}

.icon-cross::before, .icon-cross::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 3px;
  background: var(--color-negative);
  border-radius: 2px;
  top: 50%;
  left: 50%;
}

.icon-cross::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.icon-cross::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* ============================================
   SECTION 8: About
   ============================================ */
.about__grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}

.about__headshot {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid var(--color-yellow);
}

.about__h3 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  color: var(--color-white);
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1.1;
}

.about__body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-offwhite);
  margin-bottom: 24px;
}

.about__logo {
  display: inline-block;
}

.logo-svg--small {
  width: 160px;
  height: auto;
}

/* ============================================
   SECTION 9: Bonuses
   ============================================ */
.bonus-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
}

.bonus-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border);
  opacity: 1;
  transform: none;
}

.bonus-item__num {
  font-size: 32px;
  font-weight: 900;
  color: var(--color-yellow);
  line-height: 1;
  flex-shrink: 0;
  width: 50px;
}

.bonus-item__title {
  font-size: 16px;
  font-weight: 800;
  color: var(--color-white);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.bonus-item__desc {
  font-size: 15px;
  color: var(--color-muted);
  line-height: 1.5;
}

/* ============================================
   SECTION 10: Strategy Call
   ============================================ */
.section--strategy {
  text-align: center;
  padding: 80px 0;
}

.section--strategy .section__body {
  max-width: 600px;
  margin: 0 auto 32px;
}

/* ============================================
   SECTION 11: FAQ
   ============================================ */
.faq-list {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  background: none;
  border: none;
  color: var(--color-white);
  font-family: var(--font-family);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}

.faq-item__question:hover {
  color: var(--color-yellow);
}

.faq-item__question:focus-visible {
  outline: 2px solid var(--color-yellow);
  outline-offset: 4px;
}

.faq-item__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--color-yellow);
  transition: transform 0.3s var(--ease-out);
}

.faq-item[data-open="true"] .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  padding: 0 0 24px;
}

.faq-item__answer p {
  font-size: 16px;
  color: var(--color-offwhite);
  line-height: 1.6;
  max-width: 620px;
}

/* ============================================
   SECTION 12: Registration Form
   ============================================ */
.section--register {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--color-bg) 0%, #0f0f0f 100%);
}

.section--register .h2-stacked {
  text-align: center;
}

.section--register .section__body {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
}

.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.register-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.form-field .optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.form-field input {
  width: 100%;
  padding: 14px 16px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  color: var(--color-white);
  font-family: var(--font-family);
  font-size: 16px;
  transition: border-color 0.2s;
}

.form-field input:focus {
  outline: none;
  border-color: var(--color-yellow);
  box-shadow: 0 0 0 3px rgba(255, 210, 0, 0.15);
}

.register-form .btn--full {
  margin-top: 8px;
}

.register__fine-print {
  font-size: 14px;
  color: var(--color-muted);
  text-align: center;
  margin-top: 20px;
}

/* ============================================
   SECTION 13: Footer
   ============================================ */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--color-border);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__tagline {
  font-size: 14px;
  color: var(--color-muted);
}

.footer__legal {
  font-size: 13px;
  color: var(--color-muted);
}

.footer__legal a {
  color: var(--color-muted);
  transition: color 0.2s;
}

.footer__legal a:hover {
  color: var(--color-yellow);
}

/* ============================================
   Sticky Mobile CTA
   ============================================ */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 12px var(--gutter);
  background: var(--color-yellow);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
}

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

.sticky-mobile-cta .btn {
  background: #000;
  color: var(--color-yellow);
  padding: 14px;
  font-size: 15px;
  border-radius: 4px;
}

.sticky-mobile-cta .btn:hover {
  background: #111;
}

/* ============================================
   Mobile Marquee for Press Logos
   ============================================ */
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   Responsive: Tablet
   ============================================ */
@media (max-width: 1024px) {
  .vsl__wrapper {
    max-width: 420px;
  }

  .outcome-blocks {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

  .about__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about__headshot {
    margin: 0 auto;
  }

  .top-bar__info {
    display: none;
  }
}

/* ============================================
   Responsive: Mobile
   ============================================ */
@media (max-width: 640px) {
  :root {
    --gutter: 20px;
  }

  .section {
    padding: 72px 0;
  }

  .h2-stacked, .h2-single {
    font-size: 42px;
  }

  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero__h1 {
    font-size: clamp(44px, 12vw, 72px);
  }

  .hero__subhead {
    font-size: 17px;
  }

  .vsl__wrapper {
    max-width: 90vw;
    border-radius: 16px;
  }

  .vsl__glow {
    width: 100%;
    height: 100%;
  }

  .vsl__controls {
    bottom: 12px;
    gap: 6px;
  }

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

  /* Top bar mobile */
  .top-bar__inner {
    padding: 10px var(--gutter);
  }

  .top-bar__cta {
    padding: 8px 16px;
    font-size: 12px;
  }

  .logo-svg {
    width: 160px;
  }

  /* Case study cards stack */
  .case-grid {
    grid-template-columns: 1fr;
  }

  /* Qualifier columns stack */
  .qualifier-grid {
    grid-template-columns: 1fr;
  }

  /* Form rows stack */
  .form-row {
    grid-template-columns: 1fr;
  }

  /* Sticky mobile CTA — disabled */
  .sticky-mobile-cta {
    display: none;
  }

  /* Press logo marquee */
  .press__track {
    justify-content: flex-start;
    flex-wrap: nowrap;
    animation: marquee 30s linear infinite;
    gap: 40px;
  }

  /* Footer stacks */
  .footer__top {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer__legal {
    text-align: center;
  }

  .footer {
    padding-bottom: 40px;
  }
}

/* ============================================
   Reduced Motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .press__track {
    animation: none !important;
    flex-wrap: wrap;
    justify-content: center;
  }

  .punch, .case-card, .outcome-block, .bonus-item {
    opacity: 1 !important;
    transform: none !important;
  }
}
