:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* ── Brand Tokens (extraídos del proyecto AHCME) ── */
  --bg:             #020712;
  --deep:           #040c1a;
  --blue:           #0b5cff;
  --emerald:        #00b060;
  --emerald-glow:   #31e6a4;
  --gold:           #e5c158;
  --gold-light:     #f2c94c;
  --muted:          #9eb0ca;
  --surface:        rgba(4, 15, 33, 0.75);
  --surface-strong: rgba(6, 22, 48, 0.92);
  --line:           rgba(255, 255, 255, 0.08);
  --danger:         #ff5f6d;
  --text:           #f5f8ff;

  /* ── Semantic ── */
  --radius:         8px;
  --radius-lg:      16px;
  --radius-xl:      24px;
  --shadow-glass:   0 24px 80px rgba(0, 0, 0, 0.28);
  --shadow-glow-em: 0 0 42px rgba(49, 230, 164, 0.32);
  --shadow-glow-go: 0 0 42px rgba(229, 193, 88, 0.32);

  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

html { overflow-x: hidden; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  min-height: 100dvh;
}

img, svg { display: block; }

a { color: inherit; text-decoration: none; }

ul[role="list"] { list-style: none; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── Layout ── */
.container {
  width: min(1200px, 100%);
  margin-inline: auto;
  padding-inline: clamp(16px, 5vw, 48px);
}
.container-narrow {
  width: min(800px, 100%);
  margin-inline: auto;
  padding-inline: clamp(16px, 5vw, 48px);
}

/* ── Typography helpers ── */
.eyebrow {
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 8px;
}
.eyebrow-light { color: rgba(255,255,255,0.55); }
.emerald-text  { color: var(--emerald-glow); }
.gold-text     { color: var(--gold); }
.muted         { color: var(--muted); }
.gradient-text {
  background: linear-gradient(135deg, var(--emerald-glow) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Glass card ── */
.glass-card {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-glass);
  border-radius: var(--radius-lg);
}

/* ── Sections ── */
.section {
  padding-block: clamp(64px, 10vw, 120px);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.section-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 20px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  border: 0;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  color: #06111f;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-glow));
  box-shadow: 0 12px 32px rgba(49, 230, 164, 0.28);
}
.btn-primary:hover { box-shadow: 0 16px 40px rgba(49, 230, 164, 0.42); }

.btn-ghost {
  color: var(--text);
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--line);
}
.btn-ghost:hover { background: rgba(255,255,255,0.14); }

.btn-ghost-light {
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.18); }

.btn-xl { min-height: 54px; padding: 0 28px; font-size: 1.05rem; border-radius: 10px; }

.btn-glow {
  animation: glowPulse 2.4s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 12px 32px rgba(49,230,164,0.28); }
  50%       { box-shadow: 0 16px 48px rgba(49,230,164,0.55); }
}

/* ── Reveal animation ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════
   NAV
════════════════════════════════════ */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(2, 7, 18, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--line);
  box-shadow: 0 8px 32px rgba(0,0,0,0.24);
}
.nav-inner {
  width: min(1200px, 100%);
  margin-inline: auto;
  padding-inline: clamp(16px, 5vw, 48px);
  height: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: var(--emerald-glow);
  background: linear-gradient(145deg, rgba(49,230,164,0.22), rgba(11,92,255,0.2));
  flex-shrink: 0;
}
.brand-name {
  display: block;
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}
.brand-sub {
  display: block;
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  list-style: none;
}
.nav-link {
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.18s, background 0.18s;
}
.nav-link:hover { color: var(--text); background: rgba(255,255,255,0.07); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 8px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  margin-left: auto;
  min-height: unset;
  box-shadow: none;
  color: var(--text);
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.22s, opacity 0.22s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px clamp(16px, 5vw, 48px) 20px;
  background: rgba(2, 7, 18, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--line);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16,1,0.3,1);
}
.mobile-menu.open { max-height: 400px; }
.mobile-link {
  padding: 12px 14px;
  border-radius: var(--radius);
  font-weight: 600;
  color: var(--muted);
  transition: color 0.18s, background 0.18s;
}
.mobile-link:hover { color: var(--text); background: rgba(255,255,255,0.07); }
.mobile-cta { margin-top: 8px; }

