/* =========================
   VARIABLES
========================= */
:root {
  --black: #030303;
  --black-soft: #080808;
  --black-card: #0d0d0d;
  --black-light: #121212;
  --gold: #d9a628;
  --gold-light: #f4c74b;
  --gold-bright: #ffd65a;
  --gold-dark: #a87408;
  --white: #ffffff;
  --off-white: #f5f5f5;
  --muted: #afafaf;
  --border: rgba(218, 166, 40, 0.18);
  --danger-soft: #d26b31;
  --container: 1180px;
  --nav-height: 82px;
  --gold-metal: linear-gradient(110deg, #a87508, #e6b72e, #ffd968, #c79016);
  --font-heading: "Manrope", sans-serif;
  --font-body: "Inter", sans-serif;
}

/* =========================
   RESET
========================= */
* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(218, 166, 40, 0.1), transparent 38%),
    var(--black);
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.68;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 16%, #000 0%, transparent 68%);
}

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

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

a:hover {
  color: var(--gold-bright);
}

p {
  color: var(--muted);
  margin-bottom: 1rem;
}

h1,
h2,
h3,
h4 {
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(1.95rem, 3.3vw, 3.25rem);
}

h3 {
  font-size: 1.15rem;
}

strong {
  color: var(--white);
}

::selection {
  color: var(--black);
  background: var(--gold-bright);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 9999;
  background: var(--gold-bright);
  color: var(--black);
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 800;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 4px;
}

/* =========================
   GLOBAL
========================= */
.container-xl {
  max-width: var(--container);
}

.section-pad {
  padding: 100px 0;
}

.dark-band {
  background:
    radial-gradient(circle at 50% 0%, rgba(218, 166, 40, 0.08), transparent 38%),
    var(--black-soft);
  border-top: 1px solid rgba(218, 166, 40, 0.08);
  border-bottom: 1px solid rgba(218, 166, 40, 0.08);
}

.section-head {
  max-width: 880px;
  margin: 0 auto 48px;
}

.section-head p {
  max-width: 760px;
  margin-inline: auto;
  font-size: 1.08rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-label::before {
  content: "";
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold-bright);
  transform: rotate(45deg);
  background: rgba(218, 166, 40, 0.18);
}

.gold-text {
  background: var(--gold-metal);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.btn {
  border-radius: 12px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.btn i {
  margin-left: 6px;
  transition: transform 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:hover i {
  transform: translateX(4px);
}

.btn-gold {
  border: 0;
  background: linear-gradient(110deg, #b9820f, #e5b52d, #ffd75e, #c89116);
  color: #050505;
  box-shadow: 0 14px 34px rgba(218, 166, 40, 0.18);
}

.btn-gold:hover,
.btn-gold:focus {
  color: #050505;
  box-shadow: 0 18px 42px rgba(218, 166, 40, 0.27);
}

.btn-lg {
  padding: 14px 24px;
  font-size: 0.96rem;
}

.btn-outline-gold {
  border: 1px solid rgba(218, 166, 40, 0.48);
  color: var(--gold-bright);
  background: rgba(218, 166, 40, 0.05);
}

.btn-outline-gold:hover,
.btn-outline-gold:focus {
  border-color: rgba(218, 166, 40, 0.9);
  color: var(--black);
  background: var(--gold-bright);
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: grid;
  place-items: center;
  background: var(--black);
  animation: loaderAutoOut 0.35s ease 0.72s forwards;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.loader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  width: 86px;
  border-radius: 50%;
  animation: loaderLogo 0.7s ease both;
}

.loader-line {
  position: absolute;
  top: calc(50% + 72px);
  width: 160px;
  height: 2px;
  overflow: hidden;
  background: rgba(218, 166, 40, 0.15);
}

.loader-line::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gold-metal);
  animation: loaderLine 0.7s ease both;
}

@keyframes loaderLogo {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes loaderLine {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}

@keyframes loaderAutoOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

/* =========================
   NAVBAR
========================= */
.announcement-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1040;
  min-height: 30px;
  padding: 5px 16px;
  color: var(--gold-light);
  background: #030303;
  border-bottom: 1px solid rgba(218, 166, 40, 0.12);
  font-size: 0.8rem;
  font-weight: 600;
}

.announcement-bar span,
.microcopy span {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 9px 2px;
  background: var(--gold);
  transform: rotate(45deg);
}

.site-nav {
  top: 30px;
  min-height: var(--nav-height);
  padding: 14px 0;
  background: rgba(3, 3, 3, 0.62);
  transition: background 0.25s ease, border-color 0.25s ease, min-height 0.25s ease, padding 0.25s ease;
}

.site-nav.scrolled {
  min-height: 68px;
  padding: 9px 0;
  background: rgba(3, 3, 3, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(218, 166, 40, 0.12);
}

.navbar-brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
}

.navbar-brand img,
.footer-brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.navbar-brand:hover,
.footer-brand:hover {
  color: var(--white);
}

.nav-link {
  color: rgba(245, 245, 245, 0.74);
  font-size: 0.92rem;
  font-weight: 600;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--gold-bright);
}

.navbar-toggler {
  color: var(--gold-bright);
  border: 1px solid rgba(218, 166, 40, 0.22);
  box-shadow: none;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(218, 166, 40, 0.16);
}

.nav-mobile-cta {
  display: none;
  padding: 9px 13px;
  border-radius: 10px;
  font-size: 0.82rem;
}

/* =========================
   HERO
========================= */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 172px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 214, 90, 0.13), transparent 36%),
    radial-gradient(circle at 14% 40%, rgba(218, 166, 40, 0.07), transparent 24%),
    var(--black);
}

.premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 9px 14px;
  border: 1px solid rgba(218, 166, 40, 0.34);
  border-radius: 999px;
  color: var(--gold-light);
  background: rgba(0, 0, 0, 0.42);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 0 5px rgba(218, 166, 40, 0.12);
}

.hero-title {
  max-width: 940px;
  margin: 0 auto 22px;
  font-size: clamp(2.65rem, 4.9vw, 4.75rem);
  line-height: 1.06;
}

.hero-title span:not(.gold-text) {
  display: block;
}

.hero-kicker {
  color: var(--white);
  font-size: clamp(1.05rem, 1.55vw, 1.32rem);
  font-weight: 600;
}

.hero-copy {
  max-width: 800px;
  margin: 0 auto 28px;
  font-size: 1.04rem;
}

.cta-note {
  margin: 14px 0 4px;
  font-size: 0.92rem;
}

.microcopy {
  color: rgba(245, 245, 245, 0.72);
  font-size: 0.9rem;
}

.trust-grid,
.benefit-cards,
.pain-grid,
.module-grid,
.capability-grid,
.proof-grid,
.audience-grid {
  display: grid;
  gap: 18px;
}

.trust-grid {
  grid-template-columns: repeat(3, 1fr);
  max-width: 940px;
  margin: 44px auto;
}

.trust-grid article,
.mini-card,
.pain-grid article,
.module-grid article,
.capability-grid article,
.proof-grid article,
.audience-grid article,
.not-for-you,
.contact-card {
  border: 1px solid rgba(218, 166, 40, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.trust-grid article:hover,
.mini-card:hover,
.pain-grid article:hover,
.module-grid article:hover,
.capability-grid article:hover,
.proof-grid article:hover,
.audience-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(218, 166, 40, 0.35);
  background: rgba(255, 255, 255, 0.04);
}

.trust-grid article {
  padding: 22px;
  text-align: left;
}

.trust-grid i,
.capability-grid i,
.audience-grid i {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 12px;
  color: var(--black);
  background: var(--gold-metal);
}

.trust-grid h3,
.trust-grid p {
  margin-bottom: 0;
}

.video-shell {
  position: relative;
  max-width: 900px;
  margin: 18px auto 28px;
  padding: 10px;
  border: 1px solid rgba(218, 166, 40, 0.38);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
  box-shadow: 0 28px 90px rgba(218, 166, 40, 0.16);
}

.video-label {
  display: inline-block;
  margin: 0 auto 10px;
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

wistia-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 16px;
  background: #000;
}

.benefit-cards {
  grid-template-columns: repeat(3, 1fr);
  max-width: 980px;
  margin: 30px auto 0;
}

.mini-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px;
  text-align: left;
}

