/* =====================================================================
   SalesAId — Landing components
   ===================================================================== */

/* ===================== SCROLL PROGRESS ===================== */
.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 200; pointer-events: none; }
.scroll-progress span { display: block; height: 100%; transform: scaleX(0); transform-origin: 0 50%; background: var(--brand-gradient); box-shadow: 0 0 12px var(--brand-glow); }

/* ===================== NAV ===================== */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 150; height: var(--nav-h); display: flex; align-items: center; transition: background 0.4s var(--ease), border-color 0.4s, backdrop-filter 0.4s; border-bottom: 1px solid transparent; }
.nav.scrolled { background: rgba(8, 7, 14, 0.72); backdrop-filter: blur(16px) saturate(140%); border-bottom-color: var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-brand { display: inline-flex; align-items: center; gap: 10px; }
.nav-logo { width: 30px; height: 30px; object-fit: contain; filter: drop-shadow(0 3px 12px rgba(124, 92, 255, 0.4)); }
.nav .brand-wordmark { font-size: 1.12rem; }
.nav-links { display: flex; gap: 6px; }
.nav-links a { position: relative; padding: 8px 14px; font-size: 0.92rem; font-weight: 500; color: var(--tx-2); border-radius: var(--r-xs); transition: color 0.25s; }
.nav-links a::after { content: ''; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 1.5px; background: var(--brand-gradient); transform: scaleX(0); transform-origin: 0 50%; transition: transform 0.3s var(--ease); border-radius: 2px; }
.nav-links a:hover { color: var(--tx); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--tx); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-login { font-size: 0.92rem; font-weight: 500; color: var(--tx-2); transition: color 0.25s; }
.nav-login:hover { color: var(--tx); }
.nav-burger { display: none; width: 40px; height: 40px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; border-radius: var(--r-xs); border: 1px solid var(--line); background: var(--surface-2); }
.nav-burger span { width: 18px; height: 1.8px; background: var(--tx); transition: transform 0.3s var(--ease), opacity 0.3s; }
.nav-burger.open span:nth-child(1) { transform: translateY(3.4px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { transform: translateY(-3.4px) rotate(-45deg); }
.nav-mobile { position: fixed; inset: var(--nav-h) 0 auto 0; z-index: 149; display: flex; flex-direction: column; gap: 6px; padding: 20px var(--gutter) 28px; background: rgba(8, 7, 14, 0.97); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); transform: translateY(-12px); opacity: 0; pointer-events: none; transition: opacity 0.3s, transform 0.3s var(--ease); }
.nav-mobile.open { opacity: 1; transform: none; pointer-events: auto; }
.nav-mobile a { padding: 12px 6px; font-size: 1.05rem; font-weight: 500; color: var(--tx-2); border-bottom: 1px solid var(--line); }
.nav-mobile .btn { margin-top: 12px; justify-content: center; }

/* ===================== HERO ===================== */
.hero { position: relative; padding-top: calc(var(--nav-h) + 46px); padding-bottom: 80px; overflow: hidden; min-height: 88vh; display: flex; align-items: center; }
.hero-bloom { position: absolute; top: -10%; right: -8%; width: 70vw; height: 70vw; max-width: 980px; max-height: 980px; border-radius: 50%; background: radial-gradient(circle, rgba(124, 92, 255, 0.22), rgba(124, 92, 255, 0.06) 40%, transparent 66%); filter: blur(20px); z-index: 0; animation: bloomDrift 24s var(--ease-in-out) infinite; }
@keyframes bloomDrift { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-4%, 5%) scale(1.08); } }
.hero-grid-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.5; background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px); background-size: 56px 56px; mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 30%, transparent 75%); }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1.06fr; gap: 56px; align-items: center; }
.hero-copy { max-width: 600px; }
.hero h1 { margin: 20px 0 0; font-size: clamp(2.35rem, 4.6vw, 4.15rem); }
.hero h1 .line { display: block; }
.hero-lead { margin-top: 26px; max-width: 520px; }
.hero-lead strong { color: var(--tx); font-weight: 600; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-actions.center { justify-content: center; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 8px 28px; margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--line); }
.hero-stats li { font-size: 0.95rem; color: var(--tx-2); display: flex; align-items: center; gap: 8px; }
.hero-stats li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--brand-strong); box-shadow: 0 0 8px var(--brand-glow); }
.hero-stats strong { font-family: var(--font-mono); color: var(--tx); font-weight: 600; font-size: 1rem; }
.hero-scroll { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); width: 24px; height: 38px; border: 1.5px solid var(--line-2); border-radius: 14px; z-index: 3; display: flex; justify-content: center; padding-top: 7px; }
.hero-scroll span { width: 3px; height: 8px; border-radius: 2px; background: var(--brand-strong); animation: scrollDot 1.8s var(--ease-in-out) infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(-3px); } 40% { opacity: 1; } 80%,100% { opacity: 0; transform: translateY(11px); } }

/* ---- glass primitive ---- */
.glass { background: linear-gradient(180deg, rgba(22, 21, 33, 0.82), rgba(13, 12, 21, 0.92)); border: 1px solid var(--line-2); backdrop-filter: blur(12px); box-shadow: var(--shadow-lg); }

