﻿:root {
  --bg: #050105;
  --bg-2: #11001a;
  --bg-3: #14001f;
  --panel: rgba(255, 255, 255, 0.065);
  --panel-strong: rgba(255, 255, 255, 0.105);
  --line: rgba(255, 255, 255, 0.13);
  --text: #f5f5ff;
  --muted: #c3c3d6;
  --soft: #b4b0de;
  --accent: #ff2fde;
  --accent-2: #8f2bff;
  --accent-3: #ff69fa;
  --success: #29f0a8;
  --warning: #ff8c4f;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 47, 222, 0.17), transparent 32rem),
    radial-gradient(circle at 86% 12%, rgba(143, 43, 255, 0.18), transparent 28rem),
    linear-gradient(135deg, var(--bg), var(--bg-2) 52%, var(--bg-3));
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.skip-link { position: absolute; left: 16px; top: -80px; background: var(--text); color: var(--bg); padding: 10px 14px; border-radius: 8px; z-index: 999; }
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(5, 1, 5, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; min-width: max-content; }
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #050105;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 24px rgba(255, 47, 222, 0.36);
}
.brand-text { font-family: "Space Grotesk", Inter, sans-serif; font-size: 1.22rem; font-weight: 800; letter-spacing: 0; }
.brand-text span { color: var(--accent-3); }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a, .more-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid transparent;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
}
.site-nav a:hover, .site-nav a.active, .more-button:hover {
  color: var(--text);
  border-color: rgba(255, 47, 222, 0.3);
  background: rgba(255, 45, 254, 0.14);
}
.more-menu { position: relative; }
.more-list {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  width: 260px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(10, 2, 14, 0.98);
  box-shadow: var(--shadow);
  display: none;
}
.more-menu:hover .more-list, .more-menu:focus-within .more-list { display: grid; gap: 3px; }
.more-list a { justify-content: flex-start; width: 100%; }

.button, button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  text-decoration: none;
  font-weight: 800;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}
.button.primary { color: #050105; border-color: transparent; background: linear-gradient(135deg, var(--accent), var(--accent-2)); }
.button:hover { transform: translateY(-1px); box-shadow: 0 14px 36px rgba(255, 47, 222, 0.18); }

.hero { padding: 72px 0 32px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr); gap: 38px; align-items: center; }
.eyebrow { color: var(--accent-3); font-weight: 900; text-transform: uppercase; letter-spacing: 0; font-size: 0.82rem; margin: 0 0 12px; }
h1, h2, h3 { font-family: "Space Grotesk", Inter, sans-serif; line-height: 1.06; letter-spacing: 0; margin-top: 0; }
h1 { font-size: clamp(2.35rem, 5vw, 5rem); margin-bottom: 18px; max-width: 900px; }
h2 { font-size: clamp(1.75rem, 3vw, 2.65rem); margin-bottom: 16px; }
h3 { font-size: 1.12rem; margin-bottom: 8px; }
.lead { color: var(--muted); font-size: 1.1rem; max-width: 720px; margin: 0 0 24px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 24px 0 0; list-style: none; }
.trust-row li, .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--soft);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 700;
  font-size: 0.88rem;
}
.trust-row i, .pill i { color: var(--success); }
.hero-media { position: relative; }
.media-frame {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}
.media-frame img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.media-card {
  position: absolute;
  left: 18px;
  bottom: 18px;
  width: min(330px, calc(100% - 36px));
  padding: 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(8, 1, 10, 0.86);
  backdrop-filter: blur(14px);
}
.media-card strong { display: block; font-family: "Space Grotesk", Inter, sans-serif; font-size: 1.25rem; }
.media-card span { color: var(--muted); font-size: 0.92rem; }

