/* ============================================================
   GAME LOBBY — Landing styles (design-system tokens recreated)
   Dark-mode-first · Poppins · neon cyan/pink/purple
   ============================================================ */

/* ---- Tokens: colors ---- */
:root {
  --gl-black: #101828;
  --gl-pink: #c90087;
  --gl-cyan: #00abeb;
  --gl-white: #ffffff;
  --gl-navy: #0d1d2e;
  --gl-lime: #3cce3b;
  --gl-purple: #2c1665;

  --gl-pink-bright: #ff2db0;
  --gl-pink-soft: #ff8fd6;
  --gl-cyan-bright: #2ec8ff;
  --gl-cyan-soft: #8fe2ff;
  --gl-purple-bright: #7b3ff2;
  --gl-purple-soft: #b794ff;
  --gl-lime-bright: #58f257;

  --gl-surface-0: #0a121e;
  --gl-surface-1: #0d1d2e;
  --gl-surface-2: #101828;
  --gl-surface-3: #16233a;
  --gl-surface-4: #1f3050;
  --gl-line: #243650;
  --gl-border: rgba(255, 255, 255, 0.10);
  --gl-border-strong: rgba(255, 255, 255, 0.18);

  --gl-text-strong: #ffffff;
  --gl-text: #e6ecf5;
  --gl-text-muted: #9fb0c7;
  --gl-text-subtle: #647489;
  --gl-text-on-cyan: #051019;
  --gl-text-on-lime: #06210a;
  --gl-text-on-pink: #ffffff;

  --bg-page: var(--gl-surface-0);
  --bg-surface: var(--gl-surface-1);
  --bg-raised: var(--gl-surface-3);
  --bg-raised-hover: var(--gl-surface-4);

  --text-1: var(--gl-text-strong);
  --text-2: var(--gl-text);
  --text-3: var(--gl-text-muted);
  --text-4: var(--gl-text-subtle);

  --accent-primary: var(--gl-cyan);
  --accent-primary-hover: var(--gl-cyan-bright);
  --accent-secondary: var(--gl-pink);
  --accent-secondary-hover: var(--gl-pink-bright);
  --accent-tertiary: var(--gl-purple-bright);

  --status-success: var(--gl-lime);
  --status-live: var(--gl-lime);
  --status-reward: var(--gl-purple-bright);

  --border-subtle: var(--gl-border);
  --border-strong: var(--gl-border-strong);
  --surface-card: var(--gl-surface-3);
  --surface-card-border: rgba(255, 255, 255, 0.08);

  /* ---- Tokens: typography ---- */
  --font-display: "Poppins", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Poppins", "Helvetica Neue", Arial, sans-serif;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;
  --fs-body: 16px;
  --lh-snug: 1.12;
  --lh-normal: 1.5;
  --ls-tight: -0.02em;
  --ls-overline: 0.14em;

  /* ---- Tokens: effects ---- */
  --space-5: 24px;
  --space-8: 64px;
  --space-9: 96px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 26px;
  --radius-pill: 999px;

  --shadow-1: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-2: 0 8px 24px rgba(0, 0, 0, 0.45);
  --shadow-3: 0 18px 48px rgba(0, 0, 0, 0.55);

  --glow-cyan: 0 0 0 1px rgba(0, 171, 235, 0.5), 0 0 22px rgba(0, 171, 235, 0.55);
  --glow-pink: 0 0 0 1px rgba(201, 0, 135, 0.5), 0 0 22px rgba(255, 45, 176, 0.5);
  --glow-purple: 0 0 0 1px rgba(123, 63, 242, 0.55), 0 0 26px rgba(123, 63, 242, 0.45);
  --glow-lime: 0 0 0 1px rgba(60, 206, 59, 0.5), 0 0 20px rgba(60, 206, 59, 0.45);
  --glow-cyan-soft: 0 0 24px rgba(0, 171, 235, 0.35);
  --focus-ring: 0 0 0 3px rgba(0, 171, 235, 0.45);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast: 120ms;
  --dur: 200ms;

  --container-max: 1240px;
  --container-pad: 24px;
}

