/* Hero block — Aurora home-hub (scoped to .site) */
.site {
  --premium: #e8edf8;
}

.site .ah-btn {
  text-decoration: none;
}

.site .aurora-brand__logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
  display: inline-block;
  position: relative;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.55), transparent 22%),
    radial-gradient(circle at 68% 78%, rgba(96, 165, 250, 0.65), transparent 46%),
    linear-gradient(135deg, rgba(139, 92, 246, 0.88), rgba(96, 165, 250, 0.8));
  box-shadow:
    0 8px 22px rgba(96, 165, 250, 0.28),
    0 0 28px rgba(139, 92, 246, 0.16),
    inset 0 1px 8px rgba(255, 255, 255, 0.3),
    inset 0 -6px 14px rgba(6, 12, 28, 0.2);
  animation: ah-logo-melt 5.8s ease-in-out infinite;
}

.site .aurora-brand__logo::before {
  content: "";
  position: absolute;
  inset: -18%;
  background:
    radial-gradient(circle at 42% 36%, rgba(255, 255, 255, 0.24), transparent 18%),
    linear-gradient(115deg, transparent 28%, rgba(255, 255, 255, 0.2) 45%, transparent 62%);
  filter: blur(3px);
  opacity: 0.75;
  animation: ah-logo-caustic 4.8s ease-in-out infinite;
}

.site .aurora-brand__logo::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 6px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0) 58%);
  opacity: 0.45;
  animation: ah-logo-rim 5.8s ease-in-out infinite;
}

@keyframes ah-logo-melt {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-1px, 1px, 0) scale(1.04); }
}

@keyframes ah-logo-caustic {
  0%, 100% { transform: translate(-14%, -8%) rotate(-4deg); opacity: 0.45; }
  50% { transform: translate(8%, 6%) rotate(8deg); opacity: 0.82; }
}

@keyframes ah-logo-rim {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(0.98); }
}

.site .ah-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* вЂ”вЂ”вЂ” Hero (РїСЂРµРјРёР°Р»СЊРЅР°СЏ СЃС†РµРЅР°, Р±РµР· РѕС‚РґРµР»СЊРЅРѕРіРѕ mesh-СЃР»РѕСЏ) вЂ”вЂ”вЂ” */
.site .ah-hero {
  position: relative;
  padding: calc(var(--header-h) + 28px) 0 20px;
  overflow: visible;
  background: transparent;
}

.site .ah-hero__stage {
  position: relative;
  padding: clamp(36px, 5vw, 52px) clamp(28px, 4vw, 44px);
  border-radius: clamp(28px, 4.5vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.055) 0%,
    rgba(255, 255, 255, 0.02) 48%,
    rgba(255, 255, 255, 0.01) 100%
  );
  backdrop-filter: blur(24px) saturate(1.15);
  -webkit-backdrop-filter: blur(24px) saturate(1.15);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -24px 48px rgba(0, 0, 0, 0.12),
    0 40px 80px -24px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  isolation: isolate;
}

/* РњСЏРіРєРёР№ СЃРІРµС‚ РІРЅСѓС‚СЂРё РєР°СЂС‚РѕС‡РєРё вЂ” РЅРµ РєРѕРЅС„Р»РёРєС‚СѓРµС‚ СЃ С„РѕРЅРѕРј СЃС‚СЂР°РЅРёС†С‹ */
.site .ah-hero__stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 45% at 12% 0%, rgba(140, 165, 230, 0.12), transparent 55%),
    radial-gradient(ellipse 50% 40% at 88% 15%, rgba(150, 130, 210, 0.08), transparent 50%);
}

.site .ah-hero__stage::after {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.22) 20%,
    rgba(212, 200, 168, 0.35) 50%,
    rgba(255, 255, 255, 0.22) 80%,
    transparent
  );
}

.site .ah-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.site .ah-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 22px;
  padding: 6px 14px 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.site .ah-pill__dot {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.55);
  animation: ah-pill-dot-pulse 3s ease-in-out infinite;
}

