/* ============================================
   Cris Vega · Mentalidad Invicta
   Editorial deportivo premium
============================================ */

:root {
  --c-red: #EA3433;
  --c-red-bright: #FF4D4C;
  --c-red-deep: #B82524;
  --c-black: #070503;
  --c-bg: #0d0908;
  --c-surface: #141210;
  --c-surface-2: #1b1714;
  --c-border: #28231d;
  --c-border-soft: #1d1915;
  --c-text: #FFFFFF;
  --c-text-dim: #AAAAAA;
  --c-text-dimmer: #6a6a6a;

  --ff-display: "Orbitron", "Eurostile Extended", "Arial Black", sans-serif;
  --ff-body: "Inter", -apple-system, system-ui, sans-serif;
  --ff-accent: "Exo 2", "Inter", sans-serif;
  --ff-mono: "JetBrains Mono", "Space Mono", ui-monospace, monospace;

  --sec-y: clamp(40px, 4vw, 72px);
  --sec-pad: clamp(40px, 4vw, 72px);
  --container-pad: clamp(20px, 4vw, 60px);

  --r-sm: 2px;
  --r-md: 3px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

[data-density="compact"] {
  --sec-y: clamp(24px, 2.5vw, 48px);
  --sec-pad: clamp(24px, 2.5vw, 48px);
}
[data-density="airy"] {
  --sec-y: clamp(120px, 14vw, 200px);
  --sec-pad: clamp(120px, 14vw, 200px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: hidden; }
html { scroll-behavior: smooth; }

body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--c-red); color: #fff; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

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

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* ============================================
   BUTTONS
============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--ff-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 14px 22px;
  font-size: 12px;
  transition: all 0.2s var(--ease-out);
  border: 1px solid transparent;
  white-space: nowrap;
  cursor: pointer;
}
.btn-sm { padding: 10px 16px; font-size: 11px; letter-spacing: 0.1em; }
.btn-lg { padding: 18px 30px; font-size: 13px; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--c-red);
  color: #fff;
  border-color: var(--c-red);
}
.btn-primary:hover {
  background: var(--c-red-bright);
  border-color: var(--c-red-bright);
  transform: translateY(-1px);
  box-shadow: 0 10px 30px -10px rgba(234, 52, 51, 0.6);
}

.btn-ghost {
  background: transparent;
  color: var(--c-text);
  border-color: rgba(255, 255, 255, 0.25);
}
.btn-ghost:hover {
  border-color: var(--c-text);
  background: rgba(255, 255, 255, 0.04);
}

.btn[disabled] { pointer-events: none; }

/* ============================================
   PLACEHOLDERS
============================================ */
.placeholder-tile {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
.placeholder-stripes {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0 18px,
    rgba(255,255,255,0.04) 18px 19px
  );
  pointer-events: none;
}
.placeholder-grain {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.06) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.04) 0 1px, transparent 1px);
  background-size: 3px 3px, 5px 5px;
  opacity: 0.6;
  pointer-events: none;
  mix-blend-mode: overlay;
}
.placeholder-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  padding: 4px 8px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.12);
}

/* ============================================
   SECTION HEADERS
============================================ */
.sec-head {
  margin-bottom: clamp(20px, 2.5vw, 40px);
  max-width: 760px;
}
.sec-head-center { text-align: center; margin-left: auto; margin-right: auto; }

.sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-red);
  margin-bottom: 20px;
}
.sec-tag-dot {
  width: 8px; height: 8px;
  background: var(--c-red);
  display: inline-block;
}
.sec-title {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(30px, 4.8vw, 68px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  margin: 0 0 40px;
  text-wrap: balance;
  text-transform: uppercase;
}
.sec-sub {
  font-family: var(--ff-accent);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.5;
  color: var(--c-text-dim);
  margin: 0;
  text-wrap: pretty;
  max-width: 600px;
}
.sec-head-center .sec-sub { margin-left: auto; margin-right: auto; }

/* ============================================
   REVEAL
============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   AMBIENT SECTION GLOW (Oryzo-style warmth)
============================================ */
.problem { position: relative; overflow: hidden; }
.problem::before {
  content: "";
  position: absolute;
  left: -15%; top: 10%;
  width: 55vw; height: 55vw;
  background: radial-gradient(circle, rgba(234,52,51,0.055) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.services { position: relative; overflow: hidden; }
.services::after {
  content: "";
  position: absolute;
  right: -10%; bottom: 0%;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(234,52,51,0.05) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.reels-section { position: relative; }
.reels-section::before {
  content: "";
  position: absolute;
  right: 0; top: -5%;
  width: 50vw; height: 80%;
  background: radial-gradient(ellipse at right center, rgba(234,52,51,0.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.faq { position: relative; overflow: hidden; }
.faq::before {
  content: "";
  position: absolute;
  left: 50%; top: 30%;
  transform: translateX(-50%);
  width: 70vw; height: 70vw;
  background: radial-gradient(circle, rgba(234,52,51,0.04) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* ============================================
   NAVBAR
============================================ */
.navbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 1440px;
  z-index: 100;
  transition: all 0.3s var(--ease-out);
  padding: 14px 0;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 4px;
  overflow: hidden;
}
.navbar::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.3s;
}
.navbar > * { position: relative; z-index: 1; }
.navbar.is-scrolled {
  background: rgba(8, 8, 8, 0.35);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-color: rgba(255, 255, 255, 0.07);
  padding: 10px 0;
}
.navbar.is-scrolled::after {
  opacity: 0.045;
}
.nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img {
  width: 40px; height: 40px;
  object-fit: contain;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 3px;
}
.nav-logo-name {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
}
.nav-logo-tag {
  font-family: var(--ff-accent);
  font-style: italic;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--c-red);
}
.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-text-dim);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::before {
  content: "›";
  color: var(--c-red);
  margin-right: 4px;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  transform: translateX(-4px);
  display: inline-block;
}
.nav-links a:hover { color: var(--c-text); }
.nav-links a:hover::before { opacity: 1; transform: translateX(0); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
}
.lang-switch button {
  color: var(--c-text-dim);
  padding: 4px 2px;
  transition: color 0.2s;
}
.lang-switch button.is-active { color: var(--c-text); }
.lang-switch button:hover { color: var(--c-red); }
.lang-sep { color: var(--c-text-dimmer); }

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
}
.mobile-toggle span {
  width: 20px; height: 2px;
  background: var(--c-text);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 20px var(--container-pad) 24px;
  background: var(--c-black);
  border-bottom: 1px solid var(--c-border);
}
.mobile-menu a:not(.btn) {
  font-family: var(--ff-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 0;
  border-bottom: 1px solid var(--c-border-soft);
}

/* ============================================
   HERO · CINEMATIC (default)
============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 0 60px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-tile {
  width: 100%; height: 100%;
  aspect-ratio: unset !important;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(13,13,13,0.7) 0%, rgba(13,13,13,0.55) 50%, rgba(13,13,13,0.95) 100%),
    radial-gradient(ellipse at 30% 50%, rgba(234,52,51,0.15) 0%, transparent 60%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-text-dim);
  margin-bottom: 16px;
}
.eyebrow-line {
  width: 40px; height: 1px;
  background: var(--c-red);
}
.hero-title {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(26px, 4.4vw, 72px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  margin: 0 0 32px;
  text-transform: uppercase;
  max-width: 900px;
}
.hero-title-line {
  display: block;
}
.hero-title-accent {
  color: var(--c-red);
  font-style: italic;
  font-family: var(--ff-accent);
  font-weight: 800;
}
.hero-sub {
  font-family: var(--ff-accent);
  font-size: clamp(13px, 1.2vw, 17px);
  line-height: 1.45;
  color: var(--c-text-dim);
  max-width: 480px;
  margin: 0 0 24px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.hero-pillars {
  display: flex;
  gap: clamp(20px, 4vw, 80px);
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
  max-width: 640px;
}
.hero-pillar {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.pillar-num {
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--c-red);
  letter-spacing: 0.15em;
}
.pillar-label {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-meta-l, .hero-meta-r {
  position: absolute;
  z-index: 3;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--c-text-dim);
}
.hero-meta-l {
  left: 24px;
  bottom: 50%;
  transform: rotate(-90deg);
  transform-origin: left bottom;
}
.hero-meta-r {
  right: 32px;
  bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--c-red) 0%, transparent 100%);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.6); opacity: 0.5; }
}

/* HERO · MONUMENTAL */
.hero-monumental {
  background: radial-gradient(ellipse at 30% 60%, rgba(234,52,51,0.1) 0%, transparent 55%), var(--c-bg);
  padding: 100px 0 0;
  height: 100vh;
  min-height: 600px;
  max-height: 1000px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.hero-mono-grid {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
  flex: 1;
  min-height: 0;
}
.hero-mono-title {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(28px, 5.2vw, 80px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  text-transform: uppercase;
}
.hero-mono-title span { display: block; }
.hero-mono-photo {
  position: relative;
  height: calc(100% - 80px);
  max-height: calc(100vh - 220px);
  overflow: hidden;
  margin: 40px 0;
  border-radius: 16px;
  outline: 1px solid rgba(255,255,255,0.12);
}
.hero-mono-photo .placeholder-tile {
  height: 100%;
  aspect-ratio: unset !important;
}
.hero-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--c-surface);
  border-radius: 16px;
}
.hero-carousel-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  opacity: 0;
  transition: opacity 1.1s ease-in-out;
  pointer-events: none;
}
.hero-carousel-img.is-active { opacity: 1; }
.hero-mono-badge {
  position: absolute;
  bottom: 16px;
  left: -16px;
  background: var(--c-black);
  border: 1px solid var(--c-red);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.badge-num {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 32px;
  color: var(--c-red);
  line-height: 1;
}
.badge-lbl {
  font-family: var(--ff-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  line-height: 1.3;
  color: var(--c-text-dim);
}
.hero-mono-marquee {
  overflow: hidden;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  padding: 14px 0;
  background: var(--c-black);
  flex-shrink: 0;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(16px, 2.2vw, 32px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--c-text);
}
.marquee-track span:nth-child(even) { color: var(--c-red); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-33.33%); }
}
@keyframes btnBreathe {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(234, 52, 51, 0.0);
  }
  50% {
    transform: scale(1.025);
    box-shadow: 0 8px 28px -8px rgba(234, 52, 51, 0.55);
  }
}

/* HERO · SPLIT */
.hero-split {
  background: var(--c-bg);
  padding: 120px 0 0;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}
.hero-split-text {
  padding: 60px var(--container-pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-split-text .hero-title {
  font-size: clamp(34px, 4.8vw, 74px);
}
.hero-split-photo {
  position: relative;
}
.hero-split-photo .placeholder-tile {
  aspect-ratio: unset !important;
  height: 100%;
}
.hero-split-pillars {
  display: flex;
  gap: 48px;
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid var(--c-border);
}
.hero-split-pillars > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-split-pillars .pillar-num {
  font-size: 14px;
}
.hero-split-pillars span:last-child {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================
   STATS STRIP
============================================ */
.stats-strip {
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  padding: clamp(32px, 4vw, 56px) 0;
  background: var(--c-black);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-item {
  padding-left: 20px;
  border-left: 1px solid var(--c-border);
}
.stat-num {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  color: var(--c-red);
  margin-bottom: 8px;
}
.stat-lbl {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-text-dim);
}

/* ============================================
   PROBLEM / SOLUTION
============================================ */
.problem {
  padding: var(--sec-y) 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: stretch;
}
.problem-col {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  padding: 40px 36px;
}
.problem-col-good {
  border-color: var(--c-red);
  background: linear-gradient(180deg, rgba(234,52,51,0.08) 0%, var(--c-surface) 80%);
  position: relative;
}
.problem-col-good::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px;
  width: 40px; height: 4px;
  background: var(--c-red);
}
.col-head {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--c-border);
}
.col-head-icon {
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--c-border);
}
.col-head-icon-good {
  border-color: var(--c-red);
}
.problem-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.problem-col li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--c-text-dim);
}
.problem-col-good li { color: var(--c-text); }
.bullet-x {
  color: #666;
  font-family: var(--ff-mono);
  width: 14px;
  flex-shrink: 0;
}
.problem-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 8px;
}
.arrow-stem {
  width: 1px;
  flex: 1;
  background: linear-gradient(180deg, transparent, var(--c-red), transparent);
  min-height: 40px;
}

