/* =============================================
   Тема — фиолетовая cyber (откат: css/theme-blue-backup.css)
   ============================================= */
:root {
  --bg-base: #0a0510;
  --bg-gradient-1: rgba(124, 58, 237, 0.24);
  --bg-gradient-2: rgba(168, 85, 247, 0.16);
  --bg-section: #0d0618;
  --bg-gradient-top: #120820;
  --bg-gradient-bottom: #080412;
  --overlay-rgb: 10, 5, 16;

  --accent: #a855f7;
  --accent-hover: #c084fc;
  --accent-soft: rgba(168, 85, 247, 0.12);
  --accent-border: rgba(168, 85, 247, 0.3);
  --accent-glow: rgba(168, 85, 247, 0.48);
  --accent-text: #e9d5ff;

  --accent-rgb: 168, 85, 247;
  --accent-light-rgb: 192, 132, 252;
  --accent-pale-rgb: 216, 180, 254;
  --accent-deep-rgb: 124, 58, 237;
  --surface-logo: #120820;
  --surface-logo-mid: #4c1d95;
  --btn-on-accent: #ffffff;

  --text-primary: #ffffff;
  --text-secondary: #d4c4e8;
  --text-muted: #9ca3af;
  --text-footer: #6b7280;

  --glass-bg: rgba(124, 58, 237, 0.07);
  --glass-border: rgba(168, 85, 247, 0.18);
  --glass-shadow: 0 28px 100px rgba(0, 0, 0, 0.65), 0 0 40px rgba(124, 58, 237, 0.08);

  --header-bg: rgba(10, 5, 16, 0.72);
  --hero-border: rgba(168, 85, 247, 0.18);

  --chart-line: #7c3aed;
  --chart-line-dim: #3b0764;
  --chart-bar: #a855f7;

  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 28px;
  --radius-xl: 36px;

  --container: min(1280px, calc(100% - 32px));
  --font: 'Montserrat', Arial, sans-serif;

  /* Фон: видео images/fon.mp4, постер images/fon.jpg */
  --bg-photo: url('../images/fon.jpg');
  --bg-video-opacity: 0.52;
  --bg-photo-opacity: 0.42;
  --bg-photo-overlay: 0.68;

  --shimmer-1: #ffffff;
  --shimmer-2: #e9d5ff;
  --shimmer-3: #c084fc;
  --shimmer-4: #a855f7;
  --shimmer-5: #f3e8ff;
}

/* =============================================
   Базовые стили
   ============================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 500;
  background: var(--bg-base);
  color: var(--text-primary);
  overflow-x: clip;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
select {
  font-family: var(--font);
}

h1,
h2,
h3 {
  font-weight: 800;
}

.btn,
.nav,
.mobile-menu a,
.label,
.badge {
  font-weight: 700;
}

.field,
.select {
  font-weight: 600;
}

/* =============================================
   Фон
   ============================================= */
.bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      rgba(var(--overlay-rgb), var(--bg-photo-overlay)) 0%,
      rgba(var(--overlay-rgb), calc(var(--bg-photo-overlay) - 0.06)) 42%,
      rgba(var(--overlay-rgb), calc(var(--bg-photo-overlay) + 0.06)) 100%
    ),
    radial-gradient(circle at 72% 6%, var(--bg-gradient-1), transparent 38%),
    radial-gradient(circle at 8% 82%, var(--bg-gradient-2), transparent 32%),
    radial-gradient(circle at 50% 42%, rgba(var(--accent-deep-rgb), 0.08), transparent 55%),
    linear-gradient(180deg, var(--bg-gradient-top) 0%, var(--bg-section) 45%, var(--bg-gradient-bottom) 100%);
}

.bg__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: var(--bg-video-opacity);
  filter: saturate(1.06) contrast(1.05);
  transform: scale(1.02);
}

.bg--video::before {
  display: none;
}

.bg:not(.bg--video)::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--bg-photo);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  opacity: var(--bg-photo-opacity, 0.42);
  filter: saturate(1.08) contrast(1.04);
}

@supports (-webkit-touch-callout: none) {
  .bg::before {
    background-attachment: scroll;
  }
}

.bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(var(--accent-rgb), 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--accent-rgb), 0.035) 1px, transparent 1px);
  background-size: 78px 78px;
  opacity: 0.35;
}

.page {
  position: relative;
  z-index: 1;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

/* =============================================
   Шапка
   ============================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(var(--accent-rgb), 0.12);
  background: var(--header-bg);
  backdrop-filter: blur(24px);
  isolation: isolate;
}

.header-inner {
  min-height: 82px;
  height: auto;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 22px;
}

.header-inner .nav {
  margin-left: 8px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  flex-shrink: 0;
}

.header-inner .btn-primary {
  margin-left: 0;
  flex-shrink: 0;
  padding: 12px 20px;
  font-size: 13px;
  white-space: nowrap;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(var(--accent-deep-rgb), 0.18);
  border: 1px solid var(--accent-border);
  flex-shrink: 0;
}

.lang-switch__btn {
  border: 0;
  background: transparent;
  color: #9ca3af;
  font-family: var(--font);
  font-weight: 800;
  font-size: 12px;
  line-height: 1;
  padding: 7px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.lang-switch__btn.is-active {
  background: var(--accent);
  color: var(--btn-on-accent);
  box-shadow: 0 0 14px var(--accent-glow);
}

.lang-switch__btn:hover:not(.is-active) {
  color: var(--accent-text);
}

.mobile-lang {
  padding: 4px 0 8px;
}

.mobile-lang .lang-switch {
  width: 100%;
  justify-content: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  flex-shrink: 0;
  max-width: min(100%, 420px);
}

.brand--text {
  gap: 0;
  max-width: none;
  text-decoration: none;
  transition: filter 0.35s ease;
}

.brand--text:hover {
  filter: drop-shadow(0 0 14px rgba(var(--accent-rgb), 0.28));
}

.brand--text .brand-title {
  font-size: clamp(17px, 1.85vw, 22px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
  overflow: visible;
  text-overflow: clip;
  white-space: nowrap;
  background: linear-gradient(
    105deg,
    var(--shimmer-5) 0%,
    var(--shimmer-1) 12%,
    var(--shimmer-2) 28%,
    var(--shimmer-3) 42%,
    var(--shimmer-4) 52%,
    var(--shimmer-1) 68%,
    var(--shimmer-2) 82%,
    var(--shimmer-5) 100%
  );
  background-size: 280% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: brand-wordmark-shimmer 7s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(var(--accent-rgb), 0.12));
}

.brand--text .brand-247 {
  margin-left: 0.02em;
  background: none;
  animation: none;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

@keyframes brand-wordmark-shimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.brand-info {
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

/* --- Логотип --- */
.logo-wrap {
  --logo-size: 52px;
  position: relative;
  width: var(--logo-size);
  height: var(--logo-size);
  flex-shrink: 0;
  display: grid;
  place-items: center;
}

.logo-aura,
.logo-orbit,
.logo-shine {
  display: none;
}

.logo {
  width: var(--logo-size);
  height: var(--logo-size);
  border-radius: 16px;
  border: 1px solid rgba(var(--accent-pale-rgb), 0.22);
  background: rgba(var(--accent-deep-rgb), 0.18);
  box-shadow: 0 0 0 1px rgba(var(--accent-rgb), 0.08);
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.brand:hover .logo-wrap {
  transform: none;
}

.brand:hover .logo {
  border-color: rgba(var(--accent-pale-rgb), 0.42);
  box-shadow: 0 0 20px rgba(var(--accent-rgb), 0.22);
}

.logo:not(.logo--image)::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(var(--accent-deep-rgb), 0.35), rgba(10, 5, 16, 0.9));
}

