/* ═══════════════════════════════════════════════════════════════
   NATEX × BUBBLE — Site v2 Design System
   Mixed mode: dark cinematic hero / light consumer body
   Brand: navy #0D1035 · #2D326A | yellow #FCE400 | Inter + Space Grotesk
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* brand */
  --ink: #0A0D2C;
  --ink-2: #0D1035;
  --navy: #2D326A;
  --navy-soft: #151B4A;
  --navy-card: #1D2560;
  --yellow: #FCE400;
  --yellow-bright: #FFE94D;
  --paper: #F6F6F2;
  --white: #FFFFFF;
  --line-dark: rgba(255,255,255,0.09);
  --line-light: rgba(13,16,53,0.10);
  --txt-dark-1: #FFFFFF;
  --txt-dark-2: rgba(255,255,255,0.62);
  --txt-dark-3: rgba(255,255,255,0.40);
  --txt-light-1: #0D1035;
  --txt-light-2: #4B4D63;
  --txt-light-3: #8A8B9A;
  /* sub-brand accents */
  --acc-ninja: #592D80;
  --acc-activo: #FF009C;
  --acc-green: #2E7D5A;
  /* type */
  --f-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  --f-body: 'Inter', system-ui, sans-serif;
  --f-tech: 'Orbitron', 'Space Grotesk', sans-serif;
  --f-brand: 'Baloo 2', 'Space Grotesk', sans-serif;
  /* misc */
  --radius: 24px;
  --radius-sm: 12px;
  --nav-h: 76px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.45, 0.64, 1);
}

/* ── Reset / base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  background: var(--ink-2);
  color: var(--txt-light-1);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: var(--yellow); color: var(--ink-2); }

.container { width: min(1200px, 92vw); margin-inline: auto; }
.container-wide { width: min(1360px, 94vw); margin-inline: auto; }

/* ── Typography ───────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-tech);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
}
.eyebrow::before {
  content: ''; width: 22px; height: 2px; background: currentColor;
  border-radius: 2px; opacity: .9;
}
.eyebrow--pill {
  border: 1px solid var(--line-dark);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  border-radius: 999px; padding: 9px 18px;
}
.eyebrow--pill::before { width: 7px; height: 7px; border-radius: 50%; background: var(--yellow); }

.display {
  font-family: var(--f-display);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
.display-xl { font-size: clamp(52px, 8.5vw, 118px); }
.display-lg { font-size: clamp(40px, 6vw, 80px); }
.h-sec { font-size: clamp(32px, 4.2vw, 56px); }
.h-sub { font-family: var(--f-display); font-weight: 700; letter-spacing: -0.02em; font-size: clamp(20px, 2.2vw, 28px); line-height: 1.15; }

.t-outline {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.55);
}
.t-outline-dark { color: transparent; -webkit-text-stroke: 1.5px rgba(13,16,53,0.4); }
.t-yellow { color: var(--yellow); }
.t-grad {
  background: linear-gradient(100deg, var(--yellow) 20%, #FFF6A8 50%, var(--yellow) 80%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hl-mark {
  background: linear-gradient(transparent 62%, rgba(252,228,0,0.55) 62%);
  border-radius: 2px; padding-inline: 2px;
}

.lead { font-size: clamp(16px, 1.6vw, 19px); line-height: 1.7; }

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--f-display); font-weight: 700;
  font-size: 14px; letter-spacing: 0.02em;
  text-decoration: none; cursor: pointer; border: 0;
  padding: 17px 32px; border-radius: 999px;
  transition: transform .35s var(--ease-spring), box-shadow .35s ease, background .25s ease, color .25s ease;
  will-change: transform;
}
.btn .arr { transition: transform .35s var(--ease-spring); display: inline-block; }
.btn:hover .arr { transform: translateX(5px); }
.btn:active { transform: scale(0.96); }
.btn::after {
  content: ''; position: absolute; top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-20deg); transition: left .6s ease; pointer-events: none;
}
.btn:hover::after { left: 130%; }

.btn-solid { background: var(--yellow); color: var(--ink-2); box-shadow: 0 8px 30px rgba(252,228,0,0.28); }
.btn-solid:hover { transform: translateY(-3px); box-shadow: 0 14px 44px rgba(252,228,0,0.42); }
.btn-dark { background: var(--ink-2); color: #fff; box-shadow: 0 8px 30px rgba(13,16,53,0.30); }
.btn-dark:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(13,16,53,0.40); }
.btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.25); backdrop-filter: blur(6px); }
.btn-ghost:hover { border-color: var(--yellow); color: var(--yellow); transform: translateY(-3px); }
.btn-ghost-dark { background: transparent; color: var(--ink-2); border: 1.5px solid rgba(13,16,53,0.25); }
.btn-ghost-dark:hover { border-color: var(--ink-2); transform: translateY(-3px); }
.btn-sm { padding: 12px 24px; font-size: 13px; }

/* ── Scroll progress ──────────────────────────────────────────── */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--yellow), #FFD000);
  z-index: 1001; pointer-events: none;
  box-shadow: 0 0 12px rgba(252,228,0,0.6);
}

