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

        html {
            font-size: 16px;
            -webkit-text-size-adjust: 100%;
            scroll-behavior: smooth
        }

        img {
            max-width: 100%;
            display: block
        }

        a {
            text-decoration: none;
            color: inherit
        }

        button {
            font-family: inherit
        }

        :root {
            --blue: #0047AB;
            --blue-d: #002f80;
            --blue-l: #1a5fbf;
            --paper: #FAFAF8;
            --paper2: #F2EFE8;
            --ink: #0A0A0A;
            --ink3: #3A3A3A;
            --ink4: #6A6A6A;
            --ink5: #9A9A9A;
            --rule: #E0DDD8;
            --gold: #C9A227;
            --nav: 64px;
            --fd: 'Playfair Display', Georgia, serif;
            --fb: 'DM Sans', system-ui, sans-serif;
            --fm: 'DM Mono', 'Courier New', monospace;
            --ease: cubic-bezier(.16, 1, .3, 1)
        }

        @media(max-width:900px) {
            :root {
                --nav: 56px
            }
        }

        body {
            font-family: var(--fb);
            background: var(--paper);
            color: var(--ink);
            line-height: 1.6;
            cursor: none;
            overflow-x: hidden
        }

        @media(hover:none) {
            body {
                cursor: auto
            }
        }

        ::selection {
            background: var(--blue);
            color: #fff
        }

        ::-webkit-scrollbar {
            width: 3px
        }

        ::-webkit-scrollbar-thumb {
            background: var(--blue)
        }

        .cur,
        .cur-ring {
            position: fixed;
            border-radius: 50%;
            pointer-events: none;
            z-index: 99999;
            transform: translate(-50%, -50%);
            mix-blend-mode: difference;
            will-change: left, top
        }

        .cur {
            width: 12px;
            height: 12px;
            background: #fff;
            z-index: 99999;
            transition: width .2s, height .2s
        }

        .cur-ring {
            width: 40px;
            height: 40px;
            border: 1.5px solid #fff;
            background: transparent;
            z-index: 99998;
            transition: width .35s, height .35s
        }

        body:has(a:hover) .cur,
        body:has(button:hover) .cur {
            width: 22px;
            height: 22px
        }

        body:has(a:hover) .cur-ring,
        body:has(button:hover) .cur-ring {
            width: 60px;
            height: 60px
        }

        @media(max-width:600px) {

            .cur,
            .cur-ring {
                display: none
            }
        }

        @media(prefers-reduced-motion: reduce) {
            body {
                cursor: auto !important;
            }
            .cur,
            .cur-ring {
                display: none !important;
            }
        }

        .scroll-bar {
            position: fixed;
            top: 0;
            left: 0;
            height: 2px;
            background: var(--blue);
            transform-origin: left;
            transform: scaleX(0);
            z-index: 10000;
            transition: transform .08s linear
        }

        .nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: var(--nav);
            z-index: 5000;
            transition: background .4s, border-color .4s, box-shadow .4s;
            border-bottom: 1px solid transparent
        }

        .nav.lit {
            background: rgba(250, 250, 248, .97);
            backdrop-filter: blur(12px);
            border-color: var(--rule);
            box-shadow: 0 1px 24px rgba(0, 0, 0, .04)
        }

        .nav-in {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 clamp(1.2rem, 3vw, 3rem);
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: .6rem;
            font-family: var(--fm);
            font-size: .78rem;
            font-weight: 500;
            letter-spacing: .12em;
            text-transform: uppercase;
            color: #fff;
            transition: color .4s
        }

        .nav-logo img {
            height: 32px;
            width: auto
        }

        .nav.lit .nav-logo {
            color: var(--blue)
        }

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

        .nav-links a {
            font-family: var(--fm);
            font-size: .7rem;
            letter-spacing: .1em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .75);
            transition: color .3s;
            position: relative
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: currentColor;
            transition: width .3s var(--ease)
        }

        .nav-links a:hover {
            color: #fff
        }

        .nav-links a:hover::after {
            width: 100%
        }

        .nav.lit .nav-links a {
            color: var(--ink4)
        }

        .nav.lit .nav-links a:hover {
            color: var(--blue)
        }

        .nav-cta {
            color: var(--blue) !important;
            background: #fff !important;
            font-family: var(--fm) !important;
            font-size: .7rem !important;
            letter-spacing: .1em !important;
            text-transform: uppercase !important;
            padding: .55rem 1.3rem;
            border: none;
            transition: all .3s !important
        }

        .nav-cta:hover {
            background: var(--blue) !important;
            color: #fff !important
        }

        .nav-cta::after {
            display: none !important
        }

        .nav.lit .nav-cta {
            background: var(--blue) !important;
            color: #fff !important
        }

        .nav.lit .nav-cta:hover {
            background: var(--blue-d) !important
        }

        .hbg {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: none;
            padding: 4px;
            background: none;
            border: none
        }

        .hbg span {
            display: block;
            width: 24px;
            height: 1px;
            background: #fff;
            transition: all .3s
        }

        .nav.lit .hbg span {
            background: var(--blue)
        }

        .hbg.open span:nth-child(1) {
            transform: rotate(45deg) translate(4px, 4px)
        }

        .hbg.open span:nth-child(2) {
            opacity: 0
        }

        .hbg.open span:nth-child(3) {
            transform: rotate(-45deg) translate(4px, -4px)
        }

        @media(max-width:900px) {
            .nav-links {
                display: none
            }

            .hbg {
                display: flex
            }
        }

        .mob-nav {
            position: fixed;
            inset: 0;
            z-index: 4999;
            background: var(--blue-d);
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 4rem clamp(1.5rem, 4vw, 3rem);
            opacity: 0;
            visibility: hidden;
            transition: opacity .4s var(--ease), visibility .4s
        }

        .mob-nav.open {
            opacity: 1;
            visibility: visible
        }

        .mob-nav a {
            font-family: var(--fd);
            font-size: clamp(2rem, 8vw, 4rem);
            font-weight: 700;
            color: rgba(255, 255, 255, .25);
            display: block;
            padding: .5rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, .06);
            transition: color .2s
        }

        .mob-nav a:hover {
            color: #fff
        }

        .mob-nav-foot {
            margin-top: 2rem;
            font-family: var(--fm);
            font-size: .6rem;
            color: rgba(255, 255, 255, .2);
            letter-spacing: .1em;
            line-height: 1.8
        }

        .ticker {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            z-index: 4500;
            background: rgba(0, 20, 60, .95);
            backdrop-filter: blur(10px);
            border-top: 1px solid rgba(255, 255, 255, .08);
            height: 34px;
            display: flex;
            align-items: center;
            overflow: hidden
        }

        .ticker-badge {
            font-family: var(--fm);
            font-size: .56rem;
            letter-spacing: .2em;
            text-transform: uppercase;
            color: var(--gold);
            padding: 0 1rem;
            flex-shrink: 0;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: .4rem
        }

        .ticker-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--gold);
            animation: tdot 1.5s ease-in-out infinite
        }

        @keyframes tdot {

            0%,
            100% {
                opacity: 1;
                transform: scale(1)
            }

            50% {
                opacity: .3;
                transform: scale(.6)
            }
        }

        .ticker-sep {
            width: 1px;
            height: 16px;
            background: rgba(255, 255, 255, .1);
            flex-shrink: 0
        }

        .ticker-scroll {
            overflow: hidden;
            flex: 1;
            position: relative
        }

        .ticker-track {
            display: flex;
            gap: 0;
            width: max-content;
            animation: tsroll 70s linear infinite
        }

        .ticker-track:hover {
            animation-play-state: paused
        }

        @keyframes tsroll {
            from {
                transform: translateX(0)
            }

            to {
                transform: translateX(-50%)
            }
        }

        .ticker-item {
            font-family: var(--fm);
            font-size: .58rem;
            letter-spacing: .08em;
            color: rgba(255, 255, 255, .65);
            white-space: nowrap;
            padding: 0 2.5rem;
            display: flex;
            align-items: center;
            gap: .5rem;
            border-right: 1px solid rgba(255, 255, 255, .07)
        }

        .ticker-item::before {
            content: '●';
            color: rgba(0, 71, 171, .6);
            font-size: .4rem;
            flex-shrink: 0
        }

        @media(max-width:600px) {
            .ticker {
                display: none
            }
        }

        section {
            position: relative;
            width: 100%
        }

        .inner {
            max-width: 1440px;
            margin: 0 auto;
            padding: clamp(5rem, 10vh, 8rem) clamp(1.2rem, 3vw, 3rem)
        }

        .inner-sm {
            max-width: 1440px;
            margin: 0 auto;
            padding: clamp(3rem, 6vh, 5rem) clamp(1.2rem, 3vw, 3rem)
        }

        .rv {
            opacity: 0;
            transform: translateY(60px);
            transition: opacity 1s var(--ease), transform 1s var(--ease)
        }

        .rv.from-left {
            transform: translateX(-60px)
        }

        .rv.from-right {
            transform: translateX(60px)
        }

        .rv.scale-in {
            transform: scale(.92)
        }

        .rv.in {
            opacity: 1 !important;
            transform: none !important
        }

        .d1 {
            transition-delay: .15s
        }

        .d2 {
            transition-delay: .3s
        }

        .d3 {
            transition-delay: .45s
        }

        .d4 {
            transition-delay: .6s
        }

        .d5 {
            transition-delay: .75s
        }

        .d6 {
            transition-delay: .9s
        }

        @media(max-width:600px) {
            .rv {
                opacity: 1 !important;
                transform: none !important;
                transition: none !important
            }
        }

        .lbl {
            font-family: var(--fm);
            font-size: .62rem;
            letter-spacing: .22em;
            text-transform: uppercase;
            display: block;
            margin-bottom: 1.2rem
        }

        .lbl.w {
            color: rgba(255, 255, 255, .35)
        }

        .lbl.b {
            color: rgba(0, 71, 171, .5)
        }

        .lbl.g {
            color: var(--ink5)
        }

        .btn-blue {
            font-family: var(--fm);
            font-size: .72rem;
            letter-spacing: .12em;
            text-transform: uppercase;
            background: var(--blue);
            color: #fff;
            border: 1.5px solid var(--blue);
            padding: .85rem 2rem;
            cursor: none;
            transition: all .3s;
            display: inline-block
        }

        .btn-blue:hover {
            background: var(--blue-d)
        }

        .btn-out {
            font-family: var(--fm);
            font-size: .72rem;
            letter-spacing: .12em;
            text-transform: uppercase;
            background: none;
            color: var(--blue);
            border: 1.5px solid var(--blue);
            padding: .85rem 2rem;
            cursor: none;
            transition: all .3s;
            display: inline-block
        }

        .btn-out:hover {
            background: var(--blue);
            color: #fff
        }

        .btn-wht {
            font-family: var(--fm);
            font-size: .72rem;
            letter-spacing: .12em;
            text-transform: uppercase;
            background: #fff;
            color: var(--blue);
            border: 1.5px solid #fff;
            font-weight: 600;
            padding: .9rem 2.2rem;
            cursor: none;
            transition: all .3s;
            display: inline-block
        }

        .btn-wht:hover {
            background: transparent;
            color: #fff
        }

        #hero {
            min-height: 100vh;
            background: linear-gradient(135deg, #001540 0%, var(--blue) 60%, var(--blue-l) 100%);
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 80px 0 60px
        }

        .particles {
            position: absolute;
            inset: 0;
            overflow: hidden;
            pointer-events: none;
            z-index: 0
        }

        .particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: rgba(255, 255, 255, .4);
            border-radius: 50%;
            animation: pfloat linear infinite
        }

        @keyframes pfloat {
            0% {
                transform: translateY(100vh);
                opacity: 0
            }

            10% {
                opacity: .8
            }

            90% {
                opacity: .8
            }

            100% {
                transform: translateY(-20px) translateX(var(--dx));
                opacity: 0
            }
        }

        #hero .inner {
            position: relative;
            z-index: 5;
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 24px
        }

        .hero-container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            align-items: center;
            width: 100%;
            margin-top: 20px;
        }

        @media (min-width: 1024px) {
            .hero-container {
                grid-template-columns: 280px 1fr 280px;
                gap: 1.5rem;
            }
        }

        .hero-books-side {
            display: none;
            position: relative;
            height: 480px;
        }

        @media (min-width: 1024px) {
            .hero-books-side {
                display: block;
            }
        }

        .hero-book {
            position: absolute;
            transition: transform 0.6s var(--ease), opacity 0.6s var(--ease), filter 0.6s var(--ease);
            z-index: 2;
            opacity: 0;
            filter: blur(8px);
        }

        .hero-book.in {
            animation: heroBookEnter 1.4s var(--ease) both;
        }

        @keyframes heroBookEnter {
            from {
                opacity: 0;
                transform: translateY(40px) scale(0.9);
                filter: blur(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0) scale(1);
                filter: blur(0);
            }
        }

        .hero-book-float {
            animation: heroFloat 4s ease-in-out infinite alternate;
        }

        @keyframes heroFloat {
            from {
                transform: translateY(0);
            }

            to {
                transform: translateY(-15px);
            }
        }

        .reveal-left .hero-book:nth-child(1) {
            animation-delay: 0.2s;
        }

        .reveal-left .hero-book:nth-child(2) {
            animation-delay: 0.4s;
        }

        .reveal-left .hero-book:nth-child(3) {
            animation-delay: 0.6s;
        }

        .reveal-left .hero-book:nth-child(4) {
            animation-delay: 0.8s;
        }

        .reveal-right .hero-book:nth-child(1) {
            animation-delay: 0.3s;
        }

        .reveal-right .hero-book:nth-child(2) {
            animation-delay: 0.5s;
        }

        .reveal-right .hero-book:nth-child(3) {
            animation-delay: 0.7s;
        }

        .reveal-right .hero-book:nth-child(4) {
            animation-delay: 0.9s;
        }

        .hero-book img {
            max-width: 150px;
            height: auto;
            filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.25));
            border-radius: 4px;
            animation: heroFloat 4s ease-in-out infinite alternate;
        }

        @keyframes heroFloat {
            0% {
                transform: translateY(0);
            }

            100% {
                transform: translateY(-15px);
            }
        }

        .reveal-left .hero-book:nth-child(1) img {
            animation-delay: 0.2s;
        }

        .reveal-left .hero-book:nth-child(2) img {
            animation-delay: 0.6s;
        }

        .reveal-left .hero-book:nth-child(3) img {
            animation-delay: 1.0s;
        }

        .reveal-left .hero-book:nth-child(4) img {
            animation-delay: 1.4s;
        }

        .reveal-right .hero-book:nth-child(1) img {
            animation-delay: 0.4s;
        }

        .reveal-right .hero-book:nth-child(2) img {
            animation-delay: 0.8s;
        }

        .reveal-right .hero-book:nth-child(3) img {
            animation-delay: 1.2s;
        }

        .reveal-right .hero-book:nth-child(4) img {
            animation-delay: 1.6s;
        }

        .hero-center {
            text-align: center;
            position: relative;
            z-index: 5;
            max-width: 800px;
            margin: 0 auto;
        }

        .hero-eyebrow {
            display: block;
            font-family: var(--fm);
            font-size: .7rem;
            letter-spacing: .2em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 0.5rem;
            word-spacing: -0.02em;
        }

        .hero-headline {
            font-family: var(--fd);
            font-size: clamp(2.2rem, 5vw, 4.5rem);
            font-weight: 900;
            line-height: 1.05;
            color: #fff;
            margin-bottom: 1.5rem;
            word-spacing: -0.02em;
        }

        .hero-subtitle {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, .7);
            max-width: 620px;
            margin: 0 auto 2.5rem;
            line-height: 1.6;
        }

        .hero-badges {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 2.5rem;
        }

        .hero-badge {
            display: flex;
            align-items: center;
            gap: .5rem;
            background: rgba(255, 255, 255, .05);
            border: 1px solid rgba(255, 255, 255, .1);
            padding: .5rem 1rem;
            border-radius: 100px;
            font-family: var(--fm);
            font-size: .75rem;
            color: #fff;
        }

        .badge-dot {
            width: 6px;
            height: 6px;
            background: var(--gold);
            border-radius: 50%;
        }

        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.25rem;
        }

        .hero-buttons .btn-primary {
            background: var(--gold);
            color: #000;
            padding: 1.1rem 2.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .08em;
            border-radius: 4px;
            transition: transform .3s, box-shadow .3s;
            font-size: 0.75rem;
        }

        .hero-buttons .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(201, 162, 39, .35);
        }

        .hero-buttons .btn-ghost {
            background: transparent;
            border: 1.5px solid rgba(255, 255, 255, .3);
            color: #fff;
            padding: 1.1rem 2.8rem;
            font-weight: 600;
            border-radius: 4px;
            transition: background .3s, border-color .3s;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: .08em;
        }

        .hero-buttons .btn-ghost:hover {
            background: rgba(255, 255, 255, .05);
            border-color: #fff;
        }

        .hero-buttons .btn-whatsapp {
            background: #25D366;
            color: #fff;
            padding: 1.1rem 2.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .08em;
            border-radius: 4px;
            transition: transform .3s, box-shadow .3s;
            font-size: 0.75rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.6rem;
            border: 1.5px solid #25D366;
        }

        .hero-buttons .btn-whatsapp:hover {
            background: #20bd5a;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
            border-color: #20bd5a;
            color: #fff;
        }

        @media (max-width: 1023px) {
            .hero-books-side {
                display: block;
                position: absolute;
                top: 0;
                bottom: 0;
                width: 40%;
                opacity: 0.15;
                pointer-events: none;
                z-index: 1;
                height: 100%;
            }

            .reveal-left {
                left: -20px;
            }

            .reveal-right {
                right: -20px;
            }

            .hero-book img {
                max-width: 140px;
            }

            .hero-book:nth-child(n+4) {
                display: none;
            }

            .hero-book:nth-child(1) {
                top: 10%;
                left: 10%;
                transform: rotate(-8deg);
            }

            .hero-book:nth-child(2) {
                top: 40%;
                left: 20%;
                transform: rotate(5deg);
            }

            .hero-book:nth-child(3) {
                top: 70%;
                left: 5%;
                transform: rotate(-3deg);
            }

            .reveal-right .hero-book:nth-child(1) {
                top: 15%;
                right: 10%;
                transform: rotate(8deg);
            }

            .reveal-right .hero-book:nth-child(2) {
                top: 45%;
                right: 15%;
                transform: rotate(-5deg);
            }

            .reveal-right .hero-book:nth-child(3) {
                top: 75%;
                right: 5%;
                transform: rotate(3deg);
            }
        }

        @keyframes txtArrive {
            from {
                color: rgba(255, 255, 255, 0);
                transform: translateY(12px)
            }

            to {
                color: rgba(255, 255, 255, .92);
                transform: translateY(0)
            }
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(8px)
            }

            to {
                opacity: 1;
                transform: none
            }
        }

        .hero-brand {
            margin-top: 3.5rem;
            font-family: var(--fm);
            font-size: clamp(.48rem, .9vw, .62rem);
            letter-spacing: .22em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .4);
            line-height: 1.9;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto
        }

        /* Ticker inside Hero */
        .hero-ticker {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 34px;
            background: rgba(0, 20, 60, .4);
            display: flex;
            align-items: center;
            overflow: hidden;
            border-top: 1px solid rgba(255, 255, 255, .06);
            z-index: 10;
        }

        .hero-ticker-badge {
            font-family: var(--fm);
            font-size: .62rem;
            letter-spacing: .1em;
            color: var(--gold);
            padding: 0 1.2rem;
            white-space: nowrap;
            text-transform: uppercase;
            border-right: 1px solid rgba(255, 255, 255, .08);
            height: 100%;
            display: flex;
            align-items: center;
        }

        .hero-ticker-track {
            display: flex;
            white-space: nowrap;
            animation: hero-ticker-scroll 70s linear infinite;
        }

        .hero-ticker-track span {
            font-family: var(--fm);
            font-size: .62rem;
            letter-spacing: .06em;
            color: rgba(255, 255, 255, .5);
            padding: 0 2rem;
        }

        @keyframes hero-ticker-scroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        .hero-ticker:hover .hero-ticker-track {
            animation-play-state: paused;
        }

        /* 3D Book Mockup */
        .book-mockup {
            perspective: 800px;
            display: flex;
            justify-content: center;
        }

        .book-3d {
            width: 280px;
            height: 400px;
            position: relative;
            transform: rotateY(-8deg);
            transition: transform 0.6s var(--ease);
            transform-style: preserve-3d;
        }

        .book-3d:hover {
            transform: rotateY(0deg) scale(1.02);
        }

        .book-3d-cover {
            width: 100%;
            height: 100%;
            background: linear-gradient(145deg, var(--blue) 0%, var(--blue-l) 60%, var(--blue-d) 100%);
            border-radius: 2px 8px 8px 2px;
            box-shadow: 8px 8px 30px rgba(0, 0, 0, 0.15), 2px 2px 8px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 40px 32px;
            position: relative;
            overflow: hidden;
        }

        .book-3d-cover::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 16px;
            background: linear-gradient(90deg, rgba(0, 0, 0, 0.15), transparent);
        }

        .book-3d-cover::after {
            content: '';
            position: absolute;
            left: 16px;
            top: 0;
            bottom: 0;
            width: 1px;
            background: rgba(255, 255, 255, 0.1);
        }

        .book-3d-logo {
            font-family: var(--fm);
            font-size: 0.625rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 60px;
        }

        .book-3d-title {
            font-family: var(--fd);
            font-size: 1.375rem;
            font-weight: 700;
            color: #fff;
            text-align: center;
            line-height: 1.3;
            margin-bottom: 16px;
        }

        .book-3d-author {
            font-family: var(--fm);
            font-size: 0.6875rem;
            color: rgba(255, 255, 255, 0.5);
            text-transform: uppercase;
            letter-spacing: 0.12em;
        }

        .book-3d-line {
            width: 40px;
            height: 1px;
            background: var(--gold);
            margin: 16px 0;
        }

        @media(max-width:900px) {
            .pub-proof {
                display: none
            }
        }

        #publisher {
            background: #f8f8f8;
            overflow: hidden;
            transition: background 1.5s var(--ease);
        }

        #publisher.in {
            background: var(--paper2);
        }

        .pub-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: clamp(3rem, 6vw, 7rem);
            align-items: center
        }

        .pub-img-col {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative
        }

        .pub-book-img {
            width: clamp(180px, 22vw, 320px);
            filter: drop-shadow(0 40px 80px rgba(0, 71, 171, .25)) drop-shadow(0 8px 24px rgba(0, 0, 0, .2));
            transition: filter .4s, transform .4s var(--ease)
        }

        .pub-book-img:hover {
            transform: translateY(-8px) rotate(1deg);
            filter: drop-shadow(0 60px 100px rgba(0, 71, 171, .35)) drop-shadow(0 12px 32px rgba(0, 0, 0, .25))
        }

        @media(max-width:900px) {
            .pub-layout {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .pub-img-col {
                margin-top: 4rem;
                order: -1;
            }

            .pub-sub {
                margin-left: auto;
                margin-right: auto;
            }
        }

        .pub-h {
            font-family: var(--fd);
            font-size: clamp(2.4rem, 6.5vw, 7rem);
            font-weight: 900;
            line-height: .95;
            color: var(--ink);
            letter-spacing: -.03em
        }

        .pub-h em {
            font-style: italic;
            display: block;
            color: var(--blue)
        }

        .pub-proof {
            display: flex;
            flex-wrap: wrap;
            margin-top: 2.5rem;
            border-top: 2px solid var(--blue);
            width: fit-content;
        }

        .pub-proof span {
            padding: .85rem 1.6rem;
            border-right: 1px solid var(--rule);
            font-family: var(--fm);
            font-size: .68rem;
            letter-spacing: .12em;
            text-transform: uppercase;
            color: var(--ink3)
        }

        .pub-proof span:last-child {
            border-right: none
        }

        .pub-proof span:first-child {
            padding-left: 0
        }

        .pub-sub {
            margin-top: 2rem;
            font-size: 1rem;
            color: var(--ink4);
            max-width: 460px;
            line-height: 1.75
        }

        .pub-cta {
            display: inline-block;
            margin-top: 1.5rem;
            font-family: var(--fm);
            font-size: .72rem;
            letter-spacing: .12em;
            text-transform: uppercase;
            color: var(--blue);
            border-bottom: 1px solid var(--blue);
            padding-bottom: 2px;
            transition: opacity .2s
        }

        .pub-cta:hover {
            opacity: .5
        }

        @media(max-width:900px) {
            .pub-proof {
                display: none
            }
        }

        #stats {
            background: linear-gradient(160deg, #001f60 0%, var(--blue) 100%);
            padding: 4rem 0 2rem;
        }

        .stats-g {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            border-top: 1px solid rgba(255, 255, 255, .12);
            border-bottom: 1px solid rgba(255, 255, 255, .12)
        }

        .stat {
            padding: clamp(2rem, 4vh, 3rem) clamp(1rem, 2vw, 2rem);
            border-right: 1px solid rgba(255, 255, 255, .12)
        }

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

        .stat-n {
            font-family: var(--fd);
            font-size: clamp(2.8rem, 5.5vw, 5.5rem);
            font-weight: 900;
            line-height: 1;
            color: #fff;
            letter-spacing: -.02em
        }

        .stat-l {
            font-family: var(--fm);
            font-size: .62rem;
            letter-spacing: .18em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .4);
            margin-top: .5rem;
            display: block
        }

        .stat-d {
            font-size: .8rem;
            color: rgba(255, 255, 255, .35);
            line-height: 1.5;
            margin-top: .4rem
        }

        @media(max-width:900px) {
            .stats-g {
                grid-template-columns: repeat(2, 1fr)
            }

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

            .stat:nth-child(3),
            .stat:nth-child(4) {
                border-top: 1px solid rgba(255, 255, 255, .12)
            }
        }

        @media(max-width:600px) {
            .stats-g {
                grid-template-columns: 1fr
            }

            .stat {
                border-right: none;
                border-bottom: 1px solid rgba(255, 255, 255, .12)
            }
        }

        /* ============================================
           BOOKS SECTION - CAROUSEL
        ============================================ */
        #books {
            background: var(--paper);
            padding: clamp(3rem, 6vh, 5rem) 0;
            overflow: hidden;
            position: relative;
        }

        .books-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .books-header .lbl {
            margin-bottom: 0.5rem;
        }

        .books-header h2 {
            font-family: var(--fd);
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 900;
            color: var(--ink);
            letter-spacing: -0.02em;
        }

        .marquee-wrapper {
            position: relative;
            overflow: hidden;
            width: 100%;
        }

        .marquee-wrapper::before,
        .marquee-wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: clamp(60px, 10vw, 150px);
            z-index: 5;
            pointer-events: none;
        }

        .marquee-wrapper::before {
            left: 0;
            background: linear-gradient(to right, var(--paper) 0%, transparent 100%);
        }

        .marquee-wrapper::after {
            right: 0;
            background: linear-gradient(to left, var(--paper) 0%, transparent 100%);
        }

        .marquee-track {
            display: flex;
            gap: 0;
            padding: 20px 0;
            width: max-content;
            animation: marqueeScroll 100s linear infinite;
        }

        .marquee-track:hover {
            animation-play-state: paused;
        }

        @keyframes marqueeScroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        .book-item {
            flex-shrink: 0;
            width: 200px;
            height: 300px;
            background: transparent;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .book-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.3s var(--ease);
        }

        .book-item:hover img {
            transform: scale(1.02);
        }

        .books-footer {
            text-align: center;
            margin-top: 3rem;
        }

        #estimator {
            background: var(--paper2)
        }

        .est-h {
            font-family: var(--fd);
            font-size: clamp(2rem, 4.5vw, 4.5rem);
            font-weight: 900;
            color: var(--ink);
            letter-spacing: -.03em;
            line-height: 1;
            margin-bottom: .5rem
        }

        .est-h em {
            font-style: italic;
            color: var(--blue)
        }

        .est-sub {
            font-size: .95rem;
            color: var(--ink4);
            margin-bottom: 2.5rem;
            max-width: 520px;
            line-height: 1.7
        }

        .est-form {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 1.2rem;
            align-items: end;
            margin-bottom: 2rem
        }

        .est-field label {
            font-family: var(--fm);
            font-size: .6rem;
            letter-spacing: .18em;
            text-transform: uppercase;
            color: var(--ink5);
            display: block;
            margin-bottom: .5rem
        }

        .est-field input,
        .est-field select {
            width: 100%;
            padding: .85rem 1rem;
            border: 1.5px solid var(--rule);
            background: var(--paper);
            font-family: var(--fd);
            font-size: 1rem;
            color: var(--ink);
            outline: none;
            transition: border-color .3s;
            -webkit-appearance: none;
            appearance: none
        }

        .est-field input:focus,
        .est-field select:focus {
            border-color: var(--blue)
        }

        .est-result {
            background: var(--blue);
            color: #fff;
            padding: 0;
            display: none;
            animation: fadeUp .5s var(--ease)
        }

        .est-result.show {
            display: grid;
            grid-template-columns: repeat(3, 1fr)
        }

        .est-m {
            padding: 2rem clamp(1.2rem, 2vw, 2rem);
            border-right: 1px solid rgba(255, 255, 255, .15)
        }

        .est-m:last-child {
            border-right: none
        }

        .est-mn {
            font-family: var(--fd);
            font-size: clamp(1.8rem, 3.5vw, 3rem);
            font-weight: 900;
            color: #fff;
            line-height: 1
        }

        .est-ml {
            font-family: var(--fm);
            font-size: .58rem;
            letter-spacing: .16em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .4);
            margin-top: .4rem;
            display: block
        }

        .est-md {
            font-size: .82rem;
            color: rgba(255, 255, 255, .55);
            margin-top: .3rem;
            line-height: 1.5
        }

        @media(max-width:900px) {
            .est-form {
                grid-template-columns: 1fr 1fr
            }

            .est-result.show {
                grid-template-columns: 1fr
            }

            .est-m {
                border-right: none;
                border-bottom: 1px solid rgba(255, 255, 255, .15)
            }

            .est-m:last-child {
                border-bottom: none
            }
        }

        @media(max-width:600px) {
            .est-form {
                grid-template-columns: 1fr
            }
        }

        #builder {
            background: var(--paper)
        }

        .bld-h {
            font-family: var(--fd);
            font-size: clamp(2.4rem, 6.5vw, 7rem);
            font-weight: 900;
            color: var(--ink);
            letter-spacing: -.03em;
            line-height: .95;
            margin-bottom: .8rem
        }

        .bld-h em {
            font-style: italic;
            color: var(--blue)
        }

        .bld-sub {
            font-size: 1rem;
            color: var(--ink4);
            margin-bottom: 2.5rem;
            max-width: 500px;
            line-height: 1.75
        }

        .bld-lay {
            display: grid;
            grid-template-columns: 1fr 340px;
            gap: 2.5rem;
            align-items: start
        }

        @media(max-width:992px) {
            .bld-lay {
                grid-template-columns: 1fr
            }

            .cart {
                position: static;
                width: 100%
            }
        }

        .svc-list {
            border-top: 2px solid var(--blue)
        }

        .svc-r {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 0;
            border-bottom: 1px solid var(--rule);
            transition: all .2s;
            cursor: none
        }

        .svc-r:hover {
            padding-left: .8rem;
            padding-right: .8rem;
            background: rgba(0, 71, 171, .03)
        }

        .svc-r.sel {
            background: var(--blue);
            padding-left: .8rem;
            padding-right: .8rem
        }

        .svc-r.sel .svc-t {
            color: #fff
        }

        .svc-r.sel .svc-d {
            color: rgba(255, 255, 255, .4)
        }

        .svc-t {
            font-family: var(--fd);
            font-size: 1rem;
            font-weight: 700;
            color: var(--ink);
            transition: color .2s
        }

        .svc-d {
            font-family: var(--fm);
            font-size: .62rem;
            letter-spacing: .08em;
            color: var(--ink5);
            margin-top: .1rem;
            transition: color .2s
        }

        .svc-tog {
            width: 30px;
            height: 30px;
            border: 1.5px solid var(--blue);
            background: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: none;
            flex-shrink: 0;
            font-size: 1.1rem;
            color: var(--blue);
            transition: all .2s
        }

        .svc-r.sel .svc-tog {
            background: #fff;
            color: var(--blue);
            border-color: #fff
        }

        .cart {
            border: 1.5px solid var(--blue);
            padding: 1.5rem;
            position: sticky;
            top: calc(var(--nav) + 1.5rem);
            scroll-margin-top: 100px
        }

        .cart-t {
            font-family: var(--fm);
            font-size: .68rem;
            letter-spacing: .18em;
            text-transform: uppercase;
            color: var(--blue);
            margin-bottom: 1.2rem;
            padding-bottom: .8rem;
            border-bottom: 1px solid var(--rule)
        }

        .cart-list {
            min-height: 100px;
            margin-bottom: 1.2rem
        }

        .cart-empty {
            font-family: var(--fm);
            font-size: .65rem;
            letter-spacing: .08em;
            color: var(--ink5);
            padding: 1.2rem 0
        }

        .cart-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: .5rem 0;
            border-bottom: 1px solid var(--rule);
            animation: rowIn .3s var(--ease)
        }

        @keyframes rowIn {
            from {
                opacity: 0;
                transform: translateX(-8px)
            }

            to {
                opacity: 1;
                transform: none
            }
        }

        .cart-row-n {
            font-family: var(--fb);
            font-size: .82rem;
            color: var(--ink)
        }

        .cart-rm {
            background: none;
            border: none;
            color: var(--ink5);
            font-size: .9rem;
            cursor: none;
            transition: color .2s
        }

        .cart-rm:hover {
            color: var(--blue)
        }

        .cart-btn {
            width: 100%;
            padding: 1.2rem;
            background: var(--blue);
            color: #fff;
            border: none;
            font-family: var(--fm);
            font-size: .75rem;
            letter-spacing: .15em;
            text-transform: uppercase;
            cursor: pointer;
            transition: all .3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: .8rem
        }

        #cartPill {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #fff;
            border: 1.5px solid var(--blue);
            padding: .8rem 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            box-shadow: 0 10px 30px rgba(0, 71, 171, .15);
            z-index: 100;
            cursor: pointer;
            transform: translateY(150%);
            transition: transform .4s var(--ease);
            font-family: var(--fm);
            font-weight: 500;
            color: var(--blue);
            font-size: .75rem;
            letter-spacing: .05em
        }

        #cartPill.vis {
            transform: none
        }

        #pillCount {
            background: var(--blue);
            color: #fff;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-size: .65rem;
            font-weight: 700
        }

        @media(max-width:900px) {
            #cartPill {
                display: none
            }
        }
            padding: 1rem;
            background: var(--blue);
            color: #fff;
            font-family: var(--fm);
            font-size: .68rem;
            letter-spacing: .14em;
            text-transform: uppercase;
            border: 1.5px solid var(--blue);
            cursor: none;
            transition: all .3s
        }

        .cart-btn:disabled {
            background: transparent;
            color: var(--ink5);
            border-color: var(--rule);
            cursor: not-allowed
        }

        .cart-btn:not(:disabled):hover {
            background: transparent;
            color: var(--blue)
        }

        @media(max-width:1100px) {
            .bld-lay {
                grid-template-columns: 1fr
            }

            .cart {
                position: static
            }
        }

        @media(hover:none) {

            .svc-r,
            .faq-btn,
            .filt-btn,
            .c-book,
            .reel {
                cursor: pointer
            }
        }

        #testimony {
            background: linear-gradient(170deg, #001540 0%, var(--blue) 100%)
        }

        .tst-h {
            font-family: var(--fd);
            font-size: clamp(2rem, 5vw, 5.5rem);
            font-weight: 900;
            font-style: italic;
            color: #fff;
            line-height: 1;
            letter-spacing: -.03em;
            margin-bottom: clamp(1.5rem, 3vh, 2.5rem)
        }

        .feat-vids {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2px;
            margin-bottom: clamp(1.5rem, 3vh, 2.5rem)
        }

        .review-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-bottom: 4rem;
            margin-top: 2rem
        }

        .r-card {
            background: rgba(255, 255, 255, .05);
            border: 1px solid rgba(255, 255, 255, .1);
            padding: 2.5rem 2rem;
            border-radius: 4px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: transform .3s, background .3s
        }

        .r-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, .08)
        }

        .r-text {
            font-size: .95rem;
            color: rgba(255, 255, 255, .8);
            line-height: 1.7;
            margin-bottom: 2rem;
            font-style: italic
        }

        .r-author {
            font-family: var(--fm);
            font-size: .7rem;
            letter-spacing: .1em;
            color: var(--gold);
            text-transform: uppercase
        }

        .r-book {
            font-size: .75rem;
            color: rgba(255, 255, 255, .4);
            margin-top: .3rem
        }

        .fv {
            position: relative;
            overflow: hidden
        }

        .fv .fw {
            position: relative;
            padding-bottom: 56.25%
        }

        .fv .ff {
            position: absolute;
            inset: 0;
            cursor: none
        }

        .fv .ff img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .5s
        }

        .fv:hover .ff img {
            transform: scale(1.04)
        }

        .fv .fp {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center
        }

        .fv .fc {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .9);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, .3);
            transition: transform .3s
        }

        .fv:hover .fc {
            transform: scale(1.08)
        }

        .fv .fvi {
            padding: .7rem .9rem;
            background: rgba(0, 0, 0, .5)
        }

        .fv .fvl {
            font-family: var(--fm);
            font-size: .54rem;
            letter-spacing: .14em;
            text-transform: uppercase;
            color: var(--gold);
            display: block;
            margin-bottom: .2rem
        }

        .fv .fvn {
            font-size: .82rem;
            font-weight: 500;
            color: #fff
        }

        @media(max-width:1100px) {
            .feat-vids {
                grid-template-columns: repeat(2, 1fr)
            }

            .review-cards {
                grid-template-columns: repeat(2, 1fr)
            }
        }

        @media(max-width:768px) {

            .feat-vids,
            .review-cards {
                display: flex;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                gap: 1.2rem;
                padding: 1rem 1.2rem 2rem 1.2rem;
                margin-left: -1.2rem;
                margin-right: -1.2rem;
                scroll-behavior: smooth;
                -webkit-overflow-scrolling: touch;
            }

            .feat-vids::-webkit-scrollbar,
            .review-cards::-webkit-scrollbar {
                height: 3px;
            }

            .feat-vids::-webkit-scrollbar-thumb,
            .review-cards::-webkit-scrollbar-thumb {
                background: rgba(255, 255, 255, 0.2);
                border-radius: 4px;
            }

            .fv,
            .r-card {
                flex: 0 0 85%;
                scroll-snap-align: center;
                min-width: 280px;
            }
        }

        /* ========== MEDIA MARQUEE (UPRISE STYLE) ========== */
        .media-marquee {
            position: relative;
            overflow: hidden;
            width: 100%;
            padding: 0;
            background: var(--paper);
            border-top: 1px solid var(--rule);
            border-bottom: 1px solid var(--rule);
        }

        .media-marquee-inner {
            display: flex;
            gap: 0;
            width: max-content;
            animation: mediaMarqueeScroll 30s linear infinite;
        }

        .media-marquee-inner img {
            height: 220px;
            width: 320px;
            object-fit: cover;
            border-radius: 0;
            filter: grayscale(10%);
            transition: transform 0.3s var(--ease);
        }

        .media-marquee-inner img:hover {
            transform: scale(1.02);
            filter: grayscale(0%);
            z-index: 2;
        }

        @keyframes mediaMarqueeScroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        .media-marquee:hover .media-marquee-inner {
            animation-play-state: paused;
        }

        .movement-h {
            text-align: center;
            margin-bottom: 3rem;
            margin-top: 4rem;
        }

        .movement-h .sub {
            font-family: var(--fm);
            font-size: 0.75rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--gold);
        }

        .reels-g {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: clamp(.5rem, 1vw, .9rem)
        }

        .reel {
            position: relative;
            border-radius: 6px;
            overflow: hidden;
            aspect-ratio: 9/16;
            cursor: none;
            background: rgba(255, 255, 255, .06);
            transition: transform .35s var(--ease)
        }

        .reel:hover {
            transform: translateY(-8px) scale(1.02)
        }

        .reel>img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform .5s
        }

        .reel:hover>img {
            transform: scale(1.05)
        }

        .reel-ov {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 20, 80, .92) 0%, rgba(0, 20, 80, .2) 55%, transparent 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: clamp(.6rem, 1.2vw, .95rem)
        }

        .rp {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .15);
            border: 1px solid rgba(255, 255, 255, .35);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: .5rem;
            align-self: flex-start
        }

        .rn {
            font-family: var(--fd);
            font-size: clamp(.78rem, .95vw, .9rem);
            font-weight: 700;
            color: #fff;
            margin-bottom: .1rem
        }

        .rr {
            font-family: var(--fm);
            font-size: clamp(.5rem, .58vw, .58rem);
            letter-spacing: .08em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .5);
            margin-bottom: .35rem
        }

        .rq {
            font-size: clamp(.65rem, .75vw, .75rem);
            color: rgba(255, 255, 255, .75);
            line-height: 1.5;
            font-style: italic;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden
        }

        .show-more-row {
            text-align: center;
            margin-top: 1.5rem
        }

        .smb {
            font-family: var(--fm);
            font-size: .68rem;
            letter-spacing: .12em;
            text-transform: uppercase;
            padding: .75rem 1.8rem;
            background: none;
            border: 1.5px solid rgba(255, 255, 255, .3);
            color: rgba(255, 255, 255, .7);
            cursor: none;
            transition: all .3s
        }

        .smb:hover {
            border-color: #fff;
            color: #fff
        }

        @media(max-width:900px) {
            .feat-vids {
                grid-template-columns: 1fr
            }

            .reels-g {
                grid-template-columns: repeat(2, 1fr)
            }
        }

        @media(max-width:600px) {
            .reels-g {
                grid-template-columns: 1fr
            }
        }

        #network {
            background: var(--paper)
        }

        .net-h {
            font-family: var(--fd);
            font-size: clamp(2rem, 5.5vw, 6rem);
            font-weight: 900;
            color: var(--ink);
            line-height: 1;
            letter-spacing: -.03em;
            margin-bottom: 2rem
        }

        .logo-wrap {
            overflow: hidden;
            position: relative
        }

        .logo-wrap::before,
        .logo-wrap::after {
            content: '';
            position: absolute;
            top: 0;
            width: 60px;
            height: 100%;
            z-index: 5;
            pointer-events: none
        }

        .logo-wrap::before {
            left: 0;
            background: linear-gradient(90deg, var(--paper), transparent)
        }

        .logo-wrap::after {
            right: 0;
            background: linear-gradient(-90deg, var(--paper), transparent)
        }

        .logo-track {
            display: flex;
            width: max-content;
            animation: sl 30s linear infinite;
            border-top: 1px solid var(--rule);
            border-bottom: 1px solid var(--rule)
        }

        .logo-track:hover {
            animation-play-state: paused
        }

        @keyframes sl {
            from {
                transform: translateX(0)
            }

            to {
                transform: translateX(-50%)
            }
        }

        .logo-i {
            width: 140px;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-right: 1px solid var(--rule);
            padding: 0 .8rem;
            flex-shrink: 0
        }

        .logo-i img {
            max-height: 32px;
            max-width: 110px;
            object-fit: contain
        }

        #faq {
            background: var(--paper2)
        }

        .faq-h {
            font-family: var(--fd);
            font-size: clamp(1.8rem, 4vw, 4rem);
            font-weight: 900;
            color: var(--ink);
            letter-spacing: -.03em;
            margin-bottom: 2rem
        }

        .faq-r {
            border-top: 1px solid var(--rule)
        }

        .faq-r:last-child {
            border-bottom: 1px solid var(--rule)
        }

        .faq-btn {
            width: 100%;
            padding: 1.2rem 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: none;
            border: none;
            cursor: none;
            text-align: left;
            transition: padding .3s
        }

        .faq-btn:hover {
            padding-left: .4rem
        }

        .faq-q {
            font-family: var(--fd);
            font-size: 1rem;
            font-weight: 700;
            color: var(--ink)
        }

        .faq-ic {
            font-family: var(--fm);
            font-size: 1.1rem;
            color: var(--blue);
            flex-shrink: 0;
            transition: transform .3s
        }

        .faq-r.open .faq-ic {
            transform: rotate(45deg)
        }

        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height .4s var(--ease), padding .3s
        }

        .faq-r.open .faq-a {
            max-height: 300px;
            padding-bottom: 1.2rem
        }

        .faq-a p {
            font-size: .88rem;
            color: var(--ink4);
            line-height: 1.8;
            max-width: 680px
        }

        #submission {
            background: linear-gradient(135deg, #001540 0%, var(--blue) 100%)
        }

        .sub-lay {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: clamp(2.5rem, 6vw, 8rem);
            align-items: center
        }

        .sub-h {
            font-family: var(--fd);
            font-size: clamp(2rem, 4.5vw, 5rem);
            font-weight: 900;
            color: #fff;
            line-height: 1;
            letter-spacing: -.03em;
            margin-bottom: 1.2rem
        }

        .sub-h em {
            font-style: italic;
            color: rgba(255, 255, 255, .3)
        }

        .sub-copy {
            font-size: .95rem;
            color: rgba(255, 255, 255, .45);
            line-height: 1.8;
            margin-bottom: 2rem
        }

        .sub-trust {
            border-top: 1px solid rgba(255, 255, 255, .12);
            padding-top: 1.5rem;
            display: flex;
            flex-direction: column;
            gap: .5rem
        }

        .trust-l {
            font-family: var(--fm);
            font-size: .62rem;
            letter-spacing: .14em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .3);
            display: flex;
            align-items: center;
            gap: .6rem
        }

        .trust-l::before {
            content: '✓';
            color: var(--gold)
        }

        .fl {
            font-family: var(--fm);
            font-size: .6rem;
            letter-spacing: .18em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .3);
            display: block;
            margin-bottom: .4rem
        }

        .fi {
            width: 100%;
            padding: .85rem 0;
            background: transparent;
            border: none;
            border-bottom: 1px solid rgba(255, 255, 255, .2);
            color: #fff;
            font-family: var(--fd);
            font-size: 1rem;
            outline: none;
            margin-bottom: 1.8rem;
            transition: border-color .3s
        }

        .fi::placeholder {
            color: rgba(255, 255, 255, .15);
            font-style: italic
        }

        .fi:focus {
            border-color: rgba(255, 255, 255, .6)
        }

        .fi-err {
            border-color: #ff6b6b !important
        }

        .f-row {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            margin-top: .8rem;
            flex-wrap: wrap
        }

        .f-note {
            font-size: .72rem;
            color: rgba(255, 255, 255, .2)
        }

        .f-success {
            display: none
        }

        .f-success.show {
            display: block
        }

        .suc-h {
            font-family: var(--fd);
            font-size: 1.8rem;
            font-weight: 700;
            font-style: italic;
            color: #fff;
            margin-bottom: .6rem
        }

        .suc-s {
            font-size: .88rem;
            color: rgba(255, 255, 255, .4);
            margin-bottom: 1.2rem
        }

        .wa-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: .85rem 1.6rem;
            background: #25D366;
            color: #fff;
            font-family: var(--fm);
            font-size: .68rem;
            letter-spacing: .1em;
            text-transform: uppercase;
            transition: opacity .2s
        }

        .wa-btn:hover {
            opacity: .85
        }

        @media(max-width:1100px) {
            .sub-lay {
                grid-template-columns: 1fr;
                gap: 2.5rem
            }
        }

        @media(max-width:600px) {
            .f-row {
                flex-direction: column;
                align-items: flex-start
            }
        }

        footer {
            background: var(--paper);
            border-top: 1px solid var(--rule);
            padding: clamp(4rem, 7vh, 6rem) clamp(1.2rem, 3vw, 3rem) clamp(2rem, 3vh, 2.5rem)
        }

        .ft-inner {
            max-width: 1440px;
            margin: 0 auto
        }

        .ft-top {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 2.5rem;
            padding-bottom: 2.5rem;
            border-bottom: 1px solid var(--rule);
            margin-bottom: 1.5rem
        }

        .ft-brand {
            font-family: var(--fm);
            font-size: .75rem;
            letter-spacing: .18em;
            text-transform: uppercase;
            color: var(--blue);
            margin-bottom: .6rem;
            display: block
        }

        .ft-tag {
            font-family: var(--fd);
            font-style: italic;
            font-size: .95rem;
            color: var(--ink4);
            line-height: 1.6;
            max-width: 260px
        }

        .ft-socs {
            display: flex;
            gap: .8rem;
            margin-top: 1.2rem
        }

        .ft-soc {
            font-family: var(--fm);
            font-size: .6rem;
            letter-spacing: .12em;
            text-transform: uppercase;
            color: var(--ink4);
            border-bottom: 1px solid transparent;
            transition: all .2s
        }

        .ft-soc:hover {
            color: var(--blue);
            border-color: var(--blue)
        }

        .ft-ct {
            font-family: var(--fm);
            font-size: .6rem;
            letter-spacing: .2em;
            text-transform: uppercase;
            color: var(--blue);
            margin-bottom: 1rem;
            display: block;
            opacity: .7
        }

        .ft-col ul {
            list-style: none
        }

        .ft-col li {
            margin-bottom: .4rem
        }

        .ft-col a {
            font-size: .82rem;
            color: var(--ink4);
            transition: color .2s
        }

        .ft-col a:hover {
            color: var(--blue)
        }

        .ft-bot {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: .8rem
        }

        .ft-copy {
            font-family: var(--fm);
            font-size: .6rem;
            letter-spacing: .1em;
            color: var(--ink5)
        }

        .ft-leg {
            display: flex;
            gap: 1.5rem
        }

        .ft-leg a {
            font-family: var(--fm);
            font-size: .6rem;
            letter-spacing: .08em;
            color: var(--ink5);
            transition: color .2s
        }

        .ft-leg a:hover {
            color: var(--blue)
        }

        @media(max-width:1100px) {
            .ft-top {
                grid-template-columns: 1fr 1fr;
                gap: 2rem
            }
        }

        @media(max-width:600px) {
            .ft-top {
                grid-template-columns: 1fr;
                gap: 1.5rem
            }

            .ft-bot {
                flex-direction: column;
                align-items: flex-start
            }
        }

        .ft-legal {
            display: flex;
            flex-wrap: wrap;
            gap: .4rem .8rem;
            align-items: center;
            margin-top: .6rem
        }

        .ft-legal a {
            font-family: var(--fm);
            font-size: .58rem;
            letter-spacing: .08em;
            color: var(--ink5);
            transition: color .2s
        }

        .ft-legal a:hover {
            color: var(--blue)
        }

        .ft-legal-sep {
            font-size: .58rem;
            color: var(--rule)
        }

        .wa-float {
            position: fixed;
            bottom: 2.5rem;
            right: 2rem;
            z-index: 4400;
            width: 50px;
            height: 50px;
            background: var(--blue);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 18px rgba(0, 71, 171, .3);
            transition: transform .3s var(--ease), background .3s
        }

        .wa-float:hover {
            transform: scale(1.1);
            background: #25D366
        }

        .vmodal {
            position: fixed;
            inset: 0;
            z-index: 8000;
            background: rgba(0, 20, 80, .97);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all .3s
        }

        .vmodal.open {
            opacity: 1;
            visibility: visible
        }

        .vmodal iframe {
            width: min(900px, 90vw);
            aspect-ratio: 16/9;
            border: none
        }

        .vmodal-x {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            background: none;
            border: none;
            color: rgba(255, 255, 255, .4);
            font-size: 1.4rem;
            cursor: none;
            font-family: var(--fm);
            transition: color .2s
        }

        .vmodal-x:hover {
            color: #fff
        }

        #exitModal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(0, 21, 64, .9);
            backdrop-filter: blur(5px);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all .4s
        }

        #exitModal.show {
            opacity: 1;
            visibility: visible
        }

        .exit-card {
            background: #fff;
            max-width: 500px;
            padding: 3rem;
            border-radius: 8px;
            text-align: center;
            color: var(--ink);
            margin: 1rem;
            position: relative
        }

        .exit-h {
            font-family: var(--fd);
            font-size: 2rem;
            color: var(--blue);
            margin-bottom: 1rem;
            line-height: 1.2
        }

        .exit-p {
            margin-bottom: 2rem;
            font-size: .95rem;
            color: var(--ink4)
        }

        .exit-close {
            position: absolute;
            top: 1rem;
            right: 1.5rem;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--ink5)
        }

        .exit-btn {
            display: inline-block;
            background: var(--gold);
            color: #fff;
            padding: 1rem 2rem;
            font-weight: 500;
            font-family: var(--fm);
            letter-spacing: .1em;
            text-transform: uppercase;
            font-size: .8rem;
            border-radius: 2px
        }

        #mobCartBar {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--blue);
            color: #fff;
            padding: 1rem;
            text-align: center;
            z-index: 998;
            box-shadow: 0 -4px 10px rgba(0, 0, 0, .2)
        }

        @media(max-width:900px) {
            #mobCartBar.vis {
                display: flex;
                justify-content: space-between;
                align-items: center
            }
        }

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

            *,
            *::before,
            *::after {
                animation-duration: .01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: .01ms !important
            }
        }

        /* ========== FOUNDER ========== */
        #founder {
            background: linear-gradient(170deg, #001540, var(--blue-d));
            color: #fff;
        }

        .founder-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: clamp(3rem, 7vw, 7rem);
            align-items: center;
        }

        .founder-img-wrap {
            position: relative;
        }

        .founder-img {
            width: 100%;
            max-width: 420px;
            aspect-ratio: 3/4;
            object-fit: cover;
            border: 3px solid rgba(201, 162, 39, .4);
            box-shadow: 0 0 60px rgba(201, 162, 39, .15);
        }

        .founder-img-fallback {
            width: 100%;
            max-width: 420px;
            aspect-ratio: 3/4;
            background: linear-gradient(135deg, #001540, var(--blue));
            border: 3px solid rgba(201, 162, 39, .4);
            display: none;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 60px rgba(201, 162, 39, .15);
        }

        .founder-img-fallback span {
            font-family: var(--fd);
            font-size: 4rem;
            font-weight: 900;
            color: rgba(201, 162, 39, .4);
        }

        .founder-role {
            font-family: var(--fm);
            font-size: .7rem;
            letter-spacing: .1em;
            text-transform: uppercase;
            color: var(--gold);
            margin-top: .5rem;
            margin-bottom: 1.5rem;
        }

        .founder-bio {
            font-size: 1rem;
            color: rgba(255, 255, 255, .75);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .founder-pills {
            display: flex;
            flex-wrap: wrap;
            gap: .5rem;
            margin-bottom: 1.5rem;
        }

        .founder-pill {
            background: rgba(255, 255, 255, .07);
            border: 1px solid rgba(255, 255, 255, .12);
            padding: .35rem .9rem;
            font-family: var(--fm);
            font-size: .62rem;
            color: rgba(255, 255, 255, .7);
            letter-spacing: .04em;
        }

        .founder-social {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .founder-social a {
            color: rgba(255, 255, 255, .5);
            font-size: 1.1rem;
            transition: color .2s;
        }

        .founder-social a:hover {
            color: var(--gold);
        }

        .founder-quote {
            font-family: var(--fd);
            font-style: italic;
            font-size: 1.1rem;
            color: rgba(255, 255, 255, .5);
            border-left: 2px solid var(--gold);
            padding-left: 1.2rem;
            max-width: 480px;
            line-height: 1.6;
        }

        .founder-quote cite {
            display: block;
            font-style: normal;
            font-family: var(--fm);
            font-size: .7rem;
            color: var(--gold);
            margin-top: .6rem;
            letter-spacing: .08em;
        }

        @media (max-width: 768px) {
            .founder-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .founder-img {
                max-width: 260px;
                margin: 0 auto;
                border-radius: 50%;
                aspect-ratio: 1 / 1;
                object-fit: cover;
                border: 6px solid #fff;
                box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            }

            .founder-pills {
                justify-content: center;
            }

            .founder-social {
                justify-content: center;
            }

            .founder-quote {
                margin: 0 auto;
                text-align: left;
            }
        }

        /* ========== LOCAL ========== */
        #local {
            background: var(--paper2);
        }

        .local-h {
            font-family: var(--fd);
            font-size: clamp(1.8rem, 4vw, 4rem);
            font-weight: 900;
            margin-bottom: 2.5rem;
            color: var(--ink);
        }

        .local-h em {
            color: var(--blue);
            font-style: italic;
        }

        .local-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }

        .local-col h3 {
            font-family: var(--fd);
            font-weight: 700;
            font-size: 1.15rem;
            color: var(--ink);
            margin-bottom: .8rem;
        }

        .local-col p {
            font-size: .9rem;
            color: var(--ink4);
            line-height: 1.7;
        }

        .local-callout {
            background: linear-gradient(135deg, #001540 0%, var(--blue) 100%);
            border: none;
            padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 4vw, 3rem);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .local-callout::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
        }

        .local-callout::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
        }

        .local-callout p {
            font-size: clamp(1rem, 2vw, 1.2rem);
            color: rgba(255, 255, 255, .8);
            line-height: 1.8;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }

        .local-callout p strong {
            color: #fff;
            font-family: var(--fd);
            font-weight: 700;
            font-size: clamp(1.1rem, 2.5vw, 1.35rem);
            display: block;
            margin-bottom: .6rem;
        }

        .local-callout .callout-cta {
            display: inline-flex;
            align-items: center;
            gap: .6rem;
            background: #25D366;
            color: #fff;
            font-family: var(--fm);
            font-size: .78rem;
            font-weight: 500;
            letter-spacing: .1em;
            text-transform: uppercase;
            padding: .85rem 2rem;
            transition: background .2s, transform .2s, box-shadow .2s;
            position: relative;
            z-index: 1;
            box-shadow: 0 4px 20px rgba(37, 211, 102, .35);
        }

        .local-callout .callout-cta:hover {
            background: #20bd5a;
            transform: translateY(-2px);
            box-shadow: 0 6px 28px rgba(37, 211, 102, .5);
        }

        @media (max-width: 768px) {
            .local-grid {
                grid-template-columns: 1fr;
            }
        }
    