/* ─── Tokens ─── */
:root {
  --ink:      #0c0c0f;
  --ink2:     #111115;
  --ink3:     #1a1a20;
  --text:     #e8e9f0;
  --muted:    #72748a;
  --soft:     #b8bace;
  --line:     rgba(255,255,255,.08);
  --line-s:   rgba(255,255,255,.14);
  --purple:   #7c3aed;
  --lime:     #c9ff47;   /* accent — not gradient, just lime */
  --t:        .18s ease;
  --nav-h:    64px;

  /* type */
  --display: 'Syne', sans-serif;
  --body:    'Inter', sans-serif;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--ink);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
/* overflow hidden se gestiona por JS en el intro, no por clase en HTML */
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font: inherit; }
img, svg { display: block; max-width: 100%; }

/* ─── Background — subtle noise-like grain ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 0% 0%, rgba(124,58,237,.18), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(124,58,237,.1), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* ─── Scroll progress ─── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--lime);
  z-index: 9000;
  transition: width .1s linear;
}

/* ─── Intro ─── */
#intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
}
/* inline-flex encoge el contenedor al ancho real del texto */
.intro-inner {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
}
.intro-wordmark {
  font-family: var(--display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: white;
  white-space: nowrap;
  opacity: 0;
  animation: intro-fade .5s .1s ease forwards;
}
@keyframes intro-fade { to { opacity: 1; } }
.intro-track {
  width: 100%;   /* mismo ancho que el wordmark */
  height: 1px;
  background: rgba(255,255,255,.1);
}
.intro-bar {
  height: 100%; width: 0;
  background: var(--lime);
  animation: intro-fill 1s .4s ease forwards;
}
@keyframes intro-fill { to { width: 100%; } }
#intro.exit {
  transition: transform .65s .1s cubic-bezier(.86,0,.07,1);
  transform: translateY(-100%);
}

/* ─── Cursor glow ─── */
#cursor-glow {
  position: fixed;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,.08), transparent 65%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 1;
  display: none;
}
@media (hover: hover) { #cursor-glow { display: block; } }

/* ─── Container ─── */
.container {
  width: min(calc(100% - 3rem), 1480px);
  margin-inline: auto;
}
.section { padding: 120px 0; position: relative; z-index: 1; }
.hidden { display: none; }

/* ─── Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ─── HEADER ─── */
.site-header {
  position: fixed; top: 0; width: 100%;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: border-color .25s;
}
/* El blur va en un pseudo-elemento para que no rompa position:fixed de los hijos */
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(12,12,15,0);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: background .25s;
  z-index: -1;
}
.site-header.scrolled { border-bottom-color: var(--line); }
.site-header.scrolled::before { background: rgba(12,12,15,.88); }
.navbar {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: max(1.5rem, 5vw);
}
.logo { display: inline-flex; align-items: center; }
.logo-img {
  height: 44px;
  width: auto;
  mix-blend-mode: screen;   /* fondo negro del PNG desaparece en el sitio oscuro */
}
.logo-img--footer {
  height: 36px;
  width: auto;
  mix-blend-mode: screen;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  color: var(--muted);
  font-size: .88rem;
  font-weight: 500;
}
.nav-menu a { transition: color var(--t); }
.nav-menu a:hover, .nav-menu a.active-link { color: var(--text); }
.nav-cta {
  padding: 8px 18px;
  border-radius: 6px;
  border: 1px solid var(--line-s);
  color: var(--text);
  font-weight: 600;
  font-size: .85rem;
  transition: background var(--t), border-color var(--t);
}
.nav-cta:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.22); }
.nav-toggle {
  display: none;
  width: 38px; height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.04);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 16px; height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}

/* ─── BUTTONS — not pill, not gradient ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 22px;
  border-radius: 8px;           /* intentional — not 999px */
  border: 1.5px solid transparent;
  font-family: var(--body);
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .01em;
  cursor: pointer;
  white-space: nowrap;
  user-select: none;
  transition: all var(--t);
  position: relative;
}
/* Primary: white on dark — inverted, distinctive */
.btn-primary {
  background: #ffffff;
  color: #0c0c0f;
  border-color: #ffffff;
}
.btn-primary:hover {
  background: #e8e8ea;
  border-color: #e8e8ea;
  transform: translateY(-1px);
}
/* Ghost: outline */
.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,.75);
  border-color: var(--line-s);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.25);
  color: white;
}
/* Card: subtle fill */
.btn-card {
  background: rgba(255,255,255,.06);
  color: var(--text);
  border-color: var(--line);
}
.btn-card:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--line-s);
}
/* Submit: lime */
.btn-submit {
  background: var(--lime);
  color: #0c0c0f;
  border-color: var(--lime);
  font-weight: 700;
}
.btn-submit:hover {
  background: #d9ff5c;
  border-color: #d9ff5c;
  transform: translateY(-1px);
}
.btn-arrow { transition: transform var(--t); }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 1;
  padding-bottom: 4rem;
}
.hero-inner {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 640px) 1fr;
  align-items: center;
  gap: 5vw;
  padding-left: max(2rem, 7vw);
  padding-top: calc(var(--nav-h) + 2rem);
}
.hero-content { padding-right: 2rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--lime);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--lime);
  flex: none;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

