@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("./public/montserrat-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

.analytics-consent {
  position: fixed;
  z-index: 1000;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 20px 22px;
  color: #fff;
  background: rgba(8, 15, 28, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(0, 20, 56, 0.34);
  backdrop-filter: blur(20px);
}

.analytics-consent__copy { max-width: 700px; }
.analytics-consent__copy strong { display: block; margin-bottom: 5px; font-size: 16px; }
.analytics-consent__copy p { margin: 0; color: rgba(255, 255, 255, 0.72); font-size: 13px; line-height: 1.5; }
.analytics-consent__copy a { color: #70b5ff; font-size: 13px; }
.analytics-consent__actions { display: flex; flex: none; gap: 10px; }
.analytics-consent button {
  min-height: 44px;
  padding: 0 18px;
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  cursor: pointer;
}
.analytics-consent button.is-primary { color: #06111f; background: #fff; border-color: #fff; }
.analytics-consent button:focus-visible { outline: 3px solid #1684ff; outline-offset: 3px; }

@media (max-width: 720px) {
  .analytics-consent { right: 12px; bottom: 12px; left: 12px; display: block; padding: 18px; border-radius: 20px; }
  .analytics-consent__actions { display: grid; margin-top: 16px; }
  .analytics-consent button { width: 100%; }
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("./public/montserrat-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("./public/montserrat-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  color-scheme: light;
  --page: #f3f7ff;
  --surface: #ffffff;
  --ink: #111214;
  --muted: #566174;
  --blue: #0a84ff;
  --blue-deep: #0065db;
  --cyan: #5ac8fa;
  --line: rgba(17, 18, 20, 0.1);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --gutter: clamp(20px, 3.35vw, 48px);
  --radius: 24px;
  --shadow: 0 18px 50px rgba(24, 45, 78, 0.1);
}

* {
  box-sizing: border-box;
}

[hidden] { display: none !important; }

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

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--page);
  color: var(--ink);
  font-family: "Montserrat", Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  transition: background-color 1.25s var(--ease), color 1.05s var(--ease);
}

body.theme-ice { background: #f3f7ff; color: #111214; }
body.theme-blue-mist { background: #eef6ff; color: #111214; }
body.theme-dark { background: #020307; color: #f5f8ff; }

a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
img { display: block; max-width: 100%; }
svg { display: block; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.9; }

:focus-visible {
  outline: 3px solid rgba(10, 132, 255, 0.72);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  background: #fff;
  color: #111214;
  box-shadow: var(--shadow);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 100;
  top: 24px;
  left: var(--gutter);
  display: grid;
  width: calc(100% - var(--gutter) * 2);
  height: 60px;
  align-items: center;
  grid-template-columns: 1fr auto 1fr;
  pointer-events: none;
  transition: color 1s var(--ease);
}

.site-header > * { pointer-events: auto; }

.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 9px;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.055em;
}

.brand img {
  width: 31px;
  height: 31px;
  object-fit: contain;
  transition: filter 1s var(--ease), opacity 1s var(--ease);
}

.desktop-nav {
  display: flex;
  min-height: 60px;
  padding: 8px 14px;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(17, 18, 20, 0.06);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 36px rgba(26, 39, 60, 0.08);
  transition: color 1s var(--ease), background-color 1s var(--ease), border-color 1s var(--ease), box-shadow 1s var(--ease);
}

.desktop-nav a {
  padding: 13px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: -0.02em;
  transition: background-color 0.4s var(--ease), transform 0.4s var(--ease);
}

.desktop-nav a.is-current { background: rgba(10,132,255,.12); color: var(--blue-deep); }
body.theme-dark .desktop-nav a.is-current { background: rgba(255,255,255,.1); color: #fff; }

.desktop-nav a:hover { background: #edf4ff; transform: scale(0.985); }

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

.language-link {
  display: inline-grid;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  place-items: center;
  border: 1px solid rgba(17, 18, 20, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #111214;
  box-shadow: 0 10px 30px rgba(26, 39, 60, 0.08);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: transform 0.35s var(--ease), background-color 0.35s var(--ease), color 1s var(--ease);
}

.language-link:hover { background: #edf4ff; transform: translateY(-1px); }
.mobile-menu .language-menu-link { color: var(--blue-deep); }
body.theme-dark .language-link { border-color: rgba(255,255,255,.12); background: rgba(15,18,25,.82); color: #fff; }

.icon-button,
.rail-arrow {
  display: grid;
  flex: 0 0 auto;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(17, 18, 20, 0.06);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(26, 39, 60, 0.09);
  cursor: pointer;
  transition: transform 0.4s var(--ease), color 1s var(--ease), background-color 1s var(--ease), border-color 1s var(--ease), box-shadow 1s var(--ease);
}

body.theme-dark .site-header { color: #f7f9ff; }
body.theme-dark .brand img { filter: invert(1); }
body.theme-dark .desktop-nav {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(10, 12, 18, 0.84);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}
body.theme-dark .desktop-nav a:hover { background: rgba(255, 255, 255, 0.09); }
body.theme-dark .icon-button,
body.theme-dark .rail-arrow {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(15, 18, 25, 0.82);
  color: #fff;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.26);
}
body.theme-dark .header-download { color: #fff; background: var(--blue); }

.icon-button { width: 56px; height: 56px; }
.icon-button svg { width: 20px; height: 20px; }
.icon-button:hover, .rail-arrow:hover { transform: scale(0.96); background: #e7f3ff; }

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 25px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.025em;
  transition: transform 0.4s var(--ease), background-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.button svg { width: 18px; height: 18px; }
.button:hover { transform: scale(0.985); }
.button--blue { background: var(--blue-deep); color: white; box-shadow: 0 12px 28px rgba(10, 132, 255, 0.22); }
.button--blue:hover { background: #0054b8; }
.button--white { min-height: 60px; padding-inline: 30px; background: white; color: var(--blue-deep); box-shadow: 0 14px 34px rgba(0, 28, 68, 0.16); }
.button--white:hover { background: #e9f5ff; }
.header-download { min-width: 137px; }

.menu-button,
.mobile-menu { display: none; }

.hero {
  padding: 120px var(--gutter) 76px;
}

.hero-frame {
  position: relative;
  display: grid;
  width: 100%;
  min-height: min(72vw, calc(100svh - 160px));
  max-height: calc(100svh - 96px);
  overflow: hidden;
  place-items: center;
  border-radius: var(--radius);
  background: #0a84ff;
  isolation: isolate;
}

.hero-frame picture { display: contents; }

.hero-image {
  position: absolute;
  z-index: -3;
  inset: -2%;
  width: 104%;
  height: 104%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 1.2s var(--ease);
}

.hero-image.is-animated { animation: hero-breathe 12s ease-in-out infinite alternate; }

.hero-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 23, 62, 0.1), rgba(2, 23, 62, 0.26)),
    radial-gradient(circle at 42% 44%, rgba(0, 27, 84, 0.08), rgba(0, 18, 55, 0.28) 70%);
}

.hero-shade::after {
  position: absolute;
  inset: -30%;
  background: linear-gradient(112deg, transparent 35%, rgba(255, 255, 255, 0.25) 48%, transparent 60%);
  content: "";
  transform: translateX(-65%);
  animation: hero-sheen 9s var(--ease) infinite;
}

.hero-copy {
  display: flex;
  width: min(860px, calc(100% - 40px));
  align-items: center;
  flex-direction: column;
  color: white;
  text-align: center;
}

.hero-copy > p {
  margin: 0 0 20px;
  font-size: clamp(15px, 1.7vw, 24px);
  font-weight: 500;
  letter-spacing: -0.025em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(48px, 5.55vw, 80px);
  font-weight: 600;
  letter-spacing: -0.058em;
  line-height: 1.03;
  text-wrap: balance;
}

.hero-copy .button { margin-top: 34px; }

.chapter {
  display: flex;
  height: 100svh;
  min-height: 680px;
  padding: clamp(90px, 9.5vh, 112px) 0 clamp(24px, 3.4vh, 40px);
  flex-direction: column;
  transition: color 1.05s var(--ease);
}

.chapter-heading,
.rail-label {
  width: calc(100% - var(--gutter) * 2);
  margin-inline: auto;
}

.chapter-heading {
  display: flex;
  min-height: 0;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.chapter-heading h2 {
  max-width: 1120px;
  margin: 0;
  font-size: clamp(46px, 5.2vw, 82px);
  font-weight: 600;
  letter-spacing: -0.064em;
  line-height: 0.98;
}

.text-link {
  display: inline-flex;
  margin-bottom: 10px;
  align-items: center;
  gap: 8px;
  color: var(--blue-deep);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 1s var(--ease);
}

.text-link svg { width: 18px; height: 18px; transition: transform 0.4s var(--ease); }
.text-link:hover svg { transform: translateX(4px); }

.rail-block {
  display: flex;
  min-height: 0;
  margin-top: clamp(24px, 4vh, 44px);
  flex: 1;
  flex-direction: column;
}
.rail-label { display: flex; margin-bottom: clamp(12px, 1.8vh, 20px); align-items: center; justify-content: space-between; }
.rail-title { display: flex; align-items: baseline; gap: 14px; }
.rail-label h3 { margin: 0; font-size: 25px; font-weight: 600; letter-spacing: -0.045em; }
.rail-title p { margin: 0; color: var(--muted); font-size: 11px; transition: color 1s var(--ease); }
body.theme-dark .rail-title p { color: rgba(255,255,255,.58); }
.rail-controls { display: flex; gap: 8px; }
.rail-arrow { width: 48px; height: 48px; }
.rail-arrow svg { width: 19px; height: 19px; }

.product-rail {
  display: grid;
  min-height: 0;
  padding: 0 var(--gutter);
  overflow-x: auto;
  flex: 1;
  grid-auto-columns: minmax(300px, calc((100% - var(--gutter) * 2 - 48px) / 3));
  grid-auto-flow: column;
  gap: 24px;
  scroll-padding-left: var(--gutter);
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  touch-action: pan-x pan-y pinch-zoom;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
}

.product-rail::-webkit-scrollbar { display: none; }

.product-card {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: 520px;
  overflow: hidden;
  flex-direction: column;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  scroll-snap-align: start;
  transform: translateZ(0);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .product-card:hover { transform: scale(0.985); box-shadow: 0 20px 62px rgba(18, 35, 66, 0.16); }
}
.product-card.is-nav-target { box-shadow: 0 0 0 2px rgba(10,132,255,.9), 0 26px 74px rgba(10,132,255,.25); }
.card-visual { position: relative; min-height: 0; flex: 1; overflow: hidden; }

.card-caption {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 80px 24px 24px;
  background: linear-gradient(transparent, rgba(5, 8, 13, 0.94) 65%);
  color: white;
}

.card-caption h4 { margin: 0 0 8px; font-size: 18px; font-weight: 600; letter-spacing: -0.035em; }
.card-caption p { max-width: 320px; margin: 0; color: rgba(255,255,255,.82); font-size: 13px; line-height: 1.5; }
.card-site-link {
  display: inline-flex;
  margin-top: 13px;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-size: 12px;
  font-weight: 650;
  text-decoration: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.card-site-link:hover { opacity: .78; transform: translateX(2px); }
.card-site-link:focus-visible { outline: 2px solid #fff; outline-offset: 4px; border-radius: 2px; }
.flux-card-link { position: absolute; z-index: 8; inset: 0; border-radius: inherit; }
.flux-card-link:focus-visible { outline: 3px solid #fff; outline-offset: -6px; }

.mock-toolbar { display: flex; min-height: 62px; padding: 0 20px; align-items: center; gap: 12px; }
.mock-toolbar strong { margin-right: auto; font-size: 18px; }
.mock-toolbar strong:has(.ui-product-icon) { display: inline-flex; align-items: center; gap: 8px; }
.ui-product-icon { width: 24px; height: 24px; object-fit: contain; }
.mock-toolbar i { width: 18px; height: 18px; border: 1.5px solid currentColor; border-radius: 50%; opacity: .7; }
.mock-search, .store-search { margin: 0 18px 12px; padding: 12px 14px; border-radius: 12px; background: rgba(255,255,255,.15); color: rgba(255,255,255,.74); font-size: 12px; }
.mock-tabs { display: flex; padding: 0 18px 14px; gap: 7px; }
.mock-tabs span { padding: 7px 9px; border-radius: 999px; background: rgba(255,255,255,.13); font-size: 9px; }
.mock-tabs span:first-child { background: white; color: var(--blue); }

.card-chat { background: linear-gradient(150deg, #0077ff, #0659ce 58%, #03285e); }
.chat-ui { padding-top: 5px; color: white; }
.chat-row { display: flex; margin: 0 14px; padding: 14px 4px; align-items: center; gap: 11px; border-top: 1px solid rgba(255,255,255,.14); }
.chat-row > b, .feed-author > b { display: grid; width: 38px; height: 38px; flex: 0 0 auto; place-items: center; border-radius: 50%; background: rgba(255,255,255,.23); font-size: 12px; }
.chat-row p, .feed-author p { display: flex; min-width: 0; margin: 0; flex: 1; flex-direction: column; gap: 4px; }
.chat-row strong, .feed-author strong { font-size: 11px; }
.chat-row small, .feed-author small { overflow: hidden; opacity: .76; font-size: 9px; text-overflow: ellipsis; white-space: nowrap; }
.chat-row time { opacity: .7; font-size: 8px; }

.card-call { background: #090b0f; }
.call-ui { display: flex; padding: 18px 24px 140px; align-items: center; flex-direction: column; color: white; }
.call-ui > .mock-button { display: grid; width: 34px; height: 34px; align-self: flex-start; place-items: center; border-radius: 50%; background: rgba(255,255,255,.1); color: white; font-size: 20px; }
.call-ui > p { margin: -24px 0 5px; font-size: 16px; font-weight: 600; }
.call-ui > small { color: rgba(255,255,255,.56); }
.call-avatar { position: relative; z-index: 2; display: grid; width: 132px; height: 132px; margin-top: 42px; place-items: center; border: 4px solid #2a82ff; border-radius: 50%; background: linear-gradient(140deg,#b7e2ff,#1d58a9); box-shadow: 0 0 60px rgba(10,132,255,.45); }
.call-avatar span { font-size: 34px; font-weight: 600; }
.call-rings { position: absolute; top: 134px; left: 50%; width: 220px; height: 220px; transform: translateX(-50%); }
.call-rings i { position: absolute; inset: 0; border: 1px solid rgba(10,132,255,.38); border-radius: 50%; animation: ring-pulse 3s ease-out infinite; }
.call-rings i:nth-child(2) { inset: 22px; animation-delay: .8s; }
.call-rings i:nth-child(3) { inset: 44px; animation-delay: 1.6s; }
.call-actions { display: flex; margin-top: 58px; gap: 13px; }
.call-actions span { display: grid; width: 44px; height: 44px; place-items: center; border-radius: 50%; background: rgba(255,255,255,.12); font-size: 11px; }
.call-actions .hangup { background: #ff453a; font-size: 22px; }

.card-feed { background: #fff; color: #16243b; }
.feed-ui { padding-bottom: 130px; }
.feed-tabs { display: flex; padding: 0 20px 15px; gap: 18px; border-bottom: 1px solid #e2eaf4; font-size: 9px; }
.feed-tabs b { color: var(--blue); }
.feed-tabs span { color: #8a97a8; }
.feed-author { display: flex; padding: 16px 20px 12px; align-items: center; gap: 10px; }
.feed-author > b { background: linear-gradient(145deg,#5ac8fa,#0a84ff); color: white; }
.feed-photo { position: relative; height: 178px; margin: 0 18px; overflow: hidden; border-radius: 15px; background: linear-gradient(165deg,#e8f7ff,#5ac8fa 48%,#075db8 49%,#05294f); }
.feed-photo::before, .feed-photo::after { position: absolute; bottom: -16px; width: 78%; height: 80%; border-radius: 55% 45% 0 0; background: #163d65; content: ""; transform: rotate(10deg); }
.feed-photo::after { right: -18%; height: 60%; background: #0e84c7; transform: rotate(-10deg); }
.feed-actions { padding: 14px 20px; color: #5a687b; font-size: 10px; }

.card-match { background: linear-gradient(145deg,#f9fcff,#d9f1ff); color: #122038; }
.match-ui { display: flex; padding: 58px 24px 150px; align-items: center; flex-direction: column; text-align: center; }
.match-orbit { position: relative; display: grid; width: 170px; height: 170px; place-items: center; border: 1px solid rgba(10,132,255,.25); border-radius: 50%; }
.match-orbit::before { position: absolute; inset: 24px; border: 1px solid rgba(10,132,255,.35); border-radius: 50%; content: ""; }
.match-orbit span { display: grid; z-index: 2; width: 92px; height: 92px; padding: 22px; place-items: center; border-radius: 50%; background: white; box-shadow: 0 12px 30px rgba(0,80,180,.18); }
.match-orbit span img { width: 100%; height: 100%; object-fit: contain; }
.match-orbit i { position: absolute; width: 20px; height: 20px; border-radius: 50%; background: var(--blue); animation: orbit 6s linear infinite; }
.match-orbit i:nth-child(2) { transform: translate(82px); }
.match-orbit i:nth-child(3) { animation-delay: -2s; transform: translate(-72px,35px); background: var(--cyan); }
.match-orbit i:nth-child(4) { animation-delay: -4s; transform: translate(20px,-82px); background: #111; }
.match-ui h5 { margin: 24px 0 8px; font-size: 19px; }
.match-ui p { margin: 0; color: #637188; font-size: 11px; line-height: 1.5; }
.match-ui > div:last-child { display: flex; margin-top: 20px; gap: 8px; }
.match-ui .mock-button { padding: 10px 12px; border-radius: 999px; background: #e9f1fb; color: #637188; font-size: 9px; }
.match-ui .mock-button:last-child { background: var(--blue); color: white; }

.card-store { background: linear-gradient(160deg,#148cff,#d9efff 55%,#fff); color: #172239; }
.store-ui { margin: 28px 22px 0; border-radius: 20px 20px 0 0; background: rgba(255,255,255,.92); box-shadow: 0 24px 50px rgba(0,61,144,.2); }
.store-ui .mock-toolbar { min-height: 54px; }
.store-search { background: #edf4fa; color: #8491a3; }
.store-product { display: flex; margin: 18px; padding: 15px; gap: 14px; border-radius: 16px; background: #f0f4f8; }
.headphones { display: grid; width: 96px; height: 120px; place-items: center; border-radius: 12px; background: linear-gradient(145deg,#fff,#c6d4e4); color: #506884; font-size: 64px; }
.store-product p { display: flex; margin: 4px 0; flex-direction: column; gap: 12px; font-size: 10px; }
.store-product b { font-size: 16px; }
.store-product .mock-button { padding: 9px; border-radius: 999px; background: var(--blue); color: white; font-size: 9px; text-align: center; }

.card-business { background: linear-gradient(#f9fbff,#ddeaff); color: #16243a; }
.business-ui { display: grid; height: 75%; margin: 30px 18px 0; grid-template-columns: 37% 1fr; overflow: hidden; border-radius: 18px 18px 0 0; background: white; box-shadow: 0 24px 50px rgba(32,70,123,.15); }
.business-ui aside { display: flex; padding: 20px 12px; flex-direction: column; gap: 17px; border-right: 1px solid #e2e9f2; font-size: 8px; }
.business-ui aside b { margin-bottom: 8px; font-size: 11px; }
.business-ui aside span:first-of-type { padding: 9px; border-radius: 8px; background: #dbeeff; color: var(--blue-deep); }
.business-panel { display: flex; padding: 60px 15px; flex-direction: column; }
.business-panel small { color: #748096; }
.business-panel strong { margin-top: 7px; font-size: 30px; }
.business-panel em { color: #31a26a; font-size: 10px; font-style: normal; }
.business-panel svg { width: 100%; margin-top: 28px; overflow: visible; stroke: var(--blue); stroke-width: 4; }

.card-partners { background: #031126; }
.partners-ui { padding: 46px 28px 150px; color: white; }
.partners-ui h5 { position: relative; z-index: 2; margin: 125px 0 8px; font-size: 23px; }
.partners-ui p { position: relative; z-index: 2; margin: 0 0 20px; font-size: 13px; }
.partners-ui ul { position: relative; z-index: 2; padding: 0; list-style: none; }
.partners-ui li { margin: 10px 0; color: rgba(255,255,255,.78); font-size: 11px; }
.partners-ui li::before { margin-right: 8px; color: var(--cyan); content: "→"; }
.partner-globe { position: absolute; top: -90px; right: -90px; width: 330px; height: 330px; border: 2px solid rgba(90,200,250,.55); border-radius: 50%; background: radial-gradient(circle at 28% 30%,#0a84ff,#042959 38%,#010713 70%); box-shadow: 0 0 70px rgba(10,132,255,.32); animation: globe-drift 8s ease-in-out infinite alternate; }
.partner-globe i { position: absolute; inset: 25%; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; }
.partner-globe i:nth-child(2) { inset: 7% 38%; }
.partner-globe i:nth-child(3) { inset: 38% 7%; }

.card-nx1, .card-flux, .card-fluxcast { background: #061224; }
.chip-ui { display: grid; place-items: center; background: radial-gradient(circle at 50% 40%,#0b64bd,#020914 68%); perspective: 800px; }
.chip { position: relative; display: grid; width: 58%; aspect-ratio: 1.45; place-items: center; border: 1px solid #4bbdff; border-radius: 14px; background: linear-gradient(145deg,#1a314c,#020811); box-shadow: 0 0 44px rgba(10,132,255,.7), inset 0 1px 0 rgba(255,255,255,.3); color: white; transform: rotateX(58deg) rotateZ(-18deg); transition: transform 1.2s var(--ease); }
.product-card.is-active .chip { transform: rotateX(54deg) rotateZ(-10deg) translateY(-8px); }
.chip img { width: 33%; filter: invert(1); }
.chip span { position: absolute; right: 10%; bottom: 10%; left: 10%; height: 3px; background: var(--blue); box-shadow: 0 0 15px var(--cyan); }
.chip-lines { position: absolute; right: 12%; bottom: 23%; left: 12%; height: 1px; background: var(--blue); box-shadow: 0 -35px 0 rgba(90,200,250,.42),0 35px 0 rgba(90,200,250,.42); }

.flux-ui { background: linear-gradient(165deg,#edf9ff,#70cfff 48%,#083c78); }
.flux-path { position: absolute; width: 130%; height: 150px; border: 2px solid rgba(2,69,151,.5); border-color: rgba(2,69,151,.5) transparent transparent; border-radius: 50%; }
.flux-path.p1 { top: 22%; left: -15%; transform: rotate(16deg); }
.flux-path.p2 { top: 35%; left: -12%; transform: rotate(-12deg); }
.flux-path.p3 { top: 48%; left: -18%; transform: rotate(25deg); }
.flux-ui i { position: absolute; width: 24px; height: 24px; border-radius: 50%; background: var(--blue); box-shadow: 0 8px 18px rgba(0,73,165,.35); animation: flux-float 4s ease-in-out infinite alternate; }
.flux-ui i:nth-of-type(1) { top: 28%; left: 13%; }
.flux-ui i:nth-of-type(2) { top: 52%; left: 35%; animation-delay: -.8s; }
.flux-ui i:nth-of-type(3) { top: 20%; left: 58%; animation-delay: -1.6s; }
.flux-ui i:nth-of-type(4) { top: 43%; left: 78%; animation-delay: -2.4s; }
.flux-ui i:nth-of-type(5) { top: 65%; left: 61%; animation-delay: -3.2s; }

.fluxcast-ui { display: grid; place-items: center; background: radial-gradient(circle,#68ceff,#e9f8ff 42%,#257ecd 74%,#061224); }
.broadcast-core { position: relative; z-index: 2; width: 76px; height: 76px; border-radius: 50%; background: radial-gradient(circle at 30% 25%,#d9f8ff,#0a84ff 46%,#031a36 76%); box-shadow: 0 16px 44px rgba(0,65,150,.5); }
.fluxcast-ui i { position: absolute; width: 100px; height: 100px; border: 2px solid rgba(10,72,160,.35); border-radius: 50%; animation: broadcast 3.6s var(--ease) infinite; }
.fluxcast-ui i:nth-child(3) { animation-delay: -.9s; }
.fluxcast-ui i:nth-child(4) { animation-delay: -1.8s; }
.fluxcast-ui i:nth-child(5) { animation-delay: -2.7s; }

.statement {
  position: relative;
  display: flex;
  min-height: 680px;
  padding: 110px var(--gutter);
  align-items: center;
  overflow: hidden;
  background: #000;
  color: white;
}

.statement::before { position: absolute; inset: 0; background: radial-gradient(circle at 78% 40%,rgba(10,132,255,.2),transparent 34%); content: ""; }
.statement-copy { position: relative; z-index: 2; width: 58%; }
.statement h2 { margin: 0; font-size: clamp(52px,6vw,86px); font-weight: 600; letter-spacing: -.065em; line-height: .98; }
.statement p { max-width: 550px; margin: 34px 0 0; color: rgba(255,255,255,.7); font-size: 17px; line-height: 1.55; }
.statement-orbits { position: absolute; right: 5%; width: 38vw; max-width: 540px; aspect-ratio: 1; }
.statement-orbits i { position: absolute; inset: 22%; border: 6px solid var(--blue); border-radius: 50%; box-shadow: 0 0 45px rgba(10,132,255,.42),inset 0 0 34px rgba(90,200,250,.25); transform: rotateX(64deg) rotateZ(10deg); animation: statement-spin 8s linear infinite; }
.statement-orbits i:nth-child(2) { inset: 8% 26%; border-color: var(--cyan); transform: rotateY(60deg) rotateZ(46deg); animation-direction: reverse; animation-duration: 11s; }
.statement-orbits i:nth-child(3) { inset: 28% 6%; border-color: #063a74; transform: rotateY(40deg) rotateZ(-30deg); animation-duration: 14s; }
.statement-orbits span { position: absolute; top: 42%; left: 43%; width: 16%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle at 30% 30%,white,var(--cyan) 18%,var(--blue) 45%,#021022 78%); box-shadow: 0 0 40px rgba(90,200,250,.6); }

.download { padding: 96px var(--gutter); background: var(--page); }
.download-copy { display: grid; align-items: center; grid-template-columns: 1.1fr 1fr auto; gap: 70px; }
.download h2 { margin: 0; font-size: clamp(48px,5.2vw,76px); font-weight: 600; letter-spacing: -.06em; line-height: .96; }
.download-copy > div:nth-child(2) p { max-width: 420px; margin: 0 0 24px; color: var(--muted); font-size: 14px; line-height: 1.55; }
.store-buttons { display: flex; flex-direction: column; gap: 8px; }
.store-link { display: flex; min-width: 170px; padding: 10px 18px; flex-direction: column; border-radius: 11px; background: #000; color: white; }
.store-link.is-unavailable { cursor: default; opacity: .52; }
.store-buttons small { font-size: 8px; text-transform: uppercase; }
.store-buttons strong { font-size: 17px; letter-spacing: -.03em; }

.footer {
  display: grid;
  padding: 50px var(--gutter) 74px;
  grid-template-columns: 2fr repeat(3,1fr);
  gap: 48px;
  border-top: 1px solid var(--line);
  background: var(--page);
}
.footer-brand { display: flex; min-height: 160px; justify-content: space-between; flex-direction: column; }
.footer-brand p { margin: 0; color: var(--muted); font-size: 10px; }
.footer-column { display: flex; flex-direction: column; gap: 10px; }
.footer-column h2 { margin: 0 0 8px; font-size: 12px; font-weight: 600; }
.footer-column a { color: var(--muted); font-size: 11px; }
.footer-column a:hover { color: var(--blue); }

.reveal { opacity: 1; transform: none; }
.js .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }
.product-card.reveal:nth-child(2) { transition-delay: .07s; }
.product-card.reveal:nth-child(3) { transition-delay: .14s; }
.product-card.reveal:nth-child(4) { transition-delay: .21s; }

.js #technology .chapter-heading.reveal,
.js #technology .rail-label.reveal {
  filter: blur(10px);
  transform: translate3d(0, 42px, 0) scale(.985);
  transition: opacity 1s var(--ease), transform 1.15s var(--ease), filter 1.05s var(--ease);
}

.js #technology .chapter-heading.reveal.is-visible,
.js #technology .rail-label.reveal.is-visible {
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

#technology .rail-label.reveal { transition-delay: .12s; }

.js #technology .product-card.reveal {
  opacity: 0;
  filter: blur(12px) saturate(.7);
  transform: translate3d(0, 64px, 0) scale(.955);
  transform-origin: 50% 100%;
  transition: opacity 1s var(--ease), transform 1.25s var(--ease), filter 1.15s var(--ease), box-shadow 1s var(--ease);
  will-change: opacity, transform, filter;
}

.js #technology .product-card.reveal.is-visible {
  opacity: 1;
  filter: blur(0) saturate(1);
  transform: translate3d(0, 0, 0) scale(1);
}

#technology .product-card.reveal:nth-child(1) { transition-delay: .14s; }
#technology .product-card.reveal:nth-child(2) { transition-delay: .26s; }
#technology .product-card.reveal:nth-child(3) { transition-delay: .38s; }

#technology .product-card .card-visual {
  transform: scale(1.055);
  transition: transform 1.8s var(--ease);
}

#technology .product-card.is-visible .card-visual { transform: scale(1); }

.js #technology .card-caption {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .9s var(--ease) .4s, transform 1s var(--ease) .4s;
}

.js #technology .product-card.is-visible .card-caption { opacity: 1; transform: translateY(0); }

.rail-controls.is-unavailable { visibility: hidden; }
.rail-arrow:disabled { cursor: default; opacity: .36; pointer-events: none; }

body.theme-dark #technology .text-link { color: #62b7ff; }
body.theme-dark #technology .product-card {
  box-shadow: 0 22px 70px rgba(0, 0, 0, .38), 0 0 0 1px rgba(255, 255, 255, .05);
}

@keyframes hero-breathe { to { transform: scale(1.07) translate3d(-.5%,.5%,0); } }
@keyframes hero-sheen { 0%,25% { transform: translateX(-65%); } 65%,100% { transform: translateX(65%); } }
@keyframes ring-pulse { 0% { opacity: .8; transform: scale(.65); } 100% { opacity: 0; transform: scale(1.25); } }
@keyframes orbit { to { rotate: 360deg; } }
@keyframes globe-drift { to { transform: rotate(8deg) translate(-8px,14px); } }
@keyframes flux-float { to { transform: translate(14px,-20px) scale(1.1); } }
@keyframes broadcast { 0% { opacity: .8; transform: scale(.5); } 100% { opacity: 0; transform: scale(3.4); } }
@keyframes statement-spin { to { rotate: 360deg; } }

@media (max-width: 1100px) {
  .desktop-nav a { padding-inline: 8px; font-size: 10px; }
  .product-rail { grid-auto-columns: minmax(300px, calc((100% - var(--gutter) * 2 - 24px) / 2)); gap: 24px; }
  .download-copy { grid-template-columns: 1fr 1fr; }
  .store-buttons { grid-column: 2; }
}

@media (max-width: 900px) {
  .site-header::before {
    position: fixed;
    z-index: -1;
    top: 0;
    right: 0;
    left: 0;
    height: 126px;
    background: linear-gradient(180deg, #f3f7ff 76%, rgba(243,247,255,0));
    content: "";
    pointer-events: none;
  }
  body.theme-blue-mist .site-header::before { background: linear-gradient(180deg, #eef6ff 76%, rgba(238,246,255,0)); }
  body.theme-dark .site-header::before { background: linear-gradient(180deg, #020307 76%, rgba(2,3,7,0)); }
  .site-header {
    top: 14px;
    left: 16px;
    width: calc(100% - 32px);
    height: 66px;
    padding: 7px 8px 7px 14px;
    grid-template-columns: 1fr auto;
    border: 1px solid rgba(17,18,20,.08);
    border-radius: 999px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 12px 34px rgba(20,36,60,.1);
  }
  .desktop-nav { display: none; }
  .header-actions > .language-link { display: none; }
  .menu-button { display: flex; width: 48px; height: 48px; padding: 13px; align-items: stretch; justify-content: center; flex-direction: column; gap: 5px; border: 0; border-radius: 50%; background: transparent; cursor: pointer; }
  .menu-button span { width: 100%; height: 2px; border-radius: 2px; background: #111214; transition: transform .4s var(--ease), opacity .2s; }
  .site-header.menu-open .menu-button span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .site-header.menu-open .menu-button span:nth-child(2) { opacity: 0; }
  .site-header.menu-open .menu-button span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-menu { position: absolute; top: 76px; right: 0; left: 0; display: flex; max-height: calc(100svh - 104px); padding: 14px; overflow-y: auto; flex-direction: column; border-radius: 24px; background: white; box-shadow: 0 20px 50px rgba(20,36,60,.15); opacity: 0; pointer-events: none; transform: translateY(-12px) scale(.98); transition: opacity .35s var(--ease),transform .35s var(--ease); }
  .site-header.menu-open .mobile-menu { opacity: 1; pointer-events: auto; transform: none; }
  .mobile-menu a { display: flex; padding: 11px 14px; flex-direction: column; gap: 3px; border-radius: 14px; font-size: 14px; font-weight: 600; }
  .mobile-menu small { color: var(--muted); font-size: 9px; font-weight: 500; line-height: 1.35; }
  body.theme-dark .site-header { border-color: rgba(255,255,255,.1); background: rgba(9,11,16,.9); box-shadow: 0 18px 46px rgba(0,0,0,.32); }
  body.theme-dark .menu-button span { background: #fff; }
  body.theme-dark .mobile-menu { border: 1px solid rgba(255,255,255,.1); background: rgba(9,11,16,.96); box-shadow: 0 24px 56px rgba(0,0,0,.38); }
  body.theme-dark .mobile-menu small { color: rgba(255,255,255,.58); }
}

@media (max-width: 767px) {
  :root { --gutter: 16px; --radius: 16px; }
  .site-header {
    top: 14px;
    left: 16px;
    width: calc(100% - 32px);
    height: 66px;
    padding: 7px 8px 7px 14px;
    grid-template-columns: 1fr auto;
    border: 1px solid rgba(17,18,20,.08);
    border-radius: 999px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 12px 34px rgba(20,36,60,.1);
  }
  body.theme-dark .site-header {
    border-color: rgba(255,255,255,.1);
    background: rgba(9,11,16,.9);
    box-shadow: 0 18px 46px rgba(0,0,0,.32);
  }
  body.theme-dark .menu-button span { background: #fff; }
  body.theme-dark .mobile-menu {
    border: 1px solid rgba(255,255,255,.1);
    background: rgba(9,11,16,.96);
    box-shadow: 0 24px 56px rgba(0,0,0,.38);
  }
  body.theme-dark .mobile-menu a:hover { background: rgba(255,255,255,.08); }
  .brand { font-size: 19px; }
  .brand img { width: 31px; height: 31px; }
  .header-actions { gap: 5px; }
  .header-download { min-width: 106px; min-height: 48px; padding: 0 17px; }
  .menu-button { display: flex; width: 48px; height: 48px; padding: 13px; align-items: stretch; justify-content: center; flex-direction: column; gap: 5px; border: 0; border-radius: 50%; background: transparent; cursor: pointer; }
  .menu-button span { width: 100%; height: 2px; border-radius: 2px; background: #111214; transition: transform .4s var(--ease), opacity .2s; }
  .site-header.menu-open .menu-button span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .site-header.menu-open .menu-button span:nth-child(2) { opacity: 0; }
  .site-header.menu-open .menu-button span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-menu { position: absolute; top: 76px; right: 0; left: 0; display: flex; padding: 14px; flex-direction: column; border-radius: 24px; background: white; box-shadow: 0 20px 50px rgba(20,36,60,.15); opacity: 0; pointer-events: none; transform: translateY(-12px) scale(.98); transition: opacity .35s var(--ease),transform .35s var(--ease); }
  .site-header.menu-open .mobile-menu { opacity: 1; pointer-events: auto; transform: none; }
  .mobile-menu { max-height: calc(100svh - 104px); overflow-y: auto; }
  .mobile-menu a { display: flex; padding: 11px 14px; flex-direction: column; gap: 3px; border-radius: 14px; font-size: 14px; font-weight: 600; }
  .mobile-menu small { color: var(--muted); font-size: 9px; font-weight: 500; line-height: 1.35; }
  body.theme-dark .mobile-menu small { color: rgba(255,255,255,.58); }
  .mobile-menu a:hover { background: #edf5ff; }

  .hero { padding: 96px 16px 48px; }
  .hero-frame { min-height: 0; max-height: none; aspect-ratio: 335 / 523; place-items: start; }
  .hero-image { inset: 0; width: 100%; height: 100%; object-position: 68% center; }
  .hero-shade { background: linear-gradient(180deg,rgba(0,26,76,.62) 0%,rgba(0,34,84,.14) 48%,rgba(0,16,46,.28) 100%); }
  .hero-copy { width: auto; padding: 34px 26px; align-items: flex-start; text-align: left; }
  .hero-copy > p { margin-bottom: 16px; font-size: 14px; line-height: 1.4; }
  .hero h1 { font-size: clamp(35px,9.5vw,44px); line-height: 1.06; }
  .hero-copy .button { min-height: 54px; margin-top: 26px; padding-inline: 22px; }

  .chapter { display: block; height: auto; min-height: auto; padding: 76px 0 94px; }
  .chapter-heading { min-height: 0; align-items: flex-start; flex-direction: column; gap: 22px; }
  .chapter-heading h2 { font-size: clamp(38px,11vw,52px); line-height: 1; }
  .text-link { align-self: flex-end; margin: 0; }
  .rail-block { margin-top: 54px; }
  .rail-label { margin-bottom: 20px; }
  .rail-title { align-items: flex-start; flex-direction: column; gap: 4px; }
  .rail-label h3 { font-size: 19px; }
  .rail-title p { font-size: 10px; }
  .rail-controls { display: none; }
  .product-rail { padding-right: 46px; grid-auto-columns: 84%; gap: 16px; }
  .product-card { height: auto; min-height: 0; aspect-ratio: .746 / 1; border-radius: 16px; }
  .card-caption { padding: 68px 18px 18px; }
  .card-caption h4 { font-size: 16px; }
  .card-caption p { font-size: 12px; }

  .statement { min-height: 620px; padding: 64px 24px; align-items: flex-start; }
  .statement-copy { z-index: 2; width: 100%; }
  .statement h2 { font-size: clamp(42px,12vw,58px); }
  .statement p { max-width: 320px; margin-top: 24px; font-size: 14px; }
  .statement-orbits { right: -16%; bottom: -3%; width: 90vw; }

  .download { padding: 68px 20px; }
  .download-copy { grid-template-columns: 1fr; gap: 30px; }
  .download h2 { font-size: 52px; }
  .download-copy > div:nth-child(2) p { font-size: 13px; }
  .store-buttons { grid-column: auto; flex-direction: row; }
  .store-link { min-width: 0; flex: 1; padding-inline: 13px; }
  .store-buttons strong { font-size: 14px; }

  .footer { padding: 36px 20px 54px; grid-template-columns: 1fr; gap: 0; }
  .footer-brand { min-height: 110px; margin-bottom: 18px; }
  .footer-column { padding: 18px 0; border-top: 1px solid var(--line); }
  .footer-column h2 { margin: 0; font-size: 13px; }
  .footer-column { gap: 9px; }
  .footer-column h2 { margin-bottom: 5px; }
  .footer-column a { display: block; font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  #technology .chapter-heading.reveal,
  #technology .rail-label.reveal,
  #technology .product-card.reveal,
  #technology .card-caption {
    opacity: 1;
    filter: none;
    transform: none;
  }
}
