/* ─── PULSE SMM Landing ─── */
/* Aesthetic: industrial neon noir — velocity, signal, growth */

/* ROLLBACK cyan accent:
   --accent-rgb: 56, 212, 200;
   --accent: #38d4c8;
   --accent-hover: #5ce0d6;
   --accent-muted: #26a89e;
   --gradient-accent: linear-gradient(135deg, #26a89e 0%, #38d4c8 55%, #6ee8de 100%);
   favicon/og: #38d4c8 / #26a89e  (fill='%2338d4c8')
*/

:root {
  --bg: #0a0b0d;
  --bg-elevated: #12141a;
  --bg-card: #161820;
  --bg-card-hover: #1c1f2a;
  --surface: #161820;
  --border: rgba(255, 255, 255, 0.06);
  --accent-rgb: 200, 220, 56;
  --border-accent: rgba(var(--accent-rgb), 0.18);
  --text: #e8eaef;
  --text-muted: #a8b0bd;
  --text-dim: #7a8294;
  --accent: #c8dc38;
  --accent-hover: #d8ea58;
  --accent-muted: #a8bc2e;
  --accent-hot: #ff4d6a;
  --gradient-accent: linear-gradient(135deg, #a8bc2e 0%, #c8dc38 55%, #dce86a 100%);
  --font-display: 'Unbounded', sans-serif;
  --font-body: 'Onest', sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-glow: 0 0 40px rgba(var(--accent-rgb), 0.06);
  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  --site-header-h: 64px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: clip;
  max-width: 100%;
}

body.menu-open,
body.picker-open {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

/* ─── Grain & cursor glow ─── */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  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)'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.03) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  opacity: 0;
}

body:hover .cursor-glow {
  opacity: 1;
}

/* ─── Typography helpers ─── */
.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.section-head--left {
  text-align: left;
  margin-inline: 0;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-head p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ─── Header ─── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}

.header--site {
  background: rgba(10, 11, 13, 0.88);
  backdrop-filter: blur(16px);
  box-shadow: inset 0 -1px 0 rgba(var(--accent-rgb), 0.18);
}

.header--site::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(var(--accent-rgb), 0.65) 0%,
    rgba(var(--accent-rgb), 0.28) 24%,
    transparent 46%
  );
  box-shadow:
    0 0 8px rgba(var(--accent-rgb), 0.38),
    0 0 16px rgba(var(--accent-rgb), 0.16);
  pointer-events: none;
}

.header--scrolled {
  background: rgba(10, 11, 13, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 0;
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  min-height: var(--site-header-h);
}

@media (min-width: 769px) {
  .header__inner {
    width: min(1600px, calc(100vw - 2rem));
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text);
}

.logo__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: var(--accent);
}

.logo__mark svg {
  width: 100%;
  height: 100%;
  display: block;
}

.logo__text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}

.nav--account {
  gap: clamp(1.55rem, 1.75vw, 2.15rem);
}

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav a:hover { color: var(--text); }

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  min-height: 2.35rem;
  padding: 0 0.18rem;
}

.nav-dropdown__chevron {
  color: var(--text-dim);
  transition: transform 0.18s ease, color 0.18s ease;
}

.nav-dropdown:hover .nav-dropdown__chevron,
.nav-dropdown:focus-within .nav-dropdown__chevron {
  color: var(--accent);
  transform: rotate(180deg);
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 0.58rem);
  left: 50%;
  z-index: 130;
  display: grid;
  gap: 0.38rem;
  width: 18rem;
  max-width: min(92vw, 18rem);
  padding: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  background:
    radial-gradient(circle at 16% 0%, rgba(var(--accent-rgb), 0.08), transparent 38%),
    linear-gradient(145deg, rgba(22, 25, 32, 0.995), rgba(8, 10, 14, 0.995));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 22px 48px rgba(0, 0, 0, 0.46);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -6px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.nav-dropdown__menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 0.72rem;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown__menu--social {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 25rem;
  max-width: min(92vw, 25rem);
}

.nav-dropdown__heading {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin: 0 0.05rem 0.12rem;
  padding: 0.12rem 0.16rem 0.48rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
}

.nav-dropdown__heading span {
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
}

.nav-dropdown__heading small {
  color: var(--text-dim);
  font-size: 0.68rem;
  font-weight: 650;
  line-height: 1.2;
  white-space: nowrap;
}

.nav a.nav-dropdown__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
  min-height: 2.35rem;
  padding: 0.55rem 0.68rem;
  border: 1px solid transparent;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: color 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}

.nav a.nav-dropdown__item:hover,
.nav a.nav-dropdown__item:focus-visible {
  border-color: color-mix(in srgb, var(--nav-item-color, var(--accent)) 36%, rgba(255, 255, 255, 0.08));
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--nav-item-color, var(--accent)) 14%, rgba(18, 21, 28, 0.95)), rgba(255, 255, 255, 0.075));
  color: var(--text);
  outline: none;
}

.nav-dropdown__dot {
  width: 0.55rem;
  height: 0.55rem;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--nav-item-color, var(--accent));
  box-shadow: 0 0 14px color-mix(in srgb, var(--nav-item-color, var(--accent)) 38%, transparent);
}

.nav-dropdown__item-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 0.08rem;
}

.nav-dropdown__item-copy small {
  color: var(--text-dim);
  font-size: 0.68rem;
  font-weight: 650;
  line-height: 1.2;
}

.nav a.nav__link--gift {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.nav__link-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 6px;
  background: linear-gradient(145deg, rgba(139, 92, 246, 0.18), rgba(200, 220, 56, 0.1));
  border: 1px solid rgba(167, 139, 250, 0.28);
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.12);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.nav__link-icon {
  width: 13px;
  height: 13px;
  color: #c4b5fd;
}

.nav a.nav__link--gift:hover .nav__link-icon-wrap {
  border-color: rgba(200, 220, 56, 0.35);
  background: linear-gradient(145deg, rgba(139, 92, 246, 0.28), rgba(200, 220, 56, 0.14));
  box-shadow: 0 0 14px rgba(139, 92, 246, 0.22);
}

.nav a.nav__link--gift:hover .nav__link-icon {
  color: var(--accent);
}

.nav__link-text--full {
  display: none;
}

@media (min-width: 1100px) {
  .nav__link-text--short {
    display: none;
  }

  .nav__link-text--full {
    display: inline;
  }
}

.header__cta { margin-left: 0; }

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-left: auto;
  flex-shrink: 0;
}

.header__actions .btn--sm {
  min-height: 2.125rem;
  padding: 0.5rem 0.95rem;
  line-height: 1.2;
  box-sizing: border-box;
}

.header__actions .btn--ghost {
  border-color: transparent;
  color: var(--text-muted);
}

.header__actions .btn--ghost:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border-color: transparent;
}

.header__actions .header__cta {
  margin-left: 0.1rem;
}

.header-cabinet-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  min-height: 2.45rem;
  padding: 0.35rem 0.78rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.025);
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.header-cabinet-chip:hover,
.header-cabinet-chip:focus-visible {
  color: var(--text);
  border-color: rgba(var(--accent-rgb), 0.28);
  background:
    linear-gradient(180deg, rgba(var(--accent-rgb), 0.08), rgba(var(--accent-rgb), 0.035)),
    rgba(255, 255, 255, 0.035);
  outline: none;
}

.header-cabinet-chip__icon {
  display: inline-flex;
  flex: 0 0 auto;
  color: var(--accent);
}

.cabinet-balance-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.45rem;
  padding: 0.35rem 0.9rem 0.35rem 0.75rem;
  border: 1px solid rgba(var(--accent-rgb), 0.22);
  border-radius: 100px;
  background:
    linear-gradient(180deg, rgba(var(--accent-rgb), 0.11), rgba(var(--accent-rgb), 0.045)),
    rgba(255, 255, 255, 0.025);
  color: var(--text);
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}

.cabinet-balance-chip:hover {
  border-color: rgba(var(--accent-rgb), 0.42);
  background:
    linear-gradient(180deg, rgba(var(--accent-rgb), 0.15), rgba(var(--accent-rgb), 0.06)),
    rgba(255, 255, 255, 0.035);
}

.cabinet-balance-chip__icon {
  display: inline-flex;
  color: var(--accent);
}

.cabinet-balance-chip__amount {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 800;
  white-space: nowrap;
}

.cabinet-user-chip {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.3rem 0.75rem 0.3rem 0.3rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  position: relative;
}

.cabinet-user-chip--menu {
  padding: 0;
}

.cabinet-user-chip--menu[open] {
  border-color: rgba(var(--accent-rgb), 0.34);
}

.cabinet-user-chip__summary {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.3rem 0.55rem 0.3rem 0.3rem;
  list-style: none;
  cursor: pointer;
  user-select: none;
}

.cabinet-user-chip__summary::-webkit-details-marker {
  display: none;
}

.cabinet-user-chip__status {
  display: none;
}

.cabinet-user-chip__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.25), rgba(var(--accent-rgb), 0.08));
  color: var(--accent);
  font-size: 0.8125rem;
  font-weight: 700;
  font-family: var(--font-display);
}

.cabinet-user-chip__info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
  justify-content: center;
}

