:root {
  color-scheme: light;
  --ink: #102033;
  --ink-soft: #34475c;
  --muted: #5d6e80;
  --line: rgba(15, 35, 56, 0.14);
  --panel: #ffffff;
  --panel-soft: #f1f8fa;
  --cyan: #00d9f5;
  --teal: #19d3bd;
  --blue: #1459b8;
  --violet: #7d62ff;
  --magenta: #b23bf2;
  --sand: #f4c362;
  --navy: #061329;
  --deep: #020918;
  --success: #087a63;
  --warning: #875b00;
  --shadow: 0 24px 60px rgba(6, 19, 41, 0.12);
  --card-shadow: 0 16px 42px rgba(9, 31, 58, 0.09);
  --card-border: rgba(20, 89, 184, 0.16);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 13px;
  --section-space: clamp(58px, 8vw, 98px);
  --content: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f8fbfd;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 85% 12%, rgba(178, 59, 242, 0.08), transparent 24rem),
    radial-gradient(circle at 10% 34%, rgba(0, 217, 245, 0.08), transparent 25rem),
    #f8fbfd;
  content: "";
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

a {
  color: var(--blue);
  text-underline-offset: 0.18em;
}

button,
input {
  font: inherit;
}

:focus-visible {
  outline: 3px solid #ffc247;
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  translate: 0 -180%;
  border-radius: 10px;
  padding: 10px 14px;
  background: #ffffff;
  color: var(--navy);
  font-weight: 900;
  text-decoration: none;
}

.skip-link:focus {
  translate: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(3, 11, 27, 0.95);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.header-inner {
  position: relative;
  display: flex;
  width: min(var(--content), calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 950;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 217, 245, 0.18);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.83rem;
  font-weight: 800;
}

.site-nav a {
  border-radius: 999px;
  padding: 9px 9px;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.nav-toggle {
  display: none;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-weight: 900;
  cursor: pointer;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(115deg, rgba(2, 9, 24, 0.98), rgba(5, 17, 45, 0.93) 55%, rgba(40, 18, 79, 0.9)),
    var(--deep);
}

.hero::before,
.page-hero::before {
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(circle at 78% 42%, rgba(0, 217, 245, 0.28), transparent 23%),
    radial-gradient(circle at 71% 55%, rgba(178, 59, 242, 0.35), transparent 28%),
    radial-gradient(circle at 90% 82%, rgba(25, 211, 189, 0.2), transparent 18%);
  content: "";
  transform: rotate(-4deg);
}

.hero-inner,
.page-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(var(--content), calc(100% - 32px));
  margin: 0 auto;
  align-items: center;
  gap: clamp(32px, 7vw, 88px);
}

.hero-inner {
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  min-height: 610px;
  padding: 72px 0 82px;
}

.page-hero-inner {
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.42fr);
  min-height: 360px;
  padding: 66px 0 72px;
}

.page-hero-inner > *,
.split > *,
.live-panel > * {
  min-width: 0;
  max-width: 100%;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  border: 1px solid rgba(0, 217, 245, 0.48);
  border-radius: 999px;
  padding: 7px 11px;
  color: #9cf6ff;
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.07em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section:not(.section-dark) .eyebrow {
  color: var(--blue);
}

.hero h1,
.page-hero h1 {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(3.15rem, 8vw, 6.6rem);
  font-weight: 950;
  letter-spacing: -0.065em;
  line-height: 0.91;
}

.page-hero h1 {
  width: 100%;
  max-width: 18ch;
  font-size: clamp(2.65rem, 6vw, 5.1rem);
  line-height: 0.96;
  overflow-wrap: anywhere;
}

.hero .lead,
.page-hero .lead {
  width: 100%;
  max-width: 64ch;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 1.7vw, 1.24rem);
}

.hero-art {
  position: relative;
  min-height: 520px;
}

.hero-art img {
  height: auto;
  object-fit: contain;
}

.hero-art-phone {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: min(250px, 54%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 30px 72px rgba(0, 0, 0, 0.42), 0 0 34px rgba(0, 217, 245, 0.12);
}

.hero-art-podium {
  position: absolute;
  right: 0;
  bottom: 18px;
  z-index: 1;
  width: min(340px, 72%);
  border-radius: 28px;
  box-shadow: 0 34px 74px rgba(0, 0, 0, 0.38), 0 0 42px rgba(178, 59, 242, 0.18);
}

.hero-symbol {
  display: grid;
  place-items: center;
}

.hero-symbol img {
  width: min(250px, 62vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 50px rgba(0, 217, 245, 0.26));
}

.circuit-symbol img {
  width: min(300px, 66vw);
  filter: drop-shadow(0 0 30px rgba(0, 217, 245, 0.24)) drop-shadow(0 30px 46px rgba(4, 8, 28, 0.5));
}

.hero-device img {
  width: min(224px, 56vw);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.42), 0 0 42px rgba(0, 217, 245, 0.16);
  filter: none;
}

