/* =============================================================
   EL BOCI — styles.css
   1. Tokens  2. Reset  3. Utilities  4. Typography  5. Components
   6. Sections  7. Effects  8. Responsive  9. Reduced-motion
   ============================================================= */

/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:          #0d0d0d;
  --bg-2:        #1a1a1a;
  --bg-3:        #201f1d;
  --cream:       #f4f1ec;
  --cream-mute:  rgba(244,241,236,.66);
  --cream-dim:   rgba(244,241,236,.4);

  --light:       #f6f6f4;
  --paper:       #ffffff;
  --ink:         #1a1a1a;
  --ink-mute:    rgba(26,26,26,.62);
  --ink-dim:     rgba(26,26,26,.4);

  --accent:      #ff5a3c;
  --accent-2:    #ff7a5c;
  --accent-dark: #dd4325;
  --accent-soft: rgba(255,90,60,.14);

  --line-dark:   rgba(244,241,236,.14);
  --line-light:  rgba(26,26,26,.12);

  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --mono: "Space Mono", "IBM Plex Mono", ui-monospace, SFMono-Regular, monospace;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --nav-h: 72px;
  --container: 1180px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  background: var(--bg);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.05; letter-spacing: -0.02em; font-weight: 800; }
::selection { background: var(--accent); color: var(--bg); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .7rem 1.1rem; background: var(--accent); color: #fff;
  z-index: 9999; border-radius: 6px; font-weight: 700; font-size: .85rem;
}
.skip-link:focus { top: 1rem; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 720px)  { .container { padding-inline: 2rem; } }
@media (min-width: 1280px) { .container { padding-inline: 2.5rem; } }

.section { padding-block: clamp(3.5rem, 8vw, 7rem); position: relative; }
.section--dark  { background: var(--bg); color: var(--cream); }
.section--dark2 { background: var(--bg-2); color: var(--cream); }
.section--light { background: var(--light); color: var(--ink); }
.section--paper { background: var(--paper); color: var(--ink); }
.section--accent{ background: var(--accent); color: #1a0a05; }

.kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.kicker::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
}
.section--light .kicker, .section--paper .kicker { color: var(--accent-dark); }

.eyebrow-num {
  font-family: var(--mono);
  font-size: .78rem;
  color: var(--accent);
  letter-spacing: .05em;
}

.max-58 { max-width: 58ch; }
.max-42 { max-width: 42ch; }
.center { text-align: center; margin-inline: auto; }

.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;
}

/* =============================================================
   4. Typography
   ============================================================= */
h1 { font-size: clamp(2.3rem, 6.4vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 4.6vw, 3.1rem); }
h3 { font-size: clamp(1.25rem, 2.6vw, 1.7rem); }

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.55;
  color: var(--cream-mute);
  font-weight: 400;
}
.section--light .lede, .section--paper .lede { color: var(--ink-mute); }

.body-text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--cream-mute);
}
.section--light .body-text, .section--paper .body-text { color: var(--ink-mute); }

em { font-style: normal; color: var(--accent); }

/* =============================================================
   5. Components
   ============================================================= */

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: 1.05rem 1.9rem;
  border-radius: 100px;
  font-weight: 800;
  font-size: .98rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
  transition: transform .4s var(--ease-soft), box-shadow .4s var(--ease-soft), background-color .3s;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); transition-duration: .12s; }

