/* ==========================================================================
   GYMMASTER — Landing
   Codeland Lab · Goya, Corrientes
   Estilo editorial oscuro · Space Grotesk + Inter
   ========================================================================== */

:root {
  --bg: #07080b;
  --bg-soft: #0c0e14;
  --bg-card: #0e1118;
  --text: #f5f7fb;
  --muted: #969dab;
  --line: rgba(255, 255, 255, .11);
  --line-soft: rgba(255, 255, 255, .06);

  --lime: #b8ff62;
  --blue: #4f7cff;
  --cyan: #1ee6d8;
  --violet: #a568ff;
  --orange: #ff8a3d;

  --radius: 28px;
  --radius-sm: 16px;

  --display: "Space Grotesk", "Inter", sans-serif;
  --body: "Inter", system-ui, sans-serif;

  --pad: clamp(20px, 5vw, 90px);
  --section-gap: clamp(90px, 13vh, 180px);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -18%, rgba(184, 255, 98, .10), transparent 45%),
    radial-gradient(circle at 85% 12%, rgba(79, 124, 255, .10), transparent 40%),
    var(--bg);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

::selection { background: var(--lime); color: #08130a; }

a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; background: none; border: 0; cursor: pointer; }
img, svg { max-width: 100%; display: block; }
h1, h2, h3 { font-family: var(--display); margin: 0; line-height: .95; letter-spacing: -.03em; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

/* ---------- Capas globales ---------- */
.noise {
  position: fixed;
  inset: 0;
  z-index: 100;
  opacity: .035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.cursor-glow {
  width: 460px;
  height: 460px;
  border-radius: 50%;
  position: fixed;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(184, 255, 98, .11), transparent 68%);
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: screen;
  opacity: 0;
}

.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  z-index: 90;
  background: rgba(255, 255, 255, .06);
}
.scroll-progress i {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--lime), var(--cyan));
}

/* ---------- Boot ---------- */
.boot {
  position: fixed;
  inset: 0;
  background: #050609;
  z-index: 200;
  display: grid;
  place-items: center;
  gap: 26px;
  align-content: center;
}
.boot-mark {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(52px, 10vw, 96px);
  letter-spacing: -.05em;
  color: var(--lime);
}
.boot-copy {
  display: grid;
  gap: 12px;
  justify-items: center;
  font-size: 10px;
  letter-spacing: .32em;
  color: var(--muted);
}
.boot-line {
  width: min(240px, 60vw);
  height: 2px;
  background: rgba(255, 255, 255, .1);
  overflow: hidden;
}
.boot-line i {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--lime);
}

