:root {
    --paper: #f4f1ea;
    --ink: #171717;
    --muted: #5c5a53;
    --line: #242424;
    --soft-line: #cbc5b8;
    --panel: #fffdf7;
    --panel-alt: #ebe5d8;
    --accent: #085f63;
    --accent-dark: #053f42;
    --danger: #7a1f1f;
    --shadow: 0 2px 0 #171717;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        linear-gradient(90deg, rgba(23, 23, 23, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(23, 23, 23, 0.025) 1px, transparent 1px),
        var(--paper);
    background-size: 28px 28px;
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.55;
}

a {
    color: inherit;
}

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

.site-header {
    border-bottom: 2px solid var(--line);
    background: var(--panel);
}

.top-strip {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 7px clamp(16px, 4vw, 52px);
    color: #fff;
    background: var(--line);
    font: 700 12px/1.2 "Courier New", monospace;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px clamp(16px, 4vw, 52px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 13px;
    color: var(--ink);
    text-decoration: none;
}

.brand img {
    width: 44px;
    height: 31px;
    object-fit: contain;
    border: 1px solid var(--line);
    background: #fff;
}

.brand strong {
    display: block;
    font: 800 26px/0.95 Arial, Helvetica, sans-serif;
    letter-spacing: 0;
}

.brand small {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font: 700 11px/1.2 "Courier New", monospace;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 6px;
}

.nav-links a {
    min-height: 34px;
    padding: 8px 12px;
    border: 1px solid var(--line);
    background: var(--panel-alt);
    color: var(--ink);
    font: 700 12px/1.2 "Courier New", monospace;
    text-decoration: none;
    text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a:focus-visible {
    background: var(--ink);
    color: #fff;
}

main {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
    gap: clamp(24px, 5vw, 58px);
    align-items: center;
    min-height: min(760px, calc(100vh - 104px));
    padding: clamp(42px, 7vw, 96px) 0 clamp(32px, 5vw, 64px);
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--danger);
    font: 800 12px/1.2 "Courier New", monospace;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

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

h1 {
    margin-bottom: 16px;
    font: 900 clamp(56px, 8.8vw, 104px)/0.88 Arial, Helvetica, sans-serif;
    letter-spacing: 0;
    text-transform: uppercase;
}

h2 {
    margin-bottom: 0;
    font: 900 clamp(34px, 4vw, 44px)/0.96 Arial, Helvetica, sans-serif;
    letter-spacing: 0;
    text-transform: uppercase;
}

h3 {
    margin-bottom: 6px;
    font: 900 22px/1.1 Arial, Helvetica, sans-serif;
    letter-spacing: 0;
}

.lead {
    max-width: 620px;
    margin-bottom: 24px;
    color: #272727;
    font-size: clamp(18px, 2.1vw, 23px);
    line-height: 1.38;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 15px;
    border: 2px solid var(--line);
    box-shadow: var(--shadow);
    background: var(--panel);
    color: var(--ink);
    font: 800 13px/1.15 "Courier New", monospace;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(1px);
    box-shadow: 0 1px 0 #171717;
}

.btn.primary {
    background: var(--accent);
    color: #fff;
}

.btn.quiet {
    background: var(--panel-alt);
}

.release-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 560px;
    margin: 0;
    border: 2px solid var(--line);
    background: var(--panel);
}

.release-stats div {
    padding: 12px 14px;
    border-right: 1px solid var(--line);
}

.release-stats div:last-child {
    border-right: 0;
}

.release-stats dt {
    margin-bottom: 4px;
    color: var(--muted);
    font: 800 11px/1.2 "Courier New", monospace;
    text-transform: uppercase;
}

.release-stats dd {
    margin: 0;
    font: 900 20px/1 Arial, Helvetica, sans-serif;
}

.hero-screen,
.screen-gallery figure {
    margin: 0;
    border: 2px solid var(--line);
    box-shadow: 7px 7px 0 var(--line);
    background: #111;
}

.hero-screen img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    image-rendering: pixelated;
}