/* ============================================
   ABOUT
============================================ */
.about {
  padding: var(--sec-y) 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--c-black);
  position: relative;
  overflow: hidden;
}
.about::after {
  content: "";
  position: absolute;
  right: -5%; top: 20%;
  width: 55vw; height: 55vw;
  background: radial-gradient(circle, rgba(234,52,51,0.065) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.about-photo {
  position: relative;
  position: sticky;
  top: 100px;
}
.about-photo-badge {
  position: absolute;
  right: -24px;
  bottom: -24px;
  background: var(--c-red);
  color: #fff;
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.badge-kicker {
  font-family: var(--ff-accent);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
  opacity: 0.8;
}
.badge-main {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 28px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.about-text p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--c-text-dim);
  margin: 0 0 12px;
  text-wrap: pretty;
}
.about-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}
.area-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--c-border);
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text);
  transition: all 0.2s;
}
.area-chip:hover {
  border-color: var(--c-red);
  color: var(--c-red);
}
.chip-num {
  color: var(--c-red);
  font-size: 9px;
}

/* ============================================
   SERVICES
============================================ */
.services {
  padding: var(--sec-y) 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tabs-row {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  margin-bottom: 28px;
  overflow-x: auto;
  scrollbar-width: none;
}
.tabs-row::-webkit-scrollbar { display: none; }
.tab {
  flex: 1;
  min-width: 160px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-dim);
  border-right: 1px solid var(--c-border);
  transition: all 0.2s;
  position: relative;
  background: transparent;
}
.tab:last-child { border-right: none; }
.tab:hover { color: var(--c-text); background: var(--c-surface); }
.tab.is-active {
  color: var(--c-text);
  background: var(--c-surface);
}
.tab.is-active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--c-red);
}
.tab-num {
  font-family: var(--ff-mono);
  font-size: 10px;
  color: var(--c-red);
  letter-spacing: 0.15em;
}
.tab-panel {
  animation: tab-fade 0.4s var(--ease-out);
}
@keyframes tab-fade {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* Services swiper: desktop = show only active slide, mobile = horizontal scroll */
.services-swiper {
  position: relative;
}
.services-slide {
  display: none;
}
.services-slide.is-active {
  display: block;
  animation: services-fade-in 0.45s var(--ease-out);
}
@keyframes services-fade-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.services-pagination { display: none; }

/* === Tier accent colors === */
:root {
  --tier-bronze: #C2873E;
  --tier-silver: #B8B8B8;
  --tier-gold: #E5A93D;
  --tier-vip: #E5A93D;
  --tier-community: var(--c-red);
}

.program-card.tier-bronze::after,
.program-card.tier-silver::after,
.program-card.tier-gold::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
}
.program-card.tier-bronze::after { background: var(--tier-bronze); }
.program-card.tier-silver::after { background: var(--tier-silver); }
.program-card.tier-gold::after    { background: var(--tier-gold); }

.program-card.tier-bronze .program-name { color: var(--tier-bronze); }
.program-card.tier-silver .program-name { color: var(--tier-silver); }
.program-card.tier-gold .program-name   { color: var(--tier-gold); }

.program-card.is-featured.tier-gold {
  border-color: var(--tier-gold);
  background: linear-gradient(180deg, rgba(229,169,61,0.10) 0%, var(--c-surface) 45%);
  box-shadow: 0 24px 60px -20px rgba(229,169,61,0.25);
}
.program-card.is-featured.tier-gold::before {
  background: var(--tier-gold);
}
.program-card.is-featured.tier-gold .program-badge {
  background: var(--tier-gold);
  color: #0d0d0d;
}
.program-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  padding: 24px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s var(--ease-out);
}
.program-card:hover {
  border-color: var(--c-red);
  transform: translateY(-4px);
}
.program-card.is-featured {
  border-color: var(--c-red);
  background: linear-gradient(180deg, rgba(234,52,51,0.06) 0%, var(--c-surface) 40%);
}
.program-card.is-featured::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--c-red);
}
.program-badge {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--c-red);
  color: #fff;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 12px;
}
.program-duration {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--c-red);
  margin-bottom: 12px;
}
.program-name {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.program-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--c-text-dim);
  margin-bottom: 16px;
}
.program-features {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.program-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--c-text);
}
.program-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--c-border);
  gap: 16px;
}
.program-price {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-text-dim);
}

.vip-card, .comm-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  position: relative;
  overflow: hidden;
}
/* VIP — gold accent, premium feel */
.vip-card {
  background:
    radial-gradient(80% 60% at 100% 0%, rgba(229,169,61,0.10) 0%, transparent 60%),
    var(--c-surface);
  border-color: rgba(229,169,61,0.35);
  box-shadow: 0 24px 60px -20px rgba(229,169,61,0.18);
}
.vip-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--tier-vip), transparent);
}
.vip-card .vip-kicker { color: var(--tier-vip); }
.vip-card .vip-tagline { color: var(--tier-vip); }
.vip-card .vip-name {
  background: linear-gradient(135deg, #fff 0%, var(--tier-vip) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Community — red, vibrant tribe feel */
.comm-card {
  background:
    radial-gradient(80% 60% at 0% 100%, rgba(234,52,51,0.10) 0%, transparent 60%),
    var(--c-surface);
  border-color: rgba(234,52,51,0.35);
  box-shadow: 0 24px 60px -20px rgba(234,52,51,0.18);
}
.comm-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--c-red), transparent);
}
.vip-grid, .comm-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
}
.vip-main, .comm-main {
  padding: 56px 48px;
}
.vip-kicker, .comm-kicker {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--c-red);
  margin-bottom: 20px;
}
.vip-name, .comm-name {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.vip-tagline, .comm-tagline {
  font-family: var(--ff-accent);
  font-style: italic;
  font-size: 18px;
  color: var(--c-red);
  margin-bottom: 24px;
}
.vip-desc, .comm-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-text-dim);
  margin-bottom: 32px;
}
.vip-features, .comm-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
}
.vip-features li, .comm-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
}
.vip-side {
  position: relative;
  background: var(--c-black);
  display: flex;
  flex-direction: column;
}
.vip-side .placeholder-tile {
  aspect-ratio: unset !important;
  flex: none;
  height: 320px;
  overflow: hidden;
}
.vip-cta-block {
  padding: 32px 40px;
  border-top: 1px solid var(--c-border);
}
.vip-price-label {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--c-text-dim);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.vip-price {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 20px;
}

.comm-side {
  background: var(--c-black);
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.comm-price-card {
  width: 100%;
  text-align: center;
  padding: 40px 32px;
  border: 1px solid var(--c-red);
  background: linear-gradient(180deg, rgba(234,52,51,0.08), transparent);
}
.price-top {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 24px;
}
.price-value {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 64px;
  line-height: 1;
  color: var(--c-red);
}
.price-period {
  font-family: var(--ff-mono);
  font-size: 13px;
  color: var(--c-text-dim);
  letter-spacing: 0.1em;
}
.price-divider {
  height: 1px;
  background: var(--c-border);
  margin-bottom: 24px;
}
.price-benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-dim);
}