/* ---- Base / reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg-page);
  color: var(--text-2);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  font-weight: var(--fw-regular);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4 {
  margin: 0;
  color: var(--text-1);
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  line-height: var(--lh-snug);
}
p { margin: 0; }
a { color: var(--accent-primary); text-decoration: none; }
a:hover { color: var(--accent-primary-hover); }
img { display: block; max-width: 100%; }
button { font-family: inherit; }
::selection { background: var(--gl-cyan); color: var(--gl-text-on-cyan); }
:focus-visible { outline: none; box-shadow: var(--focus-ring); border-radius: var(--radius-sm); }
* { scrollbar-width: thin; scrollbar-color: var(--gl-surface-4) transparent; }
*::-webkit-scrollbar { width: 10px; height: 10px; }
*::-webkit-scrollbar-thumb { background: var(--gl-surface-4); border-radius: 999px; }
*::-webkit-scrollbar-track { background: transparent; }

.container { width: 100%; max-width: var(--container-max); margin-inline: auto; padding-inline: var(--container-pad); }
.section { padding: 96px 24px; }
em { font-style: normal; color: var(--gl-pink); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display); font-weight: 600; line-height: 1;
  letter-spacing: 0.01em; cursor: pointer; text-decoration: none; white-space: nowrap;
  border: 1px solid transparent;
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out),
    background var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: scale(0.97); }
.btn--sm { padding: 0 16px; height: 38px; font-size: 14px; }
.btn--md { padding: 0 24px; height: 48px; font-size: 15px; }
.btn--lg { padding: 0 34px; height: 58px; font-size: 17px; }
.btn--block { width: 100%; }
.btn--cyan { background: var(--gl-cyan); color: var(--gl-text-on-cyan); box-shadow: var(--glow-cyan-soft); }
.btn--pink { background: var(--gl-pink); color: var(--gl-text-on-pink); box-shadow: 0 0 24px rgba(201,0,135,.4); }
.btn--lime { background: var(--gl-lime); color: var(--gl-text-on-lime); box-shadow: 0 0 22px rgba(60,206,59,.38); }
.btn--outline { background: transparent; color: var(--text-1); border: 1px solid var(--border-strong); }
.btn--ghost { background: transparent; color: var(--text-2); }
.btn .ic { width: 1.1em; height: 1.1em; }

/* ---- Badge ---- */
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 12px; border-radius: var(--radius-pill);
  font-family: var(--font-display); font-weight: 600; font-size: 12px;
  letter-spacing: 0.02em; line-height: 1; border: 1px solid;
}
.badge .dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; box-shadow: 0 0 8px currentColor; }
.badge--cyan { color: var(--gl-cyan); background: rgba(0,171,235,.12); border-color: rgba(0,171,235,.4); }
.badge--pink { color: var(--gl-pink-soft); background: rgba(201,0,135,.14); border-color: rgba(201,0,135,.45); }
.badge--lime { color: var(--gl-lime); background: rgba(60,206,59,.12); border-color: rgba(60,206,59,.4); }
.badge--purple { color: var(--gl-purple-soft); background: rgba(123,63,242,.16); border-color: rgba(123,63,242,.5); }

/* ---- Neon card ---- */
.card {
  position: relative; background: var(--surface-card);
  border: 1px solid var(--surface-card-border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-2);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.card[data-neon="cyan"]   { border-color: rgba(0,171,235,.55); box-shadow: var(--glow-cyan); }
.card[data-neon="pink"]   { border-color: rgba(201,0,135,.55); box-shadow: var(--glow-pink); }
.card[data-neon="purple"] { border-color: rgba(123,63,242,.6);  box-shadow: var(--glow-purple); }
.card[data-neon="lime"]   { border-color: rgba(60,206,59,.55);  box-shadow: var(--glow-lime); }
.card--int { cursor: default; }
.card--int:hover { transform: translateY(-4px); }
.card--int:hover[data-neon="cyan"]   { box-shadow: 0 0 0 1px rgba(0,171,235,.7), 0 0 34px rgba(0,171,235,.6), var(--shadow-3); }
.card--int:hover[data-neon="pink"]   { box-shadow: 0 0 0 1px rgba(255,45,176,.7), 0 0 34px rgba(255,45,176,.55), var(--shadow-3); }
.card--int:hover[data-neon="purple"] { box-shadow: 0 0 0 1px rgba(123,63,242,.75), 0 0 36px rgba(123,63,242,.55), var(--shadow-3); }

/* ---- Icon tile ---- */
.icon-tile {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.04); border: 1px solid var(--border-subtle);
}
.icon-tile--lg { width: 64px; height: 64px; }
.icon-tile--cyan   { color: var(--gl-cyan);          filter: drop-shadow(0 0 10px var(--gl-cyan)); }
.icon-tile--pink   { color: var(--gl-pink);          filter: drop-shadow(0 0 10px var(--gl-pink)); }
.icon-tile--purple { color: var(--gl-purple-bright); filter: drop-shadow(0 0 10px var(--gl-purple-bright)); }
.icon-tile--lime   { color: var(--gl-lime);          filter: drop-shadow(0 0 10px var(--gl-lime)); }