/* ===================== ReuniónPlayer (hero scripted) ===================== */
.hero-stage { position: relative; perspective: 1400px; }
.hero-stage-glow { position: absolute; inset: 8% 6%; z-index: -1; background: radial-gradient(circle at 60% 40%, rgba(124, 92, 255, 0.3), transparent 60%); filter: blur(50px); }
.rp-card { position: relative; border-radius: var(--r-lg); overflow: hidden; transition: transform 0.5s var(--ease); will-change: transform; }
.rp-head { display: flex; align-items: center; gap: 12px; padding: 13px 18px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,0.015); }
.rp-dots { display: flex; gap: 6px; }
.rp-dots i { width: 9px; height: 9px; border-radius: 50%; background: var(--surface-hover); }
.rp-title { font-size: 0.9rem; font-weight: 600; color: var(--tx); }
.rp-badge { margin-left: auto; display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.03em; color: var(--brand-strong); padding: 5px 11px; border-radius: var(--r-pill); background: var(--brand-soft, rgba(139,92,246,0.14)); border: 1px solid var(--line-brand); }
.rp-rec { width: 7px; height: 7px; border-radius: 50%; background: var(--brand-strong); box-shadow: 0 0 9px var(--brand-strong); animation: pulse 1.6s var(--ease-in-out) infinite; }
.rp-body { padding: 16px 18px 6px; display: flex; flex-direction: column; gap: 13px; }

.rp-transcript { display: flex; flex-direction: column; gap: 7px; }
.rp-line { display: grid; grid-template-columns: auto auto 1fr; gap: 10px; align-items: baseline; padding: 6px 9px; border-radius: var(--r-xs); opacity: 0.42; transition: opacity 0.45s var(--ease), background 0.45s; }
.rp-line.active { opacity: 1; background: rgba(255,255,255,0.035); }
.rp-ts { font-family: var(--font-mono); font-size: 0.74rem; color: var(--tx-3); }
.rp-spk { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; color: var(--tx-3); }
.rp-line[data-spk="cli"] .rp-spk { color: var(--brand-strong); }
.rp-line p { font-size: 0.92rem; color: var(--tx); line-height: 1.42; }

