/* Gritt — landing (MVP interno) */
:root {
  --numma-black: #1D1D1B;
  --numma-white: #FFFFFF;
  --numma-lime: #D4FF3D;
  --text-muted: #6B6B69;
  --border: #E5E5E3;
  --surface: #F5F5F3;

  --bg: var(--numma-white);
  --ink: var(--numma-black);
  --ink-soft: var(--text-muted);
  --ink-faint: #b9b9b5;
  --accent: var(--numma-lime);
  --accent-soft: #f4ffd6;
  --surface-dark: var(--surface);
  --border-dark: var(--border);
  --white: var(--numma-white);
  --radius: 18px;
  --font-sans: 'Manrope', system-ui, sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
em { font-family: var(--font-serif); font-style: italic; font-weight: 400; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-weight: 600; letter-spacing: -0.02em; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Nav */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.88); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 1160px; margin: 0 auto; padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { font-weight: 700; font-size: 1.15rem; letter-spacing: -0.02em; }
.logo-dot { color: var(--accent); }
.nav-links { display: flex; gap: 28px; font-size: .9rem; color: var(--ink-soft); }
.nav-links a:hover { color: var(--ink); }

/* Buttons */
.btn { display: inline-block; padding: 10px 22px; border-radius: 999px; font-size: .9rem; font-weight: 500; transition: transform .2s ease, box-shadow .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-dark { background: var(--accent); color: var(--numma-black); }
.btn-dark:hover { box-shadow: 0 8px 24px rgba(212,255,61,.25); }
.btn-light { background: var(--numma-black); color: var(--numma-white); }
.btn-ghost { border: 1px solid var(--ink-faint); color: var(--ink); }
.btn-lg { padding: 15px 32px; font-size: 1rem; }

/* Hero */
body { overflow-x: hidden; }
.hero { position: relative; max-width: 1160px; margin: 0 auto; padding: 130px 24px 150px; text-align: left; min-height: 88vh; display: flex; flex-direction: column; justify-content: center; }
.hero::before { content: ""; position: absolute; top: 8%; right: -18%; width: 780px; height: 780px; border-radius: 50%; background: radial-gradient(circle, rgba(212,255,61,.16) 0%, rgba(212,255,61,.05) 40%, transparent 70%); pointer-events: none; }
.hero > * { position: relative; z-index: 1; }
.hero-top { position: relative; min-height: 62vh; display: flex; flex-direction: column; justify-content: center; }
.hero-top > *:not(.hero-shape) { position: relative; z-index: 1; }

/* Shape 3D estilo Numo, en lima */
.hero-shape { position: absolute; top: 50%; right: -60px; transform: translateY(-58%); width: 400px; height: 400px; z-index: 0; animation: float 7s ease-in-out infinite; pointer-events: none; }
.hero-shape span { position: absolute; inset: 0; border-radius: 110px; transform: rotate(45deg); background: linear-gradient(135deg, #eaff8a 0%, #D4FF3D 40%, #7a9a10 100%); filter: drop-shadow(0 0 60px rgba(212,255,61,.45)); }
.hero-shape span::after { content: ""; position: absolute; inset: 72px; border-radius: 64px; background: var(--numma-black); box-shadow: inset 0 0 40px rgba(0,0,0,.55); }
@keyframes float { 0%,100% { transform: translateY(-58%); } 50% { transform: translateY(-63%); } }

/* Lista de servicios a la derecha, sobre el shape */
.hero-services { position: absolute; right: 0; bottom: 0; display: grid; gap: 4px; text-align: right; font-size: .88rem; color: var(--ink-soft); z-index: 2; }
.hs-num { color: var(--accent); font-family: var(--font-serif); font-style: italic; }

@media (max-width: 900px) {
  .hero-shape { width: 260px; height: 260px; right: -90px; opacity: .55; }
  .hero-shape span::after { inset: 48px; border-radius: 44px; }
  .hero-services { display: none; }
}
.badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 44px; }
.pill { display: inline-flex; align-items: center; gap: 8px; background: var(--surface-dark); border: 1px solid var(--border-dark); border-radius: 999px; padding: 8px 16px; font-size: .8rem; color: var(--ink-soft); }
.pill-live { background: var(--accent); border-color: transparent; color: var(--numma-black); font-weight: 500; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--numma-black); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

.hero-title { font-size: clamp(2.8rem, 7.5vw, 5.6rem); line-height: 1.04; letter-spacing: -0.03em; color: var(--ink); font-weight: 500; }
.hero-title em { background: var(--accent); color: var(--numma-black); padding: 0 .12em; border-radius: .12em; }
.hero-sub { max-width: 560px; margin-top: 30px; font-size: 1.15rem; color: var(--ink-soft); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; }
.hero-note { margin-top: 22px; font-size: .82rem; color: var(--ink-faint); }

/* Canvas mockup */
.canvas-mock { margin-top: 70px; background: var(--white); border: 1px solid rgba(0,0,0,.07); border-radius: var(--radius); overflow: hidden; box-shadow: 0 30px 80px rgba(17,17,20,.1); }
.cm-chrome { display: flex; align-items: center; gap: 6px; padding: 12px 16px; border-bottom: 1px solid var(--border); background: var(--surface); }
.cm-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--ink-faint); }
.cm-url { margin-left: 12px; font-size: .75rem; color: var(--ink-soft); background: var(--white); border-radius: 999px; padding: 4px 14px; }
.cm-body { position: relative; padding: 56px 48px 48px; background:
  radial-gradient(rgba(0,0,0,.05) 1px, transparent 1px);
  background-size: 22px 22px; }
.cm-timeline { display: flex; align-items: center; gap: 0; flex-wrap: wrap; }
.cm-node { position: relative; width: 16px; height: 16px; border-radius: 50%; border: 2px solid var(--ink-faint); background: var(--white); flex-shrink: 0; }
.cm-node span { position: absolute; top: 24px; left: 50%; transform: translateX(-50%); font-size: .72rem; color: var(--ink-soft); white-space: nowrap; }
.cm-done { border-color: var(--ink); background: var(--ink); }
.cm-active { border-color: var(--ink); background: var(--accent); box-shadow: 0 0 0 6px rgba(212,255,61,.45); }
.cm-active span { color: var(--ink); font-weight: 500; }
.cm-line { flex: 1; height: 2px; background: var(--ink); min-width: 40px; }
.cm-line-faint { background: var(--ink-faint); }
.cm-panel { margin: 64px 0 0 auto; max-width: 400px; background: var(--white); border: 1px solid rgba(0,0,0,.08); border-radius: 14px; padding: 22px 24px; box-shadow: 0 16px 40px rgba(17,17,20,.08); }
.cm-panel-title { font-size: .8rem; font-weight: 600; margin-bottom: 16px; }
.cm-slider { display: flex; align-items: center; gap: 12px; font-size: .72rem; color: var(--ink-soft); margin-bottom: 12px; }
.cm-slider span { width: 64px; }
.cm-slider span:last-child { text-align: right; }
.cm-track { position: relative; flex: 1; height: 4px; border-radius: 999px; background: var(--surface); }
.cm-thumb { position: absolute; top: 50%; transform: translate(-50%, -50%); width: 14px; height: 14px; border-radius: 50%; background: var(--accent); border: 2px solid var(--ink); box-shadow: 0 2px 6px rgba(29,29,27,.2); }
.cm-agent { display: inline-flex; align-items: center; gap: 8px; margin-top: 28px; font-size: .78rem; color: var(--ink-soft); background: var(--white); border: 1px solid rgba(0,0,0,.07); border-radius: 999px; padding: 8px 16px; }
.cm-agent-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ink); animation: pulse 1.8s infinite; }

