:root {
  --bg-0: #050508;
  --bg-1: #070b12;
  --bg-2: #0a1018;
  --violet: #8b5cf6;
  --violet-2: #a855f7;
  --cyan: #06b6d4;
  --text: #eef6ff;
  --muted: #8fa0b3;
  --glass: rgba(255, 255, 255, 0.03);
  --glass-2: rgba(0, 162, 255, 0.08);
  --border: rgba(0, 170, 255, 0.28);
  --glow: 0 0 30px rgba(0, 170, 255, 0.18);
  --radius: 18px;
  --header-h: 76px;
  --font: "Outfit", system-ui, sans-serif;
  --display: "Anton", "Bebas Neue", Impact, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font);
  background: var(--bg-0);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 70% 48% at 50% 8%, rgba(0, 150, 255, 0.16), transparent 58%),
    radial-gradient(ellipse 50% 40% at 80% 30%, rgba(0, 220, 255, 0.07), transparent 52%),
    radial-gradient(ellipse 40% 35% at 20% 70%, rgba(0, 80, 160, 0.08), transparent 50%),
    linear-gradient(180deg, #020204 0%, #05080d 40%, #020204 100%);
  pointer-events: none;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
.btn {
  font-family: inherit;
  cursor: pointer;
  border: 0;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  background: rgba(10, 10, 15, 0.35);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(0px);
}

.site-header.scrolled {
  background: rgba(10, 10, 15, 0.82);
  backdrop-filter: blur(18px);
  border-bottom-color: rgba(0, 170, 255, 0.18);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
}

.header-inner {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: 0.08em;
  color: #fff;
  text-shadow: 0 0 18px rgba(139, 92, 246, 0.7);
  flex-shrink: 0;
}

.logo img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(0, 170, 255, 0.45);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  font-size: 14px;
  font-weight: 500;
  color: #d8d4ea;
  letter-spacing: 0.04em;
  position: relative;
  transition: color 0.2s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav a:hover {
  color: #fff;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--glass);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.social-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.social-btn.discord:hover {
  background: rgba(88, 101, 242, 0.2);
  box-shadow: 0 0 22px rgba(88, 101, 242, 0.35);
  transform: translateY(-1px);
}

.social-btn.telegram:hover,
.social-btn.support:hover {
  background: rgba(6, 182, 212, 0.16);
  box-shadow: 0 0 22px rgba(6, 182, 212, 0.35);
  transform: translateY(-1px);
}

.social-btn.youtube:hover {
  background: rgba(255, 0, 0, 0.18);
  box-shadow: 0 0 22px rgba(255, 0, 0, 0.4);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--glass);
  border: 1px solid var(--border);
  color: #fff;
  align-items: center;
  justify-content: center;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  isolation: isolate;
  padding: 0 0 48px;
  margin-top: calc(-1 * var(--header-h));
}

#particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: 680px;
  height: 680px;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0, 170, 255, 0.22) 0%, rgba(0, 220, 255, 0.08) 42%, transparent 70%);
  filter: blur(20px);
  z-index: 0;
  pointer-events: none;
  animation: pulseGlow 6s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.75; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -52%) scale(1.06); }
}

.rating-row {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 0 0 16px;
}

.rating-badge {
  position: relative;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(168, 85, 247, 0.45);
  box-shadow: 0 0 28px rgba(139, 92, 246, 0.45), inset 0 0 16px rgba(168, 85, 247, 0.12);
  backdrop-filter: blur(12px);
}

.rating-badge strong {
  font-size: 18px;
  letter-spacing: 0.04em;
  color: #fff;
  text-shadow: 0 0 12px rgba(168, 85, 247, 0.9);
}

.rating-badge span {
  font-size: 12px;
  color: #cfc6ff;
}

.stars {
  color: #f5c542;
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(245, 197, 66, 0.55);
}

.hero-banner {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: min(88vh, 920px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--header-h);
}

.hero-title {
  position: absolute;
  z-index: 0;
  font-family: var(--display);
  font-size: clamp(72px, 16vw, 176px);
  letter-spacing: 0.04em;
  line-height: 0.85;
  text-align: center;
  color: #efe7ff;
  text-shadow:
    0 0 20px rgba(0, 170, 255, 0.75),
    0 0 60px rgba(0, 140, 255, 0.35),
    0 0 120px rgba(0, 220, 255, 0.16);
  filter: blur(0.4px);
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
  animation: titlePulse 5.5s ease-in-out infinite;
}