/* ============================================
   COMMUNITY
============================================ */
.community {
  padding: var(--sec-y) 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--c-black);
}
.community-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.community-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  position: relative;
}
.collage-a { grid-column: 1; grid-row: 1 / span 2; }
.collage-b { grid-column: 2; grid-row: 1; transform: translateY(24px); }
.collage-c { grid-column: 2; grid-row: 2; }
.collage-d {
  grid-column: 1;
  grid-row: 2;
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 45%;
  aspect-ratio: 1/1;
  z-index: 2;
  border: 4px solid var(--c-black);
}
.community-benefits {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 40px 0;
}
.benefit-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--c-border);
  transition: border-color 0.2s;
}
.benefit-row:hover { border-color: var(--c-red); }
.benefit-row:last-child { border-bottom: none; }
.benefit-k {
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--c-red);
  letter-spacing: 0.15em;
}
.benefit-title {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.benefit-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--c-text-dim);
}
.community-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--c-border);
  gap: 20px;
  flex-wrap: wrap;
}
.mem-price {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 40px;
  color: var(--c-red);
}
.mem-period {
  font-family: var(--ff-mono);
  font-size: 13px;
  color: var(--c-text-dim);
  letter-spacing: 0.1em;
  margin-left: 6px;
}

/* ============================================
   RESULTS
============================================ */
.results {
  padding: var(--sec-y) 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
  overflow: hidden;
  transition: all 0.3s var(--ease-out);
}
.testi-card:hover {
  border-color: var(--c-red);
  transform: translateY(-3px);
}
.testi-photo {
  position: relative;
  background: var(--c-black);
}
.testi-photo .placeholder-tile {
  aspect-ratio: unset !important;
  height: 100%;
}
.testi-metric {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--c-red);
  color: #fff;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 16px;
  padding: 6px 12px;
  letter-spacing: 0.02em;
}
.testi-body {
  padding: 32px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testi-tag {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-red);
  margin-bottom: 16px;
}
.testi-card blockquote {
  font-family: var(--ff-accent);
  font-size: 17px;
  line-height: 1.55;
  margin: 0 0 20px;
  color: var(--c-text);
  font-style: italic;
  text-wrap: pretty;
}
.testi-name {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-dim);
}

/* ============================================
   BOOKING
============================================ */
.booking {
  padding: var(--sec-y) 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--c-black);
  position: relative;
  overflow: hidden;
}
.booking::before {
  content: "";
  position: absolute;
  right: -20%; top: 20%;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(234,52,51,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
  position: relative;
}
.booking-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.step-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--c-border);
}
.step-row:last-child { border-bottom: 1px solid var(--c-border); }
.step-k {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 32px;
  color: var(--c-red);
  line-height: 1;
}
.step-title {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.step-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--c-text-dim);
}
.calendar-frame {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  overflow: hidden;
}
.calendar-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  background: var(--c-black);
  border-bottom: 1px solid var(--c-border);
}
.cal-dot {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 8px #4ade80;
}
.cal-label {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-text-dim);
}

.cal-mock {
  padding: 28px 28px 32px;
}
.cal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.cal-month {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.cal-nav {
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--c-border);
  font-size: 16px;
  color: var(--c-text);
  transition: all 0.2s;
}
.cal-nav:hover { border-color: var(--c-red); color: var(--c-red); }
.cal-days-head {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 8px;
  font-family: var(--ff-mono);
  font-size: 10px;
  text-align: center;
  color: var(--c-text-dimmer);
  letter-spacing: 0.1em;
}
.cal-days-head span {
  padding: 8px 0;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 24px;
}
.cal-cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--c-text);
  background: var(--c-surface-2);
  border: 1px solid transparent;
  transition: all 0.15s;
}
.cal-cell:hover:not(.is-disabled):not(.is-selected) {
  border-color: var(--c-red);
  color: var(--c-red);
}
.cal-cell.is-disabled {
  color: var(--c-text-dimmer);
  cursor: not-allowed;
  background: transparent;
  text-decoration: line-through;
  opacity: 0.4;
}
.cal-cell.is-selected {
  background: var(--c-red);
  color: #fff;
  border-color: var(--c-red);
}
.cal-empty {
  background: transparent;
  pointer-events: none;
}
.cal-times-head {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-text-dim);
  margin-bottom: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--c-border);
}
.cal-times {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin-bottom: 24px;
}
.cal-time {
  padding: 10px 4px;
  background: var(--c-surface-2);
  border: 1px solid var(--c-border);
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--c-text);
  transition: all 0.15s;
}
.cal-time:hover { border-color: var(--c-red); color: var(--c-red); }
.cal-time.is-active { background: var(--c-red); color: #fff; border-color: var(--c-red); }

/* ============================================
   FAQ
============================================ */
.faq {
  padding: var(--sec-y) 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.faq-list {
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid var(--c-border);
}
.faq-item {
  border-bottom: 1px solid var(--c-border);
}
.faq-q {
  width: 100%;
  padding: 28px 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  text-align: left;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--c-red); }
.faq-q-num {
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--c-red);
  letter-spacing: 0.15em;
}
.faq-q-text {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(16px, 1.5vw, 20px);
  letter-spacing: -0.005em;
  text-transform: uppercase;
}
.faq-q-icon {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: 24px;
  color: var(--c-red);
  line-height: 1;
  width: 28px;
  text-align: center;
}
.faq-a-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease-out);
}
.faq-item.is-open .faq-a-wrap {
  grid-template-rows: 1fr;
}
.faq-a {
  overflow: hidden;
}
.faq-a > * {
  padding: 0 0 32px 48px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--c-text-dim);
  max-width: 720px;
}
.faq-a {
  padding: 0 0 0 48px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--c-text-dim);
  max-width: 720px;
}
.faq-item.is-open .faq-a { padding-bottom: 32px; }

/* ============================================
   FOOTER
============================================ */
.footer {
  background: var(--c-black);
  border-top: 1px solid var(--c-border);
  padding: clamp(56px, 7vw, 96px) 0 0;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: clamp(40px, 6vw, 96px);
  padding-bottom: clamp(48px, 6vw, 80px);
}
.footer-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
}
.footer-desc {
  font-family: var(--ff-accent);
  font-size: 14px;
  color: var(--c-text-dim);
  line-height: 1.55;
  margin: 0 0 32px;
  max-width: 320px;
}
.footer-newsletter {}
.nl-label {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-text-dim);
  margin-bottom: 12px;
}
.nl-form {
  display: flex;
  gap: 8px;
  max-width: 360px;
  flex-wrap: wrap;
}
.nl-success {
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--c-red);
  letter-spacing: 0.05em;
}
.nl-error {
  flex: 1 0 100%;
  font-family: var(--ff-mono);
  font-size: 11px;
  color: #f5a623;
  margin-top: 4px;
}
.nl-form input {
  flex: 1;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  padding: 12px 14px;
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--c-text);
  outline: none;
}
.nl-form input:focus { border-color: var(--c-red); }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col-head {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-red);
  margin-bottom: 8px;
}
.footer-col a {
  font-family: var(--ff-body);
  font-size: 14px;
  color: var(--c-text-dim);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--c-text); }

.footer-big {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(28px, 6vw, 80px);
  line-height: 0.88;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: clamp(12px, 2vw, 32px);
  padding: 40px 0;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  flex-wrap: wrap;
}
.footer-big-accent {
  color: var(--c-red);
  font-style: italic;
  font-family: var(--ff-accent);
  font-weight: 800;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--c-text-dim);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a:hover { color: var(--c-text); }

/* ============================================
   TWEAKS PANEL
============================================ */
.tweaks-panel {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 200;
  width: 280px;
  background: rgba(13, 13, 13, 0.97);
  backdrop-filter: blur(20px);
  border: 1px solid var(--c-red);
  padding: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  font-family: var(--ff-body);
}
.tweaks-head {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--c-border);
  margin-bottom: 16px;
}
.tweaks-title {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-red);
}
.tweaks-sub {
  font-family: var(--ff-mono);
  font-size: 10px;
  color: var(--c-text-dim);
  margin-top: 4px;
  letter-spacing: 0.08em;
}
.tweak-group {
  margin-bottom: 14px;
}
.tweak-label {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-text-dim);
  margin-bottom: 8px;
}
.tweak-options {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.tweak-opt {
  flex: 1;
  min-width: 70px;
  padding: 8px 10px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--c-text-dim);
  transition: all 0.15s;
}
.tweak-opt:hover { color: var(--c-text); border-color: var(--c-red); }
.tweak-opt.is-active {
  background: var(--c-red);
  color: #fff;
  border-color: var(--c-red);
}
.tweaks-note {
  font-family: var(--ff-mono);
  font-size: 9px;
  color: var(--c-text-dimmer);
  padding-top: 12px;
  border-top: 1px solid var(--c-border);
  letter-spacing: 0.08em;
}

/* ============================================
   ANIMATED TITLE CHARS
============================================ */
.sec-title .word { display: inline-block; margin-right: 0.22em; }
.sec-title .word:last-child { margin-right: 0; }
.sec-title .char { display: inline; }
.sec-title .word-red .char { color: var(--c-red); }
.sec-title-cursor {
  display: inline-block;
  width: 3px;
  height: 0.75em;
  background: var(--c-red);
  margin-left: 4px;
  vertical-align: text-bottom;
  border-radius: 1px;
  line-height: 0;
  animation: cursor-blink 0.7s step-end infinite;
}
@keyframes cursor-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ============================================
   BEFORE / AFTER COMPARISON SLIDER
============================================ */
.ba-slider {
  position: relative; overflow: hidden;
  border-radius: 8px;
  cursor: col-resize; user-select: none;
  height: 320px; background: var(--c-surface);
}
.ba-after {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
  display: block; pointer-events: none;
}
.ba-before-wrap {
  position: absolute; top: 0; left: 0; bottom: 0;
  overflow: hidden;
}
.ba-before {
  position: absolute; top: 0; left: 0;
  height: 100%;
  object-fit: cover; object-position: center 20%;
  display: block; pointer-events: none;
}
.ba-handle {
  position: absolute; top: 0; bottom: 0; width: 3px;
  background: rgba(255,255,255,0.9);
  transform: translateX(-50%); z-index: 10; cursor: col-resize;
}
.ba-handle-icon {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: #fff; border-radius: 50%;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: #0d0908; box-shadow: 0 2px 14px rgba(0,0,0,0.5);
}
.ba-label {
  position: absolute; top: 10px;
  font-family: var(--ff-mono); font-size: 9px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: #fff; padding: 4px 10px;
  background: rgba(0,0,0,0.6); border-radius: 4px; z-index: 5;
  pointer-events: none;
}
.ba-label-before { left: 10px; }
.ba-label-after { right: 10px; }

