/* --------------------------------------------------
   TRIBE Joint Support landing page
   Static, dependency-free build
   -------------------------------------------------- */

:root {
  --bg: #f7f0e6;
  --bg-2: #f2e7d9;
  --paper: rgba(255, 251, 246, 0.82);
  --paper-strong: #fcf8f1;
  --ink: #1e140d;
  --ink-soft: #614b39;
  --ink-soft-2: #7b6655;
  --gold: #b98346;
  --gold-deep: #8f5d2a;
  --line: rgba(63, 43, 24, 0.12);
  --line-strong: rgba(63, 43, 24, 0.18);
  --dark: #1f1510;
  --dark-2: #37261b;
  --light: #fefbf6;
  --shadow-sm: 0 8px 18px rgba(51, 31, 14, 0.06);
  --shadow-md: 0 16px 36px rgba(51, 31, 14, 0.09);
  --shadow-lg: 0 28px 70px rgba(44, 26, 12, 0.14);
  --radius-sm: 16px;
  --radius-md: 22px;
  --radius-lg: 30px;
  --container: 1180px;
  --transition: 240ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  background:
    radial-gradient(circle at 10% 0%, rgba(255,255,255,0.82) 0, rgba(255,255,255,0.28) 24%, transparent 48%),
    radial-gradient(circle at 90% 8%, rgba(212,172,124,0.18) 0, rgba(212,172,124,0.04) 22%, transparent 45%),
    linear-gradient(180deg, #fbf7f1 0%, var(--bg) 48%, var(--bg-2) 100%);
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
  position: relative;
}

.section--tight {
  padding: 48px 0 52px;
}

.section--compact {
  padding: 48px 0 64px;
}

.section--soft {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.42), rgba(255,255,255,0)),
    linear-gradient(180deg, rgba(240,227,211,0.58), rgba(251,247,241,0.25));
}

.section--split-band {
  padding-top: 32px;
  padding-bottom: 32px;
}

.section--offer {
  padding-top: 36px;
  padding-bottom: 72px;
}

.section--final {
  padding-top: 28px;
  padding-bottom: 96px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(252, 247, 240, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.topbar.is-scrolled {
  background: rgba(252, 247, 240, 0.9);
  border-color: var(--line);
  box-shadow: 0 6px 20px rgba(24, 16, 10, 0.05);
}

.topbar__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand__mark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--ink);
}

.brand__sub {
  color: var(--ink-soft-2);
  font-size: 0.95rem;
  white-space: nowrap;
}

.button {
  --button-bg: transparent;
  --button-color: var(--ink);
  --button-border: var(--line-strong);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid var(--button-border);
  background: var(--button-bg);
  color: var(--button-color);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.button:focus-visible {
  outline: 3px solid rgba(185, 131, 70, 0.28);
  outline-offset: 2px;
}

.button--primary {
  --button-bg: linear-gradient(180deg, #cb9556 0%, #a76f33 100%);
  --button-color: white;
  --button-border: rgba(152, 103, 46, 0.65);
  box-shadow: 0 18px 34px rgba(167, 111, 51, 0.22);
}

.button--primary:hover {
  box-shadow: 0 22px 40px rgba(167, 111, 51, 0.28);
}

.button--secondary {
  --button-bg: rgba(255, 251, 246, 0.68);
}

.button--ghost {
  --button-bg: rgba(255,255,255,0.5);
}

.button--wide {
  width: 100%;
}

.button--sm {
  min-height: 46px;
  padding: 0 18px;
}

[hidden] {
  display: none !important;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(124, 87, 48, 0.18);
  background: rgba(255, 255, 255, 0.55);
  color: var(--gold-deep);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(185, 131, 70, 0.14);
}

.section-kicker--light {
  background: rgba(255,255,255,0.08);
  color: rgba(255, 236, 214, 0.95);
  border-color: rgba(255,255,255,0.16);
}

.hero__grid,
.formula,
.offer {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 24px;
  align-self: stretch;
  display: flex;
  flex-direction: column;
}

.hero h1,
.section-heading h2,
.feature-band h2,
.offer__content h2,
.final-cta h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.03em;
  line-height: 0.97;
  margin: 16px 0 18px;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.7rem);
  max-width: 10ch;
}

