:root {
            --bg: #05070d;
            --panel: rgba(255, 255, 255, 0.055);
            --line: rgba(255, 255, 255, 0.14);
            --text: #f7fbff;
            --muted: #aab6c8;
            --cyan: #18d6d1;
            --blue: #1b74ff;
            --violet: #8b2cff;
        }

        * {
            box-sizing: border-box;
        }

        html,
        body {
            min-height: 100%;
            margin: 0;
        }

        body {
            display: grid;
            place-items: center;
            overflow-x: hidden;
            background:
                linear-gradient(135deg, rgba(24, 214, 209, 0.13), transparent 32%),
                linear-gradient(225deg, rgba(139, 44, 255, 0.16), transparent 34%),
                linear-gradient(180deg, #070a13 0%, var(--bg) 62%, #02030a 100%);
            color: var(--text);
            font-family: Inter, "Segoe UI", Arial, sans-serif;
        }

        body::before {
            display: none;
            content: "";
            position: fixed;
            inset: 0;
            pointer-events: none;
            background-image:
                linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
            background-size: 72px 72px;
            mask-image: linear-gradient(to bottom, transparent, black 18%, black 74%, transparent);
        }

        main {
            width: min(920px, calc(100vw - 32px));
            min-height: 100vh;
            display: grid;
            grid-template-rows: 1fr auto;
            align-items: center;
            padding: 42px 0 32px;
        }

        .hero {
            display: grid;
            justify-items: center;
            gap: 26px;
            text-align: center;
        }

        .logo {
            width: min(560px, 86vw);
            height: auto;
            display: block;
            border-radius: 8px;
            filter: drop-shadow(0 24px 54px rgba(0, 0, 0, 0.55));
            opacity: 0;
            transform: translateY(14px) scale(0.985);
            animation: settle 560ms ease-out forwards;
        }

        @keyframes settle {
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .actions {
            width: min(620px, 100%);
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 14px;
        }

        .cta {
            position: relative;
            isolation: isolate;
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 66px;
            padding: 0 18px 0 22px;
            border: 1px solid var(--line);
            border-radius: 8px;
            color: var(--text);
            text-decoration: none;
            background: var(--panel);
            box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
            backdrop-filter: blur(16px);
            transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
        }

        .cta::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: -1;
            border-radius: inherit;
            opacity: 0;
            background: linear-gradient(135deg, rgba(24, 214, 209, 0.26), rgba(139, 44, 255, 0.18));
            transition: opacity 180ms ease;
        }

        .cta:hover,
        .cta:focus-visible {
            transform: translateY(-2px);
            border-color: rgba(24, 214, 209, 0.62);
            outline: none;
        }

        .cta:hover::before,
        .cta:focus-visible::before {
            opacity: 1;
        }

        .cta-primary {
            background: linear-gradient(135deg, rgba(24, 214, 209, 0.92), rgba(27, 116, 255, 0.86));
            border-color: rgba(159, 244, 241, 0.46);
            color: #031018;
            font-weight: 800;
        }

        .cta-primary:hover,
        .cta-primary:focus-visible {
            border-color: rgba(255, 255, 255, 0.78);
        }

        .cta-disabled {
            cursor: default;
            color: rgba(247, 251, 255, 0.72);
        }

        .cta-disabled:hover {
            transform: none;
            border-color: var(--line);
        }

        .cta-disabled::before {
            display: none;
        }

        .label {
            display: grid;
            gap: 4px;
            text-align: left;
            min-width: 0;
        }

        .label strong {
            font-size: 1.02rem;
            line-height: 1.1;
        }

        .label span {
            color: var(--muted);
            font-size: 0.82rem;
            line-height: 1.2;
        }

        .cta-primary .label span {
            color: rgba(3, 16, 24, 0.74);
        }

        .arrow {
            width: 34px;
            height: 34px;
            display: grid;
            place-items: center;
            flex: 0 0 auto;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.14);
            font-size: 1.35rem;
            line-height: 1;
        }

        .cta-primary .arrow {
            background: rgba(3, 16, 24, 0.16);
        }

        .status {
            align-self: end;
            justify-self: center;
            color: rgba(247, 251, 255, 0.5);
            font-size: 0.78rem;
        }

        @media (max-width: 640px) {
            main {
                padding-top: 28px;
            }

            .hero {
                gap: 20px;
            }

            .actions {
                grid-template-columns: 1fr;
            }

            .logo {
                width: min(430px, 92vw);
            }
        }