/* ============================================
   SWIPER RESULTS CAROUSEL
============================================ */
.results-swiper-wrap { margin-top: 48px; overflow: visible; }
.results-swiper { width: 100%; padding: 20px 0 60px; }
.results-slide {
  height: 440px;
  border-radius: 14px; overflow: hidden;
  position: relative; background: var(--c-surface);
}
.results-slide img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block; position: absolute; inset: 0;
}
.results-slide {
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.results-slide:hover {
  box-shadow: inset 0 0 0 2px var(--c-red), inset 0 -120px 80px rgba(234,52,51,0.18);
  transform: translateY(-4px) scale(1.01);
  z-index: 5;
}
.slide-info {
  position: absolute;
  bottom: calc(-100% - 2px); left: 0; right: 0;
  padding: 72px 18px 18px;
  background: linear-gradient(180deg, transparent 0%, rgba(7,5,3,0.96) 55%);
  transition: bottom 0.5s cubic-bezier(0.16,1,0.3,1);
  z-index: 2;
}
.swiper-slide-active .slide-info,
.results-slide:hover .slide-info { bottom: 0; }
.slide-info-metric {
  font-family: var(--ff-display); font-size: 26px; font-weight: 900;
  color: var(--c-red); letter-spacing: -0.02em; line-height: 1;
  margin-bottom: 4px;
}
.slide-info-name {
  font-family: var(--ff-accent); font-size: 12px; font-weight: 700;
  color: var(--c-text); text-transform: uppercase; letter-spacing: 0.14em;
  margin-bottom: 6px;
}
.slide-info-program {
  font-family: var(--ff-mono); font-size: 9px;
  color: var(--c-text-dim); text-transform: uppercase; letter-spacing: 0.18em;
  margin-bottom: 8px;
}
.slide-info-quote {
  font-family: var(--ff-body); font-size: 12px;
  color: rgba(255,255,255,0.65); line-height: 1.5; font-style: italic;
}
.results-swiper .swiper-pagination { bottom: 12px; }
.results-swiper .swiper-pagination-bullet {
  background: var(--c-text-dimmer); transition: all 0.4s ease; border-radius: 8px;
  opacity: 1;
}
.results-swiper .swiper-pagination-bullet-active {
  background: var(--c-red); width: 24px;
}
/* Coverflow shadows adapt to dark theme */
.results-swiper .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(7,5,3,0.6), transparent);
  border-radius: 14px;
}
.results-swiper .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(7,5,3,0.6), transparent);
  border-radius: 14px;
}
@media (max-width: 768px) {
  .results-slide { height: 360px; }
  .slide-info-metric { font-size: 22px; }
  .ba-slider { height: 220px; }
}

/* ============================================
   REAL PHOTO
============================================ */
.mobile-cta-bar { display: none; }
.real-photo { border-radius: 0; }
.real-photo img { transition: transform 0.6s var(--ease-out); }
.real-photo:hover img { transform: scale(1.03); }
.real-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(7,5,3,0.45) 100%);
  pointer-events: none;
}

/* ============================================
   RESPONSIVE — tablet
============================================ */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .programs-grid { grid-template-columns: 1fr; }
  .vip-grid, .comm-grid { grid-template-columns: 1fr; }
  .vip-features, .comm-features { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .community-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .booking-grid { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-arrow { transform: rotate(90deg); padding: 8px 0; }
  .arrow-stem { display: none; }
  .hero-mono-grid { grid-template-columns: 1fr; gap: 20px; }
  .hero-monumental { height: auto; min-height: 100svh; padding: 90px 0 0; }
  .hero-mono-photo { max-height: 45vw; }
  .hero-mono-title { font-size: clamp(28px, 8vw, 64px); }
  .hero-split { grid-template-columns: 1fr; }
  .hero-split-photo { min-height: 60vh; }
  .about-photo { position: relative; top: auto; }
  .footer-main { grid-template-columns: 1fr; }
}

/* ============================================
   RESPONSIVE — mobile (≤768px)
   Design goal: feel like a native iOS/Android app
============================================ */
@media (max-width: 768px) {
  /* Global mobile base */
  html { -webkit-text-size-adjust: 100%; }
  body {
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
    padding-bottom: env(safe-area-inset-bottom);
  }

  /* Scroll padding for fixed navbar */
  :root { scroll-padding-top: 64px; }

  /* Section padding — tighter on mobile */
  .container { padding: 0 20px; }
  section { padding: clamp(60px, 12vw, 80px) 0; }

  /* Navbar */
  .mobile-toggle { display: flex; }
  .btn-sm.btn-primary { display: none; }
  .nav-logo-text { display: none; }
  .navbar { padding: 14px 0; }
  .navbar.is-scrolled { padding: 10px 0; }
  .nav-right { gap: 12px; }
  .lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 0.12em;
    padding: 4px 2px;
    border: none;
    background: transparent;
  }
  .lang-switch button {
    position: relative;
    padding: 4px 2px;
    min-height: 28px;
    color: var(--c-text-dim);
    transition: color 0.25s var(--ease-out);
  }
  .lang-switch button::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: var(--c-red);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s var(--ease-out);
  }
  .lang-switch button.is-active {
    color: var(--c-text);
    font-weight: 700;
  }
  .lang-switch button.is-active::after { transform: scaleX(1); }
  .lang-sep { display: none; }
  .mobile-menu {
    border-top: 1px solid var(--c-border-soft);
    padding: 16px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .mobile-menu a {
    font-family: var(--ff-accent);
    font-size: 15px;
    letter-spacing: 0.02em;
    color: var(--c-text-dim);
    padding: 12px 0;
    border-bottom: 1px solid var(--c-border-soft);
    display: block;
  }
  .mobile-menu a:last-child { border-bottom: none; }
  .mobile-menu .btn {
    margin-top: 8px;
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Hero monumental — full app-screen treatment */
  .hero-monumental {
    min-height: 100svh;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .hero-monumental .hero-mono-grid {
    padding-top: 90px;
  }
  .hero-mono-grid {
    grid-template-columns: 1fr;
    gap: 0;
    position: relative;
  }
  .hero-mono-photo {
    position: absolute;
    inset: 0;
    max-height: none;
    z-index: 0;
    opacity: 0.35;
  }
  .hero-mono-photo .real-photo,
  .hero-mono-photo .placeholder-tile {
    width: 100%;
    height: 100%;
    aspect-ratio: unset;
    border-radius: 0;
  }
  .hero-mono-photo .real-photo img {
    height: 100%;
    object-position: center 20%;
  }
  .hero-mono-text {
    position: relative;
    z-index: 1;
    padding: 0 20px 0;
    text-align: center;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }
  .hero-mono-text .hero-eyebrow {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-mono-text .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-mono-title {
    font-size: clamp(36px, 11vw, 60px);
    line-height: 0.95;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
  }
  .hero-mono-title span {
    display: block;
    white-space: nowrap;
  }
  .hero-sub {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 28px;
  }
  .hero-ctas {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }
  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
    padding: 16px 20px;
    font-size: 13px;
    min-height: 52px;
    transform-origin: center;
  }
  .hero-ctas .btn.btn-ghost { animation-delay: 1.4s; }

  /* Breathing animation on ALL primary CTAs (mobile) */
  .btn-primary,
  .mobile-cta-bar .btn-primary,
  .hero-ctas .btn {
    animation: btnBreathe 2.8s ease-in-out infinite;
    transform-origin: center;
  }
  @media (prefers-reduced-motion: reduce) {
    .btn-primary,
    .mobile-cta-bar .btn-primary,
    .hero-ctas .btn { animation: none; }
  }
  .hero-mono-badge {
    display: none;
  }
  .hero-mono-marquee {
    margin-top: 0;
    padding: 18px 0;
    border-top: none;
    border-bottom: none;
    background: transparent;
  }
  .hero-mono-marquee .marquee-track {
    font-size: clamp(20px, 5.5vw, 28px);
  }
  .hero-meta-l { display: none; }

  /* Stats strip */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 12px; }
  .stat-num { font-size: clamp(36px, 10vw, 52px); }

  /* Problem/Solution */
  .problem-grid { gap: 16px; }
  .problem-col { padding: 24px 20px; border-radius: 16px; }
  .problem-col ul { gap: 12px; }

  /* About */
  .about-grid { gap: 32px; }
  .about-photo { border-radius: 20px; overflow: hidden; }
  .about-photo-badge {
    bottom: 16px;
    left: 16px;
    padding: 10px 16px;
    border-radius: 12px;
  }
  .about-text p { font-size: 15px; line-height: 1.6; }
  .about-areas { flex-wrap: wrap; gap: 8px; }

  /* Services — horizontal scroll tabs */
  .tabs-row {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding-bottom: 4px;
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
    flex-wrap: nowrap;
    gap: 8px;
  }
  .tabs-row::-webkit-scrollbar { display: none; }
  .tab {
    scroll-snap-align: start;
    flex-shrink: 0;
    min-width: 140px;
    padding: 16px 14px;
    font-size: 11px;
    border-radius: 14px;
  }
  /* Services: horizontal swipe between Programs / VIP / Community on mobile */
  .services-swiper {
    display: flex !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin: 0 -20px;
    padding: 4px 0 8px;
    gap: 0;
  }
  .services-swiper::-webkit-scrollbar { display: none; }
  .services-slide {
    display: block !important;
    flex: 0 0 100%;
    max-width: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    padding: 0 20px;
    box-sizing: border-box;
    animation: none !important;
  }
  .services-slide .programs-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .services-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
  }
  .services-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--c-border);
    transition: all 0.3s var(--ease-out);
  }
  .services-dot.is-active {
    width: 28px;
    border-radius: 4px;
    background: var(--c-red);
  }
  .program-card { border-radius: 0; padding: 28px 22px; }
  .program-card:hover { transform: none; }
  .vip-grid, .comm-grid { gap: 0; }
  .vip-main, .comm-main { padding: 28px 20px; border-radius: 0; }
  .vip-side { padding: 20px; border-radius: 0; }
  .comm-side { padding: 20px; border-radius: 0; }
  .vip-side .real-photo { border-radius: 0; }

  /* Results reel cards */
  .reel-card { width: 180px; }

  /* Transformaciones — disable horizontal GSAP on mobile, show vertical */
  .transforms-mobile-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 20px 40px;
  }
  .transform-card {
    width: 100%;
    border-radius: 0;
    overflow: hidden;
  }

  /* Booking */
  .booking-grid { gap: 40px; }
  .booking-right { display: block; }
  .calendar-frame { border-radius: 0; }
  .cal-mock { padding: 20px; }

  /* FAQ */
  .faq-item { border-radius: 0; }
  .faq-q { padding: 18px 16px; font-size: 14px; }
  .faq-a { padding: 0 16px 0 16px; font-size: 14px; line-height: 1.6; }
  /* Force collapse on mobile — grid-template-rows trick can leak inside Reveal/GSAP wrappers */
  .faq-item:not(.is-open) .faq-a-wrap { display: none; }
  .faq-item.is-open .faq-a-wrap { display: block; }
  .faq-item.is-open .faq-a { padding-bottom: 18px; }

  /* Footer */
  .testi-card { grid-template-columns: 1fr; }
  .testi-photo .placeholder-tile { min-height: 240px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Tweaks & misc */
  .tweaks-panel { right: 12px; bottom: 12px; width: calc(100% - 24px); max-width: 320px; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .insta-header { flex-direction: column; gap: 16px; }
  .modal-body { padding: 24px 20px; }
  .step-options { grid-template-columns: 1fr 1fr; gap: 8px; }
  .step-opt { padding: 14px 10px; border-radius: 14px; font-size: 13px; }
  .modal-box {
    border-radius: 24px 24px 0 0;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    max-height: 92svh;
    overflow-y: auto;
  }
  .modal-overlay { align-items: flex-end; }

  /* Plans accordion mobile rules → see end of file (after global plans rules to win cascade) */

  /* Community v2 */
  .community-v2-top { flex-direction: column; gap: 32px; }
  .cv2-benefits { grid-template-columns: 1fr 1fr; }
  .community-v2-bottom { flex-direction: column; gap: 20px; align-items: stretch; }
  .cv2-cta-block { flex-direction: column; gap: 16px; align-items: stretch; }
  .cv2-cta-block .btn { width: 100%; justify-content: center; }
  .cv2-discord-card { border-radius: 16px; }
  .cv2-price { font-size: clamp(36px, 10vw, 52px); }

  /* Instagram editorial */
  .insta-editorial-grid { grid-template-columns: 1fr; gap: 4px; }
  .insta-ed-main { grid-column: 1; grid-row: 1; height: 260px; }

  /* Floating buttons — hidden on mobile (sticky CTA covers the action) */
  .float-btns { display: none !important; }

  /* Sticky bottom CTA bar (mobile only) */
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 90;
    background: rgba(13,9,8,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--c-border-soft);
    padding: 12px 20px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
  }
  .mobile-cta-bar .btn { flex: 1; justify-content: center; min-height: 50px; font-size: 14px; }
}

