@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;700&display=swap');

:root {
  --bg: #1C1C1C;
  --surface: #242424;
  --text: #F0F0EE;
  --text-2: #8A8A8A;
  --text-3: #555555;
  --border: #2E2E2E;
  --border-2: #3A3A3A;
  --cyan: #1DEDD9;
  --blue: #2455D1;
  --gradient: linear-gradient(135deg, #1DEDD9 0%, #2455D1 100%);
  --font-main: "Neue Haas Grotesk Display", "Neue Haas Grotesk Text", "Helvetica Neue", "DM Sans", sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --section-pad: 100px;
  --shell: 1200px;
  --radius: 12px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-main);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  cursor: none;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(46, 46, 46, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 46, 46, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.45;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(240,240,238,.03) 0.7px, transparent 0.7px);
  background-size: 8px 8px;
  mix-blend-mode: soft-light;
  opacity: .25;
  z-index: -1;
}

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

.shell {
  width: min(calc(100% - 96px), var(--shell));
  margin: 0 auto;
}

.narrow-shell { width: min(calc(100% - 96px), 920px); }
.centered-shell { text-align: center; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(28, 28, 28, 0.82);
  backdrop-filter: blur(16px);
  border-color: var(--border);
}

.nav-shell {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: flex; align-items: center; }
.brand-logo {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
}
.brand-dot {
  width: 5px; height: 5px; border-radius: 50%; background: var(--gradient); display: inline-block;
}
.brand-sub {
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.nav-desktop { display: flex; align-items: center; gap: 28px; }
.nav-link {
  color: var(--text-2);
  font-size: 14px;
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: 999px;
  background: linear-gradient(var(--bg), var(--bg)) padding-box, var(--gradient) border-box;
  border: 1px solid transparent;
  font-size: 14px;
  color: var(--text);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 24px rgba(29, 237, 217, 0.18);
  background: linear-gradient(rgba(36,85,209,.14), rgba(29,237,217,.1)) padding-box, var(--gradient) border-box;
}

.nav-toggle, .nav-mobile { display: none; }

.section { position: relative; padding: var(--section-pad) 0; }
.section-alt { background: var(--surface); }

.hero {
  min-height: 100vh;
  padding: 120px 0 80px;
  display: flex;
  align-items: center;
  overflow: clip;
}

.hero-grid,
.hero-blur {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-grid {
  background-image:
    linear-gradient(rgba(46, 46, 46, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 46, 46, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: .45;
}

.hero-blur {
  width: 400px;
  height: 400px;
  right: 8%;
  top: 6%;
  background: rgba(36, 85, 209, 0.06);
  filter: blur(90px);
  border-radius: 50%;
  inset: auto 8% auto auto;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 800px) minmax(280px, 380px);
  gap: 64px;
  align-items: center;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .15em;
  color: var(--cyan);
  text-transform: uppercase;
}
.kicker-line {
  width: 24px;
  height: 1px;
  background: var(--cyan);
}

.hero-title,
.section-title,
.cta-title {
  margin: 20px 0 0;
  letter-spacing: -0.03em;
  line-height: .96;
  font-weight: 700;
}

.hero-title { font-size: clamp(3rem, 7vw, 4.5rem); max-width: 800px; }
.section-title { font-size: clamp(2.5rem, 5vw, 3rem); }
.section-title-large { font-size: clamp(3rem, 6vw, 3.5rem); }

.mask-line {
  display: block;
  overflow: hidden;
}
.title-line-inner {
  display: inline-block;
  transform: translateY(110%);
  transition: transform .8s var(--ease-out);
}
.is-visible .title-line-inner { transform: translateY(0); }

/* Delay para segunda línea de título en cualquier sección */
.section-title  .mask-line:nth-child(2) .title-line-inner { transition-delay: 60ms; }
.hero-title     .mask-line:nth-child(1) .title-line-inner { transition-delay: 200ms; }
.hero-title     .mask-line:nth-child(2) .title-line-inner { transition-delay: 340ms; }

.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle,
.section-subtitle,
.value-card p,
.process-step p,
.compatibility-list li,
.vertical-card p {
  color: var(--text-2);
}

.hero-subtitle {
  max-width: 620px;
  margin-top: 28px;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 300;
}

.hero-actions,
.cta-actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 6px;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, color .2s ease, background .2s ease;
  font-size: 15px;
  font-weight: 500;
}

.button:hover { transform: scale(1.02); }
.button:active { transform: scale(0.98); }

.button-primary {
  background: var(--gradient);
  color: var(--bg);
}

.button-primary:hover {
  box-shadow: 0 0 24px rgba(29, 237, 217, 0.25);
  filter: brightness(1.03);
}

.button-secondary {
  background: transparent;
  border-color: var(--border-2);
  color: var(--text-2);
}
.button-secondary:hover {
  border-color: var(--cyan);
  color: var(--text);
}

.button-block { width: 100%; padding: 16px 24px; font-size: 17px; }
.button-dark {
  background: var(--bg);
  color: var(--text);
  padding: 16px 32px;
}
.button-dark:hover { background: var(--border); }

.button-outline-dark {
  background: transparent;
  border-color: rgba(28, 28, 28, 0.4);
  color: rgba(28, 28, 28, 0.7);
  padding: 16px 32px;
}
.button-outline-dark:hover { border-color: var(--bg); color: var(--bg); }

.hero-note,
.demo-note,
.cta-note,
.site-footer p,
.site-footer a {
  font-size: 12px;
  color: var(--text-3);
}

.hero-note { margin-top: 14px; }

.hero-mockup { justify-self: end; }
.mockup-card {
  width: min(100%, 360px);
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(36, 36, 36, 0.95);
  box-shadow: 0 30px 60px rgba(0,0,0,.25);
  transform: rotate(-2deg);
}
.mockup-header {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 18px;
}
.mockup-brand { margin: 0; font-size: 18px; font-weight: 700; }
.mockup-sub { margin: 4px 0 0; color: var(--text-3); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.mockup-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(29,237,217,.25);
  color: var(--cyan);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.mockup-status::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--cyan);
  animation: live-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes live-pulse { 0%,100% { opacity:1; } 50% { opacity:.3; } }
.mockup-chat { display: grid; gap: 12px; }
.mockup-message {
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.55;
}
.mockup-message-user {
  background: rgba(29,237,217,.12);
  color: var(--text);
  justify-self: end;
  max-width: 82%;
}
.mockup-message-ai {
  background: rgba(255,255,255,.03);
  color: var(--text-2);
  border: 1px solid rgba(255,255,255,.04);
  max-width: 88%;
}

.section-divider {
  width: min(calc(100% - 96px), var(--shell));
  margin: 0 auto;
  height: 1px;
  overflow: hidden;
}
.section-divider span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan) 0%, var(--blue) 60%, transparent 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .8s var(--ease-out);
}
.section-divider.is-visible span { transform: scaleX(1); }

