/* Aurora — официальный сайт (главная). Подключается только на index.php */

.aurora-home {
  --ah-bg: #050810;
  --ah-bg-2: #0a101c;
  --ah-surface: rgba(12, 16, 28, 0.65);
  --ah-surface-2: rgba(255, 255, 255, 0.035);
  --ah-border: rgba(255, 255, 255, 0.08);
  --ah-border-strong: rgba(214, 224, 255, 0.2);
  --ah-text: #f4f6fc;
  --ah-muted: #8b95a8;
  --ah-accent: #b8c9f0;
  --ah-accent-2: #c4b5fd;
  --ah-glow: rgba(100, 120, 200, 0.22);
  --ah-premium: #e8edf8;
  --ah-champagne: rgba(212, 200, 168, 0.45);
  --ah-radius: 24px;
  --ah-radius-sm: 14px;
  --ah-shadow: 0 32px 64px -16px rgba(0, 0, 0, 0.65);
  --ah-max: 1120px;
  --ah-header-h: 64px;
}

body.aurora-home {
  color: var(--ah-text);
  font-family: "Manrope", Inter, system-ui, -apple-system, sans-serif;
  background-color: var(--ah-bg) !important;
  background-image: none !important;
  padding-top: 0 !important;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* Единый фиксированный фон сайта (без отдельных «пятен» в hero) */
body.aurora-home::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  mask-image: none;
  -webkit-mask-image: none;
  background:
    radial-gradient(ellipse 100% 80% at 50% -30%, rgba(88, 110, 180, 0.14), transparent 55%),
    radial-gradient(ellipse 70% 50% at 0% 40%, rgba(70, 90, 160, 0.08), transparent 50%),
    radial-gradient(ellipse 60% 45% at 100% 60%, rgba(100, 80, 160, 0.07), transparent 48%),
    linear-gradient(180deg, var(--ah-bg) 0%, var(--ah-bg-2) 42%, #070b14 100%);
}

body.aurora-home::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

html:has(body.aurora-home) {
  scroll-padding-top: 92px;
  -webkit-tap-highlight-color: transparent;
}

.aurora-home .ah-section[id],
.aurora-home section[id] {
  scroll-margin-top: calc(88px + env(safe-area-inset-top, 0px));
}

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

/* ——— Header ——— */
.aurora-home .ah-header {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1100;
  width: calc(100% - 24px);
  max-width: var(--ah-max);
  padding: 10px 14px;
  border-radius: 18px;
  border: 1px solid rgba(201, 216, 255, 0.14);
  background: rgba(8, 12, 22, 0.72);
  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.aurora-home .ah-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: relative;
}

.aurora-home .ah-header__toggle {
  display: none;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--ah-text);
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.2s, border-color 0.2s;
}

.aurora-home .ah-header__toggle:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.16);
}

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

.aurora-home .ah-header__toggle-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 20px;
}

.aurora-home .ah-header__toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.aurora-home .ah-header.is-open .ah-header__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.aurora-home .ah-header.is-open .ah-header__toggle-bar:nth-child(2) {
  opacity: 0;
}

.aurora-home .ah-header.is-open .ah-header__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Быстрый переход «Цены» — только на мобильных */
.aurora-home .ah-header__quick {
  display: none;
}

.aurora-home .ah-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
  color: inherit;
}

/* Официальный логотип Aurora (как в личном кабинете / админке) */
.aurora-home .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;
}

.aurora-home .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;
}

.aurora-home .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); }
}

.aurora-home .ah-brand__logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
}

.aurora-home .aurora-brand__logo.ah-brand__logo::after {
  border-radius: 8px;
}

.aurora-home .ah-brand__text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.aurora-home .ah-brand__kicker {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ah-accent);
}