@media (max-width: 480px) {
  .hero-mono-title { font-size: clamp(30px, 9.5vw, 46px); }
  .footer-cols { grid-template-columns: 1fr; }
  .footer-big { font-size: 10vw; padding: 32px 0; }
  .cal-times { grid-template-columns: repeat(3, 1fr); }
  .step-options { grid-template-columns: 1fr; }
  .sec-title { font-size: clamp(30px, 9vw, 56px); }
  .cv2-benefits { grid-template-columns: 1fr; }
  .insta-ed-main { height: 220px; }
  .program-card { padding: 24px 16px; }
  .tab { min-width: 120px; }
}

/* ============================================
   CUSTOM CURSOR (desktop only)
============================================ */
@media (pointer: fine) {
  *, *::before, *::after { cursor: none !important; }
  .cursor-ring {
    position: fixed;
    width: 36px; height: 36px;
    border: 1.5px solid rgba(234,52,51,0.55);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    top: 0; left: 0;
    will-change: transform;
    transition: transform 0.06s linear, width 0.18s, height 0.18s, border-color 0.18s, background 0.18s;
  }
  .cursor-dot {
    position: fixed;
    width: 5px; height: 5px;
    background: var(--c-red);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    top: 0; left: 0;
    will-change: transform;
    transition: transform 0.02s linear;
  }
  .cursor-ring.is-hovering {
    width: 54px; height: 54px;
    border-color: rgba(234,52,51,0.85);
    background: rgba(234,52,51,0.07);
  }
}
@media (pointer: coarse) {
  .cursor-ring, .cursor-dot { display: none !important; }
}