/* ════════════════════════════════════
   HERO
════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 72px;
  overflow: hidden;
}
/* hero-bg, orbs y grid — ELIMINADOS: el video es el único fondo */
.hero-bg, .hero-orb, .hero-orb-1, .hero-orb-2, .hero-orb-3, .hero-grid {
  display: none !important;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-block: clamp(60px, 10vw, 100px) 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid rgba(49,230,164,0.25);
  border-radius: 999px;
  background: rgba(49,230,164,0.08);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--emerald-glow);
  margin-bottom: 28px;
  animation: badgeFadeIn 0.7s ease;
}
@keyframes badgeFadeIn {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.pulse-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--emerald-glow);
  box-shadow: 0 0 8px var(--emerald-glow);
  animation: pulseDot 1.4s ease-in-out infinite;
  flex-shrink: 0;
}
.pulse-dot-small { width: 6px; height: 6px; }
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}
.hero-headline {
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.03em;
  max-width: 14ch;
  margin-bottom: 24px;
  animation: heroFadeUp 0.8s 0.1s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: var(--muted);
  max-width: 52ch;
  line-height: 1.65;
  margin-bottom: 36px;
  animation: heroFadeUp 0.8s 0.2s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-sub strong { color: var(--text); }
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 52px;
  animation: heroFadeUp 0.8s 0.3s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  backdrop-filter: blur(18px);
  padding: 20px 32px;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  animation: heroFadeUp 0.8s 0.4s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-stat { text-align: center; }
.hero-stat-value {
  display: block;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.hero-stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 600;
}
.hero-stat-divider {
  width: 1px;
  height: 44px;
  background: var(--line);
}

/* ── Ticker ── */
.ticker-bar {
  position: relative;
  z-index: 1;
  background: rgba(4,15,33,0.88);
  border-top: 1px solid var(--line);
  overflow: hidden;
  padding: 11px 0;
}
.ticker-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: tickerScroll 55s linear infinite;
}
.ticker-track span {
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  color: rgba(255,255,255,0.7);
  padding-right: 48px;
  border-right: 1px solid var(--line);
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-bar:hover .ticker-track { animation-play-state: paused; }

/* ════════════════════════════════════
   STATS
════════════════════════════════════ */
.stats-section { padding-block: 48px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stat-card {
  padding: 24px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-glow-em); }
.stat-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
}
.emerald-bg { color: var(--emerald-glow); background: rgba(49,230,164,0.12); }
.blue-bg    { color: #6ba3ff; background: rgba(11,92,255,0.15); }
.gold-bg    { color: var(--gold); background: rgba(229,193,88,0.12); }
.stat-body { min-width: 0; }
.stat-number {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.stat-desc { font-size: 0.82rem; color: var(--muted); margin-top: 4px; display: block; }

/* ════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.step-card {
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease;
}
.step-card:hover { transform: translateY(-6px); }
.step-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  user-select: none;
}
.emerald-num { color: rgba(49,230,164,0.08) !important; }
.step-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  display: grid;
  place-items: center;
  background: rgba(49,230,164,0.1);
  color: var(--emerald-glow);
  margin-bottom: 20px;
}
.gold-icon   { background: rgba(229,193,88,0.12); color: var(--gold); }
.emerald-icon{ background: rgba(49,230,164,0.12); color: var(--emerald-glow); }
.step-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.step-desc {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
}
.step-connector {
  position: absolute;
  right: -13px;
  top: 50%;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--emerald);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-connector::after {
  content: "→";
  color: #06111f;
  font-weight: 900;
  font-size: 0.75rem;
}

/* ════════════════════════════════════
   PLANES VIP
════════════════════════════════════ */
.plans-section {
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(49,230,164,0.04), transparent),
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(229,193,88,0.04), transparent);
}
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 32px;
}
.plan-card {
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s ease;
}
.plan-card:hover { transform: translateY(-8px) rotateX(2deg); }
.plan-featured {
  border-color: rgba(229,193,88,0.3);
  box-shadow: 0 24px 80px rgba(229,193,88,0.12);
  transform: scale(1.03);
}
.plan-featured:hover { transform: scale(1.03) translateY(-8px); }
.plan-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 4px 12px;
  background: var(--gold);
  color: #06111f;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.plan-accent-line {
  position: absolute;
  top: 0; left: 0;
  height: 3px;
  width: 100%;
}
.plan-accent-silver  { background: linear-gradient(90deg, #9fb5ca, #c8d8ec); }
.plan-accent-gold    { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.plan-accent-platinum{ background: linear-gradient(90deg, #d9f6ff, #a0e8ff, #d9f6ff); }
.plan-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.plan-orb {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.plan-orb-silver   { background: linear-gradient(145deg, #9fb5ca, #4a6080); color: #fff; }
.plan-orb-gold     { background: linear-gradient(145deg, var(--gold-light), #bd8f1a); color: #06111f; box-shadow: 0 0 24px rgba(229,193,88,0.3); }
.plan-orb-platinum { background: linear-gradient(145deg, #d9f6ff, #7ec8d8); color: #06111f; box-shadow: 0 0 24px rgba(217,246,255,0.3); }
.plan-tier  { font-size: 0.72rem; color: var(--muted); font-weight: 600; }
.plan-name  { font-size: 1.3rem; font-weight: 900; line-height: 1.1; }
.plan-name-silver   { color: #c8d8ec; }
.plan-name-gold     { color: var(--gold); }
.plan-name-platinum { color: #d9f6ff; }
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 16px;
}
.plan-amount { font-size: 2rem; font-weight: 900; letter-spacing: -0.02em; }
.plan-period { font-size: 0.82rem; color: var(--muted); }
.plan-roi {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: rgba(49,230,164,0.08);
  border: 1px solid rgba(49,230,164,0.15);
  margin-bottom: 24px;
}
.plan-roi-value {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--emerald-glow);
}
.plan-roi-gold     { color: var(--gold); }
.plan-roi-platinum { color: #d9f6ff; }
.plan-roi-label { font-size: 0.8rem; color: var(--muted); }
.plan-benefits { display: grid; gap: 10px; margin-bottom: 28px; }
.plan-benefit {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
}
.plan-benefit svg { color: var(--emerald-glow); flex-shrink: 0; }

.btn-plan-silver {
  width: 100%;
  color: #c8d8ec;
  background: rgba(159,181,202,0.12);
  border: 1px solid rgba(159,181,202,0.25);
  box-shadow: none;
}
.btn-plan-silver:hover { background: rgba(159,181,202,0.2); }
.btn-plan-gold {
  width: 100%;
  color: #06111f;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  box-shadow: 0 8px 28px rgba(229,193,88,0.3);
}
.btn-plan-gold:hover { box-shadow: 0 12px 36px rgba(229,193,88,0.45); }
.btn-plan-platinum {
  width: 100%;
  color: #06111f;
  background: linear-gradient(135deg, #d9f6ff, #7ec8d8);
  box-shadow: 0 8px 28px rgba(217,246,255,0.25);
}
.btn-plan-platinum:hover { box-shadow: 0 12px 36px rgba(217,246,255,0.38); }

.roi-teaser {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 36px;
  flex-wrap: wrap;
}
.roi-teaser-content h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 6px; }
.roi-teaser-content p  { font-size: 0.92rem; }

/* ════════════════════════════════════
   RESULTADOS / EVENTOS
════════════════════════════════════ */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}
.event-card { padding: 24px; transition: transform 0.22s ease; }
.event-card:hover { transform: translateY(-4px); }
.event-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.sport-badge {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
}
.sport-soccer     { background: rgba(49,230,164,0.12); color: var(--emerald-glow); }
.sport-tennis     { background: rgba(229,193,88,0.12); color: var(--gold); }
.sport-basketball { background: rgba(11,92,255,0.15); color: #6ba3ff; }
.event-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 900;
  color: var(--emerald-glow);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.event-finished {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.event-title { font-size: 1rem; font-weight: 800; margin-bottom: 4px; }
.event-sub   { font-size: 0.8rem; margin-bottom: 16px; }
.event-roi   { display: flex; align-items: baseline; gap: 8px; margin-bottom: 12px; }
.event-roi-value { font-size: 1.8rem; font-weight: 900; letter-spacing: -0.02em; }
.event-roi-label { font-size: 0.78rem; color: var(--muted); }
.event-progress {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  overflow: hidden;
}
.event-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--emerald), var(--emerald-glow));
  border-radius: 999px;
  animation: progressPulse 2s ease-in-out infinite;
}
.event-progress-done { animation: none; opacity: 0.6; }
@keyframes progressPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.65; }
}

/* Movement feed */
.movement-feed { padding: 20px 24px; }
.movement-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.movement-title { font-weight: 800; font-size: 0.9rem; }
.movement-ticker { overflow: hidden; height: 36px; }
.movement-track { display: flex; flex-direction: column; }
.movement-item {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 36px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
}
.mov-icon { font-size: 1rem; flex-shrink: 0; }

/* ════════════════════════════════════
   SEGURIDAD
════════════════════════════════════ */
.security-section {
  background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(11,92,255,0.05), transparent);
}
.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.security-card {
  padding: 28px 24px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.security-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(11,92,255,0.14); }
.security-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  background: rgba(49,230,164,0.1);
  color: var(--emerald-glow);
  margin-bottom: 16px;
}
.security-icon-gold { background: rgba(229,193,88,0.1); color: var(--gold); }
.security-icon-blue { background: rgba(11,92,255,0.12); color: #6ba3ff; }
.security-title { font-size: 1rem; font-weight: 800; margin-bottom: 10px; }
.security-desc  { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

/* ════════════════════════════════════
   TESTIMONIOS
════════════════════════════════════ */
.testimonials-track-wrapper { overflow: hidden; }
.testimonials-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.testimonial-card {
  padding: 28px 24px;
  flex: 0 0 calc(33.333% - 14px);
  min-width: 0;
}
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 0.85rem;
  color: #06111f;
  flex-shrink: 0;
}
.testimonial-name  { display: block; font-weight: 800; font-size: 0.95rem; }
.testimonial-plan  { display: block; font-size: 0.78rem; font-weight: 600; margin-top: 2px; }
.testimonial-stars { font-size: 1rem; color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; }
.testimonial-text  { font-size: 0.88rem; color: rgba(255,255,255,0.75); line-height: 1.7; }
.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}
.testimonial-btn {
  width: 40px;
  height: 40px;
  min-height: unset;
  padding: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: none;
  transition: background 0.18s;
}
.testimonial-btn:hover { background: rgba(255,255,255,0.14); }
.testimonial-dots { display: flex; gap: 8px; }
.testimonial-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background 0.18s, transform 0.18s;
  min-height: unset;
  box-shadow: none;
}
.testimonial-dot.active {
  background: var(--emerald-glow);
  transform: scale(1.4);
}

/* ════════════════════════════════════
   FAQ
════════════════════════════════════ */
.faq-list { display: grid; gap: 12px; }
.faq-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.22s;
}
.faq-item[open] { box-shadow: 0 12px 40px rgba(49,230,164,0.1); border-color: rgba(49,230,164,0.2); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-weight: 700;
  font-size: 0.97rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--emerald-glow);
  flex-shrink: 0;
  transition: transform 0.22s;
  line-height: 1;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ════════════════════════════════════
   CTA FINAL
════════════════════════════════════ */
.cta-final-section {
  padding-block: clamp(48px, 8vw, 96px);
}
.cta-final-card {
  position: relative;
  border-radius: var(--radius-xl);
  padding: clamp(48px, 8vw, 80px) clamp(32px, 6vw, 64px);
  overflow: hidden;
  border: 1px solid rgba(49,230,164,0.2);
  text-align: center;
}
.cta-final-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 80% at 20% 50%, rgba(49,230,164,0.12), transparent),
    radial-gradient(ellipse 60% 70% at 80% 30%, rgba(229,193,88,0.10), transparent),
    var(--surface-strong);
  z-index: 0;
}
.cta-final-content {
  position: relative;
  z-index: 1;
}
.cta-final-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.cta-final-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 52ch;
  margin-inline: auto;
  line-height: 1.6;
  margin-bottom: 36px;
}
.cta-final-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.cta-trust-badges {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
}

/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
.footer {
  border-top: 1px solid var(--line);
  padding-block: 64px 32px;
  background: rgba(2,7,18,0.88);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand-lockup { margin-bottom: 16px; }
.footer-tagline {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 32ch;
  margin-bottom: 20px;
}
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--line);
  color: var(--muted);
  transition: color 0.18s, background 0.18s;
}
.social-link:hover { color: var(--text); background: rgba(255,255,255,0.14); }
.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-nav-title {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 14px;
}
.footer-nav ul { display: grid; gap: 8px; }
.footer-link { font-size: 0.88rem; color: var(--muted); transition: color 0.18s; }
.footer-link:hover { color: var(--text); }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  text-align: center;
}
.footer-copy        { font-size: 0.85rem; color: rgba(255,255,255,0.4); }
.footer-disclaimer  { font-size: 0.75rem; color: rgba(255,255,255,0.25); max-width: 60ch; line-height: 1.5; }

