:root {
    --bg: #0d0d0d;
    --surface: #1a1a1a;
    --surface-2: #232323;
    --ink: #ffffff;
    --muted: #9e9e9e;
    --on-surface: #e0e0e0;
    --line: #2c2c2c;
    --brand: #c62828;
    --brand-bright: #f44336;
    --brand-accent: #ef5350;
    --shadow: rgba(0, 0, 0, 0.5);
}

* {
    box-sizing: border-box;
}

/* Hero top-right CTA */

.hero-cta {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 10px 20px;
    font-size: 0.9rem;
    z-index: 1;
}

/* Store badges */

.store-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.store-badges a {
    display: inline-flex;
    align-items: center;
}

.store-badges img {
    display: block;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--ink);
    font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
    background:
        radial-gradient(1000px 560px at 10% -10%, rgba(198, 40, 40, 0.26) 0, transparent 60%),
        radial-gradient(900px 520px at 95% 95%, rgba(239, 83, 80, 0.12) 0, transparent 62%),
        var(--bg);
}

a {
    color: var(--brand-accent);
    text-decoration: none;
}

.wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px 20px 40px;
}

.hero {
    background: linear-gradient(165deg, var(--surface), #141414);
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: clamp(24px, 5vw, 56px);
    box-shadow: 0 28px 60px var(--shadow);
    overflow: hidden;
    position: relative;
    isolation: isolate;
}

.hero::after {
    content: "";
    position: absolute;
    right: -100px;
    top: -80px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 67, 54, 0.28) 0, rgba(244, 67, 54, 0.02) 70%, transparent 72%);
    z-index: -1;
}

.eyebrow {
    display: inline-block;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.78rem;
    color: var(--brand-accent);
    background: rgba(198, 40, 40, 0.16);
    border: 1px solid rgba(244, 67, 54, 0.35);
    border-radius: 999px;
    padding: 6px 10px;
    font-weight: 700;
    margin-bottom: 14px;
}

h1 {
    margin: 0;
    line-height: 0.98;
    letter-spacing: -0.04em;
    font-size: clamp(2rem, 9vw, 5rem);
}

.tagline {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: clamp(1rem, 2.2vw, 1.15rem);
    letter-spacing: 0.01em;
}

.lead {
    margin: 16px 0 24px;
    max-width: 54ch;
    color: var(--muted);
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    line-height: 1.55;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 12px;
    justify-content: center;
}

.btn {
    appearance: none;
    border: 0;
    border-radius: 999px;
    padding: 14px 22px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn.primary {
    color: #fff;
    background: linear-gradient(90deg, var(--brand), var(--brand-bright));
    box-shadow: 0 12px 24px rgba(198, 40, 40, 0.32);
}

.btn:hover {
    transform: translateY(-1px);
}

.stores {
    margin-top: 14px;
    font-size: 0.94rem;
    color: var(--muted);
    text-align: center;
}

.stores a {
    color: var(--brand-accent);
    font-weight: 700;
    text-underline-offset: 3px;
}

.grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.card {
    background: rgba(26, 26, 26, 0.92);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 14px;
    backdrop-filter: blur(5px);
}

.card h2 {
    margin: 0 0 8px;
    font-size: 1rem;
    letter-spacing: -0.01em;
}

.card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.45;
}

/* About section */

.about {
    margin-top: 18px;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.95), rgba(13, 13, 13, 0.95));
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 18px;
}

.about-section {
    margin-bottom: 20px;
}

.about-section:last-child {
    margin-bottom: 0;
}

.about-section-title {
    margin: 0 0 12px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--brand-accent);
    letter-spacing: 0.01em;
}

.steps {
    margin: 0;
    padding-left: 20px;
    color: var(--on-surface);
    line-height: 1.55;
}

.steps li {
    margin-bottom: 8px;
}

.support-para {
    margin: 0 0 10px;
    color: var(--muted);
    line-height: 1.55;
}

.support-para:last-of-type {
    margin-bottom: 0;
}

.coffee-cta {
    margin-top: 14px;
    text-align: center;
}

.btn-coffee {
    display: inline-block;
    text-decoration: none;
    color: var(--ink);
    background: var(--surface-2);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: transform 0.15s ease;
}

.btn-coffee:hover {
    transform: translateY(-1px);
}

.legal {
    margin: 0 auto;
    font-size: 0.94rem;
    color: var(--muted);
    padding: 18px 0 0;
    text-align: center;
}

.legal a {
    font-weight: 700;
    text-align: center;
    text-decoration: none;
}

/* Veto button */

.veto-button-wrap {
    display: flex;
    justify-content: center;
    margin: 28px 0;
}

.vetoButton {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: var(--brand-bright);
    border: 6px solid var(--brand);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    box-shadow:
        0 0 40px 10px rgba(244, 67, 54, 0.47),
        0 8px 20px rgba(0, 0, 0, 0.39);
    animation: veto-pulse 0.9s ease-in-out infinite alternate;
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.15s ease;
}

.vetoButton.vetoed {
    background: #b71c1c;
    border-color: #7f0000;
    box-shadow:
        0 0 12px 2px rgba(127, 0, 0, 0.35),
        0 8px 20px rgba(0, 0, 0, 0.39);
    animation: none;
    transform: scale(1);
    cursor: pointer;
}

.vetoButton:active {
    transform: scale(0.96) !important;
    animation-play-state: paused;
}

.vetoButton svg {
    width: 52px;
    height: 52px;
    fill: #fff;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.39));
}

.vetoButton p {
    margin: 0;
    color: #fff;
    font-size: 36px;
    font-weight: 900;
    letter-spacing: 6px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.39);
}

@keyframes veto-pulse {
    from {
        transform: scale(1);
        box-shadow: 0 0 40px 10px rgba(244, 67, 54, 0.47), 0 8px 20px rgba(0, 0, 0, 0.39);
    }

    to {
        transform: scale(1.06);
        box-shadow: 0 0 55px 18px rgba(244, 67, 54, 0.55), 0 8px 20px rgba(0, 0, 0, 0.39);
    }
}

@media (prefers-reduced-motion: reduce) {
    .vetoButton {
        animation: none;
    }
}

@media (max-width: 900px) {
    .grid {
        grid-template-columns: 1fr;
    }

    .hero {
        border-radius: 22px;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .hero {
        animation: rise .5s ease-out both;
    }

    .card {
        opacity: 0;
        transform: translateY(8px);
        animation: rise .5s ease-out forwards;
    }

    .card:nth-child(1) {
        animation-delay: .08s;
    }

    .card:nth-child(2) {
        animation-delay: .16s;
    }

    .card:nth-child(3) {
        animation-delay: .24s;
    }

    .card:nth-child(4) {
        animation-delay: .32s;
    }

    @keyframes rise {
        from {
            opacity: 0;
            transform: translateY(14px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}