:root {
    --black: #252525;
    --white: #ffffff;
    --muted: #686868;
    --line-dark: rgba(37, 37, 37, 0.18);
    --line-light: rgba(255, 255, 255, 0.28);
    --page-x: clamp(22px, 3.1vw, 54px);
    --header-h: 96px;
    --radius: 8px;
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background: var(--white);
    color: var(--black);
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    font-synthesis: none;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.is-locked {
    overflow: hidden;
}

button,
input,
textarea {
    font: inherit;
}

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

button {
    color: inherit;
}

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

img,
svg {
    display: block;
}

::selection {
    background: rgba(37, 37, 37, 0.18);
}

:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 12px;
    left: 12px;
    transform: translateY(-140%);
    padding: 12px 16px;
    background: var(--black);
    color: var(--white);
    transition: transform 180ms ease;
}

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

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-h);
    display: grid;
    grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
    align-items: center;
    gap: 32px;
    padding: 0 var(--page-x);
    border-bottom: 1px solid transparent;
    transition: color 500ms ease, background-color 500ms ease, border-color 500ms ease, transform 400ms var(--ease-out);
    backdrop-filter: blur(16px) saturate(120%);
    -webkit-backdrop-filter: blur(16px) saturate(120%);
}

.site-header.theme-light {
    color: var(--black);
    background: rgba(255, 255, 255, 0.54);
    border-bottom-color: rgba(37, 37, 37, 0.12);
}

.site-header.theme-dark {
    color: var(--white);
    background: rgba(16, 16, 16, 0.34);
    border-bottom-color: rgba(255, 255, 255, 0.18);
}

.site-header.is-hidden {
    transform: translateY(-105%);
}

.brand {
    justify-self: start;
    width: clamp(144px, 13vw, 205px);
}

.brand__logo {
    width: 100%;
    height: auto;
    transition: filter 500ms ease, opacity 300ms ease;
}

.site-header.theme-light .brand__logo {
    filter: brightness(0);
}

.site-header.theme-dark .brand__logo {
    filter: none;
}

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(22px, 2.25vw, 40px);
    white-space: nowrap;
}

.desktop-nav a {
    position: relative;
    padding: 8px 0;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 2px;
    left: 0;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 300ms var(--ease-out);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left center;
}

.header-actions {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-cta,
.menu-toggle {
    border: 1px solid currentColor;
    border-radius: 0;
    background: transparent;
    cursor: pointer;
}

.header-cta {
    min-height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 0 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 280ms ease, background-color 280ms ease;
}

.header-cta svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.site-header.theme-light .header-cta:hover {
    background: var(--black);
    color: var(--white);
}

.site-header.theme-dark .header-cta:hover {
    background: var(--white);
    color: var(--black);
}

.menu-toggle {
    width: 46px;
    height: 46px;
    display: none;
    place-items: center;
    padding: 0;
}

.menu-toggle span {
    position: absolute;
    width: 18px;
    height: 1px;
    background: currentColor;
    transition: transform 300ms var(--ease-out);
}

.menu-toggle span:first-child {
    transform: translateY(-4px);
}

.menu-toggle span:last-child {
    transform: translateY(4px);
}

.menu-toggle[aria-expanded="true"] span:first-child {
    transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
    transform: rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    z-index: 90;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: calc(var(--header-h) + 54px) var(--page-x) 40px;
    background: rgba(250, 250, 250, 0.96);
    color: var(--black);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-18px);
    transition: opacity 300ms ease, transform 400ms var(--ease-out), visibility 400ms;
}

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

.mobile-menu nav {
    display: flex;
    flex-direction: column;
}

.mobile-menu nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line-dark);
    font-size: clamp(26px, 7vw, 46px);
    font-weight: 400;
    letter-spacing: -0.05em;
}

.mobile-menu__contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
}

.media-stage {
    position: fixed;
    z-index: 0;
    inset: 0;
    overflow: hidden;
    background: var(--white);
    pointer-events: none;
}

.media-layer {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0;
    will-change: opacity;
}

.media-layer.is-active {
    opacity: 1;
}

.media-poster,
.media-video,
.media-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.media-poster,
.media-video {
    object-fit: cover;
    object-position: center center;
}

