/* ============================================================
   CORENUTRITION — styles.css
   BODYRESET Landing Page
   Paleta: Onyx #1A1A1A · Gold #E5B43A · Bone #FAF6EE
   Versión: 20260518
============================================================ */

/* ---- VARIABLES ---- */
:root {
  --bg:          #0F0D0B;
  --bg-2:        #131008;
  --bg-card:     #1A1612;
  --bg-card-2:   #201C16;

  --gold:        #E5B43A;
  --gold-light:  #F0C84A;
  --gold-dark:   #C49A2B;
  --gold-dim:    rgba(229,180,58,0.12);
  --gold-glow:   rgba(229,180,58,0.22);

  --bone:        #FAF6EE;
  --bone-2:      #E8E0D0;
  --bone-muted:  #9A9080;

  --navy:        #1E2B5E;

  --line:        rgba(229,180,58,0.12);
  --line-bone:   rgba(250,246,238,0.07);

  --font-display: 'Bebas Neue', 'Arial Black', sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-inout:  cubic-bezier(0.65, 0, 0.35, 1);

  --container:   1200px;
}

/* ---- RESET ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  overflow-x: clip;
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
body {
  background: var(--bg);
  color: var(--bone);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: clip;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

/* ---- UTILITIES ---- */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 2rem;
}
.kicker {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
}
.section-title em {
  font-style: normal;
  color: var(--gold);
}
.section-sub {
  font-size: 1.05rem;
  color: var(--bone-muted);
  max-width: 50ch;
  margin-bottom: 3rem;
  line-height: 1.7;
}
.text-center { text-align: center; }
.text-center.section-sub,
.text-center.kicker { margin-inline: auto; }

.body-text {
  font-size: 1rem;
  color: var(--bone-2);
  line-height: 1.8;
  max-width: 52ch;
  margin-bottom: 1.25rem;
}
.highlight-text {
  color: var(--gold);
  font-weight: 500;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    background 0.3s var(--ease-out),
    color 0.3s,
    border-color 0.3s,
    box-shadow 0.3s var(--ease-out),
    transform 0.3s var(--ease-out);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  will-change: transform;
}
.btn-gold {
  background: var(--gold);
  color: #0F0D0B;
  border: 1px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 6px 36px rgba(229,180,58,0.4);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--bone);
  border: 1px solid rgba(250,246,238,0.25);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 24px rgba(229,180,58,0.15);
}
.btn-full { width: 100%; }

/* ---- REVEAL ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.72s var(--ease-out),
    transform 0.72s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
/* Safety net for split-text elements */
.reveal[data-split] {
  opacity: 1;
  transform: none;
}

/* Stagger for groups */
.benefits-grid .benefit-card:nth-child(1) { transition-delay: 0.0s; }
.benefits-grid .benefit-card:nth-child(2) { transition-delay: 0.08s; }
.benefits-grid .benefit-card:nth-child(3) { transition-delay: 0.16s; }
.benefits-grid .benefit-card:nth-child(4) { transition-delay: 0.24s; }
.benefits-grid .benefit-card:nth-child(5) { transition-delay: 0.32s; }

.testimonials-grid .testimonial-card:nth-child(1) { transition-delay: 0.0s; }
.testimonials-grid .testimonial-card:nth-child(2) { transition-delay: 0.1s; }
.testimonials-grid .testimonial-card:nth-child(3) { transition-delay: 0.2s; }

.method-steps .method-step:nth-child(1) { transition-delay: 0.0s; }
.method-steps .method-step:nth-child(2) { transition-delay: 0.1s; }
.method-steps .method-step:nth-child(3) { transition-delay: 0.2s; }

.results-grid .result-card:nth-child(1) { transition-delay: 0.0s; }
.results-grid .result-card:nth-child(2) { transition-delay: 0.08s; }
.results-grid .result-card:nth-child(3) { transition-delay: 0.16s; }
.results-grid .result-card:nth-child(4) { transition-delay: 0.24s; }