/* Explainer: qué es un sprint */
.explainer { padding: 130px 0 110px; }
.explainer .section-head p { max-width: 640px; }
.explainer-grid { max-width: 1160px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px; }
.explainer-col { border-radius: var(--radius); padding: 36px 32px; }
.explainer-col h3 { font-family: var(--font-serif); font-style: italic; font-weight: 400; font-size: 1.5rem; margin-bottom: 20px; }
.explainer-col ul { list-style: none; display: grid; gap: 13px; font-size: .95rem; }
.explainer-no { background: var(--surface-dark); border: 1px solid var(--border-dark); color: var(--ink-soft); }
.explainer-no li::before { content: "✕  "; color: var(--ink-faint); }
.explainer-yes { background: var(--surface-dark); border: 2px solid var(--accent); color: var(--ink); }
.explainer-yes h3 { color: var(--numma-black); background: var(--accent); align-self: flex-start; display: inline-block; padding: 0 .2em; }
.explainer-yes li::before { content: "✓  "; color: var(--ink); font-weight: 600; }

/* Manifesto */
.manifesto { background: #141412; color: var(--numma-white); padding: 130px 24px; text-align: center; }
.kicker { font-size: .78rem; letter-spacing: .2em; color: var(--ink-soft); font-weight: 500; margin-bottom: 26px; }
.manifesto .kicker { color: var(--accent); }
.cta .kicker { color: rgba(29,29,27,.6); }
.manifesto-title { font-size: clamp(2.4rem, 6vw, 4.6rem); line-height: 1.05; }
.benefit-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 44px; }

