/* ============================================================
   GYM DORIS — Landing
   Sistema visual: naranja energía (#E06313), gris plata (#C6C7C9),
   negro/grafito. Tipo deportiva condensada (Oswald) + Archivo + mono.
   Lenguaje: diagonales, hexágonos sutiles, textura industrial.
   ============================================================ */

:root {
  /* Marca */
  --orange: #E06313;
  --orange-deep: #b94d0c;
  --orange-soft: #f0954f;
  --silver: #C6C7C9;
  --silver-2: #e4e5e6;
  --black: #000000;

  /* Neutros tonales (frío-neutro) */
  --ink: #16171a;
  --ink-2: #3a3c42;
  --muted: #6c6f76;
  --line: #e3e4e6;
  --paper: #ffffff;
  --paper-2: #f4f5f6;
  --graphite: #131418;
  --graphite-2: #1c1e24;
  --graphite-line: #2c2f37;

  /* Tweakables (los sobreescribe el panel) */
  --accent: var(--orange);
  --accent-deep: var(--orange-deep);
  --skew: 56px;            /* altura del corte diagonal */
  --hero-overlay: 0.62;

  /* Tipo */
  --font-display: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Archivo', system-ui, sans-serif;
  --font-mono: 'Space Mono', ui-monospace, monospace;

  /* Layout */
  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --nav-h: 76px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.section { position: relative; padding-block: clamp(64px, 9vw, 124px); }

/* Etiqueta de sección (kicker) */
.kicker {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.kicker::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--accent);
  display: inline-block;
}

.h-sec {
  font-size: clamp(34px, 5.4vw, 66px);
}
.lead {
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--muted);
  max-width: 56ch;
  margin-top: 18px;
}

/* ---------- Botones ---------- */
.btn {
  --bg: var(--accent);
  --fg: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 16px;
  padding: 15px 26px;
  background: var(--bg);
  color: var(--fg);
  border: 2px solid var(--bg);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
  transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 26px -12px rgba(224,99,19,.7); }
.btn:active { transform: translateY(0); }
.btn .arrow { transition: transform .18s ease; }
.btn:hover .arrow { transform: translateX(4px); }