.aurora-home .ah-brand__name {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.aurora-home .ah-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.aurora-home .ah-nav__link {
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ah-muted);
  border: 1px solid transparent;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.aurora-home .ah-nav__link:hover {
  color: var(--ah-text);
  background: var(--ah-surface-2);
  border-color: var(--ah-border);
}

.aurora-home .ah-nav__cta {
  margin-left: 4px;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: #0c101c;
  background: linear-gradient(180deg, #f2f5fc 0%, #dce3f2 100%);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: filter 0.2s, transform 0.2s, box-shadow 0.2s;
}

.aurora-home .ah-nav__cta:hover {
  filter: brightness(1.03);
  transform: translateY(-1px);
  color: #0c101c;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

/* ——— Hero (премиальная сцена, без отдельного mesh-слоя) ——— */
.aurora-home .ah-hero {
  position: relative;
  padding: calc(var(--ah-header-h) + 28px) 0 20px;
  overflow: visible;
  background: transparent;
}

.aurora-home .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;
}

/* Мягкий свет внутри карточки — не конфликтует с фоном страницы */
.aurora-home .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%);
}

.aurora-home .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
  );
}

.aurora-home .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;
}

.aurora-home .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(--ah-accent);
}

.aurora-home .ah-pill__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #a8c4a0;
  box-shadow: 0 0 8px rgba(168, 196, 160, 0.5);
}

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

.aurora-home .ah-hero__title span {
  display: block;
  margin-top: 0.12em;
  font-weight: 600;
  background: linear-gradient(105deg, #f0f4fc 0%, #c5d0eb 45%, #b8aed8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.aurora-home .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(--ah-muted);
}

.aurora-home .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);
}

.aurora-home .ah-stat {
  min-width: 0;
  padding: 0;
  text-align: left;
  border: none;
  background: transparent;
}

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

.aurora-home .ah-stat--phrase .ah-stat__val {
  font-size: clamp(17px, 2.35vw, 22px);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.aurora-home .ah-stat--phrase .ah-stat__lbl {
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 12px;
}

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

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

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

.aurora-home .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(--ah-border);
  background: var(--ah-surface-2);
  color: var(--ah-text);
  cursor: pointer;
  touch-action: manipulation;
  transition: transform 0.2s, border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.aurora-home .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(--ah-text);
}

.aurora-home .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);
}

.aurora-home .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);
}

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

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

.aurora-home .ah-visual__ring {
  position: absolute;
  width: min(92%, 300px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
}

.aurora-home .ah-visual__core {
  position: relative;
  z-index: 2;
  width: 128px;
  height: 128px;
  border-radius: 34px;
  display: grid;
  place-items: center;
  box-shadow: 0 0 60px rgba(100, 120, 200, 0.12);
}

.aurora-home .ah-visual__logo {
  width: 84px;
  height: 84px;
  border-radius: 21px;
}

.aurora-home .ah-orbit-card {
  position: absolute;
  z-index: 3;
  width: 140px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 12, 22, 0.72);
  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;
}

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

.aurora-home .ah-orbit-card--tl { top: 8%; left: 0; }
.aurora-home .ah-orbit-card--tr { top: 12%; right: 0; }
.aurora-home .ah-orbit-card--bl { bottom: 10%; left: 4%; }
.aurora-home .ah-orbit-card--br { bottom: 8%; right: 2%; }

.aurora-home .ah-orbit-card__ico {
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  font-size: 16px;
}

.aurora-home .ah-orbit-card--tl .ah-orbit-card__ico { background: rgba(96, 165, 250, 0.2); color: #93c5fd; }
.aurora-home .ah-orbit-card--tr .ah-orbit-card__ico { background: rgba(0, 120, 215, 0.25); color: #7dd3fc; }
.aurora-home .ah-orbit-card--bl .ah-orbit-card__ico { background: rgba(61, 220, 132, 0.18); color: #86efac; }
.aurora-home .ah-orbit-card--br .ah-orbit-card__ico { background: rgba(167, 139, 250, 0.2); color: #c4b5fd; }

.aurora-home .ah-orbit-card__title {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 2px;
}

.aurora-home .ah-orbit-card__sub {
  font-size: 11px;
  color: var(--ah-muted);
  margin: 0;
}

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

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

/* ——— Sections ——— */
.aurora-home .ah-section {
  padding: 64px 0;
  position: relative;
}

.aurora-home .ah-section#products {
  padding-top: 48px;
}

.aurora-home .ah-section--panel {
  padding: 64px 0;
}

.aurora-home #pricing.ah-section--panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(80, 100, 180, 0.06), transparent 70%);
}

.aurora-home .ah-section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 36px;
}

.aurora-home .ah-section__eyebrow {
  display: inline-block;
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ah-accent);
}

