:root {
  --acc: #00d1ff;
  --ink: #ffffff;
  --mut: #8f8f8f;
  --bg: #08080a;
  --line: rgba(255, 255, 255, 0.14);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: auto; background: #08080a; }
body { margin: 0; background: #08080a; color: #fff; font-family: Inter, system-ui, sans-serif; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: var(--acc); text-decoration: none; }
a:hover { color: #ffffff; }
::selection { background: var(--acc); color: #08080a; }
input, button, textarea { font-family: inherit; }
button { border: none; background: none; }
summary { list-style: none; cursor: pointer; }
summary::-webkit-details-marker { display: none; }
img { display: block; max-width: 100%; }

:focus-visible { outline: 2px solid var(--acc); outline-offset: 2px; border-radius: 2px; }

@keyframes cdPulse { 0%, 100% { opacity: .35; transform: translateY(0); } 50% { opacity: 1; transform: translateY(5px); } }
@keyframes cdArrow { 0%, 100% { opacity: .4; transform: translateY(0); } 50% { opacity: 1; transform: translateY(6px); } }
@keyframes cdRise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

.cd-root { position: relative; background: #08080a; }
.acc { color: var(--acc); }
.dim { color: rgba(255, 255, 255, .45); }

/* Header */
header { position: fixed; top: 0; left: 0; right: 0; z-index: 60; display: flex; justify-content: center; padding: 14px clamp(12px, 2.4vw, 28px); pointer-events: none; }
.hbar { display: flex; align-items: center; justify-content: space-between; gap: clamp(14px, 2vw, 30px); width: 100%; max-width: 1680px; padding: 10px 14px; border: 1px solid transparent; border-radius: 26px; background: transparent; pointer-events: auto; transition: max-width .55s var(--ease-out), background-color .35s var(--ease-out), border-color .35s var(--ease-out), box-shadow .35s var(--ease-out), padding .35s var(--ease-out); }
.hbar.is-scrolled { max-width: min(1040px, 96vw); background: rgba(10, 10, 12, .72); backdrop-filter: blur(16px) saturate(1.25); -webkit-backdrop-filter: blur(16px) saturate(1.25); border-color: rgba(255, 255, 255, .14); box-shadow: 0 10px 34px rgba(0, 0, 0, .45); padding: 8px 10px 8px 16px; }
.hbar-logo { display: flex; align-items: center; gap: 12px; pointer-events: auto; color: #fff; }
.logo-dot { display: block; width: 26px; height: 26px; border: 1.5px solid var(--acc); border-radius: 50%; position: relative; flex: none; }
.logo-dot span { position: absolute; inset: 6px; background: var(--acc); border-radius: 50%; display: block; }
.logo-word { font-family: Inter, sans-serif; font-weight: 800; font-size: 17px; letter-spacing: .12em; text-transform: uppercase; }
.hbar-nav { display: flex; align-items: center; gap: clamp(14px, 2.2vw, 34px); pointer-events: auto; }
.mono-link { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255, 255, 255, .7); transition: color .2s ease; }
.mono-link:hover { color: #fff; }
.hbar-right { display: flex; align-items: center; gap: 14px; pointer-events: auto; }
.langs { display: flex; align-items: center; gap: 2px; padding: 3px; border: 1px solid var(--line); border-radius: 999px; background: rgba(10, 10, 12, .5); backdrop-filter: blur(8px); }
.lang-btn { border: 0; background: transparent; color: rgba(255, 255, 255, .65); font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .1em; padding: 6px 10px; border-radius: 999px; cursor: pointer; transition: background-color .2s ease, color .2s ease; }
.lang-btn.is-active { background: var(--acc); color: #08080a; }
.hcta { display: none; padding: 11px 20px; border: 1px solid var(--acc); border-radius: 999px; color: var(--acc); font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; transition: background-color .2s ease, color .2s ease; }
.hcta:hover { background: var(--acc); color: #08080a; }
@media (min-width: 1024px) { .hcta { display: inline-flex; } }
@media (max-width: 640px) { .hbar-nav { display: none; } }

/* Rail nav */
.rail { position: fixed; right: clamp(12px, 2vw, 28px); top: 50%; transform: translateY(-50%); z-index: 55; display: flex; flex-direction: column; gap: 14px; align-items: flex-end; pointer-events: none; transition: opacity .4s var(--ease-out); }
@media (max-width: 760px) { .rail { display: none; } }
.rail-btn { display: flex; align-items: center; gap: 10px; background: none; border: 0; cursor: pointer; padding: 6px 0; color: #fff; pointer-events: auto; }
.rail-label { font-family: 'JetBrains Mono', monospace; font-size: 9px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255, 255, 255, .45); opacity: 0; transition: opacity .25s; }
.rail-dot { display: block; width: 22px; height: 1px; background: rgba(255, 255, 255, .35); transition: all .3s; }

/* Flight / scroll scenes */
.flight { position: relative; height: 1400vh; }
.viewport { position: sticky; top: 0; height: 100vh; height: 100dvh; overflow: hidden; background: #08080a; perspective: 1200px; perspective-origin: 50% 48%; }
.world { position: absolute; inset: 0; transform-style: preserve-3d; }
.scene { position: absolute; inset: 0; transform-style: preserve-3d; opacity: 0; visibility: hidden; will-change: transform, opacity; }
.plate { position: absolute; inset: -34%; transform: translateZ(-2px); }
.plate-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.plate-fade { position: absolute; inset: 0; }
.plate-fade-1 { background: linear-gradient(180deg, rgba(8, 8, 10, .66) 0%, rgba(8, 8, 10, .18) 42%, rgba(8, 8, 10, .92) 100%); }
.plate-fade-2 { background: linear-gradient(180deg, rgba(8, 8, 10, .86) 0%, rgba(8, 8, 10, .55) 45%, rgba(8, 8, 10, .95) 100%); }
.plate-fade-3 { background: linear-gradient(100deg, rgba(8, 8, 10, .9) 0%, rgba(8, 8, 10, .35) 55%, rgba(8, 8, 10, .7) 100%); }
.plate-fade-4 { background: linear-gradient(80deg, rgba(8, 8, 10, .92) 0%, rgba(8, 8, 10, .3) 60%, rgba(8, 8, 10, .6) 100%); }
.plate-fade-5 { background: linear-gradient(180deg, rgba(8, 8, 10, .8) 0%, rgba(8, 8, 10, .25) 45%, rgba(8, 8, 10, .9) 100%); }
.plate-fade-flat { background: rgba(8, 8, 10, .84); }
.plate-fade-final { background: linear-gradient(180deg, rgba(8, 8, 10, .7) 0%, rgba(8, 8, 10, .4) 40%, rgba(8, 8, 10, .96) 100%); }

.copy { position: absolute; inset: 0; transform: translateZ(0px); display: flex; flex-direction: column; justify-content: center; padding: 0 clamp(20px, 7vw, 110px); }
.copy-hero { align-items: flex-start; }
.copy-end { justify-content: flex-end; padding-bottom: clamp(70px, 12vh, 130px); }
.copy-final { align-items: center; text-align: center; }

.eyebrow { font-family: 'JetBrains Mono', monospace; font-size: clamp(11px, .88vw, 16px); letter-spacing: .29em; text-transform: uppercase; color: var(--acc); margin-bottom: 24px; }
.eyebrow span { font-family: inherit; }

.h1 { font-family: Inter, sans-serif; font-weight: 800; font-size: clamp(38px, 8.6vw, 140px); line-height: .9; letter-spacing: .01em; margin: 0; text-transform: uppercase; text-wrap: balance; }
.h2 { font-family: Inter, sans-serif; font-weight: 800; font-size: clamp(26px, 4.4vw, 64px); line-height: 1; letter-spacing: .01em; margin: 0; text-wrap: balance; }
.h2-wide { max-width: min(1000px, 88vw); }
.h2-tight { font-size: clamp(28px, 5.4vw, 84px); line-height: .96; text-transform: uppercase; max-width: min(900px, 90vw); }
.h2-title { font-family: Inter, sans-serif; font-weight: 800; font-size: clamp(30px, 6vw, 92px); line-height: .96; letter-spacing: .01em; margin: 0; text-transform: uppercase; }
.h2-final { font-family: Inter, sans-serif; font-weight: 800; font-size: clamp(30px, 7vw, 110px); line-height: .92; letter-spacing: .01em; margin: 0; text-transform: uppercase; }

.lead { font-family: Inter, sans-serif; font-weight: 300; font-size: clamp(15px, 1.4vw, 25px); line-height: 1.55; color: rgba(255, 255, 255, .76); max-width: min(620px, 84vw); margin: 24px 0 0; text-wrap: pretty; }
.lead-hero { font-size: clamp(16px, 1.5vw, 27px); line-height: 1.45; color: rgba(255, 255, 255, .86); max-width: min(560px, 80vw); margin-top: 28px; }
.lead-final { font-size: clamp(15px, 1.5vw, 26px); color: rgba(255, 255, 255, .82); max-width: min(620px, 86vw); margin: 26px auto 0; }

.hint-row { display: flex; align-items: center; gap: 10px; margin-top: 44px; font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255, 255, 255, .5); }
.hint-bar { display: block; width: 1px; height: 34px; background: linear-gradient(180deg, var(--acc), transparent); animation: cdPulse 2.4s ease-in-out infinite; }
.hint-arrow { width: 16px; height: 16px; color: var(--acc); animation: cdArrow 1.6s ease-in-out infinite; }

.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: clamp(14px, 2vw, 34px); margin-top: clamp(28px, 4vh, 54px); max-width: 1100px; border-top: 1px solid var(--line); padding-top: 22px; }
.stat-num { font-family: Inter, sans-serif; font-weight: 800; font-size: clamp(24px, 2.4vw, 44px); letter-spacing: .01em; font-variant-numeric: tabular-nums; white-space: nowrap; }
.stat-label { font-family: 'JetBrains Mono', monospace; font-size: clamp(9px, .72vw, 13px); letter-spacing: .16em; text-transform: uppercase; color: var(--mut); margin-top: 8px; }

.fact-row { display: flex; flex-wrap: wrap; gap: clamp(18px, 3vw, 48px); margin-top: 30px; }
.fact-num { font-family: Inter, sans-serif; font-weight: 800; font-size: clamp(22px, 2.6vw, 46px); font-variant-numeric: tabular-nums; margin-bottom: 6px; }

.btn-outline { margin-top: 38px; align-self: flex-start; display: flex; align-items: center; gap: 14px; background: transparent; border: 1px solid var(--acc); color: var(--acc); padding: clamp(14px, 1.1vw, 20px) clamp(26px, 2vw, 38px); border-radius: 999px; cursor: pointer; font-family: 'JetBrains Mono', monospace; font-size: clamp(11px, .85vw, 15px); letter-spacing: .18em; text-transform: uppercase; transition: background-color .3s var(--ease-out), color .3s var(--ease-out), transform .16s var(--ease-out); }
.btn-outline:hover { background: var(--acc); color: #08080a; }
.btn-outline:active { transform: scale(.97); }

.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(14px, 1.6vw, 30px); max-width: 1500px; }
.service-card { border: 1px solid var(--line); background: rgba(255, 255, 255, .03); backdrop-filter: blur(6px); padding: clamp(16px, 1.6vw, 26px); display: flex; flex-direction: column; gap: 14px; }
.service-img { width: 100%; height: clamp(96px, 17vh, 240px); object-fit: cover; }
.h3 { font-family: Inter, sans-serif; font-weight: 800; font-size: clamp(16px, 1.7vw, 30px); margin: 0; text-transform: uppercase; letter-spacing: -.01em; }
.body-sm { margin: 0; font-weight: 300; font-size: clamp(13px, 1.05vw, 19px); line-height: 1.55; color: rgba(255, 255, 255, .7); }

.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: clamp(16px, 2.2vw, 36px); max-width: 1450px; }
.why-item { border-top: 1px solid var(--line); padding-top: 16px; }
.why-item-acc { border-top-color: var(--acc); }
.why-num { font-family: 'JetBrains Mono', monospace; font-size: clamp(10px, .8vw, 14px); color: var(--acc); letter-spacing: .16em; }
.why-item .h3 { margin: 12px 0 10px; font-size: clamp(16px, 1.7vw, 29px); }
.why-item .body-sm { color: rgba(255, 255, 255, .65); }

.step-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: clamp(16px, 2.2vw, 36px); max-width: 1450px; margin-top: clamp(24px, 4vh, 46px); border-top: 1px solid var(--line); padding-top: 22px; }
.step-label { font-family: 'JetBrains Mono', monospace; font-size: clamp(10px, .8vw, 14px); letter-spacing: .16em; text-transform: uppercase; color: var(--acc); margin-bottom: 10px; }
.step-grid .body-sm { color: rgba(255, 255, 255, .67); }

.btn-solid { margin-top: 36px; display: inline-flex; align-items: center; gap: 12px; background: var(--acc); color: #08080a; padding: 16px 34px; border-radius: 999px; font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; transition: background-color .2s ease, transform .16s var(--ease-out); }
.btn-solid:hover { background: #fff; color: #08080a; }
.btn-solid:active { transform: scale(.97); }

.hud { position: absolute; left: clamp(16px, 3vw, 40px); bottom: calc(clamp(16px, 3vh, 34px) + env(safe-area-inset-bottom, 0px)); z-index: 5; display: flex; align-items: baseline; gap: 10px; font-family: 'JetBrains Mono', monospace; color: rgba(255, 255, 255, .5); pointer-events: none; }
.hud-num { font-size: clamp(22px, 3vw, 44px); color: #fff; line-height: 1; }
.hud-total { font-size: 11px; letter-spacing: .2em; }
.progress-track { position: absolute; left: 0; right: 0; bottom: env(safe-area-inset-bottom, 0px); height: 2px; background: rgba(255, 255, 255, .08); z-index: 6; }
.progress-bar { height: 100%; width: 0%; background: var(--acc); transition: width .12s linear; }

/* Stack sections below the flight */
.stack { position: relative; z-index: 10; background: #08080a; }
.panel { position: relative; border-radius: clamp(28px, 3.4vw, 44px) clamp(28px, 3.4vw, 44px) 0 0; padding: clamp(46px, 7vh, 90px) clamp(20px, 7vw, 110px) clamp(46px, 7vh, 86px); }
.panel-1 { z-index: 11; background: #0e1013; box-shadow: 0 -20px 60px rgba(0, 0, 0, .6); }
.panel-2 { z-index: 12; background: #141a20; box-shadow: 0 -20px 60px rgba(0, 0, 0, .55); margin-top: calc(-1 * clamp(28px, 3.4vw, 44px)); }
.panel-3 { z-index: 13; background: #1d262c; box-shadow: 0 -20px 60px rgba(0, 0, 0, .5); margin-top: calc(-1 * clamp(28px, 3.4vw, 44px)); }
.panel-4 { z-index: 14; background: #d8f0f3; color: #08080a; box-shadow: 0 -20px 60px rgba(0, 0, 0, .45); margin-top: calc(-1 * clamp(28px, 3.4vw, 44px)); padding-bottom: clamp(50px, 8vh, 90px); }
.panel-5 { z-index: 15; background: #08080a; box-shadow: 0 -20px 60px rgba(0, 0, 0, .6); margin-top: calc(-1 * clamp(28px, 3.4vw, 44px)); padding: clamp(56px, 8vh, 120px) clamp(20px, 7vw, 110px) clamp(40px, 6vh, 70px); }

.panel-head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; flex-wrap: wrap; border-bottom: 1px solid var(--line); padding-bottom: 18px; }
.panel-head-light { border-bottom-color: rgba(8, 8, 10, .14); }
.h2-panel { font-family: Inter, sans-serif; font-weight: 800; font-size: clamp(22px, 3.4vw, 50px); margin: 0; text-transform: uppercase; letter-spacing: .01em; }
.h2-panel-dark { color: #08080a; }
.mono-note { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--mut); }
.mono-note-dark { color: rgba(8, 8, 10, .5); }
.mono-eyebrow { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .24em; text-transform: uppercase; color: var(--acc); margin-bottom: 16px; }

.strip { display: flex; gap: clamp(12px, 1.4vw, 20px); margin-top: clamp(20px, 3vh, 34px); overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory; padding-bottom: 4px; scrollbar-width: none; -ms-overflow-style: none; }
.strip::-webkit-scrollbar { display: none; width: 0; height: 0; }
.strip-card { position: relative; padding: 0; cursor: pointer; background: #111; flex: none; width: clamp(240px, 25vw, 340px); aspect-ratio: 3 / 4; overflow: hidden; text-align: left; border-radius: clamp(18px, 1.6vw, 26px); scroll-snap-align: start; outline: 1px solid rgba(255, 255, 255, .1); outline-offset: -1px; transition: transform .45s var(--ease-out); }
.strip-card:hover { transform: translateY(-6px); }
.strip-card:active { transform: scale(.97); }
.strip-img { width: 100%; height: 100%; object-fit: cover; opacity: .85; transition: transform .6s var(--ease-out), opacity .4s; }
.strip-card:hover .strip-img { transform: scale(1.05); opacity: 1; }
.strip-caption { position: absolute; left: 16px; bottom: 16px; right: 16px; display: flex; flex-direction: column; gap: 6px; }
.strip-kicker { font-family: 'JetBrains Mono', monospace; font-size: 9px; letter-spacing: .16em; text-transform: uppercase; color: var(--acc); }
.strip-title { font-family: Inter, sans-serif; font-weight: 800; font-size: clamp(16px, 1.5vw, 22px); letter-spacing: .02em; text-transform: uppercase; color: #fff; }

.strip-nav-row { display: flex; align-items: center; gap: 18px; margin-top: clamp(14px, 2vh, 22px); }
.strip-track { position: relative; flex: 1; height: 3px; background: rgba(255, 255, 255, .1); border-radius: 999px; }
.strip-bar { position: absolute; top: 0; left: 0; height: 100%; width: 30%; background: var(--acc); border-radius: 999px; transition: left .1s linear, width .2s; }
.strip-btns { display: flex; gap: 8px; }
.round-btn { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); background: transparent; color: #fff; cursor: pointer; font-size: 15px; line-height: 1; display: flex; align-items: center; justify-content: center; transition: border-color .2s ease, background-color .2s ease, color .2s ease, transform .16s var(--ease-out); }
.round-btn:hover { border-color: var(--acc); color: var(--acc); }
.round-btn:active { transform: scale(.96); }

.panel-2-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(16px, 2vw, 30px); align-items: start; }
.quote-grid { display: grid; gap: clamp(10px, 1.2vw, 16px); }
.quote { margin: 0; border-left: 1px solid var(--line); padding: 4px 0 4px 20px; }
.quote-acc { border-left-color: var(--acc); }
.quote-text { margin: 0; font-weight: 300; font-size: clamp(14px, 1.3vw, 18px); line-height: 1.55; color: rgba(255, 255, 255, .85); }
.quote-foot { font-family: 'JetBrains Mono', monospace; font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: var(--mut); margin-top: 10px; }

.faq-h { margin: 0 0 clamp(20px, 3vh, 36px); }
.faq-list { display: grid; gap: 0; max-width: 1100px; }
.faq-item { border-top: 1px solid var(--line); padding: 18px 0; }
.faq-item-last { border-bottom: 1px solid var(--line); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 20px; font-family: Inter, sans-serif; font-weight: 800; font-size: clamp(17px, 1.9vw, 25px); letter-spacing: .02em; }
.faq-num { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--acc); }
.faq-a { margin: 14px 0 0; font-weight: 300; font-size: 14px; line-height: 1.6; color: rgba(255, 255, 255, .65); max-width: 760px; }

.partner-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: clamp(10px, 1.2vw, 18px); margin-top: clamp(20px, 3vh, 34px); }
.partner-tile { display: flex; align-items: center; justify-content: center; padding: clamp(22px, 3vw, 40px) 20px; background: rgba(255, 255, 255, .6); border-radius: clamp(16px, 1.4vw, 22px); outline: 1px solid rgba(8, 8, 10, .08); outline-offset: -1px; transition: transform .3s var(--ease-out), background-color .2s ease; }
.partner-tile:hover { transform: translateY(-4px); background: rgba(255, 255, 255, .95); }
.partner-img { height: clamp(26px, 3vw, 44px); width: auto; max-width: 100%; object-fit: contain; filter: invert(1); opacity: .8; }

.contacts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: clamp(26px, 4vw, 70px); align-items: start; border-top: 1px solid var(--line); padding-top: clamp(30px, 5vh, 54px); }
.h2-contacts { font-family: Inter, sans-serif; font-weight: 800; font-size: clamp(28px, 4.6vw, 72px); line-height: .94; margin: 0; text-transform: uppercase; letter-spacing: .01em; text-wrap: balance; }
.body-md { font-weight: 300; font-size: clamp(14px, 1.3vw, 18px); line-height: 1.6; }
.contacts-lead { color: rgba(255, 255, 255, .7); max-width: 440px; margin: 22px 0 30px; }
.contact-links { display: flex; flex-direction: column; gap: 12px; font-family: 'JetBrains Mono', monospace; font-size: clamp(13px, 1.3vw, 17px); }
.social-row { display: flex; gap: 18px; font-size: 11px; letter-spacing: .16em; margin-top: 8px; }

.contact-form { display: flex; flex-direction: column; gap: 12px; border: 2px solid rgba(255, 255, 255, .22); border-radius: clamp(24px, 2.4vw, 36px); padding: clamp(22px, 2.6vw, 36px); background: rgba(255, 255, 255, .03); }
.field { background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .14); border-radius: 14px; color: #fff; padding: 15px 16px; font-size: 15px; outline: none; width: 100%; transition: border-color .2s ease, background-color .2s ease; }
.field:focus { border-color: var(--acc); background: rgba(255, 255, 255, .07); }
.field.is-invalid { border-color: #ff6161; }
.btn-send { margin-top: 8px; background: var(--acc); color: #08080a; border: 0; padding: 17px 24px; border-radius: 16px; cursor: pointer; font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; transition: background-color .2s ease, transform .16s var(--ease-out); }
.btn-send:hover { background: #fff; }
.btn-send:active { transform: scale(.98); }
.form-msg { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--acc); min-height: 16px; }

.footer-row { display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center; margin-top: clamp(40px, 7vh, 90px); border-top: 1px solid var(--line); padding-top: 22px; font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--mut); }

/* Gallery modal */
.gallery { position: fixed; inset: 0; z-index: 200; background: rgba(6, 6, 8, .97); backdrop-filter: blur(14px); display: flex; flex-direction: column; animation: cdRise .32s ease both; }
.gallery[hidden] { display: none; }
.gallery-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; padding: clamp(18px, 3vw, 38px) clamp(18px, 4vw, 52px) 18px; border-bottom: 1px solid var(--line); }
.gallery-body { margin: 12px 0 0; font-weight: 300; font-size: clamp(13px, 1.2vw, 16px); line-height: 1.55; color: rgba(255, 255, 255, .65); max-width: 620px; }
.gallery-close { flex: none; width: 46px; height: 46px; }
.gallery-strip { flex: 1; overflow-x: auto; overflow-y: hidden; display: flex; gap: 14px; padding: clamp(16px, 2.4vw, 30px) clamp(18px, 4vw, 52px); scroll-snap-type: x mandatory; scrollbar-width: none; -ms-overflow-style: none; }
.gallery-strip::-webkit-scrollbar { display: none; height: 0; }
.gallery-strip img { height: 100%; width: auto; max-width: none; object-fit: cover; scroll-snap-align: center; background: #111; flex: none; border-radius: 12px; }
.gallery-nav-row { display: flex; align-items: center; gap: 18px; padding: 0 clamp(18px, 4vw, 52px) clamp(14px, 2vh, 20px); }
.gallery-foot { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px clamp(18px, 4vw, 52px) clamp(18px, 3vh, 30px); border-top: 1px solid var(--line); font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--mut); }

@media (max-width: 640px) {
  .gallery-strip { align-items: center; padding-top: 8px; padding-bottom: 8px; }
  .gallery-strip img { height: auto; width: 84vw; max-width: 84vw; flex: 0 0 84vw; aspect-ratio: 4 / 3; object-fit: cover; scroll-snap-align: start; }
}

@media (prefers-reduced-motion: reduce) {
  .hint-bar { animation: none; }
  .hint-arrow { animation: none; }
  .gallery { animation: none; }
}

/* Dense grids inside a pinned 100vh scene don't fit stacked on short mobile
   viewports — reuse the horizontal-strip pattern from "Ещё работы" instead. */
@media (max-width: 640px) {
  .service-grid, .why-grid, .step-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 2px;
  }
  .service-grid::-webkit-scrollbar, .why-grid::-webkit-scrollbar, .step-grid::-webkit-scrollbar { display: none; height: 0; }
  .service-grid > *, .why-grid > *, .step-grid > * { flex: 0 0 80vw; scroll-snap-align: start; }
  .service-img { height: clamp(84px, 18vh, 140px); }
}

/* Cookie notice — centered modal on every breakpoint */
.cookie-overlay { position: fixed; left: 50%; bottom: clamp(14px, 3vh, 26px); transform: translateX(-50%); z-index: 90; display: flex; align-items: center; justify-content: center; padding: 0; pointer-events: none; }
.cookie-overlay[hidden] { display: none; }
.cookie-bar { pointer-events: auto; display: flex; flex-direction: row; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px; text-align: left; max-width: min(560px, 92vw); padding: 18px 22px; border: 1px solid var(--line); border-radius: 20px; background: rgba(10, 10, 12, .92); backdrop-filter: blur(16px) saturate(1.2); -webkit-backdrop-filter: blur(16px) saturate(1.2); box-shadow: 0 14px 40px rgba(0, 0, 0, .5); animation: cdRise .35s var(--ease-out) both; }
.cookie-text { margin: 0; flex: 1 1 300px; font-size: 13px; line-height: 1.55; color: rgba(255, 255, 255, .8); }
.cookie-accept { flex: none; background: var(--acc); color: #08080a; border: 0; padding: 12px 26px; border-radius: 999px; cursor: pointer; font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; transition: background-color .2s ease, transform .16s var(--ease-out); }
.cookie-accept:hover { background: #fff; }
.cookie-accept:active { transform: scale(.97); }

/* No-JS fallback: reveal all scenes stacked instead of hidden mid-flight */
.no-js .flight { height: auto; }
.no-js .viewport { position: relative; height: auto; overflow: visible; perspective: none; }
.no-js .world { position: relative; }
.no-js .scene { position: relative; opacity: 1 !important; visibility: visible !important; transform: none !important; height: 100vh; }
.no-js .rail, .no-js .hud, .no-js .progress-track { display: none; }