/* Display heading uses Syne */
.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.6rem, 5vw, 5.6rem);
  line-height: 1.0;
  letter-spacing: -.02em;
  font-weight: 800;
  margin-bottom: 24px;
}
.gradient-text {
  font-style: normal;
  display: block;
  color: var(--lime);  /* solid — not shimmer gradient */
}
.hero-lead {
  max-width: 520px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}
.hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.stat-item { padding: 0 24px; }
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { padding-right: 0; }
.stat-item strong {
  display: block;
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 2px;
}
.stat-item span { color: var(--muted); font-size: .8rem; }
.stat-sep { width: 1px; height: 32px; background: var(--line); flex: none; }

/* ─── Hero visual ─── */
.hero-visual {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
}
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
}
.orb-one {
  width: min(320px,38vw); height: min(320px,38vw);
  background: radial-gradient(circle, rgba(124,58,237,.28) 0%, transparent 70%);
  top: -20px; right: 40px;
  animation: orb-drift 9s ease-in-out infinite;
}
.orb-two {
  width: min(240px,28vw); height: min(240px,28vw);
  background: radial-gradient(circle, rgba(201,255,71,.12) 0%, transparent 70%);
  bottom: 20px; left: 10px;
  animation: orb-drift 11s ease-in-out infinite reverse;
  animation-delay: -4s;
}
.orb-three {
  width: min(140px,16vw); height: min(140px,16vw);
  background: radial-gradient(circle, rgba(124,58,237,.18) 0%, transparent 70%);
  top: 40%; right: 0;
  animation: orb-drift 7s ease-in-out infinite;
  animation-delay: -2s;
}
@keyframes orb-drift {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-16px); }
}
.hero-scroll-hint {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
}
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, transparent, var(--line-s), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse { 0%,100% { opacity: .4; } 50% { opacity: 1; } }

/* ─── Card group — card + pills juntos, pills se posicionan relativas a esto ─── */
.card-group {
  position: relative;
  width: min(100%, 400px);
}

