@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Sora:wght@400;500;600;700&display=swap');

:root {
  --void: #06080f;
  --surface: #0c1018;
  --elevated: #141b28;
  --glass: rgba(20, 27, 40, 0.72);
  --emerald: #10b981;
  --emerald-bright: #34d399;
  --emerald-dim: #059669;
  --gold: #f59e0b;
  --gold-light: #fcd34d;
  --violet: #8b5cf6;
  --rose: #f472b6;
  --text: #f1f5f9;
  --muted: #94a3b8;
  --border: rgba(148, 163, 184, 0.14);
  --glow-emerald: 0 0 40px rgba(16, 185, 129, 0.35);
  --glow-gold: 0 0 30px rgba(245, 158, 11, 0.25);
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-ui: 'Sora', system-ui, sans-serif;
  --radius: 20px;
  --radius-sm: 12px;
  /* aliases compat */
  --teal: var(--emerald);
  --teal-dark: var(--emerald-dim);
  --coral: var(--gold);
  --coral-light: var(--gold-light);
  --sand: var(--text);
  --ink: var(--text);
  --blush: var(--gold-light);
  --mist: var(--muted);
  --white: #fff;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-ui);
  color: var(--text);
  background: var(--void);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--emerald-bright); text-decoration: none; }
a:hover { color: var(--gold-light); }

.skip-link {
  position: absolute; left: -9999px; z-index: 9999;
  padding: 8px 16px; background: var(--emerald); color: var(--void); font-weight: 700;
}
.skip-link:focus { left: 8px; top: 8px; }

/* ── Top bar ── */
.top-bar {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 8px 24px; background: var(--surface);
  border-bottom: 1px solid var(--border);
  font-size: 0.7rem; color: var(--muted); flex-wrap: wrap;
}
.tasa-bcv { color: var(--emerald-bright); white-space: nowrap; font-weight: 600; }