.mini-card i {
  color: var(--gold-bright);
  font-size: 1.2rem;
}

/* =========================
   SECTIONS
========================= */
.pain-grid {
  grid-template-columns: repeat(2, 1fr);
}

.pain-grid article {
  position: relative;
  padding: 18px 20px 18px 48px;
  color: rgba(245, 245, 245, 0.9);
  font-weight: 600;
}

.pain-grid article::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 24px;
  display: grid;
  place-items: center;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: rgba(244, 199, 75, 0.92);
  box-shadow: 0 0 0 6px rgba(218, 166, 40, 0.08);
  transform: rotate(45deg);
}

.system-callout,
.center-cta {
  max-width: 780px;
  margin: 48px auto 0;
  text-align: center;
}

.system-callout h3 {
  margin-bottom: 22px;
  font-size: clamp(1.85rem, 3.4vw, 3.1rem);
}

.system-callout p {
  margin-bottom: 0;
  color: var(--white);
  font-weight: 700;
}

.system-callout small,
.center-cta p,
.guarantee-card small {
  display: block;
  margin-top: 14px;
  color: var(--muted);
}

.transition-flow {
  padding: 48px 0;
  background: var(--black);
}

.flow-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 24px;
  border-block: 1px solid rgba(218, 166, 40, 0.16);
}

.flow-card span {
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
}

.flow-card span:last-child {
  color: var(--gold-bright);
}

.flow-card i {
  color: var(--gold);
}

.module-grid {
  grid-template-columns: repeat(3, 1fr);
}

.module-grid article,
.capability-grid article,
.audience-grid article {
  padding: 24px;
}

.module-grid span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold-bright);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.process-grid::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(218, 166, 40, 0.65), transparent);
}

.process-grid article {
  position: relative;
  z-index: 1;
  min-height: 172px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid rgba(218, 166, 40, 0.18);
  border-radius: 18px;
  background: var(--black-card);
}

.process-grid article span {
  position: absolute;
  top: 10px;
  right: 14px;
  color: rgba(255, 255, 255, 0.16);
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1;
}

.process-grid i {
  margin-bottom: 12px;
  color: var(--gold-bright);
  font-size: 1.55rem;
}

.founder-photo {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  border: 1px dashed rgba(218, 166, 40, 0.42);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 35%, rgba(218, 166, 40, 0.12), transparent 40%),
    rgba(255, 255, 255, 0.025);
}

.founder-photo img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.founder-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 58%, rgba(0, 0, 0, 0.22));
}

.founder-section p {
  font-size: 1.08rem;
}

.signature-accent {
  display: inline-block;
  margin-top: 12px;
  color: var(--gold-bright);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
}

.capability-grid,
.proof-grid {
  grid-template-columns: repeat(3, 1fr);
}

.proof-grid article {
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  text-align: center;
  border-style: dashed;
}

.proof-grid span,
.nda-badge {
  color: var(--gold-light);
  font-weight: 700;
}

.nda-badge {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(218, 166, 40, 0.18);
  border-radius: 999px;
  background: rgba(218, 166, 40, 0.05);
  font-size: 0.82rem;
}

.testimonial-carousel {
  margin-bottom: 34px;
}

.carousel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.carousel-head > span {
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.carousel-controls {
  display: flex;
  gap: 8px;
}

.carousel-controls button {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(218, 166, 40, 0.24);
  border-radius: 50%;
  color: var(--gold-bright);
  background: rgba(255, 255, 255, 0.025);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.carousel-controls button:hover,
.carousel-controls button:focus {
  transform: translateY(-1px);
  border-color: rgba(218, 166, 40, 0.55);
  background: rgba(218, 166, 40, 0.08);
}

.testimonial-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 36px) / 3);
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.testimonial-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  scroll-snap-align: start;
  min-height: 280px;
  padding: 24px;
  border: 1px solid rgba(218, 166, 40, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    var(--black-card);
}