/* ─── Dashboard card ─── */
.dashboard-card {
  position: relative;
  border: 1px solid var(--line-s);
  background: var(--ink2);
  border-radius: 20px;
  box-shadow: 0 32px 80px rgba(0,0,0,.5);
  transform-style: preserve-3d;
}
.main-card {
  width: min(100%, 400px);
  padding: 24px;
  will-change: transform;
}
.card-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--soft);
  letter-spacing: .04em;
}
.card-tag {
  margin-left: auto;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(124,58,237,.2);
  color: var(--purple);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22c55e;
  flex: none;
  animation: blink 2s ease-in-out infinite;
}
.card-metrics {
  display: flex;
  gap: 0;
  margin-bottom: 16px;
  padding: 12px;
  border-radius: 10px;
  background: var(--ink3);
  border: 1px solid var(--line);
}
.metric-item { flex: 1; text-align: center; }
.metric-num {
  display: block;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
  color: white;
  letter-spacing: -.02em;
}
.metric-label { display: block; font-size: .66rem; color: var(--muted); margin: 2px 0 4px; }
.metric-badge {
  display: inline-block;
  padding: 1px 6px;
  border-radius: 4px;
  font-size: .64rem;
  font-weight: 600;
}
.metric-badge.up { background: rgba(34,197,94,.14); color: #22c55e; }
.metric-badge.neutral { background: rgba(201,255,71,.12); color: var(--lime); }
.metric-divider { width: 1px; background: var(--line); margin: 0 8px; }
.flow-list { display: grid; gap: 8px; }
.flow-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--ink3);
  border: 1px solid var(--line);
}
.flow-icon {
  width: 26px; height: 26px;
  display: grid; place-items: center;
  flex: none;
  border-radius: 6px;
  font-size: .72rem; font-weight: 700;
}
.done-icon { background: rgba(34,197,94,.14); color: #22c55e; }
.active-icon { background: rgba(201,255,71,.12); color: var(--lime); }
.flow-item p { font-size: .82rem; color: var(--soft); font-weight: 500; margin-bottom: 1px; }
.flow-item small { font-size: .7rem; color: var(--muted); }

/* Floating pills */
.floating-pill {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: 8px;          /* not pill shape */
  border: 1px solid var(--line-s);
  background: var(--ink2);
  font-size: .78rem;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
}
.floating-pill span:last-child { color: var(--soft); }
.floating-pill strong { color: white; font-weight: 600; }
.pill-dot { width: 6px; height: 6px; border-radius: 50%; flex: none; }
.pill-dot.green { background: #22c55e; }
.pill-dot.pink  { background: #f472b6; }
.pill-wa { left: -20px; top: -18px; animation: float 6s ease-in-out infinite; }
.pill-ig { right: -20px; bottom: -18px; animation: float 7s ease-in-out infinite; animation-delay: -.9s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ─── Trust marquee ─── */
.trust-marquee-wrap {
  position: relative; z-index: 1;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink2);
  overflow: hidden;
  padding: 13px 0;
}
.trust-marquee { overflow: hidden; white-space: nowrap; }
.marquee-track {
  display: inline-flex;
  animation: marquee 30s linear infinite;
  will-change: transform;
}
.trust-marquee-wrap:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 28px;
  color: var(--muted);
  font-size: .82rem;
  white-space: nowrap;
}
.marquee-item svg { color: var(--lime); flex: none; }

/* ─── Section headings ─── */
.section-heading { max-width: 700px; margin-bottom: 52px; }
.section-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--lime);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.section-heading h2 {
  font-family: var(--display);
  font-size: clamp(1.9rem, 3.5vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -.02em;
  font-weight: 800;
  margin-bottom: 14px;
}
.section-heading p { color: var(--muted); font-size: 1rem; line-height: 1.7; }

/* ─── Bento ─── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;            /* gap of 1px = visible background = grid lines */
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.bento-card {
  position: relative;
  min-height: 240px;
  padding: 28px;
  background: var(--ink2);
  transition: background var(--t);
}
.bento-card:hover { background: var(--ink3); }
.bento-large { grid-column: span 2; grid-row: span 2; }
.bento-wide  { grid-column: span 2; }
.bento-icon {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  margin-bottom: 16px;
  border-radius: 8px;
  background: var(--ink3);
  border: 1px solid var(--line);
}
.bento-num {
  position: absolute;
  bottom: 20px; right: 22px;
  font-family: var(--display);
  font-size: 4rem;
  font-weight: 800;
  color: rgba(255,255,255,.03);
  line-height: 1;
  pointer-events: none;
}
.bento-card h3 {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -.01em;
  margin-bottom: 8px;
  color: white;
}
.bento-card p { color: var(--muted); font-size: .9rem; line-height: 1.65; }
.bento-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.bento-tags span {
  padding: 3px 9px;
  border-radius: 4px;
  background: var(--ink3);
  border: 1px solid var(--line);
  font-size: .72rem;
  color: var(--muted);
}

/* ─── Pricing ─── */
.pricing-section { background: var(--ink2); }
.pricing-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.tab-btn {
  height: 36px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font-weight: 500;
  font-size: .82rem;
  cursor: pointer;
  transition: all var(--t);
}
.tab-btn:hover { color: var(--text); border-color: var(--line-s); }
.tab-btn.active {
  background: var(--lime);
  color: #0c0c0f;
  border-color: var(--lime);
  font-weight: 700;
}
.pricing-grid { display: none; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.pricing-grid.active { display: grid; }

.price-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: var(--ink2);
  position: relative;
  transition: background var(--t);
}
.price-card:hover { background: var(--ink3); }

/* Featured — lime accent top border, no z-index hack */
.price-card.featured {
  background: var(--ink3);
  box-shadow: inset 0 2px 0 var(--lime);   /* top accent line */
}
.featured-border { display: none; } /* not needed with inset shadow */

.badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 3px 9px;
  border-radius: 4px;
  background: rgba(201,255,71,.12);
  color: var(--lime);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.plan-tier {
  display: block;
  color: var(--muted);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.price-header h3 {
  font-family: var(--display);
  font-size: 2.8rem;
  line-height: 1;
  letter-spacing: -.03em;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
}
.price-header h3 sup { font-size: 1.2rem; vertical-align: super; letter-spacing: 0; margin-right: 2px; }
.price-header p { color: var(--muted); font-size: .87rem; margin-bottom: 4px; }
.price-card ul { display: grid; gap: 10px; margin: 20px 0; }
.price-card li {
  position: relative;
  padding-left: 20px;
  color: var(--soft);
  font-size: .88rem;
}
.price-card li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--lime);
  font-weight: 700;
}
.price-card.featured li::before { color: var(--lime); }
.price-card .btn { margin-top: auto; }

/* Add-ons */
.addons { margin-top: 40px; }
.addons-heading { margin-bottom: 20px; }
.addons-heading h3 {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 8px;
}
.addons-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.addon-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  background: var(--ink2);
  transition: background var(--t);
}
.addon-card:hover { background: var(--ink3); }
.addon-card span { color: var(--soft); font-size: .85rem; }
.addon-card strong { color: white; font-size: .9rem; white-space: nowrap; font-weight: 600; }