.cabinet-user-chip__name {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.cabinet-user-chip__chevron {
  flex: 0 0 auto;
  color: var(--text-dim);
  transition: transform var(--transition), color var(--transition);
}

.cabinet-user-chip--menu[open] .cabinet-user-chip__chevron {
  transform: rotate(180deg);
  color: var(--accent);
}

.cabinet-user-menu {
  position: absolute;
  top: calc(100% + 0.45rem);
  right: 0;
  z-index: 120;
  min-width: 150px;
  padding: 0.35rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(13, 15, 20, 0.98);
  box-shadow: var(--shadow-soft);
}

.cabinet-user-menu__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  padding: 0.65rem 0.75rem;
  border-radius: 9px;
  color: var(--text);
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}

.cabinet-user-menu__item:hover {
  color: var(--accent);
  background: rgba(var(--accent-rgb), 0.1);
}

.cabinet-user-menu__form {
  margin: 0;
}

.cabinet-user-menu__button {
  width: 100%;
  border: 0;
  background: transparent;
  font-family: var(--font-body);
  cursor: pointer;
}

.burger {
  display: none;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  margin-left: auto;
  flex-shrink: 0;
}

.burger span {
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
}

.burger span:first-child { transform: translateY(-4px); }
.burger span:last-child { transform: translateY(4px); }

.burger[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.burger[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(10, 11, 13, 0.45);
  opacity: 0;
  transition: opacity 0.32s ease;
  pointer-events: none;
}

.mobile-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer__link {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid transparent;
  border-radius: 10px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.mobile-drawer__link:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.mobile-drawer__footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.mobile-drawer__cta {
  width: 100%;
}

.mobile-auth {
  padding-top: 0.85rem;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-auth__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.mobile-auth .btn {
  min-height: 2.25rem;
  box-sizing: border-box;
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  display: flex;
  flex-direction: column;
  width: min(340px, 88vw);
  height: 100dvh;
  max-height: 100dvh;
  padding:
    var(--mobile-header-offset)
    0.75rem
    calc(1rem + env(safe-area-inset-bottom));
  background: var(--bg-elevated);
  border: none;
  border-right: 1px solid var(--border);
  box-shadow: 4px 0 32px rgba(0, 0, 0, 0.24);
  gap: 0.2rem;
  transform: translateX(-100%);
  visibility: hidden;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  transition:
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.38s;
}

.mobile-nav.is-open,
.mobile-nav.cabinet-sidebar--open {
  transform: translateX(0);
  visibility: visible;
}

.mobile-nav__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  width: 36px;
  height: 36px;
  margin-bottom: 0.35rem;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.mobile-nav__close:hover {
  color: var(--accent);
  border-color: rgba(var(--accent-rgb), 0.35);
  background: rgba(var(--accent-rgb), 0.06);
}

.mobile-nav > a:not(.btn) {
  display: flex;
  align-items: center;
  padding: 0.7rem 0.75rem;
  border: 1px solid transparent;
  border-radius: 10px;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: background 0.25s ease, color 0.25s ease;
}

.mobile-nav > a:not(.btn):hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.mobile-nav .mobile-auth {
  margin-top: auto;
  padding-top: 1rem;
}

.mobile-nav > .btn--lg {
  margin-top: 0.65rem;
  flex-shrink: 0;
}

.mobile-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.1rem 0.1rem 0.75rem;
  margin-bottom: 0.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav__title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.mobile-nav__section {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav__section-label {
  padding: 0 0.2rem 0.25rem;
  color: var(--text-dim);
  font-size: 0.64rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mobile-nav__link {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  align-items: center;
  gap: 0.65rem;
  min-height: 2.75rem;
  padding: 0.55rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.mobile-nav__link:hover {
  color: var(--text);
  border-color: rgba(var(--accent-rgb), 0.24);
  background: rgba(var(--accent-rgb), 0.06);
}

.mobile-nav__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(var(--accent-rgb), 0.18);
  border-radius: 10px;
  background: rgba(var(--accent-rgb), 0.065);
  color: var(--accent);
}

.mobile-nav__icon svg {
  width: 1.05rem;
  height: 1.05rem;
}

.mobile-nav__footer {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: auto;
  padding-top: 0.75rem;
}

.mobile-nav__footer .mobile-auth {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.mobile-nav__footer > .btn {
  width: 100%;
  min-height: 3rem;
}

.mobile-nav__account {
  flex-shrink: 0;
  padding: 0.65rem 0.1rem 0.15rem;
}

.mobile-nav__account .cabinet-sidebar__account {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background:
    radial-gradient(ellipse 80% 120% at 15% 0%, rgba(var(--accent-rgb), 0.13) 0%, transparent 56%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 12px 30px rgba(0, 0, 0, 0.18);
}

.mobile-nav__account .cabinet-sidebar__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 2.45rem;
  height: 2.45rem;
  border: 1px solid rgba(var(--accent-rgb), 0.3);
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.1);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
}

.mobile-nav__account .cabinet-sidebar__account-info {
  display: flex;
  flex: 1;
  min-width: 0;
  flex-direction: column;
  gap: 0.45rem;
}

.mobile-nav__account .cabinet-sidebar__account-name {
  overflow: hidden;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mobile-nav__account .cabinet-sidebar__account-meta {
  display: block;
  min-width: 0;
}

.mobile-nav__account .cabinet-sidebar__account-meta-text {
  display: none;
}

.mobile-nav__account .cabinet-sidebar__account-balance {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: 100%;
  min-height: 2.35rem;
  padding: 0.35rem 0.45rem 0.35rem 0.35rem;
  border: 1px solid rgba(var(--accent-rgb), 0.24);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(var(--accent-rgb), 0.13), rgba(var(--accent-rgb), 0.045)),
    rgba(0, 0, 0, 0.18);
  color: var(--accent);
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.mobile-nav__account .cabinet-sidebar__account-balance-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 1.62rem;
  height: 1.62rem;
  border-radius: 9px;
  background: rgba(var(--accent-rgb), 0.13);
  color: var(--accent);
}

.mobile-nav__account .cabinet-sidebar__account-balance-value {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  color: var(--accent);
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mobile-nav__account .cabinet-sidebar__account-balance-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 7px;
  background: rgba(var(--accent-rgb), 0.16);
  color: var(--accent);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
}

.mobile-nav .cabinet-nav {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 0.65rem;
  padding-top: 0.65rem;
  overflow: visible;
}

.mobile-nav .cabinet-nav__section {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.008)),
    rgba(255, 255, 255, 0.012);
}

.mobile-nav .cabinet-nav__heading {
  margin: 0;
  padding: 0.35rem 0.55rem 0.15rem;
  color: var(--text-dim);
  font-size: 0.58rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mobile-nav .cabinet-nav__item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  width: 100%;
  padding: 0.6rem 0.65rem;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-body);
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.mobile-nav .cabinet-nav__item:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.mobile-nav .cabinet-nav__item.is-active {
  background: rgba(var(--accent-rgb), 0.1);
  border-color: rgba(var(--accent-rgb), 0.18);
  color: var(--accent);
}

.mobile-nav .cabinet-nav__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  color: inherit;
  transition: background var(--transition);
}

.mobile-nav .cabinet-nav__icon-wrap--brand {
  color: var(--platform-color, var(--accent));
}

.mobile-nav .cabinet-nav__label {
  flex: 1;
  font-size: 0.8125rem;
  font-weight: 600;
  text-align: left;
}

.mobile-nav .cabinet-nav__badge {
  padding: 0.2rem 0.55rem;
  border-radius: 100px;
  background: var(--accent);
  color: #0a0b0d;
  font-size: 0.6875rem;
  font-weight: 700;
  box-shadow: 0 0 12px rgba(var(--accent-rgb), 0.35);
}

.mobile-nav .cabinet-nav__chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.2);
  transition: color 0.2s ease;
}

.mobile-nav .cabinet-nav__item:hover .cabinet-nav__chevron {
  color: rgba(255, 255, 255, 0.45);
}

.mobile-nav__cabinet-shortcuts {
  flex-shrink: 0;
  margin-top: 0.55rem;
}

.mobile-nav .cabinet-drawer-spotlight__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav .cabinet-drawer-action {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  min-height: 40px;
  padding: 0.55rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.22);
  color: var(--text-muted);
  font-size: 0.8125rem;
  font-weight: 600;
  text-align: left;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.mobile-nav .cabinet-drawer-action:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: rgba(var(--accent-rgb), 0.2);
}

.mobile-nav .cabinet-drawer-action__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  color: inherit;
}

.mobile-nav .cabinet-drawer-action__label {
  flex: 1;
}

.mobile-nav .cabinet-sidebar__footer {
  flex-shrink: 0;
  margin-top: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.mobile-nav .cabinet-sidebar__logout-form,
.mobile-nav .cabinet-sidebar__footer .btn {
  width: 100%;
}

.mobile-nav .cabinet-sidebar__logout {
  justify-content: center;
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 0 0;
  overflow: hidden;
  isolation: isolate;
}

.hero__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 72% 18%, rgba(var(--accent-rgb), 0.14) 0%, transparent 58%),
    radial-gradient(ellipse 45% 45% at 12% 82%, rgba(var(--accent-rgb), 0.06) 0%, transparent 52%),
    radial-gradient(ellipse 55% 40% at 50% 100%, rgba(255, 255, 255, 0.02) 0%, transparent 65%);
  pointer-events: none;
  animation: heroMeshPulse 10s ease-in-out infinite;
}

@keyframes heroMeshPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.02); }
}