.btn--ghost {
  --bg: transparent;
  --fg: var(--ink);
  border-color: currentColor;
}
.btn--ghost:hover { background: var(--ink); color: #fff; box-shadow: none; }

.btn--onDark { --fg:#fff; }
.btn--ghost.btn--onDark { --fg:#fff; }
.btn--ghost.btn--onDark:hover { background:#fff; color: var(--ink); }

.btn--lg { font-size: 18px; padding: 18px 34px; }
.btn--block { width: 100%; justify-content: center; }

/* ---------- Hexágono utilitario ---------- */
.hex {
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0 50%);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 60;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: background .25s ease, border-color .25s ease;
}
.nav__inner {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
  display: flex; align-items: center; gap: 22px;
}
.nav__links {
  display: flex; align-items: center; gap: 4px;
  margin-left: auto;
  list-style: none; padding: 0; margin-block: 0;
}
.nav__links a {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.03em;
  padding: 9px 13px;
  color: var(--ink-2);
  position: relative;
  transition: color .15s ease;
}
.nav__links a::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 4px;
  height: 2px; background: var(--accent); transform: scaleX(0);
  transform-origin: left; transition: transform .2s ease;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after, .nav__links a.is-active::after { transform: scaleX(1); }
.nav__links a.is-active { color: var(--ink); }

.nav__sep { width: 1px; height: 26px; background: var(--line); }

.nav__cta { white-space: nowrap; }

.nav__burger {
  display: none;
  margin-left: auto;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  background: #fff;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
}
.nav__burger span { width: 22px; height: 2px; background: var(--ink); transition: .25s; }
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Logo placeholder ---------- */
.logo {
  display: inline-flex; align-items: center; gap: 2px;
  font-family: var(--font-display);
  font-weight: 700; text-transform: uppercase;
  font-size: 26px; line-height: 1;
  letter-spacing: -0.02em;
  font-style: italic;
  transform: skewX(-6deg);
}
.logo b { color: var(--ink); font-weight: 700; }
.logo .o { color: var(--accent); }
.logo__hex {
  width: 30px; height: 34px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent);
  color: #fff; font-size: 17px; font-weight: 700;
  margin-inline: 3px;
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0 50%);
}
.nav .logo { font-size: 25px; }

/* Logo real (SVG subido) */
.logo-img { display: block; height: 52px; width: auto; }
.nav .logo-img { height: 50px; }
.footer .logo-img { height: 84px; margin-bottom: 18px; }
@media (max-width: 940px) { .nav .logo-img { height: 44px; } }

/* Mobile nav panel */
@media (max-width: 940px) {
  .nav__links, .nav__sep { display: none; }
  .nav__cta--desktop { display: none; }
  .nav__burger { display: inline-flex; }
  .nav__panel {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    height: auto;
    min-height: calc(100dvh - var(--nav-h));
    max-height: calc(100dvh - var(--nav-h));
    background: var(--graphite);
    transform: translateX(100%);
    transition: transform .3s cubic-bezier(.4,0,.2,1);
    z-index: 58;
    padding: 28px var(--gutter) 40px;
    display: flex; flex-direction: column; gap: 2px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav.is-open .nav__panel { transform: translateX(0); }
  .nav__panel a {
    font-family: var(--font-display); text-transform: uppercase;
    font-size: 26px; font-weight: 600; padding: 16px 0;
    border-bottom: 1px solid var(--graphite-line); letter-spacing: -0.01em;
    color: #fff;
  }
  .nav__panel a:active { color: var(--accent); }
  .nav__panel .btn { margin-top: 24px; color: #fff; }
}
@media (min-width: 941px) {
  .nav__panel { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: clamp(640px, 94vh, 960px);
  display: flex; align-items: center;
  background: var(--paper);
  color: var(--ink);
  overflow: hidden;
  isolation: isolate;
}
/* cursor-mancuerna: oculta el cursor por defecto en escritorio cuando JS lo activa */
html.cursor-on, html.cursor-on * { cursor: none !important; }

/* ---- Resplandores radiales en bucle ---- */
.hero__glow { position: absolute; z-index: 0; pointer-events: none; border-radius: 50%; }
.hero__glow--orange {
  width: 78vmax; height: 78vmax; top: -30vmax; right: -16vmax;
  background: radial-gradient(closest-side, rgba(224,99,19,.34), rgba(224,99,19,.12) 42%, transparent 70%);
  animation: glowOrange 19s ease-in-out infinite alternate;
}
.hero__glow--graphite {
  width: 64vmax; height: 64vmax; bottom: -30vmax; left: -20vmax;
  background: radial-gradient(closest-side, rgba(22,24,27,.18), rgba(22,24,27,.06) 50%, transparent 72%);
  animation: glowGraphite 24s ease-in-out infinite alternate;
}
@keyframes glowOrange { 0%{transform:translate(0,0)} 50%{transform:translate(-9vmax,7vmax)} 100%{transform:translate(5vmax,-5vmax)} }
@keyframes glowGraphite { 0%{transform:translate(0,0)} 50%{transform:translate(8vmax,-6vmax)} 100%{transform:translate(-6vmax,4vmax)} }

/* ---- Hexágonos en contorno flotando ---- */
.hero__hex { position: absolute; z-index: 0; pointer-events: none; }
.hero__hex svg { width: 100%; height: 100%; display: block; }
.hero__hex polygon { fill: none; stroke: currentColor; stroke-width: 2.4; }
.hero__hex--1 { width: clamp(180px, 26vw, 340px); aspect-ratio: 100/112; top: 9%; right: 7%; color: rgba(224,99,19,.40); animation: floatA 13s ease-in-out infinite; }
.hero__hex--2 { width: clamp(120px, 18vw, 230px); aspect-ratio: 100/112; bottom: 10%; left: 5%; color: rgba(22,24,27,.13); animation: floatB 17s ease-in-out infinite; }
.hero__hex--1 svg { animation: spin 40s linear infinite; }
.hero__hex--2 svg { animation: spinRev 52s linear infinite; }
@keyframes floatA { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-26px)} }
@keyframes floatB { 0%,100%{transform:translateY(0)} 50%{transform:translateY(22px)} }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spinRev { to { transform: rotate(-360deg); } }

.hero__inner { position: relative; z-index: 2; width: 100%; }

.hero__tag {
  font-family: var(--font-mono);
  font-size: 13px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--muted);
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 26px;
}
.hero__tag .dot { width: 9px; height: 9px; background: var(--accent); border-radius: 50%; animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 0%,100%{ box-shadow: 0 0 0 0 rgba(224,99,19,.5);} 50%{ box-shadow: 0 0 0 7px rgba(224,99,19,0);} }

/* ---- Titular con mask reveal por línea ---- */
.hero__title { margin: 0; }
.hero__line { display: block; overflow: hidden; padding: .12em .06em; margin: -.12em -.06em; }
.hero__line-in {
  display: block;
  font-family: var(--font-display);
  font-style: italic; font-weight: 700; text-transform: uppercase;
  font-size: clamp(44px, 8.4vw, 116px);
  line-height: 0.92; letter-spacing: -0.02em;
  transform: translateY(115%);
}
.hero__line-in.accent { color: var(--accent); }
@media (prefers-reduced-motion: no-preference) {
  .hero__line-in { animation: lineUp 1s cubic-bezier(.16,1,.3,1) both; }
  .hero__line:nth-child(1) .hero__line-in { animation-delay: .12s; }
  .hero__line:nth-child(2) .hero__line-in { animation-delay: .30s; }
}
@media (prefers-reduced-motion: reduce) { .hero__line-in { transform: none; } }
@keyframes lineUp { from { transform: translateY(115%); } to { transform: translateY(0); } }

/* ---- Fila de datos con contadores ---- */
.hero__stats { display: flex; flex-wrap: wrap; align-items: stretch; margin-top: 38px; }
.stat { display: flex; flex-direction: column; justify-content: center; }
.stat .count {
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  font-size: clamp(30px, 4.6vw, 54px); line-height: .88; letter-spacing: -0.025em;
  color: var(--ink); font-variant-numeric: tabular-nums;
}
.stat .count .u { color: var(--accent); font-size: .56em; margin-left: 3px; letter-spacing: 0; }
.stat .stat-l { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .17em; text-transform: uppercase; color: var(--muted); margin-top: 9px; }
.stat + .stat { margin-left: clamp(18px, 4vw, 52px); padding-left: clamp(18px, 4vw, 52px); border-left: 1px solid var(--line); }

.hero__cta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 40px; }

