:root {
  color-scheme: dark;
  --canvas: #09090c;
  --canvas-deep: #050507;
  --surface: #13141a;
  --surface-raised: #191a22;
  --surface-soft: #101117;
  --crimson: #ff4d66;
  --crimson-bright: #ff6b80;
  --crimson-deep: #761a29;
  --ink: #f6f2f3;
  --muted: #b8b0b3;
  --subtle: #8f888b;
  --stroke: rgba(217, 210, 214, 0.16);
  --stroke-strong: rgba(217, 210, 214, 0.25);
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 10%, rgba(151, 31, 52, 0.2), transparent 34rem),
    radial-gradient(circle at 8% 38%, rgba(50, 63, 94, 0.12), transparent 32rem),
    var(--canvas);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
main { overflow: clip; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--canvas);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.section-shell { width: min(100% - 56px, 1280px); margin-inline: auto; }
.section-index {
  margin: 0;
  color: var(--crimson-bright);
  font-size: 12px;
  font-weight: 750;
  line-height: 1;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.site-header {
  position: relative;
  z-index: 20;
  width: min(100% - 56px, 1440px);
  min-height: 94px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid rgba(246, 242, 243, .1);
}

.brand { display: inline-flex; align-items: center; gap: 12px; width: max-content; }
.brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(255, 77, 102, .25));
}
.brand span { font-size: 16px; font-weight: 750; line-height: 1; letter-spacing: .46em; }

nav { display: flex; align-items: center; gap: 34px; }
nav a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 620;
  line-height: 1;
  transition: color 180ms ease;
}
nav a:hover, nav a:focus-visible { color: var(--ink); }

.header-actions { justify-self: end; display: flex; align-items: center; gap: 10px; }
.telegram-link {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--stroke);
  border-radius: 50%;
  background: rgba(25, 26, 34, .78);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}
.telegram-link img { width: 23px; height: 23px; }
.telegram-link:hover { transform: translateY(-2px); border-color: rgba(42, 171, 238, .62); background: rgba(42, 171, 238, .12); }
.header-download {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid rgba(255, 77, 102, .62);
  border-radius: 999px;
  background: rgba(255, 77, 102, .06);
  font-size: 13px;
  font-weight: 730;
  white-space: nowrap;
}

.telegram-link:focus-visible,
.header-download:focus-visible,
.button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--crimson);
  outline-offset: 4px;
}

.hero {
  min-height: calc(100svh - 94px);
  padding-block: clamp(64px, 7vw, 100px) clamp(84px, 9vw, 126px);
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(520px, 1.05fr);
  align-items: center;
  gap: clamp(48px, 6vw, 96px);
}
.hero-copy { position: relative; z-index: 2; max-width: 700px; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 26px;
  color: #d0c8cb;
  font-size: 13px;
  font-weight: 720;
  line-height: 1;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.eyebrow span { width: 8px; height: 8px; border-radius: 50%; background: var(--crimson); box-shadow: 0 0 18px rgba(255,77,102,.8); }
h1 {
  margin: 0;
  font-size: clamp(62px, 7vw, 112px);
  font-weight: 760;
  line-height: .91;
  letter-spacing: -.065em;
}
h1 em, h2 em { color: var(--crimson-bright); font-style: normal; }
.hero-lead {
  max-width: 610px;
  margin: 36px 0 0;
  color: #c2babe;
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.58;
}
.hero-actions { display: flex; align-items: stretch; gap: 14px; margin-top: 40px; }
.button {
  min-height: 64px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 750;
  line-height: 1;
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  min-width: 250px;
  flex-direction: column;
  gap: 6px;
  background: linear-gradient(135deg, var(--crimson-bright), var(--crimson));
  color: #0a090b;
  box-shadow: 0 16px 42px rgba(222, 43, 69, .25);
}
.button-kicker { font-size: 11px; font-weight: 780; letter-spacing: .1em; opacity: .74; }
.button-ghost { border: 1px solid var(--stroke-strong); background: rgba(25, 26, 34, .74); }
.button-ghost span { color: var(--crimson-bright); }
.vpn-note { margin: 22px 0 0; color: var(--subtle); font-size: 13px; line-height: 1.55; }
.vpn-note span {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 77, 102, .38);
  border-radius: 50%;
  color: var(--crimson-bright);
  font-size: 12px;
  font-weight: 750;
}