.logo--image {
  background: #120820;
  border: 1px solid rgba(var(--accent-pale-rgb), 0.28);
  padding: 0;
}

.logo--image::before {
  display: none;
}

.logo-img {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0;
  border-radius: inherit;
  position: relative;
  z-index: 1;
}

.logo--image .logo-img {
  display: block;
  animation: none;
}

.logo-shine {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  background: linear-gradient(
    105deg,
    transparent 38%,
    rgba(255, 255, 255, 0.08) 44%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0.08) 56%,
    transparent 62%
  );
  transform: translateX(-130%) skewX(-12deg);
  animation: logo-shine 5s ease-in-out infinite;
  pointer-events: none;
  mix-blend-mode: overlay;
}

.logo--image .logo-shine {
  opacity: 0.85;
}

.logo--image .logo-text {
  display: none;
}

.logo-text {
  position: relative;
  z-index: 1;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

@keyframes logo-orbit-spin {
  to { transform: rotate(360deg); }
}

@keyframes logo-aura-pulse {
  0%, 100% {
    opacity: 0.45;
    transform: scale(0.92);
  }
  50% {
    opacity: 0.95;
    transform: scale(1.08);
  }
}

@keyframes logo-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

@keyframes logo-breathe {
  0%, 100% { transform: scale(1); filter: brightness(1); }
  50% { transform: scale(1.04); filter: brightness(1.08); }
}

@keyframes logo-shine {
  0%, 18% { transform: translateX(-130%) skewX(-12deg); }
  45% { transform: translateX(130%) skewX(-12deg); }
  100% { transform: translateX(130%) skewX(-12deg); }
}

@media (prefers-reduced-motion: reduce) {
  .logo-wrap,
  .logo,
  .logo-aura,
  .logo-orbit,
  .logo-shine,
  .logo--image .logo-img {
    animation: none !important;
    transition: none !important;
  }

  .brand:hover .logo-wrap {
    transform: none;
  }

  .title-shimmer {
    animation: none !important;
    background: none;
    -webkit-text-fill-color: var(--text-primary);
    color: var(--text-primary);
    filter: none;
  }

  .brand-tag {
    animation: none !important;
  }

  .brand-247,
  h1 .brand-247,
  .accent {
    animation: none !important;
    background: none;
    -webkit-text-fill-color: var(--accent-hover);
    color: var(--accent-hover);
    filter: none;
  }

  .brand--text,
  .brand--text:hover {
    filter: none;
  }

  .btn,
  .btn-primary,
  .btn-ghost {
    transition: none !important;
    transform: none !important;
  }

  .hero-service:hover {
    transform: none;
  }

  .bg__video {
    display: none;
  }

  .bg--video::before {
    display: block;
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--bg-photo);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: var(--bg-photo-opacity);
  }

  .brand--text .brand-title {
    animation: none !important;
    background: none;
    -webkit-text-fill-color: var(--text-primary);
    color: var(--text-primary);
    filter: none;
  }

  .brand--text .brand-247 {
    -webkit-text-fill-color: var(--accent-hover);
    color: var(--accent-hover);
  }

  .hero-aurora__blob,
  .hero-aurora__beam,
  .asset-orbit-spin,
  .asset-orbit-hub--pulse,
  .asset-orbit-chip {
    animation: none !important;
  }
}

.brand-title {
  font-size: clamp(14px, 1.4vw, 17px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  color: var(--text-primary);
}

.brand-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  margin-top: 0;
  max-width: 100%;
}

.brand-tags--pill {
  margin-top: 0;
  flex-wrap: nowrap;
  overflow: hidden;
}

.brand-tag {
  display: inline-flex;
  align-items: center;
  padding: 2px 7px;
  border-radius: 999px;
  font-size: clamp(6px, 0.65vw, 8px);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #f3e8ff;
  border: 1px solid rgba(var(--accent-pale-rgb), 0.45);
  background: linear-gradient(
    135deg,
    rgba(var(--accent-rgb), 0.35) 0%,
    rgba(var(--accent-light-rgb), 0.12) 100%
  );
  box-shadow:
    0 0 14px rgba(var(--accent-rgb), 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  animation: brand-tag-pulse 3.6s ease-in-out infinite;
  animation-delay: calc(var(--tag-i, 0) * 0.45s);
}

.brand-tag-sep {
  font-size: 8px;
  font-weight: 800;
  color: rgba(var(--accent-pale-rgb), 0.85);
  text-shadow: 0 0 10px rgba(var(--accent-light-rgb), 0.6);
  line-height: 1;
}

.brand-tag:nth-child(4n+1) {
  border-color: rgba(var(--accent-light-rgb), 0.55);
  background: linear-gradient(135deg, rgba(var(--accent-deep-rgb), 0.45), rgba(var(--accent-rgb), 0.15));
}

.brand-tag:nth-child(4n+3) {
  border-color: rgba(var(--accent-pale-rgb), 0.5);
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.4), rgba(var(--accent-pale-rgb), 0.18));
}

@keyframes brand-tag-pulse {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 0 12px rgba(var(--accent-rgb), 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
  50% {
    transform: translateY(-1px);
    box-shadow: 0 0 18px rgba(var(--accent-light-rgb), 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
}

.brand-sub {
  margin-top: 4px;
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-text);
  opacity: 0.75;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.brand-247 {
  font-family: var(--font);
  font-weight: 800;
  font-style: normal;
  display: inline;
  background: linear-gradient(
    90deg,
    var(--shimmer-3) 0%,
    var(--shimmer-1) 25%,
    var(--shimmer-2) 50%,
    var(--shimmer-4) 75%,
    var(--shimmer-3) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: text-shimmer 4s linear infinite;
}

.brand-title .brand-247 {
  font-weight: 800;
}

.mini-title .brand-247 {
  font-weight: 800;
  font-size: inherit;
  line-height: inherit;
}

.footer .brand-247 {
  font-weight: 700;
}

h1 .brand-247 {
  font-family: var(--font);
  font-weight: 900;
  font-size: 1em;
}

.lead {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--text-secondary);
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.65;
}

.brand-sub {
  margin-top: 4px;
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-text);
  opacity: 0.75;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #cbd5e1;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  padding: 10px 22px;
  border-radius: 999px;
  background: rgba(var(--accent-deep-rgb), 0.12);
  border: 1px solid rgba(var(--accent-rgb), 0.14);
  backdrop-filter: blur(14px);
}

.nav a:hover {
  color: var(--accent-hover);
}

/* =============================================
   Кнопки
   ============================================= */
.btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.01em;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.34) 0%,
    rgba(255, 255, 255, 0.08) 28%,
    transparent 52%
  );
  opacity: 0.85;
  pointer-events: none;
  z-index: 0;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -2px 6px rgba(0, 0, 0, 0.22);
  pointer-events: none;
  z-index: 0;
}