/* ── Scroll to top ── */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  min-height: unset;
  padding: 0;
  border-radius: 50%;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  color: var(--text);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.25s, transform 0.25s;
  z-index: 99;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--emerald); color: #06111f; border-color: transparent; }

/* ════════════════════════════════════
   QUIÉNES SOMOS / ABOUT
════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: flex-start;
  margin-bottom: 48px;
}
.about-quote {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.6;
  font-weight: 500;
  border-left: 4px solid var(--emerald-glow);
  padding-left: 24px;
  color: var(--text);
  margin-bottom: 24px;
}
.about-desc {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 24px;
}
.about-mission-vision {
  display: grid;
  gap: 20px;
}
.mv-card {
  padding: 24px;
}
.mv-title {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mv-title svg {
  color: var(--emerald-glow);
}
.mv-text {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ════════════════════════════════════
   SERVICIOS
════════════════════════════════════ */
.services-intro {
  max-width: 850px;
  margin-inline: auto;
  text-align: center;
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 48px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  padding: 32px 24px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow-em);
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  background: rgba(49,230,164,0.1);
  color: var(--emerald-glow);
  margin-bottom: 20px;
}
.service-title {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.service-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */
@media (max-width: 1024px) {
  .stats-grid        { grid-template-columns: repeat(2, 1fr); }
  .plans-grid        { grid-template-columns: repeat(2, 1fr); }
  .plan-featured     { transform: none; }
  .plan-featured:hover { transform: translateY(-8px); }
  .security-grid     { grid-template-columns: repeat(2, 1fr); }
  .services-grid     { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }

  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .services-grid { grid-template-columns: 1fr; }

  .steps-grid { grid-template-columns: 1fr; }
  .step-connector { display: none; }

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

  .events-grid { grid-template-columns: 1fr; }

  .security-grid { grid-template-columns: 1fr; }

  .testimonial-card { flex: 0 0 calc(100% - 20px); }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-nav  { grid-template-columns: repeat(2, 1fr); }

  .hero-stats { gap: 20px; padding: 16px 20px; }
  .hero-stat-divider { display: none; }

  .roi-teaser { flex-direction: column; text-align: center; padding: 24px; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-xl { justify-content: center; }
  .stats-grid { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: 1fr; }
  .cta-final-actions { flex-direction: column; align-items: stretch; }
  .testimonial-card { flex: 0 0 100%; }
}

/* Three.js backdrop — DESACTIVADO: el video es el único fondo */
#three-backdrop {
  display: none !important;
}


/* ══════════════════════════════════════════════════════════
   EXPERIENCIA VIDEO-SCROLL CINEMATOGRÁFICA
   Canvas full-screen controlado por scroll de 450vh.
   El video se reproduce frame a frame al bajar el scroll.
══════════════════════════════════════════════════════════ */

/* ── Sección exterior — da la altura para el scroll ── */
.video-scroll-section {
  position: relative;
  height: 450vh;           /* espacio total de scroll */
  overflow: visible;
}

/* ── Contenedor sticky — queda fijo en pantalla ── */
.video-scroll-pin {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #020712;     /* fallback mientras carga el video */
}

/* ── Canvas: FONDO FULL-SCREEN del video ── */
#cin-scroll-canvas,
#scroll-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  display: block;
}

