@font-face {
  font-family: "LynqrixDisplay";
  src: local("Orbitron"), local("Rajdhani"), local("Arial");
  font-display: swap;
}

:root {
  --bg: #020617;
  --panel: rgba(2, 6, 23, .68);
  --panel-2: rgba(15, 23, 42, .46);
  --line: rgba(103, 232, 249, .16);
  --line-strong: rgba(103, 232, 249, .45);
  --cyan: #22d3ee;
  --cyan2: #38bdf8;
  --violet: #a855f7;
  --fuchsia: #d946ef;
  --text: #f8fafc;
  --muted: #94a3b8;
  --muted2: #64748b;
  --radius: 28px;
  --shadow-cyan: 0 0 34px rgba(34, 211, 238, .24);
  --shadow-violet: 0 0 34px rgba(168, 85, 247, .22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

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

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

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 20% 8%, rgba(14, 165, 233, .20), transparent 34%),
    radial-gradient(circle at 80% 12%, rgba(147, 51, 234, .22), transparent 36%),
    linear-gradient(180deg, #020617 0%, #030712 55%, #020617 100%);
}

.page-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .30;
  background-image:
    linear-gradient(rgba(34,211,238,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,211,238,.08) 1px, transparent 1px);
  background-size: 70px 70px;
}

.page-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, transparent 0%, rgba(2,6,23,.18) 46%, #020617 100%);
}