/* ---------- Topbar ---------- */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px var(--pad);
  transition: background .35s ease, backdrop-filter .35s ease, border-color .35s ease, padding .35s ease;
  border-bottom: 1px solid transparent;
}
.topbar.stuck {
  background: rgba(7, 8, 11, .78);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand-symbol {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: linear-gradient(150deg, rgba(184, 255, 98, .16), rgba(79, 124, 255, .10));
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -.02em;
}
.brand-symbol.small { width: 38px; height: 38px; font-size: 12px; }
.brand-copy { display: grid; line-height: 1.1; }
.brand-copy strong { font-family: var(--display); font-size: 15px; letter-spacing: .02em; }
.brand-copy small { font-size: 9px; letter-spacing: .26em; color: var(--muted); }

.desktop-nav { display: flex; gap: 30px; font-size: 14px; color: var(--muted); }
.desktop-nav a { position: relative; padding: 4px 0; transition: color .25s ease; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 1px; width: 0;
  background: var(--lime);
  transition: width .3s ease;
}
.desktop-nav a:hover { color: var(--text); }
.desktop-nav a:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
  transition: background .3s ease, color .3s ease, border-color .3s ease;
}
.nav-cta:hover { background: var(--lime); color: #08130a; border-color: var(--lime); }
.nav-cta b { font-size: 12px; }

.burger { display: none; width: 40px; height: 40px; padding: 10px; }
.burger i {
  display: block;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: transform .3s ease, opacity .3s ease;
}
.burger[aria-expanded="true"] i:first-child { transform: translateY(3.5px) rotate(45deg); }
.burger[aria-expanded="true"] i:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 72px 0 auto 0;
  z-index: 79;
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 18px var(--pad) 34px;
  background: rgba(7, 8, 11, .96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-soft);
}
.mobile-menu a {
  font-family: var(--display);
  font-size: 26px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
}
.mobile-menu .mm-cta { color: var(--lime); border-bottom: 0; }
.mobile-menu.open { display: flex; }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--line);
  transition: transform .25s ease, background .3s ease, color .3s ease, border-color .3s ease;
}
.btn i { font-style: normal; font-size: 13px; transition: transform .3s ease; }
.btn:hover i { transform: translate(2px, -2px); }
.btn-ghost:hover i { transform: translateY(3px); }
.btn-primary {
  background: var(--lime);
  color: #08130a;
  border-color: var(--lime);
}
.btn-primary:hover { background: #cbff8a; }
.btn-ghost:hover { border-color: rgba(255, 255, 255, .35); background: rgba(255, 255, 255, .04); }

/* ---------- Tipografía de sección ---------- */
.eyebrow {
  display: inline-block;
  font-size: 10px;
  letter-spacing: .3em;
  color: var(--lime);
  margin-bottom: 20px;
}
.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  padding: 0 var(--pad);
  margin-bottom: clamp(40px, 6vw, 72px);
}
.section-head h2 {
  font-size: clamp(34px, 5.6vw, 76px);
  font-weight: 700;
}
.section-sub {
  max-width: 46ch;
  color: var(--muted);
  font-size: clamp(15px, 1.3vw, 18px);
}
.section-number {
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: .28em;
  color: var(--muted);
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  padding: clamp(120px, 17vh, 190px) var(--pad) 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hero-orbit {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}
.orbit-one {
  width: 620px; height: 620px;
  top: -180px; left: -160px;
  background: radial-gradient(circle, rgba(184, 255, 98, .17), transparent 65%);
}
.orbit-two {
  width: 520px; height: 520px;
  bottom: -200px; right: -120px;
  background: radial-gradient(circle, rgba(79, 124, 255, .20), transparent 65%);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  align-self: flex-start;
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, .02);
}
.pulse-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 0 rgba(184, 255, 98, .55);
  animation: pulse 2.1s infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 12px rgba(184, 255, 98, 0); }
  100% { box-shadow: 0 0 0 0 rgba(184, 255, 98, 0); }
}