@keyframes titlePulse {
  0%, 100% { opacity: 0.88; filter: blur(0.35px); }
  50% { opacity: 1; filter: blur(0.15px); }
}

.hero-character-wrap {
  position: relative;
  z-index: 1;
  width: min(980px, 100vw);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.hero-character {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  max-height: 86vh;
  object-fit: contain;
  pointer-events: none;
  filter: drop-shadow(0 0 48px rgba(80, 140, 255, 0.35));
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, #000 14%, #000 86%, transparent 100%),
    linear-gradient(to bottom, #000 0%, #000 78%, transparent 100%);
  mask-image:
    linear-gradient(to right, transparent 0%, #000 14%, #000 86%, transparent 100%),
    linear-gradient(to bottom, #000 0%, #000 78%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.hero-character--blur {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 108%;
  height: auto;
  max-height: none;
  object-fit: contain;
  z-index: 0;
  filter: blur(22px);
  transform: translate(-50%, -50%) scale(1.06);
  opacity: 0.9;
  -webkit-mask-image: none;
  mask-image: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(760px, 92%);
  margin: -48px auto 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-copy h1 {
  font-family: var(--display);
  font-size: clamp(22px, 4.2vw, 48px);
  letter-spacing: 0.03em;
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 10px;
  text-shadow: 0 0 24px rgba(139, 92, 246, 0.55);
  padding: 0 8px;
}

.hero-copy p {
  color: var(--muted);
  font-size: 16px;
  max-width: 620px;
  margin: 0 auto 12px;
}

.hero-ctas {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #8b5cf6, #a855f7 55%, #06b6d4);
  color: #fff;
  box-shadow: 0 0 24px rgba(139, 92, 246, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 36px rgba(168, 85, 247, 0.65), 0 0 18px rgba(6, 182, 212, 0.35);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  color: #fff;
}

.btn-ghost:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow);
}

.scroll-hint {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: #b7b0d0;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll-hint::after {
  content: "";
  display: block;
  width: 1px;
  height: 28px;
  margin: 8px auto 0;
  background: linear-gradient(#8b5cf6, transparent);
  animation: drip 1.6s ease-in-out infinite;
}

@keyframes drip {
  0% { transform: scaleY(0.4); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

/* ===== SECTIONS ===== */
section {
  position: relative;
  padding: 96px 0;
}

.section-kicker {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c4b5fd;
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--display);
  font-size: clamp(36px, 6vw, 64px);
  letter-spacing: 0.04em;
  line-height: 0.95;
  margin-bottom: 14px;
  text-shadow: 0 0 28px rgba(139, 92, 246, 0.45);
}

.section-lead {
  color: var(--muted);
  max-width: 680px;
  margin-bottom: 40px;
}

.center {
  text-align: center;
}

.center .section-lead {
  margin-left: auto;
  margin-right: auto;
}

/* ===== STATS / FEATURES ===== */
.stats-grid,
.features-grid,
.reviews-grid,
.products-grid {
  display: grid;
  gap: 18px;
}

.stats-grid {
  grid-template-columns: repeat(4, 1fr);
}

.stat-card,
.feature-card,
.review-card,
.product-card,
.support-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(139, 92, 246, 0.3);
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.2);
  border-radius: var(--radius);
}

.stat-card {
  padding: 28px 20px;
  text-align: center;
}

.stat-card b {
  display: block;
  font-family: var(--display);
  font-size: 42px;
  letter-spacing: 0.04em;
  color: #fff;
  text-shadow: 0 0 18px rgba(139, 92, 246, 0.7);
}

.stat-card span {
  color: var(--muted);
  font-size: 13px;
}

.features-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {
  padding: 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.35);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.25), rgba(6, 182, 212, 0.15));
  border: 1px solid var(--border);
  color: #d8b4fe;
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--muted);
  font-size: 14px;
}

/* ===== PRODUCTS ===== */
.products-grid {
  grid-template-columns: repeat(3, 1fr);
}

.product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(168, 85, 247, 0.55);
  box-shadow: 0 0 48px rgba(139, 92, 246, 0.38);
}

.product-card:nth-child(4),
.product-card:nth-child(5) {
  /* last row centering handled by grid on wide screens via span */
}

.product-media {
  position: relative;
  aspect-ratio: 1 / 1.05;
  overflow: hidden;
  background: #050508;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-media img {
  transform: scale(1.05);
}

.product-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.product-body h3 {
  font-family: var(--display);
  font-size: 32px;
  letter-spacing: 0.04em;
}