.problem-list {
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 22px;
}
.problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 17px;
  color: var(--text-2);
}
.problem-icon { color: #C0392B; }
.problem-solution {
  margin: 48px 0 0;
  text-align: center;
  font-size: clamp(2rem, 4vw, 2rem);
  font-weight: 700;
}

.section-subtitle {
  margin: 18px auto 0;
  max-width: 720px;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 300;
}
.align-left { margin-inline: 0; max-width: 560px; text-align: left; }

.demo-card {
  width: min(100%, 640px);
  margin: 40px auto 0;
  padding: 40px;
  border-radius: 12px;
  border: 1px solid var(--border-2);
  background: var(--surface);
  box-shadow: 0 -1px 0 rgba(29, 237, 217, 0.8) inset;
}

.demo-chip-row {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.demo-chip {
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-3);
}
.demo-sep { color: var(--text-3); }
.demo-note { margin-top: 18px; }

.value-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
}

.value-card,
.vertical-card {
  background: var(--surface);
  border: 1px solid var(--border);
}

.value-card {
  padding: 36px;
  border-radius: 8px;
  transition: border-color .2s ease, transform .2s ease;
}
.value-card:hover { border-color: var(--cyan); transform: translateY(-2px); }
.value-icon { color: var(--cyan); font-size: 24px; display: block; }
.value-micro {
  display: block;
  margin-top: 18px;
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: .12em;
}
.value-card h3,
.process-step h3,
.vertical-card p {
  margin: 20px 0 0;
}
.value-card h3 { font-size: 22px; }
.value-card p,
.process-step p {
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.7;
}

.process-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  position: relative;
}
.process-grid::before {
  content: "";
  position: absolute;
  top: 44px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(240,240,238,.08) 18%, rgba(240,240,238,.08) 82%, transparent 100%);
}
.process-step { position: relative; z-index: 1; }
.process-number {
  font-size: clamp(3.5rem, 8vw, 5rem);
  font-weight: 700;
  line-height: .9;
  letter-spacing: -0.04em;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.process-step h3 { font-size: 20px; color: var(--text); }

.integration-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 480px);
  gap: 48px;
  align-items: start;
}