/* ---- SPLASH ---- */
.splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0A0805;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: splashSafety 0.01s 4.5s forwards;
}
@keyframes splashSafety {
  to { opacity: 0; pointer-events: none; }
}
.splash.is-out {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s var(--ease-out);
}
.splash-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.splash-logo {
  width: min(280px, 72vw);
  height: auto;
  animation: splashIn 0.8s var(--ease-out) 0.15s both;
}
@keyframes splashIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
.splash-bar {
  width: 180px;
  height: 1px;
  background: rgba(229,180,58,0.18);
  border-radius: 1px;
  overflow: hidden;
}
.splash-progress {
  height: 100%;
  background: var(--gold);
  width: 0;
  animation: splashLoad 1.4s var(--ease-out) 0.25s forwards;
}
@keyframes splashLoad { to { width: 100%; } }

/* ---- NAV ---- */
.nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 3rem;
  transition:
    background 0.4s ease,
    backdrop-filter 0.4s ease,
    padding 0.4s ease,
    box-shadow 0.4s ease;
}
.nav.is-scrolled {
  background: rgba(10,8,5,0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding-block: 0.9rem;
  box-shadow: 0 1px 0 var(--line);
}
.nav-logo img {
  width: 160px;
  height: auto;
  filter: brightness(10);
  transition: filter 0.4s;
}
.nav.is-scrolled .nav-logo img {
  filter: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.75rem;
}
.nav-links a {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-2);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { padding: 0.6rem 1.4rem; font-size: 0.72rem; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--bone);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.2s;
}
.nav-burger.is-open span:first-child {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-burger.is-open span:last-child {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(10,8,5,0.98);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out);
}
.mobile-menu.is-open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu ul {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 3rem);
  letter-spacing: 0.06em;
  color: var(--bone);
  transition: color 0.2s;
  display: block;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .btn-gold {
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  padding: 0.85rem 2.5rem;
  display: inline-flex;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
}

/* Mouse-reactive gradient — controlled by JS via --mx/--my CSS vars */
.hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(
      circle 750px at var(--mx, 28%) var(--my, 65%),
      rgba(229,180,58,0.17) 0%,
      transparent 58%
    ),
    radial-gradient(
      circle 500px at 82% 18%,
      rgba(30,43,94,0.22) 0%,
      transparent 50%
    ),
    var(--bg);
}

/* Grain texture overlay */
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.032;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 160px;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 10rem 3rem 9rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-title {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  line-height: 0.87;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}
.hero-title-solid {
  font-size: clamp(5rem, 12.5vw, 11rem);
  color: var(--gold);
  display: block;
  will-change: transform;
}
.hero-title-outline {
  font-size: clamp(5rem, 12.5vw, 11rem);
  -webkit-text-stroke: 2px var(--gold);
  color: transparent;
  display: block;
  will-change: transform;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--bone-2);
  line-height: 1.75;
  max-width: 44ch;
  margin-bottom: 2.5rem;
}
.hero-sub em {
  font-style: italic;
  color: var(--gold);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-photo {
  position: relative;
  height: 100svh;
  overflow: hidden;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  will-change: transform;
}
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--bg) 0%, rgba(15,13,11,0.3) 35%, transparent 60%),
    linear-gradient(to top, var(--bg) 0%, transparent 18%);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  opacity: 0.45;
}
.hero-scroll-indicator span {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  color: var(--bone-muted);
}
.hero-scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; transform: scaleY(1); }
  50%       { opacity: 1;    transform: scaleY(1.12); }
}

/* ---- CREDENCIALES BAR ---- */
.cred-bar {
  background: var(--gold);
  padding: 0.7rem 0;
  overflow: hidden;
  position: relative;
}
.cred-marquee {
  display: flex;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}