.btn-primary {
  background: linear-gradient(
    145deg,
    rgba(var(--accent-rgb), 0.42) 0%,
    rgba(var(--accent-deep-rgb), 0.22) 48%,
    rgba(10, 5, 16, 0.35) 100%
  );
  border-color: rgba(var(--accent-pale-rgb), 0.42);
  color: #fff;
  padding: 16px 28px;
  box-shadow:
    0 10px 34px rgba(var(--accent-rgb), 0.28),
    0 2px 8px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(var(--accent-rgb), 0.12);
  transform: perspective(800px) translateY(0);
}

.btn-primary:hover {
  transform: perspective(800px) translateY(-3px);
  border-color: rgba(var(--accent-pale-rgb), 0.62);
  background: linear-gradient(
    145deg,
    rgba(var(--accent-light-rgb), 0.48) 0%,
    rgba(var(--accent-rgb), 0.32) 48%,
    rgba(var(--accent-deep-rgb), 0.22) 100%
  );
  box-shadow:
    0 16px 42px rgba(var(--accent-rgb), 0.38),
    0 4px 14px rgba(0, 0, 0, 0.38),
    0 0 28px rgba(var(--accent-rgb), 0.22);
}

.btn-primary:active {
  transform: perspective(800px) translateY(0);
  box-shadow:
    0 6px 20px rgba(var(--accent-rgb), 0.24),
    0 1px 4px rgba(0, 0, 0, 0.32);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.2);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.14) 0%,
    rgba(255, 255, 255, 0.05) 42%,
    rgba(var(--accent-rgb), 0.08) 100%
  );
  color: #fff;
  padding: 16px 28px;
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.06);
  transform: perspective(800px) translateY(0);
}

.btn-ghost:hover {
  transform: perspective(800px) translateY(-3px);
  border-color: rgba(var(--accent-pale-rgb), 0.45);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(var(--accent-rgb), 0.12) 50%,
    rgba(var(--accent-deep-rgb), 0.14) 100%
  );
  box-shadow:
    0 14px 36px rgba(var(--accent-rgb), 0.18),
    0 4px 12px rgba(0, 0, 0, 0.32),
    0 0 20px rgba(var(--accent-rgb), 0.12);
}

.btn-ghost:active {
  transform: perspective(800px) translateY(0);
  box-shadow:
    0 5px 16px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}


.mobile-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 11px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  padding: 12px 0 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu a {
  display: block;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  margin: 8px 0;
  font-weight: 800;
}

/* =============================================
   Hero
   ============================================= */
.hero {
  position: relative;
  margin-top: 38px;
  border: 1px solid var(--hero-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: 64px 32px 42px;
}

main.container {
  overflow-x: clip;
}

.market {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.market::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(var(--overlay-rgb), 0.92) 0%, rgba(var(--overlay-rgb), 0.55) 32%, rgba(var(--overlay-rgb), 0.22) 58%, rgba(var(--overlay-rgb), 0.38) 100%),
    linear-gradient(180deg, rgba(var(--overlay-rgb), 0.45) 0%, transparent 18%, transparent 78%, rgba(var(--overlay-rgb), 0.65) 100%);
}

.hero-aurora {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-grid-depth {
  position: absolute;
  inset: -20% -10% -5% 20%;
  background:
    linear-gradient(rgba(var(--accent-rgb), 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--accent-rgb), 0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  transform: perspective(900px) rotateX(68deg);
  transform-origin: 50% 100%;
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.85) 35%, rgba(0, 0, 0, 0.35) 100%);
  opacity: 0.55;
}

.hero-aurora__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  will-change: transform;
}

.hero-aurora__blob--1 {
  width: min(680px, 75%);
  height: min(680px, 75%);
  right: -8%;
  top: -12%;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.48) 0%, rgba(var(--accent-deep-rgb), 0.18) 42%, transparent 72%);
  animation: aurora-drift-1 22s ease-in-out infinite alternate;
}

.hero-aurora__blob--2 {
  width: min(520px, 58%);
  height: min(520px, 58%);
  right: 18%;
  bottom: -18%;
  background: radial-gradient(circle, rgba(var(--accent-light-rgb), 0.34) 0%, rgba(var(--accent-rgb), 0.12) 50%, transparent 74%);
  animation: aurora-drift-2 18s ease-in-out infinite alternate;
}

.hero-aurora__blob--3 {
  width: min(420px, 48%);
  height: min(420px, 48%);
  right: 42%;
  top: 28%;
  background: radial-gradient(circle, rgba(var(--accent-pale-rgb), 0.22) 0%, rgba(var(--accent-rgb), 0.08) 55%, transparent 75%);
  animation: aurora-drift-3 26s ease-in-out infinite alternate;
}

.hero-aurora__beam {
  position: absolute;
  border-radius: 999px;
  filter: blur(28px);
  opacity: 0.45;
  transform-origin: center top;
}

.hero-aurora__beam--1 {
  width: 180px;
  height: 55%;
  right: 22%;
  top: -8%;
  background: linear-gradient(180deg, rgba(var(--accent-pale-rgb), 0.35) 0%, rgba(var(--accent-rgb), 0.12) 45%, transparent 100%);
  transform: rotate(12deg);
  animation: aurora-beam 14s ease-in-out infinite alternate;
}

.hero-aurora__beam--2 {
  width: 120px;
  height: 48%;
  right: 38%;
  top: 0;
  background: linear-gradient(180deg, rgba(var(--accent-light-rgb), 0.28) 0%, transparent 100%);
  transform: rotate(-8deg);
  animation: aurora-beam 18s ease-in-out infinite alternate-reverse;
}

@keyframes aurora-drift-1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-36px, 28px) scale(1.08); }
}

@keyframes aurora-drift-2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(28px, -22px) scale(1.06); }
}

@keyframes aurora-drift-3 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-18px, 16px) scale(1.1); }
}

@keyframes aurora-beam {
  0% { opacity: 0.32; transform: rotate(var(--beam-rotate, 12deg)) scaleY(0.92); }
  100% { opacity: 0.52; transform: rotate(calc(var(--beam-rotate, 12deg) + 4deg)) scaleY(1.05); }
}

.hero-aurora__beam--1 { --beam-rotate: 12deg; }
.hero-aurora__beam--2 { --beam-rotate: -8deg; }

@media (min-width: 1281px) {
  .hero-aurora__blob--1 {
    width: min(780px, 78%);
    height: min(780px, 78%);
  }

  .hero-aurora__blob--2 {
    width: min(600px, 62%);
    height: min(600px, 62%);
  }
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 440px);
  gap: 42px;
  align-items: start;
}

