@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700;800&family=JetBrains+Mono:wght@500;700&family=Plus+Jakarta+Sans:wght@700;800&display=swap');

        :root {
            --bg: #0d1119;
            --panel: #141a24;
            --panel2: #101620;
            --ink: #f8fafc;
            --muted: #9aa6b8;
            --line: rgba(255, 255, 255, .09);
            --red: #ef4444;
            --red2: #b91c1c;
            --blue: #3b82f6;
            --cyan: #06b6d4;
            --metal: #cbd5e1;
            --green: #10b981;
            --amber: #f59e0b;
            --shadow: 0 22px 56px rgba(0, 0, 0, .34)
        }

        * {
            box-sizing: border-box
        }

        html {
            scroll-behavior: smooth
        }

        body {
            margin: 0;
            background: radial-gradient(circle at 18% 0%, rgba(239, 68, 68, .16), transparent 30%), radial-gradient(circle at 88% 12%, rgba(59, 130, 246, .18), transparent 34%), linear-gradient(180deg, #0b1018 0%, var(--bg) 55%, #080c12 100%);
            color: var(--ink);
            font-family: 'DM Sans', Arial, sans-serif;
            line-height: 1.65
        }

        img,
        svg {
            max-width: 100%;
            height: auto
        }

        a {
            color: inherit
        }

        .display {
            font-family: 'Plus Jakarta Sans', sans-serif
        }

        .mono {
            font-family: 'JetBrains Mono', monospace
        }

        .lpbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 9px 18px;
            background: #0b0b12;
            border-bottom: 2px solid #caa14b;
            color: #f5f2e8
        }

        .lpbar a {
            text-decoration: none
        }

        .lpbrand {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-weight: 800;
            font-size: 13px;
            letter-spacing: .6px
        }

        .lpdot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #caa14b;
            box-shadow: 0 0 8px #caa14b
        }

        .lpmeta {
            color: #8b8b96;
            font-size: 11px
        }

        .lpall {
            color: #caa14b;
            border: 1px solid rgba(202, 161, 75, .55);
            padding: 5px 11px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 11px;
            white-space: nowrap
        }

        .nav {
            position: sticky;
            top: 0;
            z-index: 50;
            background: rgba(13, 17, 25, .88);
            backdrop-filter: blur(14px);
            border-bottom: 1px solid var(--line)
        }

        .nav-inner {
            width: min(1220px, 100%);
            margin: auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 12px 20px
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none
        }

        .brand-mark {
            width: 36px;
            height: 36px;
            border-radius: 9px;
            background: linear-gradient(135deg, var(--red), var(--blue));
            display: grid;
            place-items: center;
            font-weight: 900;
            color: #fff
        }

        .brand strong {
            font-family: 'Plus Jakarta Sans';
            font-size: 16px
        }

        .links {
            display: flex;
            flex-wrap: wrap;
            gap: 4px
        }

        .links a {
            text-decoration: none;
            color: var(--muted);
            font-size: 12px;
            font-weight: 800;
            padding: 7px 9px;
            border-radius: 7px
        }

        .links a:hover,
        .links a.active {
            color: #fff;
            background: rgba(255, 255, 255, .08)
        }

        .menu {
            display: none;
            border: 1px solid var(--line);
            background: rgba(255, 255, 255, .04);
            color: #fff;
            border-radius: 8px;
            padding: 7px 10px
        }

        .hero {
            min-height: 88vh;
            display: grid;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: #090d13
        }

        .hero:before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(9, 13, 19, .98), rgba(9, 13, 19, .78) 50%, rgba(9, 13, 19, .35)), radial-gradient(circle at 76% 16%, rgba(59, 130, 246, .26), transparent 36%)
        }

        .hero-img {
            position: absolute;
            right: max(20px, calc((100vw - 1200px)/2));
            top: 50%;
            transform: translateY(-50%);
            width: min(540px, 42vw);
            border: 1px solid var(--line);
            border-radius: 18px;
            overflow: hidden;
            box-shadow: var(--shadow);
            opacity: .9
        }

        .hero-img img {
            display: block;
            width: 100%;
            height: auto
        }

        .hero-inner {
            position: relative;
            z-index: 1;
            width: min(1220px, 100%);
            margin: auto;
            padding: 92px 20px 120px
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: 1px solid rgba(255, 255, 255, .12);
            background: rgba(255, 255, 255, .05);
            border-radius: 999px;
            padding: 8px 13px;
            color: #cbd5e1;
            font: 700 12px/1 'JetBrains Mono';
            text-transform: uppercase;
            letter-spacing: .12em
        }

        .badge-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--red);
            box-shadow: 0 0 18px var(--red)
        }

        h1 {
            font-family: 'Plus Jakarta Sans';
            font-size: clamp(42px, 7vw, 82px);
            line-height: .98;
            margin: 24px 0 18px;
            max-width: 780px;
            letter-spacing: -.045em
        }

        .grad-red {
            background: linear-gradient(135deg, #fb7185, var(--red2));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent
        }

        .lead {
            max-width: 650px;
            color: #cbd5e1;
            font-size: clamp(17px, 2vw, 21px)
        }

        .actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 30px
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            border-radius: 8px;
            padding: 12px 17px;
            font-weight: 900;
            background: linear-gradient(135deg, var(--red), var(--red2));
            color: #fff;
            box-shadow: 0 14px 32px rgba(239, 68, 68, .22)
        }

        .btn.secondary {
            background: rgba(255, 255, 255, .06);
            border: 1px solid rgba(255, 255, 255, .14);
            box-shadow: none
        }

        .stats {
            position: relative;
            z-index: 2;
            width: min(1180px, 100%);
            margin: -56px auto 0;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 14px
        }

        .stat {
            background: linear-gradient(145deg, var(--panel), #111827);
            border: 1px solid var(--line);
            border-radius: 13px;
            padding: 18px;
            text-align: center;
            box-shadow: var(--shadow)
        }

        .stat b {
            display: block;
            font: 800 28px/1 'Plus Jakarta Sans';
            color: #fff
        }

        .stat span {
            display: block;
            margin-top: 7px;
            color: var(--muted);
            font-size: 12px
        }

        .section {
            padding: 82px 20px
        }

        .wrap {
            width: min(1180px, 100%);
            margin: auto
        }

        .section-head {
            max-width: 820px;
            margin-bottom: 34px
        }

        .eyebrow {
            font: 800 12px/1 'JetBrains Mono';
            text-transform: uppercase;
            letter-spacing: .16em;
            color: var(--blue);
            margin-bottom: 9px
        }

        .red .eyebrow {
            color: #fb7185
        }

        h2 {
            font-family: 'Plus Jakarta Sans';
            font-size: clamp(31px, 4.8vw, 54px);
            line-height: 1.03;
            margin: 0 0 12px;
            letter-spacing: -.035em
        }

        .muted,
        .section-head p {
            color: var(--muted);
            margin: 0
        }

        .grid {
            display: grid;
            gap: 18px
        }

        .g2 {
            grid-template-columns: repeat(2, minmax(0, 1fr))
        }

        .g3 {
            grid-template-columns: repeat(3, minmax(0, 1fr))
        }

        .g4 {
            grid-template-columns: repeat(4, minmax(0, 1fr))
        }

        .card {
            background: linear-gradient(180deg, var(--panel), var(--panel2));
            border: 1px solid var(--line);
            border-radius: 14px;
            padding: 22px;
            box-shadow: 0 1px 2px rgba(0, 0, 0, .22);
            min-width: 0
        }

        .card h3 {
            font-family: 'Plus Jakarta Sans';
            font-size: 21px;
            line-height: 1.18;
            margin: 0 0 8px
        }

        .card p {
            color: var(--muted);
            font-size: 14px;
            margin: 0
        }

        .product {
            position: relative;
            overflow: hidden
        }

        .product:before {
            content: "";
            position: absolute;
            inset: 0 0 auto;
            height: 3px;
            background: linear-gradient(90deg, var(--accent), transparent)
        }

        .product .line {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            margin-top: 16px;
            padding-top: 14px;
            border-top: 1px solid var(--line)
        }

        .pill {
            display: inline-flex;
            border: 1px solid color-mix(in srgb, var(--accent), transparent 55%);
            background: color-mix(in srgb, var(--accent), transparent 88%);
            color: color-mix(in srgb, var(--accent), white 34%);
            border-radius: 999px;
            padding: 5px 8px;
            font: 800 11px/1 'JetBrains Mono'
        }

        .specs {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 8px;
            margin-top: 16px
        }

        .spec {
            background: rgba(255, 255, 255, .04);
            border: 1px solid var(--line);
            border-radius: 8px;
            padding: 10px
        }

        .spec b {
            display: block;
            color: #fff;
            font: 800 16px/1.1 'JetBrains Mono'
        }

        .spec span {
            display: block;
            color: var(--muted);
            font-size: 10px;
            margin-top: 4px;
            text-transform: uppercase;
            letter-spacing: .06em
        }

        .feature-list {
            list-style: none;
            margin: 15px 0 0;
            padding: 0;
            display: grid;
            gap: 8px
        }

        .feature-list li {
            color: #cbd5e1;
            font-size: 13px;
            display: flex;
            gap: 8px
        }

        .feature-list li:before {
            content: "";
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--accent);
            margin-top: .62em;
            flex: 0 0 auto
        }

        .band {
            background: linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, .015));
            border-block: 1px solid var(--line)
        }

        .comparison {
            overflow-x: auto;
            border: 1px solid var(--line);
            border-radius: 14px;
            background: var(--panel)
        }

        table {
            border-collapse: collapse;
            width: 100%;
            min-width: 780px
        }

        th {
            background: #0c111a;
            color: #e5e7eb;
            text-align: left;
            padding: 13px;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: .08em
        }

        td {
            padding: 13px;
            border-bottom: 1px solid var(--line);
            color: #cbd5e1;
            font-size: 13px
        }

        td:first-child {
            font-weight: 900;
            color: #fff
        }

        .win {
            color: #86efac;
            font-weight: 900
        }

        .lose {
            color: #fca5a5
        }

        .about-card {
            display: flex;
            gap: 15px
        }

        .icon {
            width: 42px;
            height: 42px;
            border-radius: 10px;
            display: grid;
            place-items: center;
            flex: 0 0 auto;
            background: rgba(255, 255, 255, .06);
            border: 1px solid var(--line)
        }

        .chem {
            background: linear-gradient(135deg, #111827, #0e1626);
            border: 1px solid var(--line);
            border-radius: 16px;
            padding: 28px
        }

        .chem-grid {
            display: grid;
            grid-template-columns: 1.1fr .9fr;
            gap: 24px
        }

        .chem-props {
            display: grid;
            gap: 9px
        }

        .chem-props div {
            display: flex;
            justify-content: space-between;
            gap: 16px;
            border-bottom: 1px solid var(--line);
            padding-bottom: 8px;
            color: var(--muted);
            font-size: 13px
        }

        .chem-props b {
            color: #fff;
            font-family: 'JetBrains Mono'
        }

        .footer {
            border-top: 1px solid var(--line);
            padding: 30px 20px;
            color: var(--muted);
            text-align: center;
            font-size: 12px
        }

        .top {
            position: fixed;
            right: 18px;
            bottom: 18px;
            display: none;
            border: 0;
            border-radius: 8px;
            background: var(--blue);
            color: #fff;
            font-weight: 900;
            padding: 10px 13px;
            box-shadow: var(--shadow);
            cursor: pointer
        }

        .reveal {
            opacity: 0;
            transform: translateY(14px);
            transition: opacity .55s ease, transform .55s ease
        }

        .reveal.visible {
            opacity: 1;
            transform: none
        }

        @media(max-width:960px) {
            .hero-img {
                position: relative;
                right: auto;
                top: auto;
                transform: none;
                width: min(760px, 100%);
                margin: 0 20px 60px
            }

            .hero {
                padding-bottom: 0
            }

            .stats,
            .g2,
            .g3,
            .g4,
            .chem-grid {
                grid-template-columns: 1fr
            }

            .links {
                display: none
            }

            .links.open {
                display: flex;
                position: absolute;
                left: 12px;
                right: 12px;
                top: 61px;
                background: #111827;
                border: 1px solid var(--line);
                border-radius: 10px;
                padding: 10px;
                box-shadow: var(--shadow)
            }

            .menu {
                display: block
            }

            .specs {
                grid-template-columns: 1fr
            }
        }

        @media(max-width:560px) {
            .lpmeta {
                display: none
            }

            .section {
                padding: 58px 16px
            }

            .hero-inner {
                padding: 72px 16px 38px
            }

            .stats {
                padding: 0 16px;
                margin-top: -34px
            }

            .card {
                padding: 18px
            }

            h1 {
                font-size: 42px
            }

            .hero-img {
                margin-inline: 16px
            }

            .about-card {
                display: block
            }

            .icon {
                margin-bottom: 12px
            }
        }