.aurora-home .ah-section__title {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.aurora-home .ah-section__lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ah-muted);
}

/* Products */
.aurora-home .ah-products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}

.aurora-home .ah-product {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 26px 24px;
  border-radius: var(--ah-radius);
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s ease, border-color 0.35s, box-shadow 0.35s;
}

.aurora-home .ah-product::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0.9;
}

.aurora-home .ah-product--browser::before { background: linear-gradient(90deg, #60a5fa, #38bdf8); }
.aurora-home .ah-product--windows::before { background: linear-gradient(90deg, #38bdf8, #0ea5e9); }
.aurora-home .ah-product--android::before { background: linear-gradient(90deg, #4ade80, #22c55e); }
.aurora-home .ah-product--ios::before { background: linear-gradient(90deg, #c4b5fd, #a78bfa); }

.aurora-home .ah-product:hover {
  transform: translateY(-6px);
  border-color: var(--ah-border-strong);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
  color: inherit;
}

.aurora-home .ah-product__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.aurora-home .ah-product__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--ah-border);
}

.aurora-home .ah-product__arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 14px;
  color: var(--ah-muted);
  border: 1px solid var(--ah-border);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.aurora-home .ah-product:hover .ah-product__arrow {
  background: rgba(125, 211, 252, 0.15);
  color: var(--ah-text);
  transform: translate(2px, -2px);
}

.aurora-home .ah-product__title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.aurora-home .ah-product__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ah-muted);
  flex: 1;
}

.aurora-home .ah-product__tag {
  align-self: flex-start;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  color: #bae6fd;
  background: rgba(125, 211, 252, 0.1);
  border: 1px solid rgba(125, 211, 252, 0.2);
}

/* ——— Тарифы (внутри панели, стабильная сетка) ——— */
.aurora-home .ah-pricing-panel.tariffs-section {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  padding: 28px 22px 26px;
  border-radius: 26px;
  border: 1px solid rgba(201, 216, 255, 0.12);
  background: linear-gradient(165deg, rgba(12, 18, 34, 0.92), rgba(8, 12, 24, 0.88));
  box-shadow:
    var(--ah-shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: visible;
}

.aurora-home .ah-pricing-panel .tariffs-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  margin: 0;
  align-items: stretch;
}

.aurora-home .ah-pricing-panel .tariff-card {
  position: relative;
  min-width: 0;
  width: auto;
  height: auto;
  float: none;
  margin: 0;
  box-sizing: border-box;
}

.aurora-home .ah-pricing-panel .tariff-card__price {
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  word-break: break-word;
}

.aurora-home .ah-pricing-panel .tariff-card__feature {
  font-size: 0.8125rem;
  line-height: 1.45;
}

@media (max-width: 1100px) {
  .aurora-home .ah-pricing-panel .tariffs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .aurora-home .ah-pricing-panel .tariff-card--trial {
    grid-column: 1 / -1;
    max-width: none;
    justify-self: stretch;
    width: 100%;
  }
}

@media (max-width: 720px) {
  .aurora-home .ah-pricing-panel {
    padding: 20px 14px 18px;
    border-radius: 20px;
  }
  .aurora-home .ah-pricing-panel .tariffs-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .aurora-home .ah-pricing-panel .tariff-card--trial {
    max-width: none;
  }
}

/* Features & steps */
.aurora-home .ah-cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.aurora-home .ah-glass-card {
  padding: 22px;
  border-radius: var(--ah-radius);
  border: 1px solid var(--ah-border);
  background: var(--ah-surface);
  height: 100%;
}

.aurora-home .ah-glass-card__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 18px;
  color: #bae6fd;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.2), rgba(139, 92, 246, 0.15));
  border: 1px solid rgba(125, 211, 252, 0.2);
}

.aurora-home .ah-glass-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 700;
}

.aurora-home .ah-glass-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ah-muted);
}