.hero-intro {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  container-type: inline-size;
  container-name: hero-intro;
}

.hero-intro .pill {
  max-width: 100%;
  overflow: hidden;
}

/* --- Услуги в hero (структурированная сетка) --- */
.hero-services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
  margin-bottom: 0;
}

.hero-service {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  text-decoration: none;
  color: inherit;
  min-height: 100%;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.hero-service:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--accent-pale-rgb), 0.42);
  box-shadow: 0 12px 32px rgba(var(--accent-rgb), 0.16);
  background: rgba(var(--accent-rgb), 0.08);
}

.hero-service__icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
  border: 1px solid rgba(var(--accent-pale-rgb), 0.32);
  background: linear-gradient(
    145deg,
    rgba(var(--accent-rgb), 0.22) 0%,
    rgba(var(--accent-deep-rgb), 0.12) 100%
  );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.hero-service__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.hero-service__title {
  font-size: clamp(12px, 1.25vw, 14px);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.25;
  color: var(--text-primary);
}

.hero-service__desc {
  font-size: clamp(11px, 1.05vw, 13px);
  font-weight: 700;
  line-height: 1.45;
  color: var(--text-secondary);
}

.hero-service__detail {
  font-size: clamp(10px, 0.95vw, 12px);
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-muted);
}

.hero-intro .pill span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  max-width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 9px 16px;
  font-weight: 800;
  font-size: clamp(10px, 2vw, 12px);
  line-height: 1.35;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(14px);
}

.pill.pill-tags {
  padding: 7px 14px 7px 10px;
  gap: 8px;
  border-color: rgba(var(--accent-pale-rgb), 0.35);
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.16), rgba(255, 255, 255, 0.06));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 0 20px rgba(var(--accent-rgb), 0.12);
}

.pill-tags .brand-tag {
  font-size: clamp(7px, 1.1vw, 9px);
  padding: 3px 8px;
}

.pill .dot {
  flex-shrink: 0;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--accent);
  box-shadow: 0 0 18px var(--accent-glow);
}

h1 {
  font-size: clamp(13px, 3.2vw, 50px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 100%;
  white-space: nowrap;
}

@supports (container-type: inline-size) {
  h1 {
    font-size: clamp(13px, 8cqi, 50px);
  }
}

.title-shimmer {
  display: inline-block;
  max-width: 100%;
  background: linear-gradient(
    105deg,
    var(--shimmer-1) 0%,
    var(--shimmer-2) 18%,
    var(--shimmer-3) 36%,
    var(--shimmer-1) 52%,
    var(--shimmer-5) 68%,
    var(--shimmer-3) 84%,
    var(--shimmer-1) 100%
  );
  background-size: 250% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: text-shimmer 5.5s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(var(--accent-rgb), 0.15));
}

/* Внутри hero-заголовка — один общий перелив, без отдельного span */
h1.title-shimmer .brand-247 {
  background: none;
  animation: none;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
  max-width: min(100%, 560px);
}

.actions .btn {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  font-size: clamp(12px, 1.35vw, 14px);
  line-height: 1.2;
  text-align: center;
}

.actions .btn-primary,
.actions .btn-ghost {
  background: linear-gradient(
    145deg,
    rgba(var(--accent-rgb), 0.38) 0%,
    rgba(var(--accent-deep-rgb), 0.2) 48%,
    rgba(10, 5, 16, 0.32) 100%
  );
  border-color: rgba(var(--accent-pale-rgb), 0.38);
  color: #fff;
  box-shadow:
    0 10px 34px rgba(var(--accent-rgb), 0.24),
    0 2px 8px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(var(--accent-rgb), 0.1);
  transform: perspective(800px) translateY(0);
}

.actions .btn-primary:hover,
.actions .btn-ghost:hover {
  transform: perspective(800px) translateY(-3px);
  border-color: rgba(var(--accent-pale-rgb), 0.58);
  background: linear-gradient(
    145deg,
    rgba(var(--accent-light-rgb), 0.44) 0%,
    rgba(var(--accent-rgb), 0.28) 48%,
    rgba(var(--accent-deep-rgb), 0.2) 100%
  );
  box-shadow:
    0 16px 42px rgba(var(--accent-rgb), 0.34),
    0 4px 14px rgba(0, 0, 0, 0.36),
    0 0 24px rgba(var(--accent-rgb), 0.18);
}

.actions .btn-primary:active,
.actions .btn-ghost:active {
  transform: perspective(800px) translateY(0);
  box-shadow:
    0 6px 20px rgba(var(--accent-rgb), 0.22),
    0 1px 4px rgba(0, 0, 0, 0.3);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 70px;
}

/* --- 3D орбита активов под stat-карточками --- */
.asset-stage {
  position: relative;
  margin-top: 28px;
  min-height: clamp(620px, 72vw, 800px);
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(var(--accent-rgb), 0.1);
  background:
    radial-gradient(ellipse 88% 58% at 50% 72%, rgba(var(--accent-rgb), 0.16) 0%, transparent 68%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, transparent 42%);
}

.asset-stage__floor {
  position: absolute;
  left: 50%;
  bottom: 40%;
  width: min(92%, 520px);
  height: 22%;
  transform: translateX(-50%) perspective(500px) rotateX(72deg);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(var(--accent-rgb), 0.22) 0%, rgba(var(--accent-rgb), 0.07) 42%, transparent 72%);
  filter: blur(8px);
  pointer-events: none;
}

.asset-orbit-scene {
  --orbit-r-main: clamp(118px, 17vw, 168px);
  --orbit-r-inner: clamp(82px, 11vw, 118px);
  --orbit-chip: clamp(52px, 6vw, 64px);
  --orbit-chip-sm: clamp(48px, 5.5vw, 58px);
  position: absolute;
  left: 50%;
  top: 24%;
  width: min(100%, 620px);
  height: min(46%, 260px);
  transform: translate(-50%, -50%);
  perspective: 1100px;
  perspective-origin: 50% 44%;
}

.asset-orbit-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 84px;
  height: 84px;
  margin: -42px 0 0 -42px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-light-rgb), 0.42) 0%, rgba(var(--accent-rgb), 0.12) 48%, transparent 72%);
  box-shadow: 0 0 56px rgba(var(--accent-rgb), 0.35);
  pointer-events: none;
}

.asset-orbit-hub--pulse {
  width: 148px;
  height: 148px;
  margin: -74px 0 0 -74px;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.18) 0%, transparent 68%);
  animation: asset-orbit-hub-pulse 4.2s ease-in-out infinite;
}

.asset-orbit-ring {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
}

.asset-orbit-ring--outer {
  transform: rotateX(68deg) rotateZ(-10deg);
}

.asset-orbit-ring--inner {
  transform: rotateX(58deg) rotateZ(14deg) scale(0.9);
}