.hero__grid {
  position: absolute;
  inset: 0;
  opacity: 0.52;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 72% 68% at 52% 34%, black 8%, transparent 70%);
  pointer-events: none;
}

.hero__streaks {
  position: absolute;
  inset: -10% -5%;
  pointer-events: none;
  overflow: hidden;
  mask-image: linear-gradient(105deg, transparent 30%, black 55%, transparent 85%);
}

.hero__streaks span {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--accent-rgb), 0.35), transparent);
  transform: rotate(-18deg);
  animation: heroStreak 7s linear infinite;
  opacity: 0;
}

.hero__streaks span:nth-child(1) { top: 18%; width: 42%; left: 55%; animation-delay: 0s; }
.hero__streaks span:nth-child(2) { top: 32%; width: 28%; left: 62%; animation-delay: 1.4s; }
.hero__streaks span:nth-child(3) { top: 48%; width: 36%; left: 58%; animation-delay: 2.8s; }
.hero__streaks span:nth-child(4) { top: 64%; width: 22%; left: 68%; animation-delay: 4.2s; }
.hero__streaks span:nth-child(5) { top: 78%; width: 30%; left: 60%; animation-delay: 5.6s; }

@keyframes heroStreak {
  0% { opacity: 0; transform: rotate(-18deg) translateX(-8%); }
  12% { opacity: 0.7; }
  45% { opacity: 0.35; }
  100% { opacity: 0; transform: rotate(-18deg) translateX(18%); }
}

.hero__orb {
  position: absolute;
  top: 22%;
  right: 8%;
  width: min(520px, 48vw);
  height: min(520px, 48vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.09) 0%, transparent 68%);
  filter: blur(2px);
  pointer-events: none;
  animation: heroOrb 12s ease-in-out infinite;
}

@keyframes heroOrb {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.9; }
  50% { transform: translate(-12px, 16px) scale(1.06); opacity: 1; }
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(440px, 1fr);
  gap: clamp(3.5rem, 5.5vw, 6rem);
  align-items: center;
  position: relative;
  z-index: 1;
  padding-bottom: 6rem;
}

.hero__content {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: 34rem;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}

.hero__eyebrow-brand {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent);
}

.hero__eyebrow span:last-child {
  white-space: nowrap;
}

.hero__eyebrow-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.45);
  flex-shrink: 0;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(var(--accent-rgb), 0.45); }
  50% { opacity: 0.75; box-shadow: 0 0 0 10px rgba(var(--accent-rgb), 0); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 4.6vw, 3.85rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.028em;
  margin-bottom: 1.35rem;
  max-width: 13.5em;
}

.hero__title-main {
  display: block;
}

.hero__title-mobile {
  display: none;
}

.hero__title-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.28em;
  margin-top: 0.22em;
  font-size: 0.92em;
  line-height: 1;
  white-space: nowrap;
}

.hero__title-brand-pre {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(var(--accent-rgb), 0.2));
}

.hero__title-brand-name {
  color: var(--text);
  letter-spacing: -0.02em;
  text-shadow: 0 0 40px rgba(var(--accent-rgb), 0.12);
}

/* Legacy aliases — platform pages */
.hero__title-accent {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__title-tail {
  color: var(--text-muted);
}

.hero__desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 460px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 17.25rem));
  gap: 1rem;
  margin-bottom: 1.75rem;
  width: fit-content;
  max-width: 100%;
}

.hero__actions .btn {
  box-sizing: border-box;
  width: 100%;
  height: 3rem;
  min-height: 0;
  padding: 0 1.35rem;
  justify-content: center;
}

.hero__actions .btn--primary {
  box-shadow:
    0 0 0 1px rgba(var(--accent-rgb), 0.2),
    0 12px 32px rgba(var(--accent-rgb), 0.18);
}

.hero__bonus-cta {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(18, 21, 26, 0.72);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 10px 28px rgba(0, 0, 0, 0.22);
}

.hero__bonus-cta:hover {
  background:
    linear-gradient(180deg, rgba(var(--accent-rgb), 0.1), rgba(255, 255, 255, 0.024)),
    rgba(20, 24, 29, 0.82);
  border-color: rgba(var(--accent-rgb), 0.28);
}

.hero__platforms {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.platform-icons {
  display: flex;
  gap: 0;
}

.platform-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(22, 24, 32, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: var(--text-muted);
  transition: var(--transition);
  margin-left: -6px;
  position: relative;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.platform-icon:first-child {
  margin-left: 0;
}

.platform-icon svg {
  width: 18px;
  height: 18px;
}

.platform-icon--ig { color: #e1306c; z-index: 8; }
.platform-icon--tt { color: #00f2ea; z-index: 7; }
.platform-icon--tg { color: #29b6f6; z-index: 6; }
.platform-icon--vk { color: #4a76a8; z-index: 5; }
.platform-icon--yt { color: #ff4444; z-index: 4; }
.platform-icon--steam { color: #66c0f4; z-index: 3; }
.platform-icon--apple { color: #f5f5f7; z-index: 2; }
.platform-icon--roblox { color: #e8edf5; z-index: 1; }

.platform-icon:hover {
  border-color: var(--border-accent);
  transform: translateY(-3px) scale(1.08);
  z-index: 10;
  filter: brightness(1.15);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

/* Hero service panel */
.hero__visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1400px;
  min-width: 0;
  overflow: visible;
}

.hero-visual-stack {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  padding: 0 0.5rem 2.25rem 0;
}

.hero__visual::before {
  content: none;
}

.hero-dashboard {
  position: relative;
  width: 100%;
  padding: 1.5rem 1.4rem 1.25rem;
  background:
    linear-gradient(165deg, rgba(28, 31, 40, 0.95) 0%, rgba(14, 15, 19, 0.92) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  box-shadow:
    0 0 0 1px rgba(var(--accent-rgb), 0.06),
    0 32px 64px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero-dashboard--smm {
  z-index: 2;
  max-width: 460px;
  width: 100%;
  transform: rotate(-1.35deg);
  transform-origin: 12% 18%;
}

.hero-dashboard--digital {
  z-index: 3;
  position: relative;
  align-self: flex-end;
  margin-top: 0.35rem;
  margin-right: -2%;
  width: min(86%, 390px);
  padding: 1.2rem 1.25rem 1.1rem;
  transform: rotate(1.45deg);
  transform-origin: 88% 82%;
  border-color: rgba(139, 92, 246, 0.14);
  box-shadow:
    0 0 0 1px rgba(139, 92, 246, 0.08),
    0 28px 56px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero-dashboard::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse 80% 50% at 100% 0%, rgba(var(--accent-rgb), 0.08), transparent 60%);
  pointer-events: none;
}

.hero-dashboard--digital::after {
  background:
    radial-gradient(ellipse 70% 55% at 0% 100%, rgba(139, 92, 246, 0.12), transparent 62%),
    radial-gradient(ellipse 50% 40% at 100% 0%, rgba(41, 182, 246, 0.08), transparent 55%);
}

.hero-dashboard--digital .hero-dashboard__corner {
  border-color: rgba(139, 92, 246, 0.38);
}

.hero-dashboard__frame {
  position: absolute;
  inset: 10px;
  pointer-events: none;
}

.hero-dashboard__corner {
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: rgba(var(--accent-rgb), 0.35);
  border-style: solid;
  opacity: 0.7;
}

.hero-dashboard__corner--tl { top: 0; left: 0; border-width: 1px 0 0 1px; }
.hero-dashboard__corner--tr { top: 0; right: 0; border-width: 1px 1px 0 0; }
.hero-dashboard__corner--bl { bottom: 0; left: 0; border-width: 0 0 1px 1px; }
.hero-dashboard__corner--br { bottom: 0; right: 0; border-width: 0 1px 1px 0; }

.hero-dashboard__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.15rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-dashboard__head-copy {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.hero-dashboard__kicker {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.hero-dashboard__hint {
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--text-dim);
  max-width: 16rem;
}

.hero-dashboard__chip {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--bg);
  background: var(--gradient-accent);
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
  white-space: nowrap;
}

.hero-dashboard__chip--digital {
  background: linear-gradient(135deg, #29b6f6 0%, #8b5cf6 100%);
}

.hero-dashboard__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.hero-dashboard__digital-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.hero-dashboard--digital .hero-dashboard__head {
  margin-bottom: 0.95rem;
  padding-bottom: 0.85rem;
}

.hero-digital-card {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.72rem 0.75rem;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  text-decoration: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.hero-digital-card:hover,
.hero-digital-card:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.hero-digital-card--stars:hover,
.hero-digital-card--stars:focus-visible {
  border-color: rgba(41, 182, 246, 0.35);
  background: rgba(41, 182, 246, 0.06);
  box-shadow: 0 6px 20px rgba(41, 182, 246, 0.12);
}

.hero-digital-card--gifts:hover,
.hero-digital-card--gifts:focus-visible {
  border-color: rgba(139, 92, 246, 0.35);
  background: rgba(139, 92, 246, 0.06);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.12);
}

.hero-digital-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  flex-shrink: 0;
  color: #29b6f6;
  background: rgba(41, 182, 246, 0.12);
  border: 1px solid rgba(41, 182, 246, 0.22);
}

.hero-digital-card__icon svg {
  width: 16px;
  height: 16px;
}

.hero-digital-card__thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 4px;
  border-radius: 10px;
  flex-shrink: 0;
  overflow: hidden;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.22);
}

.hero-digital-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.hero-digital-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  min-width: 0;
}

.hero-digital-card__value {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text);
}

.hero-digital-card--stars:hover .hero-digital-card__value,
.hero-digital-card--stars:focus-visible .hero-digital-card__value {
  color: #29b6f6;
}

.hero-digital-card--gifts:hover .hero-digital-card__value,
.hero-digital-card--gifts:focus-visible .hero-digital-card__value {
  color: #a78bfa;
}

.hero-digital-card__label {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-dim);
  line-height: 1.2;
}

.hero-metric {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 0.85rem 1.15rem;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease, transform 0.4s ease;
}

.hero-metric.is-active {
  border-color: rgba(var(--accent-rgb), 0.28);
  background: rgba(var(--accent-rgb), 0.05);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}

.hero-metric__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  flex-shrink: 0;
}

.hero-metric__icon svg {
  width: 18px;
  height: 18px;
}

.hero-metric__body {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.hero-metric__icon--followers {
  color: #7eb8ff;
  background: rgba(126, 184, 255, 0.12);
  border: 1px solid rgba(126, 184, 255, 0.2);
}

.hero-metric__icon--likes {
  color: var(--accent-hot);
  background: rgba(255, 77, 106, 0.1);
  border: 1px solid rgba(255, 77, 106, 0.18);
}

.hero-metric__icon--views {
  color: var(--accent);
  background: rgba(var(--accent-rgb), 0.1);
  border: 1px solid rgba(var(--accent-rgb), 0.18);
}

.hero-metric__icon--reach {
  color: #a78bfa;
  background: rgba(167, 139, 250, 0.12);
  border: 1px solid rgba(167, 139, 250, 0.2);
}

.hero-metric__value {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text);
  transition: color 0.35s ease;
}

.hero-metric.is-active .hero-metric__value {
  color: var(--accent);
}

.hero-metric__label {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-dim);
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.hero-metric.is-active .hero-metric__label {
  color: var(--text-muted);
}

.hero-metric__bar {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--accent), rgba(var(--accent-rgb), 0.4));
  border-radius: 0 2px 0 0;
}

.hero-metric.is-active .hero-metric__bar {
  animation: heroMetricBar 2.8s ease forwards;
}

@keyframes heroMetricBar {
  from { width: 0; }
  to { width: 100%; }
}

.hero-dashboard__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  transition: var(--transition);
}

.hero-dashboard__cta:hover {
  color: var(--accent);
  border-color: rgba(var(--accent-rgb), 0.25);
  background: rgba(var(--accent-rgb), 0.05);
}

.hero-dashboard__cta svg {
  transition: transform var(--transition);
}

.hero-dashboard__cta:hover svg {
  transform: translateX(3px);
}

.hero-dashboard__cta--digital:hover,
.hero-dashboard__cta--digital:focus-visible {
  color: #a78bfa;
  border-color: rgba(139, 92, 246, 0.3);
  background: rgba(139, 92, 246, 0.06);
}

@media (prefers-reduced-motion: reduce) {
  .hero-metric.is-active .hero-metric__bar {
    animation: none;
    width: 100%;
  }

  .hero-dashboard--smm,
  .hero-dashboard--digital {
    transform: none;
  }
}

/* Marquee */
.hero__marquee {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 0;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%);
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.hero__marquee::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--bg) 0%, transparent 12%, transparent 88%, var(--bg) 100%);
  pointer-events: none;
  z-index: 1;
}

