:root {
    --rwsv-black: #050505;
    --rwsv-black-soft: #0a0a0a;
    --rwsv-panel: #101010;
    --rwsv-white: #f1efe9;
    --rwsv-white-soft: #c7c3ba;
    --rwsv-muted: #77736d;
    --rwsv-line: rgba(241, 239, 233, 0.17);
    --rwsv-line-strong: rgba(241, 239, 233, 0.36);
    --rwsv-red: #cc0e0e;
    --rwsv-red-dark: #870909;
    --rwsv-purple: #6f2ba8;
    --rwsv-page: min(100% - 48px, 1480px);
    --rwsv-display: Impact, Haettenschweiler, "Arial Narrow Bold", "Franklin Gothic Condensed", sans-serif;
    --rwsv-sans: Inter, "Helvetica Neue", Arial, sans-serif;
    --rwsv-mono: "Courier New", Courier, monospace;
    --rwsv-ease: cubic-bezier(.2, .75, .25, 1);
}

.rwsv-page,
.rwsv-page *,
.rwsv-page *::before,
.rwsv-page *::after {
    box-sizing: border-box;
}

.rwsv-page {
    position: relative;
    min-width: 320px;
    overflow-x: hidden;
    background: var(--rwsv-black);
    color: var(--rwsv-white);
    color-scheme: dark;
    scrollbar-color: var(--rwsv-red) var(--rwsv-black);
    font-family: var(--rwsv-sans);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.rwsv-page button,
.rwsv-page a {
    -webkit-tap-highlight-color: transparent;
}

.rwsv-page button,
.rwsv-page input,
.rwsv-page textarea,
.rwsv-page select {
    font: inherit;
}

.rwsv-page a {
    color: inherit;
}

.rwsv-page ::selection {
    color: #fff;
    background: var(--rwsv-red);
}

.rwsv-skip {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 2000;
    padding: 12px 18px;
    color: #fff;
    background: var(--rwsv-red);
    font-weight: 800;
    text-decoration: none;
    transform: translateY(-160%);
    transition: transform .2s ease;
}

.rwsv-skip:focus {
    transform: translateY(0);
}

.rwsv-page :focus-visible {
    outline: 3px solid var(--rwsv-white);
    outline-offset: 5px;
}

.rwsv-progress {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1200;
    height: 2px;
    background: transparent;
    pointer-events: none;
}

.rwsv-progress__bar {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--rwsv-red);
    transform: scaleX(0);
    transform-origin: left center;
    will-change: transform;
}

.rwsv-quick-access {
    position: relative;
    z-index: 1;
    padding: 58px max(24px, calc((100vw - 1480px) / 2)) clamp(32px, 4vw, 58px);
    color: var(--rwsv-white);
    background:
        radial-gradient(circle at 80% 0, rgba(111, 43, 168, .13), transparent 34%),
        var(--rwsv-black);
    border-bottom: 1px solid var(--rwsv-line);
}