/* ── Header glass ── */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(6, 8, 15, 0.82);
  backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.site-header.scrolled {
  border-color: var(--border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
.header-inner {
  max-width: 1240px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; gap: 20px;
}
.logo img { height: 38px; width: auto; }
.nav-panel { display: flex; gap: 28px; margin-left: auto; }
.nav-panel a {
  color: var(--muted); font-weight: 500; font-size: 0.88rem;
  text-decoration: none; transition: color 0.2s;
  position: relative;
}
.nav-panel a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg, var(--emerald), var(--gold));
  transform: scaleX(0); transition: transform 0.25s;
}
.nav-panel a:hover, .nav-panel a.active { color: var(--text); text-decoration: none; }
.nav-panel a:hover::after, .nav-panel a.active::after { transform: scaleX(1); }
.nav-btn {
  display: none; background: var(--elevated); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 8px 14px; font-size: 1.2rem;
  cursor: pointer; color: var(--text);
}
.header-cta { margin-left: 8px; white-space: nowrap; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 999px; font-weight: 600; font-size: 0.88rem;
  border: 2px solid transparent; cursor: pointer; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.25s, background 0.25s;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary, .btn-coral {
  background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-dim) 100%);
  color: var(--void); border-color: transparent;
  box-shadow: var(--glow-emerald);
}
.btn-primary:hover, .btn-coral:hover {
  box-shadow: 0 0 50px rgba(16, 185, 129, 0.5);
}
.btn-gold, .btn-teal {
  background: linear-gradient(135deg, var(--gold) 0%, #d97706 100%);
  color: var(--void); box-shadow: var(--glow-gold);
}
.btn-ghost, .btn-outline {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text); border-color: var(--border);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover, .btn-outline:hover {
  background: rgba(16, 185, 129, 0.12);
  border-color: var(--emerald);
  color: var(--emerald-bright);
}
.btn-block { width: 100%; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; position: relative; }
.section-dark { background: var(--surface); }
.section-void { background: var(--void); }
.section-glow {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(16, 185, 129, 0.08), transparent),
    var(--void);
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--emerald-bright); margin-bottom: 16px;
}
.eyebrow::before {
  content: ''; width: 24px; height: 2px;
  background: linear-gradient(90deg, var(--emerald), var(--gold));
}
.section-intro { margin-bottom: 48px; }
.section-intro.center { text-align: center; max-width: 760px; margin-left: auto; margin-right: auto; }
.section-intro h2, .section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  line-height: 1.15; font-weight: 400; letter-spacing: -0.02em;
}
.section-intro p { margin-top: 16px; color: var(--muted); max-width: 620px; }
.section-intro.center p { margin-left: auto; margin-right: auto; }
.gradient-text {
  background: linear-gradient(135deg, var(--emerald-bright) 0%, var(--gold-light) 50%, var(--emerald) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ── HERO AURORA ── */
.hero-aurora {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden; padding: 100px 0 80px;
}
.hero-aurora-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-aurora-bg img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.22;
  filter: saturate(0.6) brightness(0.5);
}
.hero-aurora-mesh {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 60% 50% at 20% 40%, rgba(16, 185, 129, 0.25), transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(139, 92, 246, 0.18), transparent 55%),
    radial-gradient(ellipse 40% 35% at 70% 80%, rgba(245, 158, 11, 0.12), transparent 50%),
    linear-gradient(180deg, var(--void) 0%, transparent 30%, transparent 70%, var(--void) 100%);
  animation: auroraShift 12s ease-in-out infinite alternate;
}
@keyframes auroraShift {
  0% { filter: hue-rotate(0deg); opacity: 1; }
  100% { filter: hue-rotate(15deg); opacity: 0.92; }
}
.hero-grid-lines {
  position: absolute; inset: 0; z-index: 1; opacity: 0.04;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-inner {
  position: relative; z-index: 3;
  max-width: 1240px; margin: 0 auto; padding: 0 24px; width: 100%;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(16, 185, 129, 0.1); border: 1px solid rgba(16, 185, 129, 0.3);
  font-size: 0.72rem; font-weight: 600; color: var(--emerald-bright);
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--emerald); box-shadow: 0 0 12px var(--emerald);
  animation: pulse 2s ease infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  line-height: 1.08; margin-bottom: 24px; font-weight: 400;
}
.hero-lead { font-size: 1.05rem; color: var(--muted); margin-bottom: 32px; max-width: 520px; line-height: 1.7; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.hero-disclaimer {
  font-size: 0.78rem; color: var(--muted); line-height: 1.55;
  padding: 14px 18px; border-radius: var(--radius-sm);
  background: rgba(245, 158, 11, 0.06); border-left: 3px solid var(--gold);
  max-width: 540px;
}
.hero-disclaimer strong { color: var(--gold-light); }

/* Dashboard glass card */
.hero-dashboard {
  position: relative;
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(1.5);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.06);
}
.hero-dashboard::before {
  content: ''; position: absolute; inset: -1px; border-radius: 25px; padding: 1px;
  background: linear-gradient(135deg, rgba(16,185,129,0.5), transparent 40%, rgba(245,158,11,0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.dash-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--border);
}
.dash-header span:first-child { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }
.dash-header span:last-child { font-size: 0.72rem; color: var(--emerald-bright); font-weight: 600; }
.dash-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 20px; }
.dash-stat {
  text-align: center; padding: 16px 8px;
  background: rgba(0,0,0,0.25); border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.dash-stat strong {
  display: block; font-family: var(--font-display); font-size: 1.75rem;
  color: var(--emerald-bright); line-height: 1;
}
.dash-stat span { font-size: 0.65rem; color: var(--muted); margin-top: 6px; display: block; }
.dash-chart { display: flex; align-items: flex-end; gap: 8px; height: 100px; margin-bottom: 20px; padding: 0 4px; }
.dash-bar {
  flex: 1; border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--emerald-bright), var(--emerald-dim));
  animation: barGrow 1.2s ease forwards;
  transform-origin: bottom;
  transform: scaleY(0);
}
.dash-bar:nth-child(1) { height: 45%; animation-delay: 0.1s; }
.dash-bar:nth-child(2) { height: 72%; animation-delay: 0.2s; background: linear-gradient(180deg, var(--gold-light), var(--gold)); }
.dash-bar:nth-child(3) { height: 58%; animation-delay: 0.3s; }
.dash-bar:nth-child(4) { height: 88%; animation-delay: 0.4s; }
.dash-bar:nth-child(5) { height: 65%; animation-delay: 0.5s; background: linear-gradient(180deg, var(--violet), #6d28d9); }
.dash-bar:nth-child(6) { height: 95%; animation-delay: 0.6s; }
@keyframes barGrow { to { transform: scaleY(1); } }
.dash-photo { border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 16/9; position: relative; }
.dash-photo img { width: 100%; height: 100%; object-fit: cover; }
.dash-photo-label {
  position: absolute; bottom: 12px; left: 12px;
  padding: 6px 12px; border-radius: 999px; font-size: 0.68rem; font-weight: 600;
  background: rgba(6,8,15,0.85); border: 1px solid var(--border); color: var(--text);
}

/* Marquee */
.marquee-wrap {
  overflow: hidden; padding: 20px 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.marquee-track {
  display: flex; gap: 48px; width: max-content;
  animation: marquee 35s linear infinite;
}
.marquee-track span {
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted); white-space: nowrap;
  display: inline-flex; align-items: center; gap: 48px;
}
.marquee-track span::after {
  content: '◆'; color: var(--emerald); font-size: 0.5rem;
}
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Stats ribbon */
.stats-ribbon {
  margin-top: -40px; position: relative; z-index: 10;
}
.stats-ribbon-inner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--border); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.stat-cell {
  background: var(--elevated); padding: 28px 20px; text-align: center;
  transition: background 0.3s;
}
.stat-cell:hover { background: rgba(16, 185, 129, 0.08); }
.stat-cell strong {
  display: block; font-family: var(--font-display); font-size: 2rem;
  color: var(--emerald-bright); margin-bottom: 6px;
}
.stat-cell span { font-size: 0.75rem; color: var(--muted); }

/* Topic pills */
.topic-orbit { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.topic-pill {
  padding: 12px 22px; border-radius: 999px; font-size: 0.82rem; font-weight: 500;
  background: var(--elevated); border: 1px solid var(--border);
  transition: all 0.25s; cursor: default;
}
.topic-pill:hover {
  border-color: var(--emerald); color: var(--emerald-bright);
  box-shadow: var(--glow-emerald); transform: translateY(-2px);
}

/* Bento services */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.bento-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--elevated); border: 1px solid var(--border);
  transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
  display: flex; flex-direction: row;
  align-items: stretch;
  min-height: 0;
}
.bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: var(--glow-emerald), var(--shadow);
}
.bento-card.span-6 { grid-column: span 1; }
.bento-card.span-4 { grid-column: span 1; }
.bento-card.span-8 { grid-column: span 1; }
.bento-card.tall { grid-row: span 1; }
.bento-img {
  position: relative; overflow: hidden; flex-shrink: 0;
  width: 38%; max-width: 200px; min-width: 140px;
  aspect-ratio: 4/3;
  max-height: 148px;
}
.bento-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.bento-card:hover .bento-img img { transform: scale(1.05); }
.bento-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(6,8,15,0.35) 100%);
}
.bento-body { padding: 18px 20px; flex: 1; display: flex; flex-direction: column; min-width: 0; }
.bento-body .sku { font-size: 0.68rem; font-weight: 700; color: var(--gold); letter-spacing: 0.1em; }
.bento-body h3 { font-family: var(--font-display); font-size: 1.1rem; margin: 6px 0 8px; }
.bento-body p { font-size: 0.82rem; color: var(--muted); flex: 1; margin-bottom: 10px; line-height: 1.5; }
.bento-card.featured .bento-img,
.bento-card.compact .bento-img {
  width: 38%; max-width: 200px; min-width: 140px;
  aspect-ratio: 4/3; max-height: 148px;
}