.media-poster {
    z-index: 1;
    opacity: 1;
    transition: opacity 500ms ease;
}

.media-video {
    z-index: 2;
    opacity: 0;
    transition: opacity 500ms ease;
}

.media-canvas {
    z-index: 3;
    opacity: 0;
    transition: opacity 500ms ease;
}

.media-layer.video-ready .media-video {
    opacity: 1;
}

.media-layer.video-ready .media-poster {
    opacity: 0;
}

.media-layer.cache-ready .media-canvas {
    opacity: 1;
}

.media-layer.cache-ready .media-video {
    opacity: 0;
}

.whiteout {
    position: absolute;
    z-index: 10;
    inset: 0;
    background: var(--white);
    opacity: 0;
    will-change: opacity;
}

.story-progress {
    position: fixed;
    z-index: 60;
    top: 50%;
    right: 24px;
    display: grid;
    grid-template-columns: auto 1px auto;
    align-items: center;
    gap: 11px;
    color: var(--black);
    transform: translateY(-50%);
    transition: color 450ms ease, opacity 300ms ease;
}

.story-progress.theme-dark {
    color: var(--white);
}

.story-progress.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.story-progress__number {
    align-self: start;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.14em;
}

.story-progress__track {
    position: relative;
    width: 1px;
    height: 128px;
    overflow: hidden;
    background: currentColor;
    opacity: 0.26;
}

.story-progress__track span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: currentColor;
    transform: scaleY(0);
    transform-origin: top;
}

.story-progress__dots {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.story-progress__dots a {
    width: 5px;
    height: 5px;
    border: 1px solid currentColor;
    border-radius: 50%;
    transition: transform 250ms ease, background 250ms ease;
}

.story-progress__dots a.is-current {
    background: currentColor;
    transform: scale(1.6);
}

main,
.story {
    position: relative;
    z-index: 10;
}

.story-step {
    position: relative;
    min-height: 180vh;
    min-height: 180svh;
}

.story-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    height: 100svh;
    overflow: hidden;
}

.scene {
    position: relative;
    width: 100%;
    height: 100%;
    padding: calc(var(--header-h) + 46px) var(--page-x) 48px;
}

.reveal-item,
.reveal-group > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
    will-change: transform, opacity;
}

.reveal-item.is-revealed,
.reveal-group.is-revealed > * {
    opacity: 1;
    transform: translateY(0);
}

.reveal-group > *:nth-child(2) {
    transition-delay: 110ms;
}

.reveal-group > *:nth-child(3) {
    transition-delay: 220ms;
}

.scene--hero {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(300px, 0.54fr);
    grid-template-rows: auto 1fr auto;
    gap: 34px;
}

.hero-services {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
    font-size: clamp(10px, 0.72vw, 12px);
    font-weight: 600;
    letter-spacing: 0.14em;
    line-height: 1.5;
    text-transform: uppercase;
}

.hero-intro {
    justify-self: end;
    max-width: 355px;
    margin: 0;
    font-size: clamp(16px, 1.28vw, 21px);
    font-weight: 500;
    line-height: 1.48;
    letter-spacing: -0.035em;
}

.hero-heading {
    align-self: end;
    grid-column: 1 / 2;
    grid-row: 3;
}

