@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;0,700;1,400&family=Outfit:wght@400;500;600;700;800&display=swap");

:root {
  --arena: #f7f4ef;
  --white: #ffffff;
  --ink: #1e293b;
  --indigo: #4338ca;
  --teal: #0d9488;
  --copper: #b45309;
  --muted: #64748b;
  --dim: #94a3b8;
  --border: rgba(67, 56, 202, 0.14);
  --shadow: 0 20px 50px rgba(30, 41, 59, 0.1);
  --radius: 14px;
  --font-ui: "Outfit", system-ui, sans-serif;
  --font-display: "Lora", Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-ui); line-height: 1.65; color: var(--ink); background: var(--arena); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--indigo); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--teal); }
.container { width: min(1180px, 92vw); margin: 0 auto; }
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 9999; background: var(--indigo); color: #fff; padding: 8px 16px; font-weight: 600; }
.skip-link:focus { left: 8px; top: 8px; }

.top-bar { background: var(--ink); color: #cbd5e1; font-size: 0.78rem; padding: 10px 4vw; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.tasa-bcv { color: var(--teal); font-weight: 600; }

.site-header { position: sticky; top: 0; z-index: 200; background: rgba(247, 244, 239, 0.94); backdrop-filter: blur(14px); border-bottom: 1px solid var(--border); transition: box-shadow 0.3s; }
.site-header.scrolled { box-shadow: var(--shadow); }
.header-inner { width: min(1180px, 92vw); margin: 0 auto; display: flex; align-items: center; gap: 24px; padding: 14px 0; }
.logo img { height: 40px; }
.nav-panel { display: flex; gap: 28px; margin-left: auto; font-size: 0.9rem; font-weight: 600; }
.nav-panel a { color: var(--muted); }
.nav-panel a.active, .nav-panel a:hover { color: var(--indigo); }
.nav-btn { display: none; background: var(--white); border: 1px solid var(--border); border-radius: 10px; color: var(--ink); width: 44px; height: 44px; font-size: 1.3rem; cursor: pointer; }

.btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 28px; border-radius: 8px; font-weight: 700; font-size: 0.9rem; border: none; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; font-family: var(--font-ui); }
.btn:hover { transform: translateY(-2px); }
.btn-teal { background: linear-gradient(135deg, var(--teal), #14b8a6); color: #fff; box-shadow: 0 8px 24px rgba(13, 148, 136, 0.3); }
.btn-teal:hover { color: #fff; }
.btn-indigo { background: var(--indigo); color: #fff; box-shadow: 0 8px 24px rgba(67, 56, 202, 0.28); }
.btn-indigo:hover { color: #fff; }
.btn-outline { background: transparent; color: var(--indigo); border: 2px solid rgba(67, 56, 202, 0.35); }
.btn-outline:hover { background: rgba(67, 56, 202, 0.06); color: var(--indigo); }
.btn-block { width: 100%; margin-top: 16px; }
.header-cta { margin-left: 12px; }

.eyebrow { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.14em; color: var(--teal); margin-bottom: 14px; display: block; }
.indigo-text { color: var(--indigo); }

.hero-blueprint { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; background: var(--ink); }
.hero-bg-wrap { position: absolute; inset: 0; z-index: 0; }
.hero-bg-wrap img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); animation: heroZoom 18s ease-in-out infinite alternate; }
@keyframes heroZoom { from { transform: scale(1.04); } to { transform: scale(1.1); } }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(115deg, rgba(30,41,59,0.92) 0%, rgba(30,41,59,0.75) 45%, rgba(67,56,202,0.55) 100%); z-index: 1; }
.hero-grid { position: absolute; inset: 0; opacity: 0.2; z-index: 2; background-image: linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px); background-size: 40px 40px; pointer-events: none; }
.hero-inner { position: relative; z-index: 3; width: min(1180px, 92vw); margin: 0 auto; padding: 56px 4vw 80px; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.hero-copy h1 { font-family: var(--font-display); font-size: clamp(2.4rem, 5.8vw, 3.6rem); font-weight: 700; line-height: 1.06; margin-bottom: 20px; color: #fff; }
.hero-copy .eyebrow { color: #5eead4; }
.hero-lead { color: rgba(255,255,255,0.82); font-size: 1.08rem; max-width: 500px; margin-bottom: 28px; }
.hero-disclaimer { font-size: 0.76rem; color: rgba(255,255,255,0.65); max-width: 500px; border-left: 3px solid var(--copper); padding-left: 14px; line-height: 1.5; }
.hero-copy .btn-outline { color: #fff; border-color: rgba(255,255,255,0.45); }
.hero-copy .btn-outline:hover { background: rgba(255,255,255,0.1); color: #fff; }
.indigo-text { background: linear-gradient(135deg, #a5b4fc, #5eead4); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.doc-panel { background: rgba(255,255,255,0.96); border: none; border-radius: var(--radius); padding: 24px; box-shadow: 0 32px 80px rgba(0,0,0,0.35); position: relative; backdrop-filter: blur(12px); }
.doc-panel::before { content: "PLAN"; position: absolute; top: 12px; right: 12px; font-size: 0.65rem; font-weight: 800; letter-spacing: 0.12em; color: var(--indigo); border: 1px solid var(--indigo); padding: 4px 8px; border-radius: 4px; }
.hero-floats { position: absolute; bottom: -16px; left: -16px; display: flex; gap: 8px; z-index: 4; }
.hero-float { width: 72px; height: 72px; border-radius: 12px; overflow: hidden; border: 3px solid #fff; box-shadow: var(--shadow); }
.hero-float img { width: 100%; height: 100%; object-fit: cover; }

.stats-bar { background: var(--white); border-bottom: 1px solid var(--border); padding: 28px 0; margin-top: -1px; position: relative; z-index: 5; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-item strong { display: block; font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2rem); color: var(--indigo); margin-bottom: 4px; }
.stat-item span { font-size: 0.82rem; color: var(--muted); font-weight: 600; }

.visual-band { position: relative; min-height: 420px; display: flex; align-items: center; overflow: hidden; }
.visual-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.visual-band-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(67,56,202,0.88), rgba(13,148,136,0.75)); }
.visual-band-content { position: relative; z-index: 1; width: min(1180px, 92vw); margin: 0 auto; padding: 48px 4vw; color: #fff; max-width: 620px; }
.visual-band-content h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 14px; }
.visual-band-content p { opacity: 0.92; margin-bottom: 24px; line-height: 1.7; }

.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-photo { border-radius: var(--radius); overflow: hidden; position: relative; box-shadow: var(--shadow); aspect-ratio: 4/5; max-height: 520px; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-badge { position: absolute; bottom: 20px; left: 20px; background: var(--white); padding: 14px 18px; border-radius: 10px; box-shadow: var(--shadow); border-left: 4px solid var(--teal); }
.about-badge strong { display: block; font-size: 1.2rem; color: var(--indigo); }
.about-badge span { font-size: 0.78rem; color: var(--muted); }
.about-copy h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.4rem); margin-bottom: 16px; }
.about-copy p { color: var(--muted); margin-bottom: 14px; }
.about-list { list-style: none; margin: 20px 0 28px; }
.about-list li { padding: 10px 0 10px 28px; position: relative; color: var(--muted); font-size: 0.92rem; border-bottom: 1px solid var(--border); }
.about-list li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 800; }

.gallery-section { padding: 80px 0; background: var(--ink); }
.gallery-section .section-intro h2 { color: #fff; }
.gallery-section .section-intro p { color: #94a3b8; }
.gallery-mosaic { display: grid; grid-template-columns: repeat(6, 1fr); grid-template-rows: repeat(2, 180px); gap: 12px; width: min(1180px, 92vw); margin: 0 auto; }
.gallery-mosaic figure { border-radius: 12px; overflow: hidden; position: relative; margin: 0; }
.gallery-mosaic figure:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-mosaic figure:nth-child(2) { grid-column: span 2; }
.gallery-mosaic figure:nth-child(3) { grid-column: span 2; }
.gallery-mosaic figure:nth-child(4) { grid-column: span 2; }
.gallery-mosaic figure:nth-child(5) { grid-column: span 2; }
.gallery-mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-mosaic figure:hover img { transform: scale(1.06); }
.gallery-cap { position: absolute; bottom: 0; left: 0; right: 0; padding: 12px 14px; background: linear-gradient(transparent, rgba(0,0,0,0.75)); color: #fff; font-size: 0.78rem; font-weight: 600; }

.plan-img img { transition: transform 0.45s; }
.plan-card:hover .plan-img img { transform: scale(1.06); }

.cta-photo { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 320px; display: flex; align-items: center; justify-content: center; text-align: center; }
.cta-photo-bg { position: absolute; inset: 0; }
.cta-photo-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-photo-overlay { position: absolute; inset: 0; background: rgba(67,56,202,0.82); }
.cta-photo .cta-band { position: relative; z-index: 1; padding: 56px 32px; }

.catalog-visual { position: relative; min-height: 280px; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.catalog-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.catalog-visual-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(30,41,59,0.7), rgba(67,56,202,0.85)); }
.catalog-visual-inner { position: relative; z-index: 1; color: #fff; padding: 48px 4vw; }
.catalog-visual-inner h1 { font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 12px; }
.catalog-visual-inner p { opacity: 0.9; max-width: 560px; margin: 0 auto; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 20px; }
.doc-header { display: flex; justify-content: space-between; margin-bottom: 16px; font-size: 0.78rem; color: var(--dim); text-transform: uppercase; letter-spacing: 0.1em; }
.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 16px; }
.metric { background: var(--arena); border-radius: 8px; padding: 14px; text-align: center; border-top: 3px solid var(--indigo); }
.metric strong { display: block; font-family: var(--font-display); font-size: 1.5rem; color: var(--indigo); }
.metric span { font-size: 0.7rem; color: var(--dim); }
.hero-photo { border-radius: 8px; overflow: hidden; aspect-ratio: 16/10; border: 1px solid var(--border); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

.module-strip { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 24px 0; }
.module-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.module { padding: 12px 20px; border-radius: 8px; background: var(--arena); border: 1px dashed rgba(67, 56, 202, 0.25); font-size: 0.82rem; font-weight: 600; color: var(--muted); }
.module em { color: var(--indigo); font-style: normal; font-weight: 800; }

.section { padding: 80px 0; }
.section-white { background: var(--white); }
.section-arena { background: var(--arena); }
.section-indigo { background: var(--indigo); color: #fff; }
.section-indigo .section-intro p { color: rgba(255,255,255,0.88); }
.section-indigo .eyebrow { color: #a5b4fc; }
.section-intro { margin-bottom: 44px; }
.section-intro.center { text-align: center; }
.section-intro h2 { font-family: var(--font-display); font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: 14px; }
.section-intro p { color: var(--muted); max-width: 560px; }
.section-intro.center p { margin: 0 auto; }

.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.plan-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; border-top: 4px solid var(--teal); position: relative; }
.plan-card::after { content: ""; position: absolute; top: 8px; left: 8px; width: 12px; height: 12px; border-top: 2px solid var(--indigo); border-left: 2px solid var(--indigo); opacity: 0.5; }
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.plan-card a { color: inherit; display: block; }
.plan-img { aspect-ratio: 16/10; overflow: hidden; }
.plan-img img { width: 100%; height: 100%; object-fit: cover; }
.plan-body { padding: 22px; }
.plan-sku { font-size: 0.68rem; font-weight: 800; color: var(--indigo); letter-spacing: 0.08em; }
.plan-body h3 { font-family: var(--font-display); font-size: 1.12rem; margin: 8px 0; }

.pipeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; counter-reset: phase; }
.pipe-step { background: var(--white); border: 1px solid var(--border); padding: 24px 18px; text-align: center; position: relative; }
.pipe-step:not(:last-child)::after { content: ""; position: absolute; right: 0; top: 50%; width: 1px; height: 60%; transform: translateY(-50%); background: var(--indigo); opacity: 0.3; }
.pipe-num { width: 32px; height: 32px; border-radius: 50%; background: var(--indigo); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.85rem; margin: 0 auto 12px; }
.pipe-step h3 { font-size: 0.92rem; margin-bottom: 8px; }
.pipe-step p { font-size: 0.8rem; color: var(--muted); }

.perk-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.perk { background: var(--white); border: 1px dashed var(--border); border-radius: var(--radius); padding: 24px; text-align: center; }
.perk-icon { font-size: 1.8rem; margin-bottom: 12px; }
.perk h3 { font-size: 0.95rem; margin-bottom: 8px; }
.perk p { font-size: 0.84rem; color: var(--muted); }

.quote-box { max-width: 700px; margin: 0 auto; text-align: center; padding: 40px; background: var(--white); border: 2px dashed rgba(67, 56, 202, 0.25); border-radius: var(--radius); }
.quote-box blockquote { font-family: var(--font-display); font-size: 1.28rem; font-style: italic; margin-bottom: 16px; }
.quote-box cite { font-size: 0.88rem; color: var(--dim); font-style: normal; }
.quote-note { font-size: 0.78rem; color: var(--dim); margin-top: 12px; opacity: 0.85; }

.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: 8px; margin-bottom: 10px; background: var(--white); overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 18px 22px; font-weight: 700; cursor: pointer; color: var(--ink); display: flex; justify-content: space-between; font-family: var(--font-ui); }
.faq-q::after { content: "+"; color: var(--indigo); font-size: 1.3rem; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; color: var(--muted); font-size: 0.9rem; padding: 0 22px; transition: max-height 0.35s, padding 0.35s; }
.faq-item.open .faq-a { max-height: 220px; padding: 0 22px 18px; }

.cta-band { text-align: center; padding: 56px 40px; border-radius: var(--radius); }
.cta-band h2 { font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 14px; }
.cta-band p { opacity: 0.92; margin-bottom: 24px; max-width: 480px; margin-left: auto; margin-right: auto; }

.contact-split { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; }
.contact-list { list-style: none; margin: 20px 0; }
.contact-list li { padding: 10px 0; border-bottom: 1px solid var(--border); color: var(--muted); }
.map-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); min-height: 280px; }
.map-frame iframe { width: 100%; height: 100%; min-height: 280px; border: 0; }

.precio-line strong { display: block; color: var(--indigo); }
.precio-line span { font-size: 0.82rem; color: var(--dim); }
.precio-note { font-size: 0.75rem; color: var(--teal); margin-top: 4px; font-weight: 600; }

.catalog-hero { padding: 68px 4vw 48px; text-align: center; background: var(--white); border-bottom: 1px solid var(--border); }
.catalog-hero h1 { font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 12px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 36px; }
.chip { padding: 10px 18px; border-radius: 8px; border: 1px solid var(--border); background: var(--white); color: var(--muted); font-size: 0.82rem; cursor: pointer; font-family: var(--font-ui); font-weight: 600; }
.chip.active, .chip:hover { background: rgba(67, 56, 202, 0.08); border-color: var(--indigo); color: var(--indigo); }

.cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.cat-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; border-top: 4px solid var(--teal); transition: transform 0.3s; }
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.cat-img { aspect-ratio: 16/10; overflow: hidden; }
.cat-img img { width: 100%; height: 100%; object-fit: cover; }
.cat-body { padding: 26px; }
.cat-body h2 { font-family: var(--font-display); font-size: 1.25rem; margin: 8px 0; }
.sku { font-size: 0.68rem; font-weight: 800; color: var(--indigo); letter-spacing: 0.08em; }
.feat-tags { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin: 12px 0; }
.feat-tags li { font-size: 0.72rem; padding: 4px 10px; background: rgba(67, 56, 202, 0.08); border-radius: 999px; color: var(--muted); }
.modalidad-tag { font-size: 0.78rem; color: var(--copper); font-weight: 700; display: block; margin-bottom: 10px; }

.legal-page { width: min(760px, 92vw); margin: 0 auto; padding: 52px 0 72px; }
.legal-page h1 { font-family: var(--font-display); font-size: 2.1rem; margin-bottom: 8px; }
.legal-page .fecha { color: var(--dim); font-size: 0.88rem; margin-bottom: 24px; }
.legal-page h2 { font-size: 1.1rem; margin: 28px 0 10px; color: var(--indigo); }
.legal-page p, .legal-page li { color: var(--muted); font-size: 0.94rem; margin-bottom: 10px; }
.legal-page ul { padding-left: 20px; margin-bottom: 16px; }
.legal-page table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 0.84rem; }
.legal-page th, .legal-page td { border: 1px solid var(--border); padding: 10px 12px; text-align: left; }
.legal-page th { background: var(--arena); color: var(--ink); }

.ads-disclaimer { background: var(--white); border: 1px solid var(--border); border-left: 4px solid var(--copper); border-radius: 8px; padding: 18px 22px; margin: 0 auto 28px; max-width: min(1180px, 92vw); font-size: 0.86rem; color: var(--muted); }
.ads-disclaimer strong { color: var(--ink); }
.ads-disclaimer a { color: var(--indigo); font-weight: 600; }

.legal-strip { background: var(--white); border-top: 1px solid var(--border); text-align: center; padding: 14px 4vw; font-size: 0.82rem; color: var(--muted); }
.site-footer { background: var(--ink); color: #cbd5e1; padding: 52px 4vw 24px; }
.footer-grid { width: min(1180px, 92vw); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
.footer-grid h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: #a5b4fc; margin-bottom: 14px; }
.footer-grid a { display: block; color: #94a3b8; font-size: 0.86rem; margin-bottom: 8px; }
.footer-grid a:hover { color: #fff; }
.footer-base { width: min(1180px, 92vw); margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; text-align: center; font-size: 0.8rem; color: #64748b; }
.footer-legal { margin-top: 8px; font-size: 0.74rem; }

.fab-wa { position: fixed; bottom: 26px; right: 26px; z-index: 150; filter: drop-shadow(0 8px 20px rgba(37,211,102,0.4)); transition: transform 0.2s; }
.fab-wa:hover { transform: scale(1.08); }
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 300; background: var(--ink); border-top: 1px solid rgba(255,255,255,0.1); padding: 18px 4vw; transform: translateY(110%); transition: transform 0.4s; color: #e2e8f0; }
.cookie-banner.show { transform: translateY(0); }
.cookie-inner { width: min(1180px, 92vw); margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; }
.cookie-inner p { font-size: 0.86rem; max-width: 640px; }
.cookie-inner a { color: #5eead4; }
.cookie-btns { display: flex; gap: 10px; flex-wrap: wrap; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s, transform 0.65s; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-floats { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .about-split { grid-template-columns: 1fr; }
  .gallery-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-mosaic figure, .gallery-mosaic figure:nth-child(n) { grid-column: span 1; grid-row: span 1; min-height: 140px; }
  .plan-grid { grid-template-columns: 1fr; }
  .pipeline { grid-template-columns: 1fr 1fr; }
  .pipe-step:not(:last-child)::after { display: none; }
  .perk-grid { grid-template-columns: 1fr 1fr; }
  .contact-split, .cat-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-panel { position: fixed; top: 0; right: 0; bottom: 0; width: min(280px, 88vw); background: var(--arena); border-left: 1px solid var(--border); flex-direction: column; padding: 80px 28px 28px; transform: translateX(100%); transition: transform 0.35s; margin-left: 0; box-shadow: var(--shadow); }
  .nav-panel.open { transform: translateX(0); }
  .nav-btn { display: flex; align-items: center; justify-content: center; margin-left: auto; }
  .header-cta { display: none; }
  .pipeline, .perk-grid { grid-template-columns: 1fr; }
  .metric-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