figcaption {
    padding: 9px 11px;
    border-top: 2px solid var(--line);
    background: var(--panel);
    color: var(--muted);
    font: 800 11px/1.2 "Courier New", monospace;
    text-transform: uppercase;
}

.notice {
    display: flex;
    gap: 14px;
    margin-bottom: clamp(42px, 7vw, 84px);
    padding: 14px 16px;
    border: 2px solid var(--line);
    background: var(--panel-alt);
    box-shadow: var(--shadow);
    font-size: 16px;
}

.notice strong {
    flex: 0 0 auto;
    font-family: Arial, Helvetica, sans-serif;
    text-transform: uppercase;
}

.section-grid {
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    gap: clamp(18px, 4vw, 48px);
    align-items: start;
    padding: 0 0 clamp(48px, 8vw, 92px);
}

.section-heading {
    position: sticky;
    top: 18px;
}

.release-table {
    border: 2px solid var(--line);
    background: var(--panel);
    box-shadow: var(--shadow);
}

.release-row {
    display: grid;
    grid-template-columns: minmax(170px, 1.1fr) minmax(150px, 1fr) minmax(112px, 0.6fr) minmax(96px, 0.45fr);
    min-height: 58px;
    border-bottom: 1px solid var(--soft-line);
}

.release-row:last-child {
    border-bottom: 0;
}

.release-row.header {
    min-height: 38px;
    background: var(--line);
    color: #fff;
    font: 800 11px/1.2 "Courier New", monospace;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.release-row.featured {
    background: #e4efec;
}

.release-row span {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 10px 12px;
    border-right: 1px solid var(--soft-line);
    overflow-wrap: anywhere;
}

.release-row span:last-child {
    border-right: 0;
}

.release-row strong {
    font-family: Arial, Helvetica, sans-serif;
}

.release-row small {
    margin-top: 3px;
    color: var(--muted);
    font: 700 11px/1.2 "Courier New", monospace;
    text-transform: uppercase;
}

.release-row a {
    width: max-content;
    max-width: 100%;
    color: var(--accent-dark);
    font: 900 12px/1.2 "Courier New", monospace;
    text-transform: uppercase;
}

.screen-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.screen-gallery img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    image-rendering: pixelated;
}

.tool-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
    border: 2px solid var(--line);
    background: var(--panel);
    box-shadow: var(--shadow);
}

.tool-panel p {
    margin-bottom: 0;
    color: var(--muted);
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 22px clamp(16px, 4vw, 52px);
    border-top: 2px solid var(--line);
    background: var(--line);
    color: #fff;
    font: 700 12px/1.4 "Courier New", monospace;
    text-transform: uppercase;
}

@media (max-width: 880px) {
    .navbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .nav-links {
        justify-content: flex-start;
    }

    .hero,
    .section-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .section-heading {
        position: static;
    }

    .release-row {
        grid-template-columns: minmax(140px, 1fr) minmax(120px, 0.9fr) minmax(82px, 0.55fr) minmax(78px, 0.45fr);
    }

    .screen-gallery {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    main {
        width: min(100% - 24px, 1160px);
    }

    .hide-small {
        display: none;
    }

    .nav-links a {
        flex: 1 1 auto;
        text-align: center;
    }

    .hero-actions,
    .tool-panel,
    .site-footer,
    .notice {
        flex-direction: column;
        align-items: stretch;
    }

    .release-stats {
        grid-template-columns: 1fr;
    }

    .release-stats div {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .release-stats div:last-child {
        border-bottom: 0;
    }

    .release-table,
    .release-row,
    .release-row span {
        display: block;
    }

    .release-row.header {
        display: none;
    }

    .release-row {
        padding: 12px;
    }

    .release-row span {
        padding: 4px 0;
        border-right: 0;
    }

    .release-row small {
        display: block;
    }
}
