:root {
  --bg: #050507;
  --surface: #0d0d12;
  --surface-2: #13131a;
  --text: #ffffff;
  --muted: #cfcfd4;
  --line: rgba(255, 255, 255, 0.08);
  --yellow: #ffd100;
  --orange: #ff9419;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.42);
  --radius: 24px;
  --radius-lg: 36px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.page-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(255, 146, 0, 0.18), transparent 28%),
    radial-gradient(circle at 20% 30%, rgba(255, 209, 0, 0.10), transparent 24%),
    linear-gradient(180deg, #0b0b10 0%, #040406 100%);
  z-index: -2;
}
.page-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.10) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.16;
}

.container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}
.container--narrow { width: min(980px, calc(100% - 32px)); }
.container--small { width: min(860px, calc(100% - 32px)); }

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(7, 7, 10, 0.86);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header__inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.logo__badge,
.hero__icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1f1200;
  background: linear-gradient(135deg, #ffe667, var(--yellow) 52%, var(--orange));
  box-shadow: inset 0 0 0 2px rgba(102, 60, 0, 0.22), 0 8px 25px rgba(255, 174, 0, 0.35);
}
.logo__text,
.hero__brand h1 {
  font-size: clamp(24px, 3vw, 34px);
}
.logo__text strong,
.hero__brand h1 span { color: var(--yellow); }

.hero__brand h1 span {
  font-family: 'Arial Black', Arial, sans-serif;
  letter-spacing: 2px;
}

.hero__brand h1 {
  font-family: 'Arial Black', Arial, sans-serif;
}
.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav a {
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  transition: color .2s ease;
}
.nav a:hover { color: var(--yellow); }

.burger {
  display: none;
  margin-left: auto;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
  color: var(--text);
}
.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  margin: 4px auto;
  transition: transform .25s ease, opacity .25s ease;
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 16px;
  border: 0;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .03em;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease, opacity .2s ease;
}
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-22deg);
  transition: left .6s ease;
}
.btn:hover::after { left: 140%; }
.btn:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
}
.btn--small { min-height: 46px; padding: 0 22px; }
.btn--wide { min-width: 240px; }
.btn--primary {
  color: #271600;
  background: linear-gradient(90deg, var(--yellow), var(--orange));
}
.btn--dark {
  background: #1a1c24;
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08), var(--shadow);
}

.section { position: relative; padding: 88px 0; }
.section--dark { background: transparent; }
.section--accent {
  background: linear-gradient(90deg, #e4bb00 0%, #ff9912 100%);
  color: #fff;
}
.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 0 42px;
  font-size: clamp(32px, 5vw, 62px);
  line-height: 1;
  font-weight: 900;
  text-align: center;
}
.section-title i { color: var(--yellow); }
.section-title--left { justify-content: flex-start; text-align: left; }
.section-title--dark i { color: #fff5ba; }

.hero {
  position: relative;
  padding: 72px 0 110px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,5,7,0.94) 0%, rgba(5,5,7,0.68) 36%, rgba(5,5,7,0.38) 58%, rgba(5,5,7,0.86) 100%),
    url('assets/hero-bg.webp') center/cover no-repeat;
  z-index: -1;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% 8% auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,208,0,.26), transparent 65%);
  filter: blur(20px);
  animation: pulseGlow 5s ease-in-out infinite;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 48px;
}
.hero__brand {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}
.hero__icon { animation: floatSoft 3.6s ease-in-out infinite; }
.hero__brand h1 {
  margin: 0;
  font-weight: 300;
  letter-spacing: 0.02em;
}
.hero__subtitle {
  margin: 0 0 28px;
  font-size: 22px;
  color: var(--muted);
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

.launcher-card {
  position: relative;
  background: linear-gradient(180deg, #0c0c12 0%, #09090d 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 28px;
  box-shadow: 24px 24px 0 rgba(255, 145, 0, 0.82), 0 35px 70px rgba(0,0,0,.5);
  transform: perspective(1200px) rotateY(-12deg) rotateX(6deg);
  overflow: hidden;
  animation: cardFloat 5s ease-in-out infinite;
}
.launcher-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(255,255,255,.08), transparent 30%, transparent 60%, rgba(255,182,0,.08));
  pointer-events: none;
}
.launcher-card__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.launcher-card__brand { color: var(--yellow); font-weight: 800; }
.launcher-card__dots { display: flex; gap: 8px; }
.launcher-card__dots span {
  width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.28);
}
.launcher-card__body {
  display: grid;
  grid-template-columns: 1.3fr .9fr;
  gap: 16px;
  padding: 16px;
}
.launcher-card__preview,
.launcher-card__side {
  border-radius: 20px;
  overflow: hidden;
  background: #11131a;
}
.launcher-card__preview {
  position: relative;
  min-height: 300px;
}
.launcher-card__preview img,
.launcher-card__side-image img { width: 100%; height: 100%; object-fit: cover; }
.launcher-card__launch {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: linear-gradient(90deg, var(--yellow), var(--orange));
  color: #3b2200;
  font-weight: 900;
  padding: 14px 22px;
  border-radius: 16px;
  box-shadow: 0 18px 35px rgba(255,145,0,.35);
  animation: pulseSoft 2.2s ease-in-out infinite;
}
.launcher-card__side {
  padding: 14px;
  display: grid;
  gap: 14px;
}
.launcher-card__side-image {
  border-radius: 14px;
  overflow: hidden;
  min-height: 110px;
}
.launcher-card__side ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  color: #d6d6de;
  font-size: 14px;
}
.launcher-card__side li {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.04);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.feature-card {
  min-height: 100%;
  background: rgba(15,15,19,.88);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 208, 0, .34);
  box-shadow: 0 30px 70px rgba(0,0,0,.5);
}
.feature-card img {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
}
.feature-card__body { padding: 18px 18px 22px; }
.feature-card h3 {
  margin: 0 0 10px;
  font-size: 26px;
  line-height: .98;
  text-transform: uppercase;
}
.feature-card p {
  margin: 0;
  color: #d4d4da;
  font-size: 14px;
  line-height: 1.55;
}