.cred-item {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #0A0805;
  padding-inline: 2rem;
}
.cred-sep {
  font-size: 0.55rem;
  color: rgba(10,8,5,0.4);
  align-self: center;
  flex-shrink: 0;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---- JONATHAN ---- */
.section-jonathan {
  padding: 8rem 0;
  background: var(--bg-2);
}
.jonathan-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}
.jonathan-photos {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.jonathan-photo-main {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3/4;
  width: 100%;
}
.jonathan-photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.7s var(--ease-out);
}
.jonathan-photo-main:hover img { transform: scale(1.04); }

.jonathan-photo-badge {
  position: absolute;
  bottom: 2.5rem;
  right: -2.5rem;
  width: 140px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.55);
  border: 2px solid var(--gold);
}
.jonathan-photo-badge img {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  object-position: top;
}
.badge-label {
  display: block;
  background: var(--gold);
  color: #0A0805;
  text-align: center;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem;
}

.jonathan-bio {
  font-size: 1rem;
  color: var(--bone-2);
  line-height: 1.8;
  margin-bottom: 1rem;
  max-width: 50ch;
}
.jonathan-bio strong { color: var(--gold); font-weight: 600; }

.jonathan-credentials {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.credential-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.88rem;
  color: var(--bone-2);
}
.credential-icon {
  color: var(--gold);
  font-size: 0.55rem;
  flex-shrink: 0;
}

/* ---- STATS ---- */
.section-stats {
  padding: 5.5rem 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.section-stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(229,180,58,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
  position: relative;
}
.stat-item {
  padding: 2.5rem 1.5rem;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--line);
}
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 4.8rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.6rem;
  letter-spacing: 0.02em;
}
.stat-static {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-muted);
}

/* ---- BODYRESET SECTION ---- */
.section-bodyreset {
  padding: 8rem 0;
  background: var(--bg-2);
}
.bodyreset-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.bodyreset-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.35s, box-shadow 0.35s;
}
.bodyreset-card::before {
  content: "";
  position: absolute;
  top: -60%;
  right: -30%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(229,180,58,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.bodyreset-card:hover {
  border-color: rgba(229,180,58,0.35);
  box-shadow: 0 20px 70px rgba(229,180,58,0.07);
}
.bodyreset-card-icon {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0.85;
}
.bodyreset-card h3 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bone-muted);
  margin-bottom: 1rem;
}
.big-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.bodyreset-card-lines {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.card-line {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: var(--bone-2);
}
.line-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ---- BENEFITS ---- */
.section-benefits {
  padding: 8rem 0;
  background: var(--bg);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
}
/* Center last 2 cards in row 2 */
.benefits-grid .benefit-card:nth-child(4) { grid-column: 1 / 2; }
.benefits-grid .benefit-card:nth-child(5) { grid-column: 2 / 3; }

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--line-bone);
  border-radius: 8px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.3s var(--ease-out),
    transform 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease-out);
}
.benefit-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 80% at 50% 110%, rgba(229,180,58,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
}
.benefit-card:hover {
  border-color: rgba(229,180,58,0.32);
  transform: translateY(-5px);
  box-shadow: 0 14px 48px rgba(229,180,58,0.09);
}
.benefit-card:hover::after { opacity: 1; }

.benefit-num {
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(229,180,58,0.13);
  line-height: 1;
  margin-bottom: 0.75rem;
  transition: color 0.3s;
  letter-spacing: 0.02em;
}
.benefit-card:hover .benefit-num { color: rgba(229,180,58,0.28); }
.benefit-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--bone);
  margin-bottom: 0.7rem;
  letter-spacing: 0.02em;
}
.benefit-card p {
  font-size: 0.875rem;
  color: var(--bone-muted);
  line-height: 1.7;
}