/* ===== Hero blanco ===== */
.nav { background: rgba(255,255,255,.88); border-bottom: 1px solid #E5E5E3; color: var(--numma-black); }
.nav-links { color: var(--text-muted); }
.nav-links a:hover { color: var(--numma-black); }

.hero-light { max-width: none; padding: 0 0 90px; background: var(--numma-white); color: var(--numma-black); min-height: 0; display: block; }
.hero-light::before { display: none; }
.hero-light .hero-top { max-width: 1160px; margin: 0 auto; padding: 110px 24px 70px; min-height: 0; }
.hero-light .hero-title { color: var(--numma-black); }
.hero-light .hero-sub { color: var(--text-muted); }
.hero-light .hero-note { color: #b9b9b5; }
.hero-light .pill { background: var(--numma-white); border: 1px solid #E5E5E3; color: var(--text-muted); }
.hero-light .pill-live { background: var(--accent); border-color: transparent; color: var(--numma-black); }
.hero-light .btn-ghost { border-color: #E5E5E3; color: var(--numma-black); }

/* Marquee de casos */
.marquee { overflow: hidden; width: 100%; }
.marquee-track { display: flex; gap: 18px; width: max-content; animation: mq-scroll 45s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.mq-card { width: 300px; aspect-ratio: 4 / 3; flex-shrink: 0; border-radius: var(--radius); background: var(--case-bg); color: var(--case-ink); padding: 20px 22px; display: flex; flex-direction: column; }
.mq-card .case-tag { font-size: .62rem; letter-spacing: .14em; opacity: .6; }
.mq-card .case-mark { margin: auto 0; font-size: 1.9rem; line-height: 1; }
@keyframes mq-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }
.manifesto-title em { color: var(--accent); }
.manifesto-text { max-width: 640px; margin: 36px auto 0; font-size: 1.1rem; color: rgba(255,255,255,.68); font-weight: 300; }

/* Sections */
section { scroll-margin-top: 90px; }
.section-head { max-width: 1160px; margin: 0 auto 60px; padding: 0 24px; }
.section-head h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); line-height: 1.08; }
.section-head p { margin-top: 16px; color: var(--ink-soft); font-size: 1.05rem; }

/* Case studies */
.cases { padding: 130px 0 110px; }
.cases-grid { max-width: 1160px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 18px; }
.case-card { position: relative; background: var(--case-bg); color: var(--case-ink); border-radius: var(--radius); aspect-ratio: 4 / 3; padding: 26px 28px; display: flex; flex-direction: column; overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.case-card:hover { transform: translateY(-5px); box-shadow: 0 24px 60px rgba(17,17,20,.18); }
.case-img { cursor: zoom-in; border: 0; padding: 0; background: var(--surface); }
.case-img img { transition: opacity .6s ease; }
.case-img .zoomcue { position: absolute; top: 12px; right: 12px; width: 30px; height: 30px; border-radius: 50%; background: rgba(29,29,27,.55); color:#fff; display:grid; place-items:center; opacity:0; transition:opacity .2s ease; z-index:2; }
.case-img:hover .zoomcue { opacity: 1; }
.case-tag { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; opacity: .65; }
.case-mark { margin: auto 0; font-size: clamp(2rem, 4vw, 2.9rem); line-height: 1; letter-spacing: -0.02em; }
.case-mark-serif { font-family: var(--font-serif); font-weight: 400; }
.case-mark-wide { font-weight: 700; letter-spacing: .18em; font-size: clamp(1.5rem, 3vw, 2.1rem); }
.case-mark-bold { font-weight: 700; letter-spacing: -0.05em; color: var(--case-accent); }
.case-palette { display: flex; gap: 8px; }
.case-palette i { width: 22px; height: 22px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25); }

/* Features */
.features { padding: 130px 0; }
.grid { max-width: 1160px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px; }
.card { background: var(--surface-dark); border: 1px solid var(--border-dark); border-radius: var(--radius); padding: 34px 30px; transition: transform .25s ease, box-shadow .25s ease; }
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(29,29,27,.08); }
.card-num { font-family: var(--font-serif); font-style: italic; color: var(--ink-soft); font-size: 1.1rem; margin-bottom: 18px; }
.card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: .95rem; }

/* Process */
.process { padding: 40px 0 130px; }
.steps { max-width: 1160px; margin: 0 auto; padding: 0 24px; list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.step { border-top: 2px solid var(--accent); padding-top: 26px; }
.step-num { font-family: var(--font-serif); font-style: italic; color: var(--ink-soft); }
.step h3 { font-size: 1.4rem; margin: 10px 0; }
.step p { color: var(--ink-soft); font-size: .95rem; }

/* Compare */
.compare { padding: 0 0 130px; }
.compare-grid { max-width: 1160px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px; }
.compare-col { border-radius: var(--radius); padding: 40px 36px; }
.compare-col h3 { font-size: 1.3rem; margin-bottom: 22px; }
.compare-col ul { list-style: none; display: grid; gap: 14px; font-size: .97rem; }
.compare-old { background: var(--surface-dark); border: 1px solid var(--border-dark); color: var(--ink-soft); }
.compare-old li::before { content: "✕  "; color: var(--ink-faint); }
.compare-new { background: var(--accent); color: var(--numma-black); }
.compare-new li::before { content: "✓  "; color: var(--numma-black); }

/* Pricing */
.pricing { padding: 0 0 130px; }
.pricing-grid { max-width: 1160px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px; align-items: start; }
.price-card { background: var(--surface-dark); border: 1px solid var(--border-dark); border-radius: var(--radius); padding: 38px 32px; display: flex; flex-direction: column; gap: 0; }
.price-card h3 { font-size: 1.25rem; margin-bottom: 14px; }
.price-card .pill { align-self: flex-start; margin-bottom: 18px; }
.price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 12px; }
.price-num { font-size: 2.6rem; font-weight: 400; letter-spacing: -0.03em; }
.price-per { font-size: .85rem; color: var(--ink-soft); }
.price-desc { color: var(--ink-soft); font-size: .95rem; margin-bottom: 24px; }
.price-card ul { list-style: none; display: grid; gap: 12px; font-size: .92rem; color: var(--ink-soft); margin-bottom: 32px; }
.price-card ul li::before { content: "✓  "; color: var(--ink); font-weight: 600; }
.price-card .btn { text-align: center; margin-top: auto; }
.price-featured { border: 2px solid var(--accent); box-shadow: 0 24px 60px rgba(212,255,61,.08); }
.price-hosting { background: var(--accent); border-color: transparent; color: var(--numma-black); }
.price-hosting .price-desc, .price-hosting .price-per, .price-hosting ul { color: rgba(29,29,27,.75); }
.price-hosting .btn-ghost { border-color: rgba(29,29,27,.4); color: var(--numma-black); }
.price-hosting ul li::before { color: var(--numma-black); }
.pricing-note { max-width: 1160px; margin: 28px auto 0; padding: 0 24px; font-size: .82rem; color: var(--ink-faint); }

/* CTA */
.cta { background: var(--accent); color: var(--numma-black); text-align: center; padding: 140px 24px; }
.cta h2 { font-size: clamp(2.4rem, 6vw, 4.4rem); line-height: 1.05; }
.cta em { color: var(--numma-black); }
.cta p { margin: 26px auto 40px; color: rgba(29,29,27,.75); max-width: 480px; }

/* Footer */
.footer { padding: 60px 24px; }
.footer-inner { max-width: 1160px; margin: 0 auto; display: grid; gap: 10px; color: var(--ink-soft); font-size: .9rem; }
.footer-copy { color: var(--ink-faint); font-size: .8rem; }

@media (max-width: 640px) {
  .nav-links { display: none; }
  .hero { padding: 70px 24px 90px; }
}


/* Canvas mock stays light (es un screenshot) — colores fijos */
.canvas-mock { border-color: var(--border-dark); box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.canvas-mock .cm-url, .canvas-mock .cm-slider, .canvas-mock .cm-node span, .canvas-mock .cm-agent { color: #6B6B69; }
.canvas-mock .cm-panel-title, .canvas-mock .cm-active span { color: #1D1D1B; }
.canvas-mock .cm-done { border-color: #1D1D1B; background: #1D1D1B; }
.canvas-mock .cm-active { border-color: #1D1D1B; }
.canvas-mock .cm-line { background: #1D1D1B; }
.canvas-mock .cm-line-faint { background: #E5E5E3; }
.canvas-mock .cm-node { border-color: #E5E5E3; }
.canvas-mock .cm-thumb { border-color: #1D1D1B; }
.canvas-mock .cm-dot { background: #E5E5E3; }
.canvas-mock .cm-agent-dot { background: #1D1D1B; }

/* Formatos de trabajo (estilo Numo) */
.formats { padding: 0 0 130px; }
.formats-grid { max-width: 1160px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px; }
.format-card { background: var(--surface-dark); border: 1px solid var(--border-dark); border-radius: var(--radius); padding: 38px 32px; }
.format-card h3 { font-size: 1.35rem; margin-bottom: 8px; }
.format-tag { color: var(--accent); font-size: .88rem; margin-bottom: 18px; display: block; }
.format-card > p { color: var(--ink-soft); font-size: .95rem; margin-bottom: 24px; }
.format-card ul { list-style: none; display: grid; gap: 12px; font-size: .9rem; color: var(--ink-soft); }
.format-card ul li::before { content: "•  "; color: var(--accent); }

/* Caso a profundidad */
.deepcase { padding: 0 0 130px; }
.deepcase-grid { max-width: 1160px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; align-items: start; }
.deepcase-visual { border-radius: var(--radius); aspect-ratio: 1; display: flex; flex-direction: column; justify-content: space-between; padding: 32px; }
.deepcase-info h3 { color: var(--accent); font-size: 1.3rem; margin-bottom: 26px; font-weight: 400; }
.deepcase-block { margin-bottom: 24px; }
.deepcase-block h4 { font-size: .75rem; letter-spacing: .16em; color: var(--ink-faint); font-weight: 500; margin-bottom: 8px; }
.deepcase-block p { color: var(--ink-soft); font-size: .97rem; }


/* Cards de imagen */
.mq-img { padding: 0; overflow: hidden; background: var(--surface-dark); }
.mq-img img, .case-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cases-grid .case-card.case-img { padding: 0; overflow: hidden; aspect-ratio: 13 / 8; }


/* ===== Capas de prueba social ===== */
.trustbar { max-width: 1160px; margin: 0 auto; padding: 40px 24px 90px; display: flex; flex-wrap: wrap; gap: 16px 48px; align-items: center; color: var(--text-muted); font-size: .9rem; }
.trustbar strong { color: var(--numma-black); font-weight: 500; }
.trustbar .stars { color: var(--numma-black); letter-spacing: .1em; }

.quote { max-width: 860px; margin: 0 auto; padding: 110px 24px; text-align: center; }
.quote blockquote { font-size: clamp(1.3rem, 2.6vw, 1.9rem); font-weight: 300; line-height: 1.35; letter-spacing: -0.01em; }
.quote blockquote em { color: inherit; }
.quote figcaption { margin-top: 26px; color: var(--text-muted); font-size: .9rem; }
.quote figcaption strong { display: block; color: var(--numma-black); font-weight: 500; }

.reviews { padding: 0 0 130px; }
.reviews-grid { max-width: 1160px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px; }
.review { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 26px; font-size: .93rem; }
.review .stars { display:inline-flex; gap:2px; font-size:.9rem; line-height:1; }
.review p { margin: 12px 0 16px; color: var(--numma-black); }
.review span { color: var(--text-muted); font-size: .82rem; }


/* ===== Ajustes precisión Figma (hero) ===== */
.topbanner { background: var(--numma-black); color: var(--numma-white); text-align: center; font-size: .8rem; padding: 10px 16px; }
.topbanner strong { color: var(--accent); font-weight: 500; }

.hero-light .hero-top { padding: 60px 24px 56px; }
.hero-light .hero-title { font-size: clamp(2.2rem, 3.6vw, 3.4rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1.1; }
.hero-light .hero-sub { font-size: 1.05rem; max-width: 720px; margin-top: 22px; }
.hero-light .hero-sub strong { color: var(--numma-black); font-weight: 500; }
.hero-spots { display: inline-flex; align-items: center; gap: 8px; font-size: .8rem; color: var(--text-muted); }
.dot-red { background: #e0442c; }
.pill-rating { font-size: .8rem; }
.pill-rating strong { font-weight: 600; color: var(--numma-black); }
.hero-cta { align-items: center; gap: 18px; }
.hero-trust { display: inline-flex; align-items: center; gap: 14px; font-size: .85rem; color: var(--text-muted); margin-left: 12px; }
.hero-trust strong { color: var(--numma-black); font-weight: 600; }
.ht-sep { color: var(--border); }

/* marquee: cards verticales grandes, borde a borde */
.hero-light .marquee { margin-top: 48px; }
.marquee-track { gap: 8px; }
.mq-card { width: 292px; aspect-ratio: 3 / 4; border-radius: 6px; }


/* ===== Secciones Figma faltantes ===== */
.center { text-align: center; margin-top: 44px; }
.stars-line { text-align: center; font-size: .8rem; color: var(--numma-black); letter-spacing: .08em; }
.stars-line span { color: var(--text-muted); letter-spacing: 0; margin-left: 6px; }

.stats { padding: 80px 24px 90px; }
.stats-title { text-align: center; font-size: clamp(1.6rem, 2.6vw, 2.3rem); font-weight: 400; margin: 18px 0 40px; }
.chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.chip { background: var(--numma-white); border: 1px solid var(--border); border-radius: 10px; padding: 16px 26px 12px; text-align: center; display: grid; gap: 4px; }
.chip-mark { font-weight: 600; font-size: .95rem; letter-spacing: .02em; }
.chip-tag { font-size: .55rem; letter-spacing: .16em; color: var(--ink-faint); }

.believe { padding: 40px 0 110px; }
.believe-grid { max-width: 1160px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.believe-text { font-size: clamp(1.15rem, 1.8vw, 1.45rem); line-height: 1.45; }
.believe-text em { color: var(--text-muted); }
.believe-list { display: grid; grid-template-columns: 1fr 1fr; margin-top: 36px; }
.believe-list span { border-top: 1px solid var(--border); padding: 14px 4px; font-size: .88rem; }
.believe-img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 5 / 4; }
.believe-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 800px) { .believe-grid { grid-template-columns: 1fr; } }

.compare { padding: 90px 0 110px; }
.compare-head { text-align: center; max-width: 720px; margin: 0 auto 56px; padding: 0 24px; }
.compare-head h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 400; margin-top: 16px; }
.compare-sub { color: var(--text-muted); margin-top: 12px; font-size: .95rem; }
.cmp-table { max-width: 940px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.cmp-col h3 { font-size: 1.15rem; font-weight: 500; border-bottom: 1px solid var(--border); padding-bottom: 14px; }
.cmp-list { list-style: none; }
.cmp-list li { border-bottom: 1px solid var(--border); padding: 15px 4px; font-size: .92rem; color: var(--numma-black); }
.cmp-no li::before { content: "✕ "; color: var(--ink-faint); margin-right: 8px; }
.cmp-yes li::before { content: "✓ "; color: var(--numma-black); background: var(--accent); border-radius: 50%; padding: 1px 4px; margin-right: 8px; font-size: .75rem; }
@media (max-width: 700px) { .cmp-table { grid-template-columns: 1fr; gap: 30px; } }

.tiles { max-width: 1160px; margin: 60px auto 0; padding: 0 24px; display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; }
.tile { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 26px 18px; text-align: center; font-size: .85rem; display: grid; gap: 12px; justify-items: center; }
.tile-ico { width: 40px; height: 40px; border-radius: 10px; background: var(--numma-white); border: 1px solid var(--border); display: grid; place-items: center; color: var(--accent); text-shadow: 0 0 2px rgba(29,29,27,.4); }

.tcard { max-width: 640px; margin: 60px auto 0; background: var(--numma-white); border: 1px solid var(--border); border-radius: 14px; padding: 30px 34px; }
.tcard .stars { font-size: .8rem; }
.tcard blockquote { font-size: .92rem; color: var(--text-muted); margin: 14px 0 18px; line-height: 1.6; }
.tcard figcaption { font-size: .8rem; color: var(--text-muted); }
.tcard figcaption strong { display: block; color: var(--numma-black); font-weight: 600; }

.features-head { text-align: center; max-width: 760px; margin: 0 auto 56px; padding: 0 24px; }
.features-head h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 400; }
.features-head p { color: var(--text-muted); margin-top: 14px; font-size: .92rem; }

.features { padding: 90px 0 110px; }
.pack-grid { max-width: 1160px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: repeat(6, 1fr); gap: 28px 24px; }
.pack { grid-column: span 2; }
.pack-wide { grid-column: span 3; }
.pack img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: 12px; display: block; }
.pack h3 { font-size: 1rem; font-weight: 500; margin: 16px 0 6px; }
.pack p { font-size: .85rem; color: var(--text-muted); }
@media (max-width: 800px) { .pack, .pack-wide { grid-column: span 6; } }

.process { padding: 40px 0 120px; }
.proc-rows { max-width: 1060px; margin: 0 auto; padding: 0 24px; display: grid; gap: 40px; }
.proc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.proc-img { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; aspect-ratio: 16 / 10; }
.proc-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.proc-txt .step-num { font-family: var(--font-sans); font-style: normal; font-weight: 600; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text-muted); }
.proc-txt h3 { font-size: 1.9rem; font-weight: 600; letter-spacing: -0.02em; margin: 8px 0 12px; border-top: 1px solid var(--border); padding-top: 16px; }
.proc-txt h3 em { font-weight: 400; }
.proc-txt p { font-size: .9rem; color: var(--text-muted); line-height: 1.6; }
@media (max-width: 700px) { .proc-row { grid-template-columns: 1fr; gap: 18px; } }


/* ===== Pricing detallado ===== */
.pricing { padding: 90px 0 110px; }
.price-micro { font-size: .72rem; color: var(--text-muted); margin: 14px 0 6px; text-align: center; }
.price-micro em { font-style: normal; color: var(--numma-black); }
.dot-red-s { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: #e0442c; margin-right: 4px; }
.tier-note { background: var(--surface); border-radius: 8px; text-align: center; font-size: .8rem; padding: 8px; margin: 10px 0 6px; }
.price-card { position: relative; background: var(--numma-white); }
.price-card ul { margin-top: 14px; margin-bottom: 0; gap: 10px; font-size: .87rem; }
.price-card ul.not-included { margin-top: 14px; }
.not-included li { color: var(--ink-faint); }
.not-included li::before { content: "· "; color: var(--ink-faint); }
.featured-banner { position: absolute; top: 0; left: 0; right: 0; background: var(--numma-black); color: var(--accent); font-size: .7rem; letter-spacing: .18em; text-align: center; padding: 8px; border-radius: 16px 16px 0 0; }
.price-featured { padding-top: 56px; border: 2px solid var(--numma-black); }
.price-card .btn { margin-top: 10px; }
.bookbar { display: block; width: max-content; max-width: 90%; margin: 40px auto 0; text-align: center; border: 1px solid var(--numma-black); border-radius: 999px; padding: 13px 34px; font-size: .92rem; font-weight: 600; }
.bookbar:hover { background: var(--accent); border-color: transparent; }
.guarantee { text-align: center; max-width: 560px; margin: 60px auto 0; padding: 0 24px; }
.guarantee h3 { font-size: 1.1rem; font-weight: 500; }
.guarantee p { font-size: .85rem; color: var(--text-muted); margin-top: 12px; }
.pricing .pricing-grid { align-items: start; }

/* ===== Equipo ===== */
.team { padding: 90px 0; }
.side-head { max-width: 1160px; margin: 0 auto 48px; padding: 0 24px; }
.side-head h2 { font-size: clamp(1.7rem, 2.8vw, 2.4rem); font-weight: 400; }
.side-head p { color: var(--text-muted); margin-top: 10px; font-size: .92rem; }
.team-grid { max-width: 1160px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 24px; }
.member .avatar { display: grid; place-items: center; width: 100%; aspect-ratio: 3 / 4; border-radius: 12px; background: var(--surface); border: 1px solid var(--border); color: var(--ink-faint); font-size: 1.4rem; margin-bottom: 14px; }
.member .role { font-size: .72rem; color: var(--text-muted); }
.member h3 { font-size: 1.05rem; font-weight: 500; margin: 2px 0 6px; }
.member p { font-size: .78rem; color: var(--text-muted); line-height: 1.5; }

/* ===== Case studies carrusel ===== */
.cstudies { padding: 40px 0 110px; }
.cs-scroll { max-width: 1160px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cs-card { scroll-snap-align: start; }
.cs-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: 12px; display: block; }
.cs-card h3 { font-size: 1.05rem; font-weight: 500; margin: 14px 0 4px; }
.cs-card p { font-size: .82rem; color: var(--text-muted); }

/* ===== FAQ ===== */
.faq { padding: 40px 0 120px; }
.faq-grid { max-width: 1160px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 0 60px; align-items: start; }
.faq details { border-bottom: 1px solid var(--border); padding: 4px 0; }
.faq summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; padding: 14px 0; font-size: .92rem; }
.faq summary::after { content: "+"; font-size: 1.2rem; color: var(--numma-black); font-weight: 300; }
.faq details[open] summary::after { content: "–"; }
.faq details p { font-size: .85rem; color: var(--text-muted); padding: 0 0 16px; line-height: 1.6; max-width: 92%; }
@media (max-width: 700px) { .faq-grid { grid-template-columns: 1fr; } }

/* ===== Footer expandido ===== */
.footer { border-top: 1px solid var(--border); padding: 60px 24px 40px; }
.footer-grid { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-grid p { color: var(--text-muted); font-size: .85rem; margin-top: 12px; }
.footer-grid h4 { font-size: .78rem; letter-spacing: .12em; color: var(--ink-faint); font-weight: 500; margin-bottom: 14px; }
.footer-grid a { display: block; font-size: .88rem; color: var(--text-muted); padding: 4px 0; }
.footer-grid a:hover { color: var(--numma-black); }
.footer-copy { max-width: 1160px; margin: 40px auto 0; font-size: .75rem; color: var(--ink-faint); }
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr 1fr; } }


/* ===== Hero slider: 4 fotos verticales fijas, la 3ra rota ===== */
.hero-slider { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; max-width: 1400px; margin: 40px auto 0; padding: 0 12px; }
.hs-slot { position: relative; aspect-ratio: 3 / 4; border-radius: 10px; overflow: hidden; background: var(--surface); }
.hs-slot > img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hs-rotate > img { position: absolute; inset: 0; opacity: 0; transition: opacity .8s ease; }
.hs-rotate > img.is-on { opacity: 1; }
@media (max-width: 700px) { .hero-slider { grid-template-columns: repeat(2, 1fr); } }

/* Sello de marca Gritt — acrónimo interno, sutil */
.footer-acronym {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: .5;
  margin: 6px 0 10px;
  font-weight: 600;
}

/* ===== Case studies: tarjetas enlazadas ===== */
.cs-card { display: block; }
.cs-link { display: inline-block; margin-top: 8px; font-size: .82rem; font-weight: 600; color: var(--numma-black); }
.cs-card:hover .cs-link { text-decoration: underline; }
.cs-card:hover img { opacity: .92; }
.team-4 { grid-template-columns: repeat(4, 1fr) !important; max-width: 900px; }

/* ===== Preview animado del agente ===== */
.agent-demo { max-width: 900px; margin: 0 auto 70px; background: var(--numma-black); border-radius: 16px; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,.4); }
.ad-chrome { display: flex; align-items: center; gap: 6px; padding: 12px 16px; background: #262624; border-bottom: 1px solid rgba(255,255,255,.08); }
.ad-dot { width: 10px; height: 10px; border-radius: 50%; background: #4a4a47; }
.ad-url { margin-left: 12px; font-size: .74rem; color: #A6A6A2; background: #1D1D1B; border-radius: 999px; padding: 4px 14px; }
.ad-live { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; font-size: .72rem; color: var(--accent); }
.ad-livedot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); animation: pulse 1.6s infinite; }
.ad-stage { position: relative; height: 340px; background:
  radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px); background-size: 22px 22px; background-color: #1D1D1B; overflow: hidden; }
.ad-scene { position: absolute; inset: 0; display: grid; place-items: center; opacity: 0; transition: opacity .7s ease; }
.ad-scene.is-on { opacity: 1; }
.ad-zoom { width: 78%; max-width: 520px; text-align: center; transform: scale(.94); opacity: .6; transition: transform 3.6s ease, opacity 1s ease; }
.ad-scene.is-on .ad-zoom { transform: scale(1.04); opacity: 1; }
.ad-label { color: var(--accent); font-size: .78rem; letter-spacing: .16em; font-weight: 600; margin-bottom: 20px; }
.ad-caption { color: #A6A6A2; font-size: .9rem; margin-top: 24px; }
.ad-refs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.ad-ref { background: #262624; border: 1px solid rgba(255,255,255,.08); color: #e8e8e4; border-radius: 999px; padding: 8px 16px; font-size: .82rem; }
.ad-slider { display: flex; align-items: center; gap: 14px; font-size: .78rem; color: #A6A6A2; margin: 0 auto 14px; max-width: 420px; }
.ad-slider span { width: 66px; }
.ad-slider span:last-child { text-align: right; }
.ad-track { position: relative; flex: 1; height: 4px; border-radius: 999px; background: #333330; }
.ad-track i { position: absolute; top: 50%; left: var(--x); width: 16px; height: 16px; border-radius: 50%; background: var(--accent); transform: translate(-50%,-50%); box-shadow: 0 0 0 4px rgba(212,255,61,.18); animation: adThumb 3.6s ease infinite; }
@keyframes adThumb { 0%{left:20%} 50%{left:var(--x)} 100%{left:var(--x)} }
.ad-system { display: inline-flex; gap: 12px; }
.ad-tile { width: 58px; height: 58px; border-radius: 12px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.1); }
.ad-logo { background: var(--accent); color: var(--numma-black); font-weight: 800; font-size: 1.5rem; }
.ad-type { background: #262624; color: #fff; font-size: 1.3rem; }
.ad-progress { height: 3px; background: #262624; }
.ad-bar { display: block; height: 100%; width: 0; background: var(--accent); }

/* ===== Frames estáticos por paso ===== */
.proc-frame { position: relative; border-radius: var(--radius); aspect-ratio: 16/10; background:
  radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px) #1D1D1B; background-size: 20px 20px; padding: 24px; display: flex; flex-direction: column; justify-content: center; gap: 14px; overflow: hidden; }
.pf-label { position: absolute; top: 18px; left: 20px; color: var(--accent); font-size: .7rem; letter-spacing: .14em; font-weight: 600; }
.pf-refs { display: flex; flex-wrap: wrap; gap: 8px; }
.pf-refs span { height: 26px; width: 74px; border-radius: 999px; background: #262624; border: 1px solid rgba(255,255,255,.08); }
.pf-slider { position: relative; height: 4px; border-radius: 999px; background: #333330; }
.pf-slider i { position: absolute; top: 50%; left: 40%; width: 14px; height: 14px; border-radius: 50%; background: var(--accent); transform: translate(-50%,-50%); }
.pf-system { display: inline-flex; gap: 10px; }
.pf-system span { width: 48px; height: 48px; border-radius: 10px; display: grid; place-items: center; background: #262624; border: 1px solid rgba(255,255,255,.1); }
@media (max-width: 700px) { .team-4 { grid-template-columns: repeat(2, 1fr) !important; } }


/* Avatares con foto */
.avatar-img { padding: 0; overflow: hidden; }
.avatar-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Embed animado (flujo neural del agente) en el paso 1 */
.proc-embed { border-radius: var(--radius); overflow: hidden; aspect-ratio: 1280/800; background: #1D1D1B; border: 1px solid rgba(255,255,255,.08); }
.proc-embed iframe { width: 100%; height: 100%; border: 0; display: block; pointer-events: none; }

/* ===== Believe full-width + typewriter ===== */
.believe-full { max-width: 860px; margin: 0 auto; padding: 0 24px; text-align: center; }
.believe-full .believe-text { font-size: clamp(1.5rem, 3vw, 2.3rem); line-height: 1.3; font-weight: 500; }
.tw { display: inline-block; }
.tw { display: inline-block; white-space: nowrap; }
.tw #twword { color: var(--numma-black); font-family: var(--font-serif); font-style: italic; font-weight: 400; }
.tw::after { content: ""; }
.believe-sub { max-width: 620px; margin: 22px auto 0; color: var(--text-muted); font-size: 1.02rem; }
.believe-list.six { grid-template-columns: repeat(3, 1fr); max-width: 860px; margin: 44px auto 0; text-align: left; }
.believe-list.six span { border-top: 1px solid var(--border); padding: 14px 4px; font-size: .9rem; font-weight: 500; }
@media (max-width: 700px){ .believe-list.six { grid-template-columns: 1fr 1fr; } }

/* ===== Flujo neural lineal (diferenciadores) ===== */
.flowline { position: relative; max-width: 1000px; margin: 60px auto 0; padding: 0 24px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.fl-rail { position: absolute; left: 60px; right: 60px; top: 34px; height: 2px; background: var(--border); overflow: hidden; }
.fl-pulse { position: absolute; top: 50%; left: 0; width: 60px; height: 3px; transform: translateY(-50%); background: linear-gradient(90deg, transparent, var(--accent) 60%, var(--accent)); border-radius: 3px; animation: flPulse 5s linear infinite; }
@keyframes flPulse { 0% { left: -60px; } 100% { left: 100%; } }
.fl-node { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; }
.fl-ic { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; background: var(--numma-white); border: 1.5px solid var(--border); color: var(--text-muted); font-size: 1.25rem; transition: all .35s ease; animation: flNode 5s ease infinite; animation-delay: calc(var(--i) * 1s); }
.fl-t { font-size: .82rem; font-weight: 500; color: var(--text-muted); max-width: 130px; transition: color .35s ease; animation: flText 5s ease infinite; animation-delay: calc(var(--i) * 1s); }
@keyframes flNode {
  0%, 8% { background: var(--numma-white); border-color: var(--border); color: var(--text-muted); transform: scale(1); }
  12%, 20% { background: var(--accent); border-color: var(--accent); color: var(--numma-black); transform: scale(1.12); box-shadow: 0 8px 26px rgba(212,255,61,.4); }
  32%, 100% { background: var(--numma-black); border-color: var(--numma-black); color: var(--accent); transform: scale(1); }
}
@keyframes flText { 0%,8% { color: var(--text-muted); } 14%,100% { color: var(--numma-black); font-weight: 600; } }
@media (max-width: 760px){ .flowline { grid-template-columns: repeat(2, 1fr); gap: 26px 14px; } .fl-rail { display: none; } }

/* ===== Reseñas: avatar iniciales + confidencial ===== */
.rv-author { display: flex; align-items: center; gap: 12px; margin-top: 6px; }
.rv-av { width: 40px; height: 40px; border-radius: 50%; flex: none; display: grid; place-items: center; background: var(--numma-black); color: var(--accent); font-weight: 700; font-size: .82rem; letter-spacing: .04em; }
.rv-meta strong { display: block; font-size: .88rem; font-weight: 600; color: var(--numma-black); }
.rv-meta span { font-size: .78rem; color: var(--text-muted); }
.review p { min-height: 66px; }

/* ===== Footer negro ===== */
.footer-dark { background: var(--numma-black); color: var(--numma-white); border-top: none; padding: 72px 24px 44px; }
.footer-dark .footer-grid h4 { color: rgba(255,255,255,.45); }
.footer-dark .footer-grid a { color: rgba(255,255,255,.7); }
.footer-dark .footer-grid a:hover { color: var(--accent); }
.footer-dark .footer-tag { color: rgba(255,255,255,.6); margin-top: 16px; font-size: .9rem; }
.footer-dark .logo-lg { color: var(--numma-white); font-size: 2.4rem; font-weight: 800; letter-spacing: -0.03em; }
.footer-dark .logo-lg .logo-dot { color: var(--accent); }
.footer-acronym { color: rgba(255,255,255,.32); font-size: .62rem; letter-spacing: .14em; margin-top: 8px; text-transform: uppercase; font-weight: 500; }
.footer-dark .footer-copy { color: rgba(255,255,255,.35); margin-top: 44px; }


/* Estrellas: otorgadas en lima, faltantes en gris */
.review .stars b { color: var(--accent); font-weight: 400; -webkit-text-stroke: .5px #b9d43a; }
.review .stars i { color: #d5d5d0; font-style: normal; }


/* ===== Believe 2 columnas + íconos Phosphor ===== */
.believe-grid2 { max-width: 1120px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.believe-left .believe-text { text-align: left; font-size: clamp(2rem, 4.5vw, 3.4rem); line-height: 1.1; font-weight: 600; letter-spacing: -0.02em; }
.believe-left .believe-sub { text-align: left; max-width: none; margin: 22px 0 0; }
.val-list { list-style: none; display: grid; }
.val { display: flex; align-items: center; gap: 16px; padding: 15px 4px; border-top: 1px solid var(--border); font-size: .97rem; font-weight: 500; }
.val:last-child { border-bottom: 1px solid var(--border); }
.val-ic { flex: none; width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; background: var(--surface); border: 1px solid var(--border); color: var(--numma-black); }
.val-ic svg { width: 22px; height: 22px; }
.val:hover .val-ic { background: var(--accent); border-color: transparent; }
@media (max-width: 820px){ .believe-grid2 { grid-template-columns: 1fr; gap: 34px; } }


/* Cursor de escritura (typewriter) */
.caret { display: inline-block; width: 3px; height: .95em; margin-left: 3px; background: var(--numma-black); vertical-align: -0.08em; animation: caretBlink 1s steps(1) infinite; }
@keyframes caretBlink { 50% { opacity: 0; } }


/* ===== Feature grid con hover (estilo aceternity) ===== */
.believe-intro { max-width: 820px; margin: 0 auto 20px; padding: 0 24px; text-align: center; }
.believe-intro .believe-text { font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.12; font-weight: 600; letter-spacing: -0.02em; }
.believe-intro .believe-sub { max-width: 620px; margin: 20px auto 0; }
.feat-grid { max-width: 1120px; margin: 40px auto 0; padding: 0 24px; }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--border); border-left: 1px solid var(--border); }
.feat { position: relative; padding: 38px 30px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; }
.feat::before { content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .25s ease; pointer-events: none; }
.feat:nth-child(-n+3)::before { background: linear-gradient(to top, var(--surface), transparent); }
.feat:nth-child(n+4)::before { background: linear-gradient(to bottom, var(--surface), transparent); }
.feat:hover::before { opacity: 1; }
.feat-ic { position: relative; z-index: 1; color: var(--text-muted); margin-bottom: 16px; transition: color .2s ease; }
.feat-ic svg { width: 26px; height: 26px; }
.feat:hover .feat-ic { color: var(--numma-black); }
.feat-title { position: relative; z-index: 1; font-weight: 700; font-size: 1.02rem; margin-bottom: 8px; }
.feat-bar { position: absolute; left: -30px; top: 50%; transform: translateY(-50%); width: 4px; height: 22px; border-radius: 0 4px 4px 0; background: var(--ink-faint); transition: height .2s ease, background .2s ease; }
.feat:hover .feat-bar { height: 30px; background: var(--accent); }
.feat-title span:last-child { display: inline-block; transition: transform .2s ease; color: var(--numma-black); }
.feat:hover .feat-title span:last-child { transform: translateX(8px); }
.feat-desc { position: relative; z-index: 1; font-size: .88rem; color: var(--text-muted); max-width: 22rem; }
@media (max-width: 860px){ .feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .feat-grid { grid-template-columns: 1fr; } }


/* ===== Lista de valores con hover (estilo aceternity) ===== */
.fval-list { list-style: none; display: grid; }
.fval { position: relative; display: flex; align-items: center; gap: 16px; padding: 18px 18px 18px 22px; border-bottom: 1px solid var(--border); overflow: hidden; cursor: default; }
.fval:first-child { border-top: 1px solid var(--border); }
.fval::before { content: ""; position: absolute; inset: 0; background: linear-gradient(to right, var(--surface), transparent); opacity: 0; transition: opacity .25s ease; pointer-events: none; }
.fval:hover::before { opacity: 1; }
.fval-bar { position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 2px; height: 20px; border-radius: 0; background: var(--ink-faint); transition: height .2s ease, background .2s ease; z-index: 1; }
.fval:hover .fval-bar { height: 38px; background: var(--accent); }
.fval-ic { position: relative; z-index: 1; flex: none; display: grid; place-items: center; color: var(--numma-black); }
.fval-ic svg { width: 22px; height: 22px; }
.fval-t { position: relative; z-index: 1; font-size: .97rem; font-weight: 500; color: var(--numma-black); transition: transform .2s ease; }
.fval:hover .fval-t { transform: translateX(6px); }


/* Negritas destacadas en body copy */
.believe-sub strong, .compare-sub strong, .features-head p strong, .proc-txt p strong, .guarantee p strong { color: var(--numma-black); font-weight: 700; }


/* ===== Lightbox ===== */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(20,20,18,.92); display: none; align-items: center; justify-content: center; padding: 40px; }
.lightbox.open { display: flex; }
.lb-img { max-width: 92vw; max-height: 88vh; object-fit: contain; border-radius: 10px; box-shadow: 0 30px 90px rgba(0,0,0,.5); }
.lb-close { position: absolute; top: 22px; right: 28px; width: 44px; height: 44px; border-radius: 50%; border: 0; background: rgba(255,255,255,.12); color: #fff; font-size: 1.6rem; line-height: 1; cursor: pointer; }
.lb-close:hover { background: var(--accent); color: var(--numma-black); }

/* Case studies: se apilan en pantallas medianas/pequeñas (sin scroll lateral) */
@media (max-width: 860px) { .cs-scroll { grid-template-columns: 1fr; } }


/* Heading del proceso: más gruesito, palabra en serif */
.process .features-head h2 { font-weight: 600; font-size: clamp(2rem, 3.4vw, 2.9rem); }
.process .features-head h2 em { font-weight: 400; }
