:root {
  --burgundy: #b40720;
  --burgundy-deep: #171012;
  --coral-accent: #ff2b3d;
  --warm-white: #ffffff;
  --paper: #f5f3ef;
  --charcoal: #161313;
  --charcoal-soft: #3b3535;
  --moss: #73806e;
  --line: rgba(90, 24, 39, 0.2);
  --line-light: rgba(90, 24, 39, 0.12);
  --surface: #050505;
  --shadow-soft: 0 10px 26px rgba(22, 16, 15, 0.12);
  --shadow-strong: 0 18px 42px rgba(18, 16, 13, 0.28);
  --radius-xs: 0.6rem;
  --radius-sm: 0.85rem;
  --radius-md: 1.2rem;
  --radius-lg: 1.6rem;
  --content-max: 74rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #000;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--charcoal);
  font-family: "Avenir Next", "Avenir", "Trebuchet MS", "Helvetica Neue", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  min-width: 0;
  background:
    radial-gradient(120% 60% at 2% -10%, rgba(180, 7, 32, 0.11), transparent 55%),
    radial-gradient(100% 45% at 98% 20%, rgba(111, 129, 106, 0.1), transparent 50%),
    linear-gradient(180deg, #070707 0%, #050505 48%, #000 100%);
}

section[id] {
  scroll-margin-top: 6rem;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible {
  outline: 3px solid var(--moss);
  outline-offset: 3px;
}

video {
  display: block;
  max-width: 100%;
}

main {
  overflow: clip;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.03em;
  overflow-wrap: anywhere;
}

p {
  margin: 0;
  overflow-wrap: anywhere;
}

.container {
  width: min(calc(100% - 2rem), var(--content-max));
  max-width: var(--content-max);
  margin-inline: auto;
}

.section {
  padding: clamp(3.1rem, 8vw, 6.2rem) 0;
}

.eyebrow {
  margin-bottom: 0.55rem;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
  color: var(--burgundy);
}

.lead {
  font-size: clamp(1.05rem, 2.2vw, 1.24rem);
  color: var(--charcoal-soft);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  z-index: 1000;
  background: var(--paper);
  color: var(--charcoal);
  padding: 0.6rem 0.9rem;
  border-radius: var(--radius-xs);
  border: 1px solid var(--line);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  backdrop-filter: blur(9px);
  background: rgba(253, 248, 242, 0.93);
  border-bottom: 1px solid rgba(90, 24, 39, 0.16);
  transition: background-color 0.28s ease, box-shadow 0.28s ease;
}

.site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.97);
  box-shadow: 0 6px 22px rgba(38, 19, 24, 0.12);
}

.header-inner {
  position: relative;
  min-height: 4.75rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.7rem;
  align-items: center;
  padding-block: 0.65rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: min(9.5rem, 40vw);
  height: auto;
}

.brand-text {
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.2;
  min-width: 0;
}

.desktop-nav {
  display: none;
}

.desktop-nav a,
.mobile-nav a,
.footer-nav a,
.footer-cta a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.menu-toggle {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.84rem;
  border: 1px solid rgba(90, 24, 39, 0.24);
  background: var(--surface);
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.31rem;
  padding-inline: 0.58rem;
  cursor: pointer;
  justify-self: end;
}

.menu-line {
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--burgundy-deep);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.menu-toggle.is-open .menu-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open .menu-line:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open .menu-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  border-top: 1px solid var(--line-light);
  background: rgba(0, 0, 0, 0.98);
  padding: 0.7rem 1rem 1.2rem;
  display: grid;
  gap: 0.1rem;
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  font-size: 0.98rem;
}

.mobile-nav .btn {
  margin-top: 0.32rem;
  width: fit-content;
}

.header-ctas {
  display: none;
}

.header-cta {
  border-radius: 999px;
}

.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.86rem;
  padding: 0.58rem 1.15rem;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.btn-small {
  min-height: 2.45rem;
  padding-inline: 1rem;
  font-size: 0.88rem;
}

.btn-primary {
  background: var(--burgundy);
  color: var(--warm-white);
  box-shadow: 0 10px 24px rgba(90, 24, 39, 0.28);
}

.btn-primary:hover {
  background: #6d1d30;
  transform: translateY(-1px);
}

.btn-secondary {
  border-color: rgba(90, 24, 39, 0.45);
  color: var(--burgundy);
  background: linear-gradient(180deg, #101010, #050505);
}

.btn-secondary:hover {
  background: rgba(90, 24, 39, 0.08);
}

.hero {
  position: relative;
}

.hero-immersive {
  min-height: clamp(24rem, 58svh, 38rem);
  display: grid;
  align-items: center;
  padding: clamp(3.7rem, 9vw, 6.4rem) 0;
  background:
    radial-gradient(72% 80% at 12% 8%, rgba(209, 106, 99, 0.18), transparent 62%),
    linear-gradient(180deg, #090909 0%, #050505 100%);
  border-bottom: 1px solid rgba(90, 24, 39, 0.12);
}

.hero-shell {
  display: grid;
  gap: 1.45rem;
  max-width: 58rem;
}

.hero-copy,
.hero-media,
.about-copy,
.about-media,
.section-head,
.feature-card,
.card,
.step,
.training-club-wrap,
.connect-copy,
.connect-cards article,
.faq-list details,
.cta-box,
.footer-grid,
.footer-bottom {
  text-align: center;
}

.hero-copy {
  color: var(--charcoal);
  display: grid;
  gap: 0.9rem;
  max-width: 50rem;
  margin-inline: auto;
}

.hero-wordmark {
  display: block;
  width: min(19rem, 82vw);
  height: auto;
  margin: 0 auto 0.25rem;
}

.hero-copy .eyebrow {
  color: var(--burgundy);
  width: 100%;
  max-width: 20rem;
  margin-inline: auto;
}

.hero-copy h1 {
  font-size: 1.9rem;
  color: var(--burgundy-deep);
  width: 100%;
  max-width: 20rem;
  margin-inline: auto;
  overflow-wrap: break-word;
}

.hero-copy .lead {
  color: var(--charcoal-soft);
  width: 100%;
  max-width: 20rem;
  margin-inline: auto;
}

.hero-actions {
  margin-top: 0.35rem;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  width: 100%;
  max-width: 22rem;
  margin-inline: auto;
}

.hero-actions .btn {
  width: min(100%, 16rem);
}

.hero-quick-actions {
  margin-top: 0.3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.glass-action {
  min-height: 2.65rem;
  width: min(100%, 18rem);
  border-radius: 0.82rem;
  border: 1px solid rgba(229, 9, 36, 0.45);
  color: #fff;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-inline: 0.85rem;
  background: rgba(229, 9, 36, 0.09);
  backdrop-filter: blur(8px);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.glass-action:hover {
  background: rgba(229, 9, 36, 0.18);
  transform: translateY(-1px);
}

.hero-media {
  width: min(18.5rem, 82vw);
  margin-inline: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(229, 9, 36, 0.45);
  box-shadow: 0 20px 35px rgba(20, 10, 15, 0.42);
}

.hero-scroll {
  justify-self: center;
  margin-top: 1.2rem;
  color: rgba(255, 244, 236, 0.92);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  position: relative;
  padding-bottom: 1.35rem;
}

.hero-scroll::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 1px;
  height: 0.92rem;
  background: currentColor;
  animation: pulseLine 1.2s infinite ease-in-out;
}

@keyframes pulseLine {
  0%,
  100% {
    opacity: 0.25;
    transform: translateX(-50%) translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) translateY(3px);
  }
}

.section-nav {
  display: none;
}

.about {
  background: linear-gradient(180deg, rgba(90, 24, 39, 0.02), rgba(90, 24, 39, 0));
}

.about-grid {
  display: grid;
  gap: 1.45rem;
}

.about-intro {
  display: grid;
  gap: 0.95rem;
  text-align: center;
}

.about-intro .lead {
  max-width: 64ch;
  margin-inline: auto;
  color: var(--charcoal-soft);
}

.about-intro h1,
.about-intro .lead,
.about-intro > p:not(.eyebrow),
.section-head h2 {
  width: 100%;
  max-width: 20rem;
  margin-inline: auto;
}

.about-intro h1 {
  max-width: 18rem;
}

.about-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-light);
  box-shadow: var(--shadow-soft);
  width: min(23rem, 94vw);
  margin-inline: auto;
}