/* About split */
.about-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.about-visual { position: relative; }
.about-visual-main {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow);
}
.about-visual-main img { width: 100%; aspect-ratio: 5/4; max-height: 420px; object-fit: cover; }
.about-float {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--glass); backdrop-filter: blur(16px);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 20px 24px; box-shadow: var(--glow-emerald);
}
.about-float strong { display: block; font-family: var(--font-display); font-size: 1.5rem; color: var(--gold-light); }
.about-float span { font-size: 0.75rem; color: var(--muted); }
.about-split ul { list-style: none; margin: 20px 0; }
.about-split li {
  padding: 10px 0 10px 28px; position: relative; font-size: 0.92rem; color: var(--muted);
  border-bottom: 1px solid var(--border);
}
.about-split li::before {
  content: '✓'; position: absolute; left: 0; color: var(--emerald); font-weight: 700;
}

/* Timeline methodology */
.timeline {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative;
}
.timeline::before {
  content: ''; position: absolute; top: 36px; left: 12%; right: 12%;
  height: 2px; background: linear-gradient(90deg, var(--emerald), var(--gold), var(--violet));
  opacity: 0.4;
}
.timeline-step { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.timeline-num {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.4rem;
  background: var(--elevated); border: 2px solid var(--emerald);
  box-shadow: var(--glow-emerald); color: var(--emerald-bright);
}
.timeline-step h3 { font-size: 0.95rem; margin-bottom: 8px; }
.timeline-step p { font-size: 0.8rem; color: var(--muted); }

/* Mosaic gallery */
.mosaic {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 160px); gap: 10px;
}
.mosaic-item {
  position: relative; border-radius: var(--radius-sm); overflow: hidden;
  border: 1px solid var(--border); cursor: default;
}
.mosaic-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s, filter 0.4s; }
.mosaic-item:hover img { transform: scale(1.08); filter: brightness(1.1); }
.mosaic-item::after {
  content: attr(data-label); position: absolute; inset: 0;
  display: flex; align-items: flex-end; padding: 16px;
  background: linear-gradient(180deg, transparent 50%, rgba(6,8,15,0.9));
  font-size: 0.78rem; font-weight: 600; opacity: 0; transition: opacity 0.3s;
}
.mosaic-item:hover::after { opacity: 1; }
.mosaic-item.wide { grid-column: span 2; }
.mosaic-item.tall { grid-row: span 2; }