.lead {
  font-size: clamp(1.05rem, 1.55vw, 1.22rem);
  color: var(--ink-soft);
  max-width: 58ch;
  margin: 0 0 28px;
}

.hero__chips {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 28px;
  width: min(100%, 560px);
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 251, 246, 0.7);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 600;
}

.chip--hidden {
  display: none;
}

.hero__actions,
.offer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__actions {
  margin-top: auto;
  padding-top: 36px;
}

.hero--comparison {
  padding-top: 0;
}

.hero--desktop-version {
  display: block;
}

.hero--mobile-version {
  display: none;
}

.hero--image-bottom-copy .hero__grid {
  align-items: start;
  gap: clamp(14px, 2vw, 28px);
}

.hero--image-bottom-copy .hero__content--headline {
  order: 1;
  padding-bottom: 0;
}

.hero--image-bottom-copy .lead {
  max-width: 40ch;
}

.hero--image-bottom-copy .hero__content--after-image {
  order: 2;
  grid-column: 1 / -1;
  padding-top: 0;
}

.hero--image-bottom-copy .hero__visual {
  order: 3;
  grid-column: 1 / -1;
  min-height: 540px;
  padding: 8px 24px 0;
}

.hero--image-bottom-copy .hero__content--actions {
  order: 4;
  grid-column: 1 / -1;
  padding-top: 0;
}

.hero--image-bottom-copy .hero__product {
  max-width: 360px;
  transform: translate(-12px, 10px);
}

.hero-preview-label {
  margin-bottom: 18px;
}

.micro,
.caption,
.offer__note,
.footer p {
  color: var(--ink-soft-2);
  font-size: 0.94rem;
}

.micro {
  margin-top: 16px;
  max-width: 56ch;
}

.hero__visual {
  position: relative;
  min-height: 820px;
  isolation: isolate;
  display: grid;
  place-items: center;
  padding: 20px 24px 44px;
}

.hero__frame {
  position: absolute;
  inset: 8px 0 8px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.72), rgba(255,255,255,0.28)),
    linear-gradient(130deg, rgba(255,255,255,0.18), rgba(255,255,255,0.02));
  border: 1px solid rgba(112, 74, 40, 0.12);
  box-shadow: var(--shadow-lg);
}

.hero__glow,
.offer__glow {
  position: absolute;
  width: min(75vw, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(208,168,116,0.38) 0, rgba(208,168,116,0.16) 32%, rgba(208,168,116,0.02) 64%, transparent 72%);
  filter: blur(4px);
}

.hero__glow {
  top: 14%;
  left: 16%;
}

.hero__product,
.offer__product {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 26px 40px rgba(67, 40, 19, 0.24));
}

.hero__product {
  max-width: 500px;
  transform: translate(-24px, 40px);
}

.offer__product {
  max-width: 500px;
  filter: drop-shadow(0 22px 34px rgba(18, 11, 7, 0.24));
  transform: translateY(-30px);
}

.floating-card {
  position: absolute;
  z-index: 3;
  border-radius: 22px;
  background: rgba(255, 251, 246, 0.82);
  border: 1px solid rgba(90, 61, 34, 0.12);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.floating-card strong {
  display: block;
  font-size: 1.03rem;
  line-height: 1.25;
  margin-bottom: 6px;
}

.floating-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.93rem;
}

.floating-card__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.floating-card--top {
  top: 22px;
  right: 20px;
  width: min(282px, 42%);
  padding: 18px 18px 16px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.metric,
.info-card,
.quote-card,
.step-card,
.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.metric {
  padding: 24px 18px;
  border-radius: 22px;
  text-align: center;
}

.metric--hidden {
  display: none;
}

.metric__value {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 2.6rem);
  line-height: 1;
  margin-bottom: 8px;
}