.about-copy {
  display: grid;
  gap: 0.95rem;
}

.about-copy h2,
.about-intro h1,
.section-head h2,
.training-club-wrap h2,
.final-cta h2 {
  font-size: clamp(1.6rem, 5.3vw, 2.6rem);
}

.text-link {
  width: fit-content;
  margin-inline: auto;
  margin-top: 0.25rem;
  color: var(--burgundy);
  font-weight: 800;
  border-bottom: 2px solid rgba(90, 24, 39, 0.26);
  transition: border-color 0.2s ease;
}

.text-link:hover {
  border-color: rgba(90, 24, 39, 0.58);
}

.section-head {
  display: grid;
  gap: 0.7rem;
  max-width: 62ch;
  margin-inline: auto;
  margin-bottom: clamp(1.2rem, 3.6vw, 2.35rem);
}

.feature-grid {
  display: grid;
  gap: 0.95rem;
}

.feature-card {
  border: 1px solid var(--line);
  background: linear-gradient(165deg, #141414, #050505);
  border-radius: var(--radius-md);
  padding: 1rem;
  display: grid;
  gap: 0.6rem;
  box-shadow: 0 8px 16px rgba(25, 17, 18, 0.06);
}

.feature-icon {
  width: 2.15rem;
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  color: var(--burgundy);
  font-weight: 800;
  background: rgba(209, 106, 99, 0.19);
  border: 1px solid rgba(90, 24, 39, 0.18);
}

.feature-card h3 {
  font-size: clamp(1.08rem, 3vw, 1.3rem);
}

.services {
  background:
    radial-gradient(70% 52% at 100% 0%, rgba(111, 129, 106, 0.14), transparent 62%),
    var(--paper);
}

.cards-grid {
  display: grid;
  gap: 0.95rem;
}

.card,
.step,
.connect-cards article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.02rem;
  box-shadow: 0 6px 14px rgba(24, 17, 20, 0.05);
}

.card h3,
.step h3,
.connect-cards h3 {
  font-size: clamp(1.08rem, 2.8vw, 1.28rem);
  margin-bottom: 0.52rem;
}

.marquee-band {
  border-top: 1px solid rgba(90, 24, 39, 0.16);
  border-bottom: 1px solid rgba(90, 24, 39, 0.16);
  background: linear-gradient(90deg, #2d0f17, #4b1624 45%, #301018);
  color: #fce9e1;
  overflow: hidden;
}

.marquee-track {
  min-height: 3.25rem;
  width: max-content;
  display: flex;
  align-items: center;
  white-space: nowrap;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  animation: marqueeMove 42s linear infinite;
}

.marquee-set {
  display: inline-flex;
  align-items: center;
  gap: 1.35rem;
  padding-right: 1.35rem;
}

@keyframes marqueeMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.training-club {
  background:
    linear-gradient(135deg, #171014, #261118 45%, #2e121d),
    #201216;
  color: #f9f3ef;
}

.training-club-wrap {
  border: 1px solid rgba(229, 9, 36, 0.28);
  border-radius: var(--radius-lg);
  padding: clamp(1.2rem, 4vw, 2.1rem);
  background: rgba(229, 9, 36, 0.08);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.25);
  display: grid;
  gap: 0.88rem;
}

.training-club-wrap .eyebrow,
.training-club-wrap h2,
.training-club-wrap p {
  color: #f9f3ef;
}

.training-club-wrap .btn-primary {
  margin-inline: auto;
}

.training-package-layout {
  display: grid;
  gap: clamp(1.1rem, 4vw, 2rem);
  align-items: stretch;
}

.training-package-copy {
  display: grid;
  gap: 0.88rem;
  align-content: start;
}

.training-package-copy .btn-primary {
  justify-self: start;
  margin-inline: 0;
}

.package-deals {
  display: grid;
  gap: 0.8rem;
  margin: 0.35rem 0 0.15rem;
  align-items: stretch;
}

.package-card {
  display: grid;
  gap: 0.35rem;
  align-content: start;
  min-height: 100%;
  padding: clamp(0.92rem, 2.5vw, 1.15rem);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(0, 0, 0, 0.25);
}

.package-card-featured {
  border-color: rgba(255, 255, 255, 0.38);
  box-shadow: inset 0 0 0 1px rgba(229, 9, 36, 0.36);
}

.package-card span {
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.package-card strong {
  font-size: clamp(1.65rem, 5vw, 2.45rem);
  line-height: 1;
}

.package-card p {
  font-size: 0.95rem;
  opacity: 0.9;
}

.package-logo-wrap {
  display: grid;
  place-items: center;
  min-height: 13rem;
  height: 100%;
  padding: clamp(1rem, 4vw, 1.75rem);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: #050505;
}

.package-logo-wrap img {
  display: block;
  width: min(100%, 19rem);
  height: auto;
  opacity: 0.98;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.44));
}

.steps-grid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.95rem;
}