.asset-orbit-path {
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  border: 1px solid rgba(var(--accent-light-rgb), 0.28);
  box-shadow:
    0 0 28px rgba(var(--accent-rgb), 0.16),
    inset 0 0 32px rgba(var(--accent-rgb), 0.07);
}

.asset-orbit-path--thin {
  inset: 10%;
  border-color: rgba(var(--accent-pale-rgb), 0.22);
}

.asset-orbit-spin {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  animation: asset-orbit-spin 34s linear infinite;
}

.asset-orbit-spin--reverse {
  animation: asset-orbit-spin-reverse 26s linear infinite;
}

.asset-orbit-node {
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--orbit-chip);
  height: var(--orbit-chip);
  margin: calc(var(--orbit-chip) / -2) 0 0 calc(var(--orbit-chip) / -2);
  transform-style: preserve-3d;
  transform: rotateY(var(--a)) translateZ(var(--orbit-r-main)) rotateY(calc(-1 * var(--a)));
}

.asset-orbit-node--sm {
  width: var(--orbit-chip-sm);
  height: var(--orbit-chip-sm);
  margin: calc(var(--orbit-chip-sm) / -2) 0 0 calc(var(--orbit-chip-sm) / -2);
  transform: rotateY(var(--a)) translateZ(var(--orbit-r-inner)) rotateY(calc(-1 * var(--a)));
}

.asset-orbit-chip {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 14, 28, 0.78);
  border: 2px solid rgba(var(--accent-pale-rgb), 0.36);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.48),
    0 0 28px rgba(var(--accent-rgb), 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  transform: translateZ(12px);
  animation: asset-orbit-chip-float 4.8s ease-in-out infinite;
  animation-delay: calc(var(--a, 0deg) / 360deg * -4.8s);
}

.asset-orbit-chip svg {
  width: 100%;
  height: 100%;
  display: block;
  padding: 2px;
}

.asset-orbit-chip--fiat {
  flex-direction: column;
  gap: 5px;
  padding: 10px 8px;
}

.asset-orbit-chip--flag-only {
  padding: 0;
  overflow: hidden;
}

.asset-orbit-chip--flag-only .asset-orbit-flag {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: none;
}

.asset-orbit-flag {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  display: block;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.14),
    0 0 12px rgba(var(--accent-rgb), 0.15);
}

.asset-orbit-flag svg,
.stat-flag-visual svg {
  width: 100%;
  height: 100%;
  display: block;
}

.asset-orbit-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--accent-text);
}

@keyframes asset-orbit-spin {
  from { transform: rotateY(0deg); }
  to { transform: rotateY(360deg); }
}

@keyframes asset-orbit-spin-reverse {
  from { transform: rotateY(360deg); }
  to { transform: rotateY(0deg); }
}

@keyframes asset-orbit-hub-pulse {
  0%, 100% { transform: scale(1); opacity: 0.55; }
  50% { transform: scale(1.08); opacity: 0.85; }
}

@keyframes asset-orbit-chip-float {
  0%, 100% { transform: translateZ(12px) translateY(0); }
  50% { transform: translateZ(22px) translateY(-4px); }
}

/* --- График под орбитой --- */
.asset-chart {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: min(54%, 440px);
  min-height: 380px;
  padding: 18px 22px 22px;
  border-top: 1px solid rgba(var(--accent-rgb), 0.16);
  background: linear-gradient(180deg, rgba(10, 5, 16, 0.55) 0%, rgba(10, 5, 16, 0.94) 100%);
  backdrop-filter: blur(10px);
}

.asset-chart__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.asset-chart__pair {
  font-size: 13px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.asset-chart__change {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  white-space: nowrap;
}

.asset-chart__change.is-up {
  color: #34d399;
}

.asset-chart__change.is-down {
  color: #f87171;
}

.asset-chart__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.asset-chart__tab {
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  background: rgba(var(--accent-deep-rgb), 0.2);
  color: var(--accent-text);
  font-family: var(--font);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 5px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.asset-chart__tab:hover {
  border-color: rgba(var(--accent-rgb), 0.38);
  background: rgba(var(--accent-deep-rgb), 0.32);
}

.asset-chart__tab.is-active {
  background: linear-gradient(135deg, rgb(var(--accent-deep-rgb)), var(--accent));
  border-color: rgba(var(--accent-pale-rgb), 0.45);
  color: #fff;
}

.asset-chart__canvas-wrap {
  flex: 1 1 auto;
  min-height: clamp(240px, 30vw, 320px);
  height: auto;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(var(--accent-rgb), 0.1);
}

.asset-chart__canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.asset-chart__note {
  margin: 8px 0 0;
  font-size: 10px;
  color: var(--text-footer);
  line-height: 1.4;
}

.asset-chart.is-loading .asset-chart__canvas-wrap {
  opacity: 0.45;
}

/* --- Карточки статистики hero --- */
.stat-card {
  position: relative;
  overflow: hidden;
  min-height: 148px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.02) !important;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  transform: none;
  animation: none;
  -webkit-tap-highlight-color: transparent;
  transition:
    border-color 0.4s ease,
    background-color 0.4s ease,
    box-shadow 0.4s ease,
    opacity 0.4s ease;
}

.stats .stat-card.glass::before {
  display: block;
  opacity: 0.45;
  transition: opacity 0.4s ease;
}

.stat-card:nth-child(1),
.stat-card:nth-child(2),
.stat-card:nth-child(3),
.stat-card:nth-child(4) {
  animation: none;
}

.stat-card:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.05) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 0 0 1px rgba(var(--accent-pale-rgb), 0.18),
    0 12px 40px rgba(var(--accent-rgb), 0.1);
}

.stat-card:hover.glass::before {
  opacity: 0.85;
}

.stat-card:active {
  opacity: 0.88;
  border-color: rgba(var(--accent-pale-rgb), 0.35);
  transition-duration: 0.15s;
}

.stat-card:focus-visible {
  outline: 2px solid rgba(var(--accent-rgb), 0.55);
  outline-offset: 3px;
}

.stat-card-glow,
.stat-card-shine {
  display: none;
}

.stat-card > .stat-title,
.stat-card > .stat-text,
.stat-card > .stat-flags,
.stat-card > .stat-coins,
.stat-card > .stat-badge-row {
  position: relative;
  z-index: 1;
}

.stat-card .stat-title {
  background: none;
  -webkit-text-fill-color: var(--text-primary);
  color: var(--text-primary);
  animation: none;
}

.stat-flags {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
}

.stat-flag {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  flex: 1;
  min-width: 0;
}

.stat-flag-ring {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.22);
  box-shadow: none;
  overflow: hidden;
  flex-shrink: 0;
  display: block;
}

.stat-flag-visual {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 50%;
}

.stat-flag-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent-text);
  text-transform: uppercase;
}

.stat-coins {
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
}

.stat-coin {
  flex: 1;
  aspect-ratio: 1;
  max-height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding: 0;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  box-shadow: none;
}

.stat-coin svg {
  width: 100%;
  height: 100%;
  display: block;
  shape-rendering: geometricPrecision;
}