/* video-overlay — QUITADO: solo queda el video puro */
.video-overlay {
  display: none !important;
}

/* ── Contenido superpuesto sobre el video ── */
.video-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(32px, 5vw, 60px);
  padding-block: clamp(40px, 8vh, 80px);
  padding-inline: clamp(16px, 4vw, 48px);
  overflow-y: auto;
  scrollbar-width: none;
}
.video-content::-webkit-scrollbar { display: none; }

/* ── Loader del canvas de video ── */
.cin-canvas-loader {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: rgba(2, 7, 18, 0.95);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 10;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.cin-loader-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid rgba(49, 230, 164, 0.15);
  border-top-color: var(--emerald-glow);
  border-radius: 50%;
  animation: spinnerRotate 0.8s linear infinite;
}
@keyframes spinnerRotate {
  to { transform: rotate(360deg); }
}



/* ── Sistema de capas parallax (dentro del sticky wrapper) ── */
.cin-layers {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.cin-layer {
  position: absolute;
  inset: 0;
  will-change: transform;
}

/* Capa 0: gradiente de fondo profundo */
.cin-layer-bg {
  background:
    radial-gradient(ellipse 120% 80% at 50% 0%,   rgba(11, 92, 255, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 80%  60% at 15% 100%, rgba(49, 230, 164, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse 60%  50% at 85% 50%,  rgba(229, 193, 88, 0.04) 0%, transparent 50%),
    linear-gradient(180deg, rgba(2,7,18,0) 0%, rgba(4,15,33,0.95) 40%, rgba(2,7,18,0) 100%);
  z-index: 0;
}

/* Capa 1: grid perspectiva */
.cin-layer-grid {
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 20%, transparent 80%);
  z-index: 1;
}

/* Capa 2: orbs ambientales */
.cin-layer-orbs { z-index: 2; }
.cin-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  pointer-events: none;
}
.cin-orb-a {
  width: clamp(300px, 50vw, 600px);
  height: clamp(300px, 50vw, 600px);
  top: -15%;  left: -10%;
  background: radial-gradient(circle, rgba(49,230,164,0.1) 0%, transparent 70%);
  animation: cinOrbA 9s ease-in-out infinite;
}
.cin-orb-b {
  width: clamp(250px, 40vw, 500px);
  height: clamp(250px, 40vw, 500px);
  top: 10%; right: -8%;
  background: radial-gradient(circle, rgba(229,193,88,0.08) 0%, transparent 70%);
  animation: cinOrbB 12s ease-in-out infinite reverse;
}
.cin-orb-c {
  width: clamp(200px, 30vw, 400px);
  height: clamp(200px, 30vw, 400px);
  bottom: -10%; left: 40%;
  background: radial-gradient(circle, rgba(11,92,255,0.07) 0%, transparent 70%);
  animation: cinOrbA 15s ease-in-out infinite 3s;
}
@keyframes cinOrbA {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%       { transform: translate(40px, -25px) scale(1.08); }
  70%       { transform: translate(-20px, 30px) scale(0.94); }
}
@keyframes cinOrbB {
  0%, 100% { transform: translate(0, 0) scale(1); }
  35%       { transform: translate(-30px, 20px) scale(1.06); }
  65%       { transform: translate(25px, -15px) scale(0.96); }
}

/* Capa 3: partículas SVG */
.cin-layer-particles { z-index: 3; }
.cin-particles-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: cinParticlesDrift 20s linear infinite;
}
@keyframes cinParticlesDrift {
  0%   { transform: translateX(0); }
  50%  { transform: translateX(-18px); }
  100% { transform: translateX(0); }
}