.step-number {
  width: 2rem;
  aspect-ratio: 1;
  margin: 0 auto 0.62rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(90, 24, 39, 0.12);
  color: var(--burgundy);
  font-size: 0.86rem;
  font-weight: 800;
}

.testimonials {
  background: linear-gradient(180deg, rgba(90, 24, 39, 0), rgba(90, 24, 39, 0.04));
}

.testimonial-slider {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.7rem;
  align-items: center;
}

.testimonial-control {
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 50%;
  border: 1px solid rgba(90, 24, 39, 0.3);
  background: #050505;
  color: var(--burgundy);
  font-size: 1.1rem;
  cursor: pointer;
}

.testimonial-track {
  height: clamp(26rem, 58svh, 34rem);
  display: grid;
  overflow: hidden;
}

.testimonial-card {
  display: none;
  height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, #141414, #050505);
  padding: clamp(1rem, 3vw, 1.35rem);
  box-shadow: 0 8px 18px rgba(24, 17, 20, 0.08);
  overflow-y: auto;
  align-content: center;
}

.testimonial-card.is-active {
  display: grid;
  gap: 0.75rem;
}

.testimonial-card p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 600;
  color: #2c2326;
}

.testimonial-card h3 {
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(90, 24, 39, 0.76);
}

.review-request {
  margin-top: clamp(1rem, 3vw, 1.45rem);
  display: grid;
  gap: 1rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, #141414, #050505);
  padding: clamp(1rem, 3vw, 1.35rem);
  box-shadow: 0 8px 18px rgba(24, 17, 20, 0.08);
}

.review-request h3 {
  color: var(--warm-white);
  font-size: clamp(1.18rem, 2.6vw, 1.55rem);
}

.review-request .btn {
  margin: 0;
  justify-self: start;
}