.hero-visual { position: relative; min-height: 720px; }
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% 2% 5%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,77,102,.22), rgba(117,26,41,.08) 38%, transparent 70%);
  filter: blur(24px);
}
.ambient-ring { position: absolute; border: 1px solid rgba(255,77,102,.2); border-radius: 50%; transform: rotate(-18deg); }
.ambient-ring-one { width: 620px; height: 240px; right: -3%; top: 34%; }
.ambient-ring-two { width: 430px; height: 154px; right: 8%; top: 44%; border-color: rgba(132, 143, 171, .22); }

.app-screen {
  position: relative;
  overflow: hidden;
  aspect-ratio: 720 / 1452;
  border: 1px solid rgba(246, 242, 243, .2);
  border-radius: 32px;
  background: #030304;
  box-shadow: 0 34px 90px rgba(0,0,0,.64), 0 0 0 6px rgba(23,24,31,.84);
}
.app-screen > img {
  width: 100%;
  height: auto;
  max-width: none;
  transform: translateY(-4.615%);
}
.hero-screen { position: absolute; }
.hero-screen-back { width: 285px; left: 3%; top: 18%; transform: rotate(-7deg); filter: saturate(.86) brightness(.86); }
.hero-screen-front { width: 330px; right: 6%; top: 1%; transform: rotate(4deg); }
.visual-note {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 3%;
  width: 320px;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  border: 1px solid var(--stroke);
  border-radius: 16px;
  background: rgba(20,21,28,.86);
  backdrop-filter: blur(14px);
}
.visual-note span { color: var(--crimson-bright); font-size: 12px; font-weight: 800; }
.visual-note p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.45; }

.signal-strip {
  min-height: 76px;
  padding: 18px max(24px, 4vw);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(18px, 3vw, 46px);
  border-block: 1px solid rgba(246,242,243,.1);
  background: rgba(17,18,24,.74);
  color: #c7c0c3;
  font-size: 12px;
  font-weight: 720;
  line-height: 1.4;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.signal-strip i { width: 5px; height: 5px; border-radius: 50%; background: var(--crimson); box-shadow: 0 0 12px rgba(255,77,102,.72); }

.intro {
  padding-block: clamp(110px, 12vw, 170px);
  display: grid;
  grid-template-columns: .3fr 1fr;
  gap: 38px 70px;
  border-bottom: 1px solid rgba(246,242,243,.09);
}
.intro-copy { max-width: 940px; }
.intro h2,
.section-heading h2,
.import-copy h2,
.themes-copy h2,
.library-heading h2,
.early-access h2,
.download h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(46px, 5.4vw, 80px);
  font-weight: 750;
  line-height: .98;
  letter-spacing: -.055em;
}
.intro-copy > p {
  max-width: 760px;
  margin: 36px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}
.principles {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.principles article {
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--stroke);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(28,29,38,.86), rgba(16,17,23,.86));
}
.principles span { color: var(--crimson-bright); font-size: 12px; font-weight: 800; }
.principles h3 { margin: 46px 0 0; font-size: 19px; line-height: 1.25; }
.principles p { margin: 10px 0 0; color: var(--muted); font-size: 15px; line-height: 1.55; }

