        :root {
            --bg: #0d1b2a;
            /* deep navy */
            --bg-2: #13293d;
            /* slightly lighter */
            --card: #ffffff;
            /* white card */
            --muted: #e9eef4;
            /* soft gray */
            --text: #0b1320;
            /* near-black */
            --brand: #2d81ff;
            /* accent */
            --brand-2: #5bbcff;
            /* accent light */
            --ring: rgba(45, 129, 255, .35);
            --radius: 16px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box
        }

        html,
        body {
            height: 100%
        }

        body {
            margin: 0;
            font: 16px/1.55 system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
            color: var(--text);
            background: linear-gradient(180deg, var(--bg), var(--bg-2) 30%, #1b2b45 70%, #20314d 100%);
            background-attachment: fixed;
        }

        a {
            color: var(--brand);
            text-decoration: none
        }

        a:hover {
            text-decoration: underline
        }

        .container {
            width: min(1100px, 92vw);
            margin-inline: auto
        }

        header {
            position: sticky;
            top: 0;
            z-index: 10;
            backdrop-filter: blur(8px);
            background: color-mix(in oklab, white 10%, transparent);
            border-bottom: 1px solid color-mix(in oklab, white 12%, transparent);
        }

        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 0
        }

        .brand {
            display: flex;
            gap: 10px;
            align-items: center;
            color: #fff;
            font-weight: 700;
            letter-spacing: .2px
        }

        .brand .logo {
            width: 28px;
            height: 28px;
            border-radius: 8px;
            background: linear-gradient(135deg, var(--brand), var(--brand-2));
            box-shadow: 0 0 0 3px #ffffff22 inset
        }

        .nav a {
            color: #e8f1ff;
            margin-left: 18px;
            font-weight: 600
        }

        /* HERO */
        .hero {
            color: #eaf2ff;
            padding: 72px 0 42px 0;
            text-align: center
        }

        .hero h1 {
            font-size: clamp(28px, 4vw, 44px);
            margin: 0 0 10px 0;
            letter-spacing: .3px
        }

        .hero p {
            margin: 0 auto;
            max-width: 800px;
            opacity: .9
        }

        .hero .cta {
            margin-top: 28px;
            display: flex;
            gap: 14px;
            justify-content: center;
            flex-wrap: wrap
        }

        .btn {
            appearance: none;
            border: none;
            border-radius: calc(var(--radius) - 4px);
            padding: 12px 18px;
            font-weight: 700;
            cursor: pointer
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--brand), var(--brand-2));
            color: white;
            box-shadow: 0 8px 24px -8px var(--ring)
        }

        .btn-secondary {
            background: #ffffff;
            color: var(--text)
        }

        .btn:focus-visible {
            outline: 3px solid var(--ring)
        }

        /* PLAN CARDS */
        .plans {
            margin: 36px 0 26px
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px
        }

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

        .card {
            background: var(--card);
            border-radius: var(--radius);
            padding: 22px;
            box-shadow: 0 8px 30px -12px #00000055, 0 1px 0 #00000010 inset;
            border: 1px solid #0d1b2a10
        }

        .card .kicker {
            text-transform: uppercase;
            font-size: 12px;
            letter-spacing: 1px;
            color: #3d5270;
            font-weight: 800
        }

        .card h3 {
            margin: 8px 0 8px;
            font-size: 22px
        }

        .price {
            display: flex;
            align-items: baseline;
            gap: 8px;
            margin: 6px 0 12px
        }

        .price .big {
            font-size: 30px;
            font-weight: 900
        }

        .bullets {
            list-style: none;
            padding: 0;
            margin: 10px 0 14px
        }

        .bullets li {
            padding-left: 28px;
            position: relative;
            margin: 10px 0
        }

        .bullets li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 6px;
            width: 18px;
            height: 18px;
            border-radius: 6px;
            background: linear-gradient(135deg, var(--brand), var(--brand-2));
            box-shadow: 0 0 0 3px #2d81ff15
        }

        .card .actions {
            display: flex;
            gap: 10px;
            flex-wrap: wrap
        }

        /* COMPARE */
        .compare {
            margin: 42px 0;
            background: #ffffff;
            border-radius: var(--radius);
            box-shadow: 0 8px 30px -14px #00000055;
            border: 1px solid #0d1b2a10
        }

        .compare h2 {
            margin: 0;
            padding: 22px 22px 0
        }

        .table {
            overflow: auto;
            padding: 0 22px 22px
        }

        table {
            border-collapse: collapse;
            width: 100%;
            min-width: 720px
        }

        th,
        td {
            border-bottom: 1px solid #e8edf3;
            padding: 12px 10px;
            text-align: left
        }

        th {
            background: #f7f9fc;
            font-size: 14px
        }

        /* WHY US */
        .why {
            color: #eaf2ff;
            padding: 22px 0 60px
        }

        .why h2 {
            text-align: center;
            margin: 0 0 10px 0
        }

        .why .why-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin-top: 16px
        }

        .why .why-card {
            background: #ffffff18;
            border: 1px solid #ffffff26;
            color: #eef6ff;
            border-radius: var(--radius);
            padding: 18px
        }

        @media (max-width: 960px) {
            .why .why-grid {
                grid-template-columns: 1fr
            }
        }

        /* FOOTER */
        footer {
            color: #cde2ff;
            padding: 22px 0 40px;
            border-top: 1px solid #ffffff22;
            text-align: center
        }

        .muted {
            color: #6e7f96
        }