/* ---- METHOD ---- */
.section-method {
  padding: 8rem 0;
  background: var(--bg-2);
  position: relative;
}
.method-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  position: relative;
}
.method-steps::before {
  content: "";
  position: absolute;
  top: 3.5rem;
  left: 14%;
  right: 14%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(229,180,58,0.35), transparent);
  z-index: 0;
}
.method-step {
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}
.step-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  border: 1px solid rgba(229,180,58,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: 2rem;
  background: var(--bg-card);
  transition:
    border-color 0.3s,
    background 0.3s,
    box-shadow 0.3s;
  letter-spacing: 0.04em;
}
.method-step:hover .step-num {
  border-color: var(--gold);
  background: rgba(229,180,58,0.07);
  box-shadow: 0 0 36px rgba(229,180,58,0.18);
}
.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--bone);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.step-content p {
  font-size: 0.88rem;
  color: var(--bone-muted);
  line-height: 1.75;
  max-width: 26ch;
  margin-inline: auto;
}

/* ---- RESULTS ---- */
.section-results {
  padding: 8rem 0;
  background: var(--bg);
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
/* Each card spans 2 of 6 columns — row 1: 3 cards; row 2: 2 cards centered */
.result-card { grid-column: span 2; }
.results-grid .result-card:nth-child(4) { grid-column: 2 / span 2; }
/* 5th card auto-places at col 4, leaving col 1 and 6 empty → perfectly centered */
.result-card img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.result-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition:
    border-color 0.3s,
    transform 0.3s var(--ease-out),
    box-shadow 0.3s;
}
.result-card:hover {
  border-color: rgba(229,180,58,0.32);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.result-placeholder {
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 12px,
      rgba(229,180,58,0.025) 12px,
      rgba(229,180,58,0.025) 24px
    );
  border-bottom: 1px solid var(--line);
}
.result-ph-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.result-ph-icon {
  font-size: 1.8rem;
  color: rgba(229,180,58,0.25);
}
.result-ph-text {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-muted);
}
.result-ph-sub {
  font-size: 0.65rem;
  color: rgba(229,180,58,0.35);
  text-transform: uppercase;
  letter-spacing: 0.22em;
}
.result-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}
.result-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--bone);
}
.result-time {
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ---- TESTIMONIALS ---- */
.section-testimonials {
  padding: 8rem 0;
  background: var(--bg-2);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--line-bone);
  border-radius: 8px;
  padding: 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  transition:
    border-color 0.3s,
    transform 0.3s var(--ease-out),
    box-shadow 0.3s;
}
.testimonial-card:hover {
  border-color: rgba(229,180,58,0.28);
  transform: translateY(-4px);
  box-shadow: 0 14px 44px rgba(0,0,0,0.22);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}
.testimonial-text {
  font-size: 0.93rem;
  color: var(--bone-2);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.5rem;
  flex: 1;
}
.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.author-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--bone);
}
.author-label {
  font-size: 0.7rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}

/* ---- VIDEO TESTIMONIALS ---- */
.testimonials-wide {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.video-wide {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--bg-card);
}
.video-wide iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 8px;
}
.testimonials-shorts {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
.video-short {
  position: relative;
  padding-bottom: 177.78%; /* 9:16 */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--bg-card);
}
.video-short iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 8px;
}

