*, *::before, *::after {
                box-sizing: border-box;
                margin: 0;
                padding: 0;
            }

            :root {
                --red: #dc1c1c;
                --red_hi: #ff4444;
                --red_lo: #7a0a0a;
                --red_glow: rgba(220, 28, 28, 0.35);
                --bg: #060608;
                --glass_bg: rgba(255,255,255,0.032);
                --glass_border: rgba(255,255,255,0.09);
                --glass_border_top: rgba(255,255,255,0.18);
                --text: rgba(255,255,255,0.9);
                --text_muted: rgba(255,255,255,0.35);
                --text_dim: rgba(255,255,255,0.13);
            }

            html {
                scroll-behavior: smooth;
            }

            body {
                font-family: "DM Sans", sans-serif;
                background: var(--bg);
                color: var(--text);
                min-height: 100vh;
                overflow-x: hidden;
                cursor: none;
            }

            .cursor {
                position: fixed;
                pointer-events: none;
                z-index: 9999;
                mix-blend-mode: difference;
            }

            .cursor_dot {
                width: 8px;
                height: 8px;
                background: #fff;
                border-radius: 50%;
                position: absolute;
                transform: translate(-50%, -50%);
                transition: transform 0.15s, width 0.15s, height 0.15s;
            }

            .cursor_ring {
                width: 32px;
                height: 32px;
                border: 1.5px solid rgba(255,255,255,0.5);
                border-radius: 50%;
                position: absolute;
                transform: translate(-50%, -50%);
                transition: transform 0.38s cubic-bezier(0.22,1,0.36,1), width 0.25s, height 0.25s, opacity 0.25s;
            }

            body:has(button:hover) .cursor_ring,
            body:has(a:hover) .cursor_ring {
                width: 48px;
                height: 48px;
                opacity: 0.5;
            }

            body::before {
                content: "";
                position: fixed;
                inset: 0;
                z-index: 1;
                background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
                background-size: 200px;
                pointer-events: none;
            }

            .mesh {
                position: fixed;
                inset: 0;
                z-index: 0;
                background: radial-gradient(ellipse 70% 55% at 50% -10%, rgba(160,8,8,0.45) 0%, transparent 65%),
                            radial-gradient(ellipse 40% 40% at 15% 80%, rgba(100,4,4,0.18) 0%, transparent 60%),
                            radial-gradient(ellipse 50% 50% at 85% 90%, rgba(80,3,3,0.14) 0%, transparent 55%),
                            var(--bg);
                animation: mesh_breathe 8s ease-in-out infinite;
            }

            @keyframes mesh_breathe {
                0%, 100% { opacity: 1; }
                50% { opacity: 0.82; }
            }

            .grid_lines {
                position: fixed;
                inset: 0;
                z-index: 0;
                background-image:
                    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
                background-size: 64px 64px;
                mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 0%, transparent 80%);
                -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 0%, transparent 80%);
            }

            .orb {
                position: fixed;
                border-radius: 50%;
                pointer-events: none;
                z-index: 0;
                filter: blur(80px);
                animation: orb_float linear infinite;
            }

            .orb_1 {
                width: 420px;
                height: 420px;
                background: radial-gradient(circle, rgba(180,8,8,0.22) 0%, transparent 70%);
                top: -80px;
                left: -80px;
                animation-duration: 22s;
                animation-name: orb_1_move;
            }

            .orb_2 {
                width: 340px;
                height: 340px;
                background: radial-gradient(circle, rgba(140,5,5,0.16) 0%, transparent 70%);
                bottom: -60px;
                right: -40px;
                animation-duration: 28s;
                animation-name: orb_2_move;
            }

            @keyframes orb_1_move {
                0%, 100% { transform: translate(0,0) scale(1); }
                33% { transform: translate(80px, 60px) scale(1.08); }
                66% { transform: translate(-30px, 120px) scale(0.92); }
            }

            @keyframes orb_2_move {
                0%, 100% { transform: translate(0,0) scale(1); }
                40% { transform: translate(-60px, -80px) scale(1.1); }
                70% { transform: translate(40px, -30px) scale(0.95); }
            }

            .nav_wrap {
                position: fixed;
                top: 18px;
                left: 50%;
                transform: translateX(-50%);
                z-index: 100;
                animation: slide_down 0.8s cubic-bezier(0.22,1,0.36,1) 0.1s both;
            }

            @keyframes slide_down {
                from { opacity: 0; transform: translateX(-50%) translateY(-20px); }
                to { opacity: 1; transform: translateX(-50%) translateY(0); }
            }

            .nav {
                display: flex;
                align-items: center;
                gap: 2px;
                padding: 5px 5px 5px 16px;
                border-radius: 99px;
                position: relative;
            }

            .nav::before {
                content: "";
                position: absolute;
                inset: 0;
                border-radius: 99px;
                background: rgba(12,6,6,0.45);
                backdrop-filter: blur(28px) saturate(1.6) brightness(1.1);
                -webkit-backdrop-filter: blur(28px) saturate(1.6) brightness(1.1);
                border: 1px solid rgba(255,255,255,0.1);
                border-top-color: rgba(255,255,255,0.22);
                border-bottom-color: rgba(0,0,0,0.4);
                box-shadow:
                    0 0 0 0.5px rgba(0,0,0,0.6),
                    0 1px 0 rgba(255,255,255,0.08) inset,
                    0 -1px 0 rgba(0,0,0,0.35) inset,
                    0 20px 60px rgba(0,0,0,0.8),
                    0 0 40px rgba(140,5,5,0.12);
            }

            .nav::after {
                content: "";
                position: absolute;
                top: 0;
                left: 10%;
                right: 10%;
                height: 1px;
                background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
                border-radius: 99px;
            }

            .nav_brand {
                position: relative;
                z-index: 1;
                font-size: 13px;
                font-weight: 800;
                letter-spacing: -0.025em;
                color: rgba(255,255,255,0.92);
                margin-right: 8px;
            }

            .nav_brand em {
                font-style: normal;
                color: var(--red_hi);
            }

            .nav_sep {
                position: relative;
                z-index: 1;
                width: 1px;
                height: 16px;
                background: rgba(255,255,255,0.08);
                margin: 0 4px;
            }

            .nav_link {
                position: relative;
                z-index: 1;
                padding: 7px 14px;
                border-radius: 99px;
                font-size: 12px;
                font-weight: 500;
                color: var(--text_muted);
                text-decoration: none;
                transition: color 0.2s, background 0.2s;
                letter-spacing: -0.01em;
            }

            .nav_link:hover {
                color: rgba(255,255,255,0.8);
                background: rgba(255,255,255,0.06);
            }

            .nav_cta {
                position: relative;
                z-index: 1;
                padding: 8px 18px;
                border-radius: 99px;
                font-size: 12px;
                font-weight: 700;
                letter-spacing: -0.01em;
                color: #fff;
                text-decoration: none;
                overflow: hidden;
                background: linear-gradient(175deg, rgba(230,40,40,1) 0%, rgba(120,8,8,1) 100%);
                box-shadow:
                    inset 0 1px 0 rgba(255,120,120,0.3),
                    inset 0 -1px 0 rgba(0,0,0,0.25),
                    0 0 20px rgba(180,12,12,0.4);
                transition: box-shadow 0.2s, transform 0.15s;
            }

            .nav_cta::after {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                height: 50%;
                background: linear-gradient(180deg, rgba(255,255,255,0.14), transparent);
                border-radius: 99px 99px 0 0;
            }

            .nav_cta:hover {
                transform: translateY(-1px);
                box-shadow:
                    inset 0 1px 0 rgba(255,120,120,0.3),
                    inset 0 -1px 0 rgba(0,0,0,0.25),
                    0 0 30px rgba(200,15,15,0.55);
            }

            .hero {
                position: relative;
                z-index: 10;
                text-align: center;
                padding: 148px 24px 56px;
                animation: fade_up 0.9s cubic-bezier(0.22,1,0.36,1) 0.3s both;
            }

            @keyframes fade_up {
                from { opacity: 0; transform: translateY(24px); }
                to { opacity: 1; transform: translateY(0); }
            }

            .hero_eyebrow {
                display: inline-flex;
                align-items: center;
                gap: 8px;
                padding: 5px 14px 5px 10px;
                border-radius: 99px;
                background: rgba(180,8,8,0.1);
                border: 1px solid rgba(220,28,28,0.2);
                font-size: 11px;
                font-weight: 600;
                letter-spacing: 0.08em;
                text-transform: uppercase;
                color: rgba(255,80,80,0.7);
                margin-bottom: 24px;
                animation: fade_up 0.7s cubic-bezier(0.22,1,0.36,1) 0.15s both;
            }

            .hero_eyebrow_dot {
                width: 6px;
                height: 6px;
                border-radius: 50%;
                background: var(--red_hi);
                box-shadow: 0 0 8px var(--red_hi);
                animation: pulse_dot 2s ease-in-out infinite;
            }

            @keyframes pulse_dot {
                0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 8px var(--red_hi); }
                50% { opacity: 0.6; transform: scale(0.8); box-shadow: 0 0 4px var(--red_hi); }
            }

            .hero h2 {
                font-size: clamp(52px, 8.5vw, 96px);
                font-weight: 900;
                line-height: 0.95;
                letter-spacing: -0.048em;
                color: #fff;
                margin-bottom: 20px;
            }

            .hero h2 .line_1 {
                display: block;
                animation: word_reveal 0.7s cubic-bezier(0.22,1,0.36,1) 0.4s both;
            }

            .hero h2 .line_2 {
                display: block;
                animation: word_reveal 0.7s cubic-bezier(0.22,1,0.36,1) 0.55s both;
            }

            @keyframes word_reveal {
                from { opacity: 0; transform: translateY(20px) skewY(1.5deg); }
                to { opacity: 1; transform: translateY(0) skewY(0); }
            }

            .hero h2 em {
                font-style: normal;
                background: linear-gradient(135deg, #ff5555 0%, #cc1111 50%, #ff3333 100%);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
                filter: drop-shadow(0 0 30px rgba(220,28,28,0.4));
            }

            .hero_sub {
                font-size: 15px;
                font-weight: 400;
                color: var(--text_muted);
                letter-spacing: -0.01em;
                line-height: 1.6;
                max-width: 380px;
                margin: 0 auto 32px;
                animation: fade_up 0.7s cubic-bezier(0.22,1,0.36,1) 0.65s both;
            }

            .hero_stats {
                display: inline-flex;
                gap: 32px;
                animation: fade_up 0.7s cubic-bezier(0.22,1,0.36,1) 0.75s both;
            }

            .stat {
                text-align: center;
            }

            .stat_val {
                font-size: 22px;
                font-weight: 800;
                letter-spacing: -0.04em;
                color: #fff;
                display: block;
            }

            .stat_val em {
                font-style: normal;
                color: var(--red_hi);
            }

            .stat_label {
                font-size: 10px;
                font-weight: 500;
                letter-spacing: 0.1em;
                text-transform: uppercase;
                color: var(--text_dim);
                display: block;
                margin-top: 2px;
            }

            .stat_sep {
                width: 1px;
                background: rgba(255,255,255,0.07);
                align-self: stretch;
            }

            .main {
                position: relative;
                z-index: 10;
                max-width: 980px;
                margin: 0 auto;
                padding: 0 20px 80px;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 14px;
                align-items: start;
            }

            .glass_card {
                position: relative;
                border-radius: 22px;
                overflow: hidden;
                animation: card_in 0.8s cubic-bezier(0.22,1,0.36,1) both;
                transform-style: preserve-3d;
                will-change: transform;
            }

            .glass_card:nth-child(1) { animation-delay: 0.5s; }
            .glass_card:nth-child(2) { animation-delay: 0.62s; }

            @keyframes card_in {
                from { opacity: 0; transform: translateY(32px) scale(0.97); }
                to { opacity: 1; transform: translateY(0) scale(1); }
            }

            .card_glass {
                position: absolute;
                inset: 0;
                border-radius: 22px;
                background:
                    linear-gradient(145deg, rgba(255,255,255,0.055) 0%, rgba(255,255,255,0.01) 40%, rgba(255,255,255,0.025) 100%);
                backdrop-filter: blur(40px) saturate(1.8) brightness(0.65);
                -webkit-backdrop-filter: blur(40px) saturate(1.8) brightness(0.65);
                border: 1px solid rgba(255,255,255,0.1);
                border-top-color: rgba(255,255,255,0.25);
                border-bottom-color: rgba(0,0,0,0.5);
                border-left-color: rgba(255,255,255,0.08);
                border-right-color: rgba(255,255,255,0.05);
                box-shadow:
                    inset 0 1.5px 0 rgba(255,255,255,0.18),
                    inset 0 -1px 0 rgba(0,0,0,0.5),
                    inset 0 0 60px rgba(160,8,8,0.06),
                    0 32px 80px rgba(0,0,0,0.7),
                    0 8px 24px rgba(0,0,0,0.5),
                    0 0 60px rgba(140,5,5,0.08);
                transition: box-shadow 0.4s cubic-bezier(0.22,1,0.36,1), background 0.4s;
            }

            .glass_card:hover .card_glass {
                background:
                    linear-gradient(145deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.015) 40%, rgba(255,255,255,0.035) 100%);
                box-shadow:
                    inset 0 1.5px 0 rgba(255,255,255,0.22),
                    inset 0 -1px 0 rgba(0,0,0,0.5),
                    inset 0 0 80px rgba(180,8,8,0.1),
                    0 40px 100px rgba(0,0,0,0.75),
                    0 8px 24px rgba(0,0,0,0.5),
                    0 0 80px rgba(160,8,8,0.18);
            }

            .card_specular {
                position: absolute;
                top: 0;
                left: 8%;
                right: 8%;
                height: 1px;
                background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
                z-index: 3;
                pointer-events: none;
                border-radius: 99px;
                animation: specular_shimmer 4s ease-in-out infinite;
            }

            @keyframes specular_shimmer {
                0%, 100% { opacity: 0.8; }
                50% { opacity: 0.4; }
            }

            .card_refraction {
                position: absolute;
                inset: 0;
                border-radius: 22px;
                background: radial-gradient(ellipse 60% 45% at var(--mx, 50%) var(--my, -20%), rgba(255,80,80,0.06) 0%, transparent 65%);
                z-index: 2;
                pointer-events: none;
                opacity: 0;
                transition: opacity 0.3s;
            }

            .glass_card:hover .card_refraction {
                opacity: 1;
            }

            .card_body {
                position: relative;
                z-index: 5;
                padding: 28px 28px 22px;
            }

            .card_label {
                display: flex;
                align-items: center;
                gap: 8px;
                margin-bottom: 18px;
            }

            .card_label_num {
                font-family: "DM Mono", monospace;
                font-size: 9px;
                font-weight: 500;
                letter-spacing: 0.2em;
                text-transform: uppercase;
                color: rgba(255,80,80,0.3);
            }

            .card_label_line {
                flex: 1;
                height: 1px;
                background: linear-gradient(90deg, rgba(220,28,28,0.15), transparent);
            }

            .card_body h2 {
                font-size: 22px;
                font-weight: 800;
                letter-spacing: -0.03em;
                color: #fff;
                margin-bottom: 6px;
            }

            .card_desc {
                font-size: 13px;
                color: var(--text_muted);
                line-height: 1.55;
                margin-bottom: 0;
            }

            .divider {
                height: 1px;
                margin: 16px 0;
                background: linear-gradient(90deg, transparent, rgba(200,20,20,0.22), transparent);
            }

            .field_group {
                display: flex;
                flex-direction: column;
                gap: 9px;
                margin-bottom: 10px;
            }

            .field {
                position: relative;
            }

            .field_icon {
                position: absolute;
                left: 13px;
                top: 50%;
                transform: translateY(-50%);
                color: rgba(255,70,70,0.22);
                pointer-events: none;
                z-index: 1;
                transition: color 0.2s;
            }

            .field:focus-within .field_icon {
                color: rgba(220,40,40,0.55);
            }

            .field input {
                width: 100%;
                padding: 13px 14px 13px 40px;
                border-radius: 12px;
                font-family: "DM Sans", sans-serif;
                font-size: 13px;
                font-weight: 400;
                color: rgba(255,255,255,0.8);
                outline: none;
                background: rgba(0,0,0,0.5);
                border: 1px solid rgba(255,255,255,0.07);
                border-top-color: rgba(0,0,0,0.6);
                border-bottom-color: rgba(255,255,255,0.05);
                box-shadow:
                    inset 0 3px 10px rgba(0,0,0,0.6),
                    inset 0 1px 0 rgba(0,0,0,0.8),
                    0 1px 0 rgba(255,255,255,0.06);
                transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
                letter-spacing: -0.01em;
            }

            .field input::placeholder {
                color: rgba(255,255,255,0.12);
                font-weight: 400;
            }

            .field input:focus {
                background: rgba(0,0,0,0.42);
                border-color: rgba(200,20,20,0.3);
                border-top-color: rgba(0,0,0,0.5);
                box-shadow:
                    inset 0 3px 10px rgba(0,0,0,0.5),
                    0 0 0 2.5px rgba(175,10,10,0.25),
                    0 1px 0 rgba(255,255,255,0.05);
            }

            input[type=number]::-webkit-inner-spin-button,
            input[type=number]::-webkit-outer-spin-button {
                -webkit-appearance: none;
            }

            input[type=number] {
                -moz-appearance: textfield;
            }

            .action_btn {
                width: 100%;
                padding: 14px;
                border-radius: 13px;
                border: none;
                cursor: none;
                font-family: "DM Sans", sans-serif;
                font-size: 13px;
                font-weight: 700;
                letter-spacing: -0.01em;
                color: #fff;
                position: relative;
                overflow: hidden;
                background: linear-gradient(175deg, rgba(225,38,38,1) 0%, rgba(115,6,6,1) 100%);
                box-shadow:
                    inset 0 1px 0 rgba(255,130,130,0.28),
                    inset 0 -1px 0 rgba(0,0,0,0.3),
                    0 8px 32px rgba(150,8,8,0.45),
                    0 2px 8px rgba(0,0,0,0.4);
                transition: transform 0.14s cubic-bezier(0.22,1,0.36,1), box-shadow 0.2s;
            }

            .action_btn::before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                height: 50%;
                background: linear-gradient(180deg, rgba(255,255,255,0.12), transparent);
                border-radius: 13px 13px 0 0;
            }

            .action_btn::after {
                content: "";
                position: absolute;
                inset: 0;
                background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
                transform: translateX(-100%);
                transition: transform 0.5s ease;
            }

            .action_btn:hover {
                transform: translateY(-2px);
                box-shadow:
                    inset 0 1px 0 rgba(255,130,130,0.28),
                    inset 0 -1px 0 rgba(0,0,0,0.3),
                    0 16px 48px rgba(160,10,10,0.6),
                    0 4px 12px rgba(0,0,0,0.4);
            }

            .action_btn:hover::after {
                transform: translateX(100%);
            }

            .action_btn:active {
                transform: translateY(1px);
            }

            .btn_label {
                position: relative;
                z-index: 1;
            }

            .badges {
                display: flex;
                gap: 7px;
                margin-top: 12px;
                flex-wrap: wrap;
            }

            .badge {
                padding: 4px 11px;
                border-radius: 99px;
                font-family: "DM Mono", monospace;
                font-size: 9px;
                font-weight: 500;
                letter-spacing: 0.06em;
                text-transform: uppercase;
                background: rgba(180,10,10,0.07);
                border: 1px solid rgba(200,20,20,0.14);
                color: rgba(255,70,70,0.4);
                transition: all 0.2s;
            }

            .badge:hover {
                background: rgba(180,10,10,0.14);
                border-color: rgba(200,20,20,0.28);
                color: rgba(255,80,80,0.7);
            }

            .video_shell {
                border-radius: 13px;
                overflow: hidden;
                background: #000;
                border: 1px solid rgba(255,255,255,0.07);
                border-top-color: rgba(0,0,0,0.8);
                box-shadow:
                    inset 0 2px 20px rgba(0,0,0,0.9),
                    0 4px 20px rgba(0,0,0,0.5);
            }

            .video_shell video {
                display: block;
                width: 100%;
            }

            .steps {
                list-style: none;
                margin-top: 18px;
                display: flex;
                flex-direction: column;
                gap: 11px;
            }

            .step {
                display: flex;
                align-items: flex-start;
                gap: 12px;
                padding: 12px 14px;
                border-radius: 11px;
                background: rgba(0,0,0,0.25);
                border: 1px solid rgba(255,255,255,0.05);
                animation: fade_up 0.5s cubic-bezier(0.22,1,0.36,1) both;
            }

            .step:nth-child(1) { animation-delay: 0.9s; }
            .step:nth-child(2) { animation-delay: 1.0s; }
            .step:nth-child(3) { animation-delay: 1.1s; }

            .step_num {
                font-family: "DM Mono", monospace;
                font-size: 10px;
                font-weight: 500;
                color: rgba(220,28,28,0.6);
                width: 18px;
                flex-shrink: 0;
                padding-top: 1px;
            }

            .step_text {
                font-size: 12px;
                font-weight: 500;
                color: rgba(255,255,255,0.75);
                line-height: 1.5;
            }

            .step_text strong {
                color: rgba(255,255,255,0.7);
                font-weight: 600;
            }

            footer {
                position: relative;
                z-index: 10;
                padding: 20px 28px;
                border-top: 1px solid rgba(255,255,255,0.04);
                display: flex;
                align-items: center;
                justify-content: space-between;
            }

            .ft {
                font-family: "DM Mono", monospace;
                font-size: 10px;
                letter-spacing: 0.06em;
                color: rgba(255,255,255,0.1);
            }

            .ft_links {
                display: flex;
                gap: 20px;
            }

            .ft_links a {
                font-family: "DM Mono", monospace;
                font-size: 10px;
                letter-spacing: 0.06em;
                color: rgba(255,255,255,0.1);
                text-decoration: none;
                transition: color 0.2s;
            }

            .ft_links a:hover {
                color: rgba(255,255,255,0.4);
            }

            @media (max-width: 640px) {
                .main { grid-template-columns: 1fr; }
                .hero_stats { gap: 20px; }
                .stat_sep { display: none; }
            }

            .toast {
                position: fixed;
                bottom: 28px;
                left: 50%;
                transform: translateX(-50%) translateY(20px);
                padding: 12px 22px;
                border-radius: 99px;
                background: rgba(15,5,5,0.9);
                backdrop-filter: blur(20px);
                border: 1px solid rgba(220,28,28,0.25);
                border-top-color: rgba(255,80,80,0.2);
                box-shadow: 0 8px 32px rgba(0,0,0,0.6);
                font-size: 13px;
                font-weight: 500;
                color: rgba(255,255,255,0.85);
                z-index: 1000;
                opacity: 0;
                transition: opacity 0.3s, transform 0.3s cubic-bezier(0.22,1,0.36,1);
                pointer-events: none;
                white-space: nowrap;
            }

            .toast.show {
                opacity: 1;
                transform: translateX(-50%) translateY(0);
            }