.rwsv-quick-access__label {
    margin: 0 0 12px;
    color: var(--rwsv-muted);
    font-family: var(--rwsv-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.rwsv-quick-access__label--member {
    margin-top: clamp(26px, 3vw, 42px);
    color: rgba(241, 239, 233, .68);
}

.rwsv-quick-access__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    padding: 1px;
    background: var(--rwsv-line);
}

.rwsv-quick-access__button {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-width: 0;
    min-height: clamp(180px, 14vw, 215px);
    padding: clamp(18px, 2vw, 28px);
    color: var(--rwsv-white);
    background: var(--rwsv-panel);
    text-decoration: none;
    transition: color .2s ease, background .25s var(--rwsv-ease), transform .25s var(--rwsv-ease);
}

.rwsv-quick-access__button:hover,
.rwsv-quick-access__button:focus-visible {
    color: #fff;
    background: var(--rwsv-red);
    transform: translateY(-3px);
}

.rwsv-quick-access__number {
    color: var(--rwsv-red);
    font-family: var(--rwsv-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
}

.rwsv-quick-access__button:hover .rwsv-quick-access__number,
.rwsv-quick-access__button:focus-visible .rwsv-quick-access__number {
    color: #fff;
}

.rwsv-quick-access__button strong {
    display: block;
    margin-top: clamp(20px, 2vw, 30px);
    padding: 0 24px 0 0;
    overflow-wrap: anywhere;
    font-family: var(--rwsv-display);
    font-size: clamp(25px, 2.5vw, 42px);
    font-weight: 900;
    letter-spacing: .01em;
    line-height: .9;
    text-transform: uppercase;
}

.rwsv-quick-access__description {
    display: grid;
    gap: 4px;
    margin-top: 14px;
    padding: 0 26px 32px 0;
    color: var(--rwsv-muted);
    font-family: var(--rwsv-sans);
    font-size: clamp(11px, .9vw, 13px);
    font-weight: 500;
    line-height: 1.42;
}

.rwsv-quick-access__description span {
    display: block;
}

.rwsv-quick-access__button:hover .rwsv-quick-access__description,
.rwsv-quick-access__button:focus-visible .rwsv-quick-access__description {
    color: rgba(255, 255, 255, .86);
}

.rwsv-quick-access__arrow {
    position: absolute;
    right: clamp(16px, 1.7vw, 24px);
    bottom: clamp(15px, 1.7vw, 23px);
    color: var(--rwsv-muted);
    font-size: 20px;
    transition: color .2s ease, transform .25s var(--rwsv-ease);
}

.rwsv-quick-access__button:hover .rwsv-quick-access__arrow,
.rwsv-quick-access__button:focus-visible .rwsv-quick-access__arrow {
    color: #fff;
    transform: translate(3px, -3px);
}

.rwsv-quick-access__grid--member .rwsv-quick-access__button {
    background:
        linear-gradient(145deg, rgba(111, 43, 168, .12), transparent 60%),
        var(--rwsv-panel);
}

.rwsv-quick-access__grid--member .rwsv-quick-access__button:hover,
.rwsv-quick-access__grid--member .rwsv-quick-access__button:focus-visible {
    background: var(--rwsv-purple);
}

.rwsv-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 900;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 78px;
    padding: 0 max(24px, calc((100vw - 1480px) / 2));
    border-bottom: 1px solid transparent;
    transition: background .25s ease, border-color .25s ease, min-height .25s ease;
}

.rwsv-header.is-scrolled {
    min-height: 64px;
    background: rgba(5, 5, 5, .9);
    border-bottom-color: var(--rwsv-line);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

.rwsv-wordmark {
    position: relative;
    z-index: 2;
    justify-self: start;
    display: inline-flex;
    align-items: baseline;
    color: var(--rwsv-white);
    font-family: var(--rwsv-display);
    font-size: 28px;
    font-weight: 900;
    letter-spacing: .045em;
    line-height: 1;
    text-decoration: none;
}

.rwsv-wordmark i {
    color: var(--rwsv-red);
    font-style: normal;
}

.rwsv-header__meta {
    display: flex;
    align-items: center;
    gap: 13px;
    color: rgba(241, 239, 233, .52);
    font-family: var(--rwsv-mono);
    font-size: 10px;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.rwsv-header__line {
    width: 42px;
    height: 1px;
    background: var(--rwsv-line-strong);
}

.rwsv-menu-button {
    position: relative;
    z-index: 2;
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 8px 0 8px 14px;
    color: var(--rwsv-white);
    background: none;
    border: 0;
    font-family: var(--rwsv-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    cursor: pointer;
}

.rwsv-menu-button__icon {
    position: relative;
    display: block;
    width: 32px;
    height: 20px;
}

.rwsv-menu-button__icon i {
    position: absolute;
    right: 0;
    display: block;
    height: 2px;
    background: currentColor;
    transition: width .25s var(--rwsv-ease), transform .25s var(--rwsv-ease), top .25s var(--rwsv-ease);
}

.rwsv-menu-button__icon i:first-child {
    top: 5px;
    width: 32px;
}

.rwsv-menu-button__icon i:last-child {
    top: 14px;
    width: 20px;
}

.rwsv-menu-button:hover .rwsv-menu-button__icon i:last-child {
    width: 32px;
}

.rwsv-menu-button[aria-expanded="true"] .rwsv-menu-button__icon i:first-child,
.rwsv-menu-button[aria-expanded="true"] .rwsv-menu-button__icon i:last-child {
    top: 10px;
    width: 30px;
}

.rwsv-menu-button[aria-expanded="true"] .rwsv-menu-button__icon i:first-child {
    transform: rotate(45deg);
}

.rwsv-menu-button[aria-expanded="true"] .rwsv-menu-button__icon i:last-child {
    transform: rotate(-45deg);
}

.rwsv-menu {
    position: fixed;
    inset: 0;
    z-index: 800;
    visibility: hidden;
    overflow-y: auto;
    background:
        linear-gradient(90deg, transparent calc(50% - .5px), rgba(255, 255, 255, .07) 50%, transparent calc(50% + .5px)),
        radial-gradient(circle at 78% 22%, rgba(111, 43, 168, .18), transparent 33%),
        var(--rwsv-black);
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity .3s ease, transform .4s var(--rwsv-ease), visibility .3s;
}

.rwsv-menu.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.rwsv-menu__inner {
    display: grid;
    grid-template-rows: auto 1fr auto;
    width: var(--rwsv-page);
    min-height: 100%;
    margin: 0 auto;
    padding: 128px 0 42px;
}

.rwsv-menu__eyebrow,
.rwsv-kicker {
    margin: 0;
    color: var(--rwsv-white-soft);
    font-family: var(--rwsv-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    line-height: 1.45;
    text-transform: uppercase;
}

.rwsv-menu__nav {
    align-self: center;
    display: grid;
    max-width: 1000px;
    padding: 42px 0;
}

.rwsv-menu__nav a {
    display: grid;
    grid-template-columns: 70px 1fr auto;
    align-items: baseline;
    gap: 20px;
    padding: 12px 0;
    border-bottom: 1px solid var(--rwsv-line);
    color: var(--rwsv-white);
    text-decoration: none;
}

.rwsv-menu__nav small {
    color: var(--rwsv-red);
    font-family: var(--rwsv-mono);
    font-size: 11px;
}

.rwsv-menu__nav span {
    font-family: var(--rwsv-display);
    font-size: clamp(42px, 7vw, 92px);
    letter-spacing: .015em;
    line-height: .95;
    text-transform: uppercase;
    transition: color .2s ease, transform .25s var(--rwsv-ease);
}

.rwsv-menu__nav a::after {
    content: "↘";
    color: var(--rwsv-muted);
    font-size: 26px;
    transition: color .2s ease, transform .25s var(--rwsv-ease);
}

.rwsv-menu__nav a:hover span,
.rwsv-menu__nav a:focus-visible span {
    color: var(--rwsv-red);
    transform: translateX(10px);
}

.rwsv-menu__nav a:hover::after,
.rwsv-menu__nav a:focus-visible::after {
    color: var(--rwsv-white);
    transform: rotate(-45deg);
}

.rwsv-menu__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--rwsv-line);
    color: var(--rwsv-muted);
    font-size: 13px;
}

.rwsv-menu__footer a {
    color: var(--rwsv-white);
    font-weight: 800;
    text-underline-offset: 4px;
}

.rwsv-section {
    position: relative;
    padding: clamp(110px, 13vw, 220px) max(24px, calc((100vw - 1480px) / 2));
}

.rwsv-surface-textured {
    position: relative;
    isolation: isolate;
}

.rwsv-section-texture {
    position: absolute;
    inset: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 100% auto;
    opacity: .18;
    pointer-events: none;
}

.rwsv-section-texture--black-1 {
    background-image: url("../images/black-1.webp");
}

.rwsv-section-texture--black-2 {
    background-image: url("../images/black-2.webp");
}

.rwsv-section-texture--black-3 {
    background-image: url("../images/black-3.webp");
}

.rwsv-section-texture--white-1 {
    background-image: url("../images/white1.webp");
}

.rwsv-section-texture--white-2 {
    background-image: url("../images/white2.webp");
}

.rwsv-section-texture--white-1,
.rwsv-section-texture--white-2 {
    opacity: .13;
}

/* Bereichsbezogene Zuordnung: bleibt auch bei altem Texture-Klassennamen wirksam. */
.rwsv-quick-access > .rwsv-section-texture {
    background-image: url("../images/black-1.webp");
}

.rwsv-hero > .rwsv-section-texture {
    background-image: url("../images/black-2.webp");
}

.rwsv-arrival > .rwsv-section-texture {
    background-image: url("../images/black-3.webp");
}

.rwsv-question > .rwsv-section-texture {
    background-image: url("../images/black-1.webp");
}

.rwsv-maxim > .rwsv-section-texture {
    background-image: url("../images/white2.webp");
    opacity: .13;
}

.rwsv-choice > .rwsv-section-texture {
    background-image: url("../images/black-2.webp");
}

.rwsv-levels__grid > .rwsv-section-texture {
    z-index: 2;
    background-image: url("../images/white1.webp");
    opacity: .13;
}

.rwsv-level--inside > .rwsv-section-texture {
    background-image: url("../images/black-3.webp");
}

.rwsv-tools > .rwsv-section-texture {
    background-image: url("../images/black-1.webp");
}

.rwsv-closing > .rwsv-section-texture {
    background-image: url("../images/black-2.webp");
}

.rwsv-break {
    isolation: isolate;
}

.rwsv-break::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: auto 100%;
    opacity: .18;
    pointer-events: none;
}

.rwsv-break::before {
    background-image: url("../images/white1.webp");
}

.rwsv-section-marker {
    display: grid;
    grid-template-columns: auto minmax(40px, 90px) auto;
    align-items: center;
    gap: 14px;
    width: max-content;
    margin-bottom: clamp(64px, 9vw, 130px);
    color: var(--rwsv-muted);
    font-family: var(--rwsv-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .15em;
}

.rwsv-section-marker i {
    height: 1px;
    background: currentColor;
}

.rwsv-section-marker--light {
    color: rgba(241, 239, 233, .5);
}

.rwsv-kicker--red {
    color: var(--rwsv-red);
}

.rwsv-poster-title {
    margin: 20px 0 0;
    color: var(--rwsv-white);
    font-family: var(--rwsv-display);
    font-size: clamp(62px, calc(10vw - 2px), 148px);
    font-weight: 900;
    letter-spacing: -.015em;
    line-height: .86;
    text-transform: uppercase;
}

.rwsv-hero {
    --mx: 50%;
    --my: 42%;
    position: relative;
    display: grid;
    align-items: center;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
    padding: 120px max(24px, calc((100vw - 1480px) / 2)) 60px;
    isolation: isolate;
    border-bottom: 1px solid var(--rwsv-line);
    background: var(--rwsv-black);
}

.rwsv-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -3;
    background:
        linear-gradient(90deg, transparent calc(33.333% - .5px), rgba(255, 255, 255, .045) 33.333%, transparent calc(33.333% + .5px), transparent calc(66.666% - .5px), rgba(255, 255, 255, .045) 66.666%, transparent calc(66.666% + .5px));
}

.rwsv-hero::after {
    content: "";
    position: absolute;
    inset: auto -7vw -22vw auto;
    z-index: -2;
    width: min(70vw, 980px);
    aspect-ratio: 1;
    border: 1px solid rgba(204, 14, 14, .28);
    border-radius: 50%;
    box-shadow: 0 0 0 9vw rgba(204, 14, 14, .025), 0 0 0 18vw rgba(204, 14, 14, .018);
}

.rwsv-hero__field {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: radial-gradient(circle 300px at var(--mx) var(--my), rgba(111, 43, 168, .13), transparent 72%);
}

.rwsv-hero__coordinate {
    position: absolute;
    top: 50%;
    right: max(24px, calc((100vw - 1480px) / 2));
    color: rgba(241, 239, 233, .32);
    font-family: var(--rwsv-mono);
    font-size: 9px;
    letter-spacing: .14em;
    writing-mode: vertical-rl;
}

.rwsv-hero__content {
    width: min(1150px, 88%);
}

.rwsv-hero__title {
    margin: 24px 0 34px;
    color: var(--rwsv-white);
    font-family: var(--rwsv-display);
    font-size: clamp(72px, calc(12.6vw - 4px), 186px);
    font-weight: 900;
    letter-spacing: -.02em;
    line-height: .82;
    text-transform: uppercase;
}

.rwsv-hero__title span {
    display: block;
}

.rwsv-hero__title em {
    color: var(--rwsv-red);
    font-style: normal;
}

.rwsv-hero__lead {
    margin: 0 0 42px;
    color: var(--rwsv-white-soft);
    font-size: clamp(17px, 1.6vw, 24px);
    line-height: 1.5;
}

.rwsv-enter {
    display: inline-flex;
    align-items: center;
    gap: 28px;
    min-width: 210px;
    padding: 17px 0;
    border-bottom: 2px solid var(--rwsv-white);
    color: var(--rwsv-white);
    font-family: var(--rwsv-mono);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color .2s ease, border-color .2s ease;
}

.rwsv-enter i {
    margin-left: auto;
    color: var(--rwsv-red);
    font-size: 20px;
    font-style: normal;
    transition: transform .25s var(--rwsv-ease);
}

.rwsv-enter:hover,
.rwsv-enter:focus-visible {
    color: var(--rwsv-red);
    border-color: var(--rwsv-red);
}

.rwsv-enter:hover i,
.rwsv-enter:focus-visible i {
    transform: translateY(6px);
}

.rwsv-hero__aside {
    position: absolute;
    right: max(24px, calc((100vw - 1480px) / 2));
    bottom: 32px;
    margin: 0;
    color: rgba(241, 239, 233, .37);
    font-family: var(--rwsv-mono);
    font-size: 9px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.rwsv-arrival {
    min-height: 100vh;
    background:
        linear-gradient(90deg, transparent calc(50% - .5px), rgba(255, 255, 255, .055) 50%, transparent calc(50% + .5px)),
        var(--rwsv-black-soft);
}

.rwsv-arrival__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .75fr);
    gap: clamp(60px, 10vw, 170px);
    align-items: end;
}

.rwsv-reasons {
    margin: 0;
    padding: 0;
    list-style: none;
}

.rwsv-reasons li {
    display: grid;
    grid-template-columns: 50px 1fr;
    align-items: baseline;
    gap: 16px;
    padding: 17px 0;
    border-bottom: 1px solid var(--rwsv-line);
    color: var(--rwsv-white);
    font-family: var(--rwsv-display);
    font-size: clamp(28px, 3.4vw, 54px);
    letter-spacing: .01em;
    line-height: .95;
    text-transform: uppercase;
}

.rwsv-reasons li:first-child {
    border-top: 1px solid var(--rwsv-line);
}

.rwsv-reasons span {
    color: var(--rwsv-red);
    font-family: var(--rwsv-mono);
    font-size: 9px;
    letter-spacing: .12em;
}

.rwsv-break {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    padding: clamp(100px, 12vw, 180px) max(24px, calc((100vw - 1480px) / 2));
    color: #fff;
    background: var(--rwsv-red);
    isolation: isolate;
}

.rwsv-break::after {
    content: "WERKZEUG ≠ ZIEL";
    position: absolute;
    left: 1px;
    right: 1px;
    bottom: -5vw;
    z-index: -1;
    color: rgba(0, 0, 0, .11);
    font-family: var(--rwsv-display);
    font-size: clamp(18px, 7.5vw, 150px);
    letter-spacing: -.03em;
    line-height: .75;
    text-align: center;
    white-space: nowrap;
}

.rwsv-break__noise {
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: .2;
    background-image: repeating-linear-gradient(0deg, transparent 0, transparent 3px, rgba(0, 0, 0, .18) 4px);
}

.rwsv-break__pre {
    margin: 0 0 clamp(70px, 10vw, 150px);
    color: rgba(255, 255, 255, .72);
    font-family: var(--rwsv-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.rwsv-break__title {
    max-width: 1200px;
    margin: 0;
    color: #fff;
    font-family: var(--rwsv-display);
    font-size: clamp(80px, calc(14.4vw - 2px), 218px);
    font-weight: 900;
    letter-spacing: -.025em;
    line-height: .73;
    text-transform: uppercase;
}

.rwsv-break__title span {
    display: inline-block;
    color: var(--rwsv-black);
    transform: translateX(clamp(20px, 9vw, 150px));
}

.rwsv-break__statement {
    width: min(560px, 100%);
    margin: clamp(72px, 9vw, 130px) 0 0 auto;
    padding-left: 28px;
    border-left: 4px solid var(--rwsv-black);
    color: rgba(255, 255, 255, .75);
    font-size: clamp(18px, 1.8vw, 25px);
}

.rwsv-break__statement p {
    margin: 0;
}

.rwsv-break__statement strong {
    color: var(--rwsv-black);
}

.rwsv-question {
    min-height: 100vh;
    background:
        radial-gradient(circle at 82% 38%, rgba(111, 43, 168, .17), transparent 27%),
        var(--rwsv-black);
}

.rwsv-question__frame {
    position: relative;
    min-height: 620px;
    padding: clamp(30px, 5vw, 75px);
    border: 1px solid var(--rwsv-line);
}

.rwsv-question__frame::before,
.rwsv-question__frame::after {
    content: "";
    position: absolute;
    width: 90px;
    height: 90px;
    pointer-events: none;
}

.rwsv-question__frame::before {
    top: -1px;
    left: -1px;
    border-top: 4px solid var(--rwsv-red);
    border-left: 4px solid var(--rwsv-red);
}

.rwsv-question__frame::after {
    right: -1px;
    bottom: -1px;
    border-right: 4px solid var(--rwsv-purple);
    border-bottom: 4px solid var(--rwsv-purple);
}

.rwsv-question__false {
    margin: 0;
    color: var(--rwsv-muted);
    font-size: clamp(15px, 1.4vw, 20px);
    line-height: 1.6;
}

.rwsv-question__false s {
    text-decoration-color: var(--rwsv-red);
    text-decoration-thickness: 2px;
}

.rwsv-question__title {
    margin: clamp(60px, 6vw, 105px) 0 0 clamp(0px, 10vw, 155px);
    color: var(--rwsv-white);
    font-family: var(--rwsv-display);
    font-size: clamp(82px, calc(13vw - 2px), 198px);
    font-weight: 900;
    letter-spacing: -.02em;
    line-height: .76;
    text-transform: uppercase;
}

.rwsv-question__title em {
    color: var(--rwsv-red);
    font-style: normal;
}

.rwsv-question__note {
    width: min(420px, 100%);
    margin: clamp(55px, 6vw, 90px) 0 0 auto;
    color: var(--rwsv-white-soft);
    font-size: clamp(16px, 1.5vw, 21px);
}

.rwsv-maxim {
    color: var(--rwsv-black);
    background: var(--rwsv-white);
}

.rwsv-maxim .rwsv-section-marker {
    color: rgba(5, 5, 5, .48);
}

.rwsv-maxim__intro {
    max-width: 1280px;
}

.rwsv-maxim__title,
.rwsv-tools__title {
    margin: 24px 0 0;
    color: var(--rwsv-black);
    font-family: var(--rwsv-display);
    font-size: clamp(70px, calc(11vw - 2px), 163px);
    font-weight: 900;
    letter-spacing: -.02em;
    line-height: .82;
    text-transform: uppercase;
}

.rwsv-maxim__title span,
.rwsv-tools__title span {
    color: var(--rwsv-red);
}

.rwsv-sequence {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: clamp(90px, 12vw, 180px) 0 0;
    padding: 0;
    border-top: 1px solid rgba(5, 5, 5, .28);
    border-bottom: 1px solid rgba(5, 5, 5, .28);
    list-style: none;
}

.rwsv-sequence li {
    position: relative;
    min-height: 270px;
    padding: 28px 24px 36px;
    border-right: 1px solid rgba(5, 5, 5, .25);
}

.rwsv-sequence li:last-child {
    border-right: 0;
}

.rwsv-sequence li::after {
    content: "→";
    position: absolute;
    right: -16px;
    top: 50%;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    color: var(--rwsv-white);
    background: var(--rwsv-black);
    border-radius: 50%;
    font-size: 15px;
}

.rwsv-sequence li:last-child::after {
    display: none;
}

.rwsv-sequence small {
    display: block;
    color: var(--rwsv-red);
    font-family: var(--rwsv-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
}

.rwsv-sequence strong {
    display: block;
    margin-top: 82px;
    font-family: var(--rwsv-display);
    font-size: clamp(30px, 3.4vw, 52px);
    letter-spacing: .01em;
    line-height: .9;
    text-transform: uppercase;
}

.rwsv-sequence span {
    display: block;
    max-width: 220px;
    margin-top: 16px;
    color: rgba(5, 5, 5, .63);
    font-size: 13px;
}

.rwsv-duality {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: clamp(100px, 13vw, 190px) 0 0;
    border: 1px solid rgba(5, 5, 5, .28);
}

.rwsv-duality__item {
    min-height: 470px;
    padding: clamp(38px, 5vw, 72px);
    color: var(--rwsv-white);
    background: var(--rwsv-black);
}

.rwsv-duality__item--rule {
    color: var(--rwsv-black);
    background:
        linear-gradient(rgba(5, 5, 5, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(5, 5, 5, .05) 1px, transparent 1px),
        var(--rwsv-white);
    background-size: 24px 24px;
    border-left: 1px solid rgba(5, 5, 5, .28);
}

.rwsv-duality__item .rwsv-kicker {
    color: var(--rwsv-red);
}

.rwsv-duality__item h3 {
    margin: clamp(90px, 10vw, 150px) 0 24px;
    font-family: var(--rwsv-display);
    font-size: clamp(35px, calc(5vw - 5px), 67px);
    font-weight: 900;
    letter-spacing: .01em;
    line-height: .9;
    text-transform: uppercase;
}

.rwsv-duality__item > p:last-child {
    max-width: 440px;
    margin: 0;
    color: var(--rwsv-muted);
    font-size: 15px;
}

.rwsv-duality__item--rule > p:last-child {
    color: rgba(5, 5, 5, .64);
}

.rwsv-manifesto {
    position: relative;
    width: min(980px, 90%);
    margin: clamp(120px, 15vw, 240px) auto 0;
    padding: 0 0 0 clamp(38px, 6vw, 85px);
    border-left: clamp(8px, 1.3vw, 18px) solid var(--rwsv-red);
}

.rwsv-manifesto::before {
    content: "„";
    position: absolute;
    top: -80px;
    left: 18px;
    color: rgba(5, 5, 5, .1);
    font-family: Georgia, serif;
    font-size: 220px;
    line-height: 1;
}

.rwsv-manifesto p {
    position: relative;
    margin: 0;
    font-family: var(--rwsv-display);
    font-size: clamp(35px, calc(5.5vw - 5px), 73px);
    letter-spacing: .005em;
    line-height: .97;
    text-transform: uppercase;
}

.rwsv-choice {
    background:
        linear-gradient(90deg, transparent calc(50% - .5px), rgba(255, 255, 255, .05) 50%, transparent calc(50% + .5px)),
        var(--rwsv-black-soft);
}

.rwsv-choice__head {
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    column-gap: 80px;
    align-items: end;
}

.rwsv-choice__head .rwsv-kicker,
.rwsv-choice__head .rwsv-poster-title {
    grid-column: 1;
}

.rwsv-choice__intro {
    grid-column: 2;
    grid-row: 1 / span 2;
    max-width: 430px;
    margin: 0 0 12px;
    color: var(--rwsv-white-soft);
    font-size: clamp(17px, 1.7vw, 23px);
}

.rwsv-choice__options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    margin-top: clamp(80px, 10vw, 150px);
    background: var(--rwsv-line);
    border: 1px solid var(--rwsv-line);
}

.rwsv-choice-button {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: start;
    min-height: 240px;
    padding: clamp(28px, 4vw, 56px);
    color: var(--rwsv-white);
    background: var(--rwsv-black);
    border: 0;
    text-align: left;
    cursor: pointer;
    transition: color .25s ease, background .25s ease;
}

.rwsv-choice-button:hover,
.rwsv-choice-button:focus-visible,
.rwsv-choice-button[aria-pressed="true"] {
    color: var(--rwsv-black);
    background: var(--rwsv-white);
}

.rwsv-choice-button--deep:hover,
.rwsv-choice-button--deep:focus-visible,
.rwsv-choice-button--deep[aria-pressed="true"] {
    color: #fff;
    background: var(--rwsv-red);
}

.rwsv-choice-button__number {
    color: var(--rwsv-red);
    font-family: var(--rwsv-mono);
    font-size: 12px;
    font-weight: 700;
}

.rwsv-choice-button--deep:hover .rwsv-choice-button__number,
.rwsv-choice-button--deep:focus-visible .rwsv-choice-button__number,
.rwsv-choice-button--deep[aria-pressed="true"] .rwsv-choice-button__number {
    color: #fff;
}

.rwsv-choice-button__copy strong {
    display: block;
    max-width: 440px;
    font-family: var(--rwsv-display);
    font-size: clamp(28px, 3vw, 46px);
    font-weight: 900;
    letter-spacing: .01em;
    line-height: .94;
    text-transform: uppercase;
}

.rwsv-choice-button__copy small {
    display: block;
    margin-top: 20px;
    color: var(--rwsv-muted);
    font-size: 13px;
}

.rwsv-choice-button--deep:hover small,
.rwsv-choice-button--deep:focus-visible small,
.rwsv-choice-button--deep[aria-pressed="true"] small {
    color: rgba(255, 255, 255, .72);
}

.rwsv-choice-button > i {
    color: var(--rwsv-muted);
    font-size: 30px;
    font-style: normal;
}

.rwsv-choice__response {
    margin-top: 1px;
    padding: clamp(40px, 6vw, 88px);
    color: var(--rwsv-black);
    background: var(--rwsv-white);
}

.rwsv-choice__response[hidden] {
    display: none;
}

.rwsv-choice__response--deep {
    color: #fff;
    background: var(--rwsv-red);
}

.rwsv-choice__response .rwsv-kicker {
    color: var(--rwsv-red);
}

.rwsv-choice__response--deep .rwsv-kicker {
    color: rgba(255, 255, 255, .7);
}

.rwsv-choice__response h3 {
    max-width: 950px;
    margin: 20px 0;
    font-family: var(--rwsv-display);
    font-size: clamp(40px, calc(7vw - 5px), 95px);
    letter-spacing: -.01em;
    line-height: .9;
    text-transform: uppercase;
}

.rwsv-choice__response > p:not(.rwsv-kicker) {
    max-width: 700px;
    color: rgba(5, 5, 5, .65);
    font-size: 17px;
}

.rwsv-choice__response--deep > p:not(.rwsv-kicker) {
    color: rgba(255, 255, 255, .78);
}

.rwsv-choice__response a {
    display: inline-flex;
    gap: 18px;
    align-items: center;
    margin-top: 28px;
    padding-bottom: 8px;
    border-bottom: 2px solid currentColor;
    font-family: var(--rwsv-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-decoration: none;
    text-transform: uppercase;
}

.rwsv-levels {
    background: var(--rwsv-white);
    color: var(--rwsv-black);
}

.rwsv-levels__header {
    padding: clamp(90px, 11vw, 170px) max(24px, calc((100vw - 1480px) / 2));
}

.rwsv-levels__header .rwsv-kicker {
    color: var(--rwsv-red);
}

.rwsv-levels__header h2 {
    margin: 24px 0 0;
    font-family: var(--rwsv-display);
    font-size: clamp(78px, calc(13vw - 2px), 198px);
    letter-spacing: -.02em;
    line-height: .78;
    text-transform: uppercase;
}

.rwsv-levels__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.rwsv-level {
    position: relative;
    min-height: 700px;
    padding: clamp(42px, 6vw, 90px) max(24px, calc((100vw - 1480px) / 2));
}

.rwsv-level--open {
    padding-right: clamp(40px, 7vw, 110px);
    color: #fff;
    background: var(--rwsv-red);
}

.rwsv-level--inside {
    padding-left: clamp(40px, 7vw, 110px);
    color: var(--rwsv-white);
    background:
        radial-gradient(circle at 90% 20%, rgba(111, 43, 168, .22), transparent 34%),
        var(--rwsv-black);
}

.rwsv-level__index {
    margin-bottom: clamp(80px, 10vw, 150px);
    color: rgba(255, 255, 255, .55);
    font-family: var(--rwsv-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .15em;
}

.rwsv-level__state {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 28px;
    font-family: var(--rwsv-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.rwsv-level__state i {
    width: 9px;
    height: 9px;
    background: currentColor;
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(255, 255, 255, .12);
}

.rwsv-level h3 {
    margin: 0 0 32px;
    font-family: var(--rwsv-display);
    font-size: clamp(43px, calc(6vw - 5px), 85px);
    letter-spacing: -.01em;
    line-height: .87;
    text-transform: uppercase;
}

.rwsv-level > p:not(.rwsv-level__state, .rwsv-level__line) {
    max-width: 540px;
    margin: 0;
    color: rgba(255, 255, 255, .73);
    font-size: 17px;
}

.rwsv-level a {
    display: inline-flex;
    gap: 18px;
    margin-top: 38px;
    padding-bottom: 8px;
    border-bottom: 2px solid #fff;
    color: #fff;
    font-family: var(--rwsv-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-decoration: none;
    text-transform: uppercase;
}

.rwsv-level__line {
    max-width: 530px;
    margin: 54px 0 0;
    padding: 22px 0 0;
    border-top: 1px solid var(--rwsv-line-strong);
    color: var(--rwsv-white);
    font-weight: 800;
    text-transform: uppercase;
}

.rwsv-tools {
    color: var(--rwsv-white);
    background: var(--rwsv-black);
}

.rwsv-tools__head {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px 70px;
    align-items: end;
}

.rwsv-tools__head .rwsv-kicker,
.rwsv-tools__head .rwsv-tools__title {
    grid-column: 1;
}

.rwsv-tools__title {
    color: var(--rwsv-white);
}

.rwsv-tools__intro {
    grid-column: 2;
    grid-row: 1 / span 2;
    width: min(340px, 100%);
    margin: 0 0 10px;
    color: var(--rwsv-muted);
    font-size: 16px;
}

.rwsv-tool-list {
    margin-top: clamp(90px, 12vw, 175px);
    border-top: 1px solid var(--rwsv-line-strong);
}

.rwsv-tool-row {
    position: relative;
    display: grid;
    grid-template-columns: 70px minmax(270px, .8fr) 1fr auto;
    gap: 24px;
    align-items: center;
    min-height: 130px;
    padding: 24px 0;
    border-bottom: 1px solid var(--rwsv-line-strong);
    color: var(--rwsv-white);
    text-decoration: none;
    isolation: isolate;
}

.rwsv-tool-row::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: var(--rwsv-white);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .28s var(--rwsv-ease);
}

.rwsv-tool-row:hover::before,
.rwsv-tool-row:focus-visible::before {
    transform: scaleY(1);
}

.rwsv-tool-row:hover,
.rwsv-tool-row:focus-visible {
    color: var(--rwsv-black);
}

.rwsv-tool-row__number {
    color: var(--rwsv-red);
    font-family: var(--rwsv-mono);
    font-size: 10px;
    font-weight: 700;
}

.rwsv-tool-row__name {
    font-family: var(--rwsv-display);
    font-size: clamp(34px, 4.4vw, 66px);
    letter-spacing: .01em;
    line-height: .9;
    text-transform: uppercase;
}

.rwsv-tool-row__verb {
    color: var(--rwsv-muted);
    font-size: clamp(15px, 1.5vw, 20px);
}

.rwsv-tool-row__arrow {
    font-size: 28px;
    transition: transform .25s var(--rwsv-ease);
}

.rwsv-tool-row:hover .rwsv-tool-row__arrow,
.rwsv-tool-row:focus-visible .rwsv-tool-row__arrow {
    transform: translate(6px, -6px);
}

.rwsv-closing {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
    padding: clamp(100px, 12vw, 190px) max(24px, calc((100vw - 1480px) / 2));
    background:
        repeating-linear-gradient(90deg, transparent 0, transparent calc(12.5% - 1px), rgba(255, 255, 255, .04) 12.5%),
        radial-gradient(circle at 20% 75%, rgba(111, 43, 168, .16), transparent 27%),
        var(--rwsv-black-soft);
}

.rwsv-closing__mark {
    position: absolute;
    top: 50%;
    right: -4vw;
    color: rgba(204, 14, 14, .09);
    font-family: var(--rwsv-display);
    font-size: min(76vw, 1100px);
    line-height: .7;
    transform: translateY(-50%);
    pointer-events: none;
}

.rwsv-closing__content {
    position: relative;
    width: 100%;
}

.rwsv-closing__title {
    max-width: 1230px;
    margin: 24px 0 0;
    font-family: var(--rwsv-display);
    font-size: clamp(66px, calc(10vw - 2px), 153px);
    letter-spacing: -.015em;
    line-height: .83;
    text-transform: uppercase;
}

.rwsv-closing__title span {
    color: var(--rwsv-red);
}

.rwsv-closing__copy {
    width: min(560px, 100%);
    margin: clamp(50px, 7vw, 95px) 0 0;
    color: var(--rwsv-white-soft);
    font-size: clamp(17px, 1.7vw, 23px);
}

.rwsv-closing__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 42px;
}

.rwsv-closing__actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-height: 56px;
    padding: 15px 24px;
    border: 1px solid var(--rwsv-line-strong);
    font-family: var(--rwsv-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.rwsv-closing__primary {
    color: #fff;
    background: var(--rwsv-red);
    border-color: var(--rwsv-red) !important;
}

.rwsv-closing__primary:hover,
.rwsv-closing__primary:focus-visible {
    background: var(--rwsv-red-dark);
}

.rwsv-closing__secondary:hover,
.rwsv-closing__secondary:focus-visible {
    color: var(--rwsv-black);
    background: var(--rwsv-white);
    border-color: var(--rwsv-white);
}

.rwsv-footer {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: clamp(24px, 5vw, 80px);
    padding: 42px max(24px, calc((100vw - 1480px) / 2));
    border-top: 1px solid var(--rwsv-line);
    background: var(--rwsv-black);
}

.rwsv-wordmark--footer {
    font-size: 24px;
}

.rwsv-footer p {
    max-width: 520px;
    margin: 0;
    color: var(--rwsv-muted);
    font-size: 12px;
}

.rwsv-footer nav {
    display: flex;
    gap: 22px;
}

.rwsv-footer nav a {
    color: var(--rwsv-white-soft);
    font-size: 11px;
    text-underline-offset: 4px;
}

.rwsv-footer__code {
    color: var(--rwsv-red);
    font-family: var(--rwsv-mono);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .13em;
}

.js .rwsv-reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .72s var(--rwsv-ease), transform .78s var(--rwsv-ease);
    transition-delay: var(--rwsv-reveal-delay, 0ms);
}

.js .rwsv-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1100px) {
    .rwsv-header__meta {
        display: none;
    }

    .rwsv-header {
        grid-template-columns: 1fr 1fr;
    }

    .rwsv-arrival__grid {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .rwsv-reasons {
        width: min(740px, 100%);
        margin-left: auto;
    }

    .rwsv-sequence {
        grid-template-columns: repeat(2, 1fr);
    }

    .rwsv-sequence li:nth-child(2) {
        border-right: 0;
    }

    .rwsv-sequence li:nth-child(2)::after {
        display: none;
    }

    .rwsv-sequence li:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(5, 5, 5, .25);
    }

    .rwsv-tools__head,
    .rwsv-choice__head {
        display: block;
    }

    .rwsv-tools__intro,
    .rwsv-choice__intro {
        width: min(520px, 100%);
        margin: 36px 0 0 auto;
    }

    .rwsv-tool-row {
        grid-template-columns: 55px minmax(220px, .85fr) 1fr auto;
    }

    .rwsv-footer {
        grid-template-columns: auto 1fr auto;
    }

    .rwsv-footer__code {
        display: none;
    }
}

@media (max-width: 820px) {
    :root {
        --rwsv-page: min(100% - 32px, 1480px);
    }

    .rwsv-header {
        min-height: 64px;
        padding-inline: 16px;
    }

    .rwsv-wordmark {
        font-size: 24px;
    }

    .rwsv-menu-button__label {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
    }

    .rwsv-menu-button {
        padding-left: 8px;
    }

    .rwsv-menu__inner {
        padding: 96px 0 24px;
    }

    .rwsv-menu__nav {
        padding: 28px 0;
    }

    .rwsv-menu__nav a {
        grid-template-columns: 38px 1fr auto;
        gap: 8px;
        padding: 16px 0;
    }

    .rwsv-menu__nav span {
        font-size: clamp(38px, 12vw, 66px);
    }

    .rwsv-menu__footer span {
        display: none;
    }

    .rwsv-section {
        padding-inline: 20px;
    }

    .rwsv-section-marker {
        margin-bottom: 60px;
    }

    .rwsv-quick-access {
        padding: 72px 20px 34px;
    }

    .rwsv-quick-access__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rwsv-quick-access__button {
        min-height: 185px;
    }

    .rwsv-hero {
        align-items: end;
        padding: 104px 20px 68px;
    }

    .rwsv-hero::before {
        background: linear-gradient(90deg, transparent calc(50% - .5px), rgba(255, 255, 255, .05) 50%, transparent calc(50% + .5px));
    }

    .rwsv-hero__content {
        width: 100%;
    }

    .rwsv-hero__title {
        font-size: clamp(44px, calc(12.5vw - 4px), 90px);
        line-height: .84;
    }

    .rwsv-page h2 {
        font-size: clamp(34px, calc(7vw - 2px), 50px);
    }

    .rwsv-hero__title span:last-child {
        max-width: 92vw;
    }

    .rwsv-hero__lead br {
        display: none;
    }

    .rwsv-hero__coordinate,
    .rwsv-hero__aside {
        display: none;
    }

    .rwsv-arrival {
        background: var(--rwsv-black-soft);
    }

    .rwsv-reasons li {
        grid-template-columns: 38px 1fr;
        padding: 15px 0;
    }

    .rwsv-break {
        min-height: auto;
        padding: 110px 20px;
    }

    .rwsv-break__title {
        font-size: clamp(68px, 21vw, 130px);
        line-height: .76;
    }

    .rwsv-break::after {
        left: 1px;
        right: 1px;
        font-size: clamp(24px, 7.5vw, 64px);
        text-align: center;
    }

    .rwsv-break__title span {
        transform: translateX(16px);
    }

    .rwsv-question__frame {
        min-height: 570px;
        padding: 30px 20px;
    }

    .rwsv-question__title {
        margin-left: 0;
        font-size: clamp(74px, 22vw, 135px);
    }

    .rwsv-sequence {
        grid-template-columns: 1fr;
    }

    .rwsv-sequence li,
    .rwsv-sequence li:nth-child(2) {
        min-height: 0;
        padding: 25px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(5, 5, 5, .25);
    }

    .rwsv-sequence li:last-child {
        border-bottom: 0;
    }

    .rwsv-sequence li::after,
    .rwsv-sequence li:nth-child(2)::after {
        display: block;
        top: auto;
        right: 0;
        bottom: -16px;
        transform: rotate(90deg);
    }

    .rwsv-sequence li:last-child::after {
        display: none;
    }

    .rwsv-sequence strong {
        margin-top: 30px;
    }

    .rwsv-duality,
    .rwsv-levels__grid,
    .rwsv-choice__options {
        grid-template-columns: 1fr;
    }

    .rwsv-duality__item {
        min-height: 420px;
    }

    .rwsv-duality__item--rule {
        border-top: 1px solid rgba(5, 5, 5, .28);
        border-left: 0;
    }

    .rwsv-choice {
        background: var(--rwsv-black-soft);
    }

    .rwsv-choice-button {
        min-height: 210px;
    }

    .rwsv-level {
        min-height: 620px;
        padding: 70px 20px;
    }

    .rwsv-level--open,
    .rwsv-level--inside {
        padding-inline: 20px;
    }

    .rwsv-level__index {
        margin-bottom: 90px;
    }

    .rwsv-tool-row {
        grid-template-columns: 38px 1fr auto;
        gap: 10px 14px;
        min-height: 120px;
    }

    .rwsv-tool-row__verb {
        grid-column: 2 / span 2;
        font-size: 14px;
    }

    .rwsv-closing {
        padding-inline: 20px;
    }

    .rwsv-footer {
        grid-template-columns: 1fr auto;
        gap: 24px;
        padding: 36px 20px;
    }

    .rwsv-footer p {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .rwsv-footer nav {
        gap: 14px;
    }
}

@media (max-width: 480px) {
    .rwsv-kicker,
    .rwsv-menu__eyebrow {
        font-size: 9px;
    }

    .rwsv-quick-access {
        padding: 66px 14px 30px;
    }

    .rwsv-quick-access__button {
        min-height: 205px;
        padding: 16px;
    }

    .rwsv-quick-access__button strong {
        margin-top: 18px;
        padding-right: 15px;
        font-size: clamp(20px, 6.8vw, 29px);
    }

    .rwsv-quick-access__description {
        gap: 3px;
        margin-top: 10px;
        padding: 0 18px 27px 0;
        font-size: 11px;
        line-height: 1.38;
    }

    .rwsv-quick-access__arrow {
        right: 13px;
        bottom: 12px;
        font-size: 17px;
    }

    .rwsv-hero__title {
        font-size: clamp(36px, calc(13vw - 4px), 56px);
    }

    .rwsv-page h2 {
        font-size: clamp(30px, calc(9.5vw - 2px), 40px);
    }

    .rwsv-hero__lead {
        max-width: 310px;
        font-size: 16px;
    }

    .rwsv-enter {
        width: 100%;
    }

    .rwsv-poster-title,
    .rwsv-maxim__title,
    .rwsv-tools__title,
    .rwsv-levels__header h2,
    .rwsv-closing__title {
        overflow-wrap: anywhere;
    }

    .rwsv-break__pre {
        margin-bottom: 65px;
    }

    .rwsv-break__title {
        font-size: clamp(61px, 20.5vw, 96px);
    }

    .rwsv-break::after {
        font-size: clamp(22px, 7.5vw, 36px);
    }

    .rwsv-question__frame::before,
    .rwsv-question__frame::after {
        width: 56px;
        height: 56px;
    }

    .rwsv-question__title {
        font-size: clamp(67px, 21vw, 102px);
    }

    .rwsv-manifesto {
        width: 100%;
    }

    .rwsv-choice-button {
        grid-template-columns: 26px 1fr;
        gap: 14px;
        padding: 28px 20px;
    }

    .rwsv-choice-button > i {
        display: none;
    }

    .rwsv-choice__response {
        padding: 48px 20px;
    }

    .rwsv-tool-row__name {
        font-size: clamp(29px, 9.8vw, 48px);
    }

    .rwsv-closing__actions {
        display: grid;
    }

    .rwsv-footer {
        grid-template-columns: 1fr;
    }

    .rwsv-footer nav {
        grid-row: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .rwsv-page,
    .rwsv-page *,
    .rwsv-page *::before,
    .rwsv-page *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }

    .js .rwsv-reveal {
        opacity: 1;
        transform: none;
    }

    .rwsv-hero__field {
        display: none;
    }
}

@media print {
    .rwsv-header,
    .rwsv-menu,
    .rwsv-progress,
    .rwsv-enter {
        display: none !important;
    }

    .rwsv-page,
    .rwsv-hero,
    .rwsv-arrival,
    .rwsv-question,
    .rwsv-choice,
    .rwsv-tools,
    .rwsv-closing {
        color: #000;
        background: #fff;
    }

    .js .rwsv-reveal {
        opacity: 1;
        transform: none;
    }
}