/* ── Navigation ───────────────────────────────────────────────── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background .4s ease, box-shadow .4s ease, border-color .4s ease;
  border-bottom: 1px solid transparent;
}
.site-nav.scrolled {
  background: rgba(10,13,44,0.78);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom-color: var(--line-dark);
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
}
.nav-inner {
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 30px; width: auto; }
.logo-word {
  font-family: var(--f-tech);
  font-size: 21px; font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--yellow);
  line-height: 1;
  text-transform: uppercase;
  transition: text-shadow .3s ease;
}
.nav-logo:hover .logo-word { text-shadow: 0 0 22px rgba(252,228,0,0.55); }

/* ── bbl brand mark (Beyond Basic Labs) ───────────────────────── */
.bbl-mark {
  display: inline-block; width: auto;
  transition: transform .35s var(--ease-spring), filter .35s ease;
}
.bbl-mark:hover { transform: rotate(-3deg) scale(1.05); filter: drop-shadow(0 8px 26px rgba(252,228,0,0.35)); }
.bbl-mark-sm { height: 38px; }
.nav-bbl {
  height: 30px; width: auto; display: block;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.25));
  transition: transform .3s var(--ease-spring);
}
.nav-links a:hover .nav-bbl { transform: rotate(-3deg) scale(1.08); }
.nav-drawer .nav-bbl { height: 54px; }
.bbl-mark-md { height: 52px; }
.bbl-mark-lg { height: 96px; filter: drop-shadow(0 10px 32px rgba(252,228,0,0.25)); }
.bbl-logo {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--f-brand); font-weight: 800;
  background: var(--yellow); color: #0B0B0B;
  text-transform: lowercase; line-height: 1;
  letter-spacing: -0.02em;
  border-radius: 0.42em; padding: 0.30em 0.55em 0.38em;
  transition: transform .35s var(--ease-spring), box-shadow .35s ease;
}
.bbl-logo i { font-style: normal; display: inline-block; transform: skewX(-6deg); }
.bbl-logo:hover { transform: rotate(-3deg) scale(1.06); box-shadow: 0 8px 26px rgba(252,228,0,0.35); }
.bbl-logo-sm { font-size: 15px; }
.bbl-logo-lg { font-size: 30px; box-shadow: 0 10px 32px rgba(252,228,0,0.25); }
.bbl-logo-xl { font-size: clamp(40px, 5vw, 64px); box-shadow: 0 16px 48px rgba(252,228,0,0.3); }
.bbl-inline { font-family: var(--f-brand); font-weight: 800; text-transform: lowercase; letter-spacing: -0.02em; }
.brand-lockup { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  position: relative;
  font-family: var(--f-display); font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.72); text-decoration: none;
  padding: 10px 16px; border-radius: 999px;
  transition: color .25s ease, background .25s ease;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.07); }
