/* Kitten Must Live — promotional site */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #080811;
    --surface: #10101d;
    --surface-2: #161527;
    --line: rgba(255, 255, 255, 0.12);
    --text: #f7f6ef;
    --muted: #aaa8bb;
    --pink: #ff55d8;
    --pink-dark: #c82ea8;
    --cyan: #61f4ff;
    --lime: #d8ff62;
    --yellow: #ffdf4e;
    --orange: #ff835f;
    --max-width: 1180px;
    --mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
    --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    background:
        radial-gradient(circle at 78% 8%, rgba(97, 244, 255, 0.08), transparent 26rem),
        radial-gradient(circle at 10% 35%, rgba(255, 85, 216, 0.07), transparent 24rem),
        var(--bg);
    color: var(--text);
    font-family: var(--sans);
    line-height: 1.6;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image: linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 38px 38px;
    content: "";
    mask-image: linear-gradient(to bottom, black, transparent 80%);
}

a {
    color: inherit;
}

img,
video {
    display: block;
    max-width: 100%;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 20;
    padding: 10px 14px;
    background: var(--lime);
    color: #080811;
    font-weight: 800;
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header,
main,
footer {
    width: min(calc(100% - 40px), var(--max-width));
    margin-inline: auto;
}

.site-header {
    display: flex;
    min-height: 88px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
}

.brand,
.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand {
    font-family: var(--mono);
    font-size: 0.94rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-decoration: none;
}

.brand img,
.footer-brand img,
.release-kitten img {
    image-rendering: pixelated;
}

nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

nav a {
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 700;
    text-decoration: none;
}

nav a:hover,
nav a:focus-visible {
    color: var(--text);
}

nav .nav-cta {
    padding: 9px 15px;
    border: 1px solid var(--pink);
    color: var(--pink);
    font-family: var(--mono);
}

.hero {
    display: grid;
    align-items: center;
    min-height: calc(100vh - 88px);
    padding: 76px 0 88px;
    gap: clamp(48px, 7vw, 96px);
    grid-template-columns: minmax(0, 0.93fr) minmax(430px, 1.07fr);
}

.eyebrow,
.section-kicker {
    color: var(--cyan);
    font-family: var(--mono);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.status-dot,
.preview-bar i {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--pink);
    box-shadow: 0 0 14px var(--pink);
    color: transparent;
    font-size: 0;
}

.hero h1 {
    max-width: 700px;
    margin-top: 20px;
    font-size: clamp(3.5rem, 4.7vw, 5.6rem);
    font-weight: 900;
    letter-spacing: -0.075em;
    line-height: 0.91;
    white-space: nowrap;
}

.hero h1 span {
    color: var(--pink);
}

.hero-lede {
    max-width: 650px;
    margin-top: 28px;
    color: #c8c7d3;
    font-size: clamp(1.02rem, 1.6vw, 1.17rem);
}

.hero-actions {
    display: flex;
    align-items: stretch;
    margin-top: 34px;
    gap: 12px;
}

.button {
    display: inline-flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    padding: 12px 19px;
    border: 1px solid transparent;
    font-family: var(--mono);
    font-size: 0.82rem;
    font-weight: 900;
    line-height: 1.15;
    text-align: left;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button span {
    display: block;
    margin-left: 15px;
    font-size: 0.62rem;
    font-weight: 600;
    opacity: 0.72;
}

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

.button-primary {
    background: var(--pink);
    color: #130710;
    box-shadow: 6px 6px 0 var(--pink-dark);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: #ff79e1;
}

.button-secondary {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.035);
    color: var(--text);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.07);
}

.quick-facts {
    display: grid;
    margin-top: 42px;
    list-style: none;
    grid-template-columns: repeat(3, 1fr);
}

.quick-facts li {
    padding-right: 16px;
    border-right: 1px solid var(--line);
}

.quick-facts li + li {
    padding-left: 16px;
}

.quick-facts li:last-child {
    border-right: 0;
}

.quick-facts strong,
.quick-facts span {
    display: block;
}

.quick-facts strong {
    color: var(--lime);
    font-family: var(--mono);
    font-size: 0.86rem;
}

.quick-facts span {
    margin-top: 3px;
    color: var(--muted);
    font-size: 0.7rem;
}

.preview-card {
    overflow: hidden;
    border: 1px solid rgba(97, 244, 255, 0.34);
    background: #030305;
    box-shadow: 18px 18px 0 rgba(97, 244, 255, 0.08), 0 35px 100px rgba(0, 0, 0, 0.45);
}

.preview-bar,
.preview-card figcaption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    font-family: var(--mono);
    font-size: 0.64rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.preview-bar {
    color: var(--cyan);
}

.preview-bar span:first-child {
    display: flex;
    align-items: center;
    gap: 8px;
}

.preview-card video {
    width: 100%;
    aspect-ratio: 800 / 452;
    background: #000;
}

.preview-card figcaption {
    border-top: 1px solid var(--line);
    color: var(--muted);
}

.preview-card figcaption span:first-child {
    color: var(--lime);
}

.session-pitch {
    display: grid;
    align-items: end;
    padding: 78px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    gap: 80px;
    grid-template-columns: 1.1fr 0.9fr;
}

.session-pitch h2,
.section-heading h2,
.release-copy h2 {
    margin-top: 12px;
    font-size: clamp(2.1rem, 4vw, 4.2rem);
    letter-spacing: -0.055em;
    line-height: 1;
}

.session-pitch > p {
    max-width: 530px;
    color: var(--muted);
    font-size: 1.06rem;
}

.mechanics,
.gameplay {
    padding: 120px 0;
}

.section-heading {
    max-width: 730px;
    margin-bottom: 48px;
}

