*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-bg: #f6385c;
    --color-surface: rgba(255, 255, 255, 0.04);
    --color-border: rgba(255, 255, 255, 0.08);
    --color-white: #ffffff;
    --color-grey: #8b8fa3;
    --color-sunglow: #ffd633;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--color-bg);
    color: var(--color-white);
    min-height: 100vh;
}

.landing {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    padding: 48px 24px;
    gap: 48px;
}

/* Hero */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
}

.hero-visual {
    position: relative;
}

.hero-visual video {
    max-width: 315px;
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding-top: 2vh;
    background: black;
    height: auto;
    max-height: 560px;
}

.hero-tile {
    position: absolute;
    top: 80mm;
    right: -25mm;
    width: 68mm;
    transform: rotate(15deg);
    pointer-events: none;
}

.hero-title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero-tagline {
    font-size: clamp(1.1rem, 3vw, 1.35rem);
    color: var(--color-white);
    line-height: 1.6;
    max-width: 480px;
}

.hero-tagline strong {
    font-weight: 700;
}

/* Press strip */
.press-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 24px 32px;
    background: var(--color-white);
    border-radius: 16px;
    max-width: 720px;
    width: 100%;
}

.press-strip a {
    display: flex;
    line-height: 0;
}

.press-strip img {
    height: 32px;
    width: auto;
    filter: grayscale(1) contrast(1.2);
}

/* CTAs */
.cta-group {
    display: flex;
    flex-direction: row;
    gap: 16px;
    width: 100%;
    max-width: 600px;
}

.cta-group .cta {
    flex: 1;
}

.cta {
    display: flex;
    flex-direction: column;
    padding: 20px 24px;
    border-radius: 12px;
    text-decoration: none;
    text-align: center;
    transition: transform 0.2s ease, background 0.2s ease;
}

.cta:hover {
    transform: translateY(-2px);
}

.cta-primary {
    background: var(--color-sunglow);
    color: #0a0c10;
}

.cta-primary:hover {
    background: #ffe566;
}

.cta-secondary {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    color: var(--color-white);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
}

.cta-label {
    font-size: 1.125rem;
    font-weight: 600;
}

.cta-desc {
    font-size: 0.875rem;
    margin-top: 4px;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 576px) {
    .landing {
        padding: 32px 16px;
        gap: 36px;
    }

    .press-strip {
        gap: 16px;
        padding: 16px 20px;
    }

    .press-strip img {
        height: 24px;
    }

    .hero-tile {
        right: -15%;
        width: 28%;
    }

    .cta-group {
        flex-direction: column;
    }
}
