@font-face {
  font-family: "Russo One";
  src: url("assets/fonts/RussoOne-Regular.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat-Variable.ttf") format("truetype");
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Tektur";
  src: url("assets/fonts/Tektur-Variable.ttf") format("truetype");
  font-weight: 400 900;
  font-display: swap;
}

@font-face {
  font-family: "Play";
  src: url("assets/fonts/Play-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Play";
  src: url("assets/fonts/Play-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #03060c;
  --surface: #0b101a;
  --surface-2: #111725;
  --line: #222b3a;
  --text: #f7f9ff;
  --muted: #8993a7;
  --cyan: #00d8ff;
  --pink: #ff2ca8;
  --violet: #865cff;
  --green: #49e7a7;
  font-family: "Montserrat", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    linear-gradient(#ffffff04 1px, transparent 1px),
    linear-gradient(90deg, #ffffff04 1px, transparent 1px),
    var(--bg);
  background-size: 64px 64px;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }

.section-shell,
.site-header,
.footer { width: min(1240px, calc(100% - 40px)); margin-inline: auto; }
.page-glow {
  position: fixed; width: 500px; height: 500px; border-radius: 50%;
  filter: blur(150px); opacity: .08; pointer-events: none; z-index: -1;
}
.page-glow--cyan { left: 0; top: 10%; background: var(--cyan); transform: translateX(-55%); }
.page-glow--pink { right: 0; top: 50%; background: var(--pink); transform: translateX(55%); }

.site-header {
  position: fixed; inset: 18px 0 auto; z-index: 20;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 34px;
  padding: 12px 14px 12px 12px; border: 1px solid #ffffff14; border-radius: 18px;
  background: #050911d9; backdrop-filter: blur(20px); box-shadow: 0 18px 60px #0008;
}
.brand { display: flex; align-items: center; gap: 6px; }
.brand > img:first-child { width: 45px; height: 45px; object-fit: contain; }
.brand__wordmark { width: 242px; margin-left: -12px; }
.nav { justify-self: center; display: flex; align-items: center; gap: 30px; }
.nav a { color: #b5bdcc; font-family: "Tektur", sans-serif; font-size: 15px; font-weight: 750; letter-spacing: .055em; transition: .2s; }
.nav a:hover { color: var(--cyan); }
.menu-toggle { display: none; }

.button {
  min-height: 58px; display: inline-flex; align-items: center; justify-content: center;
  padding: 0 30px; border: 1px solid transparent; border-radius: 12px;
  font-family: "Tektur", sans-serif; font-size: 15px; font-weight: 780; letter-spacing: .045em; text-align: center; text-transform: uppercase;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.button:hover { transform: translateY(-2px); }
.button:disabled,
.button[aria-disabled="true"] { opacity: .52; cursor: not-allowed; pointer-events: none; }
.button--small { min-height: 50px; padding-inline: 24px; font-size: 15px; }
.button--primary {
  color: #03060c; border: 0; outline: 0;
  background: linear-gradient(105deg, var(--cyan) 0%, var(--violet) 55%, var(--pink) 100%);
  background-clip: border-box; box-shadow: 0 12px 42px #6c4cff40;
  overflow: hidden; transform: translateZ(0); clip-path: inset(0 round 12px);
}
.button--primary:hover { transform: translateY(-2px) translateZ(0); }
.button--ghost { color: white; border-color: #ffffff24; background: #ffffff08; }
.button--outline { border-color: #00d8ff70; background: #00d8ff08; }

.hero {
  position: relative; isolation: isolate; min-height: 900px; display: grid; grid-template-columns: 1fr;
  align-items: center; padding-top: 128px;
}
.hero::before {
  content: ""; position: absolute; inset: 120px -90px 80px; z-index: 0;
  background: radial-gradient(circle at 75% 38%, #791d7921, transparent 45%);
}
.hero__copy { width: 54%; padding: 50px 0; position: relative; z-index: 3; }
.eyebrow { margin: 0 0 18px; color: var(--cyan); font-size: 11px; font-weight: 900; letter-spacing: .22em; }
.hero__copy > .eyebrow { font-size: 14px; letter-spacing: .18em; }
.hero__wordmark { width: min(440px, 84%); margin: 0 0 34px -27px; opacity: .98; }
.hero__title { width: min(590px, 100%); margin: 0; }
.hero__title img { width: 100%; height: auto; mix-blend-mode: screen; }
.section-heading h2 span, .contacts h2 span, .download h2 span, .manifesto h2 span {
  display: block;
  color: var(--text);
  background: none;
  -webkit-text-fill-color: currentColor;
}
.section-heading h2 span:last-child, .contacts h2 span:last-child, .download h2 span:last-child {
  width: fit-content;
  max-width: 100%;
  color: transparent;
  background: linear-gradient(90deg, var(--cyan), #3f8cff 38%, var(--violet) 68%, var(--pink));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__lead { max-width: 560px; margin: 28px 0; color: #aeb7c8; font-size: 18px; line-height: 1.7; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__facts { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 38px; color: #727e92; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.hero__facts span { display: flex; align-items: center; gap: 8px; }
.hero__facts strong { color: white; font-size: 20px; }
.hero__visual { position: absolute; top: 120px; bottom: 80px; left: calc((100% - 100vw) / 2); right: calc((100% - 100vw) / 2); z-index: 1; overflow: hidden; }
.hero__visual::before { content: ""; position: absolute; inset: 0; z-index: 2; background: linear-gradient(90deg, #03060c 0%, #03060cf2 24%, #03060c92 44%, transparent 66%), linear-gradient(0deg, #03060cf2 0%, transparent 23%, transparent 78%, #03060c85 100%); }
.hero__visual::after { content: ""; position: absolute; inset: 0; z-index: 2; box-shadow: inset 100px 0 100px #03060c, inset -100px 0 100px #03060c; pointer-events: none; }
.hero__visual > img {
  width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: center;
  filter: saturate(1.05) contrast(1.05);
}
.hero__tag { position: absolute; z-index: 3; color: #9ba7ba; font: 700 9px/1 monospace; letter-spacing: .16em; }
.hero__tag::before { content: ""; display: inline-block; width: 20px; height: 1px; margin-right: 8px; vertical-align: middle; background: currentColor; }
.hero__tag--left { left: 40px; top: 250px; color: var(--cyan); }
.hero__tag--right { right: 20px; bottom: 210px; color: var(--pink); }
.scroll-cue { position: absolute; left: 50px; bottom: 38px; color: #606a7c; font: 700 9px/1 monospace; letter-spacing: .15em; }
.scroll-cue span { display: inline-block; width: 38px; height: 1px; margin-right: 10px; vertical-align: middle; background: linear-gradient(90deg, var(--cyan), var(--pink)); animation: scan 1.8s infinite ease-in-out; transform-origin: left; }
@keyframes scan { 0%, 100% { transform: scaleX(.3); } 50% { transform: scaleX(1); } }

.app-section { padding: 130px 0; }
.app-intro { display: grid; grid-template-columns: minmax(0, 1fr) minmax(430px, .85fr); align-items: center; gap: 58px; margin-bottom: 54px; }
.app-intro > .section-heading { max-width: 680px; margin-bottom: 0; }
.app-intro > .section-heading h2 { font-size: clamp(43px, 4.5vw, 66px); }
.app-intro > .section-heading h2 span { white-space: nowrap; }
.section-heading { max-width: 720px; margin-bottom: 58px; }
.section-heading h2, .contacts h2 { margin: 0; font-family: "Russo One", sans-serif; font-size: clamp(43px, 5.7vw, 74px); font-weight: 400; line-height: .98; letter-spacing: -.025em; text-transform: uppercase; }
.graphic-heading { width: min(760px, 100%); }
.graphic-heading img { width: 100%; height: auto; object-fit: contain; object-position: left center; }
.graphic-heading--center { width: min(660px, 58vw); margin-inline: auto !important; }
.graphic-heading--manifesto { width: min(980px, 100%); }
.section-heading > p:last-child { max-width: 620px; color: var(--muted); font-size: 17px; line-height: 1.7; }
.app-phones { width: 100%; padding: 18px; border: 1px solid #ffffff12; border-radius: 28px; background: radial-gradient(circle at 50% 50%, #161648, #050811 72%); box-shadow: 0 35px 100px #000b, 0 0 65px #865cff16; }
.app-phones img { width: 100%; height: auto; border-radius: 18px; }
.phone {
  position: sticky; top: 130px; width: 330px; height: 680px; margin-inline: auto; padding: 10px;
  overflow: hidden; border: 1px solid #536078; border-radius: 52px;
  background: #020308; box-shadow: 0 38px 100px #000, 0 0 70px #00d8ff18;
}
.phone img { width: 100%; height: 100%; object-fit: cover; border-radius: 42px; }
.phone__speaker { position: absolute; z-index: 2; width: 100px; height: 25px; left: 50%; top: 18px; transform: translateX(-50%); border-radius: 20px; background: #020308; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.feature { position: relative; min-height: 300px; padding: 28px; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: linear-gradient(145deg, #111826, #090d15); }
.feature::after { content: ""; position: absolute; width: 180px; height: 180px; right: -80px; bottom: -100px; border-radius: 50%; background: var(--cyan); opacity: .05; filter: blur(30px); }
.feature:nth-child(odd)::after { background: var(--pink); }
.feature--wide { grid-column: span 2; min-height: 230px; display: grid; grid-template-columns: 120px 1fr; align-items: center; }
.feature__number { display: block; color: #ffffff1d; font-family: "Play", sans-serif; font-size: 88px; font-weight: 700; line-height: 1; }
.feature__label { color: var(--cyan) !important; font: 800 10px/1 monospace !important; letter-spacing: .15em; }
.feature h3 { max-width: 480px; margin: 12px 0; font-family: "Russo One", sans-serif; font-size: 24px; font-weight: 400; line-height: 1.15; text-transform: uppercase; }
.feature h3.graphic-subheading { width: 100%; min-height: 32px; }
.graphic-subheading img { width: auto; max-width: 100%; height: 30px; object-fit: contain; object-position: left center; }
.feature p { color: var(--muted); line-height: 1.65; }

.manifesto { padding: 150px 0; border-block: 1px solid #ffffff0d; background: radial-gradient(circle at 80%, #ff2ca812, transparent 35%), #070a11; }
.manifesto__inner > p { color: var(--pink); font: 800 11px/1 monospace; letter-spacing: .2em; }
.manifesto h2 { max-width: 1120px; margin: 20px 0 0; font-family: "Russo One", sans-serif; font-size: clamp(39px, 5.1vw, 72px); font-weight: 400; line-height: 1.08; letter-spacing: -.02em; text-transform: uppercase; }
.manifesto__title span { display: block; color: var(--text); background: none; -webkit-text-fill-color: currentColor; }
.manifesto__title span:last-child { width: fit-content; max-width: 100%; color: transparent; background: linear-gradient(90deg, var(--cyan), #3f8cff 38%, var(--violet) 68%, var(--pink)); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.zones { padding: 130px 0; }
.section-heading--zones { position: relative; max-width: none; text-align: center; }
.section-heading--zones h2 span { width: fit-content; margin-inline: auto; }
.section-heading--zones::before,
.section-heading--zones::after { content: ""; position: absolute; top: 64%; width: min(22vw, 250px); height: 2px; background: linear-gradient(90deg, transparent, var(--cyan), var(--pink)); opacity: .75; }
.section-heading--zones::before { left: 0; }
.section-heading--zones::after { right: 0; transform: scaleX(-1); }
.zone-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.zone-card { position: relative; min-height: 530px; padding: 0; overflow: hidden; border: 1px solid color-mix(in srgb, var(--zone) 72%, #1d2635); border-radius: 24px; background: #070b12; box-shadow: 0 22px 60px #0008, inset 0 0 35px color-mix(in srgb, var(--zone) 9%, transparent); transition: transform .3s ease, box-shadow .3s ease; }
.zone-card:hover { transform: translateY(-7px); box-shadow: 0 30px 80px #000c, 0 0 35px color-mix(in srgb, var(--zone) 18%, transparent); }
.zone-card::before { content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none; background: linear-gradient(180deg, transparent 26%, #0508103d 45%, #050810 72%); }
.zone-card__image { position: absolute; inset: 0 0 38%; z-index: 0; overflow: hidden; }
.zone-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.zone-card:hover .zone-card__image img { transform: scale(1.035); }
.zone-card__body { position: absolute; inset: auto 0 0; z-index: 3; min-height: 48%; padding: 28px 22px 24px; display: flex; flex-direction: column; align-items: center; text-align: center; background: linear-gradient(180deg, transparent, #050810 20%); }
.zone-card p { order: 2; margin: 8px 0 12px; color: white; font-family: "Russo One", sans-serif; font-size: 18px; font-weight: 400; letter-spacing: .02em; }
.zone-card h3 { order: 1; width: 100%; min-height: 39px; margin: 0; display: flex; justify-content: center; align-items: center; color: var(--zone); font-family: "Russo One", sans-serif; font-size: clamp(27px, 2.2vw, 36px); font-weight: 400; line-height: 1; letter-spacing: .08em; text-transform: uppercase; text-shadow: 0 0 22px color-mix(in srgb, var(--zone) 28%, transparent); }
.zone-card small { order: 3; color: #9ea8ba; font-size: 12px; line-height: 1.65; }
.zone-card--standard { --zone: var(--cyan); }
.zone-card--vip { --zone: #9a6aff; }
.zone-card--trio { --zone: var(--pink); }
.zone-card--ps { --zone: #5e8dff; }

.tariffs { padding: 20px 0 130px; }
.tariffs__heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; }
.tariffs__heading .section-heading { margin-bottom: 42px; }
.tariff-switch { display: flex; gap: 6px; margin-bottom: 50px; padding: 5px; border: 1px solid var(--line); border-radius: 14px; background: #090e17; }
.tariff-switch button { min-width: 118px; min-height: 50px; padding: 0 20px; color: #7e889a; border: 0; border-radius: 9px; background: transparent; font-family: "Tektur", sans-serif; font-size: 15px; font-weight: 780; cursor: pointer; }
.tariff-switch button.is-active { color: #02050a; background: linear-gradient(105deg, var(--cyan), var(--violet), var(--pink)); }
.tariff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.tariff-card { --zone: var(--cyan); position: relative; overflow: hidden; padding: 28px; border: 1px solid color-mix(in srgb, var(--zone) 48%, var(--line)); border-radius: 22px; background: linear-gradient(145deg, color-mix(in srgb, var(--zone) 7%, #101722), #080c14 58%); box-shadow: inset 0 1px #ffffff0a; }
.tariff-card::after { content: ""; position: absolute; width: 180px; height: 180px; right: -90px; top: -90px; border-radius: 50%; background: var(--zone); opacity: .08; filter: blur(35px); }
.tariff-card--standard { --zone: var(--cyan); }
.tariff-card--vip { --zone: #9a6aff; }
.tariff-card--trio { --zone: var(--pink); }
.tariff-card--ps { --zone: #5e8dff; }
.tariff-card__title { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin-bottom: 26px; }
.tariff-card__title span { color: var(--zone); font-family: "Russo One", sans-serif; font-size: 28px; font-weight: 400; }
.tariff-card__title small { color: #717c90; }
.tariff-card__columns, .tariff-row { position: relative; z-index: 1; display: grid; grid-template-columns: 1.5fr .8fr .8fr; align-items: center; gap: 12px; }
.tariff-card__columns { padding: 0 0 10px; color: #596376; font: 700 9px/1 monospace; letter-spacing: .12em; }
.tariff-card__columns span:not(:first-child), .tariff-row strong { text-align: right; }
.tariff-row { min-height: 66px; border-top: 1px solid #ffffff0d; }
.tariff-row b { color: #d7dce6; font-family: "Tektur", sans-serif; font-size: 16px; }
.tariff-row strong { color: var(--zone); font-family: "Tektur", sans-serif; font-size: 20px; }
.tariffs__note { margin: 24px 0 0; color: #697487; font-size: 12px; text-align: center; }

.download { position: relative; min-height: 330px; display: grid; grid-template-columns: 210px 1fr auto; align-items: center; gap: 46px; padding: 45px; overflow: hidden; border: 1px solid #764dff55; border-radius: 30px; background: linear-gradient(130deg, #0c1924, #21102a); }
.download > img { width: 190px; filter: drop-shadow(0 0 35px #00d8ff35); }
.download h2 { margin: 0 0 12px; font-family: "Russo One", sans-serif; font-size: clamp(36px, 4.7vw, 58px); font-weight: 400; line-height: .95; text-transform: uppercase; }
.download p:not(.eyebrow) { max-width: 560px; color: var(--muted); line-height: 1.6; }
.download__glow { position: absolute; width: 260px; height: 260px; left: 20px; border-radius: 50%; background: var(--cyan); opacity: .08; filter: blur(70px); }

.contacts { padding: 140px 0 110px; display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: center; }
.contacts__copy > p:not(.eyebrow) { margin: 16px 0 0; color: var(--muted); }
.contacts__copy > a:not(.button) { display: block; margin: 20px 0; font-size: 24px; font-weight: 850; }
.contacts__panel { padding: 32px; border: 1px solid var(--line); border-radius: 28px; background: #090e17; }
.yandex-map { position: relative; height: 340px; overflow: hidden; border: 1px solid #ffffff14; border-radius: 20px; background: #050a12; }
.yandex-map iframe { display: block; border: 0; filter: saturate(.78) contrast(1.08); }
.map-signal { position: absolute; z-index: 3; left: 51%; top: 53%; width: 1px; height: 1px; display: grid; place-items: center; pointer-events: none; }
.map-signal i { position: absolute; width: 42px; height: 42px; border: 1px solid #00d8ffb5; border-radius: 50%; box-shadow: 0 0 14px #00d8ff38; animation: mapPulse 3s infinite ease-out; }
.map-signal i:nth-child(2) { animation-delay: 1s; }
.map-signal i:nth-child(3) { animation-delay: 2s; }
.map-signal b { position: absolute; width: 25px; height: 31px; border: 3px solid white; border-radius: 50% 50% 50% 0; background: linear-gradient(145deg, var(--cyan), var(--violet), var(--pink)); transform: translateY(-20px) rotate(-45deg); box-shadow: 0 0 25px #00d8ff80; }
.map-signal b::after { content: ""; position: absolute; width: 7px; height: 7px; left: 6px; top: 7px; border-radius: 50%; background: #fff; }
.map-signal span { position: absolute; top: 15px; width: max-content; padding: 6px 9px; border: 1px solid #00d8ff80; border-radius: 6px; color: white; background: #040913e8; font: 700 8px/1 "Tektur", sans-serif; letter-spacing: .1em; box-shadow: 0 8px 25px #000a; }
@keyframes mapPulse { 0% { transform: scale(.35); opacity: .95; } 80%, 100% { transform: scale(3.1); opacity: 0; } }
.contacts__panel > p { color: #6d778b; font: 700 10px/1 monospace; letter-spacing: .14em; }
.socials { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.socials a { flex: 1 1 130px; display: flex; align-items: center; justify-content: center; gap: 9px; min-height: 48px; border: 1px solid var(--line); border-radius: 12px; background: #ffffff05; font-size: 13px; font-weight: 750; }
.socials img { width: 22px; height: 22px; object-fit: contain; }

.footer { min-height: 120px; display: flex; align-items: center; justify-content: space-between; gap: 30px; border-top: 1px solid #ffffff10; color: #687286; font-size: 11px; }
.footer .brand__wordmark { width: 140px; }
.footer .brand > img:first-child { width: 34px; height: 34px; }
.footer > div { display: flex; flex-wrap: wrap; gap: 18px; }
.footer a:hover { color: white; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1040px) {
  .nav { gap: 17px; }
  .brand__wordmark { width: 190px; }
  .hero { grid-template-columns: 1fr; }
  .hero__copy { padding-left: 0; }
  .app-intro { grid-template-columns: 1fr 380px; gap: 30px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature--wide { grid-column: 1 / -1; }
  .phone { width: 280px; height: 580px; }
  .zone-grid { grid-template-columns: 1fr 1fr; }
  .tariff-grid { grid-template-columns: 1fr 1fr; }
  .download { grid-template-columns: 150px 1fr; }
  .download > img { width: 140px; }
  .download > .button { grid-column: 2; justify-self: start; }
}

@media (max-width: 760px) {
  .section-shell, .site-header, .footer { width: min(100% - 28px, 620px); }
  .site-header { grid-template-columns: 1fr auto; }
  .header-cta { display: none; }
  .menu-toggle { display: grid; gap: 5px; width: 42px; height: 42px; place-content: center; color: white; border: 1px solid var(--line); border-radius: 11px; background: transparent; }
  .menu-toggle span { display: block; width: 18px; height: 2px; background: currentColor; transition: .2s; }
  .nav { position: absolute; top: calc(100% + 8px); left: 0; right: 0; display: grid; gap: 0; padding: 8px; border: 1px solid var(--line); border-radius: 15px; background: #060a12f5; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: .2s; }
  .nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav a { padding: 14px; }
  .hero { min-height: auto; display: block; overflow: hidden; padding: 555px 0 0; }
  .hero::before { inset: 110px 0 45px; }
  .hero__copy { padding: 0 22px 18px; text-align: center; }
  .hero__copy::before { content: ""; position: absolute; inset: -150px -30px -90px; z-index: -1; pointer-events: none; background: linear-gradient(180deg, transparent 0%, #03060cba 24%, #03060cf5 45%, #03060c 68%, #03060ce8 100%); }
  .hero__copy > .eyebrow { margin-inline: auto; }
  .hero__wordmark { width: 280px; margin: 0 auto 28px; }
  .hero__title { width: min(520px, 100%); margin-inline: auto; }
  .hero__lead { max-width: 450px; margin-inline: auto; font-size: 15px; }
  .hero__actions { justify-content: center; }
  .hero__facts { justify-content: center; gap: 12px; text-align: left; }
  .hero__facts span { flex: 1 1 100px; display: grid; }
  .hero__copy { width: 100%; }
  .hero__visual { top: 0; bottom: 0; left: calc((100% - 100vw) / 2); right: calc((100% - 100vw) / 2); z-index: 1; opacity: .94; }
  .hero__visual::before { background: linear-gradient(180deg, transparent 0%, transparent 22%, #03060c35 34%, #03060cd9 48%, #03060c 69%, #03060c 100%); }
  .hero__visual::after { box-shadow: inset 24px 0 38px #03060c, inset -24px 0 38px #03060c; }
  .hero__visual > img { position: absolute; top: 50px; left: 50%; width: 195%; height: auto; max-width: none; object-fit: contain; transform: translateX(-64%); -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 72%, transparent 100%); mask-image: linear-gradient(180deg, #000 0%, #000 72%, transparent 100%); }
  .hero__tag, .scroll-cue { display: none; }
  .app-section { position: relative; z-index: 5; padding: 58px 0 90px; background: var(--bg); box-shadow: 0 -42px 70px var(--bg); }
  .zones { padding: 68px 0 90px; }
  .tariffs { padding: 10px 0 90px; }
  .tariffs__heading { display: block; }
  .tariff-switch { width: max-content; margin: -18px 0 35px; }
  .tariff-grid { grid-template-columns: 1fr; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2, .contacts h2 { font-size: 46px; }
  .app-intro { display: flex; flex-direction: column; align-items: stretch; gap: 0; margin-bottom: 38px; }
  .app-intro > .section-heading { margin-bottom: 34px; }
  .app-intro > .section-heading h2 { font-size: clamp(34px, 9vw, 46px); }
  .app-phones { position: relative; top: auto; margin-bottom: 38px; padding: 10px; border-radius: 22px; }
  .app-phones img { border-radius: 14px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature--wide { grid-column: auto; display: block; min-height: 300px; }
  .feature { min-height: 270px; }
  .manifesto { padding: 90px 0; }
  .manifesto h2 { font-size: clamp(34px, 7.2vw, 52px); }
  .download { grid-template-columns: 90px 1fr; gap: 18px; padding: 26px; }
  .download > img { width: 90px; }
  .download > .button { grid-column: 1 / -1; width: 100%; }
  .contacts { padding: 100px 0 80px; display: block; }
  .contacts__panel { margin-top: 40px; }
  .footer { padding: 28px 0; align-items: flex-start; flex-direction: column; }
}

@media (max-width: 480px) {
  .site-header { gap: 8px; }
  .brand__wordmark { width: clamp(176px, 55vw, 210px); margin-left: -10px; }
  .hero { min-height: auto; padding: 520px 0 0; }
  .hero__copy { padding-inline: 15px; }
  .hero__actions .button { width: 100%; }
  .hero__facts strong { font-size: 17px; }
  .phone { width: 260px; height: 540px; }
  .zone-grid { grid-template-columns: 1fr; }
  .zone-card { min-height: 290px; }
  .tariff-card { padding: 22px 18px; }
  .tariff-card__title { align-items: flex-start; flex-direction: column; gap: 4px; }
  .manifesto h2 { font-size: 30px; line-height: 1.16; }
  .app-intro > .section-heading h2 { font-size: clamp(27px, 8.4vw, 38px); }
  .tariff-row b { font-size: 15px; }
  .tariff-row strong { font-size: 18px; }
  .download { display: flex; flex-direction: column; align-items: flex-start; }
  .download > img { width: 120px; align-self: center; }
}

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