.page-hero--quiet .page-hero-inner {
  grid-template-columns: minmax(0, 860px);
  min-height: 300px;
}

.actions,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 13px;
  padding: 11px 16px;
  font-size: 0.9rem;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.button-store {
  gap: 10px;
}

.store-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  object-fit: contain;
}

.store-icon-apple {
  filter: brightness(0) invert(1);
}

.button-primary {
  background: linear-gradient(90deg, var(--teal), var(--cyan) 54%, var(--violet));
  box-shadow: 0 14px 35px rgba(0, 217, 245, 0.18);
  color: var(--deep);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.button-dark {
  background: var(--navy);
  color: #ffffff;
}

.button-light {
  border-color: var(--line);
  background: #ffffff;
  color: var(--ink);
}

.tag,
.badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.03em;
  line-height: 1.2;
  text-transform: uppercase;
}

.tag {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
}

.badge-free {
  background: #dff9f2;
  color: #075b4c;
}

.badge-pro {
  background: #f0e8ff;
  color: #5924a8;
}

.badge-local {
  background: #e3f2ff;
  color: #124f85;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.breadcrumb {
  width: min(var(--content), calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb li + li::before {
  margin-right: 7px;
  color: #99a7b5;
  content: "/";
}

.section {
  padding: var(--section-space) 0;
}

.section-compact {
  padding: 46px 0;
}

.section-dark {
  background: linear-gradient(135deg, #031127, #0d1231 55%, #1b1039);
  color: #ffffff;
}

.section-dark a:not(.button) {
  color: #9cf6ff;
}

.section-tint {
  background: linear-gradient(120deg, rgba(0, 217, 245, 0.07), rgba(178, 59, 242, 0.06));
}

.container {
  width: min(var(--content), calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  width: min(820px, calc(100% - 32px));
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2,
.content-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.section-heading p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.section-dark .section-heading p,
.section-dark .muted {
  color: rgba(255, 255, 255, 0.72);
}

.grid {
  display: grid;
  gap: 18px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: clamp(21px, 3vw, 30px);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(245, 251, 255, 0.96));
  box-shadow: var(--card-shadow);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.card h2,
.card h3 {
  margin: 14px 0 8px;
  line-height: 1.18;
}

.card h2 {
  font-size: 1.45rem;
}

.card h3 {
  font-size: 1.15rem;
}

.card p,
.card li {
  color: var(--ink-soft);
}

.card p:last-child,
.card ul:last-child {
  margin-bottom: 0;
}

.card-visual {
  overflow: hidden;
  padding: 0;
}

.card-visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.format-catalog {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.format-card {
  grid-column: span 2;
}

.format-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.format-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.format-card > img {
  height: 230px;
  padding: 18px;
  background: linear-gradient(140deg, rgba(0, 217, 245, 0.08), rgba(125, 98, 255, 0.1));
  object-fit: contain;
}

.format-symbol-grid {
  gap: 12px;
  align-self: center;
  align-items: center;
}

.format-symbol-grid img {
  width: 100%;
  max-width: 190px;
  height: auto;
  aspect-ratio: 1;
  justify-self: center;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 12px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--card-shadow);
}

.card-visual-body {
  padding: 22px;
}

.card-dark {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.card-span-all {
  grid-column: 1 / -1;
}

.card-upcoming {
  border-color: rgba(125, 98, 255, 0.26);
  background: linear-gradient(120deg, rgba(240, 248, 255, 0.98), rgba(246, 239, 255, 0.98));
}

.card-dark.card-upcoming {
  border-color: rgba(156, 246, 255, 0.24);
  background: linear-gradient(115deg, rgba(0, 217, 245, 0.12), rgba(125, 98, 255, 0.16));
}

.circuit-art {
  width: min(390px, 80vw);
  margin-inline: auto;
  filter: drop-shadow(0 0 28px rgba(0, 217, 245, 0.2)) drop-shadow(0 28px 44px rgba(0, 0, 0, 0.38));
}

.card-dark p,
.card-dark li {
  color: rgba(255, 255, 255, 0.76);
}

.feature-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 217, 245, 0.18), rgba(118, 87, 255, 0.18));
  color: #145f7d;
  font-size: 1.25rem;
  font-weight: 950;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: clamp(32px, 7vw, 82px);
  align-items: center;
}

.split-reverse > :first-child {
  order: 2;
}

.check-list,
.plain-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  margin-top: 10px;
  padding-left: 30px;
}

.check-list li::before {
  position: absolute;
  top: 0.1em;
  left: 0;
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  background: #dff9f2;
  color: var(--success);
  content: "✓";
  font-size: 0.78rem;
  font-weight: 950;
}

.plain-list li::before {
  position: absolute;
  top: 0.63em;
  left: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  content: "";
}

.live-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 28px;
  align-items: end;
  border: 1px solid rgba(38, 111, 240, 0.15);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 5vw, 46px);
  background: linear-gradient(120deg, #ffffff, #eafffb 54%, #f3eaff);
  box-shadow: var(--shadow);
}

.live-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

.live-form {
  display: grid;
  gap: 10px;
}

.live-form label {
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.live-form input {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 11px 13px;
  background: #ffffff;
  color: var(--ink);
  text-transform: uppercase;
}

.live-form .button {
  border: 0;
  cursor: pointer;
}

.notice {
  border-left: 5px solid var(--cyan);
  border-radius: 0 15px 15px 0;
  padding: 18px 20px;
  background: #eafcff;
  color: var(--ink-soft);
}

.notice-warning {
  border-left-color: var(--sand);
  background: #fff9e9;
}

.notice strong {
  color: var(--ink);
}

.steps {
  counter-reset: steps;
}

.step {
  position: relative;
  padding-left: 66px;
}

.step::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  color: var(--deep);
  content: counter(steps);
  counter-increment: steps;
  font-size: 1.05rem;
  font-weight: 950;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 0 20px;
  background: #ffffff;
}

.technical-details {
  margin: 18px 0;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 0 14px;
  background: rgba(227, 242, 255, 0.58);
}

.technical-details summary {
  padding: 12px 24px 12px 0;
  color: var(--blue);
  font-weight: 850;
  cursor: pointer;
}

.technical-details p {
  margin: 0 0 14px;
  font-size: 0.92rem;
}

.faq-list summary {
  padding: 18px 34px 18px 0;
  font-weight: 900;
  cursor: pointer;
}

.faq-list details p {
  margin: -2px 0 20px;
  color: var(--ink-soft);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 250px) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 96px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.94);
}