/* ─── Method / Timeline ─── */
.timeline { display: grid; gap: 0; padding-left: 56px; position: relative; }
.timeline::before {
  content: '';
  position: absolute;
  left: 18px; top: 22px; bottom: 22px;
  width: 1px;
  background: var(--line-s);
}
.timeline-item { display: flex; gap: 24px; padding-bottom: 32px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-marker {
  position: absolute;
  left: -56px; top: 0;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--lime);
  border: none;
  flex: none;
}
.timeline-marker span {
  font-family: var(--display);
  font-size: .7rem;
  font-weight: 800;
  color: #0c0c0f;
}
.timeline-card {
  flex: 1;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--ink2);
  transition: border-color var(--t), background var(--t);
}
.timeline-card:hover { border-color: var(--line-s); background: var(--ink3); }
.timeline-card h3 {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 7px;
  color: white;
}
.timeline-card p { color: var(--muted); font-size: .9rem; line-height: 1.68; }
.timeline-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.timeline-tags span {
  padding: 3px 9px;
  border-radius: 4px;
  background: var(--ink3);
  border: 1px solid var(--line);
  font-size: .72rem;
  color: var(--muted);
}

/* ─── FAQ ─── */
.faq-container { max-width: 860px; }
.faq-list { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.faq-item { background: var(--ink2); transition: background var(--t); }
.faq-item.open { background: var(--ink3); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 22px;
  background: transparent; border: 0;
  color: var(--text);
  font-weight: 500;
  font-size: .93rem;
  text-align: left;
  cursor: pointer;
  gap: 14px;
  transition: color var(--t);
}
.faq-q:hover { color: white; }
.faq-icon {
  width: 22px; height: 22px;
  border-radius: 4px;
  border: 1px solid var(--line);
  background: var(--ink3);
  display: grid; place-items: center;
  flex: none;
  font-size: .8rem;
  color: var(--muted);
  transition: background var(--t), color var(--t), transform var(--t);
}
.faq-icon::before { content: '+'; }
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(201,255,71,.1);
  color: var(--lime);
  border-color: rgba(201,255,71,.25);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-a.open { max-height: 500px; }
.faq-a-inner { padding: 0 22px 18px; color: var(--muted); font-size: .9rem; line-height: 1.75; }

/* ─── CTA ─── */
.final-cta { padding-top: 60px; }
.cta-box {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  padding: 56px;
  border: 1px solid var(--line-s);
  border-radius: 16px;
  background: var(--ink2);
  position: relative;
  overflow: hidden;
}
.cta-glow-one {
  position: absolute;
  top: -60px; left: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201,255,71,.08), transparent 60%);
  pointer-events: none;
}
.cta-glow-two {
  position: absolute;
  bottom: -60px; right: -40px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(124,58,237,.1), transparent 60%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.1;
  letter-spacing: -.02em;
  font-weight: 800;
  margin: 10px 0 14px;
}
.cta-content > p { color: var(--muted); font-size: 1rem; margin-bottom: 24px; }
.cta-guarantees { display: grid; gap: 8px; }
.cta-guarantees div { display: flex; align-items: center; gap: 8px; color: var(--soft); font-size: .87rem; }
.cta-guarantees span { color: var(--lime); font-weight: 600; font-size: .9rem; }