.nav-links a.active { color: var(--yellow); }
.nav-links a.active::after {
  content: ''; position: absolute; left: 16px; right: 16px; bottom: 4px;
  height: 2px; border-radius: 2px; background: var(--yellow);
}
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-lang {
  font-family: var(--f-tech); font-size: 11px; font-weight: 700; letter-spacing: .1em;
  color: rgba(255,255,255,0.7); background: transparent;
  border: 1px solid rgba(255,255,255,0.2); border-radius: 999px;
  padding: 8px 14px; cursor: pointer; transition: all .25s ease;
}
.nav-lang:hover { color: var(--yellow); border-color: var(--yellow); }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: transparent; border: 0; cursor: pointer; padding: 10px;
}
.nav-hamburger span {
  width: 24px; height: 2px; background: #fff; border-radius: 2px;
  transition: transform .3s var(--ease-out), opacity .3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-drawer {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(10,13,44,0.96); backdrop-filter: blur(20px);
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 8vw; gap: 6px;
  opacity: 0; pointer-events: none; transition: opacity .35s ease;
}
.nav-drawer.open { opacity: 1; pointer-events: auto; }
.nav-drawer a {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(30px, 7vw, 44px); letter-spacing: -0.02em;
  color: #fff; text-decoration: none; padding: 8px 0;
  transform: translateY(24px); opacity: 0;
  transition: transform .5s var(--ease-out), opacity .5s ease, color .25s ease;
}
.nav-drawer.open a { transform: translateY(0); opacity: 1; }
.nav-drawer a:hover, .nav-drawer a.active { color: var(--yellow); }
.nav-drawer a:nth-child(1) { transition-delay: .05s; }
.nav-drawer a:nth-child(2) { transition-delay: .1s; }
.nav-drawer a:nth-child(3) { transition-delay: .15s; }
.nav-drawer a:nth-child(4) { transition-delay: .2s; }
.nav-drawer a:nth-child(5) { transition-delay: .25s; }
.nav-drawer a:nth-child(6) { transition-delay: .3s; }

/* ── Section shells ───────────────────────────────────────────── */
.sec { padding: clamp(80px, 10vw, 140px) 0; position: relative; }
.sec-dark { background: var(--ink-2); color: var(--txt-dark-1); }
.sec-light { background: var(--white); color: var(--txt-light-1); }
.sec-paper { background: var(--paper); color: var(--txt-light-1); }

/* decorative grid lines on dark sections */
.bg-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(252,228,0,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(252,228,0,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, black 30%, transparent 75%);
}
.bg-dots {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: radial-gradient(circle, rgba(13,16,53,0.12) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(ellipse at 50% 0%, black 10%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 0%, black 10%, transparent 70%);
}

/* floating gradient orbs */
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px); pointer-events: none; will-change: transform;
}
.orb-yellow { background: rgba(252,228,0,0.13); }
.orb-blue { background: rgba(70,118,186,0.22); }
.orb-purple { background: rgba(89,45,128,0.28); }
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.08); }
  66% { transform: translate(-25px, 25px) scale(0.95); }
}
.orb-anim { animation: orbFloat 14s ease-in-out infinite; }
.orb-anim-2 { animation: orbFloat 18s ease-in-out infinite reverse; }

/* grain overlay for hero richness */
.grain::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: .5; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}

/* ── Reveal engine ────────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  transition-delay: var(--d, 0s);
  will-change: transform, opacity;
}
[data-reveal="left"]  { transform: translateX(-48px); }
[data-reveal="right"] { transform: translateX(48px); }
[data-reveal="scale"] { transform: scale(0.88); }
[data-reveal="blur"]  { transform: none; filter: blur(12px); transition: opacity .9s var(--ease-out), filter .9s var(--ease-out); }
[data-reveal].is-in {
  opacity: 1; transform: none; filter: none;
}
/* word-by-word headline rise */
.w-accent .ln:nth-of-type(2) { color: var(--yellow); }
.w-rise .w {
  display: inline-block; overflow: hidden; vertical-align: bottom;
}
.w-rise .w > span {
  display: inline-block; transform: translateY(110%);
  transition: transform 1s var(--ease-out);
  transition-delay: var(--wd, 0s);
}
.w-rise.is-in .w > span { transform: translateY(0); }