.slider {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
}
.slider__viewport {
  overflow: hidden;
  border-radius: 28px;
}
.slider__track {
  display: flex;
  transition: transform .6s cubic-bezier(.22,.61,.36,1);
}
.slide {
  min-width: 100%;
  text-align: center;
  color: #fff;
}
.slide__image {
  width: min(100%, 480px);
  margin: 0 auto 20px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.25);
}
.slide__image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform .6s ease;
}
.slide.is-active .slide__image img { transform: scale(1.04); }
.slide h3 {
  margin: 0 0 10px;
  font-size: 28px;
  text-transform: uppercase;
}
.slide p {
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}
.slider__arrow {
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  background: #12141a;
  color: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,.22);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.slider__arrow:hover {
  transform: scale(1.06);
  background: #0b0c10;
}
.slider__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}
.slider__dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,.28);
  background: rgba(255,255,255,.45);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.slider__dots button.is-active {
  transform: scale(1.15);
  background: #1f1200;
}

.shop__grid {
  display: grid;
  grid-template-columns: .7fr 1fr;
  align-items: center;
  gap: 32px;
}
.shop__figure img {
  width: min(100%, 360px);
  margin: 0 auto;
  filter: drop-shadow(0 28px 36px rgba(0,0,0,.38));
  animation: floatSoft 4.2s ease-in-out infinite;
}
.shop__content p {
  max-width: 560px;
  margin: 0 0 28px;
  font-size: 18px;
  line-height: 1.7;
  color: #d7d7dc;
}

