:root {
    --ink: #0C0538;
    --green: #2FC48D;
    --green-dark: #1B9F70;
    --pink: #E65F92;
    --paper: #F3F0E7;
    --white: #FFFFFF;
    --black: #101010;
    --line: #0C0538;
    --max: 1180px;
}

* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    background: var(--paper);
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

img,
svg {
    display: block;
}

.site-shell {
    min-height: 100vh;
    background:
        linear-gradient(90deg, rgba(12, 5, 56, 0.08) 1px, transparent 1px),
        linear-gradient(180deg, rgba(12, 5, 56, 0.08) 1px, transparent 1px),
        var(--paper);
    background-size: 44px 44px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: var(--paper);
    border-bottom: 2px solid var(--ink);
}

.nav {
    width: min(var(--max), calc(100% - 32px));
    min-height: 76px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    font-size: 19px;
}

.brand__mark {
    width: 40px;
    height: 40px;
    padding: 5px;
    background: var(--green);
    border: 2px solid var(--ink);
}

.brand__mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav__links a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    border: 2px solid transparent;
    font-weight: 800;
    font-size: 14px;
}

.nav__links a:hover {
    border-color: var(--ink);
    background: var(--green);
}

.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--ink);
    background: var(--ink);
    color: var(--white);
    padding: 0 20px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 5px 5px 0 var(--green);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.button:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--green);
}

.button--light {
    background: var(--white);
    color: var(--ink);
    box-shadow: 5px 5px 0 var(--green);
}

.button--green {
    background: var(--green);
    color: var(--ink);
    box-shadow: 5px 5px 0 var(--ink);
}

.button--game {
    background: var(--pink);
    color: var(--white);
    box-shadow: 5px 5px 0 var(--ink);
}

.button--wide {
    min-height: 58px;
    padding-inline: 28px;
    font-size: 18px;
}

.section {
    width: min(var(--max), calc(100% - 32px));
    margin: 0 auto;
}

.hero {
    min-height: calc(100svh - 76px);
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
    gap: 42px;
    align-items: center;
    padding: 52px 0 42px;
    overflow: hidden;
}

.hero > * {
    min-width: 0;
    max-width: 100%;
}

.kicker {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 12px;
    border: 2px solid var(--ink);
    background: var(--green);
    color: var(--ink);
    font-weight: 900;
    font-size: 13px;
}

h1,
h2,
h3,
p {
    margin: 0;
}

.hero h1 {
    margin-top: 22px;
    max-width: 820px;
    font-size: clamp(54px, 9vw, 126px);
    line-height: 0.86;
    letter-spacing: 0;
    font-weight: 900;
    overflow-wrap: break-word;
}

.hero__lead {
    max-width: 620px;
    margin-top: 24px;
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.28;
    font-weight: 700;
}

.hero__actions {
    margin-top: 30px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero__stage {
    min-width: 0;
    max-width: 100%;
    min-height: 470px;
    display: grid;
    place-items: center;
    position: relative;
    background: var(--green);
    border: 2px solid var(--ink);
    overflow: hidden;
}

.hero__stage::before {
    content: "";
    position: absolute;
    inset: 22px;
    border: 2px solid var(--ink);
}

.hero-logo {
    width: min(360px, 74vw);
    position: relative;
    z-index: 1;
}

.hero-logo path {
    fill: var(--white);
}

.hero__note {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 2;
    padding: 16px;
    border: 2px solid var(--ink);
    background: var(--paper);
    color: var(--ink);
    font-weight: 900;
    line-height: 1.15;
}

.ticker {
    border-top: 2px solid var(--ink);
    border-bottom: 2px solid var(--ink);
    background: var(--ink);
    color: var(--white);
    overflow: hidden;
}

.ticker__track {
    display: flex;
    width: max-content;
    animation: ticker var(--ticker-duration, 28s) linear infinite;
    will-change: transform;
}

.ticker__track span {
    padding: 15px 22px;
    font-size: 20px;
    font-weight: 900;
    white-space: nowrap;
}

@keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.band {
    padding: 86px 0;
}

.band--ink {
    background: var(--ink);
    color: var(--white);
}

.band--paper {
    background: var(--paper);
    color: var(--ink);
}

.band--green {
    background: var(--green);
    color: var(--ink);
    border-top: 2px solid var(--ink);
    border-bottom: 2px solid var(--ink);
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 30px;
}

.section-head h2,
.page-title {
    font-size: clamp(42px, 7vw, 88px);
    line-height: 0.88;
    font-weight: 900;
}

.section-head p,
.page-lead {
    max-width: 460px;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
}

.slider-tools {
    display: flex;
    gap: 10px;
}

.icon-button {
    width: 50px;
    height: 50px;
    border: 2px solid currentColor;
    background: var(--white);
    color: var(--ink);
    font-size: 24px;
    font-weight: 900;
    cursor: pointer;
}

.news-strip {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(340px, 420px);
    gap: 18px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding: 4px;
    touch-action: pan-x;
    scrollbar-width: none;
    padding: 4px 4px 14px;
    cursor: grab;
    user-select: none;
}

.news-strip::-webkit-scrollbar {
    display: none;
}

.news-strip.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
}