/* ============================================
   FLOATING BUTTONS
============================================ */
.float-btns {
  position: fixed;
  bottom: 32px;
  right: 28px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  border-radius: 26px;
  padding: 0 20px 0 14px;
  border: none;
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  white-space: nowrap;
}
.float-btn:hover { transform: translateY(-2px) scale(1.03); }
.float-btn-wa { background: #25D366; color: #fff; }
.float-btn-wa:hover { box-shadow: 0 8px 28px rgba(37,211,102,0.45); }
.float-btn-book { background: var(--c-red); color: #fff; }
.float-btn-book:hover { box-shadow: 0 8px 28px rgba(234,52,51,0.45); }
.float-btn-icon { width: 26px; height: 26px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }

/* ============================================
   C-MARK WATERMARK
============================================ */
.c-mark {
  position: absolute;
  font-family: var(--ff-display);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(234,52,51,0.07);
  pointer-events: none;
  user-select: none;
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  z-index: 0;
  font-size: 380px;
}

/* ============================================
   BOOKING MODAL
============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.2s ease;
}
.modal-box {
  background: #111;
  border: 1px solid var(--c-border);
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp 0.3s cubic-bezier(0.16,1,0.3,1);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { transform: translateY(24px); opacity: 0; } to { transform: none; opacity: 1; } }
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 28px 28px 0;
}
.modal-title { font-family: var(--ff-display); font-weight: 800; font-size: 20px; letter-spacing: -0.01em; text-transform: uppercase; }
.modal-close { background: none; border: none; color: var(--c-text-dim); font-size: 22px; cursor: pointer; padding: 0; line-height: 1; transition: color 0.15s; }
.modal-close:hover { color: var(--c-text); }
.modal-progress { display: flex; gap: 4px; padding: 16px 28px 0; }
.modal-prog-dot { height: 3px; flex: 1; background: var(--c-border); transition: background 0.3s; }
.modal-prog-dot.is-done { background: var(--c-red); }
.modal-body { padding: 28px; }
.step-label { font-family: var(--ff-mono); font-size: 10px; letter-spacing: 0.2em; color: var(--c-red); text-transform: uppercase; margin-bottom: 8px; }
.step-question { font-family: var(--ff-display); font-weight: 700; font-size: 17px; letter-spacing: -0.01em; margin-bottom: 20px; text-transform: uppercase; line-height: 1.2; }
.step-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 28px; }
.step-opt { background: transparent; border: 1px solid var(--c-border); color: var(--c-text); padding: 14px 12px; text-align: left; font-family: var(--ff-body); font-size: 13px; cursor: pointer; transition: border-color 0.15s, background 0.15s; line-height: 1.3; }
.step-opt:hover { border-color: rgba(234,52,51,0.5); background: rgba(234,52,51,0.05); }
.step-opt.is-selected { border-color: var(--c-red); background: rgba(234,52,51,0.1); color: #fff; }
.step-field { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.step-input { background: #181818; border: 1px solid var(--c-border); color: var(--c-text); padding: 14px 16px; font-family: var(--ff-body); font-size: 14px; outline: none; transition: border-color 0.15s; }
.step-input:focus { border-color: var(--c-red); }
.step-input::placeholder { color: var(--c-text-dim); }
.modal-nav { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.modal-back { background: none; border: 1px solid var(--c-border); color: var(--c-text-dim); padding: 12px 20px; font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.12em; cursor: pointer; transition: border-color 0.15s, color 0.15s; }
.modal-back:hover { border-color: var(--c-text-dim); color: var(--c-text); }
.step-success { text-align: center; padding: 20px 0; }
.step-success-icon { font-size: 48px; margin-bottom: 16px; }
.step-success-title { font-family: var(--ff-display); font-weight: 800; font-size: 20px; text-transform: uppercase; margin-bottom: 10px; }
.step-success-sub { font-size: 14px; color: var(--c-text-dim); line-height: 1.6; }

/* ============================================
   INSTAGRAM GALLERY
============================================ */
.instagram-section { padding: var(--sec-pad) 0; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; overflow: hidden; position: relative; }
.insta-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; flex-wrap: wrap; gap: 20px; }
.insta-handle { display: flex; align-items: center; gap: 10px; font-family: var(--ff-mono); font-size: 12px; letter-spacing: 0.15em; color: var(--c-text-dim); text-decoration: none; transition: color 0.15s; }
.insta-handle:hover { color: var(--c-text); }
.insta-handle-dot { width: 8px; height: 8px; background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); border-radius: 50%; flex-shrink: 0; }
.instagram-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; }
.insta-tile { aspect-ratio: 1; overflow: hidden; position: relative; background: #181818; cursor: pointer; }
.insta-tile-inner { width: 100%; height: 100%; transition: transform 0.4s cubic-bezier(0.16,1,0.3,1); }
.insta-tile:hover .insta-tile-inner { transform: scale(1.06); }
.insta-tile-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0); display: flex; align-items: center; justify-content: center; gap: 16px; transition: background 0.3s; }
.insta-tile:hover .insta-tile-overlay { background: rgba(0,0,0,0.58); }
.insta-tile-stat { display: flex; align-items: center; gap: 5px; color: #fff; font-size: 13px; font-weight: 600; opacity: 0; transition: opacity 0.3s; }
.insta-tile:hover .insta-tile-stat { opacity: 1; }
.insta-tile-large { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.insta-cta-row { display: flex; justify-content: center; margin-top: 32px; }

/* ============================================
   ENHANCED SCROLL ANIMATIONS
============================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================================
   AURORA MOUSE
============================================ */
.aurora-blob {
  position: fixed;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(234,52,51,0.11) 0%, rgba(234,52,51,0.04) 35%, transparent 65%);
  pointer-events: none;
  z-index: 0;
  top: 0; left: 0;
  will-change: transform;
  mix-blend-mode: screen;
}

/* ============================================
   COMMUNITY V2
============================================ */
.community-v2 {
  padding: var(--sec-pad) 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #080808;
  position: relative;
  overflow: hidden;
}
.community-v2-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 85% 40%, rgba(234,52,51,0.09) 0%, transparent 65%);
  pointer-events: none;
}
.community-v2-top {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
  padding: 0 var(--container-pad);
  max-width: 1440px;
  margin: 0 auto;
  padding-bottom: 60px;
}
.community-v2-left { position: relative; z-index: 1; }
.community-v2-right { position: relative; z-index: 1; padding-top: 20px; }
.community-v2-headline {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(52px, 7.5vw, 116px);
  line-height: 0.88;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(32px);
}
.community-v2-headline.gsap-visible { opacity: 1; transform: none; }
.community-v2-headline em {
  display: block;
  color: var(--c-red);
  font-style: italic;
  font-family: var(--ff-accent);
  font-weight: 800;
}
.cv2-stats {
  display: flex;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--c-border);
}
.cv2-stat { }
.cv2-stat-num {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 40px;
  color: var(--c-red);
  line-height: 1;
}
.cv2-stat-lbl {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--c-text-dim);
  text-transform: uppercase;
  margin-top: 4px;
}
.cv2-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 2px;
}
.cv2-benefit {
  background: #111;
  padding: 24px 20px;
  border: 1px solid var(--c-border);
  transition: border-color 0.2s, background 0.2s;
  opacity: 0;
  transform: translateY(20px);
}
.cv2-benefit.gsap-visible { opacity: 1; transform: none; }
.cv2-benefit:hover { border-color: rgba(234,52,51,0.45); background: rgba(234,52,51,0.04); }
.cv2-benefit-icon { font-size: 20px; margin-bottom: 10px; }
.cv2-benefit-title { font-family: var(--ff-display); font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 5px; }
.cv2-benefit-desc { font-size: 12px; color: var(--c-text-dim); line-height: 1.4; }
.community-v2-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 2px solid var(--c-border);
}
.cv2-discord-card {
  background: #12142a;
  border-right: 1px solid rgba(88,101,242,0.2);
  padding: 32px var(--container-pad);
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}
.cv2-discord-icon {
  width: 44px; height: 44px;
  background: #5865F2;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cv2-discord-title { font-family: var(--ff-display); font-weight: 700; font-size: 15px; text-transform: uppercase; margin-bottom: 3px; }
.cv2-discord-sub { font-size: 12px; color: var(--c-text-dim); }
.cv2-cta-block {
  background: var(--c-red);
  padding: 32px var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.cv2-price { font-family: var(--ff-display); font-weight: 900; font-size: 44px; color: #fff; line-height: 1; }
.cv2-price-period { font-family: var(--ff-mono); font-size: 11px; color: rgba(255,255,255,0.65); letter-spacing: 0.1em; margin-top: 3px; }
.cv2-cta-block .btn { background: #fff; color: var(--c-red); border-color: #fff; }
.cv2-cta-block .btn:hover { background: rgba(255,255,255,0.9); }

/* ============================================
   REELS CAROUSEL (TESTIMONIALS)
============================================ */
.reels-section { padding: var(--sec-pad) 0; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; overflow: visible; }
.reels-track-wrap {
  overflow: hidden;
  position: relative;
  margin-top: 48px;
}
.reels-track {
  display: flex;
  gap: 16px;
  user-select: none;
  padding: 0 var(--container-pad);
}
.reel-card {
  flex: 0 0 calc(25% - 12px);
  min-width: 220px;
  position: relative;
  overflow: hidden;
  background: #111;
  border: 1px solid var(--c-border);
  transition: border-color 0.2s;
}
.reel-card:hover { border-color: rgba(234,52,51,0.5); }
.reel-video { aspect-ratio: 9/16; position: relative; overflow: hidden; }
.reel-real-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}
.reel-bg { width: 100%; height: 100%; }
.reel-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 50px; height: 50px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.25);
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
}
.reel-card:hover .reel-play-btn { background: var(--c-red); border-color: var(--c-red); transform: translate(-50%,-50%) scale(1.1); }
.reel-gradient {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 65%;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, transparent 100%);
  pointer-events: none;
}
.reel-meta { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px 14px; }
.reel-metric-badge { display: inline-block; background: var(--c-red); color: #fff; font-family: var(--ff-display); font-weight: 800; font-size: 17px; padding: 3px 10px; margin-bottom: 7px; }
.reel-name { font-family: var(--ff-display); font-weight: 700; font-size: 13px; text-transform: uppercase; margin-bottom: 2px; }
.reel-tag-label { font-family: var(--ff-mono); font-size: 9px; color: rgba(255,255,255,0.55); letter-spacing: 0.1em; text-transform: uppercase; }
.reel-quote { font-size: 11px; color: rgba(255,255,255,0.7); line-height: 1.35; margin-top: 6px; font-style: italic; }
.reels-nav { display: flex; justify-content: center; gap: 12px; margin-top: 28px; }
.reels-nav-btn { width: 42px; height: 42px; background: #111; border: 1px solid var(--c-border); color: var(--c-text); font-size: 18px; cursor: pointer; transition: border-color 0.15s, background 0.15s; display: flex; align-items: center; justify-content: center; }
.reels-nav-btn:hover { border-color: var(--c-red); background: rgba(234,52,51,0.1); }
@media (max-width: 768px) {
  .reel-card { flex: 0 0 72vw; }
}

/* ============================================
   SPLASH SCREEN
============================================ */
.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #080808;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--container-pad);
  overflow: hidden;
}
.splash-screen::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 55% at 50% 105%, rgba(234,52,51,0.22) 0%, transparent 65%);
  pointer-events: none;
}
.splash-noise {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  width: 100%; height: 100%;
}
.splash-eyebrow {
  font-family: var(--ff-mono);
  font-size: clamp(11px, 1.1vw, 13px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-red);
  margin-bottom: 28px;
  opacity: 0;
}
.splash-question {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(32px, 5.5vw, 80px);
  line-height: 1.08;
  color: var(--c-white);
  max-width: 900px;
  margin-bottom: 32px;
}
.splash-sub {
  font-family: var(--ff-mono);
  font-size: clamp(12px, 1.2vw, 15px);
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 56px;
  opacity: 0;
}
.splash-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 17px 52px;
  border: 1.5px solid var(--c-red);
  background: transparent;
  color: var(--c-white);
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  opacity: 0;
  overflow: hidden;
  transition: color 0.3s;
}
.splash-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--c-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.38s var(--ease-out);
  z-index: 0;
}
.splash-btn:hover::before { transform: scaleX(1); }
.splash-btn span, .splash-btn svg { position: relative; z-index: 1; }
.splash-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, var(--c-red), transparent);
  opacity: 0.5;
}