.stat-coin--usdt {
  border-color: rgba(38, 161, 123, 0.35);
}

.stat-coin--btc {
  border-color: rgba(247, 147, 26, 0.35);
}

.stat-coin--eth {
  border-color: rgba(98, 126, 234, 0.35);
}

.stat-badge-row {
  margin-top: auto;
  padding-top: 16px;
}

.stat-badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  font-size: 18px;
  border: 1px solid rgba(var(--accent-pale-rgb), 0.18);
  background: transparent;
  box-shadow: none;
}

@media (prefers-reduced-motion: reduce) {
  .stat-card,
  .stat-card .stat-title {
    animation: none !important;
  }

  .stat-card,
  .stat-card:hover {
    transform: none;
  }
}

/* =============================================
   Стеклянные карточки
   ============================================= */
.glass {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  box-shadow: var(--glass-shadow), inset 0 1px 0 rgba(var(--accent-pale-rgb), 0.12);
  backdrop-filter: blur(24px);
}

.glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--accent-pale-rgb), 0.45), transparent);
}

.glass-pad {
  padding: 24px;
}

.stat-title {
  font-size: clamp(13px, 1.6vw, 20px);
  font-weight: 800;
  line-height: 1.2;
  overflow-wrap: break-word;
  word-break: break-word;
}

.stat-text {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 13px;
}

/* =============================================
   Правая колонка hero
   ============================================= */
.right-col {
  display: grid;
  gap: 20px;
  min-width: 0;
}

.tg-title {
  color: var(--text-muted);
  font-size: 14px;
}

.tg-handle {
  position: relative;
  z-index: 2;
  display: inline-block;
  font-size: clamp(15px, 2.5vw, 20px);
  font-weight: 800;
  margin-top: 6px;
  overflow-wrap: anywhere;
  word-break: break-word;
  color: var(--shimmer-2);
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease, filter 0.2s ease;
  text-shadow:
    0 0 6px rgba(var(--accent-light-rgb), 0.95),
    0 0 14px rgba(var(--accent-rgb), 0.75),
    0 0 28px rgba(var(--accent-rgb), 0.45),
    0 0 42px rgba(var(--accent-deep-rgb), 0.35);
}

a.tg-handle:hover {
  opacity: 0.92;
  filter: brightness(1.08);
}

.tg-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 22px 0 0;
}

.right-col .glass-pad > .btn {
  width: 100%;
  margin-top: 18px;
}

.badge-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
}

.badge-row .badge {
  margin-top: 0;
  flex: 0 1 auto;
  font-size: 12px;
  padding: 8px 12px;
  white-space: nowrap;
}

.badge {
  display: inline-flex;
  margin-top: 18px;
  border-radius: 999px;
  border: 1px solid var(--accent-border);
  background: var(--accent-soft);
  color: var(--accent-text);
  font-weight: 700;
  font-size: 13px;
  padding: 9px 16px;
  max-width: 100%;
  overflow-wrap: break-word;
}

/* =============================================
   Калькулятор
   ============================================= */
.calc-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.calc-head h2 {
  margin: 0;
  font-size: clamp(22px, 3vw, 28px);
}

.calc-head {
  min-width: 0;
}

#calculator.glass {
  scroll-margin-top: 96px;
  overflow: visible;
  z-index: 3;
}

#calculator.glass.is-picker-open {
  z-index: 5;
}

.calc-head > div {
  min-width: 0;
  overflow: hidden;
}

.calc-head p {
  margin: 6px 0 0;
  color: var(--text-muted);
}

.icon-btn {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent-text);
  border-radius: var(--radius-sm);
  padding: 12px;
  cursor: pointer;
}

.label {
  display: block;
  color: #cbd5e1;
  font-size: 12px;
  font-weight: 700;
  margin: 18px 0 8px;
}

.field,
.select {
  width: 100%;
  max-width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 14px 16px;
  outline: none;
}

.select {
  appearance: none;
  -webkit-appearance: none;
  background-color: var(--surface-logo);
  background-image:
    linear-gradient(45deg, transparent 50%, var(--accent-hover) 50%),
    linear-gradient(135deg, var(--accent-hover) 50%, transparent 50%);
  background-position: calc(100% - 22px) 50%, calc(100% - 15px) 50%;
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
  padding-right: 44px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.select:hover {
  border-color: var(--accent-border);
  background-color: #1a0b2e;
}

.select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.select option {
  background: var(--surface-logo);
  color: #fff;
  font-weight: 700;
}

/* Asset picker (calculator) */
.swap-field {
  min-width: 0;
}

.asset-picker {
  position: relative;
}

.asset-picker-native {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

#calculator .asset-picker__trigger {
  min-height: 48px;
  padding: 9px 12px;
  gap: 8px;
  font-size: 14px;
  letter-spacing: 0.03em;
  -webkit-font-smoothing: antialiased;
}

#calculator .asset-picker__option {
  min-height: 40px;
  padding: 6px 8px;
  gap: 8px;
}

#calculator .asset-picker__option-ticker {
  font-size: 13px;
  letter-spacing: 0.04em;
  -webkit-font-smoothing: antialiased;
}

#calculator .asset-picker__option-name {
  color: #c5d0e0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}

#calculator .result-row .asset-icon {
  width: 22px;
  height: 22px;
}

.asset-picker__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-family: var(--font);
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.asset-picker__trigger:hover {
  border-color: var(--accent-border);
  background: rgba(26, 11, 46, 0.88);
}

.asset-picker.is-open .asset-picker__trigger,
.asset-picker__trigger:focus-visible {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  outline: none;
}

.asset-picker__trigger-icon {
  flex-shrink: 0;
  display: flex;
}

.asset-picker__trigger-ticker {
  flex: 1;
  text-align: left;
  letter-spacing: 0.02em;
}

.asset-picker__trigger-chevron {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  border-right: 2px solid var(--accent-hover);
  border-bottom: 2px solid var(--accent-hover);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
}

.asset-picker.is-open .asset-picker__trigger-chevron {
  transform: rotate(-135deg) translateY(2px);
}

.asset-picker__dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 40;
  min-width: 100%;
  width: max(100%, 260px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: #140a22;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(var(--accent-rgb), 0.08);
  overflow: hidden;
}

.swap-field:last-child .asset-picker__dropdown {
  left: auto;
  right: 0;
}

.asset-picker__search-wrap {
  padding: 8px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.asset-picker__search {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 11px;
  outline: none;
}

.asset-picker__search::placeholder {
  color: #64748b;
}

.asset-picker__search:focus {
  border-color: var(--accent-border);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.14);
}

.asset-picker__list {
  list-style: none;
  margin: 0;
  padding: 6px;
  max-height: 250px;
  overflow-y: auto;
}

.asset-picker__list::-webkit-scrollbar {
  width: 6px;
}

.asset-picker__list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.asset-picker__option {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 8px 10px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: #fff;
  font-family: var(--font);
  cursor: pointer;
  transition: background 0.15s ease;
  text-align: left;
}

