        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            /* ─── DARK SYSTEM ───────────────────────────────────────────────
               --navy / --navy-mid / --navy-card / --navy-deep now form the
               near-black "surface" family (kept as backgrounds only).
               --navy itself doubles as the primary heading/ink color, since
               the overwhelming majority of its usages across this file are
               `color:` (text) rather than `background:`. The handful of
               spots that used bare var(--navy) as a BACKGROUND have been
               repointed to --navy-card / --navy-deep so they stay dark.
            ─────────────────────────────────────────────────────────────── */
            --navy: #F5F5F5;
            --navy-mid: #1c1c1f;
            --navy-card: #17171a;
            --navy-deep: #050505;
            --accent: #e07b2a;
            --accent-dark: #c86d20;
            --accent-light: #ff9d52;
            --accent-glow: rgba(224, 123, 42, 0.25);
            --bg: #0a0a0a;
            --bg-elevated: #111113;
            --bg-elevated-2: #161618;
            --white: #ffffff;
            --text: #F5F5F5;
            --muted: #B0B0B0;
            --border: rgba(255, 255, 255, 0.08);
            --surface: rgba(255, 255, 255, 0.03);
            --surface-hover: rgba(255, 255, 255, 0.06);
            --radius: 16px;
            --ease: cubic-bezier(0.16, 1, 0.3, 1);
            --shadow-soft: 0 1px 2px rgba(0, 0, 0, 0.5), 0 8px 24px rgba(0, 0, 0, 0.45);
            --shadow-lift: 0 10px 34px rgba(0, 0, 0, 0.55), 0 30px 80px rgba(0, 0, 0, 0.6);
            --glow-accent: 0 0 70px rgba(224, 123, 42, 0.16);
        }

        html {
            scroll-behavior: smooth;
            font-size: 125%;
        }

        body {
            font-family: 'Inter', sans-serif;
            /* Single continuous near-black gradient behind the whole page so
               sections blend into one another with no hard seams — sections
               below turn their own background transparent to let this show
               through, per the "no hard borders between sections" brief. */
            background-color: #000000;
            background-image:
                radial-gradient(ellipse 1100px 700px at 18% 0%, rgba(224, 123, 42, 0.05), transparent 60%),
                linear-gradient(180deg, #000000 0%, #0a0a0a 22%, #111113 48%, #0a0a0a 74%, #000000 100%);
            background-attachment: fixed, fixed;
            background-size: 100% 100%, 100% 100%;
            background-repeat: no-repeat, no-repeat;
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        ::selection {
            background: var(--accent);
            color: var(--white);
        }

        ::-webkit-scrollbar {
            width: 11px;
        }

        ::-webkit-scrollbar-track {
            background: var(--bg);
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(var(--navy-mid), var(--navy-deep));
            border-radius: 100px;
            border: 2px solid var(--bg);
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--accent);
        }

        /* ─── SCROLL REVEAL (cosmetic, driven by IntersectionObserver below) ─── */
        .reveal {
            opacity: 0;
            transform: translateY(26px);
            transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
            will-change: opacity, transform;
        }

        .reveal.is-visible {
            opacity: 1;
            transform: none;
        }

        .reveal-stagger>* {
            opacity: 0;
        }

        .reveal-stagger.is-visible>* {
            animation: staggerIn 0.7s var(--ease) both;
        }

        .reveal-stagger.is-visible>*:nth-child(1) {
            animation-delay: 0.03s;
        }

        .reveal-stagger.is-visible>*:nth-child(2) {
            animation-delay: 0.11s;
        }

        .reveal-stagger.is-visible>*:nth-child(3) {
            animation-delay: 0.19s;
        }

        .reveal-stagger.is-visible>*:nth-child(4) {
            animation-delay: 0.27s;
        }

        .reveal-stagger.is-visible>*:nth-child(5) {
            animation-delay: 0.35s;
        }

        .reveal-stagger.is-visible>*:nth-child(6) {
            animation-delay: 0.43s;
        }

        @keyframes staggerIn {
            from {
                opacity: 0;
                transform: translateY(22px) scale(0.98);
            }

            to {
                opacity: 1;
                transform: none;
            }
        }

        @media (prefers-reduced-motion: reduce) {

            .reveal,
            .reveal-stagger>*,
            .hero-tag,
            .hero h1,
            .hero-sub,
            .hero-badges,
            .hero-actions,
            .hero-scroll-cue {
                opacity: 1 !important;
                transform: none !important;
                animation: none !important;
                transition: none !important;
            }
        }

        /* ─── NAVBAR ─── */
        nav {
            position: sticky;
            top: 0;
            z-index: 200;
            background: rgba(8, 8, 8, 0.72);
            backdrop-filter: blur(14px) saturate(160%);
            -webkit-backdrop-filter: blur(14px) saturate(160%);
            border-bottom: 1px solid var(--border);
            padding: 0 3rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 70px;
            transition: box-shadow 0.35s var(--ease), background 0.35s var(--ease), height 0.35s var(--ease);
        }

        nav.is-scrolled {
            background: rgba(6, 6, 6, 0.88);
            box-shadow: 0 12px 34px rgba(0, 0, 0, 0.45);
            height: 62px;
        }

        .nav-brand {
            display: flex;
            align-items: center;
            gap: 0.7rem;
            text-decoration: none;
        }

        .nav-logo {
            height: 42px;
            display: block;
            transition: transform 0.35s var(--ease);
        }

        .nav-brand:hover .nav-logo {
            transform: rotate(-4deg) scale(1.05);
        }

        .nav-wordmark {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--navy);
            letter-spacing: -0.01em;
        }

        .nav-wordmark span {
            color: var(--accent);
        }

        .nav-links {
            list-style: none;
            display: flex;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-links a {
            position: relative;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--muted);
            transition: color 0.2s;
            letter-spacing: 0.01em;
        }

        .nav-links a:not(.nav-cta)::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -6px;
            width: 100%;
            height: 2px;
            background: var(--accent);
            border-radius: 2px;
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.3s var(--ease);
        }

        .nav-links a:not(.nav-cta):hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        .nav-links a:hover {
            color: var(--navy);
        }

        .nav-cta {
            position: relative;
            overflow: hidden;
            background: var(--accent) !important;
            color: var(--white) !important;
            padding: 0.5rem 1.4rem;
            border-radius: 8px;
            font-size: 0.88rem !important;
            font-weight: 600 !important;
            transition: background 0.25s, transform 0.25s var(--ease), box-shadow 0.25s;
            box-shadow: 0 4px 14px rgba(224, 123, 42, 0.28);
        }

        .nav-cta:hover {
            background: var(--accent-dark) !important;
            color: var(--white) !important;
            transform: translateY(-2px);
            box-shadow: 0 8px 22px rgba(224, 123, 42, 0.4);
        }

        /* ─── NAV MOBILE TOGGLE ─── */
        .nav-toggle {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 4px;
            width: 34px;
            height: 34px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0;
        }

        .nav-toggle span {
            display: block;
            width: 100%;
            height: 2px;
            background: var(--navy);
            border-radius: 2px;
            transition: transform 0.25s ease, opacity 0.25s ease;
        }

        .nav-toggle.is-open span:nth-child(1) {
            transform: translateY(6px) rotate(45deg);
        }

        .nav-toggle.is-open span:nth-child(2) {
            opacity: 0;
        }

        .nav-toggle.is-open span:nth-child(3) {
            transform: translateY(-6px) rotate(-45deg);
        }

        /* ─── CART ─── */
        .cart-btn {
            position: relative;
            background: none;
            border: none;
            cursor: pointer;
            color: var(--navy);
            padding: 0.4rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 100px;
            transition: color 0.2s, background 0.2s, transform 0.2s var(--ease);
        }

        .cart-btn svg {
            width: 22px;
            height: 22px;
            transition: transform 0.3s var(--ease);
        }

        .cart-btn:hover {
            color: var(--accent);
            background: rgba(224, 123, 42, 0.08);
        }

        .cart-btn:hover svg {
            transform: scale(1.08) rotate(-4deg);
        }

        .cart-badge {
            position: absolute;
            top: -2px;
            right: -4px;
            background: var(--accent);
            color: var(--white);
            font-size: 0.65rem;
            font-weight: 700;
            line-height: 1;
            border-radius: 100px;
            padding: 3px 5px;
            min-width: 16px;
            text-align: center;
            box-shadow: 0 0 0 2px #0a0a0a;
            transition: transform 0.25s var(--ease);
        }

        .cart-badge.is-bump {
            animation: badgeBump 0.4s var(--ease);
        }

        @keyframes badgeBump {
            0% {
                transform: scale(1);
            }

            40% {
                transform: scale(1.45);
            }

            100% {
                transform: scale(1);
            }
        }

        .cart-badge.is-empty {
            display: none;
        }

        .cart-overlay {
            position: fixed;
            inset: 0;
            background: rgba(4, 11, 24, 0.55);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
            z-index: 300;
        }

        .cart-overlay.is-open {
            opacity: 1;
            pointer-events: auto;
        }

        .cart-drawer {
            position: fixed;
            top: 0;
            right: 0;
            bottom: 0;
            width: 460px;
            max-width: 94vw;
            background: var(--navy-card);
            z-index: 301;
            box-shadow: -20px 0 60px rgba(0, 0, 0, 0.55);
            display: flex;
            flex-direction: column;
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
            transform: translateX(100%);
            transition: transform 0.4s var(--ease);
        }

        .cart-drawer.is-open {
            transform: translateX(0);
        }

        .cart-drawer-head {
            position: sticky;
            top: 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.25rem 1.5rem;
            background: var(--navy-card);
            border-bottom: 1px solid var(--border);
            z-index: 2;
        }

        .cart-drawer-head h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.1rem;
            color: var(--navy);
        }

        .cart-close {
            background: none;
            border: none;
            font-size: 1.6rem;
            line-height: 1;
            color: var(--muted);
            cursor: pointer;
        }

        .cart-close:hover {
            color: var(--navy);
        }

        .cart-items {
            flex: none;
            padding: 1rem 1.5rem;
        }

        .cart-empty {
            color: var(--muted);
            font-size: 0.9rem;
            text-align: center;
            margin-top: 2rem;
        }

        .cart-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.75rem;
            padding: 0.9rem 0;
            border-bottom: 1px solid var(--border);
        }

        .cart-item-name {
            font-size: 0.92rem;
            font-weight: 600;
            color: var(--navy);
            margin-bottom: 0.2rem;
        }

        .cart-item-qty {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .cart-qty-btn {
            width: 24px;
            height: 24px;
            border-radius: 6px;
            border: 1px solid var(--border);
            background: var(--surface-hover);
            cursor: pointer;
            font-weight: 700;
            color: var(--navy);
            line-height: 1;
            transition: border-color 0.2s, color 0.2s, transform 0.15s var(--ease), background 0.2s;
        }

        .cart-qty-btn:hover {
            border-color: var(--accent);
            color: var(--accent);
            background: rgba(224, 123, 42, 0.08);
            transform: translateY(-1px);
        }

        .cart-item {
            animation: staggerIn 0.4s var(--ease) both;
        }

        .cart-item-remove {
            background: none;
            border: none;
            color: var(--muted);
            font-size: 0.78rem;
            text-decoration: underline;
            cursor: pointer;
            margin-top: 0.3rem;
        }

        .cart-item-remove:hover {
            color: var(--accent);
        }

        .cart-summary {
            padding: 1.25rem 1.5rem;
            border-top: 1px solid var(--border);
        }

        .cart-subtotal-row {
            display: flex;
            justify-content: space-between;
            color: var(--muted);
            font-size: 0.85rem;
            margin-bottom: 0.35rem;
        }

        .cart-total-row {
            display: flex;
            justify-content: space-between;
            font-weight: 700;
            color: var(--navy);
            font-size: 1.05rem;
            margin: 0.5rem 0 1rem;
            padding-top: 0.5rem;
            border-top: 1px solid var(--border);
        }

        .cart-checkout {
            width: 100%;
            justify-content: center;
        }

        .cart-checkout:disabled {
            opacity: 0.45;
            cursor: not-allowed;
            transform: none !important;
        }

        .cart-note {
            font-size: 0.76rem;
            color: var(--muted);
            margin-top: 0.75rem;
            line-height: 1.5;
            text-align: center;
        }

        .cart-contact-heading {
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: var(--navy);
            margin: 0.9rem 0 0.25rem;
        }

        .cart-contact-note {
            font-size: 0.76rem;
            color: var(--muted);
            margin-bottom: 0.6rem;
            line-height: 1.5;
        }

        .cart-contact {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            margin-bottom: 0.9rem;
        }

        .cart-contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.5rem;
            margin-bottom: 0.9rem;
        }

        .cart-contact input,
        .cart-contact-grid input {
            padding: 0.65rem 0.8rem;
            border: 1px solid var(--border);
            border-radius: 8px;
            font-size: 0.88rem;
            font-family: 'Inter', sans-serif;
            color: var(--text);
            background: rgba(255, 255, 255, 0.05);
        }

        .cart-contact input::placeholder,
        .cart-contact-grid input::placeholder {
            color: rgba(255, 255, 255, 0.35);
        }

        .cart-contact input:focus,
        .cart-contact-grid input:focus {
            outline: none;
            border-color: var(--accent);
        }

        @media (max-width: 420px) {
            .cart-contact-grid {
                grid-template-columns: 1fr;
            }
        }

        .cart-section-block {
            padding: 0.75rem 0.85rem;
            border-radius: 10px;
            margin-bottom: 0.9rem;
        }

        .cart-section-block.is-license {
            background: rgba(224, 123, 42, 0.06);
            border: 1px solid rgba(224, 123, 42, 0.18);
        }

        .cart-section-block.is-billing {
            background: var(--surface);
            border: 1px solid var(--border);
        }

        .cart-section-block .cart-contact-heading,
        .cart-section-block .cart-contact,
        .cart-section-block .cart-contact-grid {
            margin-bottom: 0;
        }

        .cart-section-block .cart-contact-heading {
            margin-top: 0;
        }

        .cart-section-block .cart-contact,
        .cart-section-block .cart-contact-grid {
            margin-top: 0.5rem;
        }

        .cart-pay-hint {
            font-size: 0.78rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--navy);
            margin: 1rem 0 0.4rem;
        }

        .cart-pay-options {
            display: flex;
            flex-direction: column;
            gap: 0.35rem;
            font-size: 0.78rem;
            color: var(--muted);
            margin-bottom: 0.9rem;
            line-height: 1.5;
        }

        .cart-pay-options strong {
            color: var(--navy);
        }

        .cart-terms {
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            font-size: 0.8rem;
            color: var(--muted);
            margin-bottom: 0.9rem;
            cursor: pointer;
        }

        .cart-terms input {
            margin-top: 0.2rem;
        }

        .cart-terms a {
            color: var(--accent);
        }

        /* ─── HERO ─── */
        .hero {
            background: #040b18;
            color: var(--white);
            min-height: 100vh;
            text-align: center;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        #heroCanvas {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom,
                    rgba(4, 11, 24, 0.62) 0%,
                    rgba(4, 11, 24, 0.18) 42%,
                    rgba(4, 11, 24, 0.55) 78%,
                    rgba(4, 11, 24, 0.90) 100%);
            z-index: 1;
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            max-width: 820px;
            margin: 0 auto;
            z-index: 2;
            padding: 2rem;
        }

        .hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--accent);
            border: 1px solid rgba(224, 123, 42, 0.5);
            background: rgba(224, 123, 42, 0.08);
            border-radius: 100px;
            padding: 0.35rem 1.1rem 0.35rem 0.8rem;
            margin-bottom: 2.5rem;
            opacity: 0;
            animation: heroFadeUp 0.9s var(--ease) 0.15s forwards;
        }

        .hero-tag::before {
            content: '';
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--accent);
            box-shadow: 0 0 0 0 rgba(224, 123, 42, 0.6);
            animation: tagPing 2s ease-out infinite;
            flex-shrink: 0;
        }

        @keyframes tagPing {
            0% {
                box-shadow: 0 0 0 0 rgba(224, 123, 42, 0.55);
            }

            70% {
                box-shadow: 0 0 0 7px rgba(224, 123, 42, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(224, 123, 42, 0);
            }
        }

        @keyframes heroFadeUp {
            from {
                opacity: 0;
                transform: translateY(18px);
            }

            to {
                opacity: 1;
                transform: none;
            }
        }

        .hero h1 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(2.6rem, 5.5vw, 4.2rem);
            font-weight: 700;
            line-height: 1.08;
            letter-spacing: -0.03em;
            margin-bottom: 1.25rem;
            opacity: 0;
            animation: heroFadeUp 0.9s var(--ease) 0.3s forwards;
        }

        .hero h1 em {
            font-style: normal;
            background: linear-gradient(100deg, var(--accent-light) 0%, var(--accent) 35%, #ffcf9e 55%, var(--accent) 75%, var(--accent-light) 100%);
            background-size: 260% 100%;
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            animation: shimmerText 6s linear infinite;
        }

        @keyframes shimmerText {
            to {
                background-position: -260% 0;
            }
        }

        .hero-sub {
            font-size: 1.1rem;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.68);
            max-width: 540px;
            margin: 0 auto 2.25rem;
            line-height: 1.75;
            opacity: 0;
            animation: heroFadeUp 0.9s var(--ease) 0.45s forwards;
        }

        .hero-badges {
            display: flex;
            gap: 0.6rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 3rem;
            opacity: 0;
            animation: heroFadeUp 0.9s var(--ease) 0.6s forwards;
        }

        .hero-badge {
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 0.02em;
            color: rgba(255, 255, 255, 0.65);
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 100px;
            padding: 0.32rem 0.9rem;
            transition: transform 0.25s var(--ease), border-color 0.25s, color 0.25s, background 0.25s;
        }

        .hero-badge:hover {
            transform: translateY(-3px);
            border-color: rgba(224, 123, 42, 0.55);
            color: var(--white);
            background: rgba(224, 123, 42, 0.16);
        }

        .hero-actions {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            opacity: 0;
            animation: heroFadeUp 0.9s var(--ease) 0.75s forwards;
        }

        .hero-scroll-cue {
            position: absolute;
            left: 50%;
            bottom: 28px;
            transform: translateX(-50%);
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            opacity: 0;
            animation: heroFadeUp 0.9s var(--ease) 1.05s forwards;
            pointer-events: none;
        }

        .hero-scroll-cue span {
            font-size: 0.65rem;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.45);
        }

        .hero-scroll-cue .cue-line {
            width: 1px;
            height: 34px;
            background: linear-gradient(rgba(255, 255, 255, 0.55), transparent);
            position: relative;
            overflow: hidden;
        }

        .hero-scroll-cue .cue-line::after {
            content: '';
            position: absolute;
            top: -34px;
            left: 0;
            width: 100%;
            height: 34px;
            background: linear-gradient(var(--accent), transparent);
            animation: cueDrop 1.8s ease-in-out infinite;
        }

        @keyframes cueDrop {
            to {
                top: 34px;
            }
        }

        .btn {
            position: relative;
            overflow: hidden;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.85rem 2rem;
            border-radius: 10px;
            font-size: 0.95rem;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            border: none;
            transition: transform 0.25s var(--ease), background 0.25s, box-shadow 0.25s var(--ease);
            isolation: isolate;
        }

        .btn:active {
            transform: translateY(0) scale(0.97);
        }

        .btn::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: -1;
            background: linear-gradient(115deg, transparent 25%, rgba(255, 255, 255, 0.35) 50%, transparent 75%);
            transform: translateX(-130%);
            transition: transform 0.65s var(--ease);
        }

        .btn:hover::before {
            transform: translateX(130%);
        }

        .btn:hover {
            transform: translateY(-3px);
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--accent-light), var(--accent) 60%);
            color: var(--white);
            box-shadow: 0 6px 20px rgba(224, 123, 42, 0.32);
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, var(--accent), var(--accent-dark) 100%);
            box-shadow: 0 14px 32px rgba(224, 123, 42, 0.42);
        }

        .btn-outline {
            background: rgba(255, 255, 255, 0.02);
            color: var(--white);
            border: 1px solid rgba(255, 255, 255, 0.28);
            backdrop-filter: blur(6px);
        }

        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.5);
            box-shadow: 0 10px 26px rgba(4, 11, 24, 0.35);
        }

        /* Cart drawer & plan cards are now dark surfaces themselves, so their
           outline buttons use the same translucent-dark treatment as the
           default .btn-outline (previously they needed dark text for a
           white background — no longer the case). */
        .cart-drawer .btn-outline,
        .plan-card .btn-outline {
            color: var(--white);
            border: 1px solid rgba(255, 255, 255, 0.24);
            background: rgba(255, 255, 255, 0.03);
        }

        .cart-drawer .btn-outline:hover,
        .plan-card .btn-outline:hover {
            background: rgba(255, 255, 255, 0.09);
            border-color: var(--accent);
            color: var(--accent-light);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
        }

        /* ─── VIDEO SHOWCASE ─── */
        .video-showcase {
            background: var(--navy-card);
            padding: 3rem 2rem;
            display: flex;
            justify-content: center;
        }

        .video-showcase video {
            width: 75%;
            max-width: 1100px;
            border-radius: var(--radius);
            display: block;
            box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
        }

        @media (max-width: 900px) {
            .video-showcase video {
                width: 100%;
            }
        }

        /* ─── STAT BAR ─── */
        .stat-bar {
            position: relative;
            background: linear-gradient(120deg, var(--navy-deep) 0%, var(--navy-mid) 55%, var(--navy-card) 100%);
            background-size: 200% 200%;
            animation: meshShift 16s ease-in-out infinite;
            display: flex;
            justify-content: center;
            overflow: hidden;
        }

        @keyframes meshShift {

            0%,
            100% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }
        }

        .stat-item {
            position: relative;
            flex: 1;
            max-width: 220px;
            text-align: center;
            padding: 1.75rem 1rem;
            border-right: 1px solid rgba(255, 255, 255, 0.07);
            color: var(--white);
            transition: background 0.3s;
        }

        .stat-item:hover {
            background: rgba(224, 123, 42, 0.06);
        }

        .stat-item:last-child {
            border-right: none;
        }

        .stat-num {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2.1rem;
            font-weight: 800;
            color: var(--accent);
            line-height: 1;
            margin-bottom: 0.35rem;
            text-shadow: 0 0 24px rgba(224, 123, 42, 0.35);
        }

        .stat-label {
            font-size: 0.72rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: rgba(255, 255, 255, 0.5);
            font-weight: 500;
        }

        /* ─── SECTION SHARED ─── */
        section {
            padding: 5.5rem 2rem;
        }

        .section-header {
            text-align: center;
            max-width: 640px;
            margin: 0 auto 4rem;
        }

        .section-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 0.55rem;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.16em;
            color: var(--accent);
            margin-bottom: 0.9rem;
        }

        .section-eyebrow::before {
            content: '';
            width: 22px;
            height: 2px;
            background: var(--accent);
            border-radius: 2px;
        }

        .section-header h2 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(1.9rem, 3.4vw, 2.7rem);
            font-weight: 700;
            color: var(--navy);
            letter-spacing: -0.03em;
            margin-bottom: 1.1rem;
        }

        .section-header p {
            color: var(--muted);
            font-size: 1rem;
            line-height: 1.75;
        }

        /* .section-header originally only styled an h2 (used on the
           homepage's in-page sections). The 8 interior content pages open
           with an <h1> inside .section-header instead (it's the page's
           real, only h1) — without this rule that h1 fell back to
           unstyled browser defaults, which read as broken/inconsistent
           next to every other heading on the site. Sized a step above the
           h2 rule so it still reads as the top-level heading of the page. */
        .section-header h1 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(2.1rem, 4.2vw, 3.1rem);
            font-weight: 700;
            color: var(--navy);
            letter-spacing: -0.03em;
            line-height: 1.15;
            margin-bottom: 1.1rem;
        }

        /* ─── VALUE PROP ─── */
        .value-section {
            background: transparent;
        }

        .value-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
            gap: 1.75rem;
            max-width: 1100px;
            margin: 0 auto;
        }

        .value-card {
            position: relative;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 2rem 1.6rem;
            transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s, background 0.4s;
            overflow: hidden;
        }

        .value-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 85% -10%, rgba(224, 123, 42, 0.12), transparent 55%);
            opacity: 0;
            transition: opacity 0.4s;
            pointer-events: none;
        }

        .value-card:hover {
            transform: translateY(-8px);
            background: var(--surface-hover);
            box-shadow: var(--shadow-lift), var(--glow-accent);
            border-color: rgba(224, 123, 42, 0.4);
        }

        .value-card:hover::before {
            opacity: 1;
        }

        .value-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            background: rgba(224, 123, 42, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.4rem;
            transition: transform 0.45s var(--ease), background 0.45s;
        }

        .value-card:hover .value-icon {
            transform: scale(1.1) rotate(-6deg);
            background: rgba(224, 123, 42, 0.18);
        }

        .value-icon svg {
            width: 26px;
            height: 26px;
        }

        .value-card h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 0.6rem;
        }

        .value-card p {
            color: var(--muted);
            font-size: 0.9rem;
            line-height: 1.7;
        }

        /* ─── FUTURISTIC SHOWCASE ─── */
        .showcase-section {
            position: relative;
            background:
                radial-gradient(ellipse 900px 500px at 15% 0%, rgba(224, 123, 42, 0.14), transparent 60%),
                radial-gradient(ellipse 900px 500px at 85% 100%, rgba(123, 174, 224, 0.10), transparent 60%),
                var(--navy-card);
            padding: 5.5rem 2rem;
            overflow: hidden;
        }

        .showcase-section::before {
            content: '';
            position: absolute;
            inset: 0;
            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: 42px 42px;
            mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black, transparent 75%);
            pointer-events: none;
        }

        /* ─── NEURAL NETWORK BACKGROUND — decorative layer for the
           "Tecnología IA" section. Thin nodes and connecting lines drawn on
           a canvas element, vanilla JS only (see script near end of the
           page body). Sits between the dot-grid (::before) and the section
           content
           (z-index:1), reacts subtly to mouse/scroll, and is simplified on
           small screens / disabled under prefers-reduced-motion. ─── */
        .neural-canvas {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
            opacity: 0.8;
        }

        @media (max-width: 768px) {
            .neural-canvas {
                opacity: 0.5;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .neural-canvas {
                display: none;
            }
        }

        .showcase-section .section-eyebrow {
            color: var(--accent);
        }

        .showcase-section .section-header h2 {
            color: var(--white);
        }

        .showcase-section .section-header p {
            color: rgba(255, 255, 255, 0.55);
        }

        .showcase-section .section-header,
        .showcase-section .showcase-grid,
        .showcase-section .section-banner {
            position: relative;
            z-index: 1;
        }

        .showcase-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            max-width: 1100px;
            margin: 0 auto;
        }

        .showcase-panel {
            border-radius: 14px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.09);
            background: rgba(255, 255, 255, 0.03);
            position: relative;
            transition: transform 0.45s var(--ease), border-color 0.45s, box-shadow 0.45s var(--ease);
        }

        .showcase-panel:hover {
            transform: translateY(-8px);
            border-color: rgba(224, 123, 42, 0.4);
            box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(224, 123, 42, 0.15);
        }

        .panel-screen {
            height: 260px;
            position: relative;
            overflow: hidden;
            background: #0a0a0d;
        }

        /* Vertical AI scan sweep across each panel */
        .panel-screen::before {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            height: 40%;
            top: -40%;
            background: linear-gradient(to bottom, transparent, rgba(224, 123, 42, 0.14), transparent);
            z-index: 6;
            pointer-events: none;
            animation: panelScan 5s ease-in-out infinite;
            animation-delay: calc(var(--panel-i, 0) * 0.7s);
        }

        @keyframes panelScan {
            0% {
                top: -40%;
            }

            60%,
            100% {
                top: 100%;
            }
        }

        /* Scan-line overlay */
        .panel-screen::after {
            content: '';
            position: absolute;
            inset: 0;
            background: repeating-linear-gradient(0deg,
                    transparent,
                    transparent 2px,
                    rgba(0, 0, 0, 0.08) 2px,
                    rgba(0, 0, 0, 0.08) 4px);
            pointer-events: none;
            z-index: 5;
        }

        /* Top bar of panel */
        .panel-topbar {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            z-index: 10;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 8px 14px;
            background: rgba(8, 8, 10, 0.8);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .panel-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
        }

        .panel-dot.red {
            background: #e25454;
        }

        .panel-dot.amber {
            background: #e0a02a;
        }

        .panel-dot.green {
            background: #2ae054;
            box-shadow: 0 0 6px #2ae054;
            animation: pulse 2.4s ease-in-out infinite;
        }

        .panel-label {
            margin-left: auto;
            font-size: 0.65rem;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.4);
        }

        .panel-svg-wrap {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .panel-svg-wrap svg {
            width: 100%;
            height: 100%;
        }

        .panel-footer {
            padding: 1.25rem 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }

        .panel-footer h4 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 0.3rem;
        }

        .panel-footer p {
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.45);
            line-height: 1.6;
        }

        /* ─── DYNAMIC WORKFLOW ─── */
        .flow-section {
            background: transparent;
        }

        .flow-wrap {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }

        .flow-svg {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            overflow: visible;
            pointer-events: none;
            z-index: 1;
        }

        .flow-grid {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.75rem 1.5rem;
        }

        .flow-node:nth-child(3n+2) {
            margin-top: 2.75rem;
        }

        .flow-node {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 1.85rem 1.4rem;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
            opacity: 0;
            transform: translateY(28px) scale(0.96);
            transition: opacity 0.55s ease, transform 0.55s ease, box-shadow 0.35s var(--ease), border-color 0.35s;
        }

        .flow-node.in-view {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .flow-node.in-view:hover {
            background: var(--surface-hover);
            box-shadow: var(--shadow-lift), var(--glow-accent);
            border-color: rgba(224, 123, 42, 0.35);
            transform: translateY(-5px) scale(1);
        }

        .flow-num {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--navy-mid), var(--navy-deep));
            color: var(--white);
            font-size: 0.9rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 0.9rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.45);
        }

        .flow-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: rgba(224, 123, 42, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 0.9rem;
            transition: transform 0.4s var(--ease), background 0.4s;
        }

        .flow-node:hover .flow-icon {
            transform: scale(1.08) rotate(4deg);
            background: rgba(224, 123, 42, 0.18);
        }

        .flow-icon svg {
            width: 22px;
            height: 22px;
        }

        .flow-node h4 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 0.5rem;
        }

        .flow-node p {
            font-size: 0.85rem;
            color: var(--muted);
            line-height: 1.6;
        }

        @media (max-width: 820px) {
            .flow-grid {
                grid-template-columns: 1fr;
                gap: 1.25rem;
            }

            .flow-node:nth-child(3n+2) {
                margin-top: 0;
            }

            .flow-svg {
                display: none;
            }
        }

        /* ─── SECTION BANNER IMAGES ─── */
        .section-banner {
            max-width: 1100px;
            margin: 3.5rem auto 0;
            border-radius: var(--radius);
            overflow: hidden;
            border: 1px solid var(--border);
            position: relative;
            box-shadow: var(--shadow-soft);
            transition: box-shadow 0.4s var(--ease);
        }

        .section-banner:hover {
            box-shadow: var(--shadow-lift);
        }

        .section-banner img {
            width: 100%;
            display: block;
            transition: transform 0.7s var(--ease);
        }

        .section-banner:hover img {
            transform: scale(1.025);
        }

        .section-banner figcaption {
            padding: 0.9rem 1.4rem;
            font-size: 0.85rem;
            color: var(--muted);
            background: var(--surface);
            border-top: 1px solid var(--border);
        }

        .section-banner-dark {
            border-color: rgba(255, 255, 255, 0.1);
        }

        .section-banner-dark figcaption {
            background: var(--navy-card);
            color: rgba(255, 255, 255, 0.6);
            border-top-color: rgba(255, 255, 255, 0.08);
        }

        .panel-image-wrap {
            position: absolute;
            inset: 0;
        }

        .panel-image-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* ─── SPECS ─── */
        .specs-section {
            background: transparent;
        }

        .specs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.25rem;
            max-width: 980px;
            margin: 0 auto 2.5rem;
        }

        .spec-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 1.5rem 1.6rem;
            transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s, border-color 0.35s;
        }

        .spec-card:hover {
            transform: translateY(-4px);
            background: var(--surface-hover);
            box-shadow: var(--shadow-lift), var(--glow-accent);
            border-color: rgba(224, 123, 42, 0.3);
        }

        .spec-card h4 {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 0.98rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 0.5rem;
        }

        .spec-card h4::before {
            content: '';
            width: 8px;
            height: 8px;
            border-radius: 2px;
            background: var(--accent);
            flex-shrink: 0;
        }

        .spec-card p {
            font-size: 0.95rem;
            color: var(--muted);
            line-height: 1.65;
        }

        .specs-note {
            max-width: 980px;
            margin: 0 auto;
            padding: 1.25rem 1.5rem;
            background: var(--surface);
            border-left: 3px solid var(--accent);
            border-radius: 0 10px 10px 0;
            font-size: 0.93rem;
            color: var(--navy);
            line-height: 1.6;
        }

        .specs-note strong {
            font-weight: 700;
        }

        .req-table-wrap {
            max-width: 980px;
            margin: 0 auto 2.5rem;
            overflow-x: auto;
        }

        .req-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 1rem;
            text-align: center;
        }

        .req-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.88rem;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 12px;
            overflow: hidden;
        }

        .req-table th,
        .req-table td {
            padding: 0.75rem 1rem;
            text-align: left;
            border-bottom: 1px solid var(--border);
        }

        .req-table th {
            background: var(--navy-card);
            color: var(--navy);
            font-weight: 700;
        }

        .req-table tbody tr {
            transition: background 0.2s;
        }

        .req-table tbody tr:hover {
            background: rgba(224, 123, 42, 0.05);
        }

        .req-table td:first-child {
            font-weight: 700;
            color: var(--navy);
        }

        .req-table tr:last-child td {
            border-bottom: none;
        }

        /* ─── PLANS ─── */
        .plans-section {
            background: transparent;
        }

        .plans-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.75rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .plan-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 2.25rem 1.75rem;
            position: relative;
            text-align: center;
            transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s, background 0.4s;
        }

        .plan-card:hover {
            transform: translateY(-6px);
            background: var(--surface-hover);
            box-shadow: var(--shadow-lift), var(--glow-accent);
            border-color: rgba(224, 123, 42, 0.35);
        }

        .plan-featured {
            border-color: var(--accent);
            box-shadow: 0 20px 50px rgba(224, 123, 42, 0.16);
            animation: featuredGlow 3.2s ease-in-out infinite;
        }

        @keyframes featuredGlow {

            0%,
            100% {
                box-shadow: 0 20px 50px rgba(224, 123, 42, 0.16);
            }

            50% {
                box-shadow: 0 22px 58px rgba(224, 123, 42, 0.28);
            }
        }

        .plan-featured:hover {
            transform: translateY(-6px) scale(1.015);
        }

        .plan-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(120deg, var(--accent-light), var(--accent));
            color: var(--white);
            font-size: 0.68rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            border-radius: 100px;
            padding: 0.3rem 0.9rem;
            box-shadow: 0 4px 12px rgba(224, 123, 42, 0.4);
        }

        .plan-name {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 0.5rem;
        }

        .plan-duration {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 0.35rem;
        }

        .plan-price {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--accent);
            margin-bottom: 0.3rem;
        }

        .plan-price-note {
            font-size: 0.72rem;
            font-weight: 500;
            color: var(--muted);
        }

        .plan-perday {
            font-size: 0.75rem;
            color: var(--muted);
            margin-bottom: 1.3rem;
        }

        .plan-badge-alt {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--navy-card);
            color: var(--white);
            font-size: 0.62rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            border-radius: 100px;
            padding: 0.3rem 0.8rem;
            white-space: nowrap;
        }

        .feature-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .feature-list li {
            font-size: 0.88rem;
            color: var(--text);
            display: flex;
            align-items: flex-start;
            gap: 0.65rem;
            line-height: 1.5;
        }

        .feature-list li::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--accent);
            flex-shrink: 0;
            margin-top: 0.45em;
        }

        .plan-card .feature-list {
            text-align: left;
            margin-bottom: 1.6rem;
        }

        .plan-add,
        .plan-download {
            width: 100%;
            justify-content: center;
        }

        .plans-grid-6 {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.85rem;
            max-width: 1200px;
        }

        .plans-grid-6 .plan-card {
            flex: 0 1 135px;
            padding: 1.25rem 0.8rem;
        }

        .plans-grid-6 .plan-name {
            font-size: 0.92rem;
        }

        .plans-grid-6 .plan-duration {
            font-size: 1.15rem;
        }

        .plans-grid-6 .plan-price {
            font-size: 0.88rem;
        }

        .plans-grid-6 .plan-perday {
            font-size: 0.68rem;
            margin-bottom: 0.7rem;
        }

        .plans-grid-6 .plan-price-note {
            font-size: 0.66rem;
        }

        .plans-iva-box {
            max-width: 640px;
            margin: 0 auto 2.5rem;
            padding: 0.9rem 1.4rem;
            background: var(--surface);
            border: 1px solid var(--border);
            border-left: 3px solid var(--accent);
            border-radius: 0 10px 10px 0;
            font-size: 0.88rem;
            color: var(--navy);
            text-align: center;
            line-height: 1.6;
        }

        .plans-iva-box strong {
            font-weight: 700;
        }

        .plans-grid-6 .btn {
            padding: 0.6rem 0.5rem;
            font-size: 0.78rem;
        }

        .plans-download {
            text-align: center;
            margin-top: 3rem;
        }

        .plans-download .btn {
            padding: 1rem 3rem;
            font-size: 1.05rem;
        }

        .plans-iva-note {
            text-align: center;
            font-size: 0.85rem;
            color: var(--muted);
            margin-top: 1.25rem;
        }

        .plans-download p {
            margin-top: 0.9rem;
            font-size: 0.85rem;
            color: var(--muted);
        }

        /* ─── ABOUT ─── */
        .about-section {
            background: transparent;
        }

        .about-inner {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .about-text h2 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(1.7rem, 3vw, 2.2rem);
            font-weight: 700;
            color: var(--navy);
            letter-spacing: -0.025em;
            margin-bottom: 1.25rem;
        }

        .about-text p {
            color: var(--muted);
            font-size: 0.97rem;
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .about-highlight {
            margin-top: 1.75rem;
            padding: 1.25rem 1.5rem;
            background: var(--surface);
            border-left: 3px solid var(--accent);
            border-radius: 0 10px 10px 0;
            font-size: 0.93rem;
            color: var(--navy);
            font-weight: 500;
            line-height: 1.6;
        }

        .mv-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.5rem;
            max-width: 1000px;
            margin: 3.5rem auto 0;
        }

        .mv-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 1.75rem;
            transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s, background 0.35s;
        }

        .mv-card:hover {
            transform: translateY(-5px);
            background: var(--surface-hover);
            box-shadow: var(--shadow-lift), var(--glow-accent);
            border-color: rgba(224, 123, 42, 0.3);
        }

        .mv-tag {
            font-size: 0.72rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--accent);
            margin-bottom: 0.6rem;
        }

        .mv-card p {
            color: var(--text);
            font-size: 0.93rem;
            line-height: 1.7;
        }

        .about-visual {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .about-photo-card {
            width: 100%;
            max-width: 340px;
            text-align: center;
            position: relative;
        }

        .about-photo-card {
            animation: photoFloat 6s ease-in-out infinite;
        }

        @keyframes photoFloat {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        .about-photo {
            width: 100%;
            display: block;
            border-radius: 20px;
            box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
            border: 1px solid rgba(255, 255, 255, 0.14);
            transition: box-shadow 0.4s;
        }

        .about-photo-badge {
            position: absolute;
            top: -14px;
            left: -14px;
            background: rgba(255, 255, 255, 0.97);
            border-radius: 12px;
            padding: 8px 12px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
            animation: badgeFloat 4.5s ease-in-out infinite;
        }

        @keyframes badgeFloat {

            0%,
            100% {
                transform: translateY(0) rotate(0deg);
            }

            50% {
                transform: translateY(-5px) rotate(-2deg);
            }
        }

        .about-photo-badge img {
            height: 26px;
            display: block;
        }

        .about-modules-row {
            display: flex;
            justify-content: center;
            gap: 0.6rem;
            margin-top: 1.25rem;
            flex-wrap: wrap;
            position: relative;
        }

        .module-pill {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 100px;
            padding: 0.35rem 1rem;
            font-size: 0.76rem;
            color: var(--navy);
            font-weight: 500;
            transition: transform 0.25s var(--ease), border-color 0.25s, color 0.25s;
        }

        .module-pill:hover {
            transform: translateY(-2px);
            border-color: var(--accent);
            color: var(--accent-dark);
        }

        /* ─── INTERIOR CONTENT PAGES ───────────────────────────────────
           Support classes shared by the 8 interior pages (software,
           cómo funciona, municipalidades, consultoras, nosotros, faq,
           blog + article) so their opening section, narrow text blocks
           and custom SVG illustrations look consistent with each other
           and with the homepage's card-based design language. ─────── */

        /* Lightweight "page-hero" band: wraps the first section on every
           interior page (the one holding .section-header + the page's
           single h1). Gives the page an opening moment with a bit more
           air and a subtle accent glow instead of jumping straight into
           a plain paragraph right under the nav — echoes (at low
           intensity) the radial-accent treatment already used by
           .showcase-section / .contact-section elsewhere on the site. */
        .page-hero {
            position: relative;
            padding-top: 6.5rem;
            padding-bottom: 4rem;
            background: radial-gradient(ellipse 900px 480px at 50% 0%, rgba(224, 123, 42, 0.09), transparent 65%);
        }

        @media (max-width: 768px) {
            .page-hero {
                padding-top: 4.5rem;
            }
        }

        /* Inline text links inside interior-page prose (.about-text /
           .section-header / .spec-card paragraphs, e.g. "revise también
           el software de aforo vehicular") had no rule anywhere in this
           file and fell back to the browser's default blue/underline —
           jarring on this dark, accent-orange system. Scoped to
           .page-content (only the 8 interior pages use that wrapper) and
           excludes .btn so real CTA buttons are untouched. */
        .page-content a:not(.btn) {
            color: var(--accent);
            text-decoration: underline;
            text-decoration-color: rgba(224, 123, 42, 0.4);
            text-underline-offset: 3px;
            transition: color 0.2s, text-decoration-color 0.2s;
        }

        .page-content a:not(.btn):hover {
            color: var(--accent-light);
            text-decoration-color: var(--accent-light);
        }

        /* Replaces the repeated inline style="max-width:820px;margin:0
           auto;" that was copy-pasted across several interior pages to
           narrow a full-width .about-text block down to readable prose
           width — same visual result, one definition instead of many. */
        .about-text-narrow {
            max-width: 820px;
            margin: 0 auto;
        }

        /* Framed container for the custom line-art SVG illustrations on
           interior pages: same surface/border/radius language as
           .value-card / .spec-card / .showcase-panel so an illustration
           reads as another card in the system, not a foreign element. */
        .illus-panel {
            max-width: 420px;
            margin: 2.5rem auto 0;
            padding: 2rem;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: border-color 0.35s, background 0.35s;
        }

        .illus-panel:hover {
            border-color: rgba(224, 123, 42, 0.3);
            background: var(--surface-hover);
        }

        .illus-panel svg {
            width: 100%;
            max-width: 300px;
            height: auto;
            display: block;
        }

        /* Wider variant for illustrations drawn in a landscape/wide
           viewBox (side-view vehicle, pipeline diagram) so they don't get
           squeezed into the default portrait-ish max-width. */
        .illus-panel-wide {
            max-width: 620px;
        }

        .illus-panel-wide svg {
            max-width: 560px;
        }

        /* ─── CINEMATIC BANNER ─── */
        .cinematic-banner {
            position: relative;
            padding: 0;
            height: 380px;
            overflow: hidden;
        }

        .cinematic-banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            animation: kenBurns 20s ease-in-out infinite alternate;
        }

        @keyframes kenBurns {
            from {
                transform: scale(1) translateX(0);
            }

            to {
                transform: scale(1.09) translateX(-1%);
            }
        }

        .cinematic-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, rgba(4, 11, 24, 0.88) 0%, rgba(4, 11, 24, 0.45) 55%, rgba(4, 11, 24, 0.75) 100%);
            display: flex;
            align-items: center;
            padding: 0 3rem;
        }

        .cinematic-overlay p {
            font-family: 'Space Grotesk', sans-serif;
            color: var(--white);
            font-size: clamp(1.4rem, 3vw, 2.1rem);
            font-weight: 700;
            letter-spacing: -0.02em;
            max-width: 480px;
            line-height: 1.3;
        }

        @media (max-width: 768px) {
            .cinematic-banner {
                height: 300px;
            }

            .cinematic-overlay {
                padding: 0 1.5rem;
            }
        }

        /* ─── CONTACT ─── */
        .contact-section {
            position: relative;
            background:
                radial-gradient(ellipse 700px 400px at 50% 0%, rgba(224, 123, 42, 0.16), transparent 65%),
                var(--navy-card);
            color: var(--white);
            text-align: center;
            padding: 6rem 2rem;
            overflow: hidden;
        }

        .contact-section h2 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(1.9rem, 3.4vw, 2.7rem);
            font-weight: 700;
            letter-spacing: -0.03em;
            margin-bottom: 1rem;
        }

        .contact-section p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 1rem;
            max-width: 480px;
            margin: 0 auto 2.5rem;
            line-height: 1.7;
        }

        .visit-counter {
            margin: 2rem auto 0 !important;
            font-size: 0.78rem !important;
            color: rgba(255, 255, 255, 0.35) !important;
        }

        /* ─── FOOTER ─── */
        footer {
            background: var(--navy-deep);
            border-top: 1px solid var(--border);
            padding: 2rem 3rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-logo-wrap {
            background: rgba(255, 255, 255, 0.92);
            border-radius: 8px;
            padding: 5px 12px;
            display: inline-flex;
            align-items: center;
        }

        .footer-logo {
            height: 30px;
            display: block;
        }

        .footer-wordmark {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            /* Sits inside .footer-logo-wrap's light pill background, so it
               keeps a dark literal color (not var(--navy), which is now the
               light text token used everywhere else). */
            color: #16181c;
            letter-spacing: -0.01em;
        }

        .footer-wordmark span {
            color: var(--accent);
        }

        .footer-modules {
            display: flex;
            gap: 1.5rem;
            align-items: center;
            flex-wrap: wrap;
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.4);
        }

        .footer-whatsapp {
            color: var(--accent);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.2s;
        }

        .footer-whatsapp:hover {
            color: var(--accent-light);
        }

        .footer-logo-wrap {
            transition: transform 0.3s var(--ease);
        }

        .footer-logo-wrap:hover {
            transform: scale(1.04);
        }

        .footer-text {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.3);
        }

        /* ─── STICKY CTA ─── */
        .sticky-cta {
            position: fixed;
            left: 50%;
            bottom: 18px;
            transform: translate(-50%, 24px);
            z-index: 150;
            display: flex;
            align-items: center;
            gap: 0.7rem;
            background: var(--navy-card);
            border: 1px solid var(--border);
            color: var(--white);
            padding: 0.65rem 0.8rem 0.65rem 1.1rem;
            border-radius: 100px;
            box-shadow: 0 14px 34px rgba(0, 0, 0, 0.5);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        .sticky-cta.is-visible {
            opacity: 1;
            transform: translate(-50%, 0);
            pointer-events: auto;
        }

        .sticky-cta span {
            font-size: 0.82rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.75);
            white-space: nowrap;
        }

        .sticky-cta a {
            background: var(--accent);
            color: var(--white);
            text-decoration: none;
            font-size: 0.82rem;
            font-weight: 600;
            padding: 0.5rem 1.1rem;
            border-radius: 100px;
            white-space: nowrap;
        }

        .sticky-cta a:hover {
            background: var(--accent-dark);
        }

        @media (max-width: 560px) {
            .sticky-cta span {
                display: none;
            }
        }

        /* ─── ANIMATIONS ─── */
        @keyframes dash {
            to {
                stroke-dashoffset: -200;
            }
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 0.3;
            }

            50% {
                opacity: 1;
            }
        }

        @keyframes rise {
            from {
                transform: scaleY(0);
            }

            to {
                transform: scaleY(1);
            }
        }

        @keyframes growX {
            from {
                transform: scaleX(0);
            }

            to {
                transform: scaleX(1);
            }
        }

        @keyframes flow {
            from {
                stroke-dashoffset: 300;
            }

            to {
                stroke-dashoffset: 0;
            }
        }

        @keyframes blink {

            0%,
            100% {
                opacity: 0;
            }

            50% {
                opacity: 1;
            }
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        @keyframes scan {
            0% {
                top: 40px;
            }

            100% {
                top: 100%;
            }
        }

        @keyframes countup {
            from {
                opacity: 0;
                transform: translateY(4px);
            }

            to {
                opacity: 1;
                transform: none;
            }
        }

        @keyframes nodePulse {

            0%,
            100% {
                r: 3
            }

            50% {
                r: 5
            }
        }

        @media (max-width: 768px) {
            nav {
                padding: 0 1.5rem;
            }

            .nav-toggle {
                display: flex;
            }

            .nav-links {
                position: fixed;
                top: 70px;
                left: 0;
                right: 0;
                flex-direction: column;
                align-items: stretch;
                gap: 0;
                background: rgba(6, 6, 6, 0.98);
                backdrop-filter: blur(14px);
                -webkit-backdrop-filter: blur(14px);
                border-bottom: 1px solid var(--border);
                box-shadow: 0 16px 32px rgba(0, 0, 0, 0.5);
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
                z-index: 199;
            }

            .nav-links.is-open {
                max-height: 80vh;
                overflow-y: auto;
            }

            .nav-links li {
                width: 100%;
                border-bottom: 1px solid var(--border);
            }

            .nav-links li a {
                display: block;
                padding: 0.95rem 1.5rem;
            }

            .nav-links li:has(.cart-btn) {
                display: flex;
                align-items: center;
            }

            .nav-cta {
                margin: 0.85rem 1.5rem;
            }

            .hero {
                padding: 5rem 1.5rem 4rem;
            }

            .about-inner {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .about-visual {
                display: none;
            }

            footer {
                flex-direction: column;
                text-align: center;
                align-items: center;
            }

            .hero-scroll-cue {
                display: none;
            }

            .showcase-section::before {
                background-size: 30px 30px;
            }
        }

        @media (max-width: 480px) {
            .stat-bar {
                flex-wrap: wrap;
            }

            .stat-item {
                flex: 1 1 50%;
                max-width: none;
                border-right: 1px solid rgba(255, 255, 255, 0.07);
            }

            .stat-item:nth-child(2n) {
                border-right: none;
            }

            .stat-item:nth-child(-n+2) {
                border-bottom: 1px solid rgba(255, 255, 255, 0.07);
            }
        }