.hero__scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 2; font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero__scroll:hover { color: var(--accent); }
.hero__scroll .line { width: 2px; height: 38px; background: var(--accent); transform-origin: top; animation: scrolldrop 1.8s ease-in-out infinite; }
@keyframes scrolldrop { 0%{ transform: scaleY(0); opacity: 0; } 30%{ opacity: 1; } 100%{ transform: scaleY(1); opacity: 0; } }

/* ---- Cursor mancuerna (global) ---- */
.site-cursor {
  position: fixed; top: 0; left: 0; z-index: 9999;
  width: 44px; height: 44px; pointer-events: none;
  color: var(--accent); opacity: 0;
  transition: opacity .25s ease, width .18s ease, height .18s ease;
  will-change: transform;
}
.site-cursor.show { opacity: 1; }
.site-cursor.big { width: 62px; height: 62px; }
.site-cursor svg { width: 100%; height: 100%; display: block; filter: drop-shadow(0 5px 12px rgba(224,99,19,.45)); }

@media (prefers-reduced-motion: reduce) {
  .hero__glow, .hero__hex, .hero__hex svg, .hero__scroll .line, .hero__tag .dot { animation: none !important; }
}
@media (max-width: 600px) {
  .hero__stats { flex-direction: column; align-items: flex-start; gap: 18px; margin-top: 30px; }
  .stat { align-items: flex-start; text-align: left; }
  .stat + .stat { margin-left: 0; padding-left: 0; border-left: 0; }
  .hero__hex--1 { top: 4%; right: -6%; }
  .hero__cta { margin-bottom: 64px; }
  .hero__scroll { display: none; }
}