.legal-nav strong {
  display: block;
  margin-bottom: 8px;
}

.legal-nav a {
  display: block;
  border-radius: 8px;
  padding: 5px 7px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  text-decoration: none;
}

.legal-nav a:hover {
  background: var(--panel-soft);
  color: var(--blue);
}

.legal-nav-mobile {
  display: none;
}

.back-to-top {
  display: inline-flex;
  margin-top: 30px;
  border: 1px solid var(--card-border);
  border-radius: 999px;
  padding: 8px 13px;
  background: var(--panel-soft);
  color: var(--blue);
  font-weight: 850;
  text-decoration: none;
}

.legal-article {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 5vw, 54px);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.legal-article h2 {
  margin: 46px 0 12px;
  font-size: 1.5rem;
  line-height: 1.2;
  scroll-margin-top: 100px;
}

.legal-article h2:first-of-type {
  margin-top: 30px;
}

.legal-article h3 {
  margin: 24px 0 8px;
  font-size: 1.08rem;
}

.legal-article p,
.legal-article li {
  color: var(--ink-soft);
}

.legal-meta {
  display: grid;
  gap: 4px;
  margin: 20px 0 28px;
  border-radius: 14px;
  padding: 16px 18px;
  background: var(--panel-soft);
  color: var(--ink-soft);
}

.table-wrap {
  overflow-x: auto;
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 15px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 13px 15px;
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--panel-soft);
  color: var(--ink);
  font-size: 0.82rem;
}

td {
  color: var(--ink-soft);
}

tr:last-child td {
  border-bottom: 0;
}

.site-footer {
  background: var(--deep);
  color: rgba(255, 255, 255, 0.76);
}

.footer-inner {
  display: grid;
  width: min(var(--content), calc(100% - 32px));
  margin: 0 auto;
  grid-template-columns: minmax(220px, 1.2fr) repeat(3, minmax(150px, 0.62fr));
  gap: 34px;
  padding: 52px 0 36px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-weight: 950;
  text-decoration: none;
}

.footer-brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

.footer-column strong {
  display: block;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 0.9rem;
}

.footer-column a {
  display: block;
  width: fit-content;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--cyan);
}