@keyframes ah-pill-dot-pulse {
  0%, 100% {
    background: #86efac;
    box-shadow: 0 0 6px rgba(134, 239, 172, 0.35);
    opacity: 0.55;
  }
  50% {
    background: #22c55e;
    box-shadow: 0 0 14px rgba(34, 197, 94, 0.9);
    opacity: 1;
  }
}

.site .ah-hero__title {
  margin: 0 0 20px;
  font-size: clamp(34px, 5.2vw, 52px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: var(--text);
}

.site .ah-hero__title span {
  display: block;
  margin-top: 0.12em;
  padding-bottom: 0.1em;
  font-weight: 600;
  line-height: 1.22;
  background: linear-gradient(105deg, #f0f4fc 0%, #c5d0eb 45%, #b8aed8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.site .ah-hero__lead {
  margin: 0 0 32px;
  max-width: 32rem;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.65;
  font-weight: 400;
  color: var(--muted);
}

.site .ah-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 28px;
  align-items: start;
  margin: 0 0 32px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.site .ah-stat {
  min-width: 0;
  padding: 0;
  text-align: left;
  border: none;
  background: transparent;
  overflow-wrap: break-word;
}

.site .ah-stat:not(:first-child) {
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.site .ah-stat--phrase .ah-stat__val {
  font-size: clamp(22px, 3vw, 28px);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.site .ah-stat--phrase .ah-stat__lbl {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 11px;
  white-space: normal;
}

.site .ah-stat__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.site .ah-stat__link:hover .ah-stat__val {
  color: #fff;
}

.site .ah-stat__link:focus-visible {
  outline: none;
  border-radius: 8px;
  box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px rgba(125, 211, 252, 0.45);
}

.site .ah-stat__val {
  display: block;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--premium);
  font-variant-numeric: tabular-nums;
}

.site .ah-stat__lbl {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.4;
  white-space: normal;
}

.site .ah-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.site .ah-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text);
  cursor: pointer;
  touch-action: manipulation;
  transition: transform 0.2s, border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.site .ah-btn:not(.ah-btn--primary):hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
}

.site .ah-btn--primary {
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #0c101c;
  background: linear-gradient(180deg, #f6f8fd 0%, #e2e8f4 100%);
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.site .ah-btn--primary:hover {
  transform: translateY(-2px);
  color: #0c101c;
  background: linear-gradient(180deg, #fafbfe 0%, #e8edf6 100%);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow:
    0 6px 24px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.site .ah-btn--icon {
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: 14px;
}

/* Hero visual */
.site .ah-visual {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site .ah-visual__ring {
  position: absolute;
  inset: 0;
  margin: auto;
  width: min(92%, 320px);
  height: min(92%, 320px);
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.12);
  background: #0a0e18;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.35);
}

.site .ah-visual__ring-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  transform: rotate(0deg);
  transform-origin: center center;
  will-change: transform;
}

.site .ah-visual__controls {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.site .ah-visual__play {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  background: rgba(8, 12, 22, 0.96);
  color: #f4f6fc;
  cursor: pointer;
  touch-action: manipulation;
  pointer-events: auto;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.5);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.site .ah-visual__play:hover {
  background: rgba(18, 24, 40, 0.98);
  border-color: rgba(255, 255, 255, 0.32);
  transform: scale(1.04);
}

.site .ah-visual__play:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px rgba(125, 211, 252, 0.45);
}

.site .ah-visual__icon {
  grid-area: 1 / 1;
  width: 36px;
  height: 36px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site .ah-visual__icon--pause {
  opacity: 0;
  transform: scale(0.85);
}

.site .ah-visual__play.is-playing .ah-visual__icon--play {
  opacity: 0;
  transform: scale(0.85);
}

.site .ah-visual__play.is-playing .ah-visual__icon--pause {
  opacity: 1;
  transform: scale(1);
}

.site .ah-core-whisper {
  position: absolute;
  z-index: 5;
  left: calc(50% + 68px);
  top: calc(50% - 92px);
  max-width: 220px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(167, 139, 250, 0.34);
  background: linear-gradient(145deg, rgba(22, 30, 52, 0.92), rgba(13, 19, 34, 0.96));
  color: #dbeafe;
  font-size: 12px;
  line-height: 1.35;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  pointer-events: none;
  opacity: 0;
  transform: translateY(10px) scale(0.94);
  transform-origin: left bottom;
}

.site .ah-core-whisper::before {
  content: "";
  position: absolute;
  left: -7px;
  bottom: 14px;
  width: 12px;
  height: 12px;
  background: inherit;
  border-left: 1px solid rgba(167, 139, 250, 0.34);
  border-bottom: 1px solid rgba(167, 139, 250, 0.34);
  transform: rotate(45deg);
}

.site .ah-core-whisper.is-show {
  animation: ah-core-whisper-in-out 2400ms cubic-bezier(0.2, 0.72, 0.24, 1);
}

.site .ah-orbit-card {
  position: absolute;
  z-index: 3;
  width: 156px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 12, 22, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease, border-color 0.3s, box-shadow 0.3s;
  animation: ah-orbit-card-float-tl 5.6s ease-in-out infinite;
  will-change: transform;
}

.site .ah-orbit-card:hover {
  animation-play-state: paused;
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.site .ah-orbit-card--tl { top: 8%; left: 0; animation-name: ah-orbit-card-float-tl; animation-duration: 5.2s; animation-delay: 0s; }
.site .ah-orbit-card--tr { top: 12%; right: 0; animation-name: ah-orbit-card-float-tr; animation-duration: 6.1s; animation-delay: -1.4s; }
.site .ah-orbit-card--bl { bottom: 10%; left: 4%; animation-name: ah-orbit-card-float-bl; animation-duration: 5.8s; animation-delay: -2.7s; }
.site .ah-orbit-card--br { bottom: 8%; right: 2%; animation-name: ah-orbit-card-float-br; animation-duration: 6.4s; animation-delay: -0.9s; }

.site .ah-orbit-card__ico {
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 18px;
}

.site .ah-orbit-card--tl .ah-orbit-card__ico {
  background: rgba(250, 204, 21, 0.2);
  color: #fde68a;
}
.site .ah-orbit-card--tr .ah-orbit-card__ico { background: rgba(0, 120, 215, 0.25); color: #7dd3fc; }
.site .ah-orbit-card--bl .ah-orbit-card__ico { background: rgba(61, 220, 132, 0.18); color: #86efac; }
.site .ah-orbit-card--br .ah-orbit-card__ico { background: rgba(167, 139, 250, 0.2); color: #c4b5fd; }

.site .ah-orbit-card__title {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 3px;
}

.site .ah-orbit-card__sub {
  font-size: 12px;
  line-height: 1.35;
  color: var(--muted);
  margin: 0;
  white-space: normal;
  overflow-wrap: break-word;
}

@keyframes ah-visual-mobile-glow {
  0%, 100% {
    opacity: 0.45;
  }
  50% {
    opacity: 0.95;
  }
}

@keyframes ah-visual-mobile-aurora {
  0%, 100% {
    transform: translateX(-50%) scale(1);
    opacity: 0.34;
  }
  50% {
    transform: translateX(-50%) scale(1.02);
    opacity: 0.5;
  }
}

@keyframes ah-visual-mobile-aurora-orb {
  0%, 100% {
    opacity: 0.16;
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    opacity: 0.28;
    transform: translate3d(0, -1px, 0) scale(1.04);
  }
}

@keyframes ah-visual-ring-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes ah-visual-core-float {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-6px) scale(1.02);
  }
}

@keyframes ah-visual-core-float-mobile {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-3px) scale(1.015);
  }
}

@keyframes ah-visual-core-jelly-organic {
  0% {
    transform: translateY(0) scale(1, 1) rotate(0deg);
    border-radius: 38px 44px 34px 46px / 42px 34px 48px 36px;
    box-shadow: 0 0 60px rgba(100, 120, 200, 0.12);
  }
  12% {
    transform: translateY(2px) scale(1.1, 0.89) rotate(calc(var(--jelly-rot, 0deg) * -0.75));
    border-radius: 52px 36px 58px 30px / 32px 62px 26px 54px;
    box-shadow: 0 8px 70px rgba(96, 165, 250, 0.2);
  }
  24% {
    transform: translateY(-4px) scale(0.92, 1.09) rotate(calc(var(--jelly-rot, 0deg) * 0.76));
    border-radius: 28px 60px 32px 54px / 58px 30px 50px 34px;
  }
  38% {
    transform: translateY(2px) scale(1.05, 0.95) rotate(calc(var(--jelly-rot, 0deg) * -0.55));
    border-radius: 54px 32px 44px 28px / 30px 52px 34px 58px;
  }
  52% {
    transform: translateY(-2px) scale(0.96, 1.05) rotate(calc(var(--jelly-rot, 0deg) * 0.38));
    border-radius: 32px 48px 26px 56px / 50px 28px 58px 32px;
  }
  68% {
    transform: translateY(1px) scale(1.02, 0.99) rotate(calc(var(--jelly-rot, 0deg) * -0.22));
    border-radius: 46px 36px 52px 30px / 34px 48px 32px 54px;
  }
  82% {
    transform: translateY(0) scale(0.995, 1.01) rotate(calc(var(--jelly-rot, 0deg) * 0.1));
    border-radius: 42px 41px 36px 47px / 45px 35px 49px 39px;
  }
  92% {
    transform: translateY(0) scale(1.005, 0.997) rotate(calc(var(--jelly-rot, 0deg) * -0.06));
    border-radius: 40px 42px 35px 47px / 43px 35px 49px 37px;
  }
  100% {
    transform: translateY(0) scale(1, 1) rotate(0deg);
    border-radius: 38px 44px 34px 46px / 42px 34px 48px 36px;
    box-shadow: 0 0 60px rgba(100, 120, 200, 0.12);
  }
}

@keyframes ah-visual-core-gel-sheen {
  0% { opacity: 0.78; transform: scale(1); }
  35% { opacity: 0.98; transform: scale(1.06, 0.94); }
  70% { opacity: 0.85; transform: scale(0.97, 1.03); }
  100% { opacity: 0.7; transform: scale(1); }
}

@keyframes ah-visual-core-bio-pulse {
  0% {
    opacity: 0;
    transform: scale(0.7);
  }
  24% {
    opacity: 0.72;
    transform: scale(1.03);
  }
  68% {
    opacity: 0.28;
    transform: scale(1.17);
  }
  100% {
    opacity: 0;
    transform: scale(1.26);
  }
}

@keyframes ah-visual-card-in {
  from {
    transform: translateY(10px);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes ah-orbit-card-float-tl {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-2px, -5px, 0); }
}

@keyframes ah-orbit-card-float-tr {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(2px, -5px, 0); }
}

@keyframes ah-orbit-card-float-bl {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-2px, 4px, 0); }
}

@keyframes ah-orbit-card-float-br {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(2px, 4px, 0); }
}

@keyframes ah-core-whisper-in-out {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.94);
  }
  14% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  82% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-6px) scale(0.98);
  }
}