.rp-insight { border: 1px solid var(--line-brand); background: linear-gradient(180deg, rgba(124,92,255,0.1), rgba(124,92,255,0.03)); border-radius: var(--r-sm); padding: 11px 13px; transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
.rp-insight-head { display: flex; align-items: center; gap: 10px; margin-bottom: 7px; }
.rp-chip { display: inline-flex; align-items: center; gap: 6px; font-size: 0.82rem; font-weight: 600; color: var(--brand-bright); }
.rp-chip svg { width: 14px; height: 14px; }
.rp-cite { margin-left: auto; font-family: var(--font-mono); font-size: 0.72rem; color: var(--tx-2); background: rgba(255,255,255,0.05); border: 1px solid var(--line); border-radius: var(--r-pill); padding: 4px 10px; cursor: pointer; transition: border-color 0.25s, color 0.25s; }
.rp-cite b { color: var(--brand-bright); }
.rp-cite:hover { border-color: var(--line-brand); color: var(--tx); }
.rp-insight p { font-size: 0.86rem; color: var(--tx-2); line-height: 1.45; }

.rp-scorecard { display: flex; flex-direction: column; gap: 8px; }
.rp-score-row { display: grid; grid-template-columns: 1.1fr 2fr auto; gap: 11px; align-items: center; }
.rp-score-row span { font-size: 0.82rem; color: var(--tx-2); }
.rp-bar { height: 6px; border-radius: 4px; background: rgba(255,255,255,0.07); overflow: hidden; }
.rp-bar i { display: block; height: 100%; width: var(--w); border-radius: 4px; background: linear-gradient(90deg, #f87171 0%, #fb923c 28%, #fbbf24 50%, #84cc16 76%, #34d399 100%); transition: width 1.1s var(--ease); }
.rp-score-row b { font-family: var(--font-mono); font-size: 0.84rem; color: var(--tx); }

.rp-coaching { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
.rp-coaching-ai, .rp-coaching-human { border-radius: var(--r-sm); padding: 10px 12px; }
.rp-coaching-ai { background: linear-gradient(180deg, rgba(124,92,255,0.12), rgba(124,92,255,0.04)); border: 1px solid var(--line-brand); }
.rp-coaching-human { background: rgba(255,255,255,0.03); border: 1px solid var(--line-2); }
.rp-mini-label { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; margin-bottom: 8px; }
.rp-mini-label::before { content: ''; width: 6px; height: 6px; border-radius: 50%; }
.rp-mini-label.ai { color: var(--brand-bright); }
.rp-mini-label.ai::before { background: var(--brand-strong); box-shadow: 0 0 8px var(--brand-glow); }
.rp-mini-label.human { color: var(--tx-2); }
.rp-mini-label.human::before { background: var(--tx-2); }
.rp-coaching-ai p { font-size: 0.8rem; color: var(--tx-2); line-height: 1.42; }
.rp-input { min-height: 38px; display: flex; align-items: flex-start; gap: 2px; }
.rp-typed { font-size: 0.8rem; color: var(--tx); line-height: 1.42; }
.rp-caret { width: 1.5px; height: 14px; background: var(--brand-strong); animation: blink 1s step-end infinite; align-self: flex-start; margin-top: 1px; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }
.rp-foot { display: flex; align-items: center; gap: 9px; padding: 13px 18px; border-top: 1px solid var(--line); font-size: 0.78rem; color: var(--tx-2); }
.rp-foot-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--tx-2); }

/* scripted: hide pre-states (JS adds .js). Active states scoped under .rp-card.js so they out-specify the hiding rules. */
.rp-card.js .rp-insight, .rp-card.js .rp-coaching { opacity: 0; transform: translateY(12px); }
.rp-card.js #rp-score .rp-bar i { width: 0; }
.rp-card.js .rp-insight.show, .rp-card.js .rp-coaching.show { opacity: 1; transform: none; }
.rp-card.js #rp-score.fill .rp-bar i { width: var(--w); }

/* ===================== TRUST / MARQUEE ===================== */
.trust { padding-block: 64px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-caption { text-align: center; font-size: 0.98rem; color: var(--tx-3); max-width: 680px; margin: 0 auto 34px; }
.trust-caption strong { color: var(--tx); font-weight: 600; }
.marquee { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: inline-flex; gap: 56px; align-items: center; white-space: nowrap; padding-right: 56px; animation: marquee 32s linear infinite; will-change: transform; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.logo-chip { font-family: var(--font-mono); font-size: 1.02rem; font-weight: 500; letter-spacing: -0.01em; color: var(--tx-3); opacity: 0.72; transition: opacity 0.3s, color 0.3s; }
.logo-chip:hover { opacity: 1; color: var(--tx); }
.logo-chip.dim { opacity: 0.6; font-size: 0.95rem; }

/* ===================== PROBLEM ===================== */
.problem-head { max-width: 880px; margin-top: 20px; }
.problem-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 56px; }
.problem-point { padding-top: 22px; border-top: 1px solid var(--line-2); }
.problem-num { font-family: var(--font-mono); font-size: 0.78rem; color: var(--brand-strong); }
.problem-point p { margin-top: 12px; font-size: 1.18rem; color: var(--tx-2); line-height: 1.4; }
.problem-point strong { color: var(--tx); font-weight: 600; }

/* ===================== PINNED PIPELINE ===================== */
.pipeline { padding-block: clamp(60px, 8vw, 110px); }
.pipeline-grid { display: grid; grid-template-columns: 1fr 1.04fr; gap: 64px; align-items: start; }
.pipeline-rail { padding-block: 8vh 8vh; }
.pipeline-rail .h2 { margin: 18px 0 40px; }
.pipeline-steps { display: flex; flex-direction: column; gap: 8px; }
.pl-step { padding: 22px 22px; border-radius: var(--r-md); border: 1px solid transparent; position: relative; opacity: 0.4; transition: opacity 0.45s var(--ease), background 0.45s, border-color 0.45s; }
.pl-step::before { content: ''; position: absolute; left: 0; top: 22px; bottom: 22px; width: 2px; border-radius: 2px; background: var(--brand-gradient); opacity: 0; transition: opacity 0.45s; }
.pl-step.active { opacity: 1; background: var(--surface); border-color: var(--line); }
.pl-step.active::before { opacity: 1; }
.pl-kicker { font-family: var(--font-mono); font-size: 0.82rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brand-strong); }
.pl-step h3 { margin: 8px 0 8px; }
.pl-step p { font-size: 0.96rem; color: var(--tx-2); line-height: 1.5; }
.pl-step strong { color: var(--tx); } .pl-step em { font-style: normal; color: var(--brand-bright); }

.pipeline-sticky { position: sticky; top: calc(var(--nav-h) + 6vh); }
.pl-stage { position: relative; border-radius: var(--r-lg); min-height: 440px; padding: 26px; overflow: hidden; }
.pl-pane { position: absolute; inset: 26px; opacity: 0; transform: translateY(14px) scale(0.99); pointer-events: none; transition: opacity 0.4s var(--ease), transform 0.4s var(--ease); display: flex; flex-direction: column; }
.pl-pane.active { opacity: 1; transform: none; pointer-events: auto; }
.pl-pane-head { display: flex; align-items: center; gap: 12px; font-size: 1.04rem; font-weight: 600; font-family: var(--font-display); color: var(--tx); margin-bottom: 22px; }
.pl-pane-kicker { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brand-strong); background: var(--brand-soft, rgba(139,92,246,0.14)); border: 1px solid var(--line-brand); padding: 5px 10px; border-radius: var(--r-pill); }
/* stage 0 wave */
.pl-wave { display: flex; align-items: flex-end; gap: 4px; height: 92px; padding: 14px 0; }
.pl-wave i { flex: 1; height: var(--h); border-radius: 3px; background: linear-gradient(180deg, var(--brand-strong), rgba(124,92,255,0.25)); opacity: 0.85; animation: wavep 1.6s var(--ease-in-out) infinite; }
.pl-wave i:nth-child(even) { animation-delay: 0.2s; } .pl-wave i:nth-child(3n) { animation-delay: 0.4s; }
@keyframes wavep { 0%,100% { transform: scaleY(0.7); } 50% { transform: scaleY(1); } }
.pl-tline { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }
.pl-tline-row { display: flex; gap: 12px; align-items: baseline; padding: 11px 13px; background: rgba(255,255,255,0.03); border: 1px solid var(--line); border-radius: var(--r-sm); }
.pl-tline-row p { font-size: 0.9rem; color: var(--tx); }
.pl-marks { display: flex; gap: 10px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.pl-marks i { width: 11px; height: 11px; border-radius: 50%; background: var(--surface-hover); }
.pl-marks i.ai { background: var(--brand-strong); box-shadow: 0 0 10px var(--brand-glow); }
/* stage 1 — playbook configurable -> scores de tus criterios */
.pl-pb { display: flex; flex-direction: column; gap: 10px; margin-top: 0; }
.pl-pb-cfg { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.pl-pb-tag { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--tx-2); }
.pl-pb-tag::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--tx-2); }
.pl-pb-edit { display: inline-flex; align-items: center; gap: 7px; font-size: 0.74rem; font-weight: 500; color: var(--tx-2); background: var(--surface-2); border: 1px solid var(--line-2); border-radius: var(--r-pill); padding: 5px 12px; transition: border-color 0.25s, color 0.25s; }
.pl-pb-edit svg { width: 15px; height: 15px; }
.pl-pb-edit:hover { border-color: var(--line-brand); color: var(--tx); }
.pl-pb-head { display: grid; grid-template-columns: 1.35fr auto 1.5fr auto; gap: 13px; align-items: center; padding-bottom: 8px; border-bottom: 1px solid var(--line); }
.pl-pb-head span { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--tx-3); }
.pl-pb-head .pl-pb-ai { grid-column: 3 / 5; text-align: right; color: var(--brand-strong); }
.pl-pb-rows { display: flex; flex-direction: column; gap: 11px; }
.pl-pb-row { display: grid; grid-template-columns: 1.35fr auto 1.5fr auto; gap: 13px; align-items: center; }
.pl-pb-crit { font-size: 0.88rem; color: var(--tx); }
.pl-pb-w { font-family: var(--font-mono); font-size: 0.78rem; color: var(--tx-2); background: rgba(255,255,255,0.045); border: 1px solid var(--line-2); border-radius: 7px; padding: 4px 10px; text-align: center; min-width: 48px; }
.pl-pb-row .rp-bar { height: 8px; }
.pl-pb-row b { font-family: var(--font-mono); font-size: 0.82rem; color: var(--tx); text-align: right; }
.pl-pb-foot { font-size: 0.86rem; color: var(--tx-2); line-height: 1.45; margin-top: 4px; }
.pl-pb-foot em { font-style: normal; color: var(--brand-bright); }
/* stage 2 coach */
.pl-coach { display: grid; gap: 14px; margin-top: 6px; }
.pl-coach-ai, .pl-coach-human { padding: 16px 18px; border-radius: var(--r-md); }
.pl-coach-ai { background: linear-gradient(180deg, rgba(124,92,255,0.12), rgba(124,92,255,0.04)); border: 1px solid var(--line-brand); }
.pl-coach-human { background: rgba(255,255,255,0.03); border: 1px solid var(--line-2); }
.pl-coach p { font-size: 0.92rem; color: var(--tx-2); line-height: 1.5; }
.pl-coach em { font-style: normal; color: var(--brand-bright); }
.pl-cite { display: inline-block; margin-top: 10px; font-family: var(--font-mono); font-size: 0.76rem; color: var(--brand-bright); }
.pl-approve { display: inline-flex; align-items: center; gap: 7px; margin-top: 10px; font-family: var(--font-mono); font-size: 0.76rem; color: var(--pos); }
.pl-approve::before { content: '✓'; }
/* stage 3 crm */
.pl-crm { display: flex; flex-direction: column; gap: 14px; margin-top: 6px; }
.pl-crm-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 14px 16px; background: rgba(255,255,255,0.03); border: 1px solid var(--line); border-radius: var(--r-sm); }
.pl-crm-row .rp-mini-label { margin: 0; }
.pl-crm-row b { font-size: 0.92rem; color: var(--tx); }
.pl-crm-gate { display: flex; align-items: center; gap: 12px; padding: 4px 2px; }
.pl-toggle { width: 40px; height: 22px; border-radius: 999px; background: rgba(255,255,255,0.1); position: relative; transition: background 0.3s; flex: 0 0 auto; }
.pl-toggle i { position: absolute; top: 3px; left: 3px; width: 16px; height: 16px; border-radius: 50%; background: #fff; transition: transform 0.3s var(--ease); }
.pl-toggle.on { background: var(--brand-solid); }
.pl-toggle.on i { transform: translateX(18px); }
.pl-crm-gate span { font-size: 0.86rem; color: var(--tx-2); }
.pl-crm-btn { align-self: flex-start; display: inline-flex; align-items: center; gap: 8px; padding: 11px 18px; border-radius: var(--r-pill); background: var(--brand-gradient); color: #0b0716; font-weight: 600; font-size: 0.9rem; }
.pl-crm-btn svg { width: 16px; height: 16px; }
.pl-progress { height: 3px; margin-top: 16px; background: var(--line); border-radius: 3px; overflow: hidden; }
.pl-progress i { display: block; height: 100%; width: 0; background: var(--brand-gradient); border-radius: 3px; }

/* ===================== MANIFESTO ===================== */
.manifesto { position: relative; overflow: hidden; }
.manifesto-bloom { position: absolute; left: 50%; top: 30%; transform: translateX(-50%); width: 80vw; max-width: 900px; height: 500px; background: radial-gradient(ellipse, rgba(124,92,255,0.12), transparent 65%); filter: blur(40px); z-index: 0; }
.manifesto .container { position: relative; z-index: 2; }
.manifesto .h2 br { display: block; }
.contract { display: grid; grid-template-columns: 1fr auto 1fr; gap: 22px; align-items: stretch; margin-top: 24px; }
.contract-col { border-radius: var(--r-lg); padding: 32px 30px; }
.contract-col.ai { background: linear-gradient(180deg, rgba(124,92,255,0.12), rgba(124,92,255,0.03)); border: 1px solid var(--line-brand); }
.contract-col.human { background: var(--surface); border: 1px solid var(--line-2); }
.contract-col .rp-mini-label { font-size: 0.72rem; margin-bottom: 20px; }
.contract-col ul { display: flex; flex-direction: column; gap: 16px; }
.contract-col li { display: flex; align-items: flex-start; gap: 12px; font-size: 1rem; color: var(--tx); line-height: 1.4; }
.contract-col li svg { width: 19px; height: 19px; flex: 0 0 auto; margin-top: 2px; }
.contract-col.ai li svg { color: var(--brand-bright); }
.contract-col.human li svg { color: var(--pos); }
.contract-bridge { display: flex; align-items: center; justify-content: center; }
.contract-bridge svg { width: 30px; height: 30px; color: var(--brand-strong); animation: bridgePulse 2.4s var(--ease-in-out) infinite; }
@keyframes bridgePulse { 0%,100% { transform: translateX(-3px); opacity: 0.6; } 50% { transform: translateX(3px); opacity: 1; } }
.manifesto-foot { text-align: center; margin-top: 34px; font-size: 1.04rem; color: var(--tx-2); }

/* ===================== BENTO ===================== */
.bento-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.bento-tile { grid-column: span 3; padding: 28px 28px 0; display: flex; flex-direction: column; }
.bento-tile.big { grid-column: span 3; }
.bento-meta { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.bento-name { font-family: var(--font-display); font-size: 1.32rem; font-weight: 600; letter-spacing: -0.02em; }
.bento-benefit { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--brand-strong); }
.bento-desc { margin-top: 12px; font-size: 0.96rem; color: var(--tx-2); line-height: 1.5; max-width: 46ch; }
.bento-shot { margin-top: 22px; border-radius: var(--r-md) var(--r-md) 0 0; overflow: hidden; border: 1px solid var(--line); border-bottom: none; box-shadow: 0 -10px 50px rgba(0,0,0,0.4); transform: translateY(0); transition: transform 0.6s var(--ease); }
.bento-tile:hover .bento-shot { transform: translateY(-6px); }
.bento-shot img { width: 100%; display: block; }

/* ===================== DEMO VIDEO ===================== */
.demo-frame { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 16/9; cursor: pointer; }
.demo-frame.film { cursor: default; }
.demo-frame video { width: 100%; height: 100%; object-fit: cover; }
.video-play { position: absolute; inset: 0; margin: auto; width: 78px; height: 78px; border-radius: 50%; background: var(--brand-gradient); display: flex; align-items: center; justify-content: center; box-shadow: 0 14px 50px rgba(124,92,255,0.5); transition: transform 0.35s var(--ease), opacity 0.35s; }
.video-play::after { content: ''; position: absolute; inset: -10px; border-radius: 50%; border: 1.5px solid var(--brand-strong); opacity: 0.5; animation: ring 2.4s var(--ease-out) infinite; }
@keyframes ring { 0% { transform: scale(1); opacity: 0.5; } 100% { transform: scale(1.5); opacity: 0; } }
.video-play svg { width: 30px; height: 30px; color: #0b0716; margin-left: 4px; }
.video-play:hover { transform: scale(1.08); }
.demo-frame.playing .video-play, .demo-frame.playing .demo-time { opacity: 0; pointer-events: none; }
.demo-time { position: absolute; right: 16px; bottom: 14px; font-family: var(--font-mono); font-size: 0.8rem; color: var(--tx); background: rgba(8,7,14,0.7); border: 1px solid var(--line); border-radius: var(--r-pill); padding: 5px 11px; backdrop-filter: blur(8px); }
.demo-sub { text-align: center; margin-top: 26px; color: var(--tx-3); }
.demo-sub a { color: var(--brand-bright); font-weight: 500; }
.demo-sub a:hover { text-decoration: underline; }

/* ===================== PROOF / STATS ===================== */
.proof { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.proof-stat { text-align: center; padding: 10px; }
.proof-num { font-family: var(--font-mono); font-size: clamp(2.6rem, 5vw, 4rem); font-weight: 600; letter-spacing: -0.03em; background: var(--brand-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; display: block; }
.proof-label { display: block; margin-top: 14px; font-size: 0.9rem; color: var(--tx-3); line-height: 1.4; max-width: 22ch; margin-inline: auto; }
.proof-note { text-align: center; margin-top: 40px; font-size: 0.88rem; color: var(--tx-3); }

/* ===================== COMPETITIVE MATRIX ===================== */
.matrix-plot { position: relative; aspect-ratio: 16/10; max-width: 900px; margin-inline: auto; padding: 38px 58px 42px; background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012)); border: 1px solid var(--line-2); }
/* el campo 2x2 (espacio de coordenadas de los dots) */
.matrix-field { position: absolute; inset: 38px 58px 42px; border: 1px solid var(--line-2); border-radius: 12px; background-image: linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px); background-size: 16.66% 16.66%; background-position: center; }
/* cruz central más marcada */
.matrix-field::before, .matrix-field::after { content: ''; position: absolute; background: var(--line-2); z-index: 1; }
.matrix-field::before { left: 50%; top: 0; bottom: 0; width: 1px; transform: translateX(-0.5px); }
.matrix-field::after { top: 50%; left: 0; right: 0; height: 1px; transform: translateY(-0.5px); }
/* zona ganadora: glow de esquina arriba-derecha (coaching + ventas) */
.matrix-zone { position: absolute; top: 0; right: 0; width: 66%; height: 72%; z-index: 2; border-radius: 0 12px 0 0; background: radial-gradient(78% 78% at 100% 0%, rgba(124,92,255,0.26), rgba(124,92,255,0.07) 44%, transparent 66%); }
/* ejes legibles */
.matrix-axis { position: absolute; z-index: 4; font-family: var(--font-mono); font-size: 0.76rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--tx-2); white-space: nowrap; }
.matrix-axis.top { top: 13px; left: 50%; transform: translateX(-50%); color: var(--brand-strong); }
.matrix-axis.bottom { bottom: 15px; left: 50%; transform: translateX(-50%); }
.matrix-axis.left { left: 14px; top: 50%; transform: translate(-50%, -50%) rotate(-90deg); }
.matrix-axis.right { right: 14px; top: 50%; transform: translate(50%, -50%) rotate(-90deg); color: var(--brand-strong); }
/* dots dentro del field */
.matrix-dot { position: absolute; left: var(--x); bottom: var(--y); transform: translate(-50%, 50%); z-index: 3; display: inline-flex; align-items: center; gap: 7px; font-size: 0.84rem; font-weight: 500; color: var(--tx-2); padding: 8px 15px; border-radius: var(--r-pill); background: rgba(20, 19, 30, 0.92); border: 1px solid var(--line-2); white-space: nowrap; box-shadow: var(--shadow-sm); transition: transform 0.3s var(--ease), color 0.3s, border-color 0.3s; }
.matrix-dot::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--tx-3); }
.matrix-dot:hover { transform: translate(-50%, 50%) scale(1.06); color: var(--tx); border-color: var(--line); }
.matrix-dot.brand { color: var(--tx); font-weight: 700; background: rgba(26, 22, 42, 0.97); border: 1.5px solid var(--brand-strong); box-shadow: 0 0 24px rgba(124,92,255,0.5), 0 8px 30px rgba(0,0,0,0.5); z-index: 4; }
.matrix-dot.brand::before { background: var(--brand-strong); box-shadow: 0 0 10px var(--brand-strong); }
.matrix-dot.brand .ai { background: var(--brand-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.matrix-caption { max-width: 760px; margin: 30px auto 0; text-align: center; font-size: 0.98rem; line-height: 1.6; color: var(--tx-3); }
.matrix-caption span { color: var(--tx-2); }
.matrix-caption strong { display: block; margin-top: 8px; color: var(--tx); font-weight: 600; }

/* ===================== SECURITY ===================== */
.security-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.sec-card { padding: 26px 24px; }
.sec-ico { width: 44px; height: 44px; border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; background: var(--brand-soft, rgba(139,92,246,0.14)); border: 1px solid var(--line-brand); margin-bottom: 18px; }
.sec-ico svg { width: 22px; height: 22px; color: var(--brand-bright); }
.sec-card h3 { font-size: 1.06rem; margin-bottom: 10px; }
.sec-card p { font-size: 0.9rem; color: var(--tx-2); line-height: 1.5; }

/* ===================== PERSONA + PRICING ===================== */
.persona { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: center; padding-bottom: clamp(60px, 8vw, 100px); margin-bottom: clamp(40px, 6vw, 70px); border-bottom: 1px solid var(--line); }
.persona-head .h2 { margin: 16px 0 26px; }
.persona-tabs { display: inline-flex; gap: 6px; padding: 5px; background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r-pill); }
.persona-tab { padding: 9px 18px; border-radius: var(--r-pill); font-size: 0.9rem; font-weight: 500; color: var(--tx-3); transition: color 0.25s, background 0.25s; }
.persona-tab.active { color: var(--tx); background: var(--brand-soft, rgba(139,92,246,0.14)); box-shadow: inset 0 0 0 1px var(--line-brand); }
.persona-pane { display: none; }
.persona-pane.active { display: block; animation: fadeUp 0.5s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.persona-list { display: flex; flex-direction: column; gap: 16px; }
.persona-list li { position: relative; padding-left: 33px; font-size: 1.08rem; color: var(--tx-2); line-height: 1.45; }
.persona-list li::before { content: ''; position: absolute; left: 0; top: 4px; width: 21px; height: 21px; background-repeat: no-repeat; background-position: center; background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b69bff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.2 4.3L19 7'/%3E%3C/svg%3E"); }

.price-toggle-wrap { display: inline-flex; align-items: center; gap: 14px; margin-top: 22px; font-size: 0.92rem; color: var(--tx-2); }
.price-save { display: inline-flex; align-items: center; gap: 5px; margin-left: 12px; transform-origin: left center; font-family: var(--font-mono); font-size: 0.76rem; font-weight: 600; font-style: normal; color: #93ecbb; background: linear-gradient(120deg, rgba(52,211,153,0.13), rgba(132,204,22,0.09)); border: 1px solid rgba(52,211,153,0.32); border-radius: var(--r-pill); padding: 4px 11px 4px 9px; position: relative; overflow: hidden; transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.4s, color 0.3s, background 0.4s; }
.price-save svg { width: 13px; height: 13px; color: var(--pos); position: relative; z-index: 1; transition: color 0.3s; }
.price-save > span { position: relative; z-index: 1; }
.price-save::before { content: ''; position: absolute; top: 0; left: -65%; width: 55%; height: 100%; background: linear-gradient(105deg, transparent, rgba(255,255,255,0.5), transparent); transform: skewX(-18deg); opacity: 0; pointer-events: none; }
@keyframes saveSheen { 0% { left: -65%; opacity: 0; } 12% { opacity: 1; } 100% { left: 150%; opacity: 0; } }
@keyframes savePulse { 0%,100% { box-shadow: 0 0 13px rgba(52,211,153,0.3), inset 0 0 0 1px rgba(52,211,153,0.15); } 50% { box-shadow: 0 0 27px rgba(52,211,153,0.6), inset 0 0 0 1px rgba(52,211,153,0.3); } }
.price-toggle { width: 50px; height: 28px; border-radius: 999px; background: var(--surface-hover); border: 1px solid var(--line-2); position: relative; }
.price-toggle i { position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; border-radius: 50%; background: var(--brand-gradient); transition: transform 0.35s var(--ease), box-shadow 0.35s; }
.price-toggle.annual { background: rgba(124,92,255,0.18); border-color: var(--line-brand); }
.price-toggle.annual i { transform: translateX(22px); box-shadow: 0 0 14px var(--brand-glow); }
/* roll animado del número de precio */
.price-amount b { transition: transform 0.25s var(--ease); will-change: transform; }
.price-amount b.rolling { transform: scale(1.08); }
/* resaltar la opción activa (Mensual / Anual) + pop del badge de ahorro */
.price-toggle-wrap > span { transition: color 0.3s; }
.price-toggle-wrap > span:first-child { color: var(--tx); }
.price-toggle-wrap > span:last-child { color: var(--tx-3); }
.price-toggle-wrap:has(.price-toggle.annual) > span:first-child { color: var(--tx-3); }
.price-toggle-wrap:has(.price-toggle.annual) > span:last-child { color: var(--tx); }
.price-toggle-wrap:has(.price-toggle.annual) .price-save { transform: scale(1.12); color: #c6f6db; border-color: rgba(52,211,153,0.6); background: linear-gradient(120deg, rgba(52,211,153,0.26), rgba(132,204,22,0.18)); box-shadow: 0 0 18px rgba(52,211,153,0.42), inset 0 0 0 1px rgba(52,211,153,0.2); animation: savePulse 2.4s ease-in-out infinite; }
.price-toggle-wrap:has(.price-toggle.annual) .price-save svg { color: #a3e635; }
.price-toggle-wrap:has(.price-toggle.annual) .price-save::before { animation: saveSheen 0.85s var(--ease) 0.08s 1; }

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; margin-top: 12px; }
.price-card { padding: 30px 28px; display: flex; flex-direction: column; }
.price-card.featured { border-color: var(--line-brand); background: linear-gradient(180deg, rgba(124,92,255,0.08), var(--surface)); box-shadow: var(--shadow-glow); }
.price-badge { position: absolute; top: 16px; right: 16px; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--brand-bright); background: var(--brand-soft, rgba(139,92,246,0.14)); border: 1px solid var(--line-brand); border-radius: var(--r-pill); padding: 5px 11px; }
.price-name { font-size: 1.3rem; }
.price-tag { margin-top: 8px; font-size: 0.92rem; color: var(--tx-2); line-height: 1.45; min-height: 40px; }
.price-amount { display: flex; align-items: baseline; gap: 3px; margin: 22px 0 20px; flex-wrap: wrap; }
.price-cur { font-size: 1.1rem; color: var(--tx-2); font-weight: 600; }
.price-amount b { font-family: var(--font-display); font-size: 2.8rem; font-weight: 600; letter-spacing: -0.03em; }
.price-custom { font-family: var(--font-display); font-size: 2.2rem; font-weight: 600; }
.price-period { font-size: 0.86rem; color: var(--tx-2); width: 100%; margin-top: 4px; }
.price-card .btn { justify-content: center; }
.price-feats { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.price-feats li { position: relative; padding-left: 27px; font-size: 0.9rem; color: var(--tx-2); }
.price-feats li::before { content: ''; position: absolute; left: 0; top: 3px; width: 18px; height: 18px; background-repeat: no-repeat; background-position: center; background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b69bff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.2 4.3L19 7'/%3E%3C/svg%3E"); }
.price-foot { text-align: center; margin-top: 30px; font-size: 0.88rem; color: var(--tx-3); }

/* ===================== VALIDATION ===================== */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.quote { padding: 30px 28px; }
.quote p { font-family: var(--font-display); font-size: 1.18rem; line-height: 1.35; letter-spacing: -0.01em; color: var(--tx); }
.quote footer { margin-top: 22px; font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.03em; color: var(--tx-2); }

/* ===================== FINAL CTA ===================== */
.cta { position: relative; overflow: hidden; padding-block: clamp(90px, 13vw, 160px); }
.cta-bloom { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 90vw; max-width: 1000px; height: 600px; background: radial-gradient(ellipse, rgba(124,92,255,0.2), transparent 62%); filter: blur(40px); z-index: 0; animation: bloomDrift 22s var(--ease-in-out) infinite; }
.cta .container { position: relative; z-index: 2; }
.cta-inner { text-align: center; max-width: 760px; margin-inline: auto; }
.cta-head { margin: 22px 0 22px; }
.cta-inner .lead { max-width: 540px; margin-inline: auto; }
.cta-inner .hero-actions { margin-top: 36px; }

/* ===================== FAQ ===================== */
.acc { max-width: 820px; }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-head { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 4px; text-align: left; font-family: var(--font-display); font-size: 1.12rem; font-weight: 600; letter-spacing: -0.01em; color: var(--tx); transition: color 0.25s; }
.acc-head:hover { color: var(--brand-bright); }
.acc-plus { position: relative; width: 18px; height: 18px; flex: 0 0 auto; }
.acc-plus::before, .acc-plus::after { content: ''; position: absolute; background: var(--brand-strong); border-radius: 2px; transition: transform 0.3s var(--ease); }
.acc-plus::before { left: 0; top: 8px; width: 18px; height: 2px; }
.acc-plus::after { left: 8px; top: 0; width: 2px; height: 18px; }
.acc-item.open .acc-plus::after { transform: rotate(90deg); opacity: 0; }
.acc-body { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.acc-body p { padding: 0 4px 24px; font-size: 0.98rem; color: var(--tx-2); line-height: 1.6; max-width: 70ch; }
.acc-body strong { color: var(--tx); } .acc-body em { font-style: normal; color: var(--brand-bright); }

/* ===================== FOOTER ===================== */
.footer { border-top: 1px solid var(--line); padding-top: 70px; }
.footer-inner { display: grid; grid-template-columns: 1.3fr 2fr; gap: 50px; padding-bottom: 50px; }
.footer-brand p { margin: 16px 0 22px; font-size: 0.94rem; color: var(--tx-3); max-width: 30ch; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.footer-col h4 { font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--tx-3); margin-bottom: 16px; }
.footer-col a { display: block; padding: 6px 0; font-size: 0.92rem; color: var(--tx-2); transition: color 0.25s; }
.footer-col a:hover { color: var(--brand-bright); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 26px 0; border-top: 1px solid var(--line); font-size: 0.88rem; color: var(--tx-3); flex-wrap: wrap; }
.footer-legal a:hover { color: var(--tx-2); }

/* ===================== TRIAL MODAL ===================== */
.modal { position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center; padding: 20px; background: rgba(5,4,10,0.72); backdrop-filter: blur(8px); opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.modal.open { opacity: 1; pointer-events: auto; }
.modal-card { position: relative; width: 100%; max-width: 460px; border-radius: var(--r-lg); padding: 34px 32px; transform: translateY(16px) scale(0.98); transition: transform 0.4s var(--ease); }
.modal.open .modal-card { transform: none; }
.modal-x { position: absolute; top: 16px; right: 18px; width: 32px; height: 32px; border-radius: 50%; color: var(--tx-3); font-size: 0.9rem; transition: background 0.25s, color 0.25s; }
.modal-x:hover { background: var(--surface-hover); color: var(--tx); }
.trial-dots { display: flex; gap: 7px; margin-bottom: 22px; }
.trial-dot { width: 26px; height: 4px; border-radius: 3px; background: var(--surface-hover); transition: background 0.3s; }
.trial-dot.on { background: var(--brand-gradient); }
.trial-step { display: none; }
.trial-step.active { display: block; animation: fadeUp 0.4s var(--ease); }
.trial-step .h3 { margin-bottom: 8px; }
.trial-step > .muted { font-size: 0.9rem; margin-bottom: 22px; }
.field { display: block; margin-bottom: 16px; }
.field span { display: block; font-size: 0.85rem; color: var(--tx-2); margin-bottom: 8px; font-weight: 500; }
.field input, .field select { width: 100%; padding: 12px 14px; border-radius: var(--r-sm); background: rgba(255,255,255,0.03); border: 1px solid var(--line-2); color: var(--tx); font-size: 0.94rem; transition: border-color 0.25s, background 0.25s; }
.field input:focus, .field select:focus { outline: none; border-color: var(--line-brand); background: rgba(124,92,255,0.06); }
.field input::placeholder { color: var(--tx-4); }
.trial-step .btn { width: 100%; justify-content: center; margin-top: 8px; }
.trial-nav { display: flex; gap: 12px; margin-top: 8px; }
.trial-nav .btn { margin-top: 0; }
.trial-summary { display: flex; flex-direction: column; gap: 14px; margin: 8px 0 24px; }
.trial-summary li { display: flex; align-items: center; gap: 12px; font-size: 0.96rem; color: var(--tx); }
.trial-summary li svg { width: 18px; height: 18px; color: var(--pos); flex: 0 0 auto; }
.trial-secure { text-align: center; }
.trial-secure > svg { width: 44px; height: 44px; color: var(--brand-bright); margin: 0 auto 16px; }
.trial-secure .muted { font-size: 0.9rem; margin: 10px 0 24px; line-height: 1.5; }
.trial-stripe { width: 100%; justify-content: center; }
.trial-demo-note { font-size: 0.8rem; color: var(--tx-3); margin: 16px 0 10px; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-copy { max-width: 640px; }
  .hero { min-height: auto; }
  .pipeline-grid { grid-template-columns: 1fr; gap: 30px; }
  .pipeline-sticky { position: relative; top: 0; }
  .pl-step { opacity: 1; }
  .bento-tile, .bento-tile.big { grid-column: span 3; }
  .persona { grid-template-columns: 1fr; gap: 32px; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }
  .security-grid { grid-template-columns: repeat(2, 1fr); }
}
/* Nav: pasar a hamburguesa antes de que se apriete (tablets / laptops chicas) */
@media (max-width: 1080px) {
  .nav-links { display: none; }
  .nav-cta .nav-login { display: none; }
  .nav-cta .btn { display: none; }
  .nav-burger { display: flex; }
}
@media (max-width: 760px) {
  :root { --gutter: 18px; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-tile, .bento-tile.big { grid-column: span 1; }
  .problem-points { grid-template-columns: 1fr; gap: 18px; }
  .contract { grid-template-columns: 1fr; }
  .contract-bridge { transform: rotate(90deg); }
  .price-grid { grid-template-columns: 1fr; }
  .quotes { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; gap: 30px; }
  .security-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .hero h1 .line { display: inline; }
  .rp-coaching { grid-template-columns: 1fr; }
  .matrix-plot { padding: 30px 16px; aspect-ratio: 4/5; }
  .matrix-dot { font-size: 0.72rem; padding: 5px 9px; }
}