.accent-label {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    margin-bottom: 24px;
    padding: 0 12px;
    border-left: 2px solid currentColor;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.accent-label--dark {
    background: rgba(37, 37, 37, 0.9);
    color: var(--white);
}

.hero-heading h1,
.collection-title h2,
.features-panel h2,
.final-head h2,
.modal__heading h2,
.policy-content h1 {
    margin: 0;
    font-weight: 400;
    letter-spacing: -0.075em;
    text-transform: uppercase;
}

.hero-heading h1 {
    max-width: 870px;
    font-size: clamp(64px, 7.55vw, 132px);
    line-height: 0.86;
}

.round-link {
    align-self: end;
    justify-self: end;
    grid-column: 2;
    grid-row: 3;
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 350ms var(--ease-out), background-color 300ms ease;
}

.round-link:hover {
    transform: scale(1.08) rotate(-6deg);
}

.round-link--dark {
    background: var(--black);
    color: var(--white);
}

.round-link svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.25;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.scroll-cue {
    position: absolute;
    bottom: 0;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.scroll-cue i {
    width: 1px;
    height: 42px;
    background: currentColor;
    transform-origin: top;
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { transform: scaleY(0.35); opacity: 0.35; }
    50% { transform: scaleY(1); opacity: 1; }
}

.glass {
    border: 1px solid transparent;
    border-radius: var(--radius);
    backdrop-filter: blur(24px) saturate(120%);
    -webkit-backdrop-filter: blur(24px) saturate(120%);
}

.glass--light {
    border-color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.55);
    box-shadow: 0 26px 70px rgba(31, 31, 31, 0.09), inset 0 1px 0 rgba(255, 255, 255, 0.72);
    color: var(--black);
}

.glass--dark {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(18, 18, 18, 0.34);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    color: var(--white);
}

.scene--features {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.features-panel {
    width: min(46vw, 650px);
    margin-right: 5vw;
    padding: clamp(34px, 4.2vw, 70px);
}

.section-index {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.15em;
    line-height: 1.5;
    text-transform: uppercase;
}

.features-panel h2 {
    margin-top: 28px;
    font-size: clamp(45px, 4.65vw, 78px);
    line-height: 0.96;
}

.spec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 38px;
    border-top: 1px solid var(--line-dark);
    border-left: 1px solid var(--line-dark);
}

.spec-grid > div {
    min-height: 89px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
    padding: 17px;
    border-right: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
}

.spec-grid span {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.spec-grid strong {
    font-size: clamp(17px, 1.5vw, 24px);
    font-weight: 500;
    letter-spacing: -0.05em;
}

.features-panel > p {
    max-width: 520px;
    margin: 24px 0 0;
    color: rgba(37, 37, 37, 0.7);
    font-size: 12px;
    line-height: 1.7;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    margin-top: 24px;
    padding: 0 0 7px;
    border: 0;
    border-bottom: 1px solid currentColor;
    background: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
}

.text-link svg,
.button svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 280ms var(--ease-out);
}

.text-link:hover svg,
.button:hover svg {
    transform: translateX(5px);
}

.scene--collection {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.collection-title {
    max-width: min(46vw, 730px);
}

.collection-title h2 {
    margin-top: 24px;
    font-size: clamp(64px, 7.2vw, 122px);
    line-height: 0.88;
}

.collection-title--light {
    color: var(--white);
    text-shadow: 0 4px 26px rgba(0, 0, 0, 0.36);
}

.collection-note {
    width: min(340px, 28vw);
    margin-right: 8vw;
    margin-bottom: 12vh;
    padding: 26px;
}

.collection-note p {
    margin: 0;
    font-size: clamp(16px, 1.25vw, 20px);
    font-weight: 500;
    line-height: 1.42;
    letter-spacing: -0.035em;
}

.collection-note a {
    display: inline-block;
    margin-top: 26px;
    padding-bottom: 6px;
    border-bottom: 1px solid currentColor;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.final-section {
    position: relative;
    z-index: 30;
    min-height: 126vh;
    min-height: 126svh;
    background: var(--white);
    color: var(--black);
}

.final-section__inner {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    padding: clamp(120px, 14vh, 180px) var(--page-x) 34px;
}

.final-head {
    display: grid;
    grid-template-columns: 0.34fr 1fr;
    gap: 32px;
    align-items: start;
}

.final-head h2 {
    max-width: 1180px;
    font-size: clamp(62px, 7.1vw, 124px);
    line-height: 0.94;
}

.final-intro {
    display: grid;
    grid-template-columns: 0.34fr minmax(280px, 0.48fr);
    gap: 32px;
    align-items: start;
    margin-top: 70px;
}

.final-intro p {
    grid-column: 2;
    max-width: 620px;
    margin: 0;
    color: #555;
    font-size: clamp(16px, 1.28vw, 21px);
    line-height: 1.65;
    letter-spacing: -0.025em;
}

.final-intro .button {
    grid-column: 2;
    justify-self: start;
    margin-top: 28px;
}

.button {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 0 24px;
    border: 1px solid currentColor;
    border-radius: 0;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 280ms ease, color 280ms ease, opacity 280ms ease;
}

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

.button--black:hover {
    background: var(--white);
    color: var(--black);
}

.button:disabled {
    cursor: wait;
    opacity: 0.55;
}

.application-list {
    display: grid;
    grid-template-columns: 0.34fr 1fr;
    gap: 0 32px;
    margin-top: 130px;
    border-top: 1px solid var(--black);
}

.application-list > span {
    padding-top: 23px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.application-list > div {
    grid-column: 2;
    display: grid;
    grid-template-columns: 90px 1fr;
    align-items: center;
    min-height: 104px;
    border-bottom: 1px solid var(--line-dark);
}

.application-list strong {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
}

.application-list p {
    margin: 0;
    font-size: clamp(24px, 2.45vw, 43px);
    font-weight: 400;
    letter-spacing: -0.055em;
}

.contact-band {
    display: grid;
    grid-template-columns: 0.34fr 1fr 1fr auto;
    gap: 28px;
    align-items: center;
    margin-top: 110px;
    padding: 34px 0;
    border-top: 1px solid var(--black);
    border-bottom: 1px solid var(--black);
}

.contact-band p,
.contact-band a,
.contact-band button {
    margin: 0;
    font-size: clamp(13px, 1vw, 16px);
    font-weight: 500;
}

.contact-band p {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-band a {
    letter-spacing: -0.03em;
}

.contact-band button {
    padding: 0 0 7px;
    border: 0;
    border-bottom: 1px solid currentColor;
    background: transparent;
    cursor: pointer;
}

.site-footer {
    display: grid;
    grid-template-columns: 0.34fr 1fr auto;
    gap: 32px;
    align-items: end;
    padding-top: 72px;
}

.site-footer > img {
    width: min(190px, 100%);
    height: auto;
    filter: brightness(0);
}

.site-footer > p {
    max-width: 420px;
    margin: 0;
    color: #676767;
    font-size: 12px;
    line-height: 1.6;
}

.site-footer > div {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 9px;
    color: #676767;
    font-size: 10px;
    letter-spacing: 0.03em;
}

.modal {
    position: fixed;
    z-index: 300;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 18px;
    visibility: hidden;
    opacity: 0;
    transition: opacity 300ms ease, visibility 300ms;
}

.modal.is-open {
    visibility: visible;
    opacity: 1;
}

.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 7, 7, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.modal__dialog {
    position: relative;
    width: min(1080px, 100%);
    max-height: calc(100vh - 36px);
    max-height: calc(100svh - 36px);
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    gap: clamp(30px, 5vw, 90px);
    overflow: auto;
    padding: clamp(32px, 5vw, 78px);
    border: 1px solid rgba(255, 255, 255, 0.54);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.84);
    color: var(--black);
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(28px) saturate(115%);
    -webkit-backdrop-filter: blur(28px) saturate(115%);
    transform: translateY(24px) scale(0.985);
    transition: transform 440ms var(--ease-out);
}

.modal.is-open .modal__dialog {
    transform: translateY(0) scale(1);
}

.modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid var(--line-dark);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.46);
    cursor: pointer;
}

.modal__close svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
}

.modal__heading > span {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.modal__heading h2 {
    margin-top: 30px;
    font-size: clamp(44px, 4.8vw, 74px);
    line-height: 0.94;
}

.modal__heading p {
    max-width: 350px;
    margin: 28px 0 0;
    color: #666;
    font-size: 13px;
    line-height: 1.7;
}

.lead-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 18px;
    align-content: start;
}

.honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.form-field > span {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.form-field input,
.form-field textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid rgba(37, 37, 37, 0.34);
    border-radius: 0;
    outline: 0;
    background: transparent;
    color: var(--black);
    font-size: 15px;
    transition: border-color 200ms ease;
}

.form-field input {
    height: 44px;
}

.form-field textarea {
    min-height: 96px;
    padding: 12px 0;
    resize: vertical;
    line-height: 1.55;
}

.form-field input:focus,
.form-field textarea:focus {
    border-bottom-color: var(--black);
}

.form-field.is-invalid input,
.form-field.is-invalid textarea {
    border-bottom-color: #a52c2c;
}

.form-field small {
    min-height: 14px;
    color: #a52c2c;
    font-size: 9px;
}

.form-field--wide {
    grid-column: 1 / -1;
}

.consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #676767;
    font-size: 10px;
    line-height: 1.5;
}