/* Capa 4: líneas HUD */
.cin-layer-hud { z-index: 4; }
.cin-hud-line {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(49,230,164,0.12) 20%,
    rgba(229,193,88,0.06) 50%,
    rgba(49,230,164,0.12) 80%,
    transparent 100%
  );
}
.cin-hud-line-1 { top: 22%;  animation: cinHudFade 4s ease-in-out infinite; }
.cin-hud-line-2 { top: 50%;  animation: cinHudFade 4s ease-in-out infinite 1.4s; }
.cin-hud-line-3 { top: 78%;  animation: cinHudFade 4s ease-in-out infinite 2.8s; }
@keyframes cinHudFade {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

/* ── Contenido ── */
.cin-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(48px, 8vw, 80px);
  padding-block: clamp(64px, 10vh, 120px);
  width: 100%;
}

/* ── Cabecera ── */
.cin-header {
  text-align: center;
  max-width: 660px;
}
.cin-title {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin: 12px 0 20px;
}
.cin-sub {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: var(--muted);
  line-height: 1.7;
}

/* ── Tarjetas ── */
.cin-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}
.cin-card {
  position: relative;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.3s cubic-bezier(0.16,1,0.3,1),
              border-color 0.3s ease;
  cursor: default;
}
.cin-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(49,230,164,0.2);
  box-shadow: 0 32px 80px rgba(0,0,0,0.32), 0 0 0 1px rgba(49,230,164,0.08);
}
.cin-card-featured {
  border-color: rgba(229,193,88,0.2);
  background: linear-gradient(145deg, rgba(6,22,48,0.9), rgba(40,30,5,0.6));
  box-shadow: 0 0 60px rgba(229,193,88,0.06);
}
.cin-card-featured:hover {
  border-color: rgba(229,193,88,0.35);
  box-shadow: 0 32px 80px rgba(229,193,88,0.12), 0 0 0 1px rgba(229,193,88,0.12);
}