@media (min-width: 700px) {
  .review-request {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .review-request .btn {
    justify-self: end;
  }
}

@media (min-width: 58rem) {
  .training-package-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .package-deals {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.reel-wrap {
  width: min(100%, 23rem);
  margin-inline: auto;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(24, 17, 20, 0.08);
  background: #120d10;
}

.reel-video {
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: min(68svh, 34rem);
  object-fit: contain;
  background: #120d10;
}

.connect {
  background:
    radial-gradient(64% 55% at 0% 50%, rgba(111, 129, 106, 0.14), transparent 65%),
    #050505;
}

.connect-grid {
  display: grid;
  gap: 1rem;
}

.connect-copy {
  display: grid;
  gap: 0.88rem;
}

.connect-cards {
  display: grid;
  gap: 0.82rem;
}

.contact {
  background:
    linear-gradient(180deg, rgba(180, 7, 32, 0.08), transparent 42%),
    #050505;
}

.contact-grid {
  display: grid;
  gap: 1rem;
}

.contact-copy {
  display: grid;
  gap: 0.88rem;
  text-align: center;
}

.contact-form {
  width: 100%;
  display: grid;
  gap: 0.82rem;
  border: 1px solid rgba(229, 9, 36, 0.44);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #141414, #070707);
  padding: clamp(1rem, 3vw, 1.35rem);
  box-shadow: var(--shadow-soft);
}

.form-row {
  display: grid;
  gap: 0.34rem;
}

.form-row label {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(229, 9, 36, 0.42);
  border-radius: var(--radius-sm);
  background: #050505;
  color: #fff;
  font: inherit;
  min-height: 2.85rem;
  padding: 0.7rem 0.78rem;
}

.form-row textarea {
  min-height: 9rem;
  resize: vertical;
}

.form-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.contact-submit {
  width: 100%;
}

.contact-status {
  min-height: 1.4rem;
  font-size: 0.92rem;
}

.faq-list {
  display: grid;
  gap: 0.72rem;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #050505;
  padding: 0.22rem 0.84rem;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  min-height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
  padding-inline: 2rem;
  font-weight: 800;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0.42rem;
  font-size: 1.2rem;
  color: var(--burgundy);
  font-weight: 800;
}

.faq-list details[open] summary::after {
  content: "\2212";
}

.faq-list p {
  margin-bottom: 0.74rem;
  color: var(--charcoal-soft);
}

.final-cta {
  padding-top: clamp(2.2rem, 6vw, 4.8rem);
}

.cta-box {
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 4vw, 2.4rem);
  display: grid;
  gap: 0.86rem;
  background:
    radial-gradient(60% 110% at 15% 10%, rgba(229, 9, 36, 0.24), transparent 60%),
    linear-gradient(145deg, #571626, #7a2339 50%, #4a1320);
  color: var(--warm-white);
  box-shadow: var(--shadow-strong);
}

.cta-box .eyebrow,
.cta-box h2,
.cta-box p {
  color: #fffaf6;
}

.cta-actions {
  margin-top: 0.22rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.68rem;
}

.cta-box .btn-primary {
  background: #050505;
  color: var(--burgundy-deep);
}

.cta-box .btn-primary:hover {
  background: #171717;
}

.cta-box .btn-secondary {
  color: #fff;
  border-color: rgba(229, 9, 36, 0.72);
  background: rgba(229, 9, 36, 0.12);
}

.cta-box .btn-secondary:hover {
  background: rgba(229, 9, 36, 0.18);
}

.site-footer {
  margin-top: clamp(2rem, 5vw, 4rem);
  background: #151113;
  color: #ece3dc;
  padding-top: 2rem;
}

.footer-grid {
  display: grid;
  gap: 1.28rem;
}

.footer-title {
  font-size: clamp(1.16rem, 3.3vw, 1.52rem);
  margin-bottom: 0.62rem;
  color: #fff6f1;
}

.footer-note {
  max-width: 40ch;
  margin-inline: auto;
  color: #d6c7c1;
}

.footer-nav,
.footer-cta {
  display: grid;
  gap: 0.2rem;
  justify-items: center;
}

.footer-nav a,
.footer-cta a {
  color: #f9f1eb;
}

.footer-nav a:hover,
.footer-cta a:hover {
  color: #d2e2cd;
}

.footer-bottom {
  margin-top: 1.35rem;
  border-top: 1px solid rgba(248, 244, 239, 0.16);
  padding: 1rem 0 5rem;
  display: grid;
  gap: 0.22rem;
  color: #cabfb8;
  font-size: 0.92rem;
}

.floating-live-help {
  position: fixed;
  right: max(0.95rem, env(safe-area-inset-right));
  bottom: calc(max(0.95rem, env(safe-area-inset-bottom)) + 3.85rem);
  z-index: 140;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(90, 24, 39, 0.68);
  border-radius: 999px;
  background: #111;
  color: #f4de95;
  box-shadow: 0 10px 24px rgba(30, 27, 28, 0.26);
  font-weight: 800;
  cursor: pointer;
}

.floating-live-help:hover,
.floating-live-help[aria-expanded="true"] {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(30, 27, 28, 0.3);
}

.floating-live-help span {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.live-help-panel {
  position: fixed;
  right: max(0.95rem, env(safe-area-inset-right));
  bottom: calc(max(0.95rem, env(safe-area-inset-bottom)) + 7.95rem);
  width: min(94vw, 24rem);
  z-index: 150;
}

.live-help-panel[hidden] {
  display: none;
}

.live-help-card {
  position: relative;
  border: 1px solid rgba(90, 24, 39, 0.18);
  border-radius: 1rem;
  background: #050505;
  box-shadow: 0 18px 42px rgba(25, 16, 19, 0.24);
  overflow: hidden;
}

.live-help-head,
.live-help-messages,
.live-help-form {
  position: relative;
  z-index: 1;
}

.live-help-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.75rem 0.85rem;
  border-bottom: 1px solid rgba(90, 24, 39, 0.14);
  background: rgba(248, 244, 239, 0.96);
}

.live-help-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.live-help-logo {
  display: block;
  width: 2.12rem;
  height: 2.12rem;
  flex: 0 0 auto;
}

.live-help-brand h2 {
  font-size: 1rem;
  margin: 0;
}

.live-help-brand p {
  font-size: 0.78rem;
  color: var(--charcoal-soft);
}

.live-help-close {
  width: 2.1rem;
  height: 2.1rem;
  border: 1px solid rgba(90, 24, 39, 0.24);
  border-radius: 0.55rem;
  background: #050505;
  color: var(--burgundy-deep);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.live-help-messages {
  max-height: min(52vh, 20rem);
  overflow-y: auto;
  padding: 0.9rem 0.85rem;
  display: grid;
  gap: 0.62rem;
}

.live-help-message {
  max-width: 88%;
  padding: 0.56rem 0.74rem;
  border-radius: 0.72rem;
  font-size: 0.94rem;
  line-height: 1.45;
}

.live-help-message-user {
  margin-left: auto;
  background: var(--burgundy);
  color: #fff;
}

.live-help-message-assistant {
  margin-right: auto;
  background: #f1ebe5;
  color: var(--charcoal);
}

.live-help-message-status {
  margin-right: auto;
  background: #ece6df;
  color: #5c5456;
  font-style: italic;
}

.live-help-form {
  border-top: 1px solid rgba(90, 24, 39, 0.14);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.6rem;
  padding: 0.75rem 0.85rem 0.85rem;
  background: rgba(0, 0, 0, 0.97);
}

.live-help-form input {
  width: 100%;
  min-height: 2.65rem;
  border: 1px solid rgba(90, 24, 39, 0.26);
  border-radius: 0.68rem;
  padding: 0.4rem 0.68rem;
  font: inherit;
  color: var(--charcoal);
  background: #050505;
}

.live-help-send {
  min-height: 2.65rem;
  border: 0;
  border-radius: 0.68rem;
  background: var(--burgundy);
  color: #fff;
  font-weight: 700;
  padding: 0.4rem 0.9rem;
  cursor: pointer;
}

.live-help-send:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.floating-whatsapp {
  position: fixed;
  right: max(0.95rem, env(safe-area-inset-right));
  bottom: max(0.95rem, env(safe-area-inset-bottom));
  z-index: 140;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.58rem 1rem 0.58rem 0.72rem;
  border-radius: 999px;
  background: #1f7a42;
  color: #fff;
  box-shadow: 0 10px 28px rgba(17, 90, 42, 0.35);
  font-weight: 800;
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  background: #20874a;
}

.wa-icon {
  width: 1.62rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(229, 9, 36, 0.18);
  font-size: 0.82rem;
}

@media (max-width: 47.99rem) {
  .container {
    width: min(calc(100% - 1.5rem), var(--content-max));
  }

  .section {
    padding-block: clamp(2.65rem, 10vw, 4.25rem);
  }

  .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    overflow-wrap: break-word;
  }

  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .brand {
    max-width: calc(100vw - 5.9rem);
    overflow: hidden;
  }

  .brand-logo {
    width: min(8.25rem, 45vw);
  }

  .hero-copy h1 {
    width: min(100%, 16rem);
    max-width: 100%;
    font-size: clamp(1.66rem, 7.1vw, 1.95rem);
    text-wrap: balance;
  }

  .hero-copy .lead {
    width: min(100%, 17.5rem);
    max-width: 100%;
  }

  .about-intro .lead,
  .about-intro > p:not(.eyebrow),
  .feature-card p,
  .card p,
  .step p,
  .training-club-wrap p,
  .connect-copy p,
  .contact-copy p,
  .connect-cards p,
  .faq-list p,
  .cta-box p,
  .footer-note {
    max-width: min(100%, 17rem);
    margin-inline: auto;
    overflow-wrap: anywhere;
  }

  .brand-text {
    display: block;
    max-width: 100%;
    font-size: 0.72rem;
    overflow-wrap: anywhere;
  }

  .menu-toggle {
    position: fixed;
    display: inline-flex !important;
    top: 1rem;
    right: max(1rem, env(safe-area-inset-right));
    transform: none;
    z-index: 500;
    background: #e50924;
    border-color: rgba(229, 9, 36, 0.84);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.45);
  }

  .floating-whatsapp {
    width: 3rem;
    height: 3rem;
    right: max(0.75rem, env(safe-area-inset-right));
    left: auto;
    padding: 0;
    justify-content: center;
  }

  .floating-whatsapp span:not(.wa-icon) {
    display: none;
  }

  .floating-live-help {
    right: max(0.75rem, env(safe-area-inset-right));
    left: auto;
    width: 3rem;
    height: 3rem;
    min-height: 3rem;
    padding: 0;
    bottom: calc(max(0.75rem, env(safe-area-inset-bottom)) + 3.35rem);
  }

  .live-help-panel {
    left: max(0.75rem, env(safe-area-inset-left));
    right: max(0.75rem, env(safe-area-inset-right));
    bottom: calc(max(0.75rem, env(safe-area-inset-bottom)) + 6.75rem);
    width: auto;
  }

  .live-help-messages {
    max-height: min(42svh, 17rem);
  }

  .floating-live-help span {
    width: min-content;
    font-size: 0.56rem;
    letter-spacing: 0.03em;
    line-height: 1.05;
    text-align: center;
    white-space: normal;
  }
}

@media (max-width: 22.5rem) {
  .brand-logo {
    width: min(7.5rem, 42vw);
  }

  .hero-immersive {
    min-height: auto;
    padding-block: 3.15rem;
  }

  .hero-copy h1 {
    width: min(100%, 14.8rem);
    font-size: clamp(1.48rem, 7vw, 1.68rem);
  }

  .hero-copy .lead {
    width: min(100%, 15.4rem);
    font-size: 0.98rem;
  }

  .btn {
    min-height: 2.75rem;
    padding-inline: 0.82rem;
    font-size: 0.84rem;
  }

  .hero-actions {
    max-width: 15.8rem;
  }

  .about-intro h1,
  .section-head h2,
  .training-club-wrap h2,
  .final-cta h2 {
    font-size: 1.48rem;
  }
}

@media (min-width: 48rem) and (max-width: 63.99rem) {
  .floating-whatsapp {
    width: 3rem;
    height: 3rem;
    padding: 0;
    justify-content: center;
    right: max(1rem, env(safe-area-inset-right));
    bottom: max(1rem, env(safe-area-inset-bottom));
  }

  .floating-whatsapp span:not(.wa-icon) {
    display: none;
  }

  .floating-live-help {
    right: max(1rem, env(safe-area-inset-right));
    bottom: calc(max(1rem, env(safe-area-inset-bottom)) + 3.45rem);
    width: 3rem;
    height: 3rem;
    min-height: 3rem;
    padding: 0;
  }

  .floating-live-help span {
    width: min-content;
    font-size: 0.56rem;
    letter-spacing: 0.03em;
    line-height: 1.05;
    text-align: center;
    white-space: normal;
  }

  .live-help-panel {
    right: max(1rem, env(safe-area-inset-right));
    bottom: calc(max(1rem, env(safe-area-inset-bottom)) + 6.8rem);
    width: min(calc(100vw - 2rem), 24rem);
  }
}

@media (max-width: 63.99rem) and (max-height: 34rem) {
  .live-help-panel {
    top: max(0.75rem, env(safe-area-inset-top));
    bottom: calc(max(0.75rem, env(safe-area-inset-bottom)) + 6.75rem);
    overflow: hidden;
  }

  .live-help-card {
    max-height: 100%;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
  }

  .live-help-messages {
    max-height: none;
    min-height: 0;
  }
}

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

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

.not-found-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 2rem 0;
}

.not-found-card {
  width: min(100% - 2rem, 40rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #050505;
  padding: clamp(1.3rem, 4vw, 2rem);
  box-shadow: var(--shadow-soft);
}

.not-found-card h1 {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  margin-bottom: 0.62rem;
}

.not-found-actions {
  margin-top: 1rem;
}

@media (min-width: 48rem) {
  .container {
    width: min(calc(100% - 3rem), var(--content-max));
  }

  .brand-text {
    font-size: 0.94rem;
  }

  .brand-logo {
    width: min(10.5rem, 20vw);
  }

  .hero-shell {
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    gap: 2rem;
  }

  .hero-copy,
  .about-intro,
  .about-copy,
  .section-head,
  .training-club-wrap,
  .connect-copy,
  .cta-box,
  .footer-grid,
  .footer-bottom,
  .card,
  .step,
  .feature-card,
  .connect-cards article,
  .faq-list details,
  .testimonial-card {
    text-align: left;
  }

  .hero-copy .lead,
  .about-intro .lead,
  .section-head,
  .footer-note {
    margin-inline: 0;
  }

  .hero-copy {
    margin-inline: 0;
  }

  .hero-wordmark {
    margin: 0 0 0.35rem;
    width: min(21rem, 100%);
  }

  .hero-copy .eyebrow,
  .hero-copy h1,
  .hero-copy .lead,
  .hero-actions,
  .about-intro h1,
  .about-intro .lead,
  .about-intro > p:not(.eyebrow),
  .section-head h2 {
    width: auto;
    max-width: none;
    margin-inline: 0;
  }

  .hero-copy h1 {
    font-size: 3.4rem;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }

  .hero-actions .btn {
    width: auto;
  }

  .hero-quick-actions {
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
  }

  .glass-action {
    width: auto;
  }

  .hero-media {
    width: min(22rem, 100%);
    justify-self: end;
  }

  .about-grid {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 2rem;
  }

  .about-media {
    width: min(25rem, 100%);
  }

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

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

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

  .connect-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
    gap: 1.2rem;
  }

  .connect-cards {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 0.82fr 1.18fr;
    align-items: start;
    gap: 1.2rem;
  }

  .contact-copy {
    text-align: left;
  }

  .contact-submit {
    width: fit-content;
    justify-self: start;
  }

  .testimonial-track {
    height: clamp(24rem, 46svh, 31rem);
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    align-items: start;
  }

  .footer-nav,
  .footer-cta {
    justify-items: start;
  }

  .floating-whatsapp {
    right: 1.2rem;
    bottom: 1.2rem;
  }

  .floating-live-help {
    right: 1.2rem;
    bottom: calc(1.2rem + 3.85rem);
  }

  .live-help-panel {
    right: 1.2rem;
    bottom: calc(1.2rem + 7.95rem);
  }
}

@media (min-width: 64rem) {
  .site-header {
    background: rgba(253, 248, 242, 0.9);
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
  }

  .menu-toggle {
    display: none;
  }

  .desktop-nav {
    display: inline-flex;
    justify-self: center;
    flex-wrap: wrap;
    gap: 0.85rem;
  }

  .desktop-nav a {
    min-height: 44px;
    padding: 0 0.42rem;
    border-radius: 0.45rem;
    font-weight: 700;
    color: var(--charcoal-soft);
    transition: background-color 0.2s ease, color 0.2s ease;
  }

  .desktop-nav a:hover {
    color: var(--burgundy);
    background: rgba(90, 24, 39, 0.08);
  }

  .header-ctas {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }

  .section-nav {
    position: fixed;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    display: grid;
    gap: 0.4rem;
    z-index: 95;
  }

  .section-nav a {
    min-width: 3.5rem;
    height: 1.85rem;
    border-radius: 999px;
    border: 1px solid rgba(90, 24, 39, 0.25);
    background: rgba(0, 0, 0, 0.74);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.69rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--burgundy-deep);
    transition: transform 0.2s ease, background-color 0.2s ease;
  }

  .section-nav a:hover {
    transform: translateX(-2px);
  }

  .section-nav a.is-active {
    background: var(--burgundy);
    color: #fff;
    border-color: var(--burgundy);
  }

  .hero-immersive {
    min-height: clamp(24rem, 54svh, 38rem);
  }

  .hero-copy h1 {
    font-size: 4.05rem;
  }

  .training-club-wrap {
    width: min(100%, 54rem);
    margin-inline: auto;
  }

  .floating-whatsapp {
    right: 1.55rem;
    bottom: 1.55rem;
  }

  .floating-live-help {
    right: 1.55rem;
    bottom: calc(1.55rem + 3.85rem);
  }

  .live-help-panel {
    right: 1.55rem;
    bottom: calc(1.55rem + 7.95rem);
  }
}