.aurora-home .ah-step {
  position: relative;
  padding: 22px 22px 22px 72px;
  border-radius: var(--ah-radius);
  border: 1px solid var(--ah-border);
  background: var(--ah-surface);
  min-height: 100%;
}

.aurora-home .ah-step__num {
  position: absolute;
  left: 20px;
  top: 22px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
  background: linear-gradient(135deg, #bae6fd, #a78bfa);
}

.aurora-home .ah-step p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ah-muted);
}

/* FAQ */
.aurora-home .ah-faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 760px;
  margin: 0 auto;
}

.aurora-home .ah-faq__item {
  padding: 18px 20px;
  border-radius: var(--ah-radius-sm);
  border: 1px solid var(--ah-border);
  background: var(--ah-surface);
  border-left: 3px solid rgba(125, 211, 252, 0.45);
}

.aurora-home .ah-faq__q {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
}

.aurora-home .ah-faq__a {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ah-muted);
}

.aurora-home .ah-faq__a a {
  color: #93c5fd;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Footer tweaks on home */
.aurora-home .footer {
  margin-top: 24px;
  padding-top: 40px;
  border-top: 1px solid var(--ah-border);
}

.aurora-home .btn.primary,
.aurora-home .tariff-card__btn.btn.primary {
  color: #0c101c;
  background: linear-gradient(180deg, #f2f5fc 0%, #dce3f2 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.aurora-home .btn.primary:hover,
.aurora-home .tariff-card__btn.btn.primary:hover {
  color: #0a0f1a;
}

.aurora-home .footer.container {
  max-width: var(--ah-max);
  box-sizing: border-box;
}

.aurora-home .footer-row > div:first-child {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ah-muted);
}

.aurora-home .footer-links a {
  color: var(--ah-muted);
}

.aurora-home .footer-links a:hover {
  color: var(--ah-text);
}

.aurora-home #official-mark-slot {
  margin-top: 10px;
  display: flex;
  justify-content: center;
}

/* Footer — десктоп (не наследовать мобильную колонку) */
@media (min-width: 768px) {
  .aurora-home .footer.container {
    display: block;
    padding-bottom: 32px;
  }

  .aurora-home .footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
  }

  .aurora-home .footer-row > div:first-child {
    text-align: left;
    padding-top: 0;
    border-top: none;
    order: unset;
  }

  .aurora-home .footer-links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    width: auto;
    gap: 16px;
    order: unset;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    border-radius: 0;
    overflow: visible;
  }

  .aurora-home .footer-links a {
    display: inline-block;
    min-height: 0;
    padding: 0;
    font-size: inherit;
    font-weight: inherit;
    border-bottom: none;
    background: transparent;
  }

  .aurora-home .footer-links a:hover {
    background: transparent;
  }

  .aurora-home .footer-social {
    order: unset;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
  }

  .aurora-home .social-title {
    text-align: center;
    margin-bottom: 12px;
  }

  .aurora-home .social-links {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: auto;
    gap: 16px;
  }

  .aurora-home .social-link {
    width: auto;
    max-width: none;
    min-height: 0;
    padding: 10px 16px;
    border-radius: 12px;
    border: none;
    background: transparent;
  }

  .aurora-home #official-mark-slot {
    order: unset;
    margin-top: 10px;
  }

  .aurora-home .official-mark--footer {
    width: auto;
    max-width: none;
    margin: 0 auto;
  }
}