.product-body p {
  color: var(--muted);
  font-size: 14px;
  flex: 1;
}

.price {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 0 16px rgba(6, 182, 212, 0.35);
}

.price small {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  margin-left: 6px;
}

.buy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #7c3aed, #8b5cf6 50%, #06b6d4);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 0 18px rgba(139, 92, 246, 0.28);
  transition: box-shadow 0.25s ease, transform 0.25s ease, filter 0.25s ease;
}

.buy-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow:
    0 0 28px rgba(168, 85, 247, 0.7),
    0 0 14px rgba(6, 182, 212, 0.45);
}

.products-bottom {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 360px));
  justify-content: center;
  gap: 18px;
  margin-top: 18px;
}

/* ===== SEO TEXT ===== */
.seo-block {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
}

.seo-card {
  padding: 32px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(139, 92, 246, 0.3);
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.2);
  border-radius: var(--radius);
}

.seo-card h2 {
  font-family: var(--display);
  font-size: 36px;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  text-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}

.seo-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.seo-card h4,
.product-body h4,
.feature-card h4,
.support-card h4,
.center h3,
.center h4,
.center h5,
.center h6 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #7dd3fc;
  margin: 0 0 8px;
}

.seo-card h5,
.product-body h5,
.feature-card h5,
.support-card h5,
.center h5 {
  font-size: 13px;
  font-weight: 500;
  color: #9ec9e0;
  margin: 0 0 4px;
}

.seo-card h6,
.product-body h6,
.feature-card h6,
.support-card h6,
.center h6 {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b8aa0;
  margin: 0 0 10px;
}

.center h3 {
  font-size: 20px;
  color: #fff;
}

.seo-card p {
  color: #c6c1d8;
  margin-bottom: 12px;
  font-size: 15px;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* ===== REVIEWS ===== */
.reviews-grid {
  grid-template-columns: repeat(3, 1fr);
}

.review-card {
  padding: 24px;
}

.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #8b5cf6, #06b6d4);
  box-shadow: 0 0 16px rgba(139, 92, 246, 0.4);
  flex-shrink: 0;
}

.review-top b {
  display: block;
  font-size: 15px;
}

.review-top time {
  color: var(--muted);
  font-size: 12px;
}

.review-card p {
  color: #d4d0e4;
  font-size: 14px;
}

.review-stars {
  margin: 10px 0 0;
  color: #f5c542;
  font-size: 13px;
}

/* ===== SUPPORT ===== */
.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.support-card {
  padding: 32px;
}

.support-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.support-card p {
  color: var(--muted);
  margin-bottom: 18px;
}

/* ===== FOOTER ===== */
.site-footer {
  border-top: 1px solid rgba(139, 92, 246, 0.22);
  padding: 36px 0 28px;
  background: rgba(8, 8, 14, 0.7);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  letter-spacing: 1px;
  line-height: 1.25;
}

.footer-logo img {
  width: 36px;
  height: 36px;
  max-width: 36px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(0, 170, 255, 0.45);
}

.footer-mail {
  display: block;
  width: 100%;
  margin: 0;
  padding-left: 46px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.7);
}

.footer-mail a {
  color: inherit;
  font: inherit;
}

.footer-mail a:hover {
  color: #fff;
}

.footer-nav-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0 1rem;
  font-weight: 600;
}

.footer-nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-nav-links a:hover {
  color: #fff;
}

.footer-trust {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 0.5rem;
}

.footer-trust h5 {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 4px;
}