.marquee-track {
  display: flex;
  gap: 2rem;
  animation: marquee 25s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--text-dim);
  white-space: nowrap;
}

.marquee-track span:nth-child(odd) {
  color: rgba(var(--accent-rgb), 0.35);
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ─── Trust bar ─── */
.trust {
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}

.trust__inner {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.trust__inner.reveal {
  transform: none;
  transition: opacity 0.65s ease;
}

.trust__inner.reveal.is-visible {
  transform: none;
}

.trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  min-height: 100%;
  padding: 0 0.35rem;
}

.trust__item:not(:last-child) {
  border-right: 1px solid var(--border);
  padding-right: 1.25rem;
}

.trust__value {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  font-feature-settings: 'tnum' 1;
  min-width: 3.5ch;
}

.trust__value--wide {
  min-width: 8ch;
}

.trust__item span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7em;
  max-width: 11.5rem;
  font-size: 0.85rem;
  line-height: 1.35;
  color: var(--text-muted);
  text-wrap: balance;
}

/* ─── Services ─── */
.services {
  padding: 7rem 0;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

/* 7 платформ: 4 карточки сверху, 3 равные карточки снизу по центру */
@media (min-width: 1025px) {
  #services .services__grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 1rem;
  }

  #services .service-card {
    grid-column: span 2;
    padding: 1.5rem 1.25rem;
  }

  #services .service-card:nth-child(5) {
    grid-column: 2 / span 2;
  }

  #services .service-card__icon {
    width: 42px;
    height: 42px;
    margin-bottom: 1rem;
  }

  #services .service-card h3 {
    font-size: 1rem;
  }

  #services .service-card p {
    font-size: 0.85rem;
    margin-bottom: 1rem;
    line-height: 1.55;
  }

  #services .service-card__tags {
    margin-bottom: 1.1rem;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  #services .service-card--accent:last-child {
    grid-column: 1 / -1;
  }
}

/* 5 цифровых товаров: 3 карточки сверху, 2 равные карточки снизу по центру */
@media (min-width: 1025px) {
  #store .services__grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  #store .service-card {
    grid-column: span 2;
  }

  #store .service-card:nth-child(4):nth-last-child(2) {
    grid-column: 2 / span 2;
  }
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card--accent {
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.04) 0%, var(--bg-card) 60%);
  border-color: var(--border-accent);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}

.service-card__icon svg {
  width: 22px;
  height: 22px;
}

.service-card__icon--ig { color: #e1306c; }
.service-card__icon--tt { color: #00f2ea; }
.service-card__icon--tg { color: #29b6f6; }
.service-card__icon--vk { color: #4a76a8; }
.service-card__icon--yt { color: #ff0000; }
.service-card__icon--all { color: var(--accent); font-size: 1.2rem; }
.service-card__icon--steam { color: #66c0f4; }
.service-card__icon--apple { color: #a2aaad; }
.service-card__icon--stars { color: #29b6f6; }
.service-card__icon--gifts { color: #8b5cf6; }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.service-card__tags {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.service-card__tags li {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.03);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}

.service-card__link {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: gap 0.2s;
}

.service-card__link:hover {
  text-decoration: underline;
}

/* ─── How it works ─── */
.how {
  padding: 7rem 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.how::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.how::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 55%;
  height: 130%;
  background: radial-gradient(ellipse at right center, rgba(var(--accent-rgb), 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.how__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  left: calc(1.5rem + 1.2rem);
  top: 4.4rem;
  bottom: 6.9rem;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(var(--accent-rgb), 0.18) 22%,
    rgba(var(--accent-rgb), 0.18) 78%,
    transparent
  );
  pointer-events: none;
  z-index: 0;
}

.step {
  display: flex;
  gap: 1.75rem;
  padding: 1.65rem 1.5rem;
  border-bottom: none;
  position: relative;
  border-radius: 14px;
  border: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.step:last-child { border-bottom: none; }

.step:hover {
  background: rgba(var(--accent-rgb), 0.04);
  border-color: rgba(var(--accent-rgb), 0.1);
}

.step__num {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  border: 1.5px solid rgba(var(--accent-rgb), 0.22);
  background:
    linear-gradient(rgba(var(--accent-rgb), 0.08), rgba(var(--accent-rgb), 0.08)),
    var(--bg);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--accent);
  position: relative;
  z-index: 1;
  align-self: flex-start;
  margin-top: 0.1rem;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.step:hover .step__num {
  background:
    linear-gradient(rgba(var(--accent-rgb), 0.16), rgba(var(--accent-rgb), 0.16)),
    var(--bg);
  border-color: rgba(var(--accent-rgb), 0.5);
  box-shadow: 0 0 18px rgba(var(--accent-rgb), 0.22);
}

.step__body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.step__body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ─── Pricing ─── */
.pricing {
  padding: 7rem 0;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  transition: var(--transition);
}

.price-card:hover {
  border-color: rgba(255, 255, 255, 0.1);
}

.price-card--featured {
  border-color: var(--border-accent);
  background: linear-gradient(180deg, rgba(var(--accent-rgb), 0.04) 0%, var(--bg-card) 40%);
  transform: scale(1.03);
  box-shadow: var(--shadow-glow);
}

.price-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--accent);
  color: #0a0b0d;
  padding: 0.35rem 1rem;
  border-radius: 100px;
}

.price-card__head h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.price-card__head p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.price-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.price-card__from {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.price-card__amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}

.price-card__currency {
  font-size: 1.2rem;
  color: var(--text-muted);
}

.price-card__features {
  list-style: none;
  margin-bottom: 2rem;
}

.price-card__features li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  padding-left: 1.5rem;
  position: relative;
}

.price-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.8rem;
}

.price-card__features li:last-child {
  border-bottom: none;
}

/* ─── Testimonials ─── */
.testimonials {
  padding: 7rem 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
}

.testimonials__track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  margin: 0;
}

.testimonial p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-muted), var(--accent));
  color: #0a0b0d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial footer span {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ─── FAQ ─── */
.faq {
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

.faq::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 12% 55%, rgba(var(--accent-rgb), 0.055) 0%, transparent 50%);
  pointer-events: none;
}

.faq__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.accordion__item {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.015);
  overflow: hidden;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.accordion__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.accordion__item:hover {
  border-color: rgba(var(--accent-rgb), 0.16);
  background: rgba(var(--accent-rgb), 0.03);
}

.accordion__item[open]::before {
  opacity: 1;
}

.accordion__item[open] {
  border-color: rgba(var(--accent-rgb), 0.18);
  background: rgba(var(--accent-rgb), 0.04);
}

.accordion__item summary {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 1.25rem 3.5rem 1.25rem 1.5rem;
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: color 0.2s ease;
}

.accordion__item summary::-webkit-details-marker { display: none; }

.accordion__item summary::after {
  content: '+';
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  width: 1.75rem;
  height: 1.75rem;
  line-height: 1.72rem;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--accent);
  border: 1px solid rgba(var(--accent-rgb), 0.22);
  border-radius: 50%;
  transition: transform 0.3s ease, background 0.2s ease, border-color 0.2s ease;
}

.accordion__item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
  background: rgba(var(--accent-rgb), 0.1);
  border-color: rgba(var(--accent-rgb), 0.4);
}

.accordion__item summary:hover {
  color: var(--accent);
}

.accordion__item[open] summary {
  color: var(--text);
}

.accordion__item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  padding: 0 3rem 1.4rem 1.5rem;
  max-width: 60ch;
}