.asset-picker__option:hover,
.asset-picker__option.is-active {
  background: rgba(var(--accent-rgb), 0.14);
}

.asset-picker__option-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.asset-picker__option-ticker {
  font-weight: 800;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.asset-picker__option-name {
  color: #94a3b8;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
}

.asset-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
}

.asset-icon--md {
  width: 36px;
  height: 36px;
}

.asset-icon--lg {
  width: 34px;
  height: 34px;
}

.asset-icon--sm {
  width: 28px;
  height: 28px;
}

.asset-icon--xs {
  width: 22px;
  height: 22px;
}

.asset-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  shape-rendering: geometricPrecision;
}

.asset-icon svg text {
  text-rendering: geometricPrecision;
}

.asset-icon--fiat {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.asset-icon--fallback {
  background: rgba(var(--accent-rgb), 0.25);
  color: #fff;
  font-weight: 800;
  font-size: 12px;
}

.result-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.result-amount {
  min-width: 0;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.swap-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: end;
}

.swap {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: var(--accent);
  color: var(--btn-on-accent);
  font-size: 24px;
  box-shadow: 0 0 28px var(--accent-glow);
  border: 0;
  cursor: pointer;
}

.result {
  margin-top: 18px;
  border: 1px solid var(--accent-border);
  background: var(--accent-soft);
  border-radius: var(--radius-md);
  padding: 22px;
}

.result-label {
  font-size: 12px;
  font-weight: 700;
  color: #cbd5e1;
}

.result-value {
  margin-top: 8px;
  font-size: clamp(18px, 3.5vw, 28px);
  color: var(--accent-text);
  word-break: break-word;
  overflow-wrap: anywhere;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.mini {
  border: 1px solid var(--accent-border);
  background: var(--accent-soft);
  border-radius: 18px;
  padding: 16px;
}

.mini-title {
  font-size: clamp(18px, 2.5vw, 22px);
  color: var(--accent-text);
}

.mini-text {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 8px;
}

.check-box {
  margin-top: 22px;
  border: 1px solid var(--accent-border);
  background: rgba(0, 0, 0, 0.25);
  border-radius: var(--radius-md);
  padding: 22px;
}

.check-box h3 {
  margin: 0 0 18px;
  font-size: clamp(20px, 3vw, 24px);
}

.checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.check {
  display: flex;
  gap: 10px;
  color: #d1d5db;
  font-size: 14px;
  line-height: 1.35;
}

.check-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 8px;
  border: 1px solid var(--accent-border);
  background: var(--accent-soft);
  display: grid;
  place-items: center;
  color: var(--accent-text);
}

/* =============================================
   Секции
   ============================================= */
.section {
  margin-top: 88px;
}

.section h2 {
  font-size: clamp(26px, 4.5vw, 58px);
  font-weight: 800;
  line-height: 1.08;
  margin: 0 0 22px;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  overflow-wrap: break-word;
  max-width: 100%;
}

.section-p {
  max-width: 850px;
  color: var(--text-secondary);
  line-height: 1.65;
  font-size: clamp(15px, 2vw, 18px);
}

.accent {
  background: linear-gradient(
    135deg,
    var(--shimmer-3) 0%,
    var(--shimmer-2) 40%,
    var(--shimmer-1) 60%,
    var(--shimmer-4) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: text-shimmer 6s ease-in-out infinite;
}

@keyframes text-shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 34px;
}

.service {
  min-height: 222px;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  border: 1px solid var(--accent-border);
  background: var(--accent-soft);
  box-shadow: 0 0 28px var(--accent-glow);
  display: grid;
  place-items: center;
  font-size: 26px;
  margin-bottom: 22px;
}

.service h3,
.step h3 {
  font-size: clamp(18px, 2.5vw, 22px);
  margin: 0 0 12px;
  overflow-wrap: break-word;
}

.service p,
.step p {
  color: #aeb5c2;
  line-height: 1.6;
  margin: 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.num {
  font-size: clamp(28px, 4vw, 38px);
  color: var(--accent-hover);
  opacity: 0.78;
  margin-bottom: 32px;
}

.reviews-wrap {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.review {
  display: flex;
  flex-direction: column;
  min-height: 168px;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.review:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.05) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 0 0 1px rgba(var(--accent-pale-rgb), 0.18),
    0 12px 40px rgba(var(--accent-rgb), 0.1);
}

.review:hover.glass::before {
  opacity: 0.85;
}

.review-text {
  flex: 1;
  margin: 0;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.55;
}

.review-foot {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(var(--accent-rgb), 0.14);
}

.review-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
}

.review-name {
  font-weight: 800;
  font-size: 13px;
}

.review-time {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}

.review p {
  min-height: 0;
}

.stars {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  font-size: 15px;
  line-height: 1;
}

.stars__fill {
  color: #f5c842;
  text-shadow: 0 0 10px rgba(245, 200, 66, 0.5);
}

.stars__empty {
  color: rgba(255, 255, 255, 0.16);
}

.reviews-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.reviews-pager__btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(var(--accent-pale-rgb), 0.35);
  background: rgba(var(--accent-deep-rgb), 0.22);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.2s ease;
}

.reviews-pager__btn:hover:not(:disabled) {
  border-color: rgba(var(--accent-pale-rgb), 0.55);
  background: rgba(var(--accent-rgb), 0.28);
}

.reviews-pager__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.reviews-pager__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  max-width: min(100%, 420px);
}

.reviews-pager__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(var(--accent-pale-rgb), 0.28);
  cursor: pointer;
  transition: 0.2s ease;
}

.reviews-pager__dot.is-active {
  width: 24px;
  background: var(--accent-hover);
  box-shadow: 0 0 14px rgba(var(--accent-rgb), 0.45);
}

.reviews-pager__count {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  min-width: 52px;
  text-align: center;
}

.cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

.cta h2 {
  margin-top: 18px;
  font-size: clamp(24px, 4vw, 40px);
  line-height: 1.1;
  overflow-wrap: break-word;
}

.cta .btn-primary {
  flex-shrink: 0;
  white-space: nowrap;
}

/* =============================================
   AML / KYC — юридическая страница
   ============================================= */
.legal-page {
  padding: 38px 0 20px;
  max-width: 860px;
}