@keyframes ah-page-shake {
  0% { transform: translate3d(0, 0, 0); }
  12% { transform: translate3d(-2px, 1px, 0) rotate(-0.25deg); }
  26% { transform: translate3d(2px, -1px, 0) rotate(0.22deg); }
  40% { transform: translate3d(-1px, 1px, 0) rotate(-0.18deg); }
  56% { transform: translate3d(1px, 0, 0) rotate(0.12deg); }
  74% { transform: translate3d(-1px, -1px, 0) rotate(-0.08deg); }
  100% { transform: translate3d(0, 0, 0); }
}

.site .reveal,
.site .reveal-up {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.site .reveal.visible,
.site .reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .site .ah-hero__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site .ah-visual {
    min-height: 320px;
    max-width: min(400px, 100%);
    margin: 0 auto;
  }

  .site .ah-visual__ring {
    width: min(88%, 280px);
  }

  .site .ah-orbit-card {
    width: 148px;
    padding: 14px 16px;
  }

  .site .ah-orbit-card__ico {
    width: 38px;
    height: 38px;
    font-size: 17px;
  }

  .site .ah-orbit-card__title {
    font-size: 14px;
  }

  .site .ah-orbit-card__sub {
    font-size: 11px;
    white-space: nowrap;
  }

  .site .ah-core-whisper {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .site .ah-wrap {
    padding-left: max(16px, env(safe-area-inset-left, 0px));
    padding-right: max(16px, env(safe-area-inset-right, 0px));
  }

  .site .ah-hero {
    padding: calc(var(--header-h) + 20px + env(safe-area-inset-top, 0px)) 0 16px;
  }

  .site .ah-hero__stage {
    padding: 24px 18px;
    border-radius: 32px;
  }

  .site .ah-hero__title {
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.14;
  }

  .site .ah-hero__title span {
    padding-bottom: 0.12em;
    line-height: 1.24;
  }

  .site .ah-hero__lead {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .site .ah-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 12px;
    row-gap: 0;
    padding: 16px 0;
    align-items: center;
    text-align: center;
  }

  .site .ah-stat,
  .site .ah-stat:not(:first-child) {
    padding: 0;
    border: none;
    text-align: center;
  }

  .site .ah-stat__val {
    font-size: clamp(17px, 4.2vw, 22px);
    text-align: center;
    overflow-wrap: break-word;
  }

  .site .ah-stat--phrase .ah-stat__val {
    font-size: clamp(15px, 3.8vw, 20px);
  }

  .site .ah-stat__lbl {
    font-size: 10px;
    white-space: normal;
    overflow-wrap: break-word;
    text-align: center;
    line-height: 1.35;
  }

  .site .ah-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
  }

  .site .ah-hero__actions .ah-btn {
    width: 100%;
    min-height: 48px;
    padding: 14px 20px;
    font-size: 15px;
  }

  /* Hero visual — мобильный «хаб» платформ */
  .site .ah-visual {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 200px repeat(2, auto);
    gap: 10px 8px;
    min-height: 0;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 20px 14px 18px;
    overflow: hidden;
    isolation: isolate;
    border-radius: 22px;
    border: 1px solid rgba(201, 216, 255, 0.12);
    background:
      radial-gradient(ellipse 90% 70% at 50% -20%, rgba(96, 165, 250, 0.14), transparent 55%),
      radial-gradient(ellipse 60% 50% at 100% 100%, rgba(139, 92, 246, 0.1), transparent 50%),
      linear-gradient(165deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.015) 100%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 16px 40px rgba(0, 0, 0, 0.28);
  }

  .site .ah-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.35;
    mask-image: linear-gradient(180deg, #000 0%, transparent 85%);
  }

  /* Hero РІ РїРµСЂРІРѕРј СЌРєСЂР°РЅРµ вЂ” Р±РµР· СЃРєСЂС‹С‚РёСЏ С‡РµСЂРµР· .reveal */
  .site .ah-hero__stage.reveal-up,
  .site .ah-hero__stage.reveal-up.visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .site .ah-visual {
    opacity: 1;
    transform: none;
  }

  .site .ah-visual__ring {
    display: block;
    position: relative;
    grid-column: 1 / -1;
    grid-row: 1;
    top: auto;
    left: auto;
    width: 172px;
    height: 172px;
    margin: 0 auto;
    transform: none;
    justify-self: center;
    align-self: center;
    z-index: 1;
    border: 2px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    overflow: hidden;
    background: #0a0e18;
    filter: none;
    animation: none;
    box-shadow: 0 0 32px rgba(0, 0, 0, 0.35);
  }

  .site .ah-visual__ring.is-spinning {
    animation: none;
  }

  .site .ah-visual__ring::before,
  .site .ah-visual__ring::after {
    display: none;
  }

  .site .ah-visual__controls {
    grid-column: 1 / -1;
    grid-row: 1;
    justify-self: center;
    align-self: center;
    margin: 0;
    z-index: 4;
  }

  .site .ah-visual__play {
    width: 56px;
    height: 56px;
  }

  .site .ah-visual__icon {
    width: 32px;
    height: 32px;
  }

  .site .ah-visual .aurora-brand__logo,
  .site .ah-visual .aurora-brand__logo::before,
  .site .ah-visual .aurora-brand__logo::after {
    animation: none;
  }

  .site .ah-orbit-card {
    position: relative;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    z-index: 1;
    width: auto;
    min-width: 0;
    padding: 11px 10px 11px 12px;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 10px;
    row-gap: 1px;
    align-items: center;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(6, 10, 22, 0.55);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    opacity: 1;
    animation: ah-visual-card-in 0.4s ease both;
  }

  .site .ah-orbit-card--tl {
    grid-row: 2;
    grid-column: 1;
    animation-delay: 0.05s;
    border-left: 3px solid #60a5fa;
  }

  .site .ah-orbit-card--tr {
    grid-row: 2;
    grid-column: 2;
    animation-delay: 0.1s;
    border-left: 3px solid #38bdf8;
  }

  .site .ah-orbit-card--bl {
    grid-row: 3;
    grid-column: 1;
    animation-delay: 0.15s;
    border-left: 3px solid #4ade80;
  }

  .site .ah-orbit-card--br {
    grid-row: 3;
    grid-column: 2;
    animation-delay: 0.2s;
    border-left: 3px solid #a78bfa;
  }

  .site .ah-orbit-card:hover {
    transform: none;
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(8, 12, 24, 0.65);
  }

  .site .ah-orbit-card__ico {
    grid-row: 1 / 3;
    width: 34px;
    height: 34px;
    margin: 0;
    font-size: 15px;
    border-radius: 10px;
  }

  .site .ah-orbit-card__title {
    grid-column: 2;
    grid-row: 1;
    font-size: 13px;
    line-height: 1.2;
    align-self: end;
    min-width: 0;
    margin: 0;
  }

  .site .ah-orbit-card__sub {
    grid-column: 2;
    grid-row: 2;
    font-size: clamp(10px, 2.8vw, 11px);
    line-height: 1.35;
    white-space: normal;
    overflow-wrap: break-word;
    min-width: 0;
    margin: 0;
  }
}

