* {
            box-sizing: border-box;
        }

        body {
            min-height: 100vh;
        }

        html:not(.has-app-shell-js) [data-reveal] {
            opacity: 1;
            transform: none;
            filter: none;
        }

        html.has-app-shell-js [data-reveal] {
            opacity: 0;
            transform: translateY(18px);
            filter: blur(4px);
        }

        html.has-app-shell-js [data-reveal].is-revealed {
            opacity: 1;
            transform: translateY(0);
            filter: none;
        }

        .choice-page::before,
        .choice-page::after {
            content: '';
            position: fixed;
            width: 380px;
            height: 380px;
            border-radius: 50%;
            filter: blur(32px);
            opacity: 0.32;
            pointer-events: none;
            z-index: 0;
        }

        .choice-page::before {
            top: -120px;
            right: -120px;
            background: radial-gradient(circle, rgba(231, 201, 163, 0.42), transparent 68%);
        }

        .choice-page::after {
            bottom: -120px;
            left: -120px;
            background: radial-gradient(circle, rgba(214, 195, 174, 0.35), transparent 72%);
        }

        .brand-shell {
            min-height: 100vh;
            display: grid;
            align-content: center;
            gap: 24px;
            position: relative;
            z-index: 1;
        }

        .brand-topbar {
            padding: 18px 24px;
        }

        .brand-mark {
            display: flex;
            align-items: center;
            gap: 14px;
            text-decoration: none;
            color: inherit;
        }

        .brand-badge {
            width: 48px;
            height: 48px;
            border-radius: 16px;
            display: grid;
            place-items: center;
            font: 700 0.82rem/1 var(--fx-font-mono);
            color: var(--fx-bg);
            background: linear-gradient(135deg, var(--fx-accent), var(--fx-accent-strong));
            box-shadow: 0 18px 28px rgba(199, 139, 93, 0.28);
        }

        .choice-card {
            padding: 36px;
            display: grid;
            gap: 28px;
        }

        .choice-hero {
            display: grid;
            gap: 12px;
            text-align: center;
        }

        .eyebrow {
            color: var(--fx-text-muted);
            font: 700 0.8rem/1 var(--fx-font-mono);
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        h1 {
            margin: 0;
            font: 800 clamp(2.1rem, 5vw, 3rem)/1.05 var(--fx-font-display);
            letter-spacing: -0.04em;
        }

        .choice-hero p {
            margin: 0 auto;
            max-width: 46ch;
            color: var(--fx-text-muted);
            line-height: 1.7;
        }

        .choice-grid {
            display: grid;
            gap: 18px;
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .entry-card {
            display: grid;
            gap: 14px;
            padding: 26px;
            border-radius: 24px;
            border: 1px solid rgba(198, 179, 160, 0.72);
            background: rgba(255, 255, 255, 0.58);
            color: inherit;
            text-decoration: none;
            transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
        }

        .entry-card:hover {
            transform: translateY(-2px);
            border-color: var(--fx-accent);
            background: rgba(255, 255, 255, 0.76);
        }

        .entry-card strong {
            font: 700 1.2rem/1.2 var(--fx-font-display);
        }

        .entry-card p {
            margin: 0;
            color: var(--fx-text-muted);
            line-height: 1.6;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            padding: 14px 20px;
            border-radius: 999px;
            border: 1px solid transparent;
            font: 700 0.95rem/1 var(--fx-font-ui);
            cursor: pointer;
        }

        .cta-button-primary {
            background: linear-gradient(135deg, var(--fx-accent), var(--fx-accent-strong));
            color: #1b140f;
            box-shadow: 0 18px 32px rgba(199, 139, 93, 0.22);
        }

        .cta-button-secondary {
            background: rgba(255, 255, 255, 0.5);
            border-color: var(--fx-border-strong);
            color: var(--fx-text);
        }

        .back-link {
            text-align: center;
        }

        .back-link a {
            color: var(--fx-text-muted);
            text-decoration: none;
            font-weight: 600;
        }

        .back-link a:hover {
            color: var(--fx-text);
        }

        @media (max-width: 768px) {
            .choice-grid {
                grid-template-columns: 1fr;
            }

            .choice-card {
                padding: 28px;
            }
        }