.btn--primary {
  background: var(--accent); color: #1a0a05;
}
.btn--primary:hover {
  background: var(--accent-2);
  box-shadow: 0 20px 44px rgba(255,90,60,.32), 0 6px 18px rgba(0,0,0,.28);
}
.btn--ghost {
  background: transparent; color: var(--cream);
  border: 1.5px solid var(--line-dark);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.section--light .btn--ghost, .section--paper .btn--ghost {
  color: var(--ink); border-color: var(--line-light);
}
.btn--block { width: 100%; }
.btn--lg { padding: 1.3rem 2.4rem; font-size: 1.08rem; }

.btn-arrow { display: inline-block; transition: transform .35s var(--ease-out); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* Nav */
.nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 200;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background-color .4s var(--ease-out), box-shadow .4s var(--ease-out), backdrop-filter .4s;
}
.nav-inner {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav.is-scrolled {
  background: rgba(13,13,13,.86);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 1px 0 var(--line-dark);
}
.nav-logo {
  font-weight: 900; font-size: 1.15rem; letter-spacing: -0.02em;
  color: var(--cream);
}
.nav-logo em { color: var(--accent); }
.nav-links { display: none; align-items: center; gap: 2.2rem; }
@media (min-width: 860px) { .nav-links { display: flex; } }
.nav-link {
  position: relative; font-size: .92rem; font-weight: 600; color: var(--cream-mute);
  padding-block: .3rem;
  transition: color .3s;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease-out);
}
.nav-link:hover { color: var(--cream); }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { display: none; }
@media (min-width: 860px) { .nav-cta { display: inline-flex; padding: .75rem 1.4rem; font-size: .86rem; } }

.nav-burger {
  display: grid; place-items: center; width: 40px; height: 40px;
  gap: 5px;
}
@media (min-width: 860px) { .nav-burger { display: none; } }
.nav-burger span {
  display: block; width: 22px; height: 2px; background: var(--cream);
  transition: transform .35s var(--ease-out), opacity .3s;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  position: fixed; inset: 0; z-index: 190;
  background: var(--bg); color: var(--cream);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .6s var(--ease-soft);
  padding: 2rem;
}
.nav-mobile[data-open="true"] { clip-path: inset(0); }
.nav-mobile a { font-size: 1.5rem; font-weight: 800; }
.nav-mobile .btn { margin-top: 1rem; }

/* Cards */
.card {
  background: var(--bg-2);
  border: 1px solid var(--line-dark);
  border-radius: 18px;
  padding: 1.9rem;
  transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft), border-color .4s;
}
.section--light .card, .section--paper .card {
  background: var(--paper);
  border-color: var(--line-light);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.4), 0 0 0 1px rgba(255,90,60,.18);
  border-color: rgba(255,90,60,.35);
}