.container {
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(103, 232, 249, .10);
  background: rgba(2, 6, 23, .76);
  backdrop-filter: blur(22px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-logo {
  width: 56px;
  height: 56px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 56px;
  border: 1px solid rgba(103, 232, 249, .45);
  border-radius: 18px;
  background:
    radial-gradient(circle at 30% 20%, rgba(103, 232, 249, .35), transparent 36%),
    linear-gradient(135deg, rgba(34,211,238,.18), rgba(168,85,247,.22));
  color: #ecfeff;
  font-family: LynqrixDisplay, Inter, sans-serif;
  font-size: 28px;
  font-weight: 1000;
  letter-spacing: -.04em;
  filter: drop-shadow(0 0 18px rgba(34,211,238,.75));
}

.brand-text {
  font-family: LynqrixDisplay, Inter, sans-serif;
  font-weight: 1000;
  letter-spacing: .06em;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1;
  background: linear-gradient(90deg, #67e8f9, #38bdf8, #d946ef);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav a,
.footer nav a {
  font-size: 14px;
  color: #cbd5e1;
  transition: .25s ease;
}

.nav a:hover,
.footer nav a:hover {
  color: var(--cyan);
}

.header-login {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  border: 1px solid rgba(217, 70, 239, .55);
  border-radius: 16px;
  padding: 0 22px;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 0 24px rgba(168, 85, 247, .16);
  transition: .25s ease;
}

.header-login:hover {
  background: rgba(217, 70, 239, .12);
}

.mobile-menu {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(103, 232, 249, .25);
  border-radius: 16px;
  color: white;
  background: rgba(15, 23, 42, .60);
}

.hero {
  padding: 64px 0 76px;
}

.hero-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 44px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 28px;
  border: 1px solid rgba(103, 232, 249, .35);
  border-radius: 999px;
  padding: 9px 16px;
  background: rgba(34, 211, 238, .05);
  color: var(--cyan);
  box-shadow: 0 0 22px rgba(34, 211, 238, .13);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 780px;
  font-family: LynqrixDisplay, Inter, sans-serif;
  font-size: clamp(48px, 6.1vw, 92px);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 1000;
}

h1 span,
.section-title span {
  display: block;
  background: linear-gradient(90deg, #cffafe, #22d3ee 45%, #a855f7 80%, #d946ef);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  margin: 28px 0 0;
  max-width: 660px;
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.75;
}

.hero-chips {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.chip {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3px 12px;
  border: 1px solid rgba(103, 232, 249, .13);
  border-radius: 18px;
  padding: 16px;
  background: rgba(2, 6, 23, .45);
  box-shadow: inset 0 0 24px rgba(14,165,233,.04);
  transition: .25s ease;
}

.chip:hover {
  border-color: rgba(103, 232, 249, .45);
  background: rgba(34, 211, 238, .05);
}

.chip-icon {
  grid-row: span 2;
  font-size: 30px;
  line-height: 1;
  filter: drop-shadow(0 0 12px rgba(34,211,238,.8));
}

.chip b {
  color: var(--cyan);
  text-transform: uppercase;
  font-size: 14px;
}

.chip small {
  color: var(--muted);
  line-height: 1.55;
}

.hero-actions {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.btn {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 18px;
  padding: 16px 22px;
  font-size: 15px;
  font-weight: 1000;
  text-align: center;
  transition: .25s ease;
}

.btn:hover {
  transform: translateY(-2px) scale(1.012);
}

.btn-primary {
  background: linear-gradient(90deg, #22d3ee, #0ea5e9, #2563eb);
  color: white;
  box-shadow: 0 0 30px rgba(34, 211, 238, .45);
}

.btn-violet {
  border: 1px solid rgba(217, 70, 239, .60);
  background: rgba(217, 70, 239, .10);
  color: white;
  box-shadow: inset 0 0 22px rgba(168, 85, 247, .16), 0 0 22px rgba(168, 85, 247, .12);
}

.btn-dark {
  border: 1px solid rgba(103, 232, 249, .30);
  background: rgba(2, 6, 23, .70);
  color: white;
  box-shadow: inset 0 0 22px rgba(34, 211, 238, .08);
}

.hero-art {
  position: relative;
  min-height: 590px;
  display: grid;
  place-items: center;
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: -4%;
  border-radius: 48px;
  background:
    radial-gradient(circle at 50% 48%, rgba(34,211,238,.18), transparent 48%),
    radial-gradient(circle at 74% 48%, rgba(168,85,247,.20), transparent 42%);
  filter: blur(22px);
}

.hero-img {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  object-fit: contain;
  filter: drop-shadow(0 0 58px rgba(34,211,238,.34));
}

.hero-orb {
  position: relative;
  z-index: 1;
  width: min(520px, 88vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  align-content: center;
  border: 1px solid rgba(103, 232, 249, .30);
  border-radius: 48px;
  background:
    radial-gradient(circle at 34% 26%, rgba(103, 232, 249, .42), transparent 28%),
    radial-gradient(circle at 72% 72%, rgba(217, 70, 239, .30), transparent 34%),
    linear-gradient(145deg, rgba(15, 23, 42, .88), rgba(2, 6, 23, .94));
  box-shadow:
    inset 0 0 90px rgba(34, 211, 238, .12),
    0 0 70px rgba(34, 211, 238, .20),
    0 0 90px rgba(168, 85, 247, .12);
  text-align: center;
  overflow: hidden;
}

.hero-orb::before {
  content: "";
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(103, 232, 249, .16);
  border-radius: 999px;
}

.hero-orb span,
.hero-orb b,
.hero-orb small {
  position: relative;
}

.hero-orb span {
  color: var(--muted);
  font-size: clamp(14px, 2vw, 20px);
  letter-spacing: .34em;
}

.hero-orb b {
  margin-top: 8px;
  font-family: LynqrixDisplay, Inter, sans-serif;
  font-size: clamp(72px, 12vw, 132px);
  line-height: .9;
  letter-spacing: -.08em;
  background: linear-gradient(90deg, #67e8f9, #38bdf8, #d946ef);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-orb small {
  margin-top: 12px;
  color: #bae6fd;
  text-transform: uppercase;
  letter-spacing: .24em;
}

.hud {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(103, 232, 249, .25);
  border-radius: 18px;
  background: rgba(2, 6, 23, .62);
  padding: 14px 18px;
  backdrop-filter: blur(14px);
  box-shadow: 0 0 28px rgba(34,211,238,.14);
}

.hud small {
  display: block;
  color: var(--muted2);
  text-transform: uppercase;
  font-size: 11px;
}

.hud b {
  display: block;
  margin-top: 4px;
  font-size: 22px;
}

.hud-top {
  right: 18px;
  top: 54px;
}

.hud-bottom {
  left: 12px;
  bottom: 70px;
  border-color: rgba(217, 70, 239, .25);
}

.features,
.how-partners,
.stats,
.answer-section,
.seo-content,
.contacts {
  padding: 28px 0 34px;
}

.features {
  border-top: 1px solid rgba(103, 232, 249, .10);
}

.section-title {
  margin: 0 0 38px;
  text-align: center;
  font-size: clamp(28px, 3vw, 40px);
}

.section-title span {
  display: inline;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  position: relative;
  min-height: 302px;
  overflow: hidden;
  border: 1px solid rgba(103, 232, 249, .16);
  border-radius: var(--radius);
  padding: 28px;
  background: linear-gradient(180deg, rgba(15,23,42,.66), rgba(2,6,23,.72));
  box-shadow: inset 0 0 44px rgba(14,165,233,.055);
  transition: .25s ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(103,232,249,.70), transparent);
}

.feature-card::after {
  content: "";
  position: absolute;
  right: -64px;
  top: -64px;
  width: 144px;
  height: 144px;
  border-radius: 999px;
  background: rgba(34,211,238,.10);
  filter: blur(34px);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(103, 232, 249, .55);
  box-shadow: 0 0 45px rgba(34, 211, 238, .14);
}

.feature-card.violet::after {
  background: rgba(217,70,239,.12);
}

.feature-icon {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid rgba(103, 232, 249, .35);
  border-radius: 24px;
  background: rgba(34,211,238,.08);
  font-size: 42px;
}

.feature-card h3 {
  margin: 0;
  max-width: 230px;
  font-size: 26px;
  line-height: 1.12;
}

.feature-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.feature-card a {
  display: inline-flex;
  margin-top: 26px;
  color: var(--cyan);
  font-size: 14px;
  font-weight: 900;
}

.two-col {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 20px;
}

.panel,
.seo-panel {
  border: 1px solid rgba(103, 232, 249, .16);
  border-radius: 32px;
  background: rgba(2,6,23,.58);
  padding: 32px;
  box-shadow: inset 0 0 44px rgba(14,165,233,.05);
  backdrop-filter: blur(18px);
}

.panel h2,
.seo-panel h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 1000;
}

.steps {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.step {
  border: 1px solid rgba(103, 232, 249, .12);
  border-radius: 24px;
  padding: 20px;
  background: rgba(34,211,238,.05);
}

.step span {
  display: block;
  font-size: 34px;
}

.step b {
  display: block;
  margin-top: 16px;
  color: #bae6fd;
}

.step p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.devices {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.devices span {
  border: 1px solid rgba(103, 232, 249, .10);
  border-radius: 16px;
  background: rgba(15,23,42,.45);
  padding: 13px 10px;
  text-align: center;
  color: #cbd5e1;
  font-size: 14px;
}

.partner-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 230px 1fr;
  align-items: center;
  gap: 28px;
  border-color: rgba(217,70,239,.36);
}

.partner-panel::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: rgba(217, 70, 239, .10);
  filter: blur(44px);
}

.partner-panel > * {
  position: relative;
}

.partner-img {
  width: 260px;
  margin: 0 auto;
  filter: drop-shadow(0 0 34px rgba(168,85,247,.42));
}

.partner-badge {
  width: 220px;
  height: 220px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(217, 70, 239, .32);
  border-radius: 42px;
  background:
    radial-gradient(circle at 36% 28%, rgba(217, 70, 239, .32), transparent 35%),
    linear-gradient(135deg, rgba(34, 211, 238, .12), rgba(168, 85, 247, .18));
  color: #f5d0fe;
  font-family: LynqrixDisplay, Inter, sans-serif;
  font-size: 66px;
  font-weight: 1000;
  letter-spacing: -.08em;
}

.partner-panel p {
  color: #cbd5e1;
  line-height: 1.75;
}

.partner-benefits {
  margin: 22px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  color: #cbd5e1;
  font-size: 14px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid rgba(103, 232, 249, .16);
  border-radius: 30px;
  background: rgba(2,6,23,.58);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.stats-grid div {
  padding: 26px 20px;
  text-align: center;
  border-right: 1px solid rgba(103, 232, 249, .10);
}

.stats-grid div:last-child {
  border-right: 0;
}

.stats-grid b {
  display: block;
  font-size: clamp(22px, 2.4vw, 34px);
  background: linear-gradient(90deg, #67e8f9, #d946ef);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stats-grid span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.answer-card {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items: center;
  border: 1px solid rgba(103, 232, 249, .18);
  border-radius: 30px;
  background:
    radial-gradient(circle at 12% 20%, rgba(34, 211, 238, .10), transparent 32%),
    rgba(2, 6, 23, .62);
  padding: 30px;
  backdrop-filter: blur(18px);
}

.answer-card h2 {
  margin: 8px 0 14px;
  font-size: clamp(26px, 3vw, 38px);
}

.answer-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.answer-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.answer-list li {
  border: 1px solid rgba(103, 232, 249, .14);
  border-radius: 18px;
  background: rgba(15, 23, 42, .45);
  padding: 16px;
  color: #cbd5e1;
  line-height: 1.55;
}

.seo-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 38px;
}

.seo-panel::before,
.seo-panel::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 999px;
  filter: blur(54px);
  opacity: .75;
}

.seo-panel::before {
  right: -90px;
  top: -110px;
  background: rgba(34,211,238,.08);
}

.seo-panel::after {
  left: -90px;
  bottom: -120px;
  background: rgba(217,70,239,.08);
}

.seo-aside,
.seo-body {
  position: relative;
}

.seo-aside p,
.seo-body p {
  color: var(--muted);
  line-height: 1.85;
}

.seo-body {
  display: grid;
  gap: 18px;
}

.seo-body article {
  border: 1px solid rgba(103, 232, 249, .12);
  border-radius: 24px;
  background: rgba(15,23,42,.35);
  padding: 24px;
}

.table-wrap {
  margin: 18px 0;
  overflow-x: auto;
  border: 1px solid rgba(103, 232, 249, .14);
  border-radius: 18px;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}

th,
td {
  padding: 15px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(103, 232, 249, .10);
  color: #cbd5e1;
}

th {
  color: #e0f2fe;
  background: rgba(14, 165, 233, .10);
}

tr:last-child td {
  border-bottom: 0;
}

.seo-body h2,
.seo-body h3 {
  margin: 0;
  color: #bae6fd;
  font-size: 24px;
}

.seo-body h3 {
  color: #ddd6fe;
  font-size: 20px;
}

details {
  border-top: 1px solid rgba(103,232,249,.10);
  padding: 14px 0;
}

details:first-of-type {
  margin-top: 12px;
}

summary {
  cursor: pointer;
  color: #e2e8f0;
  font-weight: 800;
}

details p {
  margin: 10px 0 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.contact-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 18px;
  align-items: center;
  border: 1px solid rgba(103, 232, 249, .20);
  border-radius: 26px;
  background: rgba(2,6,23,.66);
  padding: 26px;
  transition: .25s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(103,232,249,.60);
  box-shadow: 0 0 32px rgba(34,211,238,.14);
}

.contact-card.violet {
  border-color: rgba(217,70,239,.35);
}

.contact-card span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(103,232,249,.35);
  border-radius: 999px;
  background: rgba(34,211,238,.08);
  font-size: 34px;
}

.contact-card b {
  font-size: 20px;
}

.contact-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.footer {
  border-top: 1px solid rgba(103, 232, 249, .10);
  padding: 34px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer small {
  display: block;
  margin-top: 8px;
  color: var(--muted2);
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

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

  .nav.is-open {
    position: absolute;
    top: calc(100% + 1px);
    left: 16px;
    right: 16px;
    z-index: 80;
    display: grid;
    gap: 0;
    border: 1px solid rgba(103, 232, 249, .18);
    border-radius: 22px;
    background: rgba(2, 6, 23, .96);
    box-shadow: 0 18px 48px rgba(0, 0, 0, .36);
    overflow: hidden;
  }

  .nav.is-open a {
    padding: 16px 18px;
    border-bottom: 1px solid rgba(103, 232, 249, .10);
    font-size: 15px;
  }

  .nav.is-open a:last-child {
    border-bottom: 0;
  }

  .mobile-menu {
    display: grid;
    place-items: center;
  }

  .hero-grid,
  .two-col,
  .answer-card,
  .seo-panel {
    grid-template-columns: 1fr;
  }

  .hero-art {
    min-height: 430px;
  }

  .feature-grid,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-panel {
    grid-template-columns: 1fr;
  }

  .partner-panel > div {
    text-align: left;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 24px, 1320px);
  }

  .header-login {
    display: none;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .hero {
    padding-top: 42px;
  }

  h1 {
    font-size: clamp(42px, 14vw, 58px);
  }

  .hero-chips,
  .hero-actions,
  .feature-grid,
  .steps,
  .devices,
  .stats-grid,
  .answer-card,
  .contact-grid,
  .partner-benefits {
    grid-template-columns: 1fr;
  }

  .hero-art {
    min-height: 330px;
  }

  .hud {
    display: none;
  }

  .panel,
  .seo-panel {
    padding: 22px;
    border-radius: 24px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