/* ─── CTA ─── */
.cta {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
}

.cta__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(var(--accent-rgb), 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.cta__inner {
  position: relative;
  text-align: center;
  max-width: 700px;
}

.cta__inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  margin-bottom: 1rem;
}

.cta__inner > p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

.cta__form {
  transition: opacity 0.3s, transform 0.3s;
}

.cta__form.is-submitting {
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
}

.form-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.form-row select,
.form-row input {
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  padding: 1rem 1.2rem;
  outline: none;
  transition: border-color 0.2s;
  min-width: 160px;
}

.form-row select:focus,
.form-row input:focus {
  border-color: var(--accent);
}

.form-row select option {
  background: var(--bg-card);
}

.form-row input {
  flex: 1;
  min-width: 200px;
}

.form-error {
  font-size: 0.85rem;
  color: var(--accent-hot);
  margin-top: 0.75rem;
}

.form-row input:invalid:not(:placeholder-shown),
.form-row select:invalid {
  border-color: rgba(255, 77, 106, 0.5);
}

.cta__note {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 1rem;
}

.link-btn {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.link-btn:hover {
  color: var(--accent);
}

.cta__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem 0;
  animation: successIn 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes successIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.cta__success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: #0a0b0d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.cta__success p {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* ─── Footer ─── */
.footer {
  padding: clamp(3.5rem, 6vw, 5.5rem) 0 2rem;
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
}

.footer__brand {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}

.footer__brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  max-width: 420px;
  line-height: 1.6;
  text-align: right;
}

.footer__links {
  display: grid;
  grid-template-columns: minmax(155px, 0.95fr) minmax(170px, 1fr) minmax(150px, 0.9fr) minmax(155px, 0.9fr) minmax(230px, 1.25fr);
  gap: clamp(1.5rem, 2.8vw, 4rem);
  align-items: start;
}

.footer__links > div {
  min-width: 0;
}

.footer__links h4 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1rem;
}

.footer__links a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.45;
  padding: 0.25rem 0;
  transition: color 0.2s;
}

.footer__links a:hover { color: var(--accent); }

/* ─── Price page ─── */
.price-page {
  position: relative;
  padding: calc(var(--site-header-h) + 2.15rem) 0 4.5rem;
  overflow: hidden;
}

.price-page::before {
  content: '';
  position: absolute;
  inset: -18rem -12rem auto auto;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.16), transparent 68%);
  filter: blur(18px);
  pointer-events: none;
}

.price-page .container {
  position: relative;
  z-index: 1;
  width: min(1200px, 92vw);
}

.platform-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.15rem;
  color: var(--text-dim);
  font-size: 0.82rem;
}

.platform-breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.platform-breadcrumb a:hover {
  color: var(--accent);
}

.platform-breadcrumb__sep {
  color: rgba(255, 255, 255, 0.22);
}

.price-page__intro {
  max-width: 780px;
  margin-bottom: 0;
}

.price-page__eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.58rem;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.price-page__intro h1 {
  font-family: var(--font-display);
  max-width: 13em;
  font-size: clamp(2rem, 2.9vw, 3rem);
  line-height: 1.03;
  letter-spacing: 0;
  margin-bottom: 0.72rem;
}

.price-page__intro p {
  max-width: 650px;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.price-page__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 520px;
  margin-bottom: 1.25rem;
}

.price-page__stat {
  padding: 1.05rem 1.15rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(var(--accent-rgb), 0.08), transparent 58%),
    rgba(255, 255, 255, 0.035);
}

.price-page__stat strong {
  display: block;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.price-page__stat span {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.price-page__notice {
  margin: 1rem 0;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(var(--accent-rgb), 0.28);
  border-radius: 14px;
  background: rgba(var(--accent-rgb), 0.08);
  color: var(--text-muted);
}

.price-loader {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.95rem;
  margin: 1rem 0;
  padding: 1rem 1.12rem;
  border: 1px solid rgba(var(--accent-rgb), 0.25);
  border-radius: 18px;
  background:
    radial-gradient(circle at 8% 18%, rgba(var(--accent-rgb), 0.14), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(12, 15, 20, 0.82);
  color: var(--text-muted);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 14px 38px rgba(0, 0, 0, 0.22);
}

.price-loader[hidden] {
  display: none;
}

.price-loader__orb {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(var(--accent-rgb), 0.2), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.035);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 0 6px rgba(var(--accent-rgb), 0.055);
}

.price-loader__orb::before {
  content: "";
  position: absolute;
  inset: 0.62rem;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-top-color: var(--accent);
  border-radius: 999px;
  animation: price-loader-spin 0.9s linear infinite;
}

.price-loader__orb span {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(var(--accent-rgb), 0.6);
}

.price-loader__body {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
}

.price-loader__body strong {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 0.98rem;
  line-height: 1.2;
}

.price-loader__body span {
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.price-loader__rail {
  position: relative;
  height: 0.34rem;
  margin-top: 0.1rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
}

.price-loader__rail i {
  position: absolute;
  inset: 0 auto 0 0;
  width: 34%;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgba(var(--accent-rgb), 0.92), transparent);
  animation: price-loader-rail 1.45s ease-in-out infinite;
}

.price-page__controls {
  margin: 1.12rem 0 0;
  padding: 0.62rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.022)),
    rgba(12, 14, 19, 0.86);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 18px 54px rgba(0, 0, 0, 0.24);
}

.price-page__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin: 0;
  padding: 0.28rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 999px;
  background: rgba(5, 7, 11, 0.45);
  scroll-padding-inline: 0.8rem;
}

.price-page__filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 12rem;
  gap: 0.5rem;
  min-height: 2.6rem;
  padding: 0.55rem 1rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--text-muted);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
}

.price-page__filter span {
  min-width: 0;
  line-height: 1.25;
}

.price-page__filter:not(.is-active):hover {
  border-color: transparent;
  background: transparent;
  color: var(--text-muted);
}

.price-page__filter.is-active {
  border-color: rgba(var(--accent-rgb), 0.54);
  background: var(--gradient-accent);
  color: #0a0b0d;
  box-shadow: 0 10px 26px rgba(var(--accent-rgb), 0.18);
}

.price-page__subfilters {
  display: grid;
  margin: 0.55rem 0 0;
  padding: 0.34rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.018)),
    rgba(7, 10, 16, 0.6);
}

.price-page__subfilter-group {
  min-width: 0;
}

.price-page__subfilter-list {
  display: grid;
  grid-template-columns: repeat(var(--price-filter-count), minmax(0, 1fr));
  gap: 0.2rem;
  overflow: hidden;
  padding: 0;
  border-radius: inherit;
  scroll-padding-inline: 0.8rem;
  scrollbar-width: none;
}

.price-page__subfilter-list::-webkit-scrollbar {
  display: none;
}

.price-page__subfilter-list[hidden],
.price-page__subfilters[hidden] {
  display: none;
}

.price-page__subfilter {
  --price-filter-color: var(--accent);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  width: 100%;
  min-width: 0;
  min-height: 2.7rem;
  padding: 0.52rem 0.8rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--text-muted);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
}

.price-page__subfilter-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.95rem;
  height: 0.95rem;
  flex: 0 0 auto;
  color: var(--price-filter-color);
  filter: drop-shadow(0 0 8px color-mix(in srgb, var(--price-filter-color) 22%, transparent));
}

.price-page__subfilter-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.price-page__subfilter span {
  min-width: 0;
  line-height: 1.18;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.price-page__subfilter.is-active {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
}

.price-page__subfilter:not(.is-active):hover {
  border-color: transparent;
  background: transparent;
  color: var(--text-muted);
}

.price-page__subfilter.is-active {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.06)),
    color-mix(in srgb, var(--price-filter-color) 18%, rgba(37, 43, 55, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 10px 24px color-mix(in srgb, var(--price-filter-color) 12%, transparent);
}

.price-page__subfilter.is-active::before {
  opacity: 1;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--price-filter-color) 18%, transparent);
}

