﻿* { box-sizing: border-box; }

        :root {
            --bg-top: #091326;
            --bg-bottom: #050913;
            --panel: rgba(12, 20, 38, 0.92);
            --panel-soft: rgba(255,255,255,0.04);
            --line: rgba(98, 134, 219, 0.26);
            --text-main: #eef4ff;
            --text-soft: #98b0df;
            --gold: #ffd486;
            --aqua: #8eeaff;
        }

        body {
            margin: 0;
            font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text-main);
            background:
                radial-gradient(circle at top, rgba(62, 109, 206, 0.24), transparent 24%),
                radial-gradient(circle at 84% 14%, rgba(255, 202, 114, 0.10), transparent 18%),
                linear-gradient(180deg, var(--bg-top), #08101d 50%, var(--bg-bottom));
            min-height: 100vh;
        }

        .wrap {
            max-width: 1380px;
            margin: 0 auto;
            padding: 24px;
        }

        .topbar {
            display: flex;
            gap: 12px;
            margin-bottom: 22px;
            flex-wrap: wrap;
        }

        .navbtn {
            display: inline-block;
            padding: 11px 16px;
            border-radius: 14px;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(157, 193, 255, 0.18);
            color: #fff;
            text-decoration: none;
            font-weight: 700;
            transition: 0.2s ease;
        }

        .navbtn:hover,
        .cta:hover {
            background: rgba(118, 168, 255, 0.18);
            transform: translateY(-1px);
        }

        .hero {
            position: relative;
            overflow: hidden;
            background:
                radial-gradient(circle at top right, rgba(255, 210, 116, 0.12), transparent 24%),
                radial-gradient(circle at 18% 16%, rgba(130, 230, 255, 0.10), transparent 20%),
                linear-gradient(145deg, rgba(16, 28, 54, 0.98), rgba(8, 14, 26, 0.96));
            border: 1px solid rgba(120, 162, 255, 0.22);
            border-radius: 30px;
            padding: 28px;
            box-shadow: 0 24px 58px rgba(0,0,0,0.34);
            margin-bottom: 20px;
        }

        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 24% 50%, rgba(255, 242, 198, 0.08), transparent 18%),
                radial-gradient(circle at 56% 42%, rgba(149, 235, 255, 0.08), transparent 22%),
                radial-gradient(circle at 78% 58%, rgba(255, 216, 144, 0.08), transparent 18%);
            animation: mysteryFloat 10s ease-in-out infinite;
            pointer-events: none;
        }

        .hero-grid {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.8fr);
            gap: 20px;
            align-items: start;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 900;
            letter-spacing: 0.10em;
            text-transform: uppercase;
            color: #ffe3a7;
            background: rgba(255, 212, 134, 0.12);
            border: 1px solid rgba(255, 212, 134, 0.26);
            margin-bottom: 14px;
        }

        .hero-title {
            font-size: clamp(34px, 5vw, 56px);
            font-weight: 900;
            letter-spacing: -0.04em;
            line-height: 1.02;
            margin-bottom: 12px;
            text-wrap: balance;
        }

        .hero-title .accent {
            background: linear-gradient(90deg, #fff7dc, #8eeaff, #ffd486);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .hero-subtitle {
            font-size: 15px;
            line-height: 1.8;
            color: var(--text-soft);
            max-width: 760px;
            margin-bottom: 16px;
        }

        .hero-actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .status-strip {
            margin-top: 18px;
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 12px;
        }

        .status-card {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 18px;
            padding: 14px 16px;
        }

        .status-label {
            color: var(--text-soft);
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.10em;
            margin-bottom: 8px;
        }

        .status-value {
            font-size: 17px;
            font-weight: 800;
            color: #fff;
            line-height: 1.5;
        }

        .status-value strong {
            color: var(--gold);
        }

        .cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 42px;
            padding: 10px 16px;
            border-radius: 14px;
            text-decoration: none;
            color: #fff;
            font-size: 13px;
            font-weight: 800;
            background: linear-gradient(180deg, rgba(46, 86, 172, 0.48), rgba(26, 50, 106, 0.40));
            border: 1px solid rgba(98, 134, 219, 0.32);
            transition: 0.18s ease;
        }

        .hero-side {
            display: grid;
            gap: 12px;
        }

        .mini {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 18px;
            padding: 16px;
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
        }

        .mini-label {
            color: var(--text-soft);
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 8px;
        }

        .mini-value {
            font-size: 22px;
            font-weight: 900;
            color: #fff;
        }

        .mini-sub {
            margin-top: 6px;
            color: var(--text-soft);
            font-size: 13px;
            line-height: 1.6;
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 18px;
            margin-bottom: 18px;
        }

        .panel {
            background: linear-gradient(180deg, var(--panel), rgba(8, 13, 24, 0.92));
            border: 1px solid var(--line);
            border-radius: 22px;
            padding: 20px;
            box-shadow: 0 18px 48px rgba(0,0,0,0.26);
        }

        .panel-title {
            font-size: 24px;
            font-weight: 900;
            margin-bottom: 14px;
        }

        .info-list {
            display: grid;
            gap: 12px;
        }

        .info-item {
            background: var(--panel-soft);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 16px;
            padding: 14px 16px;
        }

        .info-label {
            color: var(--text-soft);
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 6px;
        }

        .info-value {
            color: #fff;
            font-size: 16px;
            font-weight: 700;
            line-height: 1.7;
        }

        .steps {
            display: grid;
            gap: 12px;
        }

        .step {
            position: relative;
            padding: 16px 18px;
            border-radius: 18px;
            background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
            border: 1px solid rgba(255,255,255,0.08);
        }

        .step-kicker {
            color: var(--gold);
            font-size: 11px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.10em;
            margin-bottom: 6px;
        }

        .step-title {
            font-size: 18px;
            font-weight: 800;
            margin-bottom: 6px;
        }

        .step-text {
            color: var(--text-soft);
            font-size: 14px;
            line-height: 1.7;
        }

        .pool-box {
            background:
                radial-gradient(circle at 20% 50%, rgba(255, 231, 168, 0.10), transparent 18%),
                radial-gradient(circle at 68% 42%, rgba(142, 234, 255, 0.08), transparent 20%),
                linear-gradient(180deg, rgba(17, 27, 50, 0.98), rgba(10, 16, 29, 0.96));
        }

        .formula {
            padding: 14px 16px;
            border-radius: 16px;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.07);
            color: #f5f9ff;
            font-size: 15px;
            line-height: 1.8;
            font-weight: 700;
        }

        .note {
            margin-top: 12px;
            color: var(--text-soft);
            font-size: 13px;
            line-height: 1.7;
        }

        .bullet-list {
            display: grid;
            gap: 10px;
            margin-top: 14px;
        }

        .bullet-item {
            padding: 12px 14px;
            border-radius: 14px;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.07);
            color: #f5f9ff;
            font-size: 14px;
            line-height: 1.7;
        }

        @keyframes mysteryFloat {
            0%, 100% { transform: translate3d(0, 0, 0); opacity: 0.9; }
            50% { transform: translate3d(0, -6px, 0); opacity: 1; }
        }

        @media (max-width: 980px) {
            .hero-grid,
            .grid,
            .status-strip {
                grid-template-columns: 1fr;
            }
        }