.footer-trust h6 {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

.footer-copy {
  grid-column: 1 / -1;
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-nav-links {
    align-items: center;
  }

  .footer-brand,
  .footer-nav-title {
    text-align: center;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-mail {
    padding-left: 0;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-copy {
    grid-column: 1 / -1;
  }
}

/* ===== REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: reveal 0.8s ease forwards;
}

.reveal:nth-child(2) { animation-delay: 0.08s; }
.reveal:nth-child(3) { animation-delay: 0.16s; }
.reveal:nth-child(4) { animation-delay: 0.24s; }
.reveal:nth-child(5) { animation-delay: 0.32s; }

@keyframes reveal {
  to { opacity: 1; transform: none; }
}

::selection {
  background: rgba(139, 92, 246, 0.45);
  color: #fff;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #0a0a0f;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--violet), #3b0764);
  border-radius: 99px;
}

@media (max-width: 1280px) {
  .nav {
    gap: 12px;
  }

  .header-actions .social-btn {
    padding: 8px 10px;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 1100px) {
  .products-grid,
  .features-grid,
  .reviews-grid,
  .stats-grid,
  .seo-block,
  .faq-list,
  .support-grid {
    grid-template-columns: 1fr 1fr;
  }

  .products-bottom {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .hero {
    min-height: 100svh;
    padding: 0 0 36px;
  }

  .hero-banner {
    min-height: 52vh;
    overflow: hidden;
  }

  .hero-character-wrap {
    position: relative;
    width: 100%;
    max-width: 100%;
    max-height: none;
    overflow: hidden;
    -webkit-mask-image:
      linear-gradient(to right, transparent 0%, #000 16%, #000 84%, transparent 100%),
      linear-gradient(to bottom, #000 0%, #000 80%, transparent 100%);
    mask-image:
      linear-gradient(to right, transparent 0%, #000 16%, #000 84%, transparent 100%),
      linear-gradient(to bottom, #000 0%, #000 80%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-composite: intersect;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .hero-character-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background:
      linear-gradient(to right, #020204 0%, transparent 16%, transparent 84%, #020204 100%),
      linear-gradient(to top, #020204 0%, transparent 22%);
  }

  .hero-character {
    width: 138%;
    max-width: none;
    max-height: none;
    margin-left: -19%;
    margin-top: -8%;
    -webkit-mask-image: none;
    mask-image: none;
    filter: drop-shadow(0 0 28px rgba(0, 170, 255, 0.28));
  }

  .hero-character--blur {
    width: 150%;
    height: auto;
    filter: blur(36px);
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.12);
  }

  .hero-copy {
    margin-top: -8px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav,
  .header-actions {
    display: none;
  }

  .site-header.open .nav,
  .site-header.open .header-actions {
    display: flex;
  }

  .site-header.open {
    height: auto;
    background: rgba(10, 10, 15, 0.94);
    backdrop-filter: blur(18px);
  }

  .header-inner {
    flex-wrap: wrap;
    padding: 14px 0 18px;
  }

  .nav {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    order: 3;
  }

  .header-actions {
    width: 100%;
    order: 4;
  }

  .hero-title {
    white-space: normal;
    max-width: 96vw;
  }

  .rating-badge {
    width: auto;
    max-width: 100%;
    padding: 8px 12px;
  }

  .rating-badge strong {
    font-size: 14px;
  }

  .hero-copy h1 {
    font-size: clamp(18px, 6.6vw, 28px);
    white-space: normal;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn-primary,
  .hero-ctas .btn-ghost {
    width: 100%;
  }

  .menu-toggle {
    z-index: 5;
  }

  .hero-copy {
    bottom: 10%;
  }

  .products-grid,
  .features-grid,
  .reviews-grid,
  .stats-grid,
  .seo-block,
  .faq-list,
  .support-grid,
  .products-bottom {
    grid-template-columns: 1fr;
  }

  section {
    padding: 72px 0;
  }
}

/* ===== CUSTOM CURSOR ===== */
@media (pointer: fine) {
  html.has-custom-cursor,
  html.has-custom-cursor * {
    cursor: none !important;
  }
}

.cursor {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
  mix-blend-mode: plus-lighter;
}

@media (pointer: fine) {
  .cursor.is-on {
    display: block;
  }
}

.cursor-dot,
.cursor-ring {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.cursor-dot {
  width: 7px;
  height: 7px;
  background: #fff;
  box-shadow:
    0 0 8px #a855f7,
    0 0 16px #06b6d4,
    0 0 28px rgba(139, 92, 246, 0.9);
}

.cursor-ring {
  width: 34px;
  height: 34px;
  border: 1.5px solid rgba(168, 85, 247, 0.85);
  box-shadow:
    0 0 12px rgba(139, 92, 246, 0.55),
    inset 0 0 10px rgba(6, 182, 212, 0.25);
  transition: width 0.22s ease, height 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.cursor.is-hover .cursor-dot {
  width: 5px;
  height: 5px;
  background: #06b6d4;
}

.cursor.is-hover .cursor-ring {
  width: 56px;
  height: 56px;
  border-color: rgba(6, 182, 212, 0.95);
  background: rgba(139, 92, 246, 0.08);
  box-shadow:
    0 0 22px rgba(6, 182, 212, 0.55),
    0 0 36px rgba(139, 92, 246, 0.4);
}

.cursor.is-down .cursor-ring {
  width: 22px;
  height: 22px;
  border-color: #fff;
}