/* Glow interior de tarjeta */
.cin-card-glow {
  position: absolute;
  top: -30px; left: -30px;
  width: 160px; height: 160px;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.cin-card:hover .cin-card-glow { opacity: 1; }
.cin-glow-emerald { background: rgba(49,230,164,0.18); }
.cin-glow-gold    { background: rgba(229,193,88,0.18); }
.cin-glow-blue    { background: rgba(11,92,255,0.18); }

/* Ícono de tarjeta */
.cin-card-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-lg);
  display: grid;
  place-items: center;
  background: rgba(49,230,164,0.1);
  color: var(--emerald-glow);
  margin-bottom: 18px;
}
.cin-icon-gold { background: rgba(229,193,88,0.12); color: var(--gold); }
.cin-icon-blue { background: rgba(11,92,255,0.15);  color: #6ba3ff; }

.cin-card-title {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.cin-card-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.cin-card-stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.cin-stat-value {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
}
.cin-stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
}

/* ── Métricas cinéticas ── */
.cin-metrics {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface-strong);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: clamp(20px, 3vw, 32px) clamp(24px, 5vw, 52px);
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(16px, 4vw, 48px);
  box-shadow: 0 0 80px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.06);
}
.cin-metric-item { text-align: center; }
.cin-metric-num {
  display: block;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.cin-metric-label {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
  white-space: nowrap;
}
.cin-metric-divider {
  width: 1px;
  height: 48px;
  background: var(--line);
  flex-shrink: 0;
}

/* ── Scroll indicator en el hero ── */
.hero-scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: heroFadeUp 0.8s 0.6s cubic-bezier(0.16,1,0.3,1) both;
  cursor: default;
}
.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 11px;
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}
.scroll-mouse::after {
  content: '';
  width: 3px;
  height: 7px;
  background: var(--emerald-glow);
  border-radius: 2px;
  animation: scrollBounce 1.6s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  60%       { transform: translateY(8px); opacity: 0.3; }
}

/* ── prefers-reduced-motion: desactiva animaciones no esenciales ── */
@media (prefers-reduced-motion: reduce) {
  .cin-orb-a, .cin-orb-b, .cin-orb-c,
  .cin-particles-svg,
  .cin-hud-line-1, .cin-hud-line-2, .cin-hud-line-3,
  .scroll-mouse::after {
    animation: none;
  }
  .cin-card { transition: none; }
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .cin-cards { grid-template-columns: 1fr 1fr; }
  .cin-card-featured { grid-column: span 2; }
  .cin-metrics { gap: clamp(12px, 3vw, 28px); }
}
@media (max-width: 600px) {
  .cin-cards { grid-template-columns: 1fr; }
  .cin-card-featured { grid-column: auto; }
  .cin-metrics { flex-direction: column; gap: 20px; }
  .cin-metric-divider { width: 40%; height: 1px; }
  .cin-hud-line { display: none; } /* simplificar en móvil */
}


