:root {
    --pres-bg: #07090b;
    --pres-paper: #eee3cd;
    --pres-muted: #a6a197;
    --pres-gold: #d0a24d;
    --pres-red: #7b2026;
    --pres-blue: #416b78;
}

.presentation-page {
    background: var(--pres-bg);
    color: var(--pres-paper);
}

.presentation-page main {
    overflow: clip;
}

.pres-progress {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 2200;
    height: 2px;
    background: rgba(255, 255, 255, 0.04);
}

.pres-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--pres-red), var(--pres-gold));
}

.pres-header {
    position: fixed;
    top: 2px;
    right: 0;
    left: 0;
    z-index: 2000;
    display: flex;
    height: 76px;
    padding: 0 clamp(20px, 4vw, 68px);
    border-bottom: 1px solid rgba(208, 162, 77, 0.14);
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background: rgba(7, 9, 11, 0.78);
    backdrop-filter: blur(18px);
}

.pres-brand {
    width: 142px;
    height: 52px;
    overflow: hidden;
    border-radius: 4px;
}

.pres-brand img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pres-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.pres-menu a {
    display: inline-flex;
    min-height: 40px;
    padding: 0 12px;
    border-radius: 7px;
    align-items: center;
    color: #c8c2b5;
    font-size: 0.76rem;
    font-weight: 800;
    text-decoration: none;
}

.pres-menu a:hover {
    background: rgba(208, 162, 77, 0.08);
    color: var(--pres-gold);
}

.pres-menu .pres-menu-cta {
    margin-left: 6px;
    border: 1px solid rgba(208, 162, 77, 0.5);
    color: #eacb8a;
}

.pres-menu-toggle {
    display: none;
    width: 46px;
    height: 42px;
    padding: 10px;
    border: 1px solid rgba(208, 162, 77, 0.3);
    border-radius: 8px;
    background: transparent;
}

.pres-menu-toggle span {
    display: block;
    height: 1px;
    margin: 6px 0;
    background: var(--pres-gold);
}