.metric__label {
  color: var(--ink-soft-2);
  font-size: 0.95rem;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading--left {
  margin-left: 0;
  text-align: left;
}

.section-heading h2,
.feature-band h2,
.offer__content h2,
.final-cta h2 {
  font-size: clamp(2.2rem, 4.8vw, 4rem);
}

.section-heading p,
.feature-band p,
.final-cta p,
.offer__lede,
.formula-list p,
.info-card p,
.quote-card p,
.step-card p {
  margin: 0;
  color: var(--ink-soft);
}

.card-grid {
  display: grid;
  gap: 18px;
}

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

.info-card,
.quote-card,
.step-card {
  border-radius: 26px;
  padding: 28px;
}

.icon-wrap {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(214,177,131,0.26), rgba(214,177,131,0.1));
  color: var(--gold-deep);
  margin-bottom: 18px;
}

.icon {
  width: 24px;
  height: 24px;
}

.info-card h3,
.step-card h3 {
  font-size: 1.15rem;
  line-height: 1.2;
  margin: 0 0 10px;
}

.feature-band {
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(140deg, #1a120d 0%, #2d2018 52%, #433125 100%);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
}

.feature-band__copy {
  padding: clamp(34px, 4.2vw, 60px);
  color: rgba(252, 244, 235, 0.96);
  position: relative;
  z-index: 1;
}

.feature-band__copy p {
  color: rgba(255, 238, 218, 0.78);
  max-width: 52ch;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 14px;
}

.feature-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: start;
  color: rgba(255, 238, 218, 0.82);
}

.feature-list li span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255, 236, 214, 0.96);
  font-size: 0.86rem;
  font-weight: 700;
}

.feature-band__visual {
  min-height: 460px;
  position: relative;
  background:
    linear-gradient(90deg, rgba(26,18,13,0.16), rgba(26,18,13,0.55)),
    url("../images/front-panel.webp");
  background-size: cover;
  background-position: center;
}

.feature-band__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(26,18,13,0.0), rgba(26,18,13,0.45)),
    radial-gradient(circle at 70% 25%, rgba(223, 179, 122, 0.28), transparent 30%);
}

.section--split-band-duplicate {
  padding-top: 0;
}

.feature-band--video-stack {
  grid-template-columns: 1fr;
}

.feature-band--video-stack .feature-band__visual,
.feature-band--video-overlay .feature-band__visual {
  min-height: 400px;
  background: none;
}

.feature-band--video-stack .feature-band__visual::before {
  background:
    linear-gradient(180deg, rgba(22, 14, 10, 0.08) 0%, rgba(22, 14, 10, 0.34) 100%);
}

.feature-band--video-overlay {
  grid-template-columns: 1fr;
}

.feature-band--video-overlay .feature-band__visual::before {
  background:
    linear-gradient(180deg, rgba(22, 14, 10, 0.08) 0%, rgba(22, 14, 10, 0.2) 50%, rgba(22, 14, 10, 0.62) 100%);
}