.testimonial-card p {
  margin: 18px 0 22px;
  color: rgba(245, 245, 245, 0.88);
  font-size: 0.98rem;
}

.testimonial-card strong,
.testimonial-card small {
  display: block;
}

.testimonial-card small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.82rem;
}


.audience-grid {
  grid-template-columns: repeat(4, 1fr);
}

.not-for-you {
  max-width: 860px;
  margin: 44px auto 0;
  padding: 28px;
}

.not-for-you ul,
.instruction-box ul {
  margin-bottom: 0;
  color: var(--muted);
}

.closing-line {
  margin-top: 26px;
  color: var(--white);
  font-weight: 700;
}

.guarantee-section {
  background:
    radial-gradient(circle at 50% 50%, rgba(218, 166, 40, 0.16), transparent 42%),
    var(--black);
}

.guarantee-card {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(32px, 6vw, 66px);
  border: 1px solid rgba(218, 166, 40, 0.28);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  text-align: center;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

.guarantee-icon {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  border-radius: 18px;
  color: var(--black);
  background: var(--gold-metal);
  font-size: 2rem;
}

.guarantee-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 28px 0;
}

.guarantee-list span {
  padding: 12px;
  border: 1px solid rgba(218, 166, 40, 0.16);
  border-radius: 12px;
  color: var(--off-white);
  background: rgba(0, 0, 0, 0.25);
  font-weight: 700;
}

.terms-link {
  display: block;
  width: fit-content;
  margin: 14px auto 0;
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.training-mock {
  padding: 18px;
  border: 1px solid rgba(218, 166, 40, 0.18);
  border-radius: 22px;
  background: var(--black-card);
}

.mock-top {
  display: flex;
  gap: 7px;
  margin-bottom: 16px;
}

.mock-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(218, 166, 40, 0.5);
}

.mock-screen {
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 45%, rgba(218, 166, 40, 0.2), transparent 34%),
    #050505;
}

.mock-screen i {
  color: var(--gold-bright);
  font-size: 3rem;
}

.mock-screen small {
  color: var(--muted);
}

.mock-row {
  height: 12px;
  margin-top: 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.mock-row.short {
  width: 62%;
}

.instruction-box {
  margin: 24px 0;
  padding: 22px;
  border: 1px solid rgba(218, 166, 40, 0.22);
  border-radius: 18px;
  background: rgba(218, 166, 40, 0.05);
}

/* =========================
   FAQ
========================= */
.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.faq-accordion .accordion-item {
  margin-bottom: 14px;
  overflow: hidden;
  border: 1px solid rgba(218, 166, 40, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
}

.faq-accordion .accordion-button {
  color: var(--white);
  background: transparent;
  box-shadow: none;
  font-weight: 700;
}

.faq-accordion .accordion-button::after {
  filter: invert(1);
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--gold-bright);
  background: rgba(218, 166, 40, 0.055);
}

.faq-accordion .accordion-body {
  color: var(--muted);
  border-top: 1px solid rgba(218, 166, 40, 0.1);
}

.final-cta {
  background:
    radial-gradient(circle at 50% 45%, rgba(218, 166, 40, 0.16), transparent 40%),
    var(--black);
}

.final-cta p {
  max-width: 760px;
  margin-inline: auto;
}

.contact-card {
  padding: 30px;
}

.contact-card a {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 14px 0;
  color: var(--white);
  overflow-wrap: anywhere;
}

.contact-card i {
  color: var(--gold-bright);
}

.contact-card small {
  color: var(--muted);
}

.page-card-narrow {
  max-width: 720px;
}

.legal-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 0%, rgba(218, 166, 40, 0.12), transparent 36%),
    var(--black);
}

.legal-card {
  max-width: 900px;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(218, 166, 40, 0.18);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.025);
}

.legal-card h1 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 3.4vw, 3.05rem);
}

.legal-card h2 {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: clamp(1.18rem, 1.8vw, 1.42rem);
}

.legal-card ul {
  color: var(--muted);
}