.pres-menu-toggle b {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.pres-rail {
    position: fixed;
    top: 50%;
    right: 22px;
    z-index: 1500;
    display: grid;
    gap: 5px;
    transform: translateY(-50%);
}

.pres-rail a {
    position: relative;
    display: flex;
    width: 44px;
    height: 36px;
    border-radius: 6px;
    align-items: center;
    justify-content: center;
    color: #777871;
    font-size: 0.65rem;
    font-weight: 900;
    text-decoration: none;
}

.pres-rail a::before {
    position: absolute;
    right: -22px;
    width: 2px;
    height: 100%;
    background: transparent;
    content: "";
}

.pres-rail a b {
    position: absolute;
    top: 50%;
    right: 51px;
    width: max-content;
    max-width: 250px;
    padding: 6px 9px;
    border: 1px solid rgba(208, 162, 77, 0.22);
    border-radius: 5px;
    background: rgba(8, 10, 12, 0.96);
    color: #d7cdb8;
    font-size: 0.68rem;
    opacity: 0;
    pointer-events: none;
    transform: translate(10px, -50%);
    transition: opacity 160ms ease, transform 160ms ease;
}

.pres-rail a:hover b {
    opacity: 1;
    transform: translate(0, -50%);
}

.pres-rail a.is-active {
    background: rgba(208, 162, 77, 0.12);
    color: var(--pres-gold);
}

.pres-rail a.is-active::before {
    background: var(--pres-gold);
}

.pres-hero {
    position: relative;
    display: grid;
    min-height: 100svh;
    padding: 130px clamp(30px, 9vw, 150px) 100px;
    align-items: center;
    overflow: hidden;
}

.pres-hero video,
.pres-hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.pres-hero video {
    z-index: -2;
    object-fit: cover;
    opacity: 0.74;
    filter: saturate(0.68) contrast(1.14);
}

.pres-hero-shade {
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(6, 8, 10, 0.96) 0%, rgba(6, 8, 10, 0.74) 45%, rgba(6, 8, 10, 0.3) 75%, rgba(6, 8, 10, 0.5) 100%),
        linear-gradient(180deg, rgba(6, 8, 10, 0.12), #07090b 100%);
}

.pres-hero-copy {
    max-width: 920px;
}

.pres-kicker {
    margin-bottom: 18px;
    color: var(--pres-gold);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.pres-hero h1 {
    max-width: 980px;
    margin-bottom: 28px;
    color: #f1e4c8;
    font-size: clamp(3.3rem, 8.5vw, 8rem);
    letter-spacing: -0.05em;
    line-height: 0.91;
    text-wrap: balance;
}

.pres-hero-copy > p:last-of-type {
    max-width: 700px;
    color: #d0c9bb;
    font-size: clamp(1.04rem, 2vw, 1.3rem);
}

.pres-actions {
    display: flex;
    margin-top: 34px;
    flex-wrap: wrap;
    gap: 12px;
}

.pres-button {
    display: inline-flex;
    min-height: 50px;
    padding: 0 22px;
    border: 1px solid #c59643;
    border-radius: 7px;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #d6a951, #916427);
    color: #120d07;
    font-size: 0.82rem;
    font-weight: 900;
    text-decoration: none;
}

.pres-button:hover {
    color: #120d07;
    filter: brightness(1.12);
}

.pres-button-ghost {
    background: rgba(8, 10, 12, 0.5);
    color: #e5c77f;
}

.pres-button-ghost:hover {
    color: #fff0bd;
}

.pres-scroll {
    position: absolute;
    right: clamp(30px, 6vw, 100px);
    bottom: 38px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #928f87;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-decoration: none;
    text-transform: uppercase;
}

.pres-scroll span {
    position: relative;
    width: 22px;
    height: 34px;
    border: 1px solid rgba(208, 162, 77, 0.46);
    border-radius: 999px;
}

.pres-scroll span::after {
    position: absolute;
    top: 7px;
    left: 50%;
    width: 2px;
    height: 7px;
    background: var(--pres-gold);
    content: "";
    transform: translateX(-50%);
}

.pres-overview {
    padding: clamp(90px, 13vw, 180px) clamp(30px, 9vw, 150px);
    border-bottom: 1px solid rgba(208, 162, 77, 0.16);
    background:
        radial-gradient(circle at 80% 30%, rgba(65, 107, 120, 0.12), transparent 35%),
        #090c0f;
}

.pres-section-inner,
.pres-step-inner,
.pres-map-inner,
.pres-final-inner {
    width: min(1160px, 100%);
    margin: 0 auto;
}

.pres-section-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.6fr);
    align-items: center;
    gap: clamp(50px, 10vw, 140px);
}

.pres-overview h2,
.pres-map h2,
.pres-final h2 {
    margin-bottom: 24px;
    color: #efe2c6;
    font-size: clamp(2.6rem, 6vw, 5.5rem);
    letter-spacing: -0.04em;
}

.pres-overview-copy > p:last-child,
.pres-map-inner > p:last-child,
.pres-final-inner > p {
    color: #b9b4a9;
    font-size: clamp(1rem, 2vw, 1.2rem);
}

.pres-compass {
    position: relative;
    display: grid;
    width: min(360px, 100%);
    aspect-ratio: 1;
    border: 1px solid rgba(208, 162, 77, 0.32);
    border-radius: 50%;
    place-items: center;
}

.pres-compass::before,
.pres-compass::after {
    position: absolute;
    inset: 14%;
    border: 1px solid rgba(208, 162, 77, 0.2);
    border-radius: 50%;
    content: "";
}

.pres-compass::after {
    inset: 28%;
    border-radius: 14px;
    transform: rotate(45deg);
}

.pres-compass > strong {
    z-index: 2;
    color: #ead39d;
    font-family: var(--serif);
    font-size: 2rem;
    font-style: italic;
}

.pres-compass-ring {
    position: absolute;
    inset: 0;
    animation: compass-turn 32s linear infinite;
}