/* Form */
.lead-form { position: relative; display: grid; gap: 12px; z-index: 1; }
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.lead-form label { display: grid; gap: 6px; color: var(--soft); font-size: .83rem; font-weight: 500; }
.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line-s);
  border-radius: 8px;
  background: var(--ink);
  color: var(--text);
  padding: 11px 13px;
  outline: none;
  font-size: .9rem;
  transition: border-color var(--t), box-shadow var(--t);
}
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(201,255,71,.12);
}
.lead-form select option { background: #111; }
.full-field { grid-column: 1 / -1; }
.checkbox-field {
  display: flex !important;
  align-items: flex-start;
  gap: 10px !important;
  color: var(--muted) !important;
  font-weight: 400 !important;
  font-size: .82rem !important;
}
.checkbox-field input { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--lime); flex: none; }
.checkbox-field a { color: var(--lime); text-decoration: underline; text-underline-offset: 3px; }
.form-note { margin-top: 8px; color: var(--muted); font-size: .8rem; text-align: center; }
.form-note a { color: var(--lime); }

/* Mobile sticky CTA */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  padding: 12px 20px calc(12px + env(safe-area-inset-bottom));
  background: rgba(12,12,15,.96);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(16px);
  z-index: 900;
  transition: transform .3s ease;
}
.mobile-cta .btn { width: 100%; justify-content: center; }

/* ─── Footer ─── */
.footer {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  background: var(--ink2);
  position: relative; z-index: 1;
}
.footer-content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}
.footer p { color: var(--muted); font-size: .82rem; text-align: right; }
.footer p a { color: var(--soft); }
.footer p a:hover { color: white; }
.footer-links { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; color: var(--muted); font-size: .82rem; }
.footer-links a:hover, .footer-button:hover { color: var(--text); }
.footer-button { border: 0; background: transparent; color: var(--muted); cursor: pointer; font-size: .82rem; }