.legal-card a:not(.btn) {
  color: var(--gold-bright);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* =========================
   FOOTER
========================= */
.site-footer {
  padding: 58px 0 90px;
  background: #020202;
  border-top: 1px solid rgba(218, 166, 40, 0.14);
}

.site-footer.compact-footer {
  padding: 18px 0;
}

.site-footer h3 {
  margin-bottom: 14px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-footer a:not(.footer-brand) {
  display: block;
  width: fit-content;
  margin-bottom: 8px;
  color: var(--muted);
}

.site-footer a:hover {
  color: var(--gold-bright);
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  margin-top: 0;
  padding-top: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.footer-legal,
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 16px;
}

.footer-legal a,
.footer-contact a {
  display: inline-flex !important;
  width: auto !important;
  margin-bottom: 0 !important;
}

.footer-legal {
  padding-inline: 20px;
  border-inline: 1px solid rgba(218, 166, 40, 0.14);
}

.footer-contact a {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
}

.footer-contact i {
  color: rgba(244, 199, 75, 0.82);
}

/* =========================
   MOBILE CTA
========================= */
.mobile-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1030;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 64px;
  padding: 10px max(18px, calc((100vw - var(--container)) / 2)) calc(10px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(218, 166, 40, 0.24);
  background: rgba(3, 3, 3, 0.92);
  backdrop-filter: blur(14px);
}

.sticky-offer strong,
.sticky-offer span {
  display: block;
  line-height: 1.2;
}

.sticky-offer strong {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 700;
}

.sticky-offer span {
  color: var(--gold-bright);
  font-weight: 600;
  font-size: 0.82rem;
}

.mobile-sticky-cta .btn {
  white-space: nowrap;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1199.98px) {
  .section-pad {
    padding: 82px 0;
  }

  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-grid::before {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .navbar-toggler {
    display: none;
  }

  .nav-mobile-cta {
    display: inline-flex;
    align-items: center;
    margin-left: auto;
  }

  .navbar-collapse {
    margin-top: 14px;
    padding: 18px;
    border: 1px solid rgba(218, 166, 40, 0.16);
    border-radius: 18px;
    background: rgba(3, 3, 3, 0.96);
  }

  .hero {
    padding-top: 152px;
  }

  .trust-grid,
  .benefit-cards,
  .module-grid,
  .capability-grid,
  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-track {
    grid-auto-columns: calc((100% - 18px) / 2);
  }

  .flow-card {
    flex-direction: column;
  }
}

@media (max-width: 767.98px) {
  .section-pad {
    padding: 64px 0;
  }

  .hero {
    padding-top: 168px;
  }

  .site-footer.compact-footer {
    padding: 14px 0 76px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 9.8vw, 2.75rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .btn-lg,
  .hero-cta .btn {
    width: 100%;
    padding: 15px 18px;
    font-size: 0.95rem;
  }

  .trust-grid,
  .benefit-cards,
  .pain-grid,
  .module-grid,
  .capability-grid,
  .proof-grid,
  .audience-grid,
  .guarantee-list,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-track {
    grid-auto-columns: 100%;
  }

  .carousel-head {
    align-items: flex-start;
  }

  .founder-photo {
    min-height: 320px;
  }

  .founder-photo img {
    min-height: 320px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 9px;
    text-align: center;
  }

  .footer-legal {
    order: 2;
    padding-inline: 0;
    border-inline: 0;
  }

  .footer-contact {
    order: 3;
    gap: 8px 14px;
  }

  .mobile-sticky-cta {
    gap: 12px;
    padding-inline: 14px;
  }

  .sticky-offer strong {
    font-size: 0.88rem;
  }

  .sticky-offer span {
    font-size: 0.8rem;
  }
}

@media (max-width: 430px) {
  .announcement-bar {
    font-size: 0.72rem;
  }

  .navbar-brand span {
    display: none;
  }

  .hero {
    padding-top: 172px;
  }

  .premium-badge {
    font-size: 0.66rem;
    letter-spacing: 0.07em;
  }

  .hero-title {
    font-size: clamp(2rem, 9.6vw, 2.45rem);
  }

  .video-shell {
    padding: 7px;
    border-radius: 18px;
  }

  wistia-player {
    border-radius: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