@media (min-width: 90rem) {
  :root {
    --content-max: 80rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}

/* Dark strength theme */
:root {
  --burgundy: #b40720;
  --burgundy-deep: #050505;
  --coral-accent: #e50924;
  --warm-white: #ffffff;
  --paper: #050505;
  --charcoal: #ffffff;
  --charcoal-soft: #ffffff;
  --moss: #ff2b3d;
  --line: rgba(229, 9, 36, 0.34);
  --line-light: rgba(229, 9, 36, 0.18);
  --surface: #111111;
  --shadow-soft: 0 16px 34px rgba(0, 0, 0, 0.45);
  --shadow-strong: 0 22px 58px rgba(0, 0, 0, 0.68);
  --radius-xs: 0.24rem;
  --radius-sm: 0.34rem;
  --radius-md: 0.46rem;
  --radius-lg: 0.6rem;
}

body {
  color: var(--warm-white);
  background:
    linear-gradient(135deg, rgba(180, 7, 32, 0.18), transparent 28%),
    linear-gradient(225deg, rgba(229, 9, 36, 0.1), transparent 34%),
    linear-gradient(180deg, #030303 0%, #090909 42%, #000 100%);
}

body *,
body *::before,
body *::after {
  color: var(--warm-white) !important;
}

::selection {
  background: #e50924;
  color: var(--warm-white);
}

input::placeholder {
  color: rgba(255, 255, 255, 0.72) !important;
}

.site-header {
  background: rgba(0, 0, 0, 0.92);
  border-bottom: 1px solid rgba(229, 9, 36, 0.55);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.46);
}

.site-header.is-scrolled {
  background: rgba(3, 3, 3, 0.97);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.64);
}