/* Reveal */
.aurora-home .reveal,
.aurora-home .reveal-up {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

/* ——— Tablet (iPad и др.) ——— */
@media (max-width: 1024px) {
  .aurora-home {
    --ah-header-h: 56px;
  }

  html:has(body.aurora-home) {
    scroll-padding-top: 80px;
  }

  .aurora-home .ah-section {
    padding: 52px 0;
  }

  .aurora-home .ah-section__head {
    margin-bottom: 28px;
  }
}

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

  .aurora-home .ah-visual {
    min-height: 280px;
    max-width: min(360px, 100%);
    margin: 0 auto;
  }

  .aurora-home .ah-visual__ring {
    width: min(88%, 260px);
  }

  .aurora-home .ah-orbit-card {
    width: 124px;
    padding: 11px 12px;
  }

  .aurora-home .ah-products {
    grid-template-columns: 1fr;
  }

  .aurora-home .ah-cards-3 {
    grid-template-columns: 1fr;
  }
}

/* ——— Phone (iPhone / Android) ——— */
@media (max-width: 767px) {
  .aurora-home {
    --ah-header-h: 52px;
    --ah-radius: 20px;
  }

  html:has(body.aurora-home) {
    scroll-padding-top: calc(72px + env(safe-area-inset-top, 0px));
  }

  .aurora-home .ah-wrap {
    padding-left: max(16px, env(safe-area-inset-left, 0px));
    padding-right: max(16px, env(safe-area-inset-right, 0px));
  }

  .aurora-home .ah-header {
    top: max(8px, env(safe-area-inset-top, 0px));
    left: 50%;
    width: calc(100% - 16px - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px));
    max-width: none;
    padding: 6px 8px 6px 10px;
    border-radius: 16px;
  }

  .aurora-home .ah-header__inner {
    flex-wrap: nowrap;
    gap: 8px;
  }

  .aurora-home .ah-brand {
    flex: 1 1 auto;
    min-width: 0;
    gap: 10px;
  }

  .aurora-home .ah-brand__logo {
    width: 36px;
    height: 36px;
  }

  .aurora-home .ah-brand__kicker {
    display: none;
  }

  .aurora-home .ah-brand__name {
    font-size: 17px;
  }

  .aurora-home .ah-header__quick {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-height: 40px;
    margin-left: auto;
    margin-right: 6px;
    padding: 0 14px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    color: #0c101c;
    background: linear-gradient(180deg, #f6f8fd 0%, #e2e8f4 100%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.65);
    touch-action: manipulation;
    transition: filter 0.2s, box-shadow 0.2s;
  }

  .aurora-home .ah-header__quick:active {
    filter: brightness(0.98);
  }

  .aurora-home .ah-header__toggle {
    display: flex;
    flex-shrink: 0;
  }

  .aurora-home .ah-nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    margin: 0;
    padding: 8px;
    max-height: min(72vh, 400px);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    border-radius: 14px;
    border: 1px solid rgba(201, 216, 255, 0.14);
    background: rgba(10, 14, 26, 0.96);
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5);
  }

  .aurora-home .ah-header.is-open .ah-nav {
    display: flex;
  }

  .aurora-home .ah-nav__link,
  .aurora-home .ah-nav__cta {
    width: 100%;
    min-height: 48px;
    justify-content: center;
    font-size: 15px;
    white-space: normal;
    border-radius: 12px;
  }

  .aurora-home .ah-nav__link {
    padding: 12px 16px;
    color: var(--ah-text);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
  }

  .aurora-home .ah-nav__cta {
    margin-left: 0;
    margin-top: 4px;
    padding: 13px 16px;
    order: 10;
  }

  body.aurora-home.ah-nav-open {
    overflow: hidden;
    touch-action: none;
  }

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

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

  .aurora-home .ah-hero__title {
    font-size: clamp(28px, 8vw, 36px);
  }

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

  .aurora-home .ah-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 12px;
    row-gap: 0;
    padding: 16px 0;
  }

  .aurora-home .ah-stat,
  .aurora-home .ah-stat:not(:first-child) {
    padding: 0;
    border: none;
  }

  .aurora-home .ah-stat__val {
    font-size: clamp(17px, 4.2vw, 22px);
  }

  .aurora-home .ah-stat--phrase .ah-stat__val {
    font-size: clamp(14px, 3.5vw, 18px);
  }

  .aurora-home .ah-stat__lbl {
    font-size: 10px;
    white-space: normal;
  }

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

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

  /* Hero visual — мобильный «хаб» платформ */
  .aurora-home .ah-visual {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    min-height: 0;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 22px 14px 16px;
    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);
  }

  .aurora-home .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 */
  .aurora-home .ah-hero__stage.reveal-up,
  .aurora-home .ah-hero__stage.reveal-up.visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

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

  .aurora-home .ah-visual__ring {
    display: block;
    position: absolute;
    top: 18px;
    left: 50%;
    width: 148px;
    height: 148px;
    margin: 0;
    transform: translateX(-50%);
    z-index: 0;
    border-color: rgba(125, 211, 252, 0.14);
    background: radial-gradient(circle, rgba(96, 165, 250, 0.08) 0%, transparent 68%);
    animation: ah-visual-mobile-glow 5s ease-in-out infinite;
  }

  .aurora-home .ah-visual__core {
    grid-column: 1 / -1;
    justify-self: center;
    position: relative;
    z-index: 2;
    width: 88px;
    height: 88px;
    border-radius: 22px;
    margin: 0 auto 14px;
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.1),
      0 0 48px rgba(96, 165, 250, 0.28),
      0 0 72px rgba(139, 92, 246, 0.12);
  }

  .aurora-home .ah-visual__core::after {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 28px;
    border: 1px dashed rgba(125, 211, 252, 0.22);
    opacity: 0.7;
    pointer-events: none;
  }

  .aurora-home .ah-visual__logo {
    width: 58px;
    height: 58px;
    border-radius: 15px;
  }

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

  .aurora-home .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;
  }

  .aurora-home .ah-orbit-card--tl { animation-delay: 0.05s; }
  .aurora-home .ah-orbit-card--tr { animation-delay: 0.1s; }
  .aurora-home .ah-orbit-card--bl { animation-delay: 0.15s; }
  .aurora-home .ah-orbit-card--br { animation-delay: 0.2s; }

  .aurora-home .ah-orbit-card--tl {
    border-left: 3px solid #60a5fa;
  }

  .aurora-home .ah-orbit-card--tr {
    border-left: 3px solid #38bdf8;
  }

  .aurora-home .ah-orbit-card--bl {
    border-left: 3px solid #4ade80;
  }

  .aurora-home .ah-orbit-card--br {
    border-left: 3px solid #a78bfa;
  }

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

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

  .aurora-home .ah-orbit-card__title {
    font-size: 13px;
    line-height: 1.2;
    align-self: end;
  }

  .aurora-home .ah-orbit-card__sub {
    font-size: 10px;
    line-height: 1.25;
    align-self: start;
    color: var(--ah-muted);
  }

  .aurora-home .ah-section {
    padding: 44px 0;
  }

  .aurora-home .ah-section#products {
    padding-top: 36px;
  }

  .aurora-home .ah-section__title {
    font-size: clamp(24px, 6.5vw, 30px);
  }

  .aurora-home .ah-section__lead {
    font-size: 15px;
  }

  .aurora-home .ah-product {
    padding: 20px 18px;
    min-height: 44px;
  }

  .aurora-home .ah-pricing-panel {
    padding: 18px 12px 20px;
    border-radius: 18px;
  }

  .aurora-home .ah-pricing-panel .tariff-card__btn {
    min-height: 48px;
  }

  .aurora-home .ah-step {
    padding: 18px 18px 18px 64px;
  }

  .aurora-home .ah-step__num {
    left: 16px;
    top: 18px;
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .aurora-home .ah-faq__item {
    padding: 16px 16px;
  }

  .aurora-home .footer {
    margin-top: 16px;
    padding-top: 32px;
  }

  .aurora-home .footer.container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding:
      0
      max(16px, env(safe-area-inset-right, 0px))
      calc(88px + env(safe-area-inset-bottom, 0px))
      max(16px, env(safe-area-inset-left, 0px));
  }

  .aurora-home .footer-row {
    display: contents;
  }

  .aurora-home .footer-row > div:first-child {
    font-size: 12px;
    line-height: 1.55;
    text-align: center;
    order: 4;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .aurora-home .footer-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0;
    order: 1;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
  }

  .aurora-home .footer-links a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 16px;
    font-size: 14px;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transform: none;
  }

  .aurora-home .footer-links a:last-child {
    border-bottom: none;
  }

  .aurora-home .footer-links a:hover,
  .aurora-home .footer-links a:active {
    transform: none;
    background: rgba(255, 255, 255, 0.04);
    color: var(--ah-text);
  }

  .aurora-home .footer-social {
    order: 2;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    text-align: left;
  }

  .aurora-home .social-title {
    font-size: 13px;
    line-height: 1.45;
    text-align: left;
    margin-bottom: 12px;
  }

  .aurora-home .social-links {
    justify-content: stretch;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  .aurora-home .social-link {
    width: 100%;
    max-width: none;
    min-height: 48px;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 14px;
    border: 1px solid rgba(56, 189, 248, 0.25);
    background: rgba(56, 189, 248, 0.08);
  }

  .aurora-home .social-link:hover {
    transform: none;
  }

  .aurora-home #official-mark-slot {
    order: 3;
    margin-top: 0;
    justify-content: stretch;
  }

  .aurora-home .official-mark--footer {
    min-width: 0;
    width: 100%;
    max-width: none;
    justify-content: flex-start;
    box-sizing: border-box;
  }

  .aurora-home .official-mark__sub {
    max-width: none;
    white-space: normal;
  }
}

