* {
    box-sizing: border-box;
}

:root {
    color-scheme: dark;
    --ink: #fff8ee;
    --muted: rgba(255, 248, 238, 0.76);
    --panel: rgba(18, 21, 37, 0.78);
    --panel-strong: rgba(24, 29, 50, 0.94);
    --line: rgba(255, 255, 255, 0.16);
    --aqua: #57e4ff;
    --sun: #ffd166;
    --pink: #ff5d9e;
    --mint: #72f0b4;
    --shadow: rgba(5, 7, 18, 0.42);
}

html,
body {
    min-height: 100%;
}

body {
    margin: 0;
    font-family: "Yuyu", Arial, Helvetica, sans-serif;
    color: var(--ink);
    background:
        linear-gradient(180deg, rgba(10, 14, 30, 0.18), rgba(10, 14, 30, 0.72)),
        linear-gradient(135deg, #11152a 0%, #19364a 38%, #3c2552 72%, #431f38 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.22;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.13) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.13) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 78%, transparent 100%);
}

.home-shell {
    width: calc(100% - 32px);
    max-width: 1120px;
    min-height: 100vh;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
    padding: 36px 0;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    align-items: center;
    gap: 28px;
    min-height: min(720px, calc(100vh - 156px));
}

.hero-copy {
    position: relative;
    z-index: 1;
    display: grid;
    align-content: center;
    gap: 18px;
}

.eyebrow,
.card-kicker {
    margin: 0;
    color: var(--aqua);
    font-size: 0.92rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

h1,
h2,
p {
    margin: 0;
}

h1 {
    max-width: 8.5ch;
    font-size: clamp(3.9rem, 11vw, 8.2rem);
    line-height: 0.9;
    letter-spacing: 0;
    text-wrap: balance;
}

.lede {
    max-width: 34rem;
    color: var(--muted);
    font-size: clamp(1.38rem, 2.4vw, 1.72rem);
    line-height: 1.45;
}

.status-strip {
    width: fit-content;
    max-width: 100%;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid rgba(87, 228, 255, 0.34);
    border-radius: 8px;
    color: #f8fdff;
    background: rgba(8, 14, 28, 0.58);
    box-shadow: 0 14px 34px var(--shadow);
    font-weight: 800;
    font-size: 1.08rem;
    line-height: 1.25;
}

.status-light {
    width: 11px;
    height: 11px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 0 5px rgba(114, 240, 180, 0.16), 0 0 20px rgba(114, 240, 180, 0.86);
}

.hero-media {
    position: relative;
    min-width: 0;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
    box-shadow: 0 28px 70px var(--shadow);
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 28%),
        linear-gradient(135deg, rgba(87, 228, 255, 0.18), transparent 34%),
        linear-gradient(315deg, rgba(255, 93, 158, 0.18), transparent 38%);
    mix-blend-mode: screen;
}

.hero-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.coming-soon {
    display: grid;
    grid-template-columns: 1.15fr 0.925fr 0.925fr;
    gap: 14px;
}

.preview-card {
    min-height: 156px;
    display: grid;
    align-content: start;
    gap: 10px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
    box-shadow: 0 18px 42px rgba(5, 7, 18, 0.24);
}

.featured-card {
    background:
        linear-gradient(135deg, rgba(255, 209, 102, 0.22), rgba(255, 93, 158, 0.13)),
        var(--panel-strong);
}

.preview-card h2 {
    color: #ffffff;
    font-size: 1.72rem;
    line-height: 1.1;
    letter-spacing: 0;
}

.preview-card p {
    color: var(--muted);
    font-size: 1.14rem;
    line-height: 1.45;
}

@media (max-width: 820px) {
    .home-shell {
        width: calc(100% - 24px);
        justify-content: flex-start;
        padding: 28px 0;
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 22px;
    }

    h1 {
        max-width: 10ch;
    }

    .hero-media {
        aspect-ratio: 16 / 11;
    }

    .coming-soon {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 430px) {
    .status-strip {
        width: 100%;
    }

    .preview-card {
        min-height: 132px;
        padding: 16px;
    }
}