.hero-title-wrap { margin: clamp(26px, 4vw, 46px) 0; }
.hero-title {
  font-size: clamp(42px, 9.4vw, 150px);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: .88;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line > span { display: block; }
.gradient-line > span {
  background: linear-gradient(100deg, var(--lime), var(--cyan) 55%, var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.outline-line > span {
  color: transparent;
  -webkit-text-stroke: 1.4px rgba(255, 255, 255, .55);
}

.hero-lower {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 34px;
  justify-content: space-between;
  max-width: 1500px;
}
.hero-description { max-width: 48ch; color: var(--muted); font-size: clamp(15px, 1.4vw, 19px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-index {
  margin-top: clamp(40px, 7vh, 90px);
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: .3em;
  color: var(--muted);
  border-top: 1px solid var(--line-soft);
  padding-top: 16px;
}

/* ---------- Mockups del hero ---------- */
.hero-stage {
  position: absolute;
  right: calc(var(--pad) * .5);
  top: 50%;
  transform: translateY(-46%);
  width: min(460px, 34vw);
  height: 520px;
  pointer-events: none;
  display: none;
}
/* Con los mockups a la derecha, el titular se achica para no pisarlos */
@media (min-width: 1180px) {
  .hero-stage { display: block; }
  .hero-title { font-size: clamp(62px, 7vw, 132px); }
  .hero-lower { padding-right: min(38vw, 500px); }
}

.stage-panel {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: linear-gradient(160deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .01));
  backdrop-filter: blur(8px);
  padding: 14px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .45);
}
.panel-label {
  font-size: 8.5px;
  letter-spacing: .24em;
  color: var(--muted);
  display: block;
  margin-bottom: 10px;
}
.panel-a { width: 360px; height: 250px; top: 20px; right: 40px; }
.panel-b { width: 190px; height: 190px; bottom: 120px; right: 250px; }
.panel-c { width: 195px; height: 250px; bottom: 30px; right: 20px; }

.mini-ui { display: flex; gap: 10px; height: calc(100% - 24px); }
.mini-sidebar {
  width: 46px;
  border-radius: 9px;
  background: rgba(255, 255, 255, .04);
  padding: 8px 7px;
  display: grid;
  gap: 7px;
  align-content: start;
}
.mini-sidebar i { display: block; height: 6px; border-radius: 3px; background: rgba(255, 255, 255, .13); }
.mini-sidebar i:first-child { background: var(--lime); }
.mini-content { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.mini-header { height: 14px; width: 55%; border-radius: 4px; background: rgba(255, 255, 255, .16); }
.mini-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.mini-stats i { height: 34px; border-radius: 8px; background: rgba(255, 255, 255, .06); border: 1px solid var(--line-soft); }
.mini-stats i:nth-child(1) { background: rgba(184, 255, 98, .14); }
.mini-chart {
  flex: 1;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  padding: 8px;
  border-radius: 9px;
  background: rgba(255, 255, 255, .03);
}
.mini-chart span {
  flex: 1;
  height: var(--h);
  border-radius: 3px 3px 1px 1px;
  background: linear-gradient(180deg, var(--lime), rgba(184, 255, 98, .25));
  transform-origin: bottom;
}

.ring-ui { display: grid; place-items: center; gap: 12px; height: calc(100% - 24px); }
.ring {
  width: 92px; height: 92px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(var(--lime) 0turn .86turn, rgba(255, 255, 255, .08) .86turn 1turn);
  position: relative;
}
.ring::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  background: #0b0d13;
}
.ring b {
  position: relative;
  z-index: 1;
  font-family: var(--display);
  font-size: 24px;
}
.ring b small { font-size: 11px; color: var(--muted); }
.ring-lines { width: 100%; display: grid; gap: 6px; }
.ring-lines i { height: 5px; border-radius: 3px; background: rgba(255, 255, 255, .1); }
.ring-lines i:nth-child(2) { width: 70%; }
.ring-lines i:nth-child(3) { width: 45%; background: rgba(184, 255, 98, .35); }

.phone-ui { display: grid; gap: 8px; }
.phone-top { height: 10px; width: 40%; border-radius: 4px; background: rgba(255, 255, 255, .18); }
.phone-card {
  border-radius: 10px;
  padding: 10px;
  background: linear-gradient(140deg, rgba(184, 255, 98, .18), rgba(79, 124, 255, .10));
  display: grid;
  gap: 6px;
}
.phone-card i { height: 7px; border-radius: 3px; background: rgba(255, 255, 255, .3); }
.phone-card i:last-child { width: 60%; }
.phone-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 9px;
  border-radius: 9px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, .03);
}
.phone-row i { height: 6px; width: 46%; border-radius: 3px; background: rgba(255, 255, 255, .16); }
.phone-row b { font-size: 7.5px; letter-spacing: .14em; color: var(--lime); }
.phone-row b.warn { color: var(--orange); }

/* ==========================================================================
   MARQUEE
   ========================================================================== */
.marquee-wrap {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, .015);
  padding: 22px 0;
  overflow: hidden;
}
.marquee { display: flex; }
.marquee-track {
  display: flex;
  align-items: center;
  gap: 34px;
  white-space: nowrap;
  padding-right: 34px;
  flex: 0 0 auto;
}
.marquee-track span {
  font-family: var(--display);
  font-size: clamp(20px, 3vw, 38px);
  font-weight: 600;
  letter-spacing: -.02em;
  color: rgba(255, 255, 255, .82);
}
.marquee-track em { color: var(--lime); font-style: normal; font-size: 14px; }

/* ==========================================================================
   MANIFIESTO
   ========================================================================== */
.manifesto { padding: var(--section-gap) var(--pad); }
.manifesto-grid {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 30px;
  align-items: start;
  max-width: 1400px;
}
.manifesto-copy {
  font-family: var(--display);
  font-size: clamp(24px, 3.6vw, 52px);
  line-height: 1.14;
  letter-spacing: -.03em;
}
.manifesto-copy span { color: var(--muted); }

/* ==========================================================================
   DOLORES
   ========================================================================== */