.feature-band__video,
.feature-band__image-mobile {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-band__image-mobile {
  display: none;
}

.feature-band--video-stack .feature-band__copy {
  border-top: 1px solid rgba(255,255,255,0.08);
}

.feature-band--video-overlay .feature-band__copy {
  border-top: 1px solid rgba(255,255,255,0.08);
}

.feature-band__overlay-copy {
  position: absolute;
  left: clamp(24px, 4vw, 44px);
  right: clamp(24px, 4vw, 44px);
  bottom: clamp(24px, 4vw, 40px);
  z-index: 1;
}

.feature-band__overlay-copy h2 {
  max-width: 12ch;
  margin: 0;
  color: rgba(255, 247, 238, 0.98);
  text-shadow: 0 10px 32px rgba(0, 0, 0, 0.34);
}

.feature-band--video-overlay .feature-list {
  margin-top: 0;
}

.feature-band--overlay {
  position: relative;
  display: block;
  min-height: 540px;
  background: #18110c;
}

.feature-band--overlay .feature-band__copy {
  max-width: 640px;
  padding: clamp(38px, 4.8vw, 64px);
}

.feature-band--overlay .feature-band__visual {
  position: absolute;
  inset: 0;
  min-height: 100%;
}

.feature-band--overlay .feature-band__visual::before {
  background:
    linear-gradient(90deg, rgba(18, 11, 7, 0.82) 0%, rgba(18, 11, 7, 0.56) 38%, rgba(18, 11, 7, 0.68) 100%),
    radial-gradient(circle at 72% 24%, rgba(223, 179, 122, 0.18), transparent 30%);
}

.formula {
  grid-template-columns: minmax(0, 1120px);
  justify-content: center;
  align-items: start;
}

.formula__copy {
  width: 100%;
}

.formula .section-heading {
  max-width: 980px;
}

.formula .section-heading h2 {
  line-height: 1.08;
}

.info-card--list {
  width: min(100%, 620px);
  margin: 0 auto;
  padding: 16px 22px 20px;
}

.formula-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.formula-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.formula-list li[hidden] {
  display: none;
}

.formula-list li:last-child {
  border-bottom: 0;
}

.formula-list strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.formula-list p + p {
  margin-top: 0.85rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(186, 131, 70, 0.12);
  color: var(--gold-deep);
  border: 1px solid rgba(186, 131, 70, 0.16);
  white-space: nowrap;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.steps {
  display: grid;
  gap: 18px;
}

.step-card {
  position: relative;
  overflow: hidden;
}

.step-card__number {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(212,172,124,0.24), rgba(212,172,124,0.08));
  color: var(--gold-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1;
  margin-bottom: 18px;
}

.quote-card {
  display: grid;
  gap: 14px;
}

.section--media-banner {
  padding-top: 8px;
  padding-bottom: 24px;
}

.media-banner {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  height: clamp(270px, 28vw, 340px);
  overflow: hidden;
  background: #1b130e;
}

.media-banner__image,
.media-banner__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-banner__image--mobile {
  display: none;
}

.media-banner__video {
  display: block;
}

.media-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19, 12, 8, 0.18) 0%, rgba(19, 12, 8, 0.48) 100%);
}

.media-banner__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  text-align: center;
}

.media-banner__content h2 {
  max-width: 14ch;
  margin: 0;
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  line-height: 1;
  letter-spacing: -0.03em;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.media-banner__points {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.media-banner__points li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: start;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 251, 246, 0.72);
  border: 1px solid rgba(87, 58, 35, 0.12);
  box-shadow: var(--shadow-sm);
}

.media-banner__points span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(207, 162, 104, 0.18), rgba(207, 162, 104, 0.08));
  border: 1px solid rgba(196, 143, 80, 0.22);
  color: var(--gold-deep);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.media-banner__points p {
  margin: 0;
  color: var(--ink);
  line-height: 1.5;
}

.section--athletes {
  padding-top: 30px;
}

.athlete-proof {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.athlete-video {
  position: relative;
  min-height: 420px;
  border-radius: 32px;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 22%, rgba(214, 177, 131, 0.18), transparent 24%),
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.08), transparent 18%),
    linear-gradient(145deg, #19110d 0%, #2a1d15 44%, #463327 100%);
  border: 1px solid rgba(87, 58, 35, 0.2);
  box-shadow: var(--shadow-lg);
}

.athlete-video::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.85), rgba(0,0,0,0.3));
}

.athlete-video__play {
  position: absolute;
  left: 32px;
  top: 32px;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: rgba(255, 248, 240, 0.12);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 34px rgba(13, 8, 5, 0.28);
}

.athlete-video__play::before {
  content: "";
  position: absolute;
  left: 33px;
  top: 25px;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 24px solid rgba(255, 240, 223, 0.92);
}

