/* ==========================================================================
           CSS CUSTOM PROPERTIES
           ========================================================================== */
        :root {
            --bg-primary: hsl(0, 0%, 5%);
            --bg-secondary: hsl(0, 0%, 10%);
            --bg-card: hsl(0, 0%, 8%);
            --purple-dark: hsl(267, 64%, 11%);
            --purple-accent: hsl(262, 83%, 58%);
            --purple-light: hsl(255, 92%, 76%);
            --gold: hsl(37, 91%, 55%);
            --gold-light: hsl(40, 100%, 63%);
            --gold-dark: hsl(40, 88%, 44%);
            --text-primary: hsl(0, 0%, 100%);
            --text-secondary: hsl(0, 0%, 100%, 0.7);
            --text-muted: hsl(0, 0%, 100%, 0.5);
            --border-subtle: hsl(0, 0%, 100%, 0.08);
            --border-light: hsl(0, 0%, 100%, 0.15);
            --success: hsl(142, 71%, 45%);
            --error: hsl(0, 84%, 60%);
        }

        /* ==========================================================================
           BASE RESET
           ========================================================================== */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            min-height: 100vh;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        /* ==========================================================================
           LAYOUT
           ========================================================================== */
        .results-page {
            min-height: 100vh;
            padding: 3rem 1.5rem 4rem;
            background: linear-gradient(180deg, 
                var(--purple-dark) 0%, 
                var(--bg-primary) 30%
            );
        }

        .container {
            max-width: 900px;
            margin: 0 auto;
        }

        /* ==========================================================================
           LOGO
           ========================================================================== */
        .logo {
            text-align: center;
            margin-bottom: 2rem;
        }

        .logo img {
            height: 36px;
            width: auto;
        }

        /* ==========================================================================
           RESULTS HEADER
           ========================================================================== */
        .results-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .results-header h1 {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--text-secondary);
            margin-bottom: 1rem;
        }

        .results-header h1 span {
            color: var(--text-primary);
        }

        /* Total Amount */
        .total-amount {
            background: linear-gradient(135deg, 
                hsl(262, 83%, 58%, 0.15) 0%, 
                hsl(37, 91%, 55%, 0.1) 100%
            );
            border: 1px solid hsl(262, 83%, 58%, 0.3);
            border-radius: 16px;
            padding: 2rem;
            margin-bottom: 0.75rem;
        }

        .total-number {
            font-size: 3.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.1;
            margin-bottom: 0.25rem;
        }

        .total-label {
            font-size: 1.125rem;
            color: var(--text-secondary);
        }

        .total-sublabel {
            font-size: 0.875rem;
            color: var(--text-muted);
            margin-top: 0.5rem;
        }

        /* ==========================================================================
           BREAKDOWN GRID
           ========================================================================== */
        .breakdown-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0.75rem;
            margin-bottom: 3rem;
        }

        .breakdown-item {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: 12px;
            padding: 1rem 1.25rem;
            text-align: left;
        }

        .breakdown-item .amount {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--gold);
            margin-bottom: 0.125rem;
        }

        .breakdown-item .category {
            font-size: 0.8125rem;
            color: var(--text-muted);
        }

        /* ==========================================================================
           VIDEO SECTION
           ========================================================================== */
        .video-section {
            margin-bottom: 3rem;
        }

        .video-intro {
            text-align: center;
            margin-bottom: 1.25rem;
        }

        .video-intro h2 {
            font-family: 'Caveat', cursive;
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--text-primary);
        }

        .video-container {
            position: relative;
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: 16px;
            overflow: hidden;
            aspect-ratio: 16 / 9;
        }

        .video-placeholder {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, 
                hsl(267, 64%, 11%, 0.8) 0%, 
                hsl(0, 0%, 5%, 0.9) 100%
            );
            cursor: pointer;
            transition: background 0.2s ease;
        }

        .video-placeholder:hover {
            background: linear-gradient(135deg, 
                hsl(267, 64%, 11%, 0.7) 0%, 
                hsl(0, 0%, 5%, 0.8) 100%
            );
        }

        .play-button {
            width: 72px;
            height: 72px;
            background: var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .play-button:hover {
            transform: scale(1.05);
            box-shadow: 0 0 30px hsl(37, 91%, 55%, 0.4);
        }

        .play-button .material-symbols-rounded {
            font-size: 2rem;
            color: hsl(0, 0%, 0%);
            margin-left: 4px;
        }

        .video-placeholder p {
            font-size: 0.9375rem;
            color: var(--text-secondary);
        }

        /* ==========================================================================
           OFFER CARD
           ========================================================================== */
        .offer-section {
            margin-bottom: 2rem;
        }

        .offer-card {
            background: linear-gradient(135deg, 
                hsl(37, 91%, 55%, 0.08) 0%, 
                hsl(37, 91%, 55%, 0.02) 100%
            );
            border: 2px solid hsl(37, 91%, 55%, 0.4);
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
        }

        .offer-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: hsl(37, 91%, 55%, 0.15);
            border: 1px solid hsl(37, 91%, 55%, 0.3);
            border-radius: 100px;
            padding: 0.5rem 1rem;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--gold);
            margin-bottom: 1.25rem;
        }

        .offer-badge .material-symbols-rounded {
            font-size: 1rem;
        }

        .offer-headline {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            line-height: 1.3;
        }

        .offer-subhead {
            font-size: 1rem;
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            max-width: 480px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Pricing Display - Detailed */
        .offer-pricing-detailed {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            margin-bottom: 1.25rem;
            padding: 1.25rem;
            background: hsl(0, 0%, 0%, 0.3);
            border-radius: 12px;
        }

        .pricing-today,
        .pricing-then {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            flex-wrap: wrap;
        }

        .pricing-label {
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--text-muted);
            width: 50px;
        }

        .pricing-amount {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--gold);
        }

        .pricing-amount-small {
            font-size: 1rem;
            font-weight: 500;
            color: var(--text-secondary);
        }

        .pricing-note {
            font-size: 0.875rem;
            color: var(--text-muted);
        }

        /* Total Savings */
        .total-savings {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            background: hsl(142, 71%, 45%, 0.15);
            border: 1px solid hsl(142, 71%, 45%, 0.3);
            border-radius: 100px;
            padding: 0.5rem 1rem;
            font-size: 0.875rem;
            color: var(--success);
            margin: 0 auto 1rem;
            width: fit-content;
        }

        .total-savings .material-symbols-rounded {
            font-size: 1.125rem;
        }

        .total-savings strong {
            color: hsl(0, 0%, 100%);
        }

        /* CTA Button */
        .offer-cta {
            display: block;
            width: 100%;
            max-width: 360px;
            margin: 0 auto 1rem;
            padding: 1rem 2rem;
            background: var(--gold);
            color: hsl(0, 0%, 0%);
            font-size: 1.0625rem;
            font-weight: 600;
            font-family: inherit;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s ease, transform 0.1s ease;
        }

        .offer-cta:hover {
            background: var(--gold-light);
        }

        .offer-cta:active {
            transform: scale(0.98);
        }

        /* Scarcity Note */
        .offer-scarcity {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            font-size: 0.875rem;
            color: var(--text-muted);
        }

        .offer-scarcity .material-symbols-rounded {
            font-size: 1rem;
            color: var(--gold);
        }

        /* Fine Print */
        .offer-fine-print {
            font-size: 0.75rem;
            color: var(--text-muted);
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid var(--border-subtle);
        }

        /* ==========================================================================
           DECLINE LINK
           ========================================================================== */
        .decline-section {
            text-align: center;
        }

        .decline-link {
            font-size: 0.875rem;
            color: var(--text-muted);
            text-decoration: underline;
            text-underline-offset: 2px;
            cursor: pointer;
            transition: color 0.2s ease;
        }

        .decline-link:hover {
            color: var(--text-secondary);
        }

        /* ==========================================================================
           RESPONSIVE
           ========================================================================== */
        @media (max-width: 768px) {
            .results-page {
                padding: 2rem 1rem 3rem;
            }

            .total-number {
                font-size: 2.5rem;
            }

            .breakdown-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .offer-card {
                padding: 1.5rem;
            }

            .offer-headline {
                font-size: 1.25rem;
            }

            .offer-pricing {
                flex-direction: column;
                gap: 0.5rem;
            }

            .pricing-today,
            .pricing-then {
                justify-content: center;
            }

            .pricing-label {
                width: auto;
            }
        }

        @media (max-width: 480px) {
            .total-number {
                font-size: 2rem;
            }

            .breakdown-grid {
                grid-template-columns: 1fr 1fr;
                gap: 0.5rem;
            }

            .breakdown-item {
                padding: 0.875rem 1rem;
            }

            .breakdown-item .amount {
                font-size: 1.125rem;
            }

            .video-intro h2 {
                font-size: 1.5rem;
            }
        }