.compare-card {
  background: rgba(11,11,15,.72);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow);
}
.compare-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 20px;
}
.compare-item {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
}
.compare-item::before {
  content: "";
  position: absolute;
  inset: 0;
  width: var(--fill, 45%);
  background: linear-gradient(90deg, rgba(255,209,0,.22), rgba(255,148,25,.12));
}
.compare-item > * { position: relative; z-index: 1; }
.compare-item span { color: #f2f2f7; }
.compare-item strong { white-space: nowrap; }
.compare-item--active {
  border-color: rgba(255,209,0,.24);
  background: rgba(255,205,0,.08);
  --fill: 100%;
}
.compare-card__meta {
  margin: 18px 0 0;
  color: #bcbcC6;
  line-height: 1.65;
  text-align: center;
}
.compare-item:nth-child(2) { --fill: 82%; }
.compare-item:nth-child(3) { --fill: 76%; }
.compare-item:nth-child(4) { --fill: 68%; }
.compare-item:nth-child(5) { --fill: 61%; }
.compare-item:nth-child(6) { --fill: 58%; }
.compare-item:nth-child(7) { --fill: 48%; }
.compare-item:nth-child(8) { --fill: 47%; }
.compare-item:nth-child(9) { --fill: 40%; }
.compare-item:nth-child(10) { --fill: 29%; }

.cta-strip {
  padding: 22px 0;
  background: linear-gradient(90deg, rgba(255,209,0,.12), rgba(255,148,25,.10));
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.cta-strip__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.cta-strip p {
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
}

.footer {
  padding: 34px 0 48px;
  background: rgba(3,3,4,.76);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 26px;
  align-items: start;
}
.footer__copy {
  margin: 12px 0 0;
  color: #bbbbc5;
}
.footer__socials,
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.footer__socials a,
.footer__links a {
  color: #d7d7db;
  transition: color .2s ease, transform .2s ease;
}
.footer__socials a:hover,
.footer__links a:hover {
  color: var(--yellow);
  transform: translateY(-2px);
}
.footer__socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
}

.wave {
  position: absolute;
  left: 0;
  right: 0;
  height: 92px;
  pointer-events: none;
}
.wave::before,
.wave::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 48% 52% 0 0 / 100% 100% 0 0;
}
.wave--dark {
  bottom: -1px;
}
.wave--dark::before {
  background: #050507;
  transform: translateY(30px) scaleX(1.04);
}
.wave--dark::after {
  background: rgba(255, 168, 0, .18);
  transform: translateY(16px) scaleX(1.01);
}
.wave--orange {
  bottom: -1px;
}
.wave--orange::before {
  background: linear-gradient(90deg, #e4bb00, #ff9912);
  transform: translateY(30px) scaleX(1.05);
}
.wave--orange::after {
  background: rgba(55, 28, 0, .34);
  transform: translateY(14px) scaleX(1.01);
}

[data-reveal] {
  opacity: 0;
  filter: blur(10px);
  transform: translate3d(0, 48px, 0);
  transition: opacity .75s ease, transform .75s cubic-bezier(.22,.61,.36,1), filter .75s ease;
  transition-delay: var(--delay, 0ms);
}
[data-reveal="left"] { transform: translate3d(-54px, 0, 0); }
[data-reveal="right"] { transform: translate3d(54px, 0, 0); }
[data-reveal="zoom"] { transform: scale(.92); }
[data-reveal].is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0,0,0) scale(1);
}

@keyframes floatSoft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes cardFloat {
  0%, 100% { transform: perspective(1200px) rotateY(-12deg) rotateX(6deg) translateY(0); }
  50% { transform: perspective(1200px) rotateY(-12deg) rotateX(6deg) translateY(-12px); }
}
@keyframes pulseSoft {
  0%, 100% { transform: scale(1); box-shadow: 0 18px 35px rgba(255,145,0,.35); }
  50% { transform: scale(1.03); box-shadow: 0 22px 42px rgba(255,145,0,.5); }
}
@keyframes pulseGlow {
  0%, 100% { opacity: .55; transform: scale(1); }
  50% { opacity: .95; transform: scale(1.08); }
}

@media (max-width: 1100px) {
  .hero__grid,
  .shop__grid,
  .footer__grid,
  .cta-strip__inner {
    grid-template-columns: 1fr;
  }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__visual { max-width: 760px; margin: 0 auto; }
  .cta-strip__inner { text-align: center; }
  .logo--footer { justify-self: center; }
}

@media (max-width: 820px) {
  .header__inner { min-height: 76px; }
  .burger { display: block; }
  .nav {
    position: fixed;
    inset: 76px 16px auto 16px;
    margin-left: 0;
    padding: 18px;
    border-radius: 22px;
    background: rgba(13,13,18,.98);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: var(--shadow);
    display: grid;
    gap: 14px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  }
  .nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .header .btn--small { display: none; }
  .hero { padding-top: 48px; }
  .hero__grid,
  .launcher-card__body,
  .compare-list,
  .slider {
    grid-template-columns: 1fr;
  }
  .launcher-card {
    transform: none;
    animation: floatSoft 4.2s ease-in-out infinite;
    box-shadow: 0 20px 40px rgba(255,145,0,.22), 0 35px 70px rgba(0,0,0,.45);
  }
  .slider { gap: 18px; }
  .slider__arrow { justify-self: center; }
  .feature-grid { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .section-title { margin-bottom: 32px; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 20px, 1200px); }
  .hero__subtitle,
  .cta-strip p,
  .shop__content p { font-size: 16px; }
  .btn { width: 100%; }
  .hero__actions { flex-direction: column; }
  .feature-card h3 { font-size: 22px; }
  .compare-card,
  .launcher-card,
  .slide__image { border-radius: 20px; }
}