.athlete-video__caption {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 28px;
  display: grid;
  gap: 6px;
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(17, 11, 8, 0.58);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  color: rgba(255, 244, 231, 0.95);
}

.athlete-video__caption strong {
  font-size: 1.1rem;
}

.athlete-video__caption span {
  color: rgba(255, 236, 215, 0.74);
}

.athlete-video__overlay-copy {
  display: none;
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
}

.athlete-video__overlay-copy h2 {
  margin: 14px 0 0;
  color: rgba(255, 247, 238, 0.98);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 8vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 0.98;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.34);
}

.athlete-video__overlay-copy .section-kicker {
  display: none;
}

.athlete-proof__mobile-kicker {
  display: none;
  margin-bottom: 14px;
}

.athlete-proof__content h2 {
  font-size: clamp(2.2rem, 4.8vw, 4rem);
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.03em;
  line-height: 0.97;
  margin: 16px 0 20px;
}

.athlete-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.athlete-points li {
  padding: 22px 22px 20px;
  border-radius: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.athlete-points strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.02rem;
  line-height: 1.25;
}

.athlete-points p {
  margin: 0;
  color: var(--ink-soft);
}

.quote-card strong {
  font-size: 1rem;
}

.quote-card span {
  color: var(--ink-soft-2);
  font-size: 0.9rem;
}

.stars {
  color: var(--gold);
  letter-spacing: 0.22em;
  font-size: 0.95rem;
}

.offer {
  border-radius: 36px;
  overflow: hidden;
  background: linear-gradient(145deg, #1b130e 0%, #2d2018 45%, #443125 100%);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.06);
}

.offer__visual {
  min-height: 560px;
  position: relative;
  display: grid;
  place-items: center;
  padding: 40px;
}

.offer__glow {
  top: 16%;
  left: 24%;
}

.offer__badge {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 4;
  min-height: 42px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255, 239, 220, 0.92);
  font-size: 0.92rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.offer__content {
  padding: clamp(30px, 4.2vw, 54px);
  color: rgba(255, 244, 231, 0.92);
}

.offer__content h2 {
  color: white;
  margin-top: 18px;
  margin-bottom: 18px;
}

.offer__lede {
  color: rgba(255, 238, 220, 0.78);
  max-width: 52ch;
}

.price-row {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  margin: 26px 0 22px;
  flex-wrap: wrap;
}

.price-row strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 5vw, 4.6rem);
  line-height: 0.9;
  color: white;
  letter-spacing: -0.03em;
}

.price-row span {
  color: rgba(255, 238, 220, 0.68);
  font-size: 1rem;
  padding-bottom: 10px;
}

.offer-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 12px;
}

.offer-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 238, 220, 0.84);
}

.offer-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, #c48f50, #9e6a32);
  box-shadow: 0 0 0 5px rgba(196, 143, 80, 0.12);
}

.offer__note {
  color: rgba(255, 238, 220, 0.62);
  margin-top: 14px;
}

.faq {
  max-width: 940px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border-radius: 22px;
  padding: 4px 22px;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-size: 1.03rem;
  font-weight: 600;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  line-height: 1;
  color: var(--gold-deep);
  transition: transform var(--transition);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 0;
  padding: 0 0 20px;
  color: var(--ink-soft);
}

.final-cta {
  max-width: 900px;
  text-align: center;
  padding: 44px 38px;
  border-radius: 30px;
  background: rgba(255, 251, 246, 0.66);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.final-cta p {
  max-width: 58ch;
  margin: 0 auto 24px;
}

.footer {
  padding: 28px 0 110px;
  border-top: 1px solid rgba(63, 43, 24, 0.08);
}

.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.footer__inner strong {
  display: block;
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0.14em;
}

.footer__inner p {
  max-width: 68ch;
  margin: 0;
}

.footer__link {
  text-decoration: none;
  color: var(--gold-deep);
  font-weight: 600;
  white-space: nowrap;
}

.mobile-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 45;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 12px 12px 16px;
  border-radius: 20px;
  background: rgba(21, 15, 11, 0.92);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 44px rgba(14, 10, 8, 0.34);
  backdrop-filter: blur(18px);
}