/* ============================================================
   PLACEHOLDERS DE IMAGEN
   ============================================================ */
.ph {
  position: relative;
  background-color: #2a2c31;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,.045) 0 14px, transparent 14px 28px);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.62);
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em;
  text-transform: uppercase; text-align: center;
  overflow: hidden;
}
.ph::after {
  content: attr(data-label);
  padding: 8px 12px;
  border: 1px dashed rgba(255,255,255,.28);
}
.ph--light {
  background-color: var(--silver-2);
  background-image: repeating-linear-gradient(45deg, rgba(0,0,0,.04) 0 14px, transparent 14px 28px);
  color: var(--muted);
}
.ph--light::after { border-color: rgba(0,0,0,.2); }

/* ============================================================
   DIAGONAL DIVIDERS / SECTION SKINS
   ============================================================ */
.skin-dark {
  background: var(--graphite);
  color: #fff;
}
.skin-dark .lead { color: var(--silver); }
.skin-paper2 { background: var(--paper-2); }

.cut-top { clip-path: polygon(0 var(--skew), 100% 0, 100% 100%, 0 100%); margin-top: calc(var(--skew) * -1); padding-top: calc(var(--skew) + clamp(64px,9vw,124px)); }
.cut-bottom { clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--skew)), 0 100%); padding-bottom: calc(var(--skew) + clamp(64px,9vw,124px)); }
.cut-both {
  clip-path: polygon(0 var(--skew), 100% 0, 100% calc(100% - var(--skew)), 0 100%);
  margin-top: calc(var(--skew) * -1);
  padding-top: calc(var(--skew) + clamp(64px,9vw,124px));
  padding-bottom: calc(var(--skew) + clamp(64px,9vw,124px));
}

/* ============================================================
   POR QUÉ (features)
   ============================================================ */
.feat-grid {
  display: grid; gap: 1px;
  grid-template-columns: repeat(4, 1fr);
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 52px;
}
.feat {
  background: var(--paper);
  padding: 30px 26px;
  display: flex; flex-direction: column; gap: 12px;
  transition: background .2s ease;
}
.feat:hover { background: var(--paper-2); }
.feat__ic {
  width: 46px; height: 52px; flex: none;
  display: flex; align-items: center; justify-content: center;
  background: var(--ink); color: var(--accent);
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0 50%);
}
.feat__ic svg { width: 24px; height: 24px; }
.feat__n {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(30px, 3.4vw, 40px); line-height: 1; letter-spacing: -0.02em;
}
.feat__n .accent { color: var(--accent); }
.feat__t { font-family: var(--font-display); text-transform: uppercase; font-size: 16px; font-weight: 600; letter-spacing: 0.02em; }
.feat__d { font-size: 14.5px; color: var(--muted); line-height: 1.5; }
@media (max-width: 900px) { .feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .feat-grid { grid-template-columns: 1fr; } }

/* ============================================================
   DOS MUNDOS
   ============================================================ */