.compatibility-list {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}
.compatibility-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
}
.compatibility-list li span { color: var(--cyan); }

.code-card {
  background: #0D1117;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.code-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.code-dots { display: flex; gap: 8px; }
.code-dots span { width: 8px; height: 8px; border-radius: 50%; }
.code-dots span:nth-child(1) { background: #ff5f57; }
.code-dots span:nth-child(2) { background: #febc2e; }
.code-dots span:nth-child(3) { background: #28c840; }
.code-copy {
  background: transparent;
  border: 0;
  color: var(--text-3);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.code-copy:hover { color: var(--text); }

.code-block {
  margin: 0;
  padding: 24px;
  overflow: auto;
  color: var(--text);
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 14px;
  line-height: 1.8;
}
.code-comment { color: var(--text-3); }
.code-tag { color: var(--text-2); }
.code-attr { color: var(--cyan); }
.code-value { color: #7B9FFF; }

.verticals-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
}
.vertical-card {
  padding: 28px;
  border-radius: 8px;
  transition: border-color .2s ease, transform .2s ease;
}
.vertical-card:hover {
  border-color: var(--cyan);
  transform: translateY(-2px);
}
.vertical-emoji { font-size: 28px; display: block; }
.vertical-card p { font-size: 15px; line-height: 1.6; }

.cta {
  background: linear-gradient(135deg, rgba(29,237,217,1) 15%, rgba(36,85,209,1) 85%);
  text-align: center;
  overflow: hidden;
}
.cta-title {
  color: var(--bg);
  font-size: clamp(2.5rem, 6vw, 4rem);
}
.cta-subtitle {
  margin: 20px auto 0;
  max-width: 760px;
  font-size: 20px;
  line-height: 1.6;
  color: rgba(28,28,28,0.7);
}
.cta-note { margin-top: 18px; color: rgba(28,28,28,0.5); font-size: 13px; }

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer-shell {
  min-height: 72px;
  padding: 32px 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: center;
}
.footer-shell p:nth-child(2) { text-align: center; }
.footer-shell a { text-align: right; }
.footer-shell a:hover { color: var(--cyan); text-decoration: underline; }

/* ── Sistema de animaciones de entrada ───────────────────────────────────
   Estrategia: animation-name:none por defecto + animation-name:fade-up
   al revelar. El resto de las propiedades animation están pre-definidas
   en el elemento → el navegador solo necesita "encender" el nombre.
   El estado inicial COINCIDE con el keyframe from → no hay flash.         */

@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fade-up-scale {
  from { opacity: 0; transform: translateY(32px) scale(.97); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}

/* Estado inicial: coincide exactamente con el from del keyframe.
   animation-name:none evita que corra antes de que is-visible se active. */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  animation-name: none;
  animation-duration: 650ms;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  animation-fill-mode: both;
  animation-delay: 0ms;
}

/* Revelar: solo cambia el nombre — las otras propiedades ya estaban listas */
.is-visible [data-reveal] {
  animation-name: fade-up;
}

/* Stagger: sobreescribe animation-delay según posición entre hermanos */
.is-visible [data-reveal]:nth-child(1) { animation-delay:   0ms; }
.is-visible [data-reveal]:nth-child(2) { animation-delay:  70ms; }
.is-visible [data-reveal]:nth-child(3) { animation-delay: 140ms; }
.is-visible [data-reveal]:nth-child(4) { animation-delay: 210ms; }
.is-visible [data-reveal]:nth-child(5) { animation-delay: 280ms; }
.is-visible [data-reveal]:nth-child(6) { animation-delay: 350ms; }
.is-visible [data-reveal]:nth-child(7) { animation-delay: 420ms; }
.is-visible [data-reveal]:nth-child(8) { animation-delay: 490ms; }

/* Hero: posiciones en .hero-copy → (1)kicker (3)subtitle (4)actions (5)note */
.hero.is-visible [data-reveal]:nth-child(1) { animation-delay:  80ms; }
.hero.is-visible [data-reveal]:nth-child(3) { animation-delay: 500ms; }
.hero.is-visible [data-reveal]:nth-child(4) { animation-delay: 620ms; }
.hero.is-visible [data-reveal]:nth-child(5) { animation-delay: 720ms; }

/* Mockup: keyframe propio para incluir scale */
.hero .hero-mockup {
  opacity: 0;
  transform: translateY(32px) scale(.97);
  animation-name: none;
  animation-duration: 900ms;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  animation-fill-mode: both;
  animation-delay: 440ms;
}
.hero.is-visible .hero-mockup { animation-name: fade-up-scale; }

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  border-radius: 50%;
  z-index: 100;
  opacity: 0;
  transition: opacity .2s ease, width .2s ease, height .2s ease, border-color .2s ease, background .2s ease;
}
.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--cyan);
}
.cursor-ring {
  width: 32px;
  height: 32px;
  border: 1px solid transparent;
  transform: translate(-12px, -12px);
}
body.cursor-ready .cursor-dot,
body.cursor-ready .cursor-ring { opacity: 1; }
body.cursor-hover .cursor-ring {
  border-color: rgba(29,237,217,.45);
  background: transparent;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
  /* Con animation:none los elementos quedarían en opacity:0 — forzar visibles */
  [data-reveal],
  .hero .hero-mockup,
  .title-line-inner { opacity: 1 !important; transform: none !important; }
}

@media (max-width: 991px) {
  .hero-shell,
  .integration-shell,
  .process-grid,
  .value-grid,
  .verticals-grid,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .hero-mockup { display: none; }
  .process-grid::before { display: none; }
  .footer-shell p,
  .footer-shell a { text-align: center !important; }
  .roadmap-grid { grid-template-columns: 1fr; }
  .roadmap-card:not(:last-child) { border-right: 0; border-bottom: 1px solid var(--border); }
}

@media (max-width: 680px) {
  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ─── ANIMATIONS ────────────────────────────────────────────────────────── */

@keyframes float-card {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

@keyframes blur-drift {
  0%, 100% { transform: scale(1); opacity: .06; }
  50%       { transform: scale(1.18); opacity: .12; }
}

@keyframes blur-drift-2 {
  0%, 100% { transform: scale(1.1); opacity: .04; }
  50%       { transform: scale(.9); opacity: .09; }
}

.mockup-card--float {
  animation: float-card 5s ease-in-out infinite;
}

.hero-blur {
  animation: blur-drift 9s ease-in-out infinite;
}

.hero-blur--2 {
  width: 320px;
  height: 320px;
  left: 0%;
  bottom: 8%;
  top: auto;
  right: auto;
  inset: auto auto 8% 0%;
  background: rgba(29, 237, 217, 0.07);
  filter: blur(110px);
  border-radius: 50%;
  animation: blur-drift-2 11s ease-in-out infinite;
}

/* Stagger — value cards */
.value-grid .value-card:nth-child(1) { transition-delay: 0s; }
.value-grid .value-card:nth-child(2) { transition-delay: .07s; }
.value-grid .value-card:nth-child(3) { transition-delay: .14s; }
.value-grid .value-card:nth-child(4) { transition-delay: .21s; }
.value-grid .value-card:nth-child(5) { transition-delay: .28s; }
.value-grid .value-card:nth-child(6) { transition-delay: .35s; }

/* Stagger — roadmap cards */
.roadmap-grid .roadmap-card:nth-child(1) { transition-delay: 0s; }
.roadmap-grid .roadmap-card:nth-child(2) { transition-delay: .12s; }
.roadmap-grid .roadmap-card:nth-child(3) { transition-delay: .24s; }

/* Stagger — verticals */
.verticals-grid .vertical-card:nth-child(1) { transition-delay: 0s; }
.verticals-grid .vertical-card:nth-child(2) { transition-delay: .06s; }
.verticals-grid .vertical-card:nth-child(3) { transition-delay: .12s; }
.verticals-grid .vertical-card:nth-child(4) { transition-delay: .18s; }
.verticals-grid .vertical-card:nth-child(5) { transition-delay: .24s; }
.verticals-grid .vertical-card:nth-child(6) { transition-delay: .30s; }

/* Hero mockup glow */
.hero-mockup { position: relative; }
.hero-mockup-glow {
  position: absolute;
  inset: -20% -30%;
  background: radial-gradient(ellipse at center, rgba(29,237,217,.08) 0%, transparent 65%);
  pointer-events: none;
  z-index: -1;
}

/* ─── STATS BAR ─────────────────────────────────────────────────────────── */

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 24px 32px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

.stat-number {
  font-size: clamp(2.8rem, 6vw, 4rem);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label {
  margin-top: 8px;
  font-size: 13px;
  color: var(--text-3);
  letter-spacing: .04em;
}

/* ─── FEATURE BADGE "PRÓXIMAMENTE" ──────────────────────────────────────── */

.value-card--soon { position: relative; }

.feature-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 20px;
  background: rgba(255,255,255,.05);
  color: var(--text-3);
  border: 1px solid var(--border);
}

/* ─── DELIVERY MODE PILLS ───────────────────────────────────────────────── */

.delivery-modes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 32px;
}

.delivery-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-2);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: color .2s ease, border-color .2s ease;
}

.delivery-pill svg { flex-shrink: 0; color: var(--cyan); }

/* ─── ROADMAP ────────────────────────────────────────────────────────────── */

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
  margin-top: 56px;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.roadmap-card {
  padding: 36px 32px;
  background: var(--surface);
  transition: background .2s ease;
  position: relative;
}

.roadmap-card:not(:last-child) {
  border-right: 1px solid var(--border);
}

.roadmap-card--active {
  background: rgba(29,237,217,.04);
}

.roadmap-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.roadmap-badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}