/* Placeholder images — swap for <img> once real photos are uploaded */
.ph {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #211f1c 0%, #16140f 100%);
  border: 1.5px dashed rgba(255,90,60,.4);
  border-radius: 16px;
  overflow: hidden;
  isolation: isolate;
}
.ph::before {
  content: ""; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(255,90,60,.05) 0 2px, transparent 2px 14px);
  pointer-events: none;
}
.ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border: 0; }
.ph-label {
  position: relative;
  text-align: center; padding: 1.2rem;
  font-family: var(--mono);
  font-size: .68rem; letter-spacing: .04em; line-height: 1.7;
  color: var(--cream-dim);
}
.ph-label strong { display: block; color: var(--accent); font-size: .74rem; margin-bottom: .3rem; }
.ph--light { background: linear-gradient(135deg, #ece9e2 0%, #ddd8cd 100%); border-color: rgba(255,90,60,.35); }
.ph--light .ph-label { color: var(--ink-dim); }
.ph--light .ph-label strong { color: var(--accent-dark); }

.ph--portrait { aspect-ratio: 4 / 5; }
.ph--tall     { aspect-ratio: 3 / 4; }
.ph--wide     { aspect-ratio: 16 / 9; }
.ph--square   { aspect-ratio: 1 / 1; }
.ph--hero     { aspect-ratio: 4 / 5; }
@media (min-width: 720px) { .ph--hero { aspect-ratio: 3 / 4; } }

/* Reveal */
[data-reveal] {
  opacity: 0; transform: translateY(32px);
  transition: opacity .8s var(--ease-soft), transform .8s var(--ease-soft);
}
[data-reveal].is-revealed { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal-delay="3"] { transition-delay: .24s; }

/* Stat badge */
.stat-badge {
  display: inline-flex; flex-direction: column; gap: .1rem;
  background: var(--bg-2);
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  padding: .9rem 1.2rem;
}
.stat-badge .num { font-family: var(--mono); font-size: 1.15rem; font-weight: 700; color: var(--accent); }
.stat-badge .label { font-size: .74rem; color: var(--cream-dim); letter-spacing: .02em; }

/* Stats row (count-up) */
.stats-row {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem;
}
@media (min-width: 640px) { .stats-row { grid-template-columns: repeat(4, 1fr); } }
.stat {
  text-align: center; padding-block: 1rem;
  border-top: 1px solid var(--line-dark);
}
.section--light .stat, .section--paper .stat { border-color: var(--line-light); }
.stat .stat-num {
  font-family: var(--mono); font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--accent);
  display: block;
}
.stat .stat-label {
  font-size: .82rem; color: var(--cream-dim); margin-top: .35rem;
}
.section--light .stat .stat-label, .section--paper .stat .stat-label { color: var(--ink-dim); }

/* Floating WhatsApp / Instagram button */
.float-cta {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 150;
  display: flex; align-items: center; gap: .6rem;
  background: var(--accent); color: #1a0a05;
  padding: .85rem 1.1rem; border-radius: 100px;
  font-weight: 800; font-size: .86rem;
  box-shadow: 0 12px 30px rgba(255,90,60,.4);
  transition: transform .4s var(--ease-soft), box-shadow .4s;
  opacity: 0; transform: translateY(16px) scale(.9);
  pointer-events: none;
}
.float-cta.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.float-cta:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(255,90,60,.5); }
.float-cta svg { width: 19px; height: 19px; flex-shrink: 0; }
.float-cta-text { display: none; }
@media (min-width: 540px) { .float-cta-text { display: inline; } }

/* Program cards grid */
.programs-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.4rem;
}
@media (min-width: 760px) { .programs-grid { grid-template-columns: repeat(3, 1fr); } }

.program-card {
  display: flex; flex-direction: column; gap: 1.1rem;
  height: 100%;
}
.program-card .ph { margin-bottom: .2rem; }
.program-tag {
  display: inline-flex; align-self: flex-start;
  font-family: var(--mono); font-size: .68rem; letter-spacing: .08em;
  padding: .3rem .7rem; border-radius: 100px;
  background: var(--accent-soft); color: var(--accent-dark);
}
.section--light .program-tag, .section--paper .program-tag { background: var(--accent-soft); color: var(--accent-dark); }
.program-card--locked { opacity: .68; }
.program-card--locked .program-tag { background: rgba(26,26,26,.06); color: var(--ink-dim); }
.section--dark .program-card--locked .program-tag,
.section--dark2 .program-card--locked .program-tag { background: rgba(244,241,236,.08); color: var(--cream-dim); }

.program-card--ghost {
  border-style: dashed;
  align-items: center; justify-content: center; text-align: center;
  gap: .6rem; min-height: 320px;
}
.program-card--ghost .ph-label strong { color: var(--accent); }

.program-price { display: flex; align-items: baseline; gap: .6rem; margin-top: auto; }
.program-price .old { font-family: var(--mono); font-size: .95rem; color: var(--cream-dim); text-decoration: line-through; }
.section--light .program-price .old, .section--paper .program-price .old { color: var(--ink-dim); }
.program-price .now { font-family: var(--mono); font-size: 1.6rem; font-weight: 700; color: var(--accent); }

/* Social row */
.social-row { display: flex; flex-wrap: wrap; gap: .9rem; }
.social-pill {
  display: inline-flex; align-items: center; gap: .55rem;
  border: 1.5px solid var(--line-dark);
  border-radius: 100px; padding: .75rem 1.3rem;
  font-weight: 700; font-size: .92rem;
  transition: border-color .3s, transform .4s var(--ease-soft);
}
.social-pill:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-3px); }
.social-pill svg { width: 18px; height: 18px; }