.worlds { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
@media (max-width: 880px) { .worlds { grid-template-columns: 1fr; } }
.world {
  position: relative; min-height: 560px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(34px, 4vw, 56px);
  overflow: hidden;
  color: #fff;
}
.world__bg { position: absolute; inset: 0; z-index: 0; }
.world__bg::after { content:""; position:absolute; inset:0; }
.world--fit .world__bg::after { background: linear-gradient(0deg, rgba(15,16,20,.92), rgba(15,16,20,.25) 60%, rgba(224,99,19,.18)); }
.world--old .world__bg::after { background: linear-gradient(0deg, rgba(8,8,9,.95), rgba(8,8,9,.55) 55%, rgba(8,8,9,.3)); }
.world__inner { position: relative; z-index: 2; }
.world__label {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.24em;
  text-transform: uppercase; margin-bottom: 14px; color: var(--silver);
}
.world--fit .world__label { color: var(--orange-soft); }
.world h3 { font-size: clamp(32px, 4.2vw, 52px); }
.world p { color: var(--silver); margin-top: 14px; max-width: 42ch; }
.world__list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 9px; }
.world__list li {
  font-family: var(--font-display); text-transform: uppercase; font-weight: 500;
  font-size: 15px; letter-spacing: 0.02em;
  display: flex; align-items: center; gap: 11px; color: #e9eaec;
}
.world__list li::before {
  content: ""; width: 12px; height: 14px; flex: none; background: var(--accent);
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0 50%);
}
.world--old {
  background-color: var(--graphite);
  background-image:
    repeating-linear-gradient(90deg, rgba(255,255,255,.025) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.02) 0 1px, transparent 1px 6px);
}
.world__tag {
  position: absolute; top: clamp(24px,3vw,40px); right: clamp(24px,3vw,40px); z-index:2;
  font-family: var(--font-display); text-transform: uppercase; font-weight: 700;
  font-size: 13px; letter-spacing: 0.1em; padding: 7px 13px;
  background: var(--accent); color: #fff;
}
.world--old .world__tag { background: #fff; color: var(--ink); }

/* ============================================================
   ACTIVIDADES
   ============================================================ */
.act-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 24px; }
.chip-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 12px; margin-top: 48px;
}
.chip {
  position: relative;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 20px 18px;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  font-family: var(--font-display); text-transform: uppercase; font-weight: 600;
  font-size: 17px; letter-spacing: 0.01em;
  transition: transform .16s ease, border-color .16s ease, color .16s ease;
  overflow: hidden;
}
.chip::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--accent); transform: scaleY(0); transform-origin: top; transition: transform .2s ease;
}
.chip__i { font-family: var(--font-mono); font-size: 12px; color: var(--silver); font-weight: 400; }
.chip:hover { transform: translateY(-3px); border-color: var(--ink); }
.chip:hover::before { transform: scaleY(1); }
.chip:hover .chip__i { color: var(--accent); }

.act-foot { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 28px; margin-top: 44px; }
.act-studios { font-family: var(--font-mono); font-size: 13px; color: var(--muted); letter-spacing: 0.06em; }
.act-studios b { color: var(--ink); }

/* ============================================================
   CUOTAS
   ============================================================ */
.plans { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 52px; align-items: stretch; }
@media (max-width: 820px) { .plans { grid-template-columns: 1fr; } }
.plan {
  position: relative; background: var(--paper);
  border: 1px solid var(--line);
  padding: 38px 34px 34px;
  display: flex; flex-direction: column;
}
.plan--pro {
  border: 2px solid var(--accent);
  box-shadow: 0 30px 60px -34px rgba(224,99,19,.5);
}
.plan__ribbon {
  position: absolute; top: 0; right: 28px; transform: translateY(-50%);
  background: var(--accent); color: #fff;
  font-family: var(--font-display); text-transform: uppercase; font-weight: 700;
  font-size: 13px; letter-spacing: 0.1em; padding: 7px 16px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.plan__name { font-family: var(--font-display); text-transform: uppercase; font-size: 15px; letter-spacing: 0.16em; color: var(--muted); }
.plan__price { display: flex; align-items: flex-end; gap: 6px; margin-top: 14px; }
.plan__price .amount { font-family: var(--font-display); font-weight: 700; font-size: clamp(52px, 7vw, 74px); line-height: 0.85; letter-spacing: -0.03em; }
.plan__price .per { font-family: var(--font-body); font-size: 16px; color: var(--muted); margin-bottom: 10px; }
.plan__sub { font-size: 14px; color: var(--muted); margin-top: 10px; min-height: 2.4em; }
.plan__line { height: 1px; background: var(--line); margin: 24px 0; }
.plan__list { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 13px; flex: 1; }
.plan__list li { display: flex; gap: 12px; font-size: 15.5px; color: var(--ink-2); line-height: 1.45; }
.plan__list li svg { width: 18px; height: 18px; flex: none; margin-top: 3px; color: var(--accent); }
.plan__list li.dim { color: var(--silver); }
.plan__list li.dim svg { color: var(--silver); }
.plan--pro .plan__name { color: var(--accent); }

.plans-note {
  margin-top: 26px; display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-display); text-transform: uppercase; font-weight: 600;
  font-size: 16px; letter-spacing: 0.02em;
  background: var(--ink); color: #fff; padding: 14px 22px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
}
.plans-note .gift { color: var(--accent); }