.footer-bottom {
  width: min(var(--content), calc(100% - 32px));
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 0 28px;
  font-size: 0.78rem;
}

@media (hover: hover) and (pointer: fine) {
  .card:not(.card-dark):hover {
    border-color: rgba(0, 151, 190, 0.3);
    box-shadow: 0 20px 50px rgba(9, 31, 58, 0.12);
    transform: translateY(-2px);
  }
}

.empty-state {
  display: grid;
  min-height: calc(100vh - 72px);
  place-items: center;
  padding: 64px 16px;
  background:
    radial-gradient(circle at 50% 34%, rgba(0, 217, 245, 0.2), transparent 16rem),
    linear-gradient(140deg, var(--deep), #11133d);
  color: #ffffff;
  text-align: center;
}

.empty-state img {
  width: 120px;
  margin: 0 auto 24px;
}

.empty-state h1 {
  margin: 0;
  font-size: clamp(3.4rem, 13vw, 8rem);
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.empty-state p {
  max-width: 560px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.76);
}

.muted {
  color: var(--muted);
}

.small {
  font-size: 0.86rem;
}

.no-margin {
  margin: 0;
}

@media (max-width: 1040px) {
  .site-nav {
    font-size: 0.76rem;
  }

  .site-nav a {
    padding-inline: 6px;
  }

  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .format-catalog {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .format-card,
  .format-card:nth-child(4),
  .format-card:nth-child(5) {
    grid-column: auto;
  }

  .format-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - 92px);
    overflow-y: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    padding: 10px;
    background: rgba(3, 11, 27, 0.99);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.32);
    font-size: 0.88rem;
  }

  .site-nav[data-open="true"] {
    display: grid;
  }

  .site-nav a {
    padding: 11px;
    white-space: normal;
  }

  .hero-inner,
  .page-hero-inner,
  .split,
  .live-panel,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
    padding: 74px 0;
  }

  .page-hero-inner {
    min-height: auto;
    padding: 58px 0;
  }

  .hero-art {
    width: min(620px, 100%);
    max-width: 620px;
    min-height: 480px;
    margin-inline: auto;
  }

  .hero-art-phone {
    left: 8%;
    width: min(250px, 46%);
  }

  .hero-art-podium {
    right: 5%;
    bottom: 0;
    width: min(330px, 62%);
  }

  .hero-symbol {
    display: none;
  }

  .legal-nav-desktop {
    display: none;
  }

  .legal-nav-mobile {
    display: block;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    background: #ffffff;
    box-shadow: var(--card-shadow);
  }

  .legal-nav-mobile summary {
    padding: 16px 18px;
    color: var(--ink);
    font-weight: 900;
    cursor: pointer;
  }

  .legal-nav-mobile nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2px;
    border-top: 1px solid var(--line);
    padding: 12px;
  }

  .legal-nav-mobile a {
    border-radius: 8px;
    padding: 7px 8px;
    color: var(--ink-soft);
    font-size: 0.88rem;
    text-decoration: none;
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 650px) {
  .header-inner,
  .container,
  .breadcrumb,
  .hero-inner,
  .page-hero-inner,
  .footer-inner,
  .footer-bottom,
  .narrow {
    width: min(100% - 24px, var(--content));
  }

  .hero h1 {
    font-size: clamp(3.25rem, 18vw, 5.2rem);
  }

  .page-hero h1 {
    font-size: clamp(2.25rem, 11vw, 3.6rem);
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .format-catalog {
    grid-template-columns: 1fr;
  }

  .format-card:last-child {
    grid-column: auto;
  }

  .rules-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .format-symbol-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .format-card > img {
    height: 190px;
  }

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

  .hero-art {
    display: grid;
    width: min(310px, 82vw);
    min-height: 0;
    place-items: center;
  }

  .hero-art-phone {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
  }

  .hero-art-podium {
    display: none;
  }

  .actions .button {
    width: 100%;
  }

  .live-panel {
    padding: 24px 18px;
  }

  .legal-nav-mobile nav {
    grid-template-columns: 1fr;
  }

  .legal-article {
    border-radius: 18px;
    padding: 24px 18px;
  }

  .step {
    padding-left: 58px;
  }

  .site-footer .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 18px;
    padding: 34px 0 24px;
  }

  .site-footer .footer-column:first-child,
  .site-footer .footer-column:last-child {
    grid-column: 1 / -1;
  }

  .footer-column strong {
    margin-bottom: 6px;
  }

  .footer-column a {
    margin-top: 5px;
  }

  .footer-bottom {
    padding: 15px 0 20px;
  }
}

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

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