/* Gallery mini grid (gym/proof shots) */
.mini-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem;
}
.mini-grid-photo {
  aspect-ratio: 1; width: 100%; height: 100%;
  object-fit: cover; border-radius: 14px;
}
.mini-grid-video {
  position: relative; aspect-ratio: 1; border-radius: 14px; overflow: hidden;
  background: var(--bg-2);
}
.mini-grid-video video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.mini-grid-video::after {
  content: ""; position: absolute; top: .5rem; right: .5rem;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(13,13,13,.55); backdrop-filter: blur(4px);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f4f1ec' stroke-width='2'%3E%3Cpath d='M11 5 6 9H2v6h4l5 4V5Z'/%3E%3Cline x1='23' y1='9' x2='17' y2='15'/%3E%3Cline x1='17' y1='9' x2='23' y2='15'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 12px;
  pointer-events: none;
}

/* FAQ accordion */
.faq { border-top: 1px solid var(--line-light); }
.faq-item { border-bottom: 1px solid var(--line-light); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1.4rem 0; text-align: left;
  font-weight: 800; font-size: 1.05rem;
}
.faq-q .plus {
  flex-shrink: 0; width: 26px; height: 26px; position: relative;
}
.faq-q .plus::before, .faq-q .plus::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  background: var(--accent); transition: transform .4s var(--ease-out);
}
.faq-q .plus::before { width: 14px; height: 2px; transform: translate(-50%, -50%); }
.faq-q .plus::after   { width: 2px; height: 14px; transform: translate(-50%, -50%); }
.faq-item[data-open="true"] .plus::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .5s var(--ease-soft);
}
.faq-item[data-open="true"] .faq-a { max-height: 300px; }
.faq-a-inner { padding-bottom: 1.4rem; color: var(--ink-mute); line-height: 1.7; max-width: 62ch; }
.section--dark .faq, .section--dark2 .faq { border-color: var(--line-dark); }
.section--dark .faq-item, .section--dark2 .faq-item { border-color: var(--line-dark); }
.section--dark .faq-a-inner, .section--dark2 .faq-a-inner { color: var(--cream-mute); }

/* Before / after slider */
.ba-slider {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  overflow: hidden;
  user-select: none;
  border: 1px solid var(--line-dark);
  max-width: 420px;
  margin-inline: auto;
}
.ba-slider .ph { position: absolute; inset: 0; border-radius: 0; border: 0; }
.ba-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-after { clip-path: inset(0 0 0 50%); }
.ba-line {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 3px; background: var(--accent);
  transform: translateX(-50%);
  pointer-events: none;
}
.ba-handle {
  position: absolute; top: 50%; left: 50%;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--accent); color: #1a0a05;
  display: flex; align-items: center; justify-content: center;
  transform: translate(-50%, -50%);
  cursor: ew-resize;
  box-shadow: 0 8px 20px rgba(0,0,0,.35);
}
.ba-handle svg { width: 18px; height: 18px; }
.ba-tag {
  position: absolute; bottom: .8rem;
  font-family: var(--mono); font-size: .68rem; letter-spacing: .06em;
  background: rgba(13,13,13,.7); color: var(--cream);
  padding: .35rem .7rem; border-radius: 100px;
  backdrop-filter: blur(6px);
}
.ba-tag--before { left: .8rem; }
.ba-tag--after  { right: .8rem; }
.ba-input {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; cursor: ew-resize; margin: 0;
  -webkit-appearance: none; appearance: none;
}