.possibilities { padding-block: clamp(110px, 12vw, 170px); }
.section-heading { display: grid; grid-template-columns: .3fr 1fr; gap: 70px; align-items: start; margin-bottom: 72px; }
.feature {
  min-height: 720px;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  overflow: hidden;
  border: 1px solid var(--stroke);
  border-radius: 30px;
  background:
    radial-gradient(circle at 78% 46%, rgba(147,31,51,.21), transparent 42%),
    linear-gradient(145deg, rgba(28,27,35,.96), rgba(13,14,19,.98));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04), 0 34px 90px rgba(0,0,0,.25);
}
.feature + .feature { margin-top: 30px; }
.feature-copy { align-self: center; padding: clamp(42px, 5.5vw, 78px); position: relative; z-index: 3; }
.feature-kicker { margin: 0 0 18px; color: var(--crimson-bright); font-size: 12px; font-weight: 760; letter-spacing: .12em; text-transform: uppercase; }
.feature h3 { margin: 0; font-size: clamp(42px, 4.5vw, 66px); font-weight: 750; line-height: .98; letter-spacing: -.05em; }
.feature-copy > p:not(.feature-kicker) { max-width: 520px; margin: 28px 0 0; color: var(--muted); font-size: 17px; line-height: 1.65; }
.check-list { margin: 34px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 13px 0 13px 30px; border-top: 1px solid rgba(246,242,243,.1); color: #d7d0d3; font-size: 15px; line-height: 1.4; }
.check-list li:last-child { border-bottom: 1px solid rgba(246,242,243,.1); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--crimson-bright); font-weight: 800; }
.screen-pair { position: relative; min-height: 720px; overflow: hidden; }
.screen-pair::before { content: ""; position: absolute; width: 540px; height: 540px; top: 13%; right: -6%; border: 1px solid rgba(255,77,102,.14); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,77,102,.025); }
.pair-screen { position: absolute; width: 320px; }
.pair-screen-back { left: 2%; top: 80px; transform: rotate(-5deg); filter: brightness(.84); }
.pair-screen-front { right: 5%; top: 28px; transform: rotate(5deg); }

.feature-player { grid-template-columns: 1.05fr .95fr; background: radial-gradient(circle at 24% 50%, rgba(52,65,97,.2), transparent 40%), linear-gradient(145deg, rgba(21,23,31,.96), rgba(12,13,18,.98)); }
.single-screen-wrap { min-height: 720px; display: grid; place-items: end center; position: relative; overflow: hidden; }
.single-screen-wrap::before { content: ""; position: absolute; width: 550px; height: 550px; border: 1px solid rgba(101,116,153,.18); border-radius: 50%; box-shadow: 0 0 90px rgba(42,53,82,.22); }
.single-screen { width: 350px; align-self: end; transform: translateY(72px) rotate(-2deg); }
.feature-stat { max-width: 460px; margin-top: 36px; padding: 22px 24px; display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: center; border: 1px solid var(--stroke); border-radius: 18px; background: rgba(22,23,30,.78); }
.feature-stat strong { color: var(--crimson-bright); font-size: 24px; white-space: nowrap; }
.feature-stat span { color: var(--muted); font-size: 14px; line-height: 1.45; }