.section-heading > p:last-child {
    max-width: 580px;
    margin-top: 18px;
    color: var(--muted);
}

.mechanic-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, 1fr);
}

.mechanic-card {
    position: relative;
    display: flex;
    min-height: 320px;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    padding: 34px;
    border: 1px solid var(--line);
    background: var(--surface);
}

.mechanic-card::after {
    position: absolute;
    top: -52px;
    right: -52px;
    width: 180px;
    height: 180px;
    border: 1px solid currentColor;
    border-radius: 50%;
    content: "";
    opacity: 0.12;
    box-shadow: 0 0 0 28px currentColor, 0 0 0 56px currentColor;
}

.card-number {
    position: absolute;
    top: 25px;
    left: 28px;
    color: var(--muted);
    font-family: var(--mono);
    font-size: 0.7rem;
}

.mechanic-card h3 {
    max-width: 420px;
    font-size: clamp(1.35rem, 2.2vw, 2rem);
    letter-spacing: -0.035em;
}

.mechanic-card p {
    max-width: 470px;
    margin-top: 12px;
    color: var(--muted);
    font-size: 0.93rem;
}

.card-tag {
    align-self: flex-start;
    margin-top: 25px;
    padding: 6px 9px;
    border: 1px solid currentColor;
    font-family: var(--mono);
    font-size: 0.64rem;
    font-weight: 800;
}

.card-headshots {
    color: var(--yellow);
}

.card-runners {
    color: var(--orange);
}

.card-weapons {
    color: var(--cyan);
}

.card-diamonds {
    color: var(--pink);
}

.mechanic-card h3,
.mechanic-card p,
.card-number {
    color: var(--text);
}

.mechanic-card p {
    color: var(--muted);
}

.gameplay {
    border-top: 1px solid var(--line);
}

.section-heading.compact {
    display: grid;
    max-width: none;
    align-items: end;
    column-gap: 60px;
    grid-template-columns: 1fr 0.62fr;
}

.section-heading.compact .section-kicker {
    grid-column: 1 / -1;
}

.section-heading.compact > p:last-child {
    margin: 0 0 4px;
}

.video-frame {
    padding: 9px;
    border: 1px solid var(--line);
    background: #030305;
    box-shadow: 14px 14px 0 rgba(255, 85, 216, 0.08);
}

.video-frame video {
    width: 100%;
    aspect-ratio: 1280 / 724;
    background: #000;
}

.release-card {
    position: relative;
    display: grid;
    align-items: center;
    overflow: hidden;
    margin-bottom: 120px;
    padding: 52px;
    border: 1px solid rgba(255, 85, 216, 0.35);
    background: linear-gradient(120deg, rgba(255, 85, 216, 0.11), rgba(97, 244, 255, 0.05));
    gap: 34px;
    grid-template-columns: 120px 1fr auto;
}

.release-card::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 34%;
    height: 4px;
    background: linear-gradient(90deg, var(--pink), var(--cyan));
    content: "";
}

.release-kitten img {
    width: 100px;
    height: auto;
}

.release-copy h2 {
    font-size: clamp(2rem, 3.5vw, 3.5rem);
}

.release-copy > p:last-child {
    max-width: 630px;
    margin-top: 14px;
    color: var(--muted);
}

.release-button {
    min-width: 245px;
}

footer {
    display: flex;
    min-height: 130px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.78rem;
}

.footer-brand strong,
.footer-brand span {
    display: block;
}

.footer-brand strong {
    color: var(--text);
    font-family: var(--mono);
}

a:focus-visible,
button:focus-visible,
video:focus-visible {
    outline: 3px solid var(--lime);
    outline-offset: 4px;
}

@media (max-width: 940px) {
    .hero {
        min-height: auto;
        grid-template-columns: 1fr;
    }

    .hero-copy {
        max-width: 760px;
    }

    .preview-card {
        width: min(100%, 780px);
    }

    .session-pitch,
    .section-heading.compact {
        gap: 30px;
        grid-template-columns: 1fr;
    }

    .release-card {
        grid-template-columns: 100px 1fr;
    }

    .release-button {
        grid-column: 2;
        justify-self: start;
    }
}

@media (max-width: 680px) {
    .site-header,
    main,
    footer {
        width: min(calc(100% - 28px), var(--max-width));
    }

    .site-header {
        min-height: 72px;
    }

    .brand span {
        font-size: 0.76rem;
    }

    nav a:not(.nav-cta) {
        display: none;
    }

    .hero {
        padding: 58px 0 72px;
        gap: 56px;
    }

    .hero h1 {
        font-size: clamp(3rem, 15vw, 4.6rem);
        white-space: normal;
    }

    .hero-actions {
        flex-direction: column;
    }

    .button {
        width: 100%;
        justify-content: space-between;
    }

    .quick-facts {
        gap: 14px 0;
        grid-template-columns: 1fr 1fr;
    }

    .quick-facts li:nth-child(2) {
        border-right: 0;
    }

    .quick-facts li:nth-child(3) {
        padding-left: 0;
    }

    .preview-bar,
    .preview-card figcaption {
        font-size: 0.55rem;
    }

    .preview-card figcaption span:last-child {
        display: none;
    }

    .session-pitch,
    .mechanics,
    .gameplay {
        padding: 76px 0;
    }

    .mechanic-grid {
        grid-template-columns: 1fr;
    }

    .mechanic-card {
        min-height: 280px;
        padding: 28px;
    }

    .release-card {
        margin-bottom: 76px;
        padding: 34px 28px;
        grid-template-columns: 1fr;
    }

    .release-kitten img {
        width: 74px;
    }

    .release-button {
        grid-column: 1;
    }

    footer {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