/* ============================================================
   FITDRINKS
   ============================================================ */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px, 4vw, 64px); align-items: center; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }
.split--rev .split__media { order: -1; }
.split__media { position: relative; aspect-ratio: 4/3.4; }
.drink-badge {
  position: absolute; bottom: 22px; left: 22px;
  background: var(--accent); color: #fff; z-index: 3;
  font-family: var(--font-display); text-transform: uppercase; font-weight: 700;
  font-size: 14px; letter-spacing: 0.04em; padding: 12px 16px; line-height: 1.1;
}
.tick-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 14px; }
.tick-list li { display: flex; gap: 13px; align-items: flex-start; font-size: 16px; }
.tick-list li svg { width: 22px; height: 22px; flex: none; color: var(--accent); margin-top: 1px; }

/* Tags Fitdrinks */
.fd-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.fd-tag {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 7px 14px; border: 1px solid var(--accent); color: var(--accent);
  background: rgba(224,99,19,.1);
}

/* ============================================================
   APP
   ============================================================ */
.app-sec { overflow: hidden; }
.phone {
  position: relative; width: clamp(240px, 30vw, 320px); aspect-ratio: 320/660;
  margin-inline: auto;
  background: #0c0d10; border-radius: 42px; padding: 12px;
  box-shadow: 0 50px 90px -40px rgba(0,0,0,.7), inset 0 0 0 2px #2a2c31;
}
.phone__screen { position: relative; width: 100%; height: 100%; border-radius: 32px; overflow: hidden; background: #15161a; }
.phone__notch { position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 110px; height: 26px; background: #0c0d10; border-radius: 0 0 16px 16px; z-index: 4; }
.store-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.store-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--ink); color: #fff; padding: 12px 20px;
  border: 1px solid var(--ink); transition: transform .16s ease, background .16s ease;
}
.store-btn:hover { transform: translateY(-2px); background: #000; }
.store-btn svg { width: 26px; height: 26px; }
.store-btn .s { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; opacity: .7; display: block; }
.store-btn .l { font-family: var(--font-display); font-weight: 600; font-size: 18px; text-transform: uppercase; line-height: 1; }

.app-feats { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 16px; }
.app-feats li { display: flex; gap: 14px; align-items: flex-start; }
.app-feats .n { font-family: var(--font-mono); color: var(--accent); font-size: 13px; padding-top: 3px; }
.app-feats h4 { font-size: 19px; text-transform: uppercase; }
.app-feats p { color: var(--silver); font-size: 14.5px; margin-top: 3px; }

/* ============================================================
   GALERÍA
   ============================================================ */
.tabs { display: inline-flex; gap: 6px; border: 1px solid var(--line); padding: 5px; background: var(--paper); }
.tab {
  font-family: var(--font-display); text-transform: uppercase; font-weight: 600;
  font-size: 15px; letter-spacing: 0.04em; padding: 11px 24px;
  border: none; background: transparent; color: var(--muted); transition: .18s;
}
.tab.is-active { background: var(--ink); color: #fff; }

/* ---- Carrusel galería ---- */
.gal-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 20px 24px; }
.gal-head .tabs { margin-top: 6px; }

.carousel { position: relative; margin-top: 40px; }
.car-viewport { overflow: hidden; }
.car-track {
  display: flex;
  gap: 18px;
  padding-inline: var(--gutter);
  transition: transform .6s cubic-bezier(.16,1,.3,1);
  will-change: transform;
}
.car-track.no-anim { transition: none; }
.car-slide { flex: 0 0 min(76%, 880px); margin: 0; }
.car-slide .ph { width: 100%; aspect-ratio: 16 / 9; height: auto; }
.car-slide img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
@media (max-width: 720px) {
  .car-slide { flex-basis: 86%; }
  .car-slide .ph, .car-slide img { aspect-ratio: 4/3; }
}

.car-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: var(--paper); color: var(--ink);
  border: 1px solid var(--line);
  transition: background .18s ease, color .18s ease, opacity .18s ease;
  box-shadow: 0 14px 30px -18px rgba(0,0,0,.5);
}
.car-arrow:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.car-arrow svg { width: 22px; height: 22px; }
.car-arrow--prev { left: clamp(8px, 2vw, 28px); }
.car-arrow--next { right: clamp(8px, 2vw, 28px); }
.car-arrow[disabled] { opacity: .35; pointer-events: none; }

