:root {
            --bg: #f6f7fb;
            --text: #0f172a;
            --muted: #3b4252;
            --accent: #f45905;
            --accent-dark: #d74700;
        }

        * {
            box-sizing: border-box;
        }

        html, body {
            height: 100%;
        }

        body {
            margin: 0;
            font-family: "Avenir Next", "Trebuchet MS", sans-serif;
            color: var(--text);
            background-color: var(--bg);
            background-image: radial-gradient(1200px 600px at 50% -200px, #ffffff 0%, #f4f5fb 50%, #f0f2f8 100%);
            background-repeat: no-repeat;
            background-size: cover;
            background-position: top center;
        }

        .page {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            padding: 60px 24px 140px;
            text-align: center;
        }

        .logo {
            width: min(360px, 70vw);
            height: auto;
        }

        .headline {
            margin: 24px 0 8px;
            font-size: clamp(22px, 3.2vw, 30px);
            font-weight: 700;
        }

        .headline .accent {
            color: var(--accent);
        }

        .subcopy {
            margin: 16px auto 28px;
            font-size: clamp(16px, 2.2vw, 20px);
            color: var(--muted);
            max-width: 620px;
            line-height: 1.5;
        }

        .badge-row {
            display: flex;
            gap: clamp(18px, 4vw, 46px);
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 10px;
        }

        .store-badge {
            display: inline-block;
            transition: transform 0.2s ease;
            width: clamp(160px, 28vw, 220px);
            outline: none;
        }

        .store-badge img {
            display: block;
            width: 100%;
            height: auto;
            border: 0;
        }

        .store-badge:focus,
        .store-badge:hover {
            transform: translateY(-2px);
        }

        .store-badge:focus-visible {
            outline: none;
        }

        .cta-note {
            margin-top: 26px;
            font-size: 14px;
            color: #6b7280;
        }

        footer {
            position: fixed;
            left: 0;
            right: 0;
            bottom: 18px;
            font-size: 12px;
            color: #ffffff;
            text-align: center;
            pointer-events: none;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
        }

        .waves {
            position: fixed;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: -1;
            width: 100%;
            height: 100vh;
            min-height: 260px;
            overflow: hidden;
        }

        .waves img {
            display: block;
            height: 100%;
            width: auto;
            min-width: 100%;
            object-fit: cover;
            object-position: center bottom;
            position: relative;
            left: 50%;
            transform: translateX(-50%);
        }

        @media (max-width: 720px) {
            .page {
                padding-top: 48px;
                padding-bottom: 120px;
            }
        }
