        * {
            box-sizing: border-box;
            margin: 0;
        }

        :root {
            --main-color: #38BDF8;
            --secondary-color: #0f4d8a;
            --secondary-color-hover: #0c3b6a;
            --border: #323334; 
            --border-soft: #e6eef3;
            --bg-3: #04111f;
            --t: .35s cubic-bezier(.4,0,.2,1);
            font-size: 18px;
            scroll-behavior: smooth;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            background: #0f172a;
            color: #fff;
            line-height: 1.6;
            word-break: keep-all;
            /* overflow-wrap: break-word; */
        }

        ._container {
            padding: 0;
        }

        ._container--mw {
            max-width: 950px;
            margin-left: auto;
            margin-right: auto;
            padding: 0 1.6rem 1.6rem
        }

        .bg-1 {
            background-color: var(--main-color);
        }

        .bg-2 {
            background-color: var(--secondary-color);
        }

        .bg-3 {
            background-color: var(--bg-3);
        }

        .bg-4{
            background-color: black;
        }
        
        ._bg--fx{
            background:
            radial-gradient(circle at top right, #2563eb33, transparent 35%),
            radial-gradient(circle at bottom left, #06b6d433, transparent 35%),
            #0f172a;
        }

        /* HEADINGS */
        .t1 {
            font-size: 2.2rem;
            line-height: 95%;
        }

        .t2 {
            font-size: 1.8rem;
            line-height: 95%;
        }

        .t3 {
            font-size: 1.9rem;
            line-height: 95%;
        }

        .t4 {
            font-size: 1.8rem;
            line-height: 95%;
        }

        .text--gray {
            color: rgb(231, 231, 231);
            font-size: 16px;
        }

        .color-1{
            color: var(--main-color);
        }

        .color-2{
            color: var(--secondary-color);
        }

        .color-3{
            color: grey;
        }

        .black{
            color: black;
        }

        .white{
            color:white;
        }

        .white a{
            color:white;
        }

        .va--middle{
            vertical-align: middle;
        }

        .td--none a{
            text-decoration: none;
        }

        .highlight {
            background: linear-gradient(135deg, var(--main-color) 0%, var(--secondary-color) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
        }

        .highlight-t1 {
            font-size: 27px;
        }

        .hero {
            padding-top: 1rem;
            text-align: center;
        }

        .badge {
            width: 100%;
            max-width: 240px;
            padding: 6px 16px;
            border: 1px solid rgba(255, 255, 255, .15);
            border-radius: 999px;
            background: rgba(255, 255, 255, .05);
            margin: 2rem auto;
            font-size: .9rem;
        }

        .badge__bullet {
            color: var(--secondary-color);
            line-height: 0;
            justify-content: center;
            margin-right: 7px;
        }

        ._btn {
            display: inline-block;
            width: 100%;
            max-width: 250px;
            border-radius: 16px;
            color: white;
            letter-spacing: 2px;
            cursor: pointer;
        }

        ._btn:hover {
            background-color: var(--secondary-color-hover);
        }

        a._btn {
            text-decoration: none;

        }

        ._btn-mark {
            background-color: var(--secondary-color);
            border: 1px solid rgba(0, 0, 0, 0.76);
            font-size: inherit;
        }

        ._btn--ghost {
            background-color: transparent;
            border: 1px solid white;
        }

        a._btn--ghost {
            color: white;
            
        }

        ._cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        ._cards__box {
            padding: 1.5rem;
            border-radius: 16px;
            background-color: rgba(255, 255, 255, .05);
            border: 1px solid rgba(255, 255, 255, .15);
        }

        ._cards__icons {
            width: 35px;
            /* margin: 0 auto; */
        }

        .text-main {
            color: var(--main-color);
        }

        .text-small {
            font-size: 0.75rem;
        }

        .text-small--gray {
            color: gray;
        }

        /* Helpers */
        .center {
            text-align: center;
        }

        .center-flex{
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .left{
            text-align: left;
        }

        .right{
            text-align: right;
        }

        .bold {
            font-weight: bold;
        }

        .mt-1 {
            margin-top: 1rem;
        }

        .mt-2 {
            margin-top: 2rem;
        }

        .mt-3 {
            margin-top: 3rem;
        }

        .mt-4 {
            margin-top: 4rem;
        }

        .mt-5 {
            margin-top: 5rem;
        }

        .mb-1 {
            margin-bottom: 1rem;
        }

        .mb-2 {
            margin-bottom: 2rem;
        }

        .mb-3 {
            margin-bottom: 3rem;
        }

        .mb-4 {
            margin-bottom: 4rem;
        }

        .mb-5 {
            margin-bottom: 5rem;
        }

        .p-1 {
            padding: 0.6rem;
        }

        .p-2 {
            padding: 0.8rem;
        }

        .p-3 {
            padding: 3rem;
        }

        .p-4 {
            padding: 4rem;
        }

        .p-5 {
            padding: 5rem;
        }

        .pt-1 {
            padding-top: 1rem;
        }

        .pt-2 {
            padding-top: 2rem;
        }

        .pt-3 {
            padding-top: 3rem;
        }

        .pt-4 {
            padding-top: 4rem;
        }

        .pt-5 {
            padding-top: 5rem;
        }

        .pb-1 {
            padding-bottom: 1rem;
        }

        .pb-2 {
            padding-bottom: 2rem;
        }

        .pb-3 {
            padding-bottom: 3rem;
        }

        .pb-4 {
            padding-bottom: 4rem;
        }

        .pb-5 {
            padding-bottom: 5rem;
        }

        .b-1{
            border: 1px solid var(--main-color);
        }

        .b-top-black{
            border-top: 2px solid black;
        }

        .bs-1{
            /* box-shadow: 2px 2px 22px rgb(186, 185, 185); */
            box-shadow: 2px 2px 22px var(--main-color);
        }

        .italic{
            font-style: italic;
        }

        .color-main {
            color: var(--main-color);
        }

        /* === NAV === */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 20px;
  background: rgba(15,20,24,.75);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid #161e24;
  transition: background var(--t), border-color var(--t);
}
.nav-links { display: none; list-style: none; gap: 28px; align-items: center; }
.nav-links a {
  color: #b1b3b5; text-decoration: none; font-size: 14px;
  font-weight: 500; transition: color var(--t); position: relative;
}
.nav-links a:hover { color: #e9ede5; }
.nav-links a::after {
  content: ''; position: absolute; bottom: -6px; left: 0;
  width: 0; height: 2px; background: var(--main-color); transition: width var(--t);
}
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.theme-toggle, .menu-btn {
  width: 38px; height: 38px; border: 1px solid var(--border);
  background: #0f1418; border-radius: 9px; cursor: pointer;
  display: grid; place-items: center; color: #e9ede5; transition: all var(--t);
}
.theme-toggle:hover, .menu-btn:hover { border-color: var(--main-color); color: var(--main-color); }
.theme-toggle svg, .menu-btn svg { width: 18px; height: 18px; }
[data-theme="dark"] .icon-sun { display: block; }
[data-theme="dark"] .icon-moon { display: none; }
[data-theme="light"] .icon-sun { display: none; }
[data-theme="light"] .icon-moon { display: block; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 9px; font-family: inherit;
  font-size: 14px; font-weight: 500; text-decoration: none; cursor: pointer;
  border: 1px solid transparent; transition: all var(--t); white-space: nowrap; justify-content: center;
}
.btn--mw{
  min-width: 250px;
}
.btn--cta{
  font-size: 18px;
}
.btn-primary { background: var(--main-color); color: #000; border-color: var(--main-color); }
[data-theme="dark"] .btn-primary { color: #0a0d10; }
[data-theme="light"] .btn-primary { color: #fff; }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(56,189,248,.12); }
.btn-ghost { background: transparent; color: #e9ede5; border-color: var(--border); }
.btn-ghost:hover { border-color: var(--main-color); color: var(--main-color); }
.btn-lg { padding: 14px 26px; font-size: 15px; }
.nav-actions .btn-primary { display: none; }

@media (min-width: 880px) {
  .nav-links { display: flex; }
  .menu-btn { display: none; }
  .nav-actions .btn-primary { display: inline-flex; }
}
.mobile-menu {
  position: fixed; top: 70px; left: 16px; right: 16px;
  background: #131a20f3; border: 1px solid var(--border);
  border-radius: 16px; padding: 10px; z-index: 99;
  transform: translateY(-10px); opacity: 0; pointer-events: none;
  transition: all var(--t); box-shadow: 0 10px 40px rgba(0,0,0,.5);
}
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu a {
  display: block; padding: 12px 14px; color: #e9ede5;
  text-decoration: none; border-radius: 6px; font-size: 15px; font-weight: 500;
}
.mobile-menu a:hover { background: rgba(56,189,248,.12); color: var(--main-color); }
@media (min-width: 880px) { .mobile-menu { display: none !important; } }
@media (max-width: 480px) {
  nav { padding: 12px 16px; }
}


        /* LOGO */

        .logo {
            font-weight: 600; 
            font-size: 20px;
            color: #e9ede5; 
            text-decoration: none;
            display: flex; 
            align-items: center; 
            gap: 10px;
            }
        .logo-mark {
            width: 28px; height: 28px; border-radius: 8px;
            display: grid; place-items: center; 
            overflow: hidden; flex-shrink: 0;
            }
        .logo-mark img { width: 100%; height: 100%; object-fit: contain; }
        .logo span { color: #38BDF8; margin-left: -8px; }

        /* === AUDIT MARQUEE === */
        .audit-marquee {
            position: relative;
            width: 100%;
            max-width: 1000px;
            margin: 40px auto 0;
            overflow: hidden;
            mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
            -webkit-mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
        }

        .marquee-track {
            display: flex;
            gap: 60px;
            width: max-content;
            animation: scrollLeft 30s linear infinite;
        }

        @media (prefers-reduced-motion: reduce) {
            .marquee-track {
                animation: none;
            }
        }

        @keyframes scrollLeft {
            from {
                transform: translateX(0);
            }

            to {
                transform: translateX(-50%);
            }
        }

        .marquee-item {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(20px, 3vw, 32px);
            font-weight: 700;
            color: var(--main-color);
            display: flex;
            align-items: center;
            gap: 20px;
            white-space: nowrap;
            transition: color 0.3s ease;
        }

        .marquee-item:hover {
            color: white;
        }

        .marquee-item::after {
            content: '✦';
            font-size: 0.6em;
        }

        /* === FORM SECTION === */

        .optin-form input {
            padding: 9px;
            font-size: 15px;
        }
        .form--borders{
            border-top: 2px solid var(--secondary-color);
            border-bottom: 2px solid var(--secondary-color);
        }

        /* === TERMINAL === */
        .terminal {
        background: #131a2070; 
        border: 1px solid var(--border);
        border-radius: 16px; 
        overflow: hidden; 
        box-shadow: 0 10px 40px rgba(0,0,0,.5);
        font-family: 'JetBrains Mono', monospace; 
        font-size: 12.5px; 
        max-width: 450px; 
        margin: 0 auto 60px;
        }
        .terminal-head {
        display: flex; align-items: center; gap: 7px; padding: 12px 16px;
        background: #0f1418; border-bottom: 1px solid var(--border);
        }
        .term-dot { width: 11px; height: 11px; border-radius: 50%; flex-shrink: 0; }
        .term-dot.r { background: #ff5f57; } .term-dot.y { background: #febc2e; } .term-dot.g { background: #28c840; }
        .terminal-title { margin-left: auto; font-size: 11px; color: #b1b3b5; font-family: inherit, monospace; }
        .terminal-body { padding: 20px; line-height: 1.7; color: #e9ede5; min-height: 280px; max-height: 320px; overflow: hidden; }
        .term-line { display: block; min-height: 1.7em; }
        .term-prompt { color: #38BDF8; margin-right: 6px; }
        .term-out { color: #b1b3b5; }
        .term-ok { color: #0f4d8a; font-weight: bold; }

        /* === TABLES === */
        .table-wrap {
        overflow-x: auto; -webkit-overflow-scrolling: touch;
        border-radius: 16px; border: 1px solid var(--border);
        background: #131a2070; scrollbar-width: thin;
        scrollbar-color: #38BDF8 #0f1418; max-width: 100%;
        }
        .table-wrap::-webkit-scrollbar { height: 8px; }
        .table-wrap::-webkit-scrollbar-track { background: #0f1418; border-radius: 0 0 16px 16px; }
        .table-wrap::-webkit-scrollbar-thumb { background: linear-gradient(90deg, #38BDF8, #0f4d8a); border-radius: 4px; border: 1px solid #0f1418; }
        .table-wrap::-webkit-scrollbar-thumb:hover { background: #38BDF8; }
        table { width: 100%; border-collapse: collapse; min-width: 480px; }
        thead { background: #0f1418; }
        th {
        text-align: left; padding: 14px 18px; font-size: 11px; font-weight: 600;
        text-transform: uppercase; letter-spacing: .06em; color: #b1b3b5;
        border-bottom: 1px solid var(--border); white-space: nowrap;
        }
        td { padding: 14px 18px; font-size: 14px; border-bottom: 1px solid #161e24; vertical-align: top; }
        tbody tr { transition: background .35s cubic-bezier(.4,0,.2,1); }
        tbody tr:hover { background: rgba(56,189,248,.12); }
        tbody tr:last-child td { border-bottom: none; }
        .code-cell { font-family: 'JetBrains Mono', monospace; font-size: 13px; color: #38BDF8; white-space: nowrap; font-weight: 500; }
        .table-hint { font-size: 11px; color: #4d5852; text-align: right; margin-top: 10px; font-family: 'JetBrains Mono', monospace; display: flex; align-items: center; justify-content: flex-end; gap: 6px; }
        .table-hint::before { content: '←→'; font-size: 13px; color: #38BDF8; }
        .compare-table td:not(:first-child) { text-align: center; }
        .compare-table .yes { color: #38BDF8; font-weight: 600; }
        .compare-table .no { color: #4d5852; }
        .compare-table .highlight { background: rgba(56,189,248,.12); }
        .compare-table .highlight td:first-child { font-weight: 600; }
        .compare-table th:nth-child(2) { color: #38BDF8; }

        /* === FAQ === */
        .faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
        .faq-item { background: #131a2070; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; transition: border-color var(--t); }
        .faq-item.open { border-color: #38BDF8; }
        .faq-q {
        width: 100%; text-align: left; background: none; border: none; color: #e9ede5;
        font-family: inherit; font-size: 15px; font-weight: 500; padding: 18px 22px;
        cursor: pointer; display: flex; justify-content: space-between; align-items: center;
        gap: 16px; transition: color var(--t);
        }
        .faq-q:hover { color: #38BDF8; }
        .faq-icon { flex-shrink: 0; width: 20px; height: 20px; position: relative; transition: transform var(--t); }
        .faq-icon::before, .faq-icon::after { content: ''; position: absolute; background: currentColor; border-radius: 2px; }
        .faq-icon::before { width: 14px; height: 2px; top: 9px; left: 3px; }
        .faq-icon::after { width: 2px; height: 14px; top: 3px; left: 9px; transition: transform var(--t), opacity var(--t); }
        .faq-item.open .faq-icon::after { transform: rotate(90deg); opacity: 0; }
        .faq-a { max-height: 0; overflow: hidden; transition: max-height var(--t); }
        .faq-a-inner { padding: 0 22px 20px; color: #b1b3b5; font-size: 14px; line-height: 1.7; }
        .faq-a-inner p + p { margin-top: 12px; }
        .faq-a-inner ul { padding-left: 22px; margin: 10px 0; }
        .faq-a-inner li { margin-bottom: 8px; }
        .faq-a-inner li strong { color: #e9ede5; }

        /* Escritorio */
        @media (min-width: 541px) {
            .t1 {
                font-size: 4.4rem;
            }

            .t2 {
                font-size: 3rem;
            }

        }