.consent input {
    flex: 0 0 auto;
    width: 15px;
    height: 15px;
    margin: 0;
    accent-color: var(--black);
}

.consent a {
    color: var(--black);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.form-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.form-status {
    margin: 0;
    font-size: 11px;
    line-height: 1.5;
}

.form-status.is-error {
    color: #a52c2c;
}

.form-status.is-success {
    color: #27683b;
}

.noscript {
    position: fixed;
    z-index: 500;
    right: 20px;
    bottom: 20px;
    left: 20px;
    padding: 14px 18px;
    background: var(--black);
    color: var(--white);
    font-size: 12px;
    text-align: center;
}

.policy-page {
    background: var(--white);
}

.policy-header {
    height: 94px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--page-x);
    border-bottom: 1px solid var(--line-dark);
}

.policy-header img {
    width: 175px;
    height: auto;
    filter: brightness(0);
}

.policy-header > a:last-child {
    padding-bottom: 5px;
    border-bottom: 1px solid currentColor;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.policy-content {
    width: min(900px, calc(100% - 44px));
    margin: 0 auto;
    padding: 100px 0 140px;
}

.policy-content h1 {
    margin-top: 30px;
    font-size: clamp(46px, 7vw, 90px);
    line-height: 0.98;
}

.policy-content h2 {
    margin: 55px 0 16px;
    font-size: clamp(23px, 2.5vw, 36px);
    font-weight: 500;
    letter-spacing: -0.04em;
}

.policy-content p {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
}

.policy-content a {
    color: var(--black);
    text-decoration: underline;
    text-underline-offset: 4px;
}

@media (max-width: 1220px) {
    .site-header {
        grid-template-columns: minmax(155px, 0.75fr) auto minmax(155px, 0.75fr);
        gap: 18px;
    }

    .desktop-nav {
        gap: 20px;
    }

    .desktop-nav a {
        font-size: 10px;
    }

    .header-cta {
        padding: 0 15px;
        font-size: 9px;
    }

    .features-panel {
        width: min(52vw, 610px);
        margin-right: 2vw;
    }

    .collection-note {
        margin-right: 4vw;
    }
}

@media (max-width: 980px) {
    :root {
        --header-h: 82px;
    }

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

    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: grid;
    }

    .story-progress {
        display: none;
    }

    .scene--hero {
        grid-template-columns: 1fr minmax(260px, 0.62fr);
    }

    .features-panel {
        width: min(60vw, 590px);
        margin-right: 0;
    }

    .collection-note {
        width: min(320px, 37vw);
        margin-right: 0;
    }

    .final-head,
    .final-intro,
    .application-list,
    .contact-band,
    .site-footer {
        grid-template-columns: 0.25fr 1fr;
    }

    .final-intro p,
    .final-intro .button,
    .application-list > div {
        grid-column: 2;
    }

    .contact-band {
        gap: 22px;
    }

    .contact-band > *:nth-child(3),
    .contact-band > *:nth-child(4) {
        grid-column: 2;
    }

    .site-footer > div {
        grid-column: 2;
    }
}