.section { padding: 52px 0; }
.section.compact { padding-top: 24px; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 24px; }
.section-head p { color: var(--muted); max-width: 640px; margin: 0; }
.grid { display: grid; gap: 16px; }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.045));
  min-height: 100%;
}
.card i { color: var(--accent-3); font-size: 1.4rem; margin-bottom: 16px; }
.card p, .text-block p, .list-check li { color: var(--muted); }
.card p:last-child { margin-bottom: 0; }
.feature-band {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: linear-gradient(135deg, rgba(255, 47, 222, 0.12), rgba(143, 43, 255, 0.12));
}
.split { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); gap: 24px; align-items: start; }
.text-block { border-left: 2px solid var(--accent); padding-left: 18px; }
.list-check { display: grid; gap: 10px; padding: 0; margin: 0; list-style: none; }
.list-check li { display: grid; grid-template-columns: 22px 1fr; gap: 10px; }
.list-check i { color: var(--success); margin-top: 5px; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 8px; }
table { width: 100%; border-collapse: collapse; min-width: 720px; background: rgba(255, 255, 255, 0.045); }
th, td { padding: 15px 16px; text-align: left; border-bottom: 1px solid var(--line); color: var(--muted); }
th { color: var(--text); background: rgba(255, 45, 254, 0.12); font-family: "Space Grotesk", Inter, sans-serif; }
tr:last-child td { border-bottom: 0; }
.steps { counter-reset: step; display: grid; gap: 14px; }
.step { counter-increment: step; position: relative; padding: 20px 20px 20px 68px; border: 1px solid var(--line); border-radius: 8px; background: rgba(255, 255, 255, 0.055); }
.step::before {
  content: counter(step);
  position: absolute;
  left: 18px;
  top: 18px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #050105;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}
.promo-code { font-family: "Space Grotesk", Inter, sans-serif; color: var(--success); font-weight: 900; }

.contact-form { display: grid; gap: 12px; }
.field { display: grid; gap: 6px; }
label { color: var(--soft); font-weight: 800; font-size: 0.92rem; }
input, textarea, select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  font: inherit;
}
textarea { min-height: 120px; padding-top: 12px; resize: vertical; }

.site-footer { margin-top: 40px; border-top: 1px solid var(--line); background: rgba(0, 0, 0, 0.24); }
.footer-grid { display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); gap: 28px; padding: 42px 0; }
.footer-grid p, .footer-grid a { color: var(--muted); }
.footer-grid a { display: block; text-decoration: none; margin: 8px 0; }
.footer-grid a:hover { color: var(--accent-3); }
.footer-bottom { border-top: 1px solid var(--line); padding: 18px 0; color: var(--soft); font-size: 0.9rem; display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }

.swiper { width: 100%; }
.swiper-slide { height: auto; }
.toast { position: fixed; right: 18px; bottom: 18px; z-index: 100; max-width: 340px; padding: 14px 16px; border: 1px solid rgba(41, 240, 168, 0.45); border-radius: 8px; background: rgba(6, 22, 16, 0.94); color: var(--text); transform: translateY(110%); transition: transform 0.25s ease; }
.toast.show { transform: translateY(0); }

@media (max-width: 980px) {
  .nav-toggle { display: inline-grid; place-items: center; }
  .site-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 84px;
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(8, 1, 10, 0.98);
    box-shadow: var(--shadow);
    align-items: stretch;
    flex-direction: column;
  }
  .site-nav.open { display: flex; }
  .site-nav a, .more-button { justify-content: flex-start; width: 100%; }
  .more-list { position: static; width: 100%; display: grid; box-shadow: none; margin-top: 6px; }
  .hero-grid, .split, .footer-grid { grid-template-columns: 1fr; }
  .grid.three, .grid.four, .grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .container { width: min(100% - 24px, 1180px); }
  .hero { padding-top: 42px; }
  .grid.three, .grid.four, .grid.two { grid-template-columns: 1fr; }
  .section-head { display: block; }
  .hero-actions .button { width: 100%; }
  .brand-text { font-size: 1.05rem; }
  .media-card { position: static; width: auto; border-radius: 0; border-left: 0; border-right: 0; border-bottom: 0; }
}