/* Perks */
.perk-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.perk {
  padding: 28px 22px; border-radius: var(--radius);
  background: var(--elevated); border: 1px solid var(--border);
  text-align: center; transition: all 0.3s;
}
.perk:hover { border-color: var(--emerald); transform: translateY(-3px); }
.perk-icon {
  width: 52px; height: 52px; margin: 0 auto 16px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
  background: rgba(16, 185, 129, 0.12); border: 1px solid rgba(16, 185, 129, 0.25);
}
.perk h3 { font-size: 0.92rem; margin-bottom: 8px; }
.perk p { font-size: 0.8rem; color: var(--muted); }

/* FAQ glass */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  margin-bottom: 12px; border-radius: var(--radius-sm);
  background: var(--elevated); border: 1px solid var(--border); overflow: hidden;
  transition: border-color 0.25s;
}
.faq-item.open { border-color: rgba(16, 185, 129, 0.35); }
.faq-q {
  width: 100%; text-align: left; padding: 20px 24px;
  background: none; border: none; font-weight: 600; font-size: 0.92rem;
  cursor: pointer; color: var(--text);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q::after {
  content: '+'; font-size: 1.4rem; color: var(--emerald); flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-item.open .faq-q::after { content: '−'; color: var(--gold); }
.faq-a { display: none; padding: 0 24px 20px; font-size: 0.86rem; color: var(--muted); line-height: 1.65; }
.faq-item.open .faq-a { display: block; }

/* CTA cinematic */
.cta-cinema {
  position: relative; border-radius: 28px; overflow: hidden; min-height: 360px;
  display: flex; align-items: center; border: 1px solid var(--border);
}
.cta-cinema-bg { position: absolute; inset: 0; }
.cta-cinema-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-cinema-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(6,8,15,0.95) 0%, rgba(6,8,15,0.7) 50%, rgba(16,185,129,0.15) 100%);
}
.cta-cinema-inner { position: relative; z-index: 1; padding: 56px; max-width: 580px; }
.cta-cinema-inner h2 {
  font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 16px;
}
.cta-cinema-inner p { color: var(--muted); margin-bottom: 28px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.contact-list { list-style: none; margin-top: 20px; }
.contact-list li {
  margin-bottom: 16px; font-size: 0.92rem; padding-left: 32px; position: relative; color: var(--muted);
}
.contact-list li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--emerald); box-shadow: 0 0 10px var(--emerald);
}
.contact-list a { color: var(--emerald-bright); }
.map-frame {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); aspect-ratio: 4/3;
  box-shadow: var(--shadow);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.3) contrast(1.1); }