.pain { padding: 0 0 var(--section-gap); }
.pain-grid {
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}
.pain-card {
  background: var(--bg);
  padding: clamp(26px, 3vw, 42px);
  display: grid;
  gap: 12px;
  align-content: start;
  transition: background .35s ease;
}
.pain-card:hover { background: var(--bg-soft); }
.pain-card b { font-family: var(--display); font-size: clamp(19px, 1.8vw, 25px); letter-spacing: -.02em; }
.pain-card p { color: var(--muted); font-size: 15px; }
.pain-card.accent { background: linear-gradient(150deg, rgba(184, 255, 98, .10), rgba(255, 255, 255, .01)); }
.pain-card.accent b { color: var(--lime); }

/* ==========================================================================
   MÓDULOS
   ========================================================================== */
.modules { padding: 0 0 var(--section-gap); }
.modules-grid {
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 18px;
}
.mod {
  position: relative;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  padding: 26px 24px 28px;
  background: linear-gradient(170deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .008));
  display: grid;
  gap: 10px;
  align-content: start;
  overflow: hidden;
  transition: transform .4s cubic-bezier(.2, .8, .2, 1), border-color .4s ease;
}
.mod::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(184, 255, 98, .12), transparent 60%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
.mod:hover { transform: translateY(-6px); border-color: rgba(184, 255, 98, .3); }
.mod:hover::before { opacity: 1; }
.mod-num {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: .24em;
  color: var(--lime);
}
.mod h3 { font-size: clamp(20px, 1.8vw, 26px); font-weight: 600; }
.mod p { color: var(--muted); font-size: 14.5px; }

/* ==========================================================================
   PORTAL
   ========================================================================== */
.portal {
  padding: var(--section-gap) var(--pad);
  border-top: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 15% 30%, rgba(79, 124, 255, .10), transparent 45%),
    var(--bg);
}
.portal-inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
.portal-copy h2 { font-size: clamp(32px, 4.6vw, 64px); margin-bottom: 22px; }
.portal-list { margin: 28px 0 34px; display: grid; gap: 12px; }
.portal-list li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  color: var(--text);
  font-size: 15.5px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-soft);
}
.portal-list i { color: var(--lime); font-style: normal; font-size: 13px; }

.portal-visual { display: grid; place-items: center; }
.phone {
  width: min(300px, 78vw);
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 12px;
  background: linear-gradient(165deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .015));
  box-shadow: 0 40px 90px rgba(0, 0, 0, .5);
  position: relative;
}
.phone-notch {
  width: 92px; height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .2);
  margin: 2px auto 12px;
}
.phone-screen {
  border-radius: 24px;
  background: #0a0c12;
  border: 1px solid var(--line-soft);
  padding: 18px 16px 22px;
  display: grid;
  gap: 12px;
}
.ps-head { display: grid; gap: 2px; }
.ps-head b { font-family: var(--display); font-size: 20px; }
.ps-head small { font-size: 11px; color: var(--muted); letter-spacing: .1em; }
.ps-card {
  border-radius: 16px;
  padding: 16px;
  background: linear-gradient(150deg, rgba(184, 255, 98, .2), rgba(79, 124, 255, .12));
  display: grid;
  gap: 4px;
}
.ps-card small { font-size: 9px; letter-spacing: .24em; color: rgba(255, 255, 255, .7); }
.ps-card b { font-family: var(--display); font-size: 24px; }
.ps-tag {
  justify-self: start;
  margin-top: 6px;
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .35);
  letter-spacing: .08em;
}
.ps-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
  padding: 11px 13px;
  border-radius: 12px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, .025);
  color: var(--muted);
}
.ps-row b { font-size: 11.5px; letter-spacing: .06em; color: var(--text); }
.ps-row b.ok { color: var(--lime); }
.ps-row b.warn { color: var(--orange); }
.ps-bar { height: 5px; border-radius: 999px; background: rgba(255, 255, 255, .08); overflow: hidden; }
.ps-bar i { display: block; height: 100%; width: 68%; background: linear-gradient(90deg, var(--lime), var(--cyan)); }

/* ==========================================================================
   NÚMEROS
   ========================================================================== */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: var(--line-soft);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.stat {
  background: var(--bg);
  padding: clamp(34px, 4vw, 56px) var(--pad);
  display: grid;
  gap: 10px;
  align-content: center;
}
.stat b {
  font-family: var(--display);
  font-size: clamp(46px, 6vw, 90px);
  line-height: 1;
  letter-spacing: -.05em;
  color: var(--lime);
}
.stat span { font-size: 13px; color: var(--muted); letter-spacing: .06em; }