.news-card {
    min-height: 520px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    border: 2px solid var(--ink);
    background: var(--white);
    color: var(--ink);
    box-shadow: 7px 7px 0 var(--green);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-card:nth-child(2n) {
    box-shadow: 7px 7px 0 var(--pink);
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 10px 10px 0 var(--green);
}

.news-card__image {
    height: 190px;
    border-bottom: 2px solid var(--ink);
    background: var(--green);
    overflow: hidden;
}

.news-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card__content {
    min-height: 328px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.meta {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.news-card h3 {
    margin-top: 34px;
    font-size: 30px;
    line-height: 1;
    font-weight: 900;
}

.news-card p,
.article-card p {
    margin-top: 16px;
    line-height: 1.42;
    font-weight: 650;
}

.read-link {
    margin-top: 28px;
    display: inline-flex;
    width: fit-content;
    border-bottom: 3px solid currentColor;
    font-weight: 900;
}

.split {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 26px;
    align-items: start;
}

.poster {
    min-height: 440px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 2px solid var(--ink);
    background: var(--green);
    color: var(--ink);
}

.poster h2 {
    font-size: clamp(42px, 6vw, 72px);
    line-height: 0.9;
    font-weight: 900;
}

.poster p {
    font-size: 20px;
    line-height: 1.28;
    font-weight: 800;
}

.article-grid {
    display: grid;
    gap: 14px;
}

.article-card {
    padding: 22px;
    border: 2px solid var(--ink);
    background: var(--white);
    color: var(--ink);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.article-card:hover {
    transform: translateX(5px);
    box-shadow: 7px 7px 0 var(--green);
}

.article-card strong {
    display: block;
    font-size: 25px;
    line-height: 1.05;
    font-weight: 900;
}

.article-card small {
    display: block;
    margin-top: 8px;
    font-weight: 900;
    color: var(--green-dark);
}

.arrow-box {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 2px solid var(--ink);
    background: var(--green);
    color: var(--ink);
    font-weight: 900;
    font-size: 24px;
}

.page-hero {
    padding: 74px 0 42px;
}

.page-hero .page-lead {
    margin-top: 22px;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 34px;
    align-items: start;
    padding-bottom: 82px;
}

.article-body {
    border: 2px solid var(--ink);
    background: var(--white);
    padding: clamp(22px, 5vw, 42px);
}

.article-cover {
    margin: 0 0 26px;
    border: 2px solid var(--ink);
    overflow: hidden;
}

.article-cover img {
    width: 100%;
    aspect-ratio: 16 / 8;
    object-fit: cover;
}

.article-body p {
    font-size: 21px;
    line-height: 1.5;
    font-weight: 650;
}

.article-body p + p {
    margin-top: 20px;
}

.side-box {
    position: sticky;
    top: 102px;
    border: 2px solid var(--ink);
    background: var(--green);
    padding: 20px;
}

.side-box h3 {
    font-size: 27px;
    line-height: 1;
    font-weight: 900;
}

.side-box a {
    display: block;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 2px solid var(--ink);
    font-weight: 900;
}

.request-panel {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 0;
    border: 2px solid var(--ink);
    background: var(--white);
}

.request-section {
    padding-bottom: 86px;
}

.request-copy {
    padding: clamp(22px, 5vw, 42px);
    background: var(--green);
    border-right: 2px solid var(--ink);
}

.request-copy__list {
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.request-copy__list li {
    padding: 12px;
    border: 2px solid var(--ink);
    background: var(--paper);
    font-weight: 900;
}

.request-copy h2 {
    font-size: clamp(42px, 6vw, 74px);
    line-height: 0.9;
    font-weight: 900;
}

.request-copy p {
    margin-top: 18px;
    font-size: 19px;
    line-height: 1.35;
    font-weight: 750;
}

.success {
    margin-top: 26px;
    padding: 16px;
    border: 2px solid var(--ink);
    background: var(--white);
    font-weight: 900;
}

.request-form {
    padding: clamp(20px, 5vw, 34px);
    display: grid;
    gap: 14px;
}

.field {
    display: grid;
    gap: 8px;
}

.field label {
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: 2px solid var(--ink);
    background: var(--paper);
    color: var(--ink);
    outline: 0;
    padding: 15px 14px;
    font-weight: 800;
}

.field textarea {
    min-height: 132px;
    resize: vertical;
    line-height: 1.4;
}

.site-footer {
    background: var(--ink);
    color: var(--white);
    border-top: 2px solid var(--ink);
}

.footer-inner {
    width: min(var(--max), calc(100% - 32px));
    min-height: 100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    font-weight: 900;
}

.js-reveal {
    opacity: 0;
    transform: translateY(24px);
}

@media (max-width: 920px) {
    .nav__links {
        display: none;
    }

    .hero,
    .split,
    .detail-layout,
    .request-panel {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding-top: 34px;
    }

    .hero__stage {
        min-height: 330px;
        order: -1;
    }

    .request-copy {
        border-right: 0;
        border-bottom: 2px solid var(--ink);
    }

    .side-box {
        position: static;
    }
}

@media (max-width: 560px) {
    .section,
    .nav,
    .footer-inner {
        width: min(calc(100% - 24px), var(--max));
    }

    .nav {
        min-height: 68px;
    }

    .brand__mark {
        width: 36px;
        height: 36px;
    }

    .brand {
        font-size: 17px;
    }

    .button {
        width: 100%;
        min-height: 50px;
    }

    .nav .button {
        width: auto;
        min-height: 42px;
        padding: 0 13px;
        box-shadow: 3px 3px 0 var(--green);
        font-size: 13px;
    }

    .hero h1 {
        font-size: clamp(38px, 13vw, 58px);
    }

    .hero__actions {
        flex-direction: column;
    }

    .band {
        padding: 58px 0;
    }

    .section-head {
        align-items: start;
        flex-direction: column;
    }

    .slider-tools {
        width: 100%;
    }

    .icon-button {
        flex: 1;
    }

    .news-strip {
        grid-auto-columns: minmax(286px, 88vw);
    }

    .news-card {
        min-height: 500px;
    }

    .news-card__image {
        height: 170px;
    }

    .article-card {
        grid-template-columns: 1fr;
    }

    .arrow-box {
        display: none;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }
}