/* ============================================
   PARALLAX BANNER
============================================ */
.parallax-banner {
  position: relative;
  height: 62vh;
  min-height: 380px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.parallax-bg {
  position: absolute;
  top: -25%;
  left: 0;
  right: 0;
  bottom: -25%;
  background-image: url('assets/Branding/banner.jpg');
  background-size: cover;
  background-position: center 30%;
  will-change: transform;
}
.parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.82);
}
.parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--container-pad);
  max-width: 860px;
}
.parallax-quote {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(28px, 4.2vw, 62px);
  line-height: 1.1;
  color: var(--c-white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.parallax-quote em {
  font-style: normal;
  color: var(--c-red);
  text-shadow: 0 0 32px rgba(234,52,51,0.6);
}
.parallax-attr {
  font-family: var(--ff-mono);
  font-size: clamp(11px, 0.9vw, 13px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ============================================
   TRANSFORMACIONES
============================================ */
.transforms-section {
  padding: var(--sec-pad) 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #0c0907;
  position: relative;
  overflow: hidden;
}
.transforms-section::before {
  content: "";
  position: absolute;
  left: -10%; bottom: 0;
  width: 70vw; height: 70%;
  background: radial-gradient(ellipse at left bottom, rgba(234,52,51,0.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.horiz-gallery-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 48px;
  overflow-x: clip;
  overflow-y: visible;
}
.horiz-gallery-strip {
  display: flex;
  gap: 20px;
  padding: 0 var(--container-pad) 32px;
  width: max-content;
  will-change: transform;
}
.transform-card {
  width: 340px;
  flex-shrink: 0;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.3s;
}
.transform-card:hover { border-color: rgba(234,52,51,0.5); transform: translateY(-4px); }
.transform-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  display: block;
  background: var(--c-surface);
}
.transform-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; position: relative; height: 220px; }
.transform-photo { height: 100%; width: 100%; object-fit: cover; object-position: center top; display: block; }
.transform-photo-label {
  position: absolute;
  top: 10px;
  font-family: var(--ff-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,0.65);
  padding: 3px 7px;
  z-index: 2;
}
.transform-photo-label.before { left: 8px; }
.transform-photo-label.after { left: calc(50% + 8px); }
.transform-info { padding: 18px; }
.transform-stat-row { display: flex; gap: 20px; margin-bottom: 10px; }
.transform-stat-val { font-family: var(--ff-display); font-weight: 900; font-size: 26px; color: var(--c-red); line-height: 1; }
.transform-stat-lbl { font-family: var(--ff-mono); font-size: 9px; color: var(--c-text-dim); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 3px; }
.transform-name { font-family: var(--ff-display); font-weight: 700; font-size: 13px; text-transform: uppercase; margin-bottom: 3px; }
.transform-program { font-family: var(--ff-mono); font-size: 9px; color: var(--c-red); letter-spacing: 0.1em; text-transform: uppercase; }
.transforms-scroll-hint { display: flex; align-items: center; gap: 10px; margin-top: 24px; padding: 0 var(--container-pad); font-family: var(--ff-mono); font-size: 10px; letter-spacing: 0.15em; color: var(--c-text-dim); text-transform: uppercase; }
.transforms-scroll-line { flex: 1; height: 1px; background: var(--c-border); }

/* ============================================
   INSTAGRAM EDITORIAL
============================================ */
.insta-editorial-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  height: 580px;
  margin-top: 48px;
}
.insta-ed-main { grid-row: span 2; }
.insta-ed-tile {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #111;
}
.insta-ed-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.insta-ed-tile:hover .insta-ed-bg { transform: scale(1.05); }
.insta-ed-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,13,13,0);
  transition: background 0.35s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}
.insta-ed-tile:hover .insta-ed-overlay { background: rgba(13,13,13,0.75); }
.insta-ed-caption {
  transform: translateY(14px);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), opacity 0.3s;
  font-family: var(--ff-body);
  font-size: 13px;
  line-height: 1.4;
  color: #fff;
}
.insta-ed-tile:hover .insta-ed-caption { transform: none; opacity: 1; }
.insta-ed-meta {
  display: flex;
  gap: 14px;
  margin-top: 10px;
  font-family: var(--ff-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
}
.insta-ed-tag-label {
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--ff-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  background: rgba(0,0,0,0.5);
  padding: 3px 8px;
}
@media (max-width: 768px) {
  .insta-editorial-grid { grid-template-columns: 1fr; grid-template-rows: auto; height: auto; }
  .insta-ed-main { height: 60vw; }
  .insta-ed-tile:not(.insta-ed-main) { height: 50vw; }
  .community-v2-top { grid-template-columns: 1fr; gap: 40px; }
  .community-v2-bottom { grid-template-columns: 1fr; }
  .cv2-benefits { grid-template-columns: 1fr; }
  .transforms-track { padding: 0 20px 16px; }
}

/* ============================================
   PLANES / MEMBRESÍAS — ACCORDION
============================================ */
.plans-section {
  padding: var(--sec-y) 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--c-bg);
}
.plans-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.plans-stage-wrap {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 16px;
}
.plans-stage-wrap .plans-nav {
  align-self: center;
}
.plans-nav-mobile { display: none; }
.plans-stage {
  position: relative;
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--c-border);
  height: calc(100vh - 220px);
  min-height: 560px;
  max-height: 700px;
}
.plans-status {
  position: absolute;
  z-index: 10;
  top: 14px; left: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
}
.plans-status-led {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--c-red);
  box-shadow: 0 0 12px rgba(234,52,51,0.7);
  transition: background 0.3s, box-shadow 0.3s;
}
.plans-status-text {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--c-text-dim);
}
.plans-status-text b { color: var(--c-text); }
.plans-status-hint {
  font-family: var(--ff-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.08em;
}
.plans-accordion {
  height: 100%;
  display: flex;
}
.plans-panel {
  position: relative;
  flex: 1;
  cursor: pointer;
  transition: flex 720ms cubic-bezier(0.2,0.8,0.2,1), filter 720ms cubic-bezier(0.2,0.8,0.2,1);
  overflow: hidden;
  filter: grayscale(1) brightness(0.55);
  isolation: isolate;
}
.plans-panel.is-active {
  flex: 3.5;
  filter: grayscale(0) saturate(1.05) brightness(1);
}
.plans-panel-bg {
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 900ms cubic-bezier(0.2,0.8,0.2,1);
}
.plans-panel.is-active .plans-panel-bg { transform: scale(1.12); }
.plans-panel::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(234,52,51,0.55) 0%, rgba(120,18,18,0.7) 45%, rgba(0,0,0,0.92) 100%);
  z-index: 1;
}
.plans-panel-content {
  position: absolute;
  left: 22px; right: 22px; bottom: 20px;
  z-index: 2;
  color: var(--c-text);
}
.plans-panel-kicker {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 400ms cubic-bezier(0.2,0.8,0.2,1), transform 400ms cubic-bezier(0.2,0.8,0.2,1);
}
.plans-panel.is-active .plans-panel-kicker { opacity: 1; transform: translateY(0); transition-delay: 130ms; }
.plans-pill {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.3);
}
.plans-pill.ghost { color: var(--c-text-dim); background: rgba(255,255,255,0.06); }
.plans-panel-id {
  position: absolute;
  left: 0; bottom: -4px;
  font-family: var(--ff-display);
  font-size: 60px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -2px;
  line-height: 1;
  transition: all 720ms cubic-bezier(0.2,0.8,0.2,1);
}
.plans-panel.is-active .plans-panel-id { bottom: auto; top: -50px; font-size: 52px; color: #ffffff; text-shadow: 0 0 24px rgba(234,52,51,0.65); }
.plans-panel-title {
  font-family: var(--ff-display);
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 6px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 500ms cubic-bezier(0.2,0.8,0.2,1), transform 500ms cubic-bezier(0.2,0.8,0.2,1);
}
.plans-panel.is-active .plans-panel-title { opacity: 1; transform: translateY(0); transition-delay: 200ms; }
.plans-panel-sub {
  max-width: 500px;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
  margin-bottom: 14px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 500ms cubic-bezier(0.2,0.8,0.2,1), transform 500ms cubic-bezier(0.2,0.8,0.2,1);
}
.plans-panel.is-active .plans-panel-sub { opacity: 1; transform: translateY(0); transition-delay: 270ms; }
.plans-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 10px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 500ms cubic-bezier(0.2,0.8,0.2,1), transform 500ms cubic-bezier(0.2,0.8,0.2,1);
}
.plans-panel.is-active .plans-grid { opacity: 1; transform: translateY(0); transition-delay: 340ms; }
.plans-specs {
  border-radius: 8px;
  padding: 8px 10px;
  background: rgba(0,0,0,0.32);
  border: 1px solid rgba(255,255,255,0.1);
}
.plans-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 6px 6px;
  border-radius: 6px;
  transition: background 200ms;
}
.plans-row:hover { background: rgba(255,255,255,0.06); }
.plans-k { color: var(--c-text-dim); font-size: 11px; font-family: var(--ff-mono); letter-spacing: 0.06em; }
.plans-v { font-weight: 700; font-size: 11px; color: var(--c-text); }
.plans-meta { display: flex; flex-direction: column; gap: 8px; }
.plans-meta-card {
  border-radius: 8px;
  padding: 10px;
  background: rgba(0,0,0,0.32);
  border: 1px solid rgba(255,255,255,0.1);
}
.plans-meta-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 7px; }
.plans-label { font-size: 10px; font-family: var(--ff-mono); letter-spacing: 0.1em; color: var(--c-text-dim); text-transform: uppercase; }
.plans-value { font-size: 11px; font-weight: 800; color: var(--c-text); }
.plans-bar { height: 7px; border-radius: 999px; overflow: hidden; background: rgba(255,255,255,0.08); }
.plans-bar-fill { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, rgba(234,52,51,0.5), var(--c-red)); transition: width 0.6s cubic-bezier(0.2,0.8,0.2,1); }
.plans-fine { margin-top: 5px; font-size: 10px; color: var(--c-text-dim); font-family: var(--ff-mono); }
.plans-badges { display: flex; flex-wrap: wrap; gap: 6px; }
.plans-badge {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  opacity: 0; transform: scale(0.9);
  transition: opacity 300ms cubic-bezier(0.2,0.8,0.2,1), transform 300ms cubic-bezier(0.2,0.8,0.2,1);
}
.plans-panel.is-active .plans-badge { opacity: 1; transform: scale(1); }
.plans-panel.is-active .plans-badge:nth-child(1) { transition-delay: 460ms; }
.plans-panel.is-active .plans-badge:nth-child(2) { transition-delay: 520ms; }
.plans-panel.is-active .plans-badge:nth-child(3) { transition-delay: 580ms; }
.plans-cta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 500ms cubic-bezier(0.2,0.8,0.2,1), transform 500ms cubic-bezier(0.2,0.8,0.2,1);
}
.plans-panel.is-active .plans-cta-row { opacity: 1; transform: translateY(0); transition-delay: 460ms; }
.plans-cta-btn {
  background: var(--c-red);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 3px;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 200ms, transform 180ms;
}
.plans-cta-btn:hover { background: var(--c-red-bright); transform: translateY(-1px); }
.plans-ghost-btn {
  border: 1px solid var(--c-border);
  background: transparent;
  color: var(--c-text-dim);
  padding: 10px 16px;
  border-radius: 3px;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 200ms, border-color 200ms, transform 180ms;
}
.plans-ghost-btn:hover { color: var(--c-text); border-color: var(--c-text-dim); transform: translateY(-1px); }
.plans-featured-tag {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--c-red);
  color: #fff;
  font-family: var(--ff-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 2px;
  z-index: 3;
}
.plans-nav {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 999px;
  border: 1px solid var(--c-border);
  background: var(--c-surface);
  color: var(--c-text);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 180ms, border-color 180ms, transform 180ms;
  line-height: 1;
}
.plans-nav:hover { background: rgba(234,52,51,0.15); border-color: var(--c-red); color: var(--c-red); }
.plans-nav:active { transform: scale(0.95); }