/* ─── Cookie ─── */
.cookie-banner { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 2000; display: none; }
.cookie-banner.show { display: block; }
.cookie-panel {
  width: min(100%, 1000px); margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: center;
  padding: 18px 22px;
  border: 1px solid var(--line-s); border-radius: 12px;
  background: rgba(17,17,21,.97);
  backdrop-filter: blur(20px);
}
.cookie-kicker { display: inline-block; margin-bottom: 4px; color: var(--lime); font-size: .68rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.cookie-panel h3, .cookie-modal-box h3 { font-family: var(--display); font-size: 1.1rem; font-weight: 700; }
.cookie-panel p, .cookie-modal-box > p { color: var(--muted); margin-top: 4px; font-size: .85rem; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }
.cookie-actions .btn { min-height: 38px; padding-inline: 16px; font-size: .83rem; height: auto; }
.cookie-modal { position: fixed; inset: 0; z-index: 2100; display: none; place-items: center; padding: 20px; background: rgba(0,0,0,.65); }
.cookie-modal.show { display: grid; }
.cookie-modal-box {
  position: relative; width: min(100%, 560px);
  padding: 28px;
  border: 1px solid var(--line-s); border-radius: 14px;
  background: var(--ink2);
}
.modal-close { position: absolute; top: 14px; right: 14px; width: 32px; height: 32px; border: 1px solid var(--line); border-radius: 6px; background: var(--ink3); color: var(--text); cursor: pointer; font-size: 1.1rem; display: grid; place-items: center; transition: background var(--t); }
.modal-close:hover { background: rgba(255,255,255,.1); }
.cookie-option { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 12px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 8px; background: var(--ink3); }
.cookie-option strong { display: block; margin-bottom: 2px; font-size: .88rem; }
.cookie-option span { color: var(--muted); font-size: .8rem; }
.cookie-option input { width: 18px; height: 18px; accent-color: var(--lime); flex: none; }
.full-button { width: 100%; margin-top: 16px; }

/* ─── Legal / gracias ─── */
.page-hero { padding-top: 130px; padding-bottom: 56px; }
.page-hero h1 { font-family: var(--display); font-size: clamp(2.2rem,5vw,4.5rem); line-height: 1.02; letter-spacing: -.02em; font-weight: 800; }
.page-hero h1 span { display: block; color: var(--lime); }
.page-hero p { color: var(--muted); font-size: 1rem; margin-top: 14px; max-width: 540px; }
.legal-content { max-width: 800px; padding-top: 130px; padding-bottom: 80px; }
.legal-content h1 { font-family: var(--display); font-size: clamp(1.8rem,4vw,3rem); letter-spacing: -.02em; margin-bottom: 20px; }
.legal-content h2 { font-family: var(--display); font-size: clamp(1.2rem,3vw,1.7rem); margin-top: 36px; margin-bottom: 10px; }
.legal-content p, .legal-content li { color: var(--muted); margin-top: 8px; line-height: 1.72; }
.legal-content ul { padding-left: 18px; list-style: disc; }
.thank-you-card { max-width: 660px; margin: 140px auto 72px; padding: 48px; border: 1px solid var(--line-s); border-radius: 16px; background: var(--ink2); }
.thank-you-card h1 { font-family: var(--display); font-size: clamp(2rem,5vw,3.8rem); line-height: 1.02; letter-spacing: -.02em; margin-bottom: 14px; }
.thank-you-card p { color: var(--muted); margin-bottom: 22px; }

/* ─── Responsive ─── */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; padding-inline: max(2rem,5vw); }
  .hero-visual { min-height: 380px; padding-right: max(2rem,5vw); }
  .cta-box { grid-template-columns: 1fr; padding: 40px 32px; }
  .bento-grid, .addons-grid { grid-template-columns: repeat(2,1fr); }
  .bento-large, .bento-wide { grid-column: span 2; }
  .footer-content { grid-template-columns: 1fr; }
  .footer p { text-align: left; }
  .footer-links { justify-content: flex-start; }
}
@media (max-width: 860px) {
  body { overflow-x: hidden; }
  .eyebrow-dot, .status-dot { animation: none; }

  .section { padding: 80px 0; }
  .hero { padding-bottom: 80px; overflow: hidden; }

  /* Pills: visibles pero sin animación de flotar */
  .floating-pill { animation: none; }
  .pill-wa { left: 0; top: -14px; }
  .pill-ig { right: 0; bottom: -14px; }

  /* Orbs más pequeños */
  .orb-one { width: 180px; height: 180px; right: 0; }
  .orb-two { width: 140px; height: 140px; }
  .orb-three { display: none; }

  .pricing-grid { grid-template-columns: 1fr; border-radius: 10px; }
  .nav-toggle { display: flex; }
  /* Cuando el menú está abierto, el header se expande a pantalla completa */
  .site-header.menu-open {
    height: 100vh;
    height: 100dvh;
    overflow-y: auto;
  }
  .nav-menu {
    position: absolute;          /* relativo al header, no al viewport */
    top: var(--nav-h);
    left: 0; right: 0; bottom: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding: 16px max(1.5rem,5vw);
    background: rgba(12,12,15,.97);
    overflow-y: auto;
  }
  .nav-menu.active { display: flex; }
  .nav-menu a { padding: 13px 12px; border-radius: 8px; width: 100%; font-size: 1rem; }
  .nav-menu a:hover { background: rgba(255,255,255,.05); }
  .nav-cta { text-align: center; margin-top: 8px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 0; border-top: none; padding-top: 0; }
  .stat-item { padding: 10px 0; border-bottom: 1px solid var(--line); width: 100%; }
  .stat-item:last-child { border-bottom: none; }
  .stat-sep { display: none; }
  .timeline { padding-left: 44px; }
  .timeline::before { left: 14px; }
  .timeline-marker { left: -44px; width: 30px; height: 30px; }
  .timeline-marker span { font-size: .62rem; }
  .mobile-cta { display: block; }
  .hero-scroll-hint { display: none; }

  /* Marquee en móvil: quitar animación, mostrar items en cuadrícula estática */
  .trust-marquee-wrap { padding: 14px 0; }
  .trust-marquee { overflow: visible; white-space: normal; }
  .marquee-track {
    animation: none;
    transform: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
  .marquee-track .marquee-item:nth-child(n+8) { display: none; }
  .marquee-item { padding: 5px 12px; }
}
@media (max-width: 600px) {
  .bento-grid, .addons-grid, .form-grid { grid-template-columns: 1fr; }
  .bento-large, .bento-wide { grid-column: auto; }
  .hero h1 { font-size: clamp(2rem, 8.5vw, 2.8rem); }

  /* Tabs de precios: scroll horizontal en lugar de grid apretado */
  .pricing-tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
    gap: 7px;
    scrollbar-width: none;
  }
  .pricing-tabs::-webkit-scrollbar { display: none; }
  .tab-btn { flex: none; }

  .cta-box { padding: 28px 20px; border-radius: 12px; }
  .cookie-panel { grid-template-columns: 1fr; }
  .cookie-actions { flex-direction: column; }
  .cookie-actions .btn { width: 100%; }
  .thank-you-card { padding: 28px 18px; margin: 110px auto 56px; }

}