/* ── Marquee ──────────────────────────────────────────────────── */
.marquee {
  overflow: hidden; white-space: nowrap; position: relative;
  padding: 22px 0; user-select: none;
}
.marquee-track {
  display: inline-flex; align-items: center; gap: 56px;
  animation: marquee 28s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee-item {
  display: inline-flex; align-items: center; gap: 56px;
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(18px, 2.2vw, 26px); letter-spacing: -0.01em;
}
.marquee-item .star { color: var(--yellow); font-size: .8em; }
.marquee-yellow { background: var(--yellow); color: var(--ink-2); transform: rotate(-1.2deg) scale(1.02); }
.marquee-dark { background: var(--ink-2); color: rgba(255,255,255,0.85); }

/* ── Bento grid ───────────────────────────────────────────────── */
.bento { display: grid; gap: 18px; grid-template-columns: repeat(12, 1fr); }
.bento-cell {
  border-radius: var(--radius); padding: 34px;
  position: relative; overflow: hidden;
  transition: transform .45s var(--ease-out), box-shadow .45s ease;
}
.bento-cell:hover { transform: translateY(-5px); }
.bc-dark { background: var(--ink-2); color: #fff; }
.bc-navy { background: var(--navy-soft); color: #fff; border: 1px solid var(--line-dark); }
.bc-yellow { background: var(--yellow); color: var(--ink-2); }
.bc-white { background: #fff; border: 1px solid var(--line-light); box-shadow: 0 2px 10px rgba(13,16,53,0.05); }
.bc-white:hover { box-shadow: 0 18px 44px rgba(13,16,53,0.12); }
.span-3 { grid-column: span 3; } .span-4 { grid-column: span 4; }
.span-5 { grid-column: span 5; } .span-6 { grid-column: span 6; }
.span-7 { grid-column: span 7; } .span-8 { grid-column: span 8; }
.span-12 { grid-column: span 12; }

.stat-big {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(44px, 5vw, 72px); line-height: 1; letter-spacing: -0.03em;
}
.stat-cap {
  font-size: 13px; letter-spacing: .02em; margin-top: 10px; opacity: .65; line-height: 1.5;
}

/* ── Cards ────────────────────────────────────────────────────── */
.glass {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius);
}
.card-hover-line { position: relative; }
.card-hover-line::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  background: var(--accent, var(--yellow));
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease-out);
}
.card-hover-line:hover::after { transform: scaleX(1); }

[data-tilt] { transform-style: preserve-3d; will-change: transform; transition: transform .2s ease; }

/* ── Ticker number chips ──────────────────────────────────────── */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-tech); font-size: 10px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  border-radius: 999px; padding: 7px 14px;
}
.chip-live { background: rgba(46,125,90,0.15); color: #4ADE80; border: 1px solid rgba(74,222,128,0.3); }
.chip-live::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #4ADE80; animation: pulse 1.6s ease infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(74,222,128,0.5);} 60% { box-shadow: 0 0 0 7px rgba(74,222,128,0);} }
.chip-yellow { background: rgba(252,228,0,0.12); color: var(--yellow); border: 1px solid rgba(252,228,0,0.3); }

/* ── Footer ───────────────────────────────────────────────────── */
.site-footer {
  background: var(--ink); color: rgba(255,255,255,0.65);
  padding: 90px 0 0; position: relative; overflow: hidden;
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px; padding-bottom: 70px; position: relative; z-index: 2;
}
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 36ch; margin-top: 18px; color: rgba(255,255,255,0.5); }
.footer-h {
  font-family: var(--f-tech); font-size: 10px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--yellow); margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px;
  transition: color .25s ease, padding-left .25s ease;
}
.footer-links a:hover { color: var(--yellow); padding-left: 6px; }
.footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding: 26px 0; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,0.35);
  position: relative; z-index: 2;
}
.footer-watermark {
  position: absolute; bottom: -6vw; left: 50%; transform: translateX(-50%);
  font-family: var(--f-brand); font-weight: 800; text-transform: lowercase;
  font-size: clamp(160px, 26vw, 400px); line-height: 1; letter-spacing: -0.04em;
  color: rgba(252,228,0,0.04); white-space: nowrap; pointer-events: none; z-index: 1;
}
.social-row { display: flex; gap: 10px; margin-top: 22px; }
.social-row a {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); text-decoration: none; font-size: 15px;
  transition: all .3s var(--ease-spring);
}
.social-row a:hover { background: var(--yellow); color: var(--ink-2); border-color: var(--yellow); transform: translateY(-4px) rotate(8deg); }

/* ── Forms ────────────────────────────────────────────────────── */
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--txt-light-3); }
.field input, .field select, .field textarea {
  font-family: var(--f-body); font-size: 15px; color: var(--txt-light-1);
  background: #fff; border: 1.5px solid var(--line-light);
  border-radius: 12px; padding: 14px 16px; outline: none;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--navy); box-shadow: 0 0 0 4px rgba(45,50,106,0.10);
}

/* ── Utilities ────────────────────────────────────────────────── */
.flex { display: flex; } .grid { display: grid; }
.center { text-align: center; }
.mt-1 { margin-top: 12px; } .mt-2 { margin-top: 24px; } .mt-3 { margin-top: 40px; } .mt-4 { margin-top: 64px; }
.mb-1 { margin-bottom: 12px; } .mb-2 { margin-bottom: 24px; } .mb-3 { margin-bottom: 40px; }
.muted-d { color: var(--txt-dark-2); } .muted-l { color: var(--txt-light-2); }

.sec-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.sec-head .eyebrow { margin-bottom: 18px; }
.sec-head p { margin-top: 18px; }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .bento { grid-template-columns: repeat(6, 1fr); }
  .span-3, .span-4 { grid-column: span 3; }
  .span-5, .span-6, .span-7, .span-8 { grid-column: span 6; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav-links, .nav-lang { display: none; }
  .nav-hamburger { display: flex; }
}
@media (max-width: 640px) {
  .bento { grid-template-columns: 1fr; }
  .span-3, .span-4, .span-5, .span-6, .span-7, .span-8 { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .btn { padding: 15px 26px; font-size: 13px; }
}

/* ── Reduced motion ───────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  [data-reveal], .w-rise .w > span { opacity: 1 !important; transform: none !important; filter: none !important; }
}