.mobile-cta__text {
  display: grid;
  gap: 2px;
}

.mobile-cta strong {
  color: white;
  font-size: 0.96rem;
}

.mobile-cta span {
  color: rgba(255, 240, 224, 0.7);
  font-size: 0.84rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 660ms ease, transform 660ms ease;
  will-change: opacity, transform;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 1080px) {
  .hero__grid,
  .formula,
  .offer,
  .feature-band {
    grid-template-columns: 1fr;
  }

  .hero__content {
    padding-top: 8px;
    align-self: auto;
  }

  .hero h1 {
    max-width: 12ch;
  }

  .hero__visual {
    min-height: 700px;
  }

  .hero__frame {
    inset: 18px 0 0 0;
  }

  .floating-card--top {
    right: 0;
  }

  .formula {
    gap: 28px;
  }

  .offer__visual {
    min-height: 500px;
    padding-bottom: 16px;
  }

  .media-banner {
    height: clamp(236px, 30vw, 286px);
  }

  .feature-band--video-stack .feature-band__visual {
    min-height: 340px;
  }

  .feature-band--video-overlay .feature-band__visual {
    min-height: 340px;
  }

  .athlete-proof {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .hero--desktop-version {
    display: none;
  }

  .hero--mobile-version {
    display: block;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 72px 0;
  }

  .section--tight {
    padding-top: 30px;
    padding-bottom: 36px;
  }

  .topbar__inner {
    min-height: 70px;
  }

  .brand__sub,
  .topbar .button--ghost {
    display: none;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
    max-width: 11ch;
  }

  .hero--mobile-tuned .hero__content {
    padding-top: 0;
    padding-inline: 8px;
  }

  .hero--mobile-tuned .eyebrow {
    padding: 7px 12px;
    gap: 8px;
    font-size: 0.71rem;
    letter-spacing: 0.14em;
  }

  .hero--mobile-tuned h1 {
    font-size: clamp(2.2rem, 10.4vw, 3.4rem);
    line-height: 1.01;
    margin: 12px 0 16px;
    max-width: 10.2ch;
  }

  .hero--mobile-tuned .lead {
    max-width: 31ch;
    margin-bottom: 22px;
    font-size: 1rem;
    line-height: 1.45;
  }

  .hero--mobile-tuned .hero__actions {
    gap: 10px;
  }

  .hero--image-bottom-copy .lead {
    max-width: 35ch;
  }

  .hero__visual {
    min-height: 620px;
  }

  .hero--image-bottom-copy .hero__visual {
    min-height: 380px;
    padding: 0 18px;
  }

  .hero--image-bottom-copy .hero__product {
    max-width: 300px;
    transform: translate(-8px, 6px);
  }

  .hero__actions {
    margin-top: 0;
    padding-top: 0;
  }

  .hero__product {
    max-width: 430px;
    transform: translate(-18px, 34px);
  }

  .offer__product {
    max-width: 440px;
  }

  .floating-card--top {
    width: min(256px, 48%);
    top: 18px;
    right: 18px;
  }

  .metrics,
  .card-grid--three,
  .steps {
    grid-template-columns: 1fr;
  }

  .media-banner {
    height: 440px;
  }

  .media-banner__video {
    display: none;
  }

  .media-banner__image--mobile {
    display: block;
  }

  .media-banner__points {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .media-banner__points li {
    padding: 16px 18px;
    align-items: center;
  }

  .feature-band--video-stack .feature-band__visual {
    min-height: 300px;
  }

  .feature-band--video-overlay .feature-band__visual {
    min-height: 300px;
  }

  .feature-band--video-stack .feature-band__video {
    display: none;
  }

  .feature-band--video-overlay .feature-band__video {
    display: none;
  }

  .feature-band--video-stack .feature-band__image-mobile {
    display: block;
  }

  .feature-band--video-overlay .feature-band__image-mobile {
    display: block;
  }

  .feature-band__visual {
    min-height: 340px;
  }

  .athlete-proof__content {
    padding-inline: 8px;
  }

  .athlete-proof__content h2 {
    max-width: 10.2ch;
  }

  .section-heading--reviews {
    padding-inline: 8px;
  }

  .section-heading--reviews h2 {
    max-width: 12.2ch;
    margin-left: auto;
    margin-right: auto;
  }

  .section-heading--reviews p {
    max-width: 35ch;
    margin-left: auto;
    margin-right: auto;
  }

  .section--athletes-mobile-overlay .athlete-video__overlay-copy {
    display: block;
  }

  .section--athletes-mobile-overlay .athlete-proof__mobile-kicker {
    display: block;
  }

  .section--athletes-mobile-overlay .athlete-proof__media {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .section--athletes-mobile-overlay .athlete-video {
    min-height: 360px;
    border-radius: 0;
    border: 0;
    box-shadow: none;
  }

  .section--athletes-mobile-overlay .athlete-video__caption {
    display: none;
  }

  .section--athletes-mobile-overlay .athlete-proof__intro {
    display: none;
  }

  .offer__badge {
    left: 18px;
    bottom: 18px;
  }

  .footer__inner {
    flex-direction: column;
  }

  .mobile-cta {
    display: flex;
  }

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

@media (max-width: 560px) {
  .button {
    min-height: 50px;
    padding: 0 20px;
  }

  .hero__actions,
  .offer__actions {
    flex-direction: column;
  }

  .hero__actions .button,
  .offer__actions .button {
    width: 100%;
  }

  .hero__chips {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero--mobile-tuned .button {
    min-height: 46px;
    padding: 0 18px;
  }

  .hero--mobile-tuned .hero__content {
    padding-inline: 10px;
  }

  .hero--image-bottom-copy .hero__visual {
    min-height: 300px;
    padding: 0 16px;
  }

  .hero--image-bottom-copy .hero__product {
    max-width: 248px;
    transform: translate(-4px, 2px);
  }

  .hero--mobile-tuned .hero__actions {
    gap: 9px;
  }

  .hero--mobile-tuned h1 {
    font-size: clamp(2rem, 9.8vw, 3.15rem);
    max-width: 10ch;
  }

  .hero--mobile-tuned .lead {
    font-size: 0.97rem;
    line-height: 1.42;
    margin-bottom: 20px;
  }

  .hero--image-bottom-copy .lead {
    max-width: 34ch;
  }

  .hero__visual {
    min-height: 500px;
    padding: 20px 16px 28px;
  }

  .athlete-proof__content {
    padding-inline: 10px;
  }

  .section-heading--reviews {
    padding-inline: 10px;
  }

  .section-heading--reviews h2 {
    max-width: 11.8ch;
  }

  .section-heading--reviews p {
    max-width: 34ch;
  }

  .section--athletes-mobile-overlay .athlete-video__overlay-copy {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .section--athletes-mobile-overlay .athlete-video__overlay-copy h2 {
    max-width: 10ch;
  }

  .hero__product {
    max-width: 348px;
    transform: translate(-10px, 24px);
  }

  .offer__product {
    max-width: 360px;
  }

  .hero__frame {
    border-radius: 26px;
  }

  .floating-card--top {
    display: none;
  }

  .section-heading h2,
  .feature-band h2,
  .offer__content h2,
  .final-cta h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .info-card,
  .quote-card,
  .step-card,
  .final-cta,
  .metric {
    padding-left: 22px;
    padding-right: 22px;
  }

  .faq-item {
    padding-left: 18px;
    padding-right: 18px;
  }

  .mobile-cta {
    left: 10px;
    right: 10px;
    bottom: 10px;
    border-radius: 18px;
  }
}