/* ---- PRICING ---- */
.section-pricing {
  padding: 8rem 0 9rem;
  background: var(--bg);
  position: relative;
}
.section-pricing::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 90%, rgba(229,180,58,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 4rem;
  max-width: 940px;
  margin-inline: auto;
  position: relative;
}
.pricing-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1180px;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 2.5rem;
  position: relative;
  transition: border-color 0.3s;
}
.pricing-main {
  border-color: rgba(229,180,58,0.38);
  box-shadow: 0 0 80px rgba(229,180,58,0.06), inset 0 1px 0 rgba(229,180,58,0.1);
}
.pricing-main:hover {
  border-color: rgba(229,180,58,0.6);
  box-shadow: 0 0 100px rgba(229,180,58,0.1);
}
.pricing-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background: var(--gold);
  color: #0A0805;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.3rem 1.4rem;
  border-radius: 2px;
  white-space: nowrap;
}
.pricing-header {
  text-align: center;
  margin-bottom: 1.75rem;
  padding-top: 0.75rem;
}
.pricing-header h3 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--bone);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.1;
  margin-bottom: 0.4rem;
}
.pricing-header p {
  font-size: 0.82rem;
  color: var(--bone-muted);
  letter-spacing: 0.04em;
}
.pricing-price {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}
.price-amount {
  display: block;
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
}
.price-currency {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  vertical-align: super;
  line-height: 1;
}
.price-amount-num {
  font-family: var(--font-display);
  font-size: 4.5rem;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.price-period {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bone-muted);
  margin-top: 0.5rem;
}
.pricing-membership {
  border-color: rgba(229,180,58,0.15);
}
.price-placeholder {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--bone-muted);
  border: 1px dashed rgba(229,180,58,0.28);
  padding: 0.55rem 1.75rem;
  border-radius: 4px;
  display: inline-block;
  letter-spacing: 0.04em;
}
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.88rem;
  color: var(--bone-2);
}
.feat-dot {
  color: var(--gold);
  font-size: 0.5rem;
  flex-shrink: 0;
}
.pricing-note {
  text-align: center;
  font-size: 0.7rem;
  color: var(--bone-muted);
  margin-top: 1rem;
  letter-spacing: 0.05em;
}

/* FREE DIAGNOSTIC CARD */
.pricing-free .pricing-header h3 {
  font-size: 1.8rem;
}
.diag-description {
  font-size: 0.9rem;
  color: var(--bone-2);
  line-height: 1.75;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}
.diag-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bone-muted);
}
.form-group input {
  background: rgba(250,246,238,0.03);
  border: 1px solid rgba(250,246,238,0.1);
  border-radius: 4px;
  padding: 0.8rem 1rem;
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.25s;
}
.form-group input:focus {
  border-color: rgba(229,180,58,0.45);
}
.form-group input::placeholder { color: rgba(154,144,128,0.6); }

.diag-success {
  display: none;
  text-align: center;
  padding: 2rem 0;
}
.success-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
  animation: pulseGold 1.5s ease-in-out 2;
}
@keyframes pulseGold {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}
.diag-success h4 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}
.diag-success p {
  font-size: 0.9rem;
  color: var(--bone-muted);
  line-height: 1.6;
}

/* ---- FOOTER ---- */
.footer {
  background: #0A0805;
  border-top: 1px solid var(--line);
  padding: 5rem 0 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}
.footer-brand img {
  margin-bottom: 1.25rem;
  opacity: 0.75;
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--bone-muted);
  line-height: 1.7;
  max-width: 28ch;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--bone-muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-contact p {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-muted);
  margin-bottom: 0.75rem;
}
.footer-contact a {
  font-size: 0.9rem;
  color: var(--gold);
  transition: color 0.2s;
  word-break: break-all;
}
.footer-contact a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--line-bone);
}
.footer-bottom p {
  font-size: 0.72rem;
  color: rgba(250,246,238,0.2);
}
.footer-bottom-links {
  display: flex;
  gap: 1.75rem;
}
.footer-bottom-links a {
  font-size: 0.72rem;
  color: rgba(250,246,238,0.2);
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--bone-muted); }