.roadmap-badge--now {
  background: rgba(29,237,217,.15);
  color: var(--cyan);
  border: 1px solid rgba(29,237,217,.3);
}

.roadmap-badge--next {
  background: rgba(255,255,255,.06);
  color: var(--text-2);
  border: 1px solid var(--border);
}

.roadmap-badge--future {
  background: rgba(255,255,255,.04);
  color: var(--text-3);
  border: 1px solid var(--border);
}

.roadmap-phase {
  font-size: 11px;
  color: var(--text-3);
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.roadmap-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.3;
}

.roadmap-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.roadmap-features li {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
}

.roadmap-features li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--text-3);
}

.roadmap-card--active .roadmap-features li::before {
  color: var(--cyan);
}

/* ─── PRICING ────────────────────────────────────────────────────────────── */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
  margin-top: 56px;
}

.pricing-col {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color .2s ease;
}

.pricing-col--client {
  border-color: rgba(29,237,217,.2);
  background: linear-gradient(180deg, rgba(29,237,217,.03) 0%, transparent 40%);
}

.pricing-col-header {
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.pricing-col-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .02em;
}

.pricing-col-note {
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: .04em;
}

.pricing-col-body { padding: 0; }

.pricing-item {
  padding: 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.pricing-divider {
  height: 1px;
  background: var(--border);
}

.pricing-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-3);
}