/* ==========================================================================
   PASOS
   ========================================================================== */
.steps { padding: var(--section-gap) 0; }
.steps-list { padding: 0 var(--pad); border-top: 1px solid var(--line-soft); }
.step {
  display: grid;
  grid-template-columns: 110px 1fr 40px;
  gap: 24px;
  align-items: center;
  padding: clamp(26px, 3.4vw, 44px) 0;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
  transition: padding-left .4s cubic-bezier(.2, .8, .2, 1);
}
.step::after {
  content: "";
  position: absolute;
  left: 0; bottom: -1px;
  height: 1px; width: 0;
  background: var(--lime);
  transition: width .6s cubic-bezier(.2, .8, .2, 1);
}
.step:hover { padding-left: 14px; }
.step:hover::after { width: 100%; }
.step-num {
  font-family: var(--display);
  font-size: clamp(38px, 4.6vw, 68px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .32);
  transition: color .35s ease, -webkit-text-stroke-color .35s ease;
}
.step:hover .step-num { color: var(--lime); -webkit-text-stroke-color: transparent; }
.step h3 { font-size: clamp(20px, 2.2vw, 30px); font-weight: 600; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 15px; max-width: 62ch; }
.step-icon { font-style: normal; color: var(--muted); font-size: 20px; justify-self: end; }

/* ==========================================================================
   CITA
   ========================================================================== */
.quote-section {
  padding: var(--section-gap) var(--pad);
  display: grid;
  gap: 30px;
  justify-items: start;
  max-width: 1400px;
  margin: 0 auto;
}
.big-quote {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(26px, 4.2vw, 62px);
  line-height: 1.08;
  letter-spacing: -.035em;
  max-width: 20ch;
}
.quote-author { display: grid; gap: 3px; }
.quote-author b { font-size: 14px; }
.quote-author small { font-size: 12px; color: var(--muted); letter-spacing: .16em; }

/* ==========================================================================
   PLANES
   ========================================================================== */
.pricing { padding: 0 0 var(--section-gap); border-top: 1px solid var(--line-soft); padding-top: var(--section-gap); }
.plans {
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 18px;
  align-items: start;
}
.plan {
  position: relative;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: clamp(26px, 2.6vw, 38px);
  background: linear-gradient(175deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .008));
  display: grid;
  gap: 18px;
  align-content: start;
  transition: transform .4s cubic-bezier(.2, .8, .2, 1), border-color .4s ease;
}
.plan:hover { transform: translateY(-6px); border-color: rgba(255, 255, 255, .22); }
.plan.featured {
  border-color: rgba(184, 255, 98, .45);
  background: linear-gradient(175deg, rgba(184, 255, 98, .12), rgba(255, 255, 255, .01));
}
.plan-flag {
  position: absolute;
  top: -11px; left: clamp(26px, 2.6vw, 38px);
  font-size: 9.5px;
  letter-spacing: .22em;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--lime);
  color: #08130a;
  font-weight: 700;
}
.plan header small { font-size: 9.5px; letter-spacing: .28em; color: var(--muted); display: block; margin-bottom: 6px; }
.plan header h3 { font-size: clamp(26px, 2.6vw, 34px); }
.plan-price { display: flex; align-items: baseline; gap: 8px; }
.plan-price b { font-family: var(--display); font-size: clamp(34px, 3.4vw, 46px); letter-spacing: -.04em; }
.plan-price span { color: var(--muted); font-size: 14px; }
.plan-for { color: var(--muted); font-size: 14.5px; }
.plan ul { display: grid; gap: 11px; padding-top: 6px; border-top: 1px solid var(--line-soft); }
.plan li { display: flex; gap: 10px; align-items: baseline; font-size: 14.5px; }
.plan li i { color: var(--lime); font-style: normal; font-size: 12px; }
.plan .btn { justify-content: center; margin-top: 6px; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { padding: 0 0 var(--section-gap); }
.faq-list { padding: 0 var(--pad); border-top: 1px solid var(--line-soft); max-width: 1100px; }
.faq-item { border-bottom: 1px solid var(--line-soft); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(20px, 2.4vw, 30px) 0;
  font-family: var(--display);
  font-size: clamp(18px, 2vw, 26px);
  letter-spacing: -.02em;
  transition: color .3s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--lime); }