@media (max-width: 640px) {
  .site .ah-stats {
    grid-template-columns: 1fr;
    row-gap: 14px;
    column-gap: 0;
    text-align: center;
  }

  .site .ah-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
  }

  .site .ah-stat__val {
    flex-shrink: 0;
    text-align: center;
  }

  .site .ah-stat__lbl {
    margin-top: 0;
    text-align: center;
  }

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

  .site .ah-visual {
    grid-template-rows: 188px repeat(2, auto);
    padding: 18px 12px 16px;
    gap: 10px 7px;
  }

  .site .ah-visual__ring {
    width: 148px;
    height: 148px;
  }

  .site .ah-visual__play {
    width: 50px;
    height: 50px;
  }

  .site .ah-visual__icon {
    width: 28px;
    height: 28px;
  }

  .site .ah-orbit-card {
    padding: 10px 9px 10px 10px;
    column-gap: 8px;
  }

  .site .ah-orbit-card__ico {
    width: 30px;
    height: 30px;
    font-size: 13px;
  }

  .site .ah-orbit-card__title {
    font-size: 12px;
  }
}

@media (min-width: 400px) and (max-width: 767px) {
  .site .ah-hero__actions {
    grid-template-columns: 1fr 1fr;
  }
}

@media (hover: none) and (pointer: coarse) {
  .site .ah-btn:hover {
    transform: none;
  }

  .site .ah-btn--primary:active {
    filter: brightness(0.98);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site .ah-pill__dot {
    animation: none;
    opacity: 1;
  }

  .site .aurora-brand__logo,
  .site .aurora-brand__logo::before,
  .site .aurora-brand__logo::after {
    animation: none;
  }

  .site .ah-visual__ring,
  .site .ah-orbit-card {
    animation: none;
  }

  .site .ah-visual__ring::before,
  .site .ah-visual__ring::after {
    animation: none;
  }
}