.price-table {
  margin-top: 1.35rem;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.044), rgba(255, 255, 255, 0.018)),
    rgba(10, 12, 17, 0.9);
  box-shadow: 0 20px 64px rgba(0, 0, 0, 0.26);
}

.price-table__table {
  width: 100%;
  min-width: 0;
  border-collapse: collapse;
  table-layout: fixed;
}

.price-table__table th {
  position: sticky;
  top: 0;
  z-index: 2;
  padding: 0.78rem 0.72rem;
  background: rgba(14, 16, 22, 0.96);
  color: var(--text-dim);
  font-family: var(--font-display);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: left;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.price-table__table th:nth-child(1),
.price-table__table td:nth-child(1) {
  width: 4.15rem;
}

.price-table__table th:nth-child(2),
.price-table__table td:nth-child(2) {
  width: 11.6rem;
}

.price-table__table th:nth-child(3),
.price-table__table td:nth-child(3) {
  width: 13.8rem;
}

.price-table__table th:nth-child(5),
.price-table__table td:nth-child(5) {
  width: 10.8rem;
}

.price-table__table th:nth-child(6),
.price-table__table td:nth-child(6) {
  width: 5.6rem;
}

.price-table__table th:nth-child(7),
.price-table__table td:nth-child(7) {
  width: 6.5rem;
}

.price-table__table td {
  padding: 0.82rem 0.72rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--text-muted);
  vertical-align: middle;
}

.price-table__table tr {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.025), transparent);
}

.price-table__table tbody tr:hover {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.025), transparent);
}

.price-table__section-row {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.026) 42%, rgba(255, 255, 255, 0.018));
}

.price-table__section-row td {
  padding: 0.72rem 1rem;
  border-top-color: rgba(255, 255, 255, 0.075);
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.078), rgba(255, 255, 255, 0.043) 28%, rgba(255, 255, 255, 0.034) 58%, rgba(255, 255, 255, 0.024)),
    rgba(255, 255, 255, 0.018);
}

.price-table__section-row:hover {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.026) 42%, rgba(255, 255, 255, 0.018));
}

.price-table__section-row:hover td {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.078), rgba(255, 255, 255, 0.043) 28%, rgba(255, 255, 255, 0.034) 58%, rgba(255, 255, 255, 0.024)),
    rgba(255, 255, 255, 0.018);
}

.price-table__section-title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.62rem;
  width: 100%;
  min-height: 2.72rem;
  text-align: center;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 850;
  line-height: 1.25;
}

.price-table__section-marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.12rem;
  height: 2.12rem;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.04));
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 900;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 0 0 5px rgba(255, 255, 255, 0.035);
}

.price-table__platform-icon svg {
  display: block;
  width: 1.06rem;
  height: 1.06rem;
}

.price-table__id {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.36rem;
  height: 1.8rem;
  padding: 0 0.48rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 800;
  white-space: nowrap;
}

.price-table__category {
  display: flex;
  align-items: center;
  gap: 0.52rem;
  min-width: 0;
}

.price-table__marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  border: 1px solid color-mix(in srgb, var(--price-icon-color, var(--price-row-color)) 42%, transparent);
  border-radius: 10px;
  background: color-mix(in srgb, var(--price-icon-color, var(--price-row-color)) 13%, rgba(255, 255, 255, 0.03));
  color: var(--price-icon-color, var(--price-row-color));
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.price-table__category strong {
  display: block;
  color: var(--text);
  font-weight: 800;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.price-table__category small {
  display: block;
  margin-top: 0.25rem;
  color: var(--text-dim);
  font-size: 0.76rem;
  line-height: 1.35;
  overflow-wrap: normal;
  white-space: nowrap;
}

.price-table__name {
  min-width: 0;
  max-width: 100%;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.price-table__pill {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-height: 1.55rem;
  padding: 0.2rem 0.46rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}

.price-table__price {
  display: inline-block;
  min-width: 0;
  max-width: 100%;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 0.88rem;
  line-height: 1.35;
  white-space: nowrap;
}

.price-table__details {
  width: auto;
  max-width: none;
  color: var(--text-dim);
  font-size: 0.76rem;
  line-height: 1.45;
}

.price-detail {
  display: grid;
  gap: 0.42rem;
  min-width: 0;
  max-width: none;
}

.price-detail--likedrom {
  gap: 0.42rem;
}

.price-detail--likedrom .price-detail__warning {
  color: var(--text-muted);
}

.price-detail--likedrom .price-detail__description {
  border-color: rgba(255, 255, 255, 0.085);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.022) 58%),
    rgba(255, 255, 255, 0.018);
}

.price-detail--likedrom .price-detail__description span::before {
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(var(--accent-rgb), 0.08);
}

.price-detail__warning {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.28rem;
  color: color-mix(in srgb, var(--price-icon-color, var(--accent)) 76%, var(--text-muted));
  font-size: 0.74rem;
  line-height: 1.42;
}

.price-detail__warning > span {
  margin-top: 0.02rem;
  line-height: 1;
}

.price-detail__warning div {
  display: grid;
  gap: 0.14rem;
}

.price-detail__description {
  display: grid;
  gap: 0.22rem;
  padding: 0.5rem 0.58rem;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 11px;
  background:
    linear-gradient(135deg, rgba(var(--price-icon-rgb, 200, 220, 56), 0.06), rgba(255, 255, 255, 0.022) 58%),
    rgba(255, 255, 255, 0.018);
  color: var(--text-muted);
}

.price-detail__description span {
  position: relative;
  display: block;
  padding-left: 0.78rem;
  overflow-wrap: anywhere;
}

.price-detail__description span.is-refill {
  color: color-mix(in srgb, var(--text) 88%, var(--accent));
  font-weight: 650;
}

.price-detail__description span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.64em;
  width: 0.28rem;
  height: 0.28rem;
  border-radius: 999px;
  background: var(--price-icon-color, var(--accent));
  box-shadow: 0 0 0 4px rgba(var(--price-icon-rgb, 200, 220, 56), 0.08);
}

.price-detail__description span.is-refill::before {
  background: var(--accent);
  box-shadow:
    0 0 0 4px rgba(var(--accent-rgb), 0.12),
    0 0 16px rgba(var(--accent-rgb), 0.18);
}

.price-detail__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.28rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-detail__facts li {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  max-width: 100%;
  padding: 0.2rem 0.44rem;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text-muted);
  font-size: 0.64rem;
  line-height: 1.25;
}

.price-detail__facts span {
  flex: 0 0 auto;
  color: var(--price-icon-color, var(--accent));
  font-family: var(--font-display);
  font-size: 0.52rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price-detail__facts strong {
  min-width: 0;
  color: var(--text);
  font-weight: 650;
  overflow-wrap: anywhere;
}

.price-detail__facts--likedrom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.28rem;
}

.price-detail__facts--likedrom li {
  --fact-color: var(--accent);
  position: relative;
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-height: 1.94rem;
  gap: 0.32rem;
  padding: 0.28rem 0.6rem 0.28rem 0.42rem;
  border-color: rgba(255, 255, 255, 0.105);
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.026)),
    rgba(12, 15, 21, 0.68);
  color: var(--text-muted);
  font-size: 0.74rem;
  line-height: 1.22;
  white-space: nowrap;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 8px 22px rgba(0, 0, 0, 0.13);
  overflow: hidden;
}

.price-detail__facts--likedrom span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.18rem;
  height: 1.06rem;
  flex: 0 0 auto;
  border-radius: 999px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--fact-color) 70%, #ffffff), var(--fact-color));
  box-shadow: 0 0 12px color-mix(in srgb, var(--fact-color) 32%, transparent);
}

.price-detail__facts--likedrom strong {
  color: var(--text);
  font-weight: 750;
}

.price-table__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.9rem;
  padding: 0.3rem 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.price-table__action:hover {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
}

.price-table__empty {
  display: grid;
  gap: 0.35rem;
  padding: 2rem;
  text-align: center;
}

.price-table__empty-copy {
  display: grid;
  gap: 0.35rem;
}

.price-table__empty strong {
  color: var(--text);
  font-family: var(--font-display);
}

.price-table__empty span {
  color: var(--text-muted);
}

.payment-result {
  position: relative;
  min-height: calc(100vh - var(--site-header-h));
  padding: calc(var(--site-header-h) + 3rem) 0 4rem;
  overflow: hidden;
}

.payment-result::before,
.payment-result::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.payment-result::before {
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 77, 106, 0.13), transparent 34%),
    radial-gradient(circle at 82% 26%, rgba(var(--accent-rgb), 0.08), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 42%);
}

.payment-result::after {
  width: 38rem;
  height: 38rem;
  right: max(-18rem, -22vw);
  top: 8rem;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 999px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.028) 0 1px, transparent 1px 34px);
  mask-image: radial-gradient(circle, #000 0 46%, transparent 72%);
}

.payment-result__inner {
  position: relative;
  z-index: 1;
}

.payment-result__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 2.25rem;
  color: var(--text-dim);
  font-size: 0.8125rem;
  font-weight: 700;
}

.payment-result__breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.payment-result__breadcrumb a:hover {
  color: var(--accent);
}

.payment-result__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 28rem);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.payment-result__content {
  max-width: 44rem;
}

.payment-result__content h1 {
  max-width: 12ch;
  margin-bottom: 1.1rem;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5.4rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0;
}