.car-foot { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 26px; }
.car-dots { display: flex; gap: 9px; }
.car-dots button { width: 30px; height: 4px; padding: 0; border: none; background: var(--line); transition: background .2s ease, width .2s ease; }
.car-dots button.is-active { background: var(--accent); width: 46px; }
.car-meta { font-family: var(--font-display); font-weight: 600; font-size: 18px; letter-spacing: 0.04em; color: var(--muted); }
.car-meta #carIndex { color: var(--ink); }
.car-meta-sep { color: var(--accent); margin: 0 2px; }

/* ============================================================
   CONTACTO
   ============================================================ */
.contact { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px,4vw,56px); align-items: stretch; }
@media (max-width: 880px) { .contact { grid-template-columns: 1fr; } }
.info-list { list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 22px; }
.info-list li { display: flex; gap: 16px; align-items: flex-start; }
.info-list .ic { width: 42px; height: 48px; flex: none; display: flex; align-items: center; justify-content: center; background: var(--paper-2); color: var(--accent); clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0 50%); }
.info-list .ic svg { width: 20px; height: 20px; }
.info-list .lab { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.info-list .val { font-size: 17px; font-weight: 500; margin-top: 2px; }
.info-list .val a:hover { color: var(--accent); }
.hours-table { margin-top: 4px; width: 100%; border-collapse: collapse; }
.hours-table td { padding: 7px 0; font-size: 15px; border-bottom: 1px solid var(--line); }
.hours-table td:last-child { text-align: right; font-family: var(--font-display); font-weight: 600; letter-spacing: 0.02em; }
.map { position: relative; min-height: 360px; height: 100%; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.map__embed { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.map .btn { position: absolute; bottom: 20px; left: 20px; z-index: 3; }

/* ============================================================
   CTA FINAL + FOOTER
   ============================================================ */
.finalcta { position: relative; text-align: center; color: #fff; overflow: hidden; }
.finalcta__bg { position: absolute; inset: 0; }
.finalcta__bg::after { content:""; position:absolute; inset:0; background: linear-gradient(120deg, rgba(224,99,19,.92), rgba(185,77,12,.86)); }
.finalcta__bg::before {
  content:""; position:absolute; inset:0; z-index:1;
  background-image: repeating-linear-gradient(60deg, rgba(0,0,0,.07) 0 2px, transparent 2px 22px);
}
.finalcta .wrap { position: relative; z-index: 2; }
.finalcta h2 { font-size: clamp(40px, 7vw, 92px); line-height: .92; }
.finalcta .lead { color: rgba(255,255,255,.9); margin-inline: auto; }
.finalcta .btn { background: #fff; color: var(--ink); border-color: #fff; }
.finalcta .btn:hover { background: var(--ink); color: #fff; }

.footer { background: var(--graphite); color: var(--silver); padding-block: 64px 30px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 820px) { .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .footer__top { grid-template-columns: 1fr; } }
.footer h5 { font-family: var(--font-display); text-transform: uppercase; font-size: 14px; letter-spacing: 0.14em; color: #fff; margin: 0 0 16px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer a { font-size: 14.5px; color: var(--silver); transition: color .15s; }
.footer a:hover { color: var(--accent); }
.footer .logo { color: #fff; margin-bottom: 16px; }
.footer .logo b { color: #fff; }
.footer__desc { font-size: 14px; color: #8a8d94; max-width: 30ch; line-height: 1.6; }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--graphite-line); transition: .18s; }
.socials a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.socials svg { width: 18px; height: 18px; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--graphite-line); font-size: 13px; color: #777a81; }
.footer__bottom a:hover { color: var(--accent); }

/* ============================================================
   ANIMACIONES SCROLL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Tweaks mount */
#tweaks-root { position: fixed; z-index: 100; }