/* Disclaimer & footer */
.ads-disclaimer {
  background: rgba(245, 158, 11, 0.06);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-left: 4px solid var(--gold);
  padding: 18px 24px; margin: 40px auto; max-width: 1240px;
  font-size: 0.84rem; color: var(--muted); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.ads-disclaimer strong { color: var(--gold-light); }
.ads-disclaimer a { color: var(--emerald-bright); }

.legal-strip {
  background: var(--surface); text-align: center; padding: 14px 24px;
  font-size: 0.8rem; color: var(--muted); border-top: 1px solid var(--border);
}
.legal-strip a { color: var(--emerald-bright); }

.site-footer {
  background: var(--void); padding: 56px 24px 28px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px;
}
.footer-brand .footer-logo { height: 38px; margin-bottom: 16px; }
.footer-tagline { font-size: 0.84rem; line-height: 1.6; max-width: 300px; color: var(--muted); }
.site-footer h4 {
  color: var(--text); font-size: 0.72rem; margin-bottom: 14px;
  text-transform: uppercase; letter-spacing: 0.12em;
}
.site-footer a { display: block; color: var(--muted); font-size: 0.86rem; margin-bottom: 10px; text-decoration: none; }
.site-footer a:hover { color: var(--emerald-bright); }
.footer-base {
  max-width: 1240px; margin: 0 auto; padding-top: 28px;
  border-top: 1px solid var(--border); font-size: 0.78rem; text-align: center; color: var(--muted);
}
.footer-legal { margin-top: 10px; }

.fab-wa {
  position: fixed; bottom: 28px; right: 28px; z-index: 90;
  filter: drop-shadow(0 8px 24px rgba(37, 211, 102, 0.4));
  transition: transform 0.2s;
}
.fab-wa:hover { transform: scale(1.08); }

.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 300;
  background: var(--elevated); color: var(--text);
  padding: 20px 24px; transform: translateY(110%);
  transition: transform 0.4s ease;
  border-top: 2px solid var(--emerald);
  backdrop-filter: blur(12px);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center; gap: 20px; justify-content: space-between;
}
.cookie-inner p { font-size: 0.84rem; flex: 1; min-width: 260px; color: var(--muted); }
.cookie-inner a { color: var(--emerald-bright); }
.cookie-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Catalog */
.catalog-hero {
  position: relative; min-height: 420px; display: flex; align-items: flex-end;
  overflow: hidden; padding-bottom: 0;
}
.catalog-hero > img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0.35; filter: saturate(0.7);
}
.catalog-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,8,15,0.3) 0%, rgba(6,8,15,0.95) 100%);
}
.catalog-hero-inner {
  position: relative; z-index: 1; padding: 80px 24px 56px;
  max-width: 1240px; margin: 0 auto; width: 100%;
}
.catalog-hero h1 {
  font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 16px;
}
.catalog-hero p { color: var(--muted); max-width: 680px; font-size: 0.95rem; }