.legal-hero h1 {
  margin: 0 0 28px;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.legal-card__title {
  margin: 0 0 20px;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  line-height: 1.2;
}

.legal-intro,
.legal-outro {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 15px;
}

.legal-intro {
  margin: 0 0 32px;
}

.legal-section {
  padding-top: 28px;
  margin-top: 28px;
  border-top: 1px solid rgba(var(--accent-rgb), 0.14);
}

.legal-section:first-of-type {
  padding-top: 0;
  margin-top: 0;
  border-top: 0;
}

.legal-section h3 {
  margin: 0 0 14px;
  font-size: clamp(17px, 2.2vw, 20px);
  font-weight: 800;
  color: var(--accent-text);
}

.legal-section p {
  margin: 0 0 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 15px;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-list {
  margin: 0 0 14px;
  padding-left: 22px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 15px;
}

.legal-list li {
  margin-bottom: 8px;
}

.legal-list li:last-child {
  margin-bottom: 0;
}

.legal-outro {
  margin: 32px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(var(--accent-rgb), 0.14);
  font-weight: 600;
  color: var(--text-primary);
}

.nav__active {
  color: var(--accent-hover);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
  margin-bottom: 16px;
}

.footer-links a {
  color: var(--accent-text);
  font-weight: 700;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--accent-hover);
}

.footer-copy {
  margin: 0;
  line-height: 1.6;
}

.page-aml .footer {
  margin-top: 48px;
}

/* =============================================
   Подвал и плавающая кнопка
   ============================================= */
.footer {
  position: relative;
  z-index: 2;
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 16px 80px;
  text-align: center;
  color: var(--text-footer);
  font-size: 14px;
}

.float {
  display: none;
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 30;
  background: linear-gradient(135deg, rgb(var(--accent-deep-rgb)), var(--accent));
  color: var(--btn-on-accent);
  border-radius: 999px;
  padding: 16px;
  text-align: center;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 0 35px var(--accent-glow);
}

/* =============================================
   Адаптив
   ============================================= */
@media (max-width: 1280px) {
  .nav {
    gap: 18px;
    font-size: 13px;
  }

  .brand {
    max-width: min(100%, 320px);
  }

  .brand--text {
    max-width: none;
  }

  .brand-tags {
    gap: 4px;
  }

  .brand-tag {
    font-size: 7px;
    padding: 2px 6px;
  }

  .header-inner .btn-primary {
    padding: 10px 16px;
    font-size: 12px;
  }
}

@media (max-width: 1100px) {
  .nav {
    display: none;
  }

  .mobile-toggle {
    display: block;
    flex-shrink: 0;
  }

  .header-inner .btn-primary {
    padding: 10px 14px;
    font-size: 12px;
  }

  .brand {
    max-width: min(100%, 260px);
  }

  .brand-tags {
    flex-wrap: nowrap;
    overflow: hidden;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid-depth {
    inset: -10% -20% 0 0;
    opacity: 0.4;
  }

  .hero-aurora__blob--1 {
    right: -20%;
    top: -8%;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 42px;
  }

  .asset-stage {
    min-height: 540px;
    margin-top: 20px;
  }

  .asset-orbit-scene {
    top: 22%;
    height: min(42%, 220px);
    --orbit-r-main: clamp(102px, 16vw, 145px);
    --orbit-r-inner: clamp(72px, 10vw, 102px);
    --orbit-chip: clamp(46px, 5.5vw, 58px);
    --orbit-chip-sm: clamp(42px, 5vw, 52px);
  }

  .asset-chart {
    height: min(56%, 400px);
    min-height: 340px;
  }

  .asset-chart__canvas-wrap {
    min-height: 200px;
  }

  .cta {
    grid-template-columns: 1fr;
  }

  .cta .btn-primary {
    width: 100%;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .right-col {
    max-width: 720px;
  }
}

@media (max-width: 900px) {
  .reviews {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .container {
    width: calc(100% - 24px);
  }

  .header-inner {
    min-height: 68px;
    padding: 8px 0;
    gap: 8px;
  }

  .header-inner .btn-primary {
    display: none;
  }

  .lang-switch {
    display: none;
  }

  .mobile-lang .lang-switch {
    display: inline-flex;
  }

  .brand {
    max-width: calc(100% - 100px);
  }

  .brand--text {
    max-width: calc(100% - 52px);
  }

  .brand-tags {
    display: flex;
    gap: 3px;
    margin-top: 4px;
  }

  .brand-tag {
    font-size: 6px;
    padding: 2px 5px;
  }

  .brand-tag-sep {
    display: none;
  }

  .logo-wrap {
    --logo-size: 50px;
  }

  .logo-orbit {
    border-radius: 20px;
  }

  .logo {
    border-radius: 18px;
  }

  .brand-title {
    font-size: 14px;
  }

  .brand--text .brand-title {
    font-size: clamp(15px, 4.2vw, 17px);
  }

  .hero {
    margin-top: 18px;
    border-radius: var(--radius-md);
    padding: 38px 14px 24px;
  }

  .hero-services {
    gap: 10px;
    margin-top: 28px;
  }

  .hero-service {
    padding: 14px 14px;
    gap: 12px;
  }

  .hero-service__desc {
    font-size: 12px;
  }

  .hero-service__detail {
    font-size: 11px;
  }

  .hero-service__icon {
    width: 38px;
    height: 38px;
    font-size: 16px;
    border-radius: 12px;
  }

  .asset-stage {
    min-height: 500px;
  }

  .asset-orbit-scene {
    top: 20%;
    height: min(38%, 200px);
    --orbit-r-main: clamp(92px, 24vw, 128px);
    --orbit-r-inner: clamp(66px, 18vw, 90px);
    --orbit-chip: clamp(42px, 11vw, 52px);
    --orbit-chip-sm: clamp(38px, 10vw, 48px);
  }

  .asset-chart {
    height: min(58%, 360px);
    min-height: 300px;
    padding: 14px 16px 18px;
  }

  .asset-chart__canvas-wrap {
    min-height: 168px;
  }

  .hero-aurora__beam {
    opacity: 0.28;
  }

  h1 {
    font-size: clamp(12px, 3.8vw, 30px);
    letter-spacing: -0.015em;
  }

  @supports (container-type: inline-size) {
    h1 {
      font-size: clamp(12px, 7.5cqi, 30px);
    }
  }

  .section h2 {
    font-size: clamp(22px, 6.5vw, 32px);
  }

  .lead {
    font-size: 15px;
  }

  .stat-title {
    font-size: clamp(12px, 3.2vw, 16px);
  }

  .stat-card {
    min-height: auto;
    transform: none;
  }

  .stat-card:hover {
    transform: none;
  }

  .stat-flag-ring {
    width: 34px;
    height: 34px;
  }

  .stat-flags {
    gap: 6px;
    padding-top: 14px;
  }

  .stat-coin {
    max-height: 34px;
  }

  .mini-title {
    font-size: clamp(16px, 4vw, 20px);
  }

  .pill {
    font-size: 10px;
    padding: 8px 12px;
  }

  .actions {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .actions .btn {
    width: 100%;
    min-height: 50px;
    font-size: 14px;
    white-space: normal;
  }

  .stats,
  .service-grid,
  .steps,
  .reviews,
  .mini-grid,
  .checks,
  .cta {
    grid-template-columns: 1fr;
  }

  .swap-grid {
    grid-template-columns: 1fr;
  }

  .asset-picker__dropdown {
    width: 100%;
    left: 0;
    right: 0;
  }

  .swap-field:last-child .asset-picker__dropdown {
    left: 0;
    right: 0;
  }

  .swap {
    width: 100%;
  }

  .section {
    margin-top: 64px;
  }

  .glass-pad {
    padding: 20px;
  }

  .float {
    display: block;
  }

  .footer {
    padding-bottom: 92px;
  }
}