.pres-compass-ring span {
    position: absolute;
    color: #777b76;
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.pres-compass-ring span:nth-child(1) { top: 7%; left: 50%; transform: translateX(-50%); }
.pres-compass-ring span:nth-child(2) { top: 50%; right: 4%; transform: translateY(-50%) rotate(90deg); }
.pres-compass-ring span:nth-child(3) { bottom: 7%; left: 50%; transform: translateX(-50%); }
.pres-compass-ring span:nth-child(4) { top: 50%; left: 5%; transform: translateY(-50%) rotate(-90deg); }

@keyframes compass-turn {
    to { transform: rotate(360deg); }
}

.pres-principles {
    display: grid;
    width: min(1160px, 100%);
    margin: clamp(70px, 10vw, 120px) auto 0;
    grid-template-columns: repeat(3, 1fr);
}

.pres-principles article {
    padding: 30px;
    border-top: 1px solid rgba(208, 162, 77, 0.28);
    border-right: 1px solid rgba(208, 162, 77, 0.16);
}

.pres-principles article:last-child {
    border-right: 0;
}

.pres-principles span {
    color: var(--pres-gold);
    font-family: var(--serif);
}

.pres-principles h3 {
    margin: 35px 0 10px;
    color: #e8d9bb;
    font-size: 1.45rem;
}

.pres-principles p {
    color: #92928b;
    font-size: 0.88rem;
}

.pres-step {
    --theme: var(--pres-gold);
    position: relative;
    display: grid;
    min-height: 100svh;
    padding: clamp(110px, 13vw, 180px) clamp(30px, 9vw, 150px);
    border-bottom: 1px solid color-mix(in srgb, var(--theme) 30%, transparent);
    align-items: center;
    background:
        radial-gradient(circle at 88% 35%, color-mix(in srgb, var(--theme) 14%, transparent), transparent 32%),
        linear-gradient(135deg, #0a0d10, #080a0c 72%);
    overflow: hidden;
}

.theme-realm { --theme: #c79b45; }
.theme-story { --theme: #7e3538; }
.theme-combat { --theme: #b54b45; }
.theme-growth { --theme: #757055; }
.theme-economy { --theme: #a77835; }
.theme-world { --theme: #416b78; }
.theme-technology { --theme: #8299a0; }

.pres-step-number {
    position: absolute;
    top: 50%;
    left: -0.08em;
    color: color-mix(in srgb, var(--theme) 8%, transparent);
    font-family: var(--serif);
    font-size: clamp(14rem, 38vw, 42rem);
    line-height: 0.8;
    pointer-events: none;
    transform: translateY(-50%);
}

.pres-step-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(330px, 0.72fr);
    align-items: start;
    gap: clamp(50px, 10vw, 140px);
}

.pres-step-heading h2 {
    margin: 0;
    color: #efe1c3;
    font-size: clamp(2.8rem, 7vw, 6.4rem);
    letter-spacing: -0.045em;
    line-height: 0.94;
}

.pres-step-content {
    padding-top: 54px;
}

.pres-step-note {
    display: inline-flex;
    margin-bottom: 22px;
    padding: 6px 9px;
    border: 1px solid color-mix(in srgb, var(--theme) 45%, transparent);
    border-radius: 999px;
    color: color-mix(in srgb, var(--theme) 82%, white);
    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pres-step-body {
    margin-bottom: 28px;
    color: #bbb6aa;
    font-size: clamp(1rem, 1.8vw, 1.18rem);
}

.pres-step .feature-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.pres-step .feature-list li {
    display: grid;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    grid-template-columns: 22px 1fr;
    align-items: center;
    color: #d4cdbf;
    font-size: 0.9rem;
}

.pres-step .feature-list li span {
    width: 8px;
    height: 8px;
    border: 1px solid var(--theme);
    transform: rotate(45deg);
}

.pres-step-sigil {
    position: absolute;
    right: clamp(50px, 8vw, 130px);
    bottom: 40px;
    display: grid;
    width: 76px;
    height: 76px;
    border: 1px solid color-mix(in srgb, var(--theme) 42%, transparent);
    border-radius: 50%;
    place-items: center;
    color: color-mix(in srgb, var(--theme) 68%, white);
    font-family: var(--serif);
}

.pres-step-sigil::before {
    position: absolute;
    inset: 9px;
    border: 1px solid color-mix(in srgb, var(--theme) 25%, transparent);
    transform: rotate(45deg);
    content: "";
}

.pres-map {
    padding: clamp(100px, 15vw, 200px) clamp(30px, 9vw, 150px);
    text-align: center;
    background:
        radial-gradient(circle at center, rgba(208, 162, 77, 0.09), transparent 36%),
        #080a0c;
}

.pres-map-inner {
    max-width: 980px;
}

.pres-orbit {
    position: relative;
    width: min(620px, 90vw);
    aspect-ratio: 1;
    margin: clamp(60px, 10vw, 110px) auto;
    border: 1px solid rgba(208, 162, 77, 0.24);
    border-radius: 50%;
}

.pres-orbit::before,
.pres-orbit::after {
    position: absolute;
    inset: 17%;
    border: 1px solid rgba(208, 162, 77, 0.17);
    border-radius: 50%;
    content: "";
}

.pres-orbit::after {
    inset: 34%;
}

.pres-orbit-core {
    position: absolute;
    inset: 35%;
    display: grid;
    border: 1px solid rgba(208, 162, 77, 0.45);
    border-radius: 50%;
    place-items: center;
    background: #0d1114;
}

.pres-orbit-core strong {
    color: #e7d4ad;
    font-family: var(--serif);
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-style: italic;
}

.pres-orbit > span {
    position: absolute;
    display: inline-flex;
    padding: 7px 10px;
    border: 1px solid rgba(208, 162, 77, 0.25);
    border-radius: 999px;
    background: #0a0d0f;
    color: #c6bdab;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.orbit-story { top: 4%; left: 50%; transform: translateX(-50%); }
.orbit-combat { top: 29%; right: -2%; }
.orbit-build { right: 11%; bottom: 11%; }
.orbit-market { bottom: 7%; left: 17%; }
.orbit-social { top: 31%; left: -4%; }

.pres-final {
    position: relative;
    display: grid;
    min-height: 88svh;
    padding: clamp(110px, 14vw, 190px) clamp(30px, 9vw, 150px);
    align-items: center;
    background:
        linear-gradient(90deg, rgba(7, 9, 11, 0.95), rgba(7, 9, 11, 0.55)),
        radial-gradient(circle at 80% 50%, rgba(123, 32, 38, 0.32), transparent 36%);
}

.pres-final-inner {
    text-align: center;
}

.pres-final-inner > p {
    max-width: 680px;
    margin-right: auto;
    margin-left: auto;
}

.pres-final .pres-actions {
    justify-content: center;
}

.pres-admin-link {
    display: inline-block;
    margin-top: 32px;
    color: #85877f;
    font-size: 0.74rem;
}

.pres-footer {
    display: flex;
    padding: 28px clamp(20px, 5vw, 80px);
    border-top: 1px solid rgba(208, 162, 77, 0.16);
    justify-content: space-between;
    gap: 20px;
    background: #050708;
    color: #6f726d;
    font-size: 0.72rem;
}

.pres-footer a {
    color: #a28e63;
    text-decoration: none;
}

@media (prefers-reduced-motion: reduce) {
    .pres-compass-ring {
        animation: none;
    }
}

@media (max-width: 1020px) {
    .pres-menu-toggle {
        display: block;
    }

    .pres-menu {
        position: absolute;
        top: 75px;
        right: 0;
        left: 0;
        display: none;
        padding: 16px 20px 22px;
        border-bottom: 1px solid rgba(208, 162, 77, 0.16);
        align-items: stretch;
        flex-direction: column;
        background: rgba(7, 9, 11, 0.98);
    }

    .pres-menu.is-open {
        display: flex;
    }

    .pres-menu .pres-menu-cta {
        margin: 8px 0 0;
    }

    .pres-rail {
        display: none;
    }

    .pres-section-inner,
    .pres-step-inner {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .pres-compass {
        width: 300px;
        margin: 0 auto;
    }

    .pres-step-content {
        max-width: 700px;
        padding-top: 0;
    }
}

@media (max-width: 680px) {
    .pres-header {
        height: 66px;
        padding: 0 14px;
    }

    .pres-brand {
        width: 124px;
        height: 45px;
    }

    .pres-menu {
        top: 65px;
    }

    .pres-hero {
        min-height: 100svh;
        padding: 110px 20px 90px;
    }

    .pres-hero h1 {
        font-size: clamp(3.1rem, 15vw, 5.3rem);
    }

    .pres-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .pres-button {
        width: 100%;
    }

    .pres-scroll {
        right: 20px;
        bottom: 24px;
    }

    .pres-overview,
    .pres-step,
    .pres-map,
    .pres-final {
        padding-right: 20px;
        padding-left: 20px;
    }

    .pres-overview h2,
    .pres-map h2,
    .pres-final h2,
    .pres-step-heading h2 {
        font-size: clamp(2.5rem, 13vw, 4.2rem);
    }

    .pres-principles {
        grid-template-columns: 1fr;
    }

    .pres-principles article {
        padding: 24px 0;
        border-right: 0;
    }

    .pres-principles h3 {
        margin-top: 20px;
    }

    .pres-step {
        min-height: auto;
    }

    .pres-step-number {
        top: 18%;
        font-size: 17rem;
    }

    .pres-step-sigil {
        right: 22px;
        bottom: 20px;
        width: 58px;
        height: 58px;
    }

    .pres-orbit {
        width: min(440px, 88vw);
    }

    .pres-orbit > span {
        padding: 5px 7px;
        font-size: 0.57rem;
    }

    .pres-footer {
        align-items: center;
        flex-direction: column;
        text-align: center;
    }
}

.pres-class-lineup {
    width: min(1180px, calc(100% - 48px));
    margin: 54px auto 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.pres-class-lineup article {
    position: relative;
    min-height: 340px;
    overflow: hidden;
    border: 1px solid rgba(223, 181, 98, .24);
    border-radius: 4px;
    background: linear-gradient(180deg, rgba(54, 58, 57, .96), rgba(28, 31, 31, .98));
}

.pres-class-lineup img {
    position: absolute;
    inset: 4px 0 auto;
    width: 100%;
    height: 270px;
    object-fit: contain;
    object-position: center top;
    filter: drop-shadow(0 18px 16px rgba(0, 0, 0, .36));
}

.pres-class-lineup article > div {
    position: absolute;
    inset: auto 0 0;
    z-index: 1;
    padding: 54px 18px 18px;
    background: linear-gradient(180deg, transparent, rgba(23, 26, 27, .98) 42%);
}

.pres-class-lineup h3 {
    margin: 0 0 5px;
    font-size: 1.12rem;
}

.pres-class-lineup p {
    margin: 0;
    color: var(--pres-muted);
    font-size: .86rem;
    line-height: 1.55;
}

@media (max-width: 840px) {
    .pres-class-lineup {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .pres-class-lineup {
        width: min(100% - 28px, 520px);
        grid-template-columns: 1fr;
    }

    .pres-class-lineup article {
        min-height: 320px;
    }
}

/* Second pass: clearer sections and a restrained reading scale. */
:root {
    --pres-bg: #171a1b;
    --pres-paper: #f1eadb;
    --pres-muted: #c0baad;
}

.presentation-page {
    background: #171a1b;
}

.pres-header {
    height: 68px;
    background: rgba(20, 23, 23, 0.9);
}

.pres-brand {
    width: 132px;
    height: 48px;
}

.language-switcher-pres {
    margin-left: auto;
}

.language-switcher-pres .language-menu {
    top: calc(100% + 12px);
}

.pres-hero {
    min-height: min(780px, 100svh);
    padding-top: 112px;
    padding-bottom: 72px;
}

.pres-hero video {
    opacity: 0.92;
    filter: saturate(0.9) contrast(1.02) brightness(1.04);
}

.pres-hero-shade {
    background:
        linear-gradient(90deg, rgba(19, 22, 22, 0.9) 0%, rgba(19, 22, 22, 0.68) 46%, rgba(19, 22, 22, 0.18) 78%, rgba(19, 22, 22, 0.3) 100%),
        linear-gradient(180deg, rgba(19, 22, 22, 0.08) 58%, #171a1b 100%);
}

.pres-hero-copy {
    max-width: 720px;
    padding: clamp(24px, 4vw, 38px);
    border: 1px solid rgba(218, 174, 91, 0.25);
    border-radius: 17px;
    background: rgba(27, 31, 31, 0.7);
    backdrop-filter: blur(9px);
}

.pres-hero h1 {
    max-width: 720px;
    margin-bottom: 18px;
    font-size: clamp(2.55rem, 5vw, 4.4rem);
    line-height: 0.98;
}

.pres-hero-copy > p:last-of-type {
    max-width: 650px;
    color: #e0d9cd;
    font-size: clamp(0.98rem, 1.5vw, 1.12rem);
}

.pres-actions {
    margin-top: 26px;
}

.pres-scroll {
    font-size: 0.65rem;
}

.pres-overview {
    padding-top: clamp(70px, 9vw, 110px);
    padding-bottom: clamp(70px, 9vw, 110px);
    background:
        radial-gradient(circle at 80% 30%, rgba(73, 108, 113, 0.18), transparent 38%),
        #202425;
}

.pres-overview h2,
.pres-map h2,
.pres-final h2 {
    font-size: clamp(2rem, 4.2vw, 3.6rem);
    letter-spacing: -0.03em;
}

.pres-overview-copy > p:last-child,
.pres-map-inner > p:last-child,
.pres-final-inner > p {
    color: #c8c1b5;
    font-size: clamp(0.98rem, 1.5vw, 1.1rem);
}

.pres-principles {
    margin-top: clamp(44px, 6vw, 72px);
}

.pres-principles article {
    padding: 25px;
    background: rgba(35, 39, 39, 0.68);
}

.pres-principles h3 {
    margin-top: 22px;
    font-size: 1.25rem;
}

.pres-principles p {
    color: #b5b1a8;
    font-size: 0.84rem;
}

.pres-step {
    min-height: auto;
    padding-top: clamp(78px, 9vw, 120px);
    padding-bottom: clamp(78px, 9vw, 120px);
    background:
        radial-gradient(circle at 88% 35%, color-mix(in srgb, var(--theme) 17%, transparent), transparent 35%),
        linear-gradient(135deg, #252929, #1b1f20 72%);
}

.pres-step-inner {
    gap: clamp(38px, 7vw, 90px);
}

.pres-step-heading h2 {
    font-size: clamp(2.15rem, 4.6vw, 4rem);
    line-height: 1;
}

.pres-step-content {
    padding-top: 35px;
}

.pres-step-body {
    color: #ccc5b9;
    font-size: clamp(0.98rem, 1.35vw, 1.08rem);
}

.pres-step-number {
    color: color-mix(in srgb, var(--theme) 7%, transparent);
}

.pres-map {
    padding-top: clamp(80px, 10vw, 130px);
    padding-bottom: clamp(80px, 10vw, 130px);
    background:
        radial-gradient(circle at center, rgba(208, 162, 77, 0.13), transparent 40%),
        #202425;
}

.pres-final {
    min-height: 640px;
    padding-top: clamp(85px, 10vw, 130px);
    padding-bottom: clamp(85px, 10vw, 130px);
    background:
        linear-gradient(90deg, rgba(25, 28, 28, 0.9), rgba(25, 28, 28, 0.48)),
        radial-gradient(circle at 80% 50%, rgba(123, 32, 38, 0.4), transparent 38%);
}

.pres-footer {
    background: #171a1b;
}

@media (max-width: 1020px) {
    .pres-header {
        height: 68px;
    }

    .pres-menu {
        top: 67px;
        background: rgba(24, 27, 27, 0.99);
    }

    .pres-section-inner,
    .pres-step-inner {
        gap: 34px;
    }
}

@media (max-width: 680px) {
    .pres-brand {
        width: 112px;
    }

    .language-switcher-pres summary {
        width: 38px;
    }

    .pres-hero {
        min-height: 650px;
        padding-top: 94px;
        padding-bottom: 48px;
    }

    .pres-hero-copy {
        padding: 24px 20px;
        background: rgba(27, 31, 31, 0.8);
    }

    .pres-hero h1 {
        font-size: clamp(2.35rem, 12vw, 3.4rem);
    }

    .pres-overview h2,
    .pres-map h2,
    .pres-final h2,
    .pres-step-heading h2 {
        font-size: clamp(1.9rem, 9vw, 2.7rem);
    }
}