.catalog-intro {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: center; margin-bottom: 48px;
}
.catalog-intro-photo {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.chip {
  padding: 10px 18px; border-radius: 999px; border: 1px solid var(--border);
  background: var(--elevated); font-size: 0.8rem; font-weight: 500; cursor: pointer;
  color: var(--muted); transition: all 0.25s;
}
.chip.active, .chip:hover {
  background: rgba(16, 185, 129, 0.15); color: var(--emerald-bright);
  border-color: var(--emerald); box-shadow: var(--glow-emerald);
}
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.cat-card {
  background: var(--elevated); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); transition: all 0.35s;
  display: flex; flex-direction: row; align-items: stretch;
}
.cat-card:hover {
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: var(--glow-emerald), var(--shadow);
  transform: translateY(-4px);
}
.cat-img {
  flex-shrink: 0; width: 36%; max-width: 180px; min-width: 120px;
  overflow: hidden;
}
.cat-img img {
  width: 100%; height: 100%; min-height: 100%;
  aspect-ratio: 4/3; max-height: 140px; object-fit: cover;
}
.cat-body { padding: 18px 20px; border-top: none; border-left: 2px solid var(--emerald); flex: 1; min-width: 0; }
.cat-body h2 { font-family: var(--font-display); font-size: 1.15rem; margin: 8px 0; }
.feat-tags { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; margin: 12px 0; }
.feat-tags li {
  font-size: 0.68rem; background: rgba(16, 185, 129, 0.1);
  padding: 5px 12px; border-radius: 999px; color: var(--emerald-bright);
  border: 1px solid rgba(16, 185, 129, 0.2);
}
.modalidad-tag { display: inline-block; font-size: 0.72rem; color: var(--muted); margin-bottom: 12px; }
.precio-line strong { font-size: 1.05rem; color: var(--gold-light); }
.precio-line span { display: block; font-size: 0.78rem; color: var(--muted); }
.precio-note { font-size: 0.72rem; color: var(--emerald); margin-top: 6px; }
.sku { font-size: 0.68rem; font-weight: 700; color: var(--gold); letter-spacing: 0.1em; }

/* Legal pages */
.legal-page { padding: 56px 0 80px; background: var(--surface); }
.legal-page h1 { font-family: var(--font-display); font-size: 2.4rem; margin-bottom: 8px; }
.legal-page .fecha { color: var(--muted); font-size: 0.88rem; margin-bottom: 28px; }
.legal-page h2 {
  font-family: var(--font-display); font-size: 1.3rem; margin: 32px 0 14px;
  color: var(--emerald-bright);
}
.legal-page p, .legal-page li { font-size: 0.92rem; margin-bottom: 10px; color: var(--muted); }
.legal-page ul, .legal-page ol { padding-left: 24px; margin-bottom: 16px; }
.legal-page table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 0.84rem; }
.legal-page th, .legal-page td { border: 1px solid var(--border); padding: 12px; text-align: left; }
.legal-page th { background: var(--elevated); color: var(--text); }

/* Responsive */
@media (max-width: 1024px) {
  .hero-inner, .about-split, .contact-grid, .catalog-intro, .footer-grid { grid-template-columns: 1fr; }
  .bento-card.span-6, .bento-card.span-4, .bento-card.span-8 { grid-column: span 1; }
  .bento-card { flex-direction: column; }
  .bento-img, .bento-card.featured .bento-img, .bento-card.compact .bento-img {
    width: 100%; max-width: none; min-width: 0; max-height: 160px; aspect-ratio: 16/9;
  }
  .cat-card { flex-direction: column; }
  .cat-img { width: 100%; max-width: none; min-width: 0; }
  .cat-img img { max-height: 160px; aspect-ratio: 16/9; }
  .cat-body { border-left: none; border-top: 2px solid var(--emerald); }
  .timeline { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .timeline::before { display: none; }
  .mosaic { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .mosaic-item.wide, .mosaic-item.tall { grid-column: span 1; grid-row: span 1; }
  .mosaic-item { min-height: 180px; }
}
@media (max-width: 768px) {
  .stats-ribbon-inner, .perk-grid, .dash-stats { grid-template-columns: repeat(2, 1fr); }
  .nav-panel {
    position: fixed; inset: 64px 0 auto 0; background: var(--elevated);
    flex-direction: column; padding: 24px; gap: 16px;
    transform: translateY(-130%); transition: transform 0.35s;
    border-bottom: 1px solid var(--border);
  }
  .nav-panel.open { transform: translateY(0); }
  .nav-btn { display: block; margin-left: auto; }
  .header-cta { display: none; }
  .hero-aurora { min-height: auto; padding: 100px 0 60px; }
  .about-float { position: static; margin-top: 16px; display: inline-block; }
}
@media (max-width: 520px) {
  .stats-ribbon-inner, .perk-grid, .timeline, .dash-stats { grid-template-columns: 1fr; }
  .mosaic { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
}
