:root {
  --bg: #07080d;
  --bg-elevated: #0e1018;
  --surface: rgba(18, 22, 34, 0.72);
  --border: rgba(255, 255, 255, 0.08);
  --text: #e8eaef;
  --text-muted: #8b92a8;
  --gold: #c9a227;
  --gold-dim: #8a7020;
  --cyan: #2ee6d6;
  --violet: #a78bfa;
  --radius: 16px;
  --radius-sm: 10px;
  --font: "Manrope", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(circle at top, #111827 0, #020617 45%, #020617 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: var(--cyan);
  text-decoration: none;
  transition: color 0.2s, opacity 0.2s;
}

a:hover {
  color: #5ff5ea;
}

.is-hidden {
  display: none !important;
}

.container {
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 20px;
}

.noise {
  display: none;
}

.grid-bg {
  display: none;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 8, 13, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

@media (max-width: 860px) {
  .header {
    position: relative;
  }
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.9rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
  text-decoration: none;
}

.logo:hover {
  color: inherit;
}

.logo__mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: radial-gradient(circle at 20% 0%, #facc15 0, #c0841a 45%, #1a1510 80%);
  box-shadow: 0 0 22px rgba(250, 204, 21, 0.4);
  position: relative;
  overflow: hidden;
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo__text strong {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.logo__tag {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.nav {
  display: flex;
  gap: 1.5rem;
  margin-left: auto;
}

.nav a {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 600;
}

.nav a:hover {
  color: var(--text);
}

.header__tel {
  flex-shrink: 0;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold) 0%, #a6841e 100%);
  color: #0a0a0c;
  box-shadow: 0 8px 32px rgba(201, 162, 39, 0.25);
}

.btn--primary:hover {
  color: #0a0a0c;
  transform: translateY(-1px);
  box-shadow: 0 12px 40px rgba(201, 162, 39, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn--outline:hover {
  border-color: rgba(46, 230, 214, 0.4);
  color: var(--cyan);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border: 1px solid transparent;
}

.btn--ghost:hover {
  border-color: var(--border);
  color: var(--cyan);
}

.btn--lg {
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
}

.hero {
  position: relative;
  z-index: 1;
  padding: clamp(3rem, 8vw, 6rem) 0 4rem;
}

.hero__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr 380px;
  }
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--cyan);
  margin: 0 0 1rem;
}

.hero__title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 1.25rem;
}

.gradient-text {
  background: linear-gradient(90deg, var(--cyan), #7dd3fc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gradient-text--alt {
  background: linear-gradient(90deg, var(--violet), #f0abfc);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero__lead {
  color: var(--text-muted);
  max-width: 36rem;
  margin: 0 0 2rem;
  font-size: 1.05rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__visual {
  position: relative;
  min-height: 280px;
}

.orb {
  display: none;
}

.orb--1 {
  width: 200px;
  height: 200px;
  background: var(--cyan);
  top: 0;
  right: 20%;
}

.orb--2 {
  width: 180px;
  height: 180px;
  background: var(--violet);
  bottom: 10%;
  left: 10%;
}

.glass-card {
  position: relative;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.glass-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.glass-card__row:last-of-type {
  margin-bottom: 1.25rem;
}

.mono {
  font-family: var(--mono);
  font-size: 1.1rem;
  font-weight: 500;
}

.pill {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(46, 230, 214, 0.15);
  color: var(--cyan);
}

.pill--alt {
  background: rgba(167, 139, 250, 0.2);
  color: #ddd6fe;
}

.glass-card__meter {
  display: flex;
  gap: 6px;
  height: 4px;
}

.glass-card__meter span {
  flex: 1;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0.6;
}

.glass-card__meter span:nth-child(2) {
  opacity: 0.35;
}

.glass-card__meter span:nth-child(3) {
  opacity: 0.2;
}

.glass-card__link {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(46, 230, 214, 0.4);
  color: var(--cyan);
  background: rgba(15, 23, 42, 0.7);
}

.glass-card__link--alt {
  border-color: rgba(167, 139, 250, 0.5);
  color: #ddd6fe;
}

.glass-card__hint {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.section {
  position: relative;
  z-index: 1;
  padding: 4rem 0;
}

.section--dim {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.section__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}

.section__title--light {
  color: var(--text);
}

.section__subtitle {
  color: var(--text-muted);
  max-width: 42rem;
  margin: 0 0 2.5rem;
}

.callout {
  margin: 0;
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius);
  border: 1px solid rgba(46, 230, 214, 0.22);
  background: linear-gradient(135deg, rgba(46, 230, 214, 0.08), rgba(167, 139, 250, 0.06));
}

.callout p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.callout strong {
  color: var(--text);
}

.media__heading {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin: 2.5rem 0 1rem;
}

.media__heading:first-of-type {
  margin-top: 0;
}

.media-carousel {
  position: relative;
  margin-bottom: 0.5rem;
}

.media-viewport {
  overflow: hidden;
}

.media-track {
  display: flex;
  gap: 1rem;
  padding-block: 0.25rem 0.5rem;
  scroll-behavior: smooth;
}

.media-card {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.35);
  flex: 0 0 calc((100% - 2rem) / 3);
}

.media-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.5));
}

.media-card figcaption {
  padding: 0.65rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.media__note {
  margin: 1.5rem 0 0;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 48rem;
}

.media-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(15, 23, 42, 0.85);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  padding: 0;
  z-index: 2;
}

.media-nav--prev {
  left: -0.75rem;
}

.media-nav--next {
  right: -0.75rem;
}

@media (max-width: 720px) {
  .media-track {
    gap: 0.75rem;
  }

  .media-card {
    flex: 0 0 min(260px, calc(100vw - 80px));
  }

  .media-nav--prev {
    left: 0;
  }

  .media-nav--next {
    right: 0;
  }
}

.cards {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .cards--2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .cards--links {
    grid-template-columns: repeat(2, 1fr);
  }
}

.card {
  padding: 1.75rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.card--brand {
  border-top: 3px solid var(--cyan);
}

.card--brand-alt {
  border-top-color: var(--violet);
}

.card__brandhead {
  min-height: 48px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.card__brandlogo {
  max-height: 40px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
}

.card__brandlogo--zaopin {
  max-height: 44px;
}

.card__title {
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 0 0.75rem;
  font-family: var(--mono);
}

.card__text {
  color: var(--text-muted);
  margin: 0 0 1rem;
  font-size: 0.95rem;
}

.card__list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.card__list li {
  margin-bottom: 0.35rem;
}

.store-group {
  margin-bottom: 2.5rem;
}

.store-group:last-child {
  margin-bottom: 0;
}

.store-group__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.store-group__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.85rem;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.store-group__badge img {
  display: block;
  height: 22px;
  width: auto;
  max-width: 132px;
}

.store-group__badge--ozon img {
  height: 20px;
  max-width: 108px;
}

.store-group__badge--ym {
  padding: 0.4rem 0.75rem;
}

.store-group__badge--ym img {
  height: 20px;
  max-width: 160px;
  filter: none;
}

.store-group__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.store-group__icon {
  color: var(--gold);
  font-size: 0.65rem;
}

.link-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}

.link-card__mall {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0.35rem 0.55rem;
  margin-bottom: 0.25rem;
  border-radius: 8px;
  background: #fff;
}

.link-card__mall img {
  display: block;
  height: 14px;
  width: auto;
  max-width: 92px;
}

.link-card__mall--ozon img {
  height: 13px;
  max-width: 78px;
}

.link-card__mall--ym {
  padding: 0.3rem 0.5rem;
}

.link-card__mall--ym img {
  height: 12px;
  max-width: 120px;
}

.link-card:hover {
  border-color: rgba(46, 230, 214, 0.35);
  background: rgba(46, 230, 214, 0.06);
  color: inherit;
  transform: translateY(-2px);
}

.link-card__label {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 1.1rem;
}

.link-card__hint {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.link-card__arrow {
  margin-top: 0.5rem;
  font-size: 1.25rem;
  color: var(--cyan);
}

.legal {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .legal {
    grid-template-columns: 1fr 1fr;
  }
}

.legal__block {
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.legal__block--accent {
  border-color: rgba(201, 162, 39, 0.25);
  background: linear-gradient(145deg, rgba(201, 162, 39, 0.08), transparent);
}

.legal__name {
  margin: 0 0 1.25rem;
  font-size: 1.15rem;
}

.legal__dl {
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.legal__dl div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.legal__dl div:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.legal__dl dt {
  color: var(--text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.legal__dl dd {
  margin: 0;
  font-family: var(--mono);
  font-size: 0.9rem;
}

.legal__address,
.legal__site {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.legal__site {
  margin-bottom: 0;
}

.legal__site-text {
  font-weight: 700;
  color: var(--text);
}

.legal__site-link {
  font-weight: 700;
}

.section--cta {
  padding: 4rem 0 5rem;
}

.cta {
  text-align: center;
  padding: 3rem 1.5rem;
  border-radius: calc(var(--radius) + 8px);
  border: 1px solid var(--border);
  background: linear-gradient(160deg, rgba(46, 230, 214, 0.08), rgba(167, 139, 250, 0.06));
  box-shadow: var(--shadow);
}

.cta__content {
  max-width: 32rem;
  margin-inline: auto;
}

.cta__text {
  color: var(--text-muted);
  margin: 0 0 1.5rem;
}

.cta .btn {
  margin: 0.4rem;
}

.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 1.5rem 0 2rem;
  background: var(--bg);
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer__brand {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 36rem;
}

.footer__link {
  font-weight: 700;
  font-size: 0.9rem;
}

.footer__domain {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-muted);
}

@media (max-width: 600px) {
  .section {
    padding: 3rem 0 3.25rem;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .hero__title {
    font-size: 2.2rem;
  }

  .hero__lead {
    font-size: 0.95rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn,
  .link-card {
    transition: none;
  }
}

@media (max-width: 860px) {
  .header__inner {
    flex-wrap: wrap;
  }

  .nav {
    order: 10;
    flex-direction: column;
    width: 100%;
    margin: 0;
    margin-top: 0.75rem;
    padding: 1rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    padding-top: 0;
    padding-bottom: 0;
    border-width: 0;
    margin-top: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.25s ease, margin 0.25s ease, border-width 0.2s ease;
  }

  .nav.is-open {
    max-height: 320px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    padding: 1rem;
    margin-top: 0.75rem;
    border-width: 1px;
  }

  .burger {
    display: flex;
    margin-left: auto;
  }

  .header__tel {
    display: none;
  }
}