.brand-text,
.desktop-nav a,
.mobile-nav a,
.btn,
.text-link,
.marquee-track,
.section-nav a,
.floating-live-help span {
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand-text {
  font-weight: 900;
}

.menu-toggle,
.testimonial-control,
.live-help-close {
  background: #121212;
  border-color: rgba(229, 9, 36, 0.62);
}

.menu-line {
  background: #050505;
}

.mobile-nav {
  background: #080808;
  border-top-color: rgba(229, 9, 36, 0.62);
}

.btn {
  border-radius: var(--radius-sm);
}

.btn-primary,
.live-help-send {
  background: linear-gradient(180deg, #e50924, #8f0517);
  border-color: #ff3348;
  box-shadow: 0 14px 30px rgba(229, 9, 36, 0.44);
}

.btn-primary:hover,
.live-help-send:hover {
  background: linear-gradient(180deg, #ff1732, #a4061b);
}

.btn-secondary,
.cta-box .btn-secondary {
  background: linear-gradient(180deg, #101010, #050505);
  border-color: rgba(229, 9, 36, 0.46);
}

.btn-secondary:hover,
.cta-box .btn-secondary:hover {
  background: #151515;
  border-color: #e50924;
}

.hero-immersive {
  background:
    linear-gradient(115deg, rgba(229, 9, 36, 0.26), transparent 36%),
    radial-gradient(80% 72% at 78% 16%, rgba(180, 7, 32, 0.18), transparent 62%),
    linear-gradient(135deg, #111 0%, #050505 48%, #000 100%);
  border-bottom: 1px solid rgba(229, 9, 36, 0.55);
}

.hero-copy h1,
.about-intro h1,
.section-head h2,
.training-club-wrap h2,
.final-cta h2 {
  font-weight: 950;
  letter-spacing: -0.02em;
}

.eyebrow,
.hero-copy .eyebrow {
  font-weight: 950;
}

.about,
.benefits,
.testimonials,
.connect,
.contact,
.final-cta {
  background:
    linear-gradient(180deg, rgba(180, 7, 32, 0.12), transparent 38%),
    #050505;
}

.services,
.process,
.reel,
.faq {
  background: #000;
}

.feature-card,
.card,
.step,
.connect-cards article,
.testimonial-card,
.review-request,
.faq-list details,
.not-found-card {
  background: linear-gradient(180deg, #141414, #070707);
  border: 1px solid rgba(229, 9, 36, 0.44);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.feature-card,
.card,
.step {
  border-top: 3px solid #e50924;
}

.feature-icon,
.step-number,
.wa-icon {
  background: linear-gradient(180deg, #e50924, #9b0618);
  border: 1px solid rgba(229, 9, 36, 0.72);
  border-radius: var(--radius-xs);
}

.text-link {
  border-bottom-color: #e50924;
}

.text-link:hover {
  border-bottom-color: #ff3348;
}

.marquee-band {
  background: linear-gradient(90deg, #000, #7b0615 46%, #000);
  border-block-color: rgba(229, 9, 36, 0.62);
}

.training-club {
  background:
    linear-gradient(135deg, #000, #1a0307 45%, #770615),
    #000;
}

.training-club-wrap,
.cta-box {
  background:
    linear-gradient(135deg, rgba(229, 9, 36, 0.72), rgba(74, 0, 8, 0.72)),
    #080808;
  border: 1px solid rgba(229, 9, 36, 0.46);
  border-radius: var(--radius-lg);
}

.testimonial-slider {
  gap: 0.9rem;
}

.testimonial-control {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.38);
}

.reel-wrap {
  background: #000;
  border: 1px solid rgba(229, 9, 36, 0.58);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-strong);
}

.reel-video {
  background: #000;
}

.faq-list details {
  background: #0d0d0d;
}

.cta-box .btn-primary {
  background: linear-gradient(180deg, #111, #000);
  border-color: rgba(229, 9, 36, 0.58);
}

.cta-box .btn-primary:hover {
  background: #171717;
}

.site-footer {
  background: #000;
  border-top: 1px solid rgba(229, 9, 36, 0.48);
}

.footer-bottom {
  border-top-color: rgba(229, 9, 36, 0.34);
}

.floating-live-help,
.floating-whatsapp {
  background: linear-gradient(180deg, #e50924, #880414);
  border: 1px solid rgba(229, 9, 36, 0.78);
  border-radius: var(--radius-sm);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.6);
}

.floating-live-help:hover,
.floating-whatsapp:hover {
  background: linear-gradient(180deg, #ff1732, #a4061b);
}

.live-help-card {
  background: #050505;
  border: 1px solid rgba(229, 9, 36, 0.58);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-strong);
}

.live-help-head,
.live-help-form {
  background: #141414;
  border-color: rgba(229, 9, 36, 0.44);
}

.live-help-message-user {
  background: #b40720;
}

.live-help-message-assistant,
.live-help-message-status {
  background: #1b1b1b;
}

.live-help-form input {
  background: #050505;
  border-color: rgba(229, 9, 36, 0.42);
}

.section-nav a {
  background: linear-gradient(180deg, #101010, #050505);
  border-color: rgba(229, 9, 36, 0.32);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.38);
}

.section-nav a:hover,
.section-nav a.is-active {
  background: #e50924;
  border-color: #e50924;
}

@media (min-width: 64rem) {
  .site-header {
    background: rgba(0, 0, 0, 0.92);
  }

  .desktop-nav a:hover {
    background: #1a1a1a;
  }
}

@media (max-width: 47.99rem) {
  .menu-toggle {
    position: fixed !important;
    top: 1rem !important;
    right: max(1rem, env(safe-area-inset-right)) !important;
    display: inline-flex !important;
    background: #e50924 !important;
    border-color: rgba(229, 9, 36, 0.84) !important;
    z-index: 500;
  }
}

.site-header {
  position: sticky !important;
  top: 0;
}

.header-inner {
  grid-template-columns: minmax(0, 1fr) auto !important;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.46rem;
}

.desktop-nav,
.header-ctas {
  display: none !important;
}

.header-icon-cta,
.menu-toggle {
  width: 2.72rem !important;
  height: 2.72rem !important;
  min-width: 2.72rem;
  min-height: 2.72rem;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  font-size: 0.72rem;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #fff;
}

.social-logo {
  width: 1.28rem;
  height: 1.28rem;
  display: block;
  fill: currentColor;
  flex: none;
}

.header-whatsapp {
  background: #1f8f4d;
  border: 1px solid #36b66b;
  box-shadow: 0 12px 24px rgba(31, 143, 77, 0.3);
}

.header-instagram {
  background: #111;
  border: 1px solid rgba(229, 9, 36, 0.7);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.34);
}

.menu-toggle {
  position: static !important;
  top: auto !important;
  right: auto !important;
  background: #e50924 !important;
  border-color: rgba(229, 9, 36, 0.84) !important;
  box-shadow: 0 12px 24px rgba(229, 9, 36, 0.28);
  z-index: 1;
}

.menu-toggle .menu-line {
  background: #fff !important;
}

.mobile-nav {
  position: absolute;
  top: calc(100% + 0.45rem);
  right: max(0.75rem, env(safe-area-inset-right));
  width: min(18.5rem, calc(100vw - 1.5rem));
  border: 1px solid rgba(229, 9, 36, 0.48);
  border-radius: var(--radius-md);
  background: rgba(5, 5, 5, 0.98);
  box-shadow: var(--shadow-strong);
  padding: 0.65rem;
  z-index: 160;
}

.mobile-nav a {
  width: 100%;
  justify-content: flex-start;
  border-radius: var(--radius-sm);
  padding-inline: 0.72rem;
}

.mobile-nav .btn {
  width: 100%;
  justify-content: center;
}

.floating-whatsapp {
  width: 3.18rem !important;
  height: 3.18rem !important;
  min-height: 3.18rem !important;
  padding: 0 !important;
  justify-content: center;
  border-radius: 50% !important;
  background: #1f8f4d !important;
  border-color: #36b66b !important;
  box-shadow: 0 16px 34px rgba(31, 143, 77, 0.36) !important;
}

.floating-whatsapp:hover {
  background: #23a459 !important;
}

.floating-whatsapp span:not(.wa-icon) {
  display: none !important;
}

.floating-whatsapp .wa-icon {
  width: auto;
  background: transparent !important;
  border: 0;
}

.floating-whatsapp .social-logo {
  width: 1.55rem;
  height: 1.55rem;
}

.ff-consent,
.ff-consent-modal {
  position: fixed;
  z-index: 2000;
}

.ff-consent {
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.ff-consent[hidden],
.ff-consent-modal[hidden] {
  display: none;
}

.ff-consent-panel,
.ff-consent-dialog {
  border: 1px solid rgba(229, 9, 36, 0.42);
  background: #080707;
  color: #fff7f3;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.38);
}

.ff-consent-panel {
  width: min(100%, 58rem);
  display: grid;
  gap: 1rem;
  border-radius: var(--radius-sm);
  padding: 1rem;
  pointer-events: auto;
}

.ff-consent-copy {
  display: grid;
  gap: 0.45rem;
}

.ff-consent-copy h2,
.ff-consent-dialog h2 {
  font-size: 1rem;
  letter-spacing: 0;
}

.ff-consent-copy p,
.ff-consent-dialog p {
  color: #e3d8d1;
  font-size: 0.92rem;
}

.ff-consent-copy a,
.ff-consent-dialog a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.ff-consent-signal {
  color: #ffd4db !important;
}

.ff-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.62rem;
}

.ff-consent-btn {
  min-height: 2.65rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-sm);
  background: #151113;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 850;
  padding: 0.58rem 0.86rem;
}

.ff-consent-primary {
  border-color: var(--coral-accent);
  background: var(--burgundy);
}

.ff-consent-modal {
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.58);
}

.ff-consent-dialog {
  width: min(100%, 34rem);
  display: grid;
  gap: 0.82rem;
  border-radius: var(--radius-md);
  padding: 1rem;
}

.ff-consent-dialog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.ff-consent-close {
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: #151113;
  color: #fff;
  cursor: pointer;
  font: inherit;
  line-height: 1;
}

.ff-consent-toggle {
  display: flex;
  align-items: center;
  gap: 0.62rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 0.72rem;
}

.ff-consent-toggle input {
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--burgundy);
}

@media (max-width: 47.99rem) {
  .hero-wordmark {
    justify-self: center;
    width: min(16.75rem, calc(100vw - 3rem));
  }

  .header-actions {
    gap: 0.28rem;
  }

  .header-icon-cta,
  .menu-toggle {
    width: 2.35rem !important;
    height: 2.35rem !important;
    min-width: 2.35rem;
    min-height: 2.35rem;
  }

  .social-logo {
    width: 1.12rem;
    height: 1.12rem;
  }

  .ff-consent {
    left: 0;
    right: 0;
    bottom: 0.75rem;
    padding-inline: 0.75rem;
  }

  .ff-consent-panel {
    width: calc(100vw - 1.5rem);
    max-width: calc(100vw - 1.5rem);
    min-width: 0;
    max-height: min(70svh, 32rem);
    overflow: auto;
    gap: 0.78rem;
    padding: 0.9rem;
  }

  .ff-consent-copy,
  .ff-consent-copy p {
    min-width: 0;
    max-width: calc(100vw - 4rem);
    overflow-wrap: anywhere;
  }

  .ff-consent-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.52rem;
  }

  .ff-consent-btn {
    width: 100%;
    min-width: 0;
    white-space: normal;
    text-align: center;
  }
}

main > section:not(.marquee-band) {
  text-align: center;
}

main > section:not(.marquee-band) :where(
  .hero-copy,
  .about-intro,
  .about-copy,
  .section-head,
  .feature-card,
  .card,
  .step,
  .training-club-wrap,
  .training-package-copy,
  .package-card,
  .connect-copy,
  .connect-cards article,
  .contact-copy,
  .faq-list details,
  .testimonial-card,
  .review-request,
  .cta-box
) {
  text-align: center;
}

main > section:not(.marquee-band) :where(
  .hero-copy,
  .about-intro,
  .about-copy,
  .section-head,
  .training-club-wrap,
  .connect-copy,
  .contact-copy,
  .cta-box
) {
  margin-inline: auto;
}

main > section:not(.marquee-band) :where(.hero-actions, .cta-actions) {
  justify-content: center;
}

main > section:not(.marquee-band) :where(
  .hero-actions .btn,
  .training-package-copy .btn-primary,
  .review-request .btn,
  .contact-submit,
  .card .text-link,
  .reel-wrap,
  .step-number,
  .package-logo-wrap img
) {
  justify-self: center;
  margin-inline: auto;
}

main .hero-copy {
  justify-items: center;
  max-width: min(100%, 52rem);
}

main .hero-wordmark {
  width: min(42rem, calc(100vw - 2rem));
  margin: 0 auto 0.7rem;
  justify-self: center;
}

main .hero-copy h1 {
  width: auto;
  max-width: 36rem;
  margin-inline: auto;
  font-size: clamp(1.35rem, 2.7vw, 2.05rem);
  line-height: 1.1;
  text-align: center;
}

main .hero-copy .lead {
  width: auto;
  max-width: 28rem;
  margin-inline: auto;
  font-size: clamp(0.82rem, 1.25vw, 0.96rem);
  text-align: center;
}

main .review-request {
  grid-template-columns: 1fr;
  justify-items: center;
}

body {
  padding-top: var(--fixed-header-offset, 6.05rem);
}

.site-header {
  position: fixed !important;
  inset: 0 0 auto 0;
  width: 100%;
  z-index: 1200;
}

section[id] {
  scroll-margin-top: calc(var(--fixed-header-offset, 6.05rem) + 1rem);
}

.site-header .brand-logo {
  width: 4.45rem !important;
  aspect-ratio: 1;
  height: auto;
  object-fit: contain;
  border-radius: 50%;
}

.benefits {
  padding-bottom: clamp(1.2rem, 2.8vw, 2.2rem);
}

.services {
  padding-top: clamp(1.8rem, 3.8vw, 3rem);
  padding-bottom: clamp(1.15rem, 2.4vw, 1.9rem);
}

.marquee-band + .training-club {
  padding-top: clamp(1.5rem, 3vw, 2.35rem);
}

@media (max-width: 47.99rem) {
  body {
    --fixed-header-offset: 5.55rem;
  }

  .site-header .brand-logo {
    width: 4rem !important;
  }

  main .hero-wordmark {
    width: min(17.5rem, calc(100vw - 2rem));
    max-width: 100%;
  }

  main .hero-copy h1 {
    width: min(100%, 18rem);
    max-width: calc(100vw - 2rem);
    font-size: clamp(1.1rem, 5.2vw, 1.38rem);
  }

  main .hero-copy .lead {
    width: min(100%, 18rem);
    max-width: calc(100vw - 2rem);
    font-size: 0.82rem;
  }
}

.policy-page {
  min-height: 100vh;
  background:
    radial-gradient(120% 60% at 2% -10%, rgba(180, 7, 32, 0.14), transparent 55%),
    linear-gradient(180deg, #070707 0%, #050505 100%);
  color: #fff7f3;
}

.policy-content {
  width: min(calc(100% - 2rem), 50rem);
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 5.5rem) 0;
  display: grid;
  gap: 1rem;
}

.policy-content h1 {
  font-size: clamp(2rem, 7vw, 3.4rem);
  letter-spacing: 0;
}

.policy-content h2 {
  margin-top: 0.9rem;
  font-size: clamp(1.18rem, 3vw, 1.55rem);
  letter-spacing: 0;
}

.policy-content p {
  color: #e3d8d1;
}

.policy-content a:not(.btn) {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.floating-live-help {
  width: 3.18rem !important;
  height: 3.18rem !important;
  min-height: 3.18rem !important;
  padding: 0 !important;
  border-radius: 50% !important;
  background: linear-gradient(180deg, #e50924, #880414) !important;
  border-color: rgba(229, 9, 36, 0.78) !important;
  animation: live-help-breathe 2.8s ease-in-out infinite;
}

.floating-live-help span {
  width: min-content;
  font-size: 0.54rem !important;
  letter-spacing: 0.03em !important;
  line-height: 1.02;
  text-align: center;
  white-space: normal;
}

@keyframes live-help-breathe {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 14px 30px rgba(229, 9, 36, 0.28);
  }

  50% {
    transform: scale(1.08);
    box-shadow: 0 18px 42px rgba(229, 9, 36, 0.55);
  }
}

@media (min-width: 64rem) {
  .menu-toggle {
    display: inline-flex !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-live-help {
    animation: none;
  }
}

/* FINAL footer credit and logo correction */
footer,
.site-footer,
.footer,
[class*="footer"] {
  text-align: center !important;
}

.ff-footer-rights {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  font-size: 1.25em !important;
  line-height: 1.45 !important;
  margin: 0 auto 1.15rem auto !important;
}

.datahound-site-credit {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  font-size: 0.33rem !important;
  line-height: 1 !important;
  opacity: 0.32 !important;
  letter-spacing: 0.01em !important;
  margin-top: 0.85rem !important;
  padding-bottom: 0.35rem !important;
}

.datahound-site-credit a {
  color: inherit !important;
  text-decoration: none !important;
  border-bottom: 1px solid currentColor !important;
}

/* Force all visible logo images to use the mark, not the circular/white-card logo */
header img,
.site-header img,
.navbar img,
.brand img,
.logo img,
img[class*="logo"],
img[src*="logo"],
img[src*="sam-frankel"] {
  content: url("/assets/icons/frankel-fitness-mark.svg?v=mark-final") !important;
  object-fit: contain !important;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* Kill the light-version logo-card styling */
[class*="logo-card"],
[class*="brand-card"],
[class*="hero-logo"],
[class*="hero"] img[src*="logo"],
[class*="hero"] img[src*="sam-frankel"] {
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