.payment-result__lead {
  max-width: 38rem;
  color: var(--text-muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.7;
}

.payment-result__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.payment-result__panel {
  position: relative;
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(22, 25, 32, 0.93), rgba(9, 11, 15, 0.94)),
    rgba(255, 255, 255, 0.035);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    0 24px 62px rgba(0, 0, 0, 0.35);
}

.payment-result__status {
  display: grid;
  place-items: center;
  width: 4.4rem;
  height: 4.4rem;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255, 77, 106, 0.28);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 77, 106, 0.2), transparent 62%),
    rgba(255, 77, 106, 0.08);
  color: var(--accent-hot);
}

.payment-result__status span {
  position: relative;
  width: 1.55rem;
  height: 1.55rem;
}

.payment-result__status span::before,
.payment-result__status span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.7rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.payment-result__status span::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.payment-result__status span::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.payment-result__panel h2 {
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.payment-result__steps {
  display: grid;
  gap: 0.9rem;
  list-style: none;
}

.payment-result__steps li {
  display: grid;
  gap: 0.2rem;
  padding: 0.82rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.payment-result__steps strong {
  color: var(--text);
  font-size: 0.92rem;
}

.payment-result__steps span {
  color: var(--text-dim);
  font-size: 0.84rem;
  line-height: 1.55;
}

.price-table__empty--filtered {
  margin-top: 0.75rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
}

.price-table__empty--filtered.is-loading {
  gap: 1.15rem;
  border-color: rgba(var(--accent-rgb), 0.22);
  background:
    radial-gradient(circle at 50% 0%, rgba(var(--accent-rgb), 0.11), transparent 54%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.024)),
    rgba(12, 15, 20, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.price-table__loading-preview {
  display: grid;
  gap: 0.52rem;
  width: min(48rem, 100%);
  margin: 0 auto;
}

.price-table__loading-preview[hidden] {
  display: none;
}

.price-table__loading-preview div {
  height: 2.9rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 13px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0%, rgba(var(--accent-rgb), 0.11) 42%, rgba(255, 255, 255, 0.035) 78%),
    rgba(255, 255, 255, 0.026);
  background-size: 220% 100%;
  animation: price-loader-skeleton 1.35s ease-in-out infinite;
}

.price-table__loading-preview div:nth-child(2) {
  width: 92%;
  animation-delay: 0.12s;
}

.price-table__loading-preview div:nth-child(3) {
  width: 82%;
  animation-delay: 0.24s;
}

@keyframes price-loader-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes price-loader-rail {
  0% {
    transform: translateX(-105%);
  }

  100% {
    transform: translateX(310%);
  }
}

@keyframes price-loader-skeleton {
  0% {
    background-position: 120% 0;
  }

  100% {
    background-position: -120% 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .price-loader__orb::before,
  .price-loader__rail i,
  .price-table__loading-preview div {
    animation: none;
  }
}

@media (max-width: 900px) {
  .payment-result {
    padding: calc(var(--site-header-h) + 1.4rem) 0 3rem;
  }

  .payment-result::after {
    width: 24rem;
    height: 24rem;
    right: -12rem;
    top: 5rem;
  }

  .payment-result__breadcrumb {
    margin-bottom: 1.4rem;
  }

  .payment-result__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .payment-result__content h1 {
    max-width: 10ch;
    font-size: clamp(2.2rem, 12vw, 4rem);
  }

  .payment-result__actions .btn {
    min-width: min(100%, 12rem);
  }

  .price-page {
    padding: calc(var(--site-header-h) + 1.25rem) 0 3.25rem;
  }

  .price-page .container {
    width: min(1200px, 92vw);
  }

  .platform-breadcrumb {
    gap: 0.42rem;
    margin-bottom: 0.78rem;
    font-size: 0.76rem;
  }

  .price-page__eyebrow {
    margin-bottom: 0.45rem;
    font-size: 0.6rem;
    letter-spacing: 0.14em;
  }

  .price-page__intro h1 {
    max-width: 12em;
    font-size: clamp(1.55rem, 6.8vw, 2.05rem);
    line-height: 1.04;
    margin-bottom: 0.58rem;
  }

  .price-page__intro p {
    max-width: 34rem;
    font-size: 0.86rem;
    line-height: 1.5;
  }

  .price-page__controls {
    margin-top: 0.92rem;
    padding: 0.5rem;
    border-radius: 24px;
  }

  .price-page__filters {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    gap: 0.3rem;
    padding: 0.25rem;
    scroll-padding-inline: 1rem;
    scrollbar-width: none;
  }

  .price-page__filters::-webkit-scrollbar {
    display: none;
  }

  .price-page__filter {
    flex: 0 0 auto;
    min-height: 2.36rem;
    padding: 0.45rem 0.85rem;
    font-size: 0.76rem;
  }

  .price-page__subfilters {
    padding: 0.3rem;
    border-radius: 999px;
  }

  .price-page__subfilter-group {
    min-width: 0;
  }

  .price-page__subfilter-list {
    grid-auto-columns: minmax(8.2rem, 1fr);
    grid-auto-flow: column;
    grid-template-columns: none;
    margin-inline: 0;
    padding: 0;
    overflow-x: auto;
    scroll-padding-inline: 1rem;
  }

  .price-page__subfilter {
    max-width: none;
    min-height: 2.34rem;
    padding: 0.42rem 0.7rem;
    font-size: 0.74rem;
  }

  .price-loader {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.78rem;
    padding: 1rem;
    text-align: center;
  }

  .price-loader__body {
    width: 100%;
  }

  .price-table {
    margin-top: 0.9rem;
    overflow: visible;
    border: none;
    background: transparent;
    box-shadow: none;
  }

  .price-table__table,
  .price-table__table tbody,
  .price-table__table tr,
  .price-table__table td {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .price-table__table {
    border-collapse: separate;
    border-spacing: 0;
  }

  .price-table__table thead {
    display: none;
  }

  .price-table__table tr:not(.price-table__section-row) {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.55rem 0.75rem;
    margin-bottom: 0.72rem;
    padding: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background:
      linear-gradient(135deg, color-mix(in srgb, var(--price-row-color) 7%, transparent), transparent 62%),
      rgba(255, 255, 255, 0.04);
  }

  .price-table__table tbody tr:not(.price-table__section-row):hover {
    background:
      linear-gradient(135deg, color-mix(in srgb, var(--price-row-color) 7%, transparent), transparent 62%),
      rgba(255, 255, 255, 0.04);
  }

  .price-table__table td {
    display: block;
    padding: 0;
    border-top: none;
  }

  .price-table__table th:nth-child(n),
  .price-table__table td:nth-child(n) {
    width: auto;
  }

  .price-table__table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 0.18rem;
    color: var(--text-dim);
    font-family: var(--font-display);
    font-size: 0.56rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
  }

  .price-table__table td[data-label="ID"],
  .price-table__table td[data-label="Категория"] {
    display: none;
  }

  .price-table__table td[data-label="Услуга / товар"] {
    grid-column: 1 / -1;
    order: 1;
  }

  .price-table__table td[data-label="Услуга / товар"]::before,
  .price-table__table td[data-label="Тип"]::before {
    display: none;
  }

  .price-table__name {
    font-size: 0.98rem;
    line-height: 1.35;
    min-width: 0;
    max-width: none;
  }

  .price-table__table td[data-label="Цена"] {
    grid-column: 1;
    order: 2;
  }

  .price-table__table td[data-label="Тип"] {
    grid-column: 2;
    order: 3;
    justify-self: end;
    align-self: end;
  }

  .price-table__table td[data-label="Детали"] {
    grid-column: 1 / -1;
    order: 4;
    font-size: 0.82rem;
    line-height: 1.48;
    min-width: 0;
    width: auto;
    max-width: none;
  }

  .price-detail {
    min-width: 0;
    max-width: none;
  }

  .price-detail__description {
    padding: 0.56rem 0.64rem;
  }

  .price-detail__facts li {
    font-size: 0.68rem;
  }

  .price-detail__facts--likedrom {
    gap: 0.28rem;
  }

  .price-detail__facts--likedrom li {
    min-height: 1.88rem;
    gap: 0.28rem;
    padding: 0.24rem 0.54rem 0.24rem 0.38rem;
    font-size: 0.74rem;
  }

  .price-detail__facts--likedrom span {
    width: 0.18rem;
    height: 1.02rem;
  }

  .price-table__action-cell {
    grid-column: 1 / -1;
    order: 5;
    display: block;
  }

  .price-table__action-cell::before {
    display: none;
  }

  .price-table__action {
    width: 100%;
    margin-top: 0.1rem;
    min-height: 2.32rem;
  }

  .price-table__empty--filtered.is-loading {
    padding: 1.15rem;
  }

  .price-table__loading-preview div {
    height: 3.15rem;
  }

  .price-table__section-row {
    margin: 1rem 0 0.65rem;
    padding: 0;
    border: none;
    background: transparent;
  }

  .price-table__section-row td {
    display: block;
    padding: 0;
    border-top-color: transparent;
    border-bottom: 0;
    background: transparent;
  }

  .price-table__section-row td::before {
    display: none;
  }

  .price-table__section-title {
    justify-content: center;
    min-height: 3.75rem;
    padding: 0.85rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.085);
    border-radius: 16px;
    background:
      radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.055), transparent 68%),
      linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04));
    font-size: 0.9rem;
    text-align: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }

  .price-table__section-marker {
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 12px;
  }

  .price-table__category,
  .price-table__details {
    min-width: 0;
    max-width: none;
  }
}