/* ---- TABLET ---- */
@media (max-width: 1023px) {
  .nav { padding-inline: 1.75rem; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }

  .hero {
    grid-template-columns: 1fr;
    min-height: 100svh;
  }
  .hero-photo {
    position: absolute;
    inset: 0;
    height: 100%;
    z-index: 0;
  }
  .hero-photo-overlay {
    background: linear-gradient(
      to bottom,
      rgba(15,13,11,0.55) 0%,
      rgba(15,13,11,0.85) 80%,
      var(--bg) 100%
    );
  }
  .hero-content {
    position: relative;
    z-index: 2;
    padding: 9rem 2rem 6rem;
    align-items: center;
    text-align: center;
  }
  .hero-title-solid,
  .hero-title-outline { font-size: clamp(4.5rem, 20vw, 9rem); }
  .hero-sub { max-width: 100%; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-scroll-indicator {
    left: 50%;
    transform: translateX(-50%);
    flex-direction: row;
    align-items: center;
  }
  .hero-scroll-indicator span { writing-mode: horizontal-tb; }
  .hero-scroll-line { width: 40px; height: 1px; }

  .jonathan-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .jonathan-photo-badge {
    position: static;
    width: 110px;
    margin-top: -3rem;
    align-self: flex-end;
  }
  .jonathan-photos {
    flex-direction: row;
    align-items: flex-end;
    gap: 1rem;
  }
  .jonathan-photo-main { flex: 1; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }

  .bodyreset-grid { grid-template-columns: 1fr; }
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .benefits-grid .benefit-card:nth-child(4),
  .benefits-grid .benefit-card:nth-child(5) { grid-column: auto; }

  .method-steps { grid-template-columns: 1fr; }
  .method-steps::before { display: none; }
  .method-step { text-align: left; display: flex; gap: 2rem; align-items: flex-start; padding: 0; }
  .step-num { margin: 0; flex-shrink: 0; width: 5rem; height: 5rem; font-size: 1.2rem; }
  .step-content { text-align: left; }
  .step-content p { max-width: none; margin: 0; }

  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .result-card { grid-column: span 1 !important; grid-row: auto !important; }
  .testimonials-wide { grid-template-columns: 1fr; }
  .testimonials-shorts { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 540px; }
  .pricing-grid-3 { grid-template-columns: 1fr; max-width: 540px; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

/* ---- MOBILE ---- */
@media (max-width: 639px) {
  .container { padding-inline: 1.25rem; }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefits-grid .benefit-card:nth-child(n) { transition-delay: 0s !important; }
  .hero-title-solid,
  .hero-title-outline { font-size: clamp(4rem, 22vw, 7rem); }
  .section-title { font-size: clamp(2.4rem, 10vw, 4rem); }
  .jonathan-photos {
    flex-direction: column;
    position: relative;
  }
  .jonathan-photo-badge {
    position: absolute !important;
    width: 110px;
    right: 0.5rem;
    bottom: 1.5rem;
    margin-top: 0;
    align-self: auto;
  }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2n)::after { display: none; }
  .results-grid { grid-template-columns: 1fr; }
  .testimonials-shorts { grid-template-columns: 1fr; }
  .price-amount-num { font-size: 3.5rem; }
}

/* ---- RESULTS MARQUEE ---- */
@keyframes marqueeLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes marqueeRight {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.results-marquee-wrap {
  overflow: hidden;
  width: 100%;
  margin-top: 2rem;
  /* fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.results-marquee {
  display: flex;
  width: max-content;
}

.results-marquee-track {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
  will-change: transform;
  backface-visibility: hidden;
}

.results-marquee-track img {
  height: 280px;
  width: auto;
  border-radius: 8px;
  object-fit: cover;
  display: block;
  border: 1px solid var(--line);
  transition: transform 0.3s var(--ease-out), border-color 0.3s;
}

.results-marquee-track img:hover {
  transform: scale(1.03);
  border-color: rgba(229,180,58,0.4);
}

.results-marquee--left .results-marquee-track {
  animation: marqueeLeft 28s linear infinite;
}

.results-marquee--right .results-marquee-track {
  animation: marqueeRight 32s linear infinite;
}

/* pause on hover */
.results-marquee-wrap:hover .results-marquee-track {
  animation-play-state: paused;
}

@media (max-width: 639px) {
  .results-marquee-track img { height: 200px; }
}