/* Футер: переопределение глобальных стилей styles.css (420px) */
@media (max-width: 420px) {
  .aurora-home .social-links {
    flex-direction: column;
    align-items: stretch;
  }

  .aurora-home .social-link {
    width: 100%;
    max-width: none;
  }
}

/* Узкие телефоны */
@media (max-width: 400px) {
  .aurora-home .ah-stats {
    grid-template-columns: 1fr;
    row-gap: 14px;
    column-gap: 0;
  }

  .aurora-home .ah-stat {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    text-align: left;
  }

  .aurora-home .ah-stat__val {
    flex-shrink: 0;
  }

  .aurora-home .ah-stat__lbl {
    margin-top: 0;
    text-align: right;
  }

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

  .aurora-home .ah-visual {
    padding: 18px 12px 14px;
    gap: 7px;
  }

  .aurora-home .ah-visual__ring {
    width: 132px;
    height: 132px;
    top: 14px;
  }

  .aurora-home .ah-visual__core {
    width: 80px;
    height: 80px;
    margin-bottom: 12px;
  }

  .aurora-home .ah-visual__logo {
    width: 52px;
    height: 52px;
    border-radius: 13px;
  }

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

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

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

/* Два CTA в ряд на широких телефонах */
@media (min-width: 400px) and (max-width: 767px) {
  .aurora-home .ah-hero__actions {
    grid-template-columns: 1fr 1fr;
  }
}

/* iPad portrait: продукты в 2 колонки */
@media (min-width: 768px) and (max-width: 1024px) {
  .aurora-home .ah-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .aurora-home .ah-cards-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .aurora-home .ah-cards-3 .ah-step:last-child {
    grid-column: 1 / -1;
  }
}

/* Сенсорные экраны: без hover-сдвигов */
@media (hover: none) and (pointer: coarse) {
  .aurora-home .ah-product:hover,
  .aurora-home .ah-btn:hover,
  .aurora-home .ah-nav__cta:hover,
  .aurora-home .ah-header__toggle:hover {
    transform: none;
  }

  .aurora-home .ah-nav__link:active {
    background: rgba(255, 255, 255, 0.08);
  }

  .aurora-home .ah-product:active {
    transform: scale(0.99);
  }

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

@media (prefers-reduced-motion: reduce) {
  .aurora-home .aurora-brand__logo,
  .aurora-home .aurora-brand__logo::before,
  .aurora-home .aurora-brand__logo::after {
    animation: none;
  }

  .aurora-home .ah-header__toggle-bar {
    transition: none;
  }

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