:root {
  color-scheme: dark;
  --bg: #06050a;
  --panel: #121118;
  --panel-2: #191722;
  --line: rgba(255, 255, 255, 0.12);
  --text: #f7f4ff;
  --muted: #b9b2c8;
  --violet: #9b4dff;
  --violet-2: #5f22cc;
  --magenta: #ff4bd8;
  --cyan: #34e6ff;
  --amber: #ffd166;
  --green: #46d68c;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 0%, rgba(155, 77, 255, 0.22), transparent 32rem),
    radial-gradient(circle at 85% 15%, rgba(52, 230, 255, 0.1), transparent 24rem),
    linear-gradient(180deg, #050408 0%, #090710 48%, #040306 100%);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 38px;
  padding: 8px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #10091c;
  color: #e9ddff;
  font-size: 0.86rem;
  font-weight: 800;
  text-align: center;
}

.top-bar a {
  color: var(--cyan);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 12px clamp(16px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 5, 10, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  box-shadow: 0 0 22px rgba(155, 77, 255, 0.45);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-size: 0.95rem;
  text-transform: uppercase;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.74rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

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

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  white-space: nowrap;
}

.header-cta,
.button.primary {
  background: linear-gradient(135deg, var(--violet), var(--magenta));
  color: white;
  box-shadow: 0 10px 32px rgba(155, 77, 255, 0.34);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 132px clamp(16px, 4vw, 56px) 64px;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 5, 10, 0.95) 0%, rgba(6, 5, 10, 0.65) 44%, rgba(6, 5, 10, 0.25) 70%, rgba(6, 5, 10, 0.8) 100%),
    linear-gradient(180deg, rgba(6, 5, 10, 0.18) 0%, rgba(6, 5, 10, 0.98) 100%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(2.65rem, 7vw, 6.2rem);
  line-height: 0.95;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.75rem, 3.6vw, 3.4rem);
  line-height: 1.04;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.06rem;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-copy {
  max-width: 650px;
  font-size: clamp(1.02rem, 2vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 24px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-strip span {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.07);
  color: #e8e2f5;
  font-size: 0.88rem;
  font-weight: 800;
}

.section {
  padding: 88px clamp(16px, 4vw, 56px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.value-grid,
.product-grid,
.steps,
.faq-grid {
  display: grid;
  gap: 16px;
}

.value-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-grid article,
.product-card,
.steps article,
details {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(25, 23, 34, 0.86), rgba(14, 13, 20, 0.9));
  box-shadow: var(--shadow);
}

.value-grid article {
  padding: 24px;
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: rgba(155, 77, 255, 0.18);
  font-size: 1.2rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter {
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.filter.active,
.filter:hover {
  border-color: rgba(52, 230, 255, 0.55);
  color: var(--text);
  background: rgba(52, 230, 255, 0.12);
}

.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.catalog-block {
  scroll-margin-top: 96px;
}

.catalog-block + .catalog-block {
  margin-top: 46px;
}

.catalog-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 12px;
}

.catalog-title h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
}

.catalog-title a {
  color: var(--cyan);
  font-size: 0.9rem;
  font-weight: 900;
}

.product-card {
  overflow: hidden;
}

.product-image {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #09070f;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-tag {
  position: absolute;
  left: 12px;
  top: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 7px 9px;
  background: rgba(6, 5, 10, 0.76);
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-body {
  padding: 20px;
}

.product-body p {
  min-height: 52px;
  margin-bottom: 18px;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.price-row strong {
  color: var(--amber);
  font-size: 1.05rem;
}

.mini-link {
  color: var(--cyan);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stats {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 16px;
}

.stats strong {
  color: var(--green);
  font-size: 3.2rem;
  line-height: 1;
}

.stats span {
  color: var(--muted);
  font-weight: 800;
}

.rating-card {
  display: inline-grid;
  gap: 6px;
  min-width: 240px;
  margin-top: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 18px 20px;
  background: rgba(18, 17, 24, 0.88);
}

.rating-card strong {
  color: var(--amber);
  font-size: 3.6rem;
  line-height: 0.92;
}

.rating-card span {
  color: var(--text);
  font-weight: 900;
}

.rating-card small {
  color: var(--muted);
  font-weight: 700;
}

.feedback-list {
  display: grid;
  gap: 14px;
}

blockquote {
  margin: 0;
  border-left: 4px solid var(--violet);
  border-radius: 8px;
  padding: 18px 20px;
  background: rgba(18, 17, 24, 0.82);
  color: var(--text);
  font-weight: 800;
}

.order {
  background:
    linear-gradient(180deg, rgba(155, 77, 255, 0.07), transparent),
    rgba(0, 0, 0, 0.12);
}

.steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.steps article {
  padding: 24px;
}

.steps span {
  display: block;
  margin-bottom: 22px;
  color: var(--cyan);
  font-weight: 900;
}

.warning {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 clamp(16px, 4vw, 56px);
  padding: 32px;
  border: 1px solid rgba(255, 209, 102, 0.25);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 209, 102, 0.12), rgba(155, 77, 255, 0.12));
}

.discounts {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.discount-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.discount-list li {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(25, 23, 34, 0.86), rgba(14, 13, 20, 0.9));
}

.discount-list strong {
  color: var(--text);
}

.discount-list span {
  color: var(--muted);
  line-height: 1.5;
}

.terms-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.terms-grid article {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 20px;
  background: rgba(18, 17, 24, 0.82);
}

.terms-grid p {
  margin-bottom: 0;
}

.warning h2 {
  margin-bottom: 8px;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
}

.warning p {
  margin-bottom: 0;
}

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

details {
  padding: 20px 22px;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin: 14px 0 0;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 36px clamp(16px, 4vw, 56px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #040306;
}

.footer p {
  margin: 8px 0 0;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero {
    min-height: 680px;
  }

  .intro,
  .split {
    grid-template-columns: 1fr;
  }

  .value-grid,
  .product-grid,
  .steps,
  .discount-list,
  .terms-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 64px;
  }

  .brand small,
  .header-cta {
    display: none;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 650px;
    padding-top: 96px;
  }

  .hero-media::after {
    background:
      linear-gradient(90deg, rgba(6, 5, 10, 0.93), rgba(6, 5, 10, 0.6)),
      linear-gradient(180deg, rgba(6, 5, 10, 0.1), rgba(6, 5, 10, 0.98));
  }

  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .value-grid,
  .product-grid,
  .steps,
  .faq-grid,
  .discount-list,
  .terms-grid {
    grid-template-columns: 1fr;
  }

  .warning,
  .footer {
    align-items: stretch;
    flex-direction: column;
  }

  .catalog-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