@media (max-width: 720px) {
    :root {
        --page-x: 20px;
        --header-h: 74px;
    }

    .site-header {
        padding-right: 14px;
        background: rgba(255, 255, 255, 0.62);
    }

    .site-header.theme-dark {
        background: rgba(15, 15, 15, 0.4);
    }

    .brand {
        width: 137px;
    }

    .header-cta {
        min-height: 42px;
        padding: 0 13px;
    }

    .header-cta span {
        display: none;
    }

    .header-cta svg {
        width: 19px;
        height: 19px;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
    }

    .story-step {
        min-height: 165vh;
        min-height: 165svh;
    }

    [data-media-layer="0"] .media-poster,
    [data-media-layer="0"] .media-video {
        object-position: 28% center;
    }

    .scene {
        padding: calc(var(--header-h) + 26px) var(--page-x) 27px;
    }

    .scene--hero {
        display: block;
    }

    .hero-services {
        max-width: 250px;
        font-size: 8px;
        gap: 7px;
    }

    .hero-intro {
        position: absolute;
        top: calc(var(--header-h) + 118px);
        right: var(--page-x);
        width: 205px;
        font-size: 13px;
        line-height: 1.5;
        text-align: right;
    }

    .hero-heading {
        position: absolute;
        right: var(--page-x);
        bottom: 85px;
        left: var(--page-x);
    }

    .accent-label {
        min-height: 26px;
        margin-bottom: 15px;
        font-size: 8px;
    }

    .hero-heading h1 {
        font-size: clamp(49px, 16vw, 72px);
        line-height: 0.9;
    }

    .round-link {
        position: absolute;
        right: var(--page-x);
        bottom: 28px;
        width: 54px;
        height: 54px;
    }

    .round-link svg {
        width: 22px;
        height: 22px;
    }

    .scroll-cue {
        display: none;
    }

    .scene--features {
        align-items: flex-end;
    }

    .features-panel {
        width: 100%;
        max-height: calc(100svh - var(--header-h) - 42px);
        overflow: auto;
        padding: 27px 22px;
        background: rgba(255, 255, 255, 0.68);
    }

    .features-panel h2 {
        margin-top: 18px;
        font-size: clamp(38px, 11vw, 55px);
    }

    .spec-grid {
        margin-top: 23px;
    }

    .spec-grid > div {
        min-height: 71px;
        padding: 12px;
    }

    .features-panel > p {
        margin-top: 17px;
        font-size: 10px;
    }

    .scene--collection {
        display: block;
    }

    .collection-title {
        position: absolute;
        bottom: 37px;
        left: var(--page-x);
        max-width: calc(100% - 40px);
    }

    .collection-title h2 {
        margin-top: 14px;
        font-size: clamp(52px, 15vw, 78px);
    }

    .collection-note {
        position: absolute;
        top: calc(var(--header-h) + 34px);
        right: var(--page-x);
        width: min(260px, 70vw);
        margin: 0;
        padding: 18px;
    }

    .collection-note p {
        font-size: 13px;
    }

    .collection-note a {
        margin-top: 16px;
        font-size: 8px;
    }

    .final-section__inner {
        padding-top: 105px;
    }

    .final-head,
    .final-intro,
    .application-list,
    .contact-band,
    .site-footer {
        display: block;
    }

    .final-head h2 {
        margin-top: 25px;
        font-size: clamp(47px, 13vw, 72px);
        line-height: 0.96;
    }

    .final-intro {
        margin-top: 45px;
    }

    .final-intro p {
        font-size: 15px;
    }

    .application-list {
        margin-top: 90px;
    }

    .application-list > span {
        display: block;
        padding: 19px 0 22px;
    }

    .application-list > div {
        grid-template-columns: 50px 1fr;
        min-height: 83px;
    }

    .application-list p {
        font-size: 23px;
    }

    .contact-band {
        margin-top: 80px;
        padding: 27px 0;
    }

    .contact-band > * {
        display: block;
        margin-top: 14px;
    }

    .contact-band p {
        margin-top: 0;
        margin-bottom: 24px;
    }

    .contact-band button {
        margin-top: 28px;
    }

    .site-footer {
        padding-top: 60px;
    }

    .site-footer > img {
        width: 150px;
    }

    .site-footer > p {
        margin-top: 25px;
    }

    .site-footer > div {
        align-items: flex-start;
        margin-top: 30px;
    }

    .modal {
        padding: 10px;
    }

    .modal__dialog {
        max-height: calc(100svh - 20px);
        display: block;
        padding: 30px 20px;
    }

    .modal__heading h2 {
        margin-top: 22px;
        font-size: 43px;
    }

    .modal__heading p {
        margin-top: 18px;
        padding-right: 35px;
    }

    .lead-form {
        display: block;
        margin-top: 32px;
    }

    .form-field,
    .consent,
    .form-actions {
        margin-top: 19px;
    }

    .form-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .policy-header {
        height: 76px;
    }

    .policy-header img {
        width: 130px;
    }

    .policy-header > a:last-child {
        font-size: 8px;
    }

    .policy-content {
        padding: 70px 0 100px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .media-canvas,
    .media-video {
        display: none !important;
    }

    .media-poster {
        opacity: 1 !important;
    }
}