.import-section {
  position: relative;
  padding-block: clamp(110px, 12vw, 170px);
  overflow: hidden;
  border-block: 1px solid rgba(246,242,243,.1);
  background:
    radial-gradient(circle at 20% 50%, rgba(48,63,96,.24), transparent 33rem),
    radial-gradient(circle at 82% 38%, rgba(148,30,50,.21), transparent 32rem),
    #101117;
}
.import-inner { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(54px, 8vw, 110px); align-items: center; }
.import-visual { position: relative; min-height: 730px; display: grid; place-items: center; }
.import-glow { position: absolute; width: 460px; height: 460px; border-radius: 50%; border: 1px solid rgba(94,111,153,.24); box-shadow: 0 0 100px rgba(47,63,104,.23), 0 0 0 70px rgba(255,255,255,.01); }
.app-screen-import { width: min(100%, 430px); aspect-ratio: 1080 / 1410; }
.app-screen-import > img { transform: translateY(-5.556%); }
.import-copy h2 { margin-top: 28px; }
.import-copy > p:not(.section-index):not(.privacy-note) { max-width: 650px; margin: 30px 0 0; color: var(--muted); font-size: 18px; line-height: 1.68; }
.source-list { margin-top: 34px; display: grid; gap: 12px; }
.source-list article {
  min-height: 78px;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 16px;
  align-items: center;
  border: 1px solid var(--stroke);
  border-radius: 18px;
  background: rgba(26,27,35,.84);
}
.source-mark { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 13px; color: #fff; font-size: 15px; font-weight: 850; }
.source-yandex { background: #090909; color: #ffd321; }
.source-vk { background: #4e91d5; }
.source-spotify { background: #202124; color: #1ed760; font-size: 28px; }
.source-list h3 { margin: 0; font-size: 17px; line-height: 1.25; }
.source-list p { margin: 5px 0 0; color: var(--muted); font-size: 14px; line-height: 1.4; }
.source-status { padding: 8px 10px; border-radius: 999px; background: rgba(255,77,102,.1); color: var(--crimson-bright); font-size: 11px; font-weight: 780; text-transform: uppercase; letter-spacing: .06em; }
.source-muted { opacity: .62; }
.privacy-note { max-width: 650px; margin: 24px 0 0; padding: 18px 20px; display: flex; gap: 12px; border-left: 2px solid var(--crimson); background: rgba(255,77,102,.055); color: #d0c9cc; font-size: 14px; line-height: 1.55; }
.privacy-note span { color: var(--crimson-bright); font-weight: 850; }

.themes { padding-block: clamp(110px, 12vw, 170px); display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(48px, 7vw, 100px); align-items: center; }
.themes-copy h2 { margin-top: 28px; }
.themes-copy > p:not(.section-index) { max-width: 570px; margin: 30px 0 0; color: var(--muted); font-size: 18px; line-height: 1.68; }
.theme-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.theme-list span { padding: 10px 14px; border: 1px solid rgba(255,77,102,.28); border-radius: 999px; background: rgba(255,77,102,.045); color: #d0c8cb; font-size: 12px; font-weight: 680; }
.themes-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: end; }
.theme-card { padding: 18px; border: 1px solid var(--stroke); border-radius: 26px; background: linear-gradient(150deg, rgba(29,30,39,.92), rgba(14,15,20,.94)); box-shadow: 0 28px 76px rgba(0,0,0,.28); }
.theme-card-secondary { transform: translateY(38px); }
.theme-shot { width: 100%; border-radius: 22px; box-shadow: none; }
.theme-card > div:last-child { padding: 18px 4px 2px; }
.theme-card span { color: var(--crimson-bright); font-size: 11px; font-weight: 760; letter-spacing: .1em; text-transform: uppercase; }
.theme-card h3 { margin: 6px 0 0; font-size: 21px; line-height: 1.2; }

.library-section { padding-block: clamp(110px, 12vw, 170px); border-block: 1px solid rgba(246,242,243,.09); background: linear-gradient(180deg, rgba(18,19,25,.92), rgba(10,10,14,.92)); }
.library-heading { display: grid; grid-template-columns: .3fr 1fr; gap: 24px 70px; }
.library-heading h2 { grid-column: 2; }
.library-heading > p:last-child { grid-column: 2; max-width: 700px; margin: 4px 0 0; color: var(--muted); font-size: 18px; line-height: 1.68; }
.detail-grid { margin-top: 70px; display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.detail-card { min-height: 650px; padding: 28px; display: grid; grid-template-columns: minmax(220px, 280px) 1fr; gap: 30px; align-items: end; overflow: hidden; border: 1px solid var(--stroke); border-radius: 28px; background: radial-gradient(circle at 24% 48%, rgba(136,28,48,.17), transparent 48%), var(--surface); }
.detail-screen { width: 100%; align-self: end; border-radius: 24px; box-shadow: 0 26px 60px rgba(0,0,0,.52); }
.detail-copy { padding-bottom: 18px; }
.detail-copy > span { color: var(--crimson-bright); font-size: 11px; font-weight: 780; letter-spacing: .11em; text-transform: uppercase; }
.detail-copy h3 { margin: 10px 0 0; font-size: clamp(27px, 2.5vw, 38px); line-height: 1.05; letter-spacing: -.035em; }
.detail-copy p { margin: 18px 0 0; color: var(--muted); font-size: 15px; line-height: 1.6; }

.early-access { min-height: 560px; padding-block: 90px; display: grid; grid-template-columns: .65fr 1.35fr; gap: 80px; align-items: center; }
.early-mark { position: relative; height: 260px; display: flex; align-items: end; justify-content: center; gap: 14px; }
.early-mark::before { content: ""; position: absolute; width: 260px; height: 260px; border: 1px solid rgba(255,77,102,.19); border-radius: 50%; box-shadow: 0 0 90px rgba(136,28,47,.19); }
.early-mark span { z-index: 1; width: 7px; border-radius: 5px; background: var(--crimson); animation: pulse-bars 2.9s ease-in-out infinite; }
.early-mark span:nth-child(1) { height: 28%; }
.early-mark span:nth-child(2) { height: 62%; animation-delay: -.8s; }
.early-mark span:nth-child(3) { height: 90%; animation-delay: -1.4s; }
.early-mark span:nth-child(4) { height: 48%; animation-delay: -.3s; }
.early-mark span:nth-child(5) { height: 72%; animation-delay: -1.8s; }
@keyframes pulse-bars { 0%,100% { transform: scaleY(.46); opacity: .52; } 50% { transform: scaleY(1); opacity: 1; } }
.early-access h2 { margin-top: 28px; }
.early-access > div:last-child > p:not(.section-index) { max-width: 700px; margin: 28px 0 0; color: var(--muted); font-size: 18px; line-height: 1.68; }
.text-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 30px; padding-bottom: 7px; border-bottom: 1px solid rgba(255,77,102,.48); font-size: 14px; font-weight: 720; }
.text-link span { color: var(--crimson-bright); }

.download { padding-block: clamp(110px, 12vw, 160px); background: radial-gradient(circle at 20% 52%, rgba(148,30,50,.23), transparent 32rem), #101116; }
.download-inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(60px, 8vw, 110px); align-items: center; }
.download h2 { margin-top: 28px; }
.download-copy > p:not(.section-index):not(.release-meta) { max-width: 540px; margin: 28px 0 0; color: var(--muted); font-size: 18px; line-height: 1.68; }
.download-button { margin-top: 34px; }
.release-meta { display: flex; gap: 18px; margin: 16px 0 0; color: var(--subtle); font-size: 12px; font-weight: 650; }
.release-meta span + span::before { content: "·"; margin-right: 18px; color: var(--crimson-bright); }
.install-steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--stroke); }
.install-steps li { display: grid; grid-template-columns: 54px 1fr; gap: 22px; padding: 30px 0; border-bottom: 1px solid var(--stroke); }
.install-steps > li > span { padding-top: 4px; color: var(--crimson-bright); font-size: 12px; font-weight: 800; }
.install-steps h3 { margin: 0; font-size: 22px; line-height: 1.2; }
.install-steps p { max-width: 520px; margin: 10px 0 0; color: var(--muted); font-size: 15px; line-height: 1.62; }

.faq { padding-block: clamp(110px, 12vw, 160px); }
.faq-list { max-width: 940px; margin-left: auto; }
.faq details { border-top: 1px solid var(--stroke); }
.faq details:last-child { border-bottom: 1px solid var(--stroke); }
.faq summary { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; list-style: none; color: #e3dcdf; font-size: clamp(18px, 1.8vw, 23px); font-weight: 650; line-height: 1.35; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary span { position: relative; width: 26px; height: 26px; flex: 0 0 26px; }
.faq summary span::before, .faq summary span::after { content: ""; position: absolute; left: 5px; right: 5px; top: 12px; height: 1px; background: var(--crimson); transition: transform 180ms ease; }
.faq summary span::after { transform: rotate(90deg); }
.faq details[open] summary span::after { transform: rotate(0); }
.faq details p { max-width: 760px; margin: -2px 0 32px; color: var(--muted); font-size: 16px; line-height: 1.7; }
.faq details p a { color: var(--ink); border-bottom: 1px solid var(--crimson-deep); }

.final-cta { position: relative; min-height: 680px; padding-block: 90px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; border-top: 1px solid rgba(246,242,243,.09); }
.final-cta::before { content: ""; position: absolute; width: min(70vw, 760px); aspect-ratio: 1; border: 1px solid rgba(255,77,102,.15); border-radius: 50%; box-shadow: 0 0 0 100px rgba(255,77,102,.014), 0 0 120px rgba(137,29,47,.16); }
.final-cta > * { position: relative; }
.final-cta > img { width: 106px; height: 106px; margin-bottom: 22px; object-fit: contain; filter: drop-shadow(0 0 28px rgba(255,77,102,.28)); }
.final-cta h2 { margin-top: 24px; }
.final-actions { justify-content: center; }

footer { border-top: 1px solid var(--stroke); background: var(--canvas-deep); }
.footer-top { min-height: 190px; display: grid; grid-template-columns: 1fr 1.2fr auto; align-items: center; gap: 50px; }
.footer-top > p { max-width: 480px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.footer-top .text-link { margin-top: 0; }
.legal-note { padding-block: 28px 40px; display: grid; grid-template-columns: 1fr auto; gap: 50px; border-top: 1px solid rgba(246,242,243,.08); color: var(--subtle); font-size: 12px; line-height: 1.6; }
.legal-note p { margin: 0; }
.legal-note p:first-child { max-width: 940px; }

.reveal-ready .reveal { opacity: 0; transform: translateY(24px); transition: opacity 680ms ease, transform 680ms cubic-bezier(.2,.7,.2,1); }
.reveal-ready .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1120px) {
  .site-header { grid-template-columns: 1fr auto; }
  nav { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { max-width: 820px; }
  .hero-visual { width: min(100%, 700px); margin-inline: auto; }
  .feature { grid-template-columns: .92fr 1.08fr; }
  .feature-player { grid-template-columns: 1fr 1fr; }
  .pair-screen { width: 285px; }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-card { grid-template-columns: minmax(240px, 300px) 1fr; }
}

@media (max-width: 920px) {
  .intro, .section-heading, .library-heading, .early-access { grid-template-columns: 1fr; gap: 30px; }
  .principles, .library-heading h2, .library-heading > p:last-child { grid-column: 1; }
  .feature, .feature-player, .import-inner, .themes, .download-inner { grid-template-columns: 1fr; }
  .feature-copy { padding-bottom: 24px; }
  .screen-pair { min-height: 680px; }
  .feature-player .feature-copy { order: -1; }
  .single-screen-wrap { min-height: 620px; }
  .import-copy { order: -1; }
  .import-visual { min-height: 640px; }
  .themes-copy { max-width: 760px; }
  .themes-visual { width: min(100%, 700px); margin-inline: auto; }
  .early-mark { display: none; }
  .faq-list { margin-top: 54px; }
  .footer-top { grid-template-columns: 1fr auto; padding-block: 42px; }
  .footer-top > p { grid-column: 1 / -1; grid-row: 2; }
}

@media (max-width: 700px) {
  .section-shell { width: min(100% - 32px, 1280px); }
  .site-header { width: min(100% - 32px, 1440px); min-height: 78px; gap: 10px; }
  .brand { gap: 9px; }
  .brand img { width: 34px; height: 34px; }
  .brand span { font-size: 14px; letter-spacing: .3em; }
  .header-actions { gap: 8px; }
  .telegram-link { width: 44px; height: 44px; }
  .telegram-link img { width: 22px; height: 22px; }
  .header-download { min-height: 44px; padding: 0 14px; font-size: 12px; }
  .hero { min-height: auto; padding-block: 52px 80px; gap: 44px; }
  .eyebrow { font-size: 11px; line-height: 1.35; }
  h1 { font-size: clamp(46px, 15vw, 68px); line-height: .94; }
  .hero-lead { margin-top: 26px; font-size: 17px; line-height: 1.6; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; min-height: 60px; }
  .hero-visual { min-height: 570px; }
  .hero-screen-back { width: 220px; left: -4%; top: 18%; }
  .hero-screen-front { width: 248px; right: -2%; }
  .ambient-ring-one { width: 480px; right: -120px; }
  .ambient-ring-two { width: 340px; right: -36px; }
  .visual-note { width: min(100%, 285px); right: 0; bottom: 0; }
  .signal-strip { justify-content: flex-start; gap: 14px 18px; padding-inline: 16px; font-size: 11px; }
  .signal-strip i { display: none; }
  .intro, .possibilities, .import-section, .themes, .library-section, .faq, .download { padding-block: 88px; }
  .intro h2, .section-heading h2, .import-copy h2, .themes-copy h2, .library-heading h2, .early-access h2, .download h2, .final-cta h2 { font-size: clamp(39px, 12vw, 50px); }
  .intro-copy > p, .import-copy > p:not(.section-index):not(.privacy-note), .themes-copy > p:not(.section-index), .library-heading > p:last-child, .early-access > div:last-child > p:not(.section-index), .download-copy > p:not(.section-index):not(.release-meta) { font-size: 16px; }
  .principles { grid-template-columns: 1fr; }
  .principles article { min-height: 150px; }
  .principles h3 { margin-top: 28px; }
  .section-heading { margin-bottom: 46px; }
  .feature { min-height: 0; border-radius: 22px; }
  .feature-copy { padding: 36px 24px 14px; }
  .feature h3 { font-size: clamp(36px, 11vw, 46px); }
  .feature-copy > p:not(.feature-kicker) { font-size: 16px; }
  .screen-pair { min-height: 550px; }
  .pair-screen { width: 240px; }
  .pair-screen-back { left: -9%; top: 70px; }
  .pair-screen-front { right: -8%; top: 26px; }
  .single-screen-wrap { min-height: 570px; }
  .single-screen { width: 280px; transform: translateY(60px) rotate(-2deg); }
  .feature-stat { grid-template-columns: 1fr; gap: 8px; }
  .import-inner { gap: 50px; }
  .import-visual { min-height: 560px; }
  .app-screen-import { width: min(100%, 350px); border-radius: 24px; }
  .import-glow { width: 330px; height: 330px; }
  .source-list article { grid-template-columns: 44px 1fr; gap: 12px; padding: 13px; }
  .source-mark { width: 44px; height: 44px; }
  .source-status { grid-column: 2; width: max-content; margin-top: -4px; }
  .privacy-note { font-size: 13px; }
  .themes { gap: 54px; }
  .themes-visual { grid-template-columns: 1fr 1fr; gap: 12px; }
  .theme-card { padding: 10px; border-radius: 19px; }
  .theme-card-secondary { transform: translateY(22px); }
  .theme-shot { border-radius: 14px; box-shadow: none; }
  .theme-card > div:last-child { padding: 13px 2px 3px; }
  .theme-card h3 { font-size: 16px; }
  .detail-grid { margin-top: 50px; }
  .detail-card { min-height: 0; grid-template-columns: 1fr; padding: 20px; gap: 26px; }
  .detail-screen { width: min(100%, 300px); margin-inline: auto; }
  .detail-copy { padding: 0 4px 8px; }
  .detail-copy h3 { font-size: 31px; }
  .early-access { min-height: auto; padding-block: 88px; }
  .install-steps li { grid-template-columns: 42px 1fr; gap: 14px; }
  .faq summary { min-height: 78px; font-size: 17px; }
  .faq details p { font-size: 15px; }
  .final-cta { min-height: 620px; }
  .final-actions { width: 100%; }
  .footer-top { grid-template-columns: 1fr; gap: 26px; }
  .footer-top > p { grid-column: auto; grid-row: auto; }
  .legal-note { grid-template-columns: 1fr; gap: 20px; font-size: 12px; }
}

@media (max-width: 380px) {
  .brand span { letter-spacing: .22em; }
  .header-download { padding-inline: 11px; }
  .hero-screen-back { width: 205px; }
  .hero-screen-front { width: 232px; }
  .screen-pair { min-height: 510px; }
  .pair-screen { width: 224px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
