:root {
    color-scheme: dark;
    --bg: #080d10;
    --panel: rgba(14, 21, 25, 0.88);
    --panel-strong: rgba(18, 27, 31, 0.96);
    --ink: #f0eadf;
    --muted: rgba(240, 234, 223, 0.68);
    --line: rgba(220, 205, 177, 0.17);
    --line-strong: rgba(220, 205, 177, 0.36);
    --amber: #d6a45f;
    --red: #c95d4a;
    --blue: #86aebe;
    --paper: #fff7e8;
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at 15% 10%, rgba(214, 164, 95, 0.12), transparent 26rem),
        radial-gradient(circle at 80% 18%, rgba(134, 174, 190, 0.11), transparent 24rem),
        linear-gradient(180deg, #071014 0%, #080d10 46%, #11181c 100%);
    color: var(--ink);
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.55;
}

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

a {
    color: inherit;
}

.site-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem max(1rem, calc((100vw - var(--max)) / 2));
    border-bottom: 1px solid var(--line);
    background: rgba(8, 13, 16, 0.84);
    backdrop-filter: blur(18px);
}

.brand,
.nav-links a,
.eyebrow,
.section-kicker,
.button,
.band-grid span,
figcaption {
    font-family: "Segoe UI", Arial, sans-serif;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.brand {
    color: var(--paper);
    font-weight: 800;
    text-decoration: none;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.75rem 1.05rem;
    color: var(--muted);
    font-size: 0.78rem;
}

.nav-links a {
    text-decoration: none;
}

.nav-links a:hover {
    color: var(--ink);
}

.hero {
    position: relative;
    min-height: 92vh;
    overflow: hidden;
}

.hero-art {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(8, 13, 16, 0.96) 0%, rgba(8, 13, 16, 0.86) 40%, rgba(8, 13, 16, 0.44) 100%),
        linear-gradient(180deg, rgba(8, 13, 16, 0.04), rgba(8, 13, 16, 0.8)),
        url("./assets/art/hayekar_congress_approach_gen2.png") center / cover no-repeat;
}

.hero-inner,
.section-inner {
    width: min(calc(100% - 2rem), var(--max));
    margin: 0 auto;
}

.hero-inner {
    position: relative;
    z-index: 1;
    min-height: 92vh;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(250px, 360px);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    padding: 5rem 0 4rem;
}

.eyebrow,
.section-kicker {
    margin: 0 0 0.7rem;
    color: var(--amber);
    font-size: 0.76rem;
    font-weight: 900;
}

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

h1,
h2,
h3 {
    font-family: "Segoe UI", Arial, sans-serif;
    line-height: 0.98;
}

h1 {
    max-width: 8.6ch;
    font-size: clamp(4rem, 10vw, 8.4rem);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

h2 {
    font-size: clamp(2.2rem, 5vw, 4.4rem);
    text-transform: uppercase;
}

h3 {
    font-size: 1.1rem;
    text-transform: uppercase;
}

.hero-line {
    max-width: 780px;
    margin-top: 1rem;
    color: #f2d8aa;
    font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.hero-text {
    max-width: 700px;
    margin-top: 1rem;
    color: rgba(240, 234, 223, 0.84);
    font-size: 1.14rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.7rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0.78rem 1rem;
    border: 1px solid rgba(214, 164, 95, 0.58);
    background: rgba(214, 164, 95, 0.08);
    color: var(--ink);
    font-size: 0.76rem;
    font-weight: 900;
    text-decoration: none;
}

.button.primary {
    background: var(--amber);
    color: #101417;
}

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

.cover-panel {
    align-self: center;
    padding: 0.72rem;
    border: 1px solid var(--line-strong);
    background: rgba(8, 13, 16, 0.72);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.46);
}

.cover-panel img {
    aspect-ratio: 2 / 3;
    object-fit: cover;
}

.cover-panel p {
    margin-top: 0.65rem;
    color: var(--muted);
    font-size: 0.84rem;
}

.section {
    padding: clamp(4rem, 8vw, 7rem) 0;
}

.split,
.updates-grid,
.book-one-grid,
.game-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.copy-block {
    color: var(--muted);
    font-size: 1.12rem;
}

.copy-block p + p,
.copy-block ul,
.excerpt p + p,
.updates p + p,
.book-one p {
    margin-top: 1rem;
}

.sample {
    background:
        linear-gradient(180deg, rgba(8, 13, 16, 0.98), rgba(15, 23, 27, 0.96)),
        radial-gradient(circle at 80% 20%, rgba(134, 174, 190, 0.12), transparent 22rem);
}

.sample-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.sample-layout > div > p:last-child {
    max-width: 600px;
    margin-top: 1rem;
    color: var(--muted);
    font-size: 1.08rem;
}

.sample-card {
    padding: clamp(1.1rem, 3vw, 1.8rem);
    border: 1px solid var(--line-strong);
    background: rgba(255, 247, 232, 0.06);
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.26);
}

.sample-tag {
    margin-bottom: 1rem;
    color: var(--amber);
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.excerpt {
    color: rgba(240, 234, 223, 0.86);
    font-size: 1.08rem;
}

.sample-card .button {
    margin-top: 1.35rem;
}

.bands {
    padding-top: 0;
}

.band-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.band-grid article {
    min-height: 220px;
    padding: 1rem;
    border: 1px solid var(--line);
    background: var(--panel);
}

.band-grid span {
    color: var(--amber);
    font-size: 0.72rem;
    font-weight: 900;
}

.band-grid h3 {
    margin-top: 1.2rem;
}

.band-grid p {
    margin-top: 0.7rem;
    color: var(--muted);
}

.crew {
    background: #0b1215;
}

.crew .section-head p:last-child {
    max-width: 720px;
    margin-top: 0.9rem;
    color: var(--muted);
    font-size: 1.08rem;
}

.crew-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
    margin-top: 1.4rem;
}

.crew-card {
    display: grid;
    grid-template-columns: 104px 1fr;
    gap: 0.8rem;
    min-height: 156px;
    padding: 0.82rem;
    border: 1px solid var(--line);
    background: rgba(240, 234, 223, 0.04);
}

.crew-card img {
    width: 104px;
    height: 132px;
    object-fit: cover;
    border: 1px solid rgba(220, 205, 177, 0.16);
}

.crew-card span {
    display: block;
    color: var(--amber);
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.crew-card h3 {
    margin-top: 0.25rem;
    font-size: 1rem;
}

.crew-card p {
    margin-top: 0.45rem;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.4;
}

.feature {
    min-height: 70vh;
    background:
        linear-gradient(90deg, rgba(8, 13, 16, 0.94), rgba(8, 13, 16, 0.58)),
        url("./assets/art/svarog_evacuation_queue_gen2.png") center / cover no-repeat;
}

.feature-shade {
    min-height: 70vh;
    display: grid;
    align-items: end;
    background: linear-gradient(180deg, rgba(8, 13, 16, 0.08), rgba(8, 13, 16, 0.88));
}

.feature-copy {
    max-width: var(--max);
    padding-bottom: clamp(3rem, 8vw, 6rem);
}

.feature-copy h2,
.feature-copy p {
    max-width: 720px;
}

.feature-copy > p:last-child {
    margin-top: 1rem;
    color: rgba(240, 234, 223, 0.82);
    font-size: 1.16rem;
}

.game-feature {
    background: #0b1215;
}

.game-card {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    border: 1px solid var(--line-strong);
    background: var(--panel);
}

.game-card img {
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.scanline {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 0 50%, rgba(255, 255, 255, 0.035) 50% 100%),
        radial-gradient(circle at 35% 35%, transparent 0 22%, rgba(8, 13, 16, 0.58) 70%);
    background-size: auto, 100% 100%;
}

.plain-list {
    padding-left: 1.1rem;
}

.plain-list li + li {
    margin-top: 0.45rem;
}

.game-layout .button {
    margin-top: 1.4rem;
}

.visual-ledger {
    background: linear-gradient(180deg, #11181c, #0a1013);
}

.section-head {
    max-width: 760px;
    margin-bottom: 1.2rem;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
}

figure {
    margin: 0;
    border: 1px solid var(--line);
    background: var(--panel);
}

figure img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

figcaption {
    padding: 0.65rem 0.75rem;
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 900;
}

.updates {
    background: #10171b;
}

.signup-panel {
    min-height: 180px;
    padding: 1rem;
    border: 1px solid var(--line);
    background: rgba(240, 234, 223, 0.04);
}

.book-one {
    background: #0a1013;
}

.book-one h2 {
    margin-bottom: 1rem;
}

.book-one .button {
    margin-top: 1.3rem;
}

.author-card {
    display: grid;
    grid-template-columns: 128px 1fr;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    border: 1px solid var(--line);
    background: var(--panel);
}

.author-card img {
    aspect-ratio: 1;
    object-fit: cover;
}

.author-card p {
    margin-top: 0.45rem;
    color: var(--muted);
    font-size: 0.95rem;
}

.disclosure-section {
    padding: 2rem 0;
    background: #080d10;
}

.disclosure-box {
    padding-top: 1rem;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.92rem;
}

.disclosure-box .section-kicker {
    margin-bottom: 0.45rem;
}

.disclosure-box p:last-child {
    max-width: 900px;
}

.site-footer {
    border-top: 1px solid var(--line);
    background: #070b0e;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.2rem 0;
    color: var(--muted);
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    .site-nav,
    .hero-inner,
    .split,
    .sample-layout,
    .updates-grid,
    .book-one-grid,
    .game-layout,
    .band-grid,
    .crew-grid,
    .image-grid {
        grid-template-columns: 1fr;
    }

    .site-nav {
        display: grid;
    }

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

    .hero-inner {
        padding-top: 3.5rem;
    }

    .cover-panel {
        max-width: 340px;
    }

    .band-grid {
        display: grid;
    }
}

@media (max-width: 560px) {
    .section {
        padding: 3.2rem 0;
    }

    h1 {
        font-size: clamp(3rem, 18vw, 4.6rem);
    }

    .hero-line {
        font-size: 1.25rem;
    }

    .option-placeholder {
        display: none;
    }

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

    .author-card img {
        width: 132px;
    }

    .crew-card {
        grid-template-columns: 86px 1fr;
    }

    .crew-card img {
        width: 86px;
        height: 112px;
    }
}