/* ─── Whop integration pill (plans + footer) ──────────────────────────── */
.plans-whop-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 28px auto 0;
  padding: 9px 18px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-text-dim);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.plans-whop-pill:hover {
  border-color: rgba(234,52,51,0.55);
  color: #fff;
  background: rgba(234,52,51,0.08);
}
.plans-whop-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--c-red);
  box-shadow: 0 0 10px var(--c-red);
  animation: whopPulse 1.8s ease-in-out infinite;
}
@keyframes whopPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.55; transform: scale(0.85); }
}
.plans-whop-arrow {
  font-size: 13px;
  letter-spacing: 0;
  color: var(--c-red);
}
.container.plans-inner > .reveal:nth-child(2) { text-align: center; }
.footer-whop {
  color: var(--c-red) !important;
  font-weight: 600;
}

/* ─── MI HISTORIA (Travesia) ──────────────────────────────────────────── */
.story-section { padding: 110px 0; position: relative; background: var(--c-bg); }
.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}
.story-chapter { display: flex; flex-direction: column; }
.story-photo-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4/5;
  margin-bottom: 22px;
  background: var(--c-surface);
}
.story-photo {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform 0.6s ease;
}
.story-chapter:hover .story-photo { transform: scale(1.04); }
.story-step {
  position: absolute;
  bottom: 14px; left: 14px;
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 64px;
  line-height: 1;
  color: rgba(255,255,255,0.95);
  letter-spacing: -0.04em;
  text-shadow: 0 2px 24px rgba(0,0,0,0.6);
}
.story-kicker {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-red);
  margin-bottom: 10px;
}
.story-title {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 26px;
  line-height: 1.15;
  color: var(--c-text);
  margin: 0 0 12px;
}
.story-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--c-text-dim);
  margin: 0;
}
@media (max-width: 900px) {
  .story-section { padding: 80px 0; }
  .story-grid { grid-template-columns: 1fr; gap: 44px; margin-top: 44px; }
  .story-step { font-size: 52px; }
  .story-title { font-size: 22px; }
}

/* ─── TESTIMONIOS EN VIDEO ────────────────────────────────────────────── */
.video-testimonios { padding: 110px 0; position: relative; background: var(--c-bg); }
.vt-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 56px;
}
.vt-card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 9/16;
  background: #0a0a0a;
  border: 1px solid var(--c-border);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  transition: transform 0.3s ease, border-color 0.2s ease, box-shadow 0.3s ease;
}
.vt-card:hover {
  transform: translateY(-4px);
  border-color: rgba(234,52,51,0.6);
  box-shadow: 0 12px 32px rgba(234,52,51,0.18);
}
.vt-thumb {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.vt-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(234,52,51,0.95);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(0,0,0,0.5);
  transition: transform 0.25s ease, background 0.25s ease;
}
.vt-card:hover .vt-play { transform: translate(-50%, -50%) scale(1.1); }
.vt-play svg { margin-left: 3px; }
.vt-index {
  position: absolute;
  top: 12px; left: 14px;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.55);
  padding: 4px 8px;
  border-radius: 2px;
  pointer-events: none;
}
.vt-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(5,5,5,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: vtFade 0.22s ease;
}
@keyframes vtFade { from { opacity: 0; } to { opacity: 1; } }
.vt-modal-content {
  position: relative;
  max-width: min(420px, 90vw);
  width: 100%;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vt-modal-video {
  width: 100%;
  max-height: 90vh;
  border-radius: 6px;
  background: #000;
  display: block;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.vt-modal-close {
  position: fixed;
  top: 24px; right: 28px;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.vt-modal-close:hover { background: rgba(234,52,51,0.85); border-color: var(--c-red); }
@media (max-width: 1100px) { .vt-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px)  { .vt-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } .vt-play { width: 52px; height: 52px; } }
@media (max-width: 420px)  { .video-testimonios { padding: 80px 0; } }

/* ============================================
   PLANS · MOBILE ACCORDION
   Placed last to win cascade against global .plans-* rules above.
============================================ */
@media (max-width: 768px) {
  .plans-status { display: none; }
  .plans-stage-wrap { flex-direction: column; gap: 12px; }
  .plans-stage {
    height: auto;
    min-height: unset;
    max-height: unset;
    border: none;
    border-radius: 0;
    overflow: visible;
  }
  .plans-accordion {
    flex-direction: column;
    gap: 10px;
    height: auto;
  }
  .plans-panel {
    flex: 0 0 auto;
    min-height: 0;
    filter: none;
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    isolation: isolate;
    transition: border-color 240ms var(--ease-out);
  }
  .plans-panel.is-active {
    flex: 0 0 auto;
    filter: none;
    border-color: var(--c-red);
  }
  .plans-panel-bg { display: none; }
  .plans-panel.is-active .plans-panel-bg {
    display: block;
    position: absolute;
    inset: 0;
    opacity: 0.14;
    transform: scale(1.05);
    z-index: 0;
  }
  .plans-panel::before { display: none; }

  .plans-panel-content {
    position: static;
    padding: 18px 20px;
    left: auto; right: auto; bottom: auto;
    z-index: 2;
  }

  .plans-panel-id {
    position: static;
    display: inline-block;
    font-size: 30px;
    color: rgba(255,255,255,0.45);
    text-shadow: none;
    letter-spacing: -1px;
    margin-bottom: 4px;
    line-height: 1;
  }
  .plans-panel.is-active .plans-panel-id {
    position: static;
    top: auto;
    bottom: auto;
    font-size: 30px;
    color: var(--c-red);
    text-shadow: 0 0 18px rgba(234,52,51,0.6);
  }
  .plans-panel-title {
    font-size: 22px;
    margin: 0;
    opacity: 1;
    transform: none;
    transition: none;
  }

  .plans-panel:not(.is-active) .plans-panel-kicker,
  .plans-panel:not(.is-active) .plans-panel-sub,
  .plans-panel:not(.is-active) .plans-grid,
  .plans-panel:not(.is-active) .plans-cta-row,
  .plans-panel:not(.is-active) .plans-featured-tag {
    display: none;
  }

  .plans-panel.is-active .plans-panel-kicker,
  .plans-panel.is-active .plans-panel-sub,
  .plans-panel.is-active .plans-grid,
  .plans-panel.is-active .plans-cta-row,
  .plans-panel.is-active .plans-badge {
    opacity: 1;
    transform: none;
    transition-delay: 0ms;
  }
  .plans-panel.is-active .plans-panel-title { margin: 6px 0 6px; }
  .plans-panel.is-active .plans-panel-kicker { margin: 10px 0 12px; }
  .plans-panel.is-active .plans-panel-sub { margin: 0 0 14px; }

  .plans-grid { grid-template-columns: 1fr; gap: 10px; }

  .plans-cta-row {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: 14px;
  }
  .plans-cta-btn, .plans-ghost-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 14px 18px;
  }

  .plans-stage-wrap > .plans-nav { display: none; }
  .plans-nav-mobile { display: flex; justify-content: center; gap: 12px; margin-top: 8px; }
}

/* ============================================
   COMMUNITY TRIBE SECTION
============================================ */
.community-tribe {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: #0a0808;
}

.ct-text-layer {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  transform: translateY(-5%);
  text-align: center;
  pointer-events: none;
}

.ct-small-title {
  font-family: var(--ff-accent);
  font-size: clamp(16px, 2.2vw, 38px);
  font-weight: 700;
  color: var(--c-text-dim);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: clamp(4px, 0.4vw, 10px);
  z-index: 5;
}

.ct-massive-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 0.8;
  font-family: var(--ff-display);
  font-size: clamp(72px, 16vw, 220px);
  font-weight: 900;
  color: #EA3433;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.ct-word-1 { z-index: 2; }
.ct-word-2 { z-index: 4; }

.ct-cards-layer {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 3;
  pointer-events: none;
}

.ct-card-wrapper {
  position: absolute;
  pointer-events: auto;
  will-change: transform;
}

.ct-clay-card {
  width: 100%; height: 100%;
  border-radius: 12px;
  box-shadow:
    0px 24px 48px rgba(0,0,0,0.7),
    0px 8px 16px rgba(0,0,0,0.5),
    inset 1px 1px 4px rgba(255,255,255,0.06),
    inset -1px -1px 4px rgba(0,0,0,0.5);
  border: 1px solid rgba(234,52,51,0.22);
  overflow: hidden;
  position: relative;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
}

.ct-clay-card::before {
  display: none;
}

.ct-clay-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  filter: none;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.ct-clay-card:hover {
  box-shadow:
    0px 32px 60px rgba(234,52,51,0.18),
    0px 12px 24px rgba(0,0,0,0.6);
  border-color: rgba(234,52,51,0.55);
  transform: scale(1.06) translateZ(20px);
}

.ct-clay-card:hover img {
  transform: scale(1.08);
  filter: brightness(0.92) contrast(1.08) saturate(0.95);
}

.ct-cta {
  position: absolute;
  bottom: clamp(28px, 4.5vh, 60px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  white-space: nowrap;
}

.ct-c1 { top: 26%; left: 8%;  width: 12vw; height: 16vw; min-width: 95px;  min-height: 130px; }
.ct-c2 { top: 44%; left: 19%; width: 14vw; height: 19vw; min-width: 115px; min-height: 155px; z-index: 2; }
.ct-c3 { top: 32%; left: 31%; width: 18vw; height: 23vw; min-width: 150px; min-height: 190px; z-index: 5; }
.ct-c4 { top: 34%; left: 51%; width: 18vw; height: 23vw; min-width: 150px; min-height: 190px; z-index: 5; }
.ct-c5 { top: 44%; left: 67%; width: 14vw; height: 19vw; min-width: 115px; min-height: 155px; z-index: 2; }
.ct-c6 { top: 26%; left: 80%; width: 12vw; height: 16vw; min-width: 95px;  min-height: 130px; }

@media (max-width: 768px) {
  .ct-cards-layer { display: none; }
  .community-tribe { height: auto; min-height: 55vh; padding: 80px 20px 100px; }
  .ct-massive-text { font-size: clamp(58px, 21vw, 120px); }
}