.pricing-amount {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -.025em;
}

.pricing-note {
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.5;
}

.pricing-footnote {
  margin-top: 24px;
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.6;
  text-align: center;
}

/* ─── RESPONSIVE ADDITIONS ───────────────────────────────────────────────── */

@media (max-width: 767px) {
  :root { --section-pad: 84px; }
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
  .shell, .narrow-shell { width: min(calc(100% - 48px), var(--shell)); }

  .nav-desktop { display: none; }
  .nav-toggle {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border: 0;
    padding: 0;
    background: transparent;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
  }
  .nav-toggle span {
    display: block;
    width: 18px;
    height: 1px;
    background: var(--text);
    margin-left: auto;
    transition: transform .25s ease, opacity .25s ease;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .nav-mobile {
    display: grid;
    gap: 12px;
    padding: 0 24px 20px;
    background: rgba(28,28,28,.96);
    border-bottom: 1px solid transparent;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height .3s var(--ease-out), opacity .2s ease, border-color .2s ease, padding-top .2s ease;
  }
  .nav-mobile.is-open {
    max-height: 220px;
    opacity: 1;
    pointer-events: auto;
    border-color: var(--border);
    padding-top: 8px;
  }
  .nav-mobile-link,
  .nav-mobile-cta {
    font-size: 14px;
    color: var(--text-2);
  }
  .nav-mobile-cta { color: var(--text); }

  .hero { padding-top: 108px; }
  .hero-title { font-size: 40px; }
  .hero-actions,
  .cta-actions { flex-direction: column; }
  .hero-actions .button,
  .cta-actions .button { width: 100%; }
  .problem-list li { align-items: flex-start; }
  .demo-card { padding: 24px; }
  .value-card { border-inline: 0; border-radius: 0; }
  .process-step {
    display: grid;
    grid-template-columns: 84px 1fr;
    gap: 16px;
    align-items: start;
  }
  .process-step h3,
  .process-step p { grid-column: 2; }
  .verticals-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cta-title { font-size: 40px; }
  .site-footer { text-align: center; }
  .roadmap-grid { grid-template-columns: 1fr; border-radius: 12px; }
  .roadmap-card:not(:last-child) { border-right: 0; border-bottom: 1px solid var(--border); }
  .roadmap-card { padding: 28px 24px; }
  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
  .pricing-item { padding: 18px 20px; }
  .pricing-col-header { padding: 16px 20px; flex-direction: column; gap: 2px; }
  .stats-grid { flex-direction: column; gap: 0; }
  .stat-divider { width: 48px; height: 1px; }
  .stat-item { padding: 20px 24px; }
  .delivery-modes { gap: 8px; }
}