@media (max-width: 560px) {
  .price-page .platform-breadcrumb {
    margin-bottom: 1.25rem;
  }

  .price-page__intro p {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .price-page__subfilter {
    font-size: 0.76rem;
  }

  .price-table__price {
    white-space: normal;
  }
}

/* ─── Sticky CTA (mobile) ─── */
.sticky-cta {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  z-index: 90;
  transform: translateX(-50%) translateY(120%);
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  background: var(--accent);
  color: #0a0b0d;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 100px;
  box-shadow: 0 8px 28px rgba(var(--accent-rgb), 0.2), 0 2px 8px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap;
}

.sticky-cta.is-visible {
  transform: translateX(-50%) translateY(0);
}

.sticky-cta:active {
  transform: translateX(-50%) scale(0.97);
}

/* ─── Telegram float ─── */
.tg-float {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 85;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  color: var(--accent);
  border: 1px solid var(--border-accent);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  transition: var(--transition);
  text-decoration: none;
}

.tg-float svg {
  width: 24px;
  height: 24px;
  margin-left: -2px;
}

.tg-float:hover {
  transform: scale(1.06);
  background: rgba(var(--accent-rgb), 0.08);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}

/* ─── Scroll top float ─── */
.scroll-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 85;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: var(--bg-card);
  color: var(--accent);
  border: 1px solid var(--border-accent);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(18px) scale(0.94);
  transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), background 0.2s ease, box-shadow 0.2s ease;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.scroll-top:hover {
  transform: translateY(-2px) scale(1.04);
  background: rgba(var(--accent-rgb), 0.08);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}

.scroll-top:active {
  transform: translateY(0) scale(0.96);
}

.scroll-top svg {
  width: 22px;
  height: 22px;
}

.footer__bottom {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 2rem;
  margin-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer__disclaimer {
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--text-dim);
  max-width: 72ch;
}

.footer__bottom-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ─── Reveal animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

@media (min-width: 1281px) and (max-width: 1599px) {
  .hero__inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1fr);
    gap: 3.5rem;
  }

  .hero__content {
    max-width: 32rem;
  }

  .hero-visual-stack {
    max-width: 460px;
  }

  .hero-dashboard--smm {
    max-width: 400px;
  }

  .hero-dashboard--digital {
    width: min(84%, 340px);
  }
}

@media (min-width: 1281px) {
  .hero__title {
    max-width: 11.5em;
    font-size: clamp(2.5rem, 3vw, 3.1rem);
  }

  .hero__visual {
    justify-content: flex-end;
  }

  .hero-visual-stack {
    margin-left: auto;
    margin-right: 0;
  }
}

/* ─── Responsive ─── */
@media (max-width: 1280px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 2.75rem;
  }

  .hero__content {
    max-width: none;
  }

  .hero__visual {
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }

  .hero__visual::before {
    display: none;
  }

  .hero-visual-stack {
    gap: 1.15rem;
    max-width: 460px;
  }

  .hero-dashboard--smm,
  .hero-dashboard--digital {
    align-self: stretch;
    margin-right: 0;
    margin-top: 0;
    width: 100%;
    max-width: none;
    transform: none;
  }

  .hero-dashboard--smm {
    margin-right: 1.25rem;
  }

  .hero-dashboard--digital {
    margin-left: 1.25rem;
    transform: rotate(0.85deg);
    transform-origin: center;
  }
}

@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero__visual {
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }

  .hero__visual::before {
    display: none;
  }

  .hero-dashboard--smm,
  .hero-dashboard--digital {
    transform: none;
    margin-left: 0;
    margin-right: 0;
    align-self: stretch;
    width: 100%;
  }

  .services__grid,
  .pricing__grid,
  .testimonials__track {
    grid-template-columns: repeat(2, 1fr);
  }

  .how__inner,
  .faq__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .price-card--featured {
    transform: none;
  }

  .footer__links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.25rem 2rem;
  }
}

@media (max-width: 768px) {
  :root {
    --mobile-header-h: var(--site-header-h);
    --mobile-header-offset: var(--mobile-header-measured, calc(env(safe-area-inset-top, 0px) + var(--mobile-header-h)));
  }

  .nav,
  .header__actions:not(.header__actions--cabinet) {
    display: none;
  }

  .header__inner > .burger {
    display: flex;
    flex-shrink: 0;
  }

  .header__actions--cabinet {
    display: flex;
    margin-left: auto;
  }

  .header-cabinet-chip {
    display: none;
  }

  .cabinet-balance-chip {
    display: none;
  }

  .cabinet-user-chip__info {
    display: none;
  }

  .header {
    padding: 0;
    padding-top: env(safe-area-inset-top, 0px);
    background: #0a0b0d;
    border-bottom: 1px solid var(--border);
  }

  .header--scrolled {
    background: #0a0b0d;
    backdrop-filter: none;
  }

  .header__inner {
    min-height: var(--mobile-header-h);
    gap: 0.85rem;
  }

  .mobile-overlay {
    display: block;
    top: var(--mobile-header-offset);
    bottom: 0;
    z-index: 25;
  }

  body.menu-open {
    overflow: hidden;
    touch-action: none;
  }

  body.menu-open .burger {
    border-color: rgba(var(--accent-rgb), 0.45);
    background: rgba(var(--accent-rgb), 0.08);
  }

  body.menu-open .sticky-cta {
    display: none !important;
  }

  .hero__visual {
    max-width: 100%;
  }

  .hero-visual-stack {
    gap: 1rem;
  }

  .hero-dashboard {
    max-width: 100%;
    padding: 1.1rem;
  }

  .hero-dashboard--digital,
  .hero-dashboard--smm {
    margin-left: 0;
    margin-right: 0;
    transform: none;
  }

  .hero-digital-card {
    padding: 0.65rem 0.6rem;
    gap: 0.55rem;
  }

  .hero-digital-card__thumb {
    width: 32px;
    height: 32px;
  }

  .hero-metric {
    padding: 0.85rem 0.7rem 1.2rem;
  }

  .hero-metric__value {
    font-size: 1.1rem;
  }

  .hero__inner {
    padding-bottom: 3rem;
  }

  .hero {
    min-height: auto;
    padding-bottom: 0;
  }

  .sticky-cta {
    display: flex;
  }

  .tg-float {
    bottom: 5.5rem;
  }

  body:has(.sticky-cta.is-visible) .footer {
    padding-bottom: 5rem;
  }

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

  .trust__item {
    border-right: none !important;
    padding-right: 0 !important;
  }

  .trust__item:nth-child(5) {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(100%, 16rem);
  }

  .services__grid,
  .pricing__grid,
  .testimonials__track {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 6rem;
  }

  .hero__orb,
  .hero__streaks {
    display: none;
  }

  .hero__grid {
    opacity: 0.24;
    mask-image: radial-gradient(ellipse 82% 58% at 50% 18%, black 6%, transparent 66%);
  }

  .hero__content {
    max-width: none;
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .hero__eyebrow {
    gap: 0.5rem;
    justify-content: center;
    font-size: clamp(0.66rem, 2.25vw, 0.78rem);
    letter-spacing: 0.09em;
  }

  .hero__eyebrow-brand {
    font-size: clamp(0.62rem, 2.1vw, 0.72rem);
    letter-spacing: 0.14em;
  }

  .hero__title {
    width: 100%;
    max-width: none;
    font-size: clamp(1.72rem, 6.4vw, 2.35rem);
    letter-spacing: -0.02em;
  }

  .hero__title-desktop {
    display: none;
  }

  .hero__title-mobile {
    display: block;
  }

  .hero__title-row {
    display: block;
    white-space: nowrap;
  }

  .hero__title-brand {
    justify-content: center;
    font-size: 0.95em;
    margin-top: 0.28em;
  }

  .hero__desc {
    margin-inline: auto;
  }

  .hero__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
    justify-content: center;
    width: min(100%, 30rem);
    margin-inline: auto;
  }

  .hero__actions .btn {
    width: 100%;
    min-width: 0;
    height: 2.75rem;
    padding: 0 0.45rem;
    gap: 0.35rem;
    font-size: 0.76rem;
  }

  .hero__actions .btn svg {
    width: 1rem;
    height: 1rem;
    flex: 0 0 auto;
  }

  .hero__platforms {
    justify-content: center;
  }

  .platform-icon:hover {
    transform: none;
  }

  .form-row {
    flex-direction: column;
  }

  .form-row select,
  .form-row input,
  .form-row .btn {
    width: 100%;
  }

  .footer__brand {
    display: block;
  }

  .footer__brand p {
    margin-top: 1rem;
    text-align: left;
  }

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

  .footer__bottom-meta {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    width: 100%;
  }

  .footer__bottom {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .payment-result__actions {
    display: grid;
  }

  .payment-result__actions .btn {
    width: 100%;
  }

  .payment-result__panel {
    padding: 1rem;
  }

  .footer__links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 360px) {
  .hero__actions {
    gap: 0.4rem;
  }

  .hero__actions .btn {
    height: 2.6rem;
    padding-inline: 0.3rem;
    gap: 0.25rem;
    font-size: 0.7rem;
  }

  .hero__actions .btn svg {
    width: 0.88rem;
    height: 0.88rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  html { scroll-behavior: auto; }
}