.faq-item summary i {
  position: relative;
  width: 16px; height: 16px;
  flex: 0 0 16px;
}
.faq-item summary i::before,
.faq-item summary i::after {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 16px; height: 1.5px;
  background: currentColor;
  transition: transform .35s ease;
}
.faq-item summary i::after { transform: rotate(90deg); }
.faq-item[open] summary { color: var(--lime); }
.faq-item[open] summary i::after { transform: rotate(0deg); }
.faq-body { overflow: hidden; }
.faq-body p {
  color: var(--muted);
  font-size: 15.5px;
  max-width: 70ch;
  padding-bottom: clamp(20px, 2.4vw, 30px);
}

/* ==========================================================================
   CONTACTO
   ========================================================================== */
.contact {
  padding: var(--section-gap) var(--pad);
  border-top: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 50% 120%, rgba(184, 255, 98, .14), transparent 55%),
    var(--bg);
}
.contact-head { max-width: 900px; margin-bottom: clamp(40px, 5vw, 70px); }
.contact-head h2 { font-size: clamp(34px, 5.6vw, 78px); margin-bottom: 22px; }

.channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 40px;
}
.channel {
  background: var(--bg);
  padding: clamp(24px, 2.6vw, 34px);
  display: grid;
  gap: 8px;
  position: relative;
  transition: background .35s ease;
}
.channel:hover { background: var(--bg-soft); }
.channel small { font-size: 9.5px; letter-spacing: .28em; color: var(--muted); }
.channel strong { font-family: var(--display); font-size: clamp(17px, 1.6vw, 22px); letter-spacing: -.02em; word-break: break-word; }
.channel i {
  position: absolute;
  top: clamp(24px, 2.6vw, 34px);
  right: clamp(24px, 2.6vw, 34px);
  font-style: normal;
  color: var(--muted);
  transition: transform .3s ease, color .3s ease;
}
.channel:hover i { color: var(--lime); transform: translate(3px, -3px); }
.channel.static { cursor: default; }
.channel.static:hover i { transform: none; color: var(--muted); }

.contact-button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 20px 34px;
  border-radius: 999px;
  background: var(--lime);
  color: #08130a;
  font-family: var(--display);
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 700;
  transition: background .3s ease, transform .3s ease;
}
.contact-button:hover { background: #cbff8a; }
.contact-button i { font-style: normal; transition: transform .3s ease; }
.contact-button:hover i { transform: translate(3px, -3px); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  padding: 34px var(--pad) 44px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
  justify-content: space-between;
}
.foot-brand { display: flex; align-items: center; gap: 12px; }
.foot-brand-copy { display: grid; line-height: 1.15; }
.foot-brand-copy strong { font-family: var(--display); font-size: 15px; letter-spacing: .02em; }
.foot-brand-copy small { font-size: 9px; letter-spacing: .22em; color: var(--muted); }
.foot-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 10.5px;
  letter-spacing: .18em;
  color: var(--muted);
}
.foot-meta a { transition: color .25s ease; }
.foot-meta a:hover { color: var(--lime); }

/* ==========================================================================
   ESTADOS DE ANIMACIÓN
   ========================================================================== */
.js-ready .reveal-up,
.js-ready .reveal-lines .rl-inner,
.js-ready .hero-title .line > span { will-change: transform, opacity; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 980px) {
  .portal-inner { grid-template-columns: 1fr; }
  .portal-visual { order: -1; }
  .manifesto-grid { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 860px) {
  .desktop-nav, .nav-cta { display: none; }
  .burger { display: block; }
  .step { grid-template-columns: 64px 1fr; }
  .step-icon { display: none; }
  .cursor-glow { display: none; }
}

@media (max-width: 520px) {
  .hero { padding-top: 118px; }
  .hero-title-wrap { max-width: none; }
  .btn { width: 100%; justify-content: center; }
  .hero-actions { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ==========================================================================
   SPLIT DE TEXTO (lo genera main.js) + estados iniciales de animación
   ========================================================================== */
.rl-w {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  padding: .16em 0 .14em;
  margin: -.16em 0 -.14em;
}
.rl-i { display: inline-block; }

.hero-title .line {
  padding: .1em 0 .06em;
  margin: -.1em 0 -.06em;
}

.boot-mark { opacity: 0; transform: translateY(14px); }

.faq-body { height: auto; }