/* ---- Section heading ---- */
.eyebrow {
  font-family: var(--font-display); font-weight: 600; font-size: 12px;
  letter-spacing: var(--ls-overline); text-transform: uppercase;
}
.eyebrow--cyan { color: var(--gl-cyan); }
.eyebrow--pink { color: var(--gl-pink); }
.eyebrow--lime { color: var(--gl-lime); }
.eyebrow--purple { color: var(--gl-purple-bright); }
.heading { display: flex; flex-direction: column; gap: 14px; align-items: center; text-align: center; max-width: 760px; margin-inline: auto; }
.heading h2 { font-family: var(--font-display); font-weight: 700; font-size: 48px; letter-spacing: var(--ls-tight); line-height: 1.1; }
.heading p { font-size: 18px; line-height: 1.5; color: var(--text-3); max-width: 620px; }

/* ---- Navbar ---- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,18,30,.72); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
}
.nav__inner { max-width: var(--container-max); margin: 0 auto; padding: 14px 24px; display: flex; align-items: center; gap: 28px; }
.nav__logo img { height: 38px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 26px; margin-left: 12px; }
.nav__links a { font-family: var(--font-display); font-weight: 500; font-size: 15px; color: var(--text-2); transition: color var(--dur) var(--ease-out); }
.nav__links a:hover { color: var(--gl-cyan); }
.nav__right { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.nav__lang { font-family: var(--font-display); font-weight: 600; font-size: 13px; color: var(--text-3); border: 1px solid var(--border-subtle); border-radius: var(--radius-pill); padding: 6px 12px; }
.nav__burger { display: none; background: none; border: 1px solid var(--border-subtle); border-radius: 10px; width: 40px; height: 40px; color: var(--text-1); cursor: pointer; align-items: center; justify-content: center; }

/* ---- Hero ---- */
.hero {
  position: relative; overflow: hidden; border-bottom: 1px solid var(--border-subtle);
  background:
    radial-gradient(60% 80% at 85% 10%, rgba(0,171,235,.16), transparent 60%),
    radial-gradient(55% 70% at 8% 90%, rgba(201,0,135,.16), transparent 60%);
}
.hero__inner { max-width: var(--container-max); margin: 0 auto; padding: 88px 24px 96px; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 56px; align-items: center; }
.hero__inner > * { min-width: 0; }
.hero h1 { font-family: var(--font-display); font-weight: 800; font-size: 60px; line-height: 1.03; letter-spacing: var(--ls-tight); color: #fff; }
.hero h1 .pink { color: var(--gl-pink); }
.hero h1 .cyan { color: var(--gl-cyan); }
.hero__lead { font-family: var(--font-body); font-size: 19px; line-height: 1.55; color: var(--text-3); margin-top: 24px; max-width: 560px; }
.hero__lead strong { color: var(--text-1); font-weight: 600; }
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.hero__ministats { display: flex; gap: 28px; margin-top: 40px; flex-wrap: wrap; }
.ministat__v { font-family: var(--font-display); font-weight: 800; font-size: 26px; color: #fff; line-height: 1; }
.ministat__l { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); margin-top: 5px; }
.hero__visual { position: relative; display: flex; justify-content: center; align-items: center; min-height: 560px; }

/* ---- Mastercard mark (co-brand) ---- */
.mc { display: block; width: 38px; height: 24px; }
.mc--lg { width: 52px; height: 33px; }

/* ---- Laptop: plataforma de competición ---- */
.laptop { position: relative; z-index: 1; width: 540px; max-width: 100%; }
.laptop__screen {
  position: relative; aspect-ratio: 16 / 9.6; border: 9px solid #1a1d24; border-bottom: none;
  border-radius: 16px 16px 0 0; overflow: hidden; background: #05070d;
  box-shadow: 0 0 0 1px rgba(255,255,255,.06) inset, 0 26px 60px rgba(0,0,0,.55), 0 0 50px rgba(0,171,235,.18);
}
/* Zoom into the arena/panels (right side) so the baked-in headline never shows. */
.laptop__screen img { position: absolute; top: 50%; left: 50%; height: 120%; width: auto; max-width: none; transform: translate(-73%, -50%); display: block; }
.laptop__base {
  height: 15px; margin: 0 -26px; border-radius: 0 0 14px 14px;
  background: linear-gradient(#24272f, #15171c);
  box-shadow: 0 16px 26px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.05) inset;
}
.laptop__base::after {
  content: ""; position: absolute; left: 50%; transform: translateX(-50%);
  width: 84px; height: 6px; background: #0c0e12; border-radius: 0 0 8px 8px;
}

/* ---- Teléfono: app Wallet (sobrepuesto) ---- */
.phone {
  position: absolute; z-index: 3; right: -14px; bottom: -34px;
  transform: scale(.66); transform-origin: bottom right;
  width: 300px; max-width: 80vw;
  border-radius: 44px; padding: 11px;
  background: linear-gradient(160deg, #262932, #0c0e12);
  box-shadow: 0 34px 80px rgba(0,0,0,.62), 0 0 0 1px rgba(255,255,255,.08) inset, 0 0 60px rgba(0,171,235,.28);
}
.phone__notch { position: absolute; top: 13px; left: 50%; transform: translateX(-50%); width: 104px; height: 20px; background: #0c0e12; border-radius: 0 0 15px 15px; z-index: 3; }
.phone__screen { border-radius: 34px; padding: 30px 15px 16px; overflow: hidden;
  background: radial-gradient(130% 80% at 50% 0%, #1d1146 0%, #0a0e1a 62%); }

.app__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 13px; }
.app__hi-lbl { display: block; font-size: 10px; letter-spacing: .04em; color: var(--text-3); }
.app__hi-name { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: #fff; }
.app__avatar { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 12px; color: #fff; background: linear-gradient(135deg, var(--gl-pink), var(--gl-purple-bright)); }

.appcard { border-radius: 15px; padding: 13px 14px; color: #fff;
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(201,0,135,.9), transparent 55%),
    radial-gradient(120% 140% at 100% 100%, rgba(0,171,235,.9), transparent 55%),
    linear-gradient(135deg, #241158, #0d1d2e);
  box-shadow: 0 10px 26px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.1) inset; }
.appcard__row { display: flex; justify-content: space-between; align-items: center; }
.appcard__row--bottom { margin-top: 9px; }
.appcard__brand { font-family: var(--font-display); font-weight: 800; font-size: 13px; }
.appcard__virtual { font-family: var(--font-display); font-weight: 700; font-size: 7px; letter-spacing: .16em; padding: 3px 7px; border-radius: 999px; border: 1px solid rgba(255,255,255,.4); }
.appcard__chip { width: 28px; height: 21px; border-radius: 5px; background: linear-gradient(135deg,#ffe08a,#caa24a); margin: 11px 0 7px; }
.appcard__num { font-family: var(--font-display); font-weight: 600; font-size: 12px; letter-spacing: .08em; }
.appcard__holder { font-family: var(--font-display); font-weight: 600; font-size: 9px; letter-spacing: .04em; }

.app__points { display: flex; justify-content: space-between; align-items: flex-end; margin: 14px 2px 12px; }
.app__points-l { font-size: 9px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-3); }
.app__points-v { font-family: var(--font-display); font-weight: 800; font-size: 25px; color: #fff; line-height: 1; margin-top: 4px; }
.app__points-v span { font-size: 12px; color: var(--gl-cyan); font-weight: 700; }
.app__points-trend { font-size: 9px; color: var(--gl-lime); display: inline-flex; align-items: center; gap: 3px; font-weight: 600; }
.app__points-trend i { width: 12px; height: 12px; }

.app__actions { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 14px; }
.app__act { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 10px 4px; border-radius: 12px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06); font-family: var(--font-display); font-size: 10px; font-weight: 600; color: var(--text-2); }
.app__act-ic { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; }
.app__act-ic i { width: 16px; height: 16px; }
.app__act-ic--cyan { color: var(--gl-cyan); background: rgba(0,171,235,.14); }
.app__act-ic--pink { color: var(--gl-pink-bright); background: rgba(201,0,135,.16); }
.app__act-ic--purple { color: var(--gl-purple-bright); background: rgba(123,63,242,.16); }

.app__list-h { font-size: 9px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-3); margin: 0 2px 8px; }
.app__item { display: flex; align-items: center; gap: 10px; padding: 9px 10px; border-radius: 12px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06); margin-bottom: 7px; }
.app__item-ic { width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; color: var(--gl-pink-bright); background: rgba(201,0,135,.14); flex-shrink: 0; }
.app__item-ic i { width: 15px; height: 15px; }
.app__item-ic--cyan { color: var(--gl-cyan); background: rgba(0,171,235,.14); }
.app__item-txt { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.app__item-t { font-family: var(--font-display); font-weight: 600; font-size: 11px; color: #fff; }
.app__item-s { font-size: 9px; color: var(--text-3); }
.app__item-p { font-family: var(--font-display); font-weight: 700; font-size: 10px; color: var(--gl-cyan); white-space: nowrap; }
.app__item-p--live { color: var(--gl-lime); display: inline-flex; align-items: center; gap: 5px; }

.float-chip {
  position: absolute; z-index: 4; display: flex; align-items: center; gap: 10px;
  background: rgba(13,29,46,.92); border-radius: 14px; padding: 10px 14px; backdrop-filter: blur(6px);
}
.float-chip--points { top: 6px; left: -28px; border: 1px solid rgba(123,63,242,.5); box-shadow: var(--glow-purple); }
.float-chip--paid { bottom: 18px; left: -30px; border: 1px solid rgba(60,206,59,.5); box-shadow: var(--glow-lime); }
.float-chip__icon { width: 34px; height: 34px; border-radius: 9px; display: inline-flex; align-items: center; justify-content: center; background: rgba(123,63,242,.18); color: var(--gl-purple-bright); }
.float-chip__v { font-family: var(--font-display); font-weight: 800; font-size: 16px; color: #fff; line-height: 1; }
.float-chip__l { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); margin-top: 3px; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gl-lime); box-shadow: 0 0 8px var(--gl-lime); }

/* ---- Grids ---- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
.feat { padding: 30px; }
.feat h3 { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: #fff; margin: 20px 0 10px; }
.feat p { font-family: var(--font-body); font-size: 15px; line-height: 1.6; color: var(--text-3); }
.icon-tile.sm-tile { width: 56px; height: 56px; border-radius: 14px; }

/* ---- Audience card ---- */
.aud { display: flex; flex-direction: column; gap: 22px; min-height: 380px; padding: 32px; }
.aud h3 { font-family: var(--font-display); font-weight: 800; font-size: 28px; line-height: 1.1; color: var(--text-1); }
.aud p { font-family: var(--font-body); font-size: 15.5px; line-height: 1.6; color: var(--text-3); flex: 1; }

/* ---- Stats ---- */
.stats-title { font-family: var(--font-display); font-weight: 800; font-size: 44px; line-height: 1.08; color: #fff; text-align: center; margin: 0 auto 48px; max-width: 760px; letter-spacing: var(--ls-tight); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--surface-card); border: 1px solid var(--surface-card-border); border-radius: var(--radius-xl); box-shadow: var(--shadow-2); overflow: hidden; }
.stat { padding: 40px 20px; text-align: center; }
.stat + .stat { border-left: 1px solid var(--border-subtle); }
.stat__v { font-family: var(--font-display); font-weight: 800; font-size: 56px; line-height: 1; letter-spacing: var(--ls-tight); }
.stat__l { font-family: var(--font-display); font-weight: 600; font-size: 12px; letter-spacing: var(--ls-overline); text-transform: uppercase; color: var(--text-3); margin-top: 6px; }
.stat__v--purple { color: var(--gl-purple-bright); }
.stat__v--cyan { color: var(--gl-cyan); }
.stat__v--pink { color: var(--gl-pink); }
.stat__v--lime { color: var(--gl-lime); }

/* ---- Logo wall ---- */
.logowall { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border-subtle); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); overflow: hidden; margin-top: 44px; }
.logowall__cell { display: flex; align-items: center; justify-content: center; padding: 28px 18px; background: var(--gl-surface-1); min-height: 92px; }
.logowall__cell span { font-family: var(--font-display); font-weight: 700; font-size: 19px; letter-spacing: .02em; color: var(--text-3); opacity: .7; transition: opacity var(--dur) var(--ease-out), color var(--dur) var(--ease-out); }
.logowall__cell:hover span { opacity: 1; color: var(--text-1); }
.logowall__cell img { max-height: 36px; width: auto; object-fit: contain; opacity: .7; filter: grayscale(1) brightness(1.6); transition: opacity var(--dur) var(--ease-out), filter var(--dur) var(--ease-out); }
.logowall__cell:hover img { opacity: 1; filter: grayscale(0) brightness(1); }
.clients-label { text-align: center; margin: 40px 0 0; font-family: var(--font-display); font-weight: 600; font-size: 12px; letter-spacing: var(--ls-overline); text-transform: uppercase; color: var(--text-4); }
.logowall--clients { margin-top: 18px; grid-template-columns: repeat(3, 1fr); }
.logowall--clients .logowall__cell { min-height: 104px; background: #fff; }
.logowall--clients .logowall__cell img { max-height: 38px; opacity: .85; filter: none; }
.logowall--clients .logowall__cell img.is-big { max-height: 50px; }
.logowall--clients .logowall__cell:hover img { opacity: 1; filter: none; }
.samsung-wm { width: 76%; max-width: 168px; height: auto; opacity: .9; transition: opacity var(--dur) var(--ease-out); }
.logowall--clients .logowall__cell:hover .samsung-wm { opacity: 1; }
/* Logos cuyo arte es blanco/negativo: los pasamos a oscuro para que lean sobre el chip claro */
.logowall--clients .logowall__cell img.is-light { filter: brightness(0); opacity: .72; }
.logowall--clients .logowall__cell:hover img.is-light { filter: brightness(0); opacity: 1; }

/* ---- Tour map ---- */
.tourmap { margin-top: 28px; display: grid; grid-template-columns: 1fr 1.15fr; gap: 28px; align-items: stretch; border-radius: var(--radius-xl); overflow: hidden; border: 1px solid rgba(0,171,235,.4); box-shadow: var(--glow-cyan); background:
  radial-gradient(90% 120% at 80% 0%, rgba(0,171,235,.18), transparent 55%),
  radial-gradient(90% 120% at 10% 100%, rgba(201,0,135,.18), transparent 55%),
  linear-gradient(120deg, rgba(44,22,101,.6), rgba(13,29,46,.92)); }
.tourmap__intro { padding: 46px 0 46px 44px; align-self: center; }
.tourmap__title { font-family: var(--font-display); font-weight: 800; font-size: 42px; color: #fff; margin: 0 0 16px; line-height: 1.05; letter-spacing: -.01em; }
.tourmap__hl { color: var(--gl-pink-bright); text-shadow: 0 0 26px rgba(255,45,176,.5); }
.tourmap__intro p { font-family: var(--font-body); font-size: 16px; line-height: 1.6; color: var(--text-3); margin: 0 0 26px; max-width: 430px; }
.tourmap__totals { display: flex; gap: 16px; flex-wrap: wrap; }
.tourmap__total { border: 1px solid var(--border-subtle); border-radius: 14px; padding: 14px 18px; background: rgba(255,255,255,.03); }
.tourmap__total-v { font-family: var(--font-display); font-weight: 800; font-size: 28px; color: var(--gl-pink-bright); line-height: 1; font-variant-numeric: tabular-nums; }
.tourmap__total-v--cyan { color: var(--gl-cyan); }
.tourmap__total-l { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); margin-top: 8px; }

/* ---- Mapa Centroamérica ---- */
.tourmap__map { position: relative; display: flex; align-items: center; justify-content: center; padding: 24px; border-left: 1px solid var(--border-subtle);
  background: radial-gradient(80% 90% at 60% 40%, rgba(0,171,235,.12), transparent 60%); }
.camap { width: 100%; max-width: 560px; height: auto; overflow: visible; }
.camap__land { fill: url(#caLand); stroke: var(--gl-cyan); stroke-width: 1.8; stroke-opacity: .9; stroke-linejoin: round; filter: url(#caGlow); }
.camap__sheen { fill: url(#caSheen); stroke: none; pointer-events: none; }
.camap__border { fill: none; stroke: rgba(0,171,235,.3); stroke-width: 1; stroke-linejoin: round; stroke-linecap: round; }
.camap__route { fill: none; stroke: rgba(0,171,235,.4); stroke-width: 2.4; stroke-dasharray: 1 11; stroke-linecap: round; }
.camap__route-lit { fill: none; stroke: url(#caRoute); stroke-width: 3; stroke-linecap: round; stroke-dasharray: 26 460; filter: url(#caGlow); animation: caFlow 6s linear infinite; }
@keyframes caFlow { from { stroke-dashoffset: 486; } to { stroke-dashoffset: 0; } }
.camap__travel { fill: #fff; filter: url(#caGlow); }
.camap__pulse { fill: none; stroke: var(--gl-cyan); stroke-width: 1.6; transform-box: fill-box; transform-origin: center; animation: caPulse 2.8s ease-out infinite; }
@keyframes caPulse { 0% { transform: scale(.55); opacity: .75; } 80%, 100% { transform: scale(2.8); opacity: 0; } }
.camap__dot { fill: var(--gl-cyan); stroke: #06101a; stroke-width: 2.5; paint-order: stroke; }
.camap__node text { font-family: var(--font-display); font-weight: 600; font-size: 14px; fill: #fff; paint-order: stroke; stroke: rgba(5,9,15,.85); stroke-width: 3.5; stroke-linejoin: round; }
.camap__node--final .camap__pulse { stroke: var(--gl-pink-bright); }
.camap__node--final .camap__dot { fill: var(--gl-pink-bright); filter: url(#caGlow); }
.camap__node--final text { fill: var(--gl-pink-bright); font-weight: 700; font-size: 16px; }
@media (prefers-reduced-motion: reduce) { .camap__route-lit, .camap__pulse, .camap__travel animateMotion { animation: none; } }
.camap__legend { position: absolute; top: 18px; left: 22px; display: flex; gap: 16px; }
.camap__legend span { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-display); font-weight: 600; font-size: 12px; letter-spacing: .02em; color: var(--text-2); }
.camap__lg-dot { width: 9px; height: 9px; border-radius: 999px; display: inline-block; }
.camap__lg-dot--cyan { background: var(--gl-cyan); box-shadow: 0 0 8px rgba(0,171,235,.8); }
.camap__lg-dot--pink { background: var(--gl-pink-bright); box-shadow: 0 0 8px rgba(255,45,176,.8); }
.tourmap__final { position: absolute; bottom: 20px; right: 22px; display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-display); font-weight: 700; font-size: 12px; letter-spacing: .04em; color: #fff; background: var(--gl-pink); border-radius: 999px; padding: 7px 14px; box-shadow: var(--glow-pink); }
.tourmap__final svg { width: 14px; height: 14px; }

/* ---- Contact ---- */
.contact__inner { max-width: 1040px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.contact h2 { font-family: var(--font-display); font-weight: 800; font-size: 40px; color: #fff; margin: 0 0 16px; line-height: 1.08; letter-spacing: var(--ls-tight); }
.contact__lead { font-family: var(--font-body); font-size: 17px; line-height: 1.6; color: var(--text-3); margin: 0 0 28px; }
.contact__list { display: flex; flex-direction: column; gap: 14px; }
.contact__list-item { display: flex; align-items: center; gap: 12px; }
.contact__list-item .ic { color: var(--gl-cyan); }
.contact__list-item span.t { font-family: var(--font-body); font-size: 15px; color: var(--text-2); }

/* ---- Forms ---- */
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-family: var(--font-display); font-weight: 500; font-size: 13px; color: var(--text-3); }
.field input, .field select {
  width: 100%; height: 50px; padding: 0 16px; background: var(--gl-surface-2);
  border: 1px solid var(--border-subtle); border-radius: var(--radius-md);
  color: var(--text-1); font-family: var(--font-body); font-size: 15px; outline: none;
  transition: border-color var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.field input::placeholder { color: var(--text-4); }
.field input:focus, .field select:focus { border-color: var(--gl-cyan); box-shadow: var(--glow-cyan-soft); }
.form { display: flex; flex-direction: column; gap: 16px; }
.form h3 { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: #fff; }
.form__link { background: none; border: none; color: var(--text-3); font-family: var(--font-body); font-size: 13px; cursor: pointer; text-decoration: underline; }
.form__success { text-align: center; padding: 40px 10px; }
.form__success .ic { color: var(--gl-lime); }
.form__success h3 { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: #fff; margin: 16px 0 8px; }
.form__success p { color: var(--text-3); font-size: 14px; }

/* ---- Footer ---- */
.footer { border-top: 1px solid var(--border-subtle); background: var(--gl-surface-1); padding: 56px 24px 40px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.footer__about img { height: 44px; margin-bottom: 16px; }
.footer__about p { font-family: var(--font-body); font-size: 14px; line-height: 1.6; color: var(--text-3); max-width: 280px; }
.footer__col h4 { font-family: var(--font-display); font-weight: 600; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-4); margin-bottom: 14px; }
.footer__col a { display: block; font-family: var(--font-body); font-size: 14px; color: var(--text-2); margin-bottom: 10px; }
.footer__col a:hover { color: var(--gl-cyan); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--border-subtle); flex-wrap: wrap; gap: 16px; }
.footer__bottom span { font-family: var(--font-body); font-size: 13px; color: var(--text-4); }
.footer__social { display: flex; gap: 14px; }
.footer__social a { width: 38px; height: 38px; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--border-subtle); color: var(--text-2); }
.footer__social a:hover { border-color: var(--gl-cyan); color: var(--gl-cyan); }

/* ---- Modal ---- */
.modal { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; background: rgba(5,9,16,.72); backdrop-filter: blur(8px); padding: 20px; }
.modal.open { display: flex; }
.modal__box { width: 100%; max-width: 460px; }
.modal .card { padding: 34px; }
.modal__head { display: flex; justify-content: space-between; align-items: flex-start; }
.modal__close { background: none; border: none; color: var(--text-3); cursor: pointer; display: inline-flex; }
.modal h3 { font-family: var(--font-display); font-weight: 800; font-size: 26px; color: #fff; line-height: 1.1; }
.modal__lead { color: var(--text-3); font-size: 15px; line-height: 1.5; }
.modal__success { text-align: center; padding: 26px 6px 10px; }
.modal__success .ic { color: var(--gl-lime); }

/* ---- Utilities ---- */
.icon-glow-cyan { color: var(--gl-cyan); display: inline-flex; }
.hidden { display: none !important; }
.todo-note { font-size: 11px; color: var(--text-4); }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .hero h1 { font-size: 46px; }
  .grid-3 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: none; }
  .stat:nth-child(odd) { border-left: none; }
  .stat:nth-child(even) { border-left: 1px solid var(--border-subtle); }
  .stat:nth-child(n+3) { border-top: 1px solid var(--border-subtle); }
  .logowall { grid-template-columns: repeat(2, 1fr); }
  .tourmap { grid-template-columns: 1fr; }
  .tourmap__intro { padding: 36px 28px 8px; }
  .tourmap__title { font-size: 34px; }
  .tourmap__map { border-left: none; border-top: 1px solid var(--border-subtle); padding: 28px 20px 36px; }
  .contact__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .nav__links { display: none; }
  .heading h2 { font-size: 36px; }
}
@media (max-width: 560px) {
  /* Hero */
  .hero__inner { padding: 56px 20px 52px; gap: 28px; }
  .hero h1 { font-size: 33px; }
  .hero__lead { font-size: 16px; margin-top: 16px; }
  .hero__ctas { margin-top: 24px; gap: 10px; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .hero__ministats { gap: 14px 22px; margin-top: 26px; }
  .ministat__v { font-size: 23px; }
  .hero__visual { min-height: 0; margin-top: 6px; }
  .laptop { width: 100%; }
  .phone { right: -2px; bottom: -16px; transform: scale(.46); }
  .float-chip { padding: 8px 11px; gap: 8px; }
  .float-chip__icon { width: 28px; height: 28px; }
  .float-chip__v { font-size: 14px; }
  .float-chip--points { top: -12px; left: -4px; }
  .float-chip--paid { bottom: -8px; left: -4px; }
  /* Secciones */
  .stats-title { font-size: 30px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat, .stat:nth-child(even) { border-left: none; border-top: 1px solid var(--border-subtle); }
  .stat:first-child { border-top: none; }
  .logowall { grid-template-columns: 1fr; }
  .heading h2 { font-size: 28px; }
  .tourmap__title { font-size: 29px; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}