/* Guarantee badge */
.guarantee {
  display: flex; align-items: center; gap: 1rem;
  border: 1.5px solid var(--line-dark);
  border-radius: 16px; padding: 1.3rem 1.5rem;
}
.guarantee svg { width: 40px; height: 40px; flex-shrink: 0; color: var(--accent); }
.guarantee strong { display: block; font-size: 1rem; margin-bottom: .2rem; }
.guarantee p { font-size: .9rem; color: var(--cream-mute); }
.section--light .guarantee p, .section--paper .guarantee p { color: var(--ink-mute); }

/* Bonus callout */
.callout {
  border: 1.5px dashed var(--accent);
  border-radius: 18px;
  padding: 1.8rem;
  background: var(--accent-soft);
}

/* Numbered chapter list */
.chapters { display: flex; flex-direction: column; }
.chapter {
  display: grid; grid-template-columns: auto 1fr; gap: 1.1rem;
  padding-block: 1.4rem;
  border-top: 1px solid var(--line-light);
}
.chapter:last-child { border-bottom: 1px solid var(--line-light); }
.chapter .eyebrow-num { padding-top: .1rem; }
.chapter h3 { margin-bottom: .3rem; }
.chapter p { color: var(--ink-mute); }

/* Footer */
.footer {
  background: var(--bg); color: var(--cream);
  padding-block: 3.5rem 2rem;
  border-top: 1px solid var(--line-dark);
}
.footer-top {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2rem;
  padding-bottom: 2.4rem;
}
.footer-brand { max-width: 320px; }
.footer-brand .nav-logo { display: inline-block; margin-bottom: .8rem; }
.footer-brand p { color: var(--cream-mute); font-size: .92rem; }
.footer-cols { display: flex; flex-wrap: wrap; gap: 3rem; }
.footer-col h4 { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--cream-dim); margin-bottom: 1rem; font-weight: 700; }
.footer-col a { display: block; font-size: .92rem; color: var(--cream-mute); margin-bottom: .65rem; transition: color .3s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  padding-top: 1.8rem; border-top: 1px solid var(--line-dark);
  font-size: .82rem; color: var(--cream-dim);
}

/* =============================================================
   6. Sections (page-specific)
   ============================================================= */

/* HERO — home */
.hero {
  min-height: 100svh;
  display: flex; align-items: center;
  padding-top: calc(var(--nav-h) + 2rem);
  padding-bottom: 3rem;
  background: var(--bg);
  position: relative;
  overflow: clip;
}
.hero::before {
  content: ""; position: absolute; inset: -20% -10% auto -10%; height: 70%;
  background: radial-gradient(60% 60% at 50% 20%, rgba(255,90,60,.16), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr; gap: 2.6rem; align-items: center;
  position: relative;
}
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1.1fr .9fr; gap: 3.5rem; } }
.hero-title { margin-bottom: 1.3rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.8rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }
.hero-visual { position: relative; }
.hero-visual .stat-badge {
  position: absolute; bottom: -1rem; left: -1rem;
  background: var(--bg); box-shadow: 0 20px 44px rgba(0,0,0,.4);
}
@media (max-width: 899px) { .hero-visual .stat-badge { position: static; margin-top: 1rem; } }

/* Sales hero (product page) */
.sales-hero {
  min-height: 92svh;
  display: flex; align-items: center;
  padding-top: calc(var(--nav-h) + 2.4rem);
  padding-bottom: 3rem;
  background: var(--bg);
  position: relative; overflow: clip;
  text-align: center;
}
.sales-hero::before {
  content: ""; position: absolute; inset: -10% -10% auto -10%; height: 80%;
  background: radial-gradient(55% 55% at 50% 10%, rgba(255,90,60,.18), transparent 70%);
  filter: blur(70px); pointer-events: none;
}
.sales-hero-inner { position: relative; max-width: 780px; margin-inline: auto; }
.sales-hero .trust-line {
  margin-top: 1.2rem; font-size: .85rem; color: var(--cream-dim);
  display: flex; align-items: center; justify-content: center; gap: .5rem; flex-wrap: wrap;
}
.sales-hero .trust-line span { display: inline-flex; align-items: center; gap: .35rem; }

/* Problem section */
.problem-list { display: flex; flex-direction: column; gap: 1.1rem; margin-top: 2rem; }
.problem-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.1rem 1.3rem; border-radius: 14px;
  background: var(--paper); border: 1px solid var(--line-light);
}
.problem-item .x {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  background: rgba(220,50,30,.12); color: #dc321e;
  display: grid; place-items: center; font-family: var(--mono); font-size: .8rem; font-weight: 700;
}

/* Two column story */
.story-grid {
  display: grid; grid-template-columns: 1fr; gap: 2.6rem; align-items: center;
}
@media (min-width: 900px) { .story-grid { grid-template-columns: .85fr 1.15fr; gap: 3.5rem; } }

/* Offer section */
.offer-box {
  max-width: 560px; margin-inline: auto;
  background: var(--bg-2);
  border: 1.5px solid rgba(255,90,60,.35);
  border-radius: 22px;
  padding: clamp(1.8rem, 4vw, 2.8rem);
  text-align: center;
}
.offer-price { margin-block: 1.4rem; }
.offer-price .old {
  font-family: var(--mono); font-size: 1.2rem; color: var(--cream-dim);
  text-decoration: line-through; margin-right: .7rem;
}
.offer-price .now {
  font-family: var(--mono); font-weight: 700; font-size: clamp(2.4rem, 7vw, 3.4rem); color: var(--accent);
}
.offer-price .cur { font-size: 1.2rem; vertical-align: top; }
.offer-note { font-size: .85rem; color: var(--cream-dim); margin-top: .6rem; }
.offer-list { text-align: left; display: flex; flex-direction: column; gap: .7rem; margin: 1.6rem 0; }
.offer-list li { display: flex; gap: .7rem; align-items: flex-start; font-size: .95rem; color: var(--cream-mute); }
.offer-list li .check { flex-shrink: 0; color: var(--accent); font-weight: 800; }

/* =============================================================
   7. Effects
   ============================================================= */
.marquee { overflow: hidden; position: relative; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.marquee::before, .marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 60px; z-index: 2; pointer-events: none;
}
.marquee::before { left: 0;  background: linear-gradient(90deg, var(--bg), transparent); }
.marquee::after  { right: 0; background: linear-gradient(270deg, var(--bg), transparent); }
.marquee-track {
  display: flex; gap: 3rem; white-space: nowrap; padding-block: 1rem;
  animation: marqueeScroll 26s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: var(--mono); font-size: .85rem; letter-spacing: .08em;
  color: var(--cream-dim); text-transform: uppercase;
}
.marquee-track span em { color: var(--accent); }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation-duration: 46s; } }

.has-tilt {
  --rx: 0deg; --ry: 0deg;
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
}

/* =============================================================
   8. Responsive helpers
   ============================================================= */
@media (min-width: 540px)  { .container { max-width: 640px; } }
@media (min-width: 720px)  { .container { max-width: 860px; } }
@media (min-width: 960px)  { .container { max-width: 1040px; } }
@media (min-width: 1280px) { .container { max-width: var(--container); } }

/* =============================================================
   9. Reduced-motion — only intrusive effects gated
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { transition-duration: .3s; }
}

/* Proximamente page */
.soon {
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 2rem;
  background: var(--bg);
  position: relative; overflow: clip;
}
.soon::before {
  content: ""; position: absolute; inset: -20%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(255,90,60,.14), transparent 70%);
  filter: blur(70px); pointer-events: none;
}
.soon-inner { position: relative; max-width: 560px; }
.soon-badge {
  display: inline-block; font-family: var(--mono); font-size: .74rem; letter-spacing: .12em;
  color: var(--accent); border: 1px solid rgba(255,90,60,.4); border-radius: 100px;
  padding: .5rem 1rem; margin-bottom: 1.6rem; text-transform: uppercase;
}
.soon-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2rem; }
