:root {
  --bg: #02060d;
  --bg-2: #071422;
  --neon: #3ecbff;
  --neon-2: #00a2ff;
  --neon-soft: #8ae4ff;
  --text: #eef8ff;
  --muted: #8fb4c9;
  --line: rgba(62, 203, 255, 0.22);
  --glass: rgba(6, 18, 32, 0.62);
  --radius: 22px;
  --nav-h: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  color: var(--text);
  font-family: "Outfit", system-ui, sans-serif;
  background:
    radial-gradient(900px 500px at 15% -10%, rgba(0, 140, 255, 0.18), transparent 55%),
    radial-gradient(700px 420px at 90% 10%, rgba(0, 80, 180, 0.16), transparent 50%),
    var(--bg);
  overflow-x: hidden;
  -webkit-tap-highlight-color: rgba(62, 203, 255, 0.18);
  -webkit-text-size-adjust: 100%;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 18% 30%, rgba(0, 170, 255, 0.05) 0 2px, transparent 3px),
    radial-gradient(circle at 72% 62%, rgba(0, 170, 255, 0.04) 0 2px, transparent 3px);
  background-size: 140px 140px, 180px 180px;
  z-index: 0;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
.btn {
  font-family: inherit;
}

.fx-canvas,
.noise,
.vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.fx-canvas {
  z-index: 0;
}

.noise {
  z-index: 1;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.vignette {
  z-index: 1;
  background: radial-gradient(ellipse at center, transparent 45%, rgba(0, 0, 0, 0.45) 100%);
}

.cursor,
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 80;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.cursor {
  width: 10px;
  height: 10px;
  background: var(--neon);
  box-shadow: 0 0 16px var(--neon);
}

.cursor-glow {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(62, 203, 255, 0.45);
  transition: width 0.2s, height 0.2s, opacity 0.2s;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  place-content: center;
  gap: 18px;
  background: #01040a;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.preloader-stage {
  position: relative;
  width: 168px;
  height: 168px;
  display: grid;
  place-items: center;
}

.preloader-logo {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  animation: pulseGlow 1.6s ease-in-out infinite;
}

.preloader-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--neon);
  border-right-color: rgba(62, 203, 255, 0.25);
  animation: spin 1.1s linear infinite;
  box-shadow: 0 0 24px rgba(62, 203, 255, 0.35);
}

.preloader-text {
  margin: 8px 0 0;
  font-family: "Orbitron", sans-serif;
  letter-spacing: 0.28em;
  font-size: 12px;
  color: var(--neon-soft);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: calc(env(safe-area-inset-top, 0px) + 8px) clamp(14px, 4vw, 56px) 8px;
  background: rgba(2, 8, 16, 0.55);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav.scrolled {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(62, 203, 255, 0.45);
}

.nav-brand strong {
  display: block;
  font-family: "Orbitron", sans-serif;
  font-size: 14px;
  letter-spacing: 0.12em;
}

.nav-brand em {
  font-family: "Mr Dafoe", cursive;
  font-style: normal;
  color: var(--neon);
  font-size: 18px;
  line-height: 0.7;
  text-shadow: 0 0 12px var(--neon);
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 14px 22px;
  min-height: 46px;
  font-weight: 600;
  letter-spacing: 0.02em;
  touch-action: manipulation;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn-sm {
  padding: 10px 16px;
  font-size: 14px;
}

.btn-neon {
  color: #031018;
  background: linear-gradient(180deg, #8ae4ff, var(--neon) 40%, var(--neon-2));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12) inset,
    0 0 22px rgba(62, 203, 255, 0.45),
    0 8px 24px rgba(0, 90, 180, 0.28);
}

.btn-neon:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.2) inset,
    0 0 32px rgba(62, 203, 255, 0.7),
    0 10px 28px rgba(0, 90, 180, 0.4);
}

.btn-ghost {
  color: var(--text);
  background: transparent;
  border: 1px solid var(--line);
  box-shadow: 0 0 18px rgba(62, 203, 255, 0.08) inset;
}

.btn-ghost:hover {
  border-color: var(--neon);
  box-shadow: 0 0 22px rgba(62, 203, 255, 0.22);
  transform: translateY(-2px);
}

.btn-copy {
  width: 100%;
  background: rgba(62, 203, 255, 0.08);
  color: var(--neon-soft);
  border: 1px solid var(--line);
}

.hero {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 32px;
  min-height: calc(100vh - var(--nav-h));
  padding: 48px clamp(18px, 5vw, 72px) 28px;
}

.hero-copy h1 {
  margin: 10px 0 18px;
  line-height: 0.82;
}

.word-trump {
  display: block;
  font-family: "Orbitron", sans-serif;
  font-weight: 900;
  font-size: clamp(56px, 9vw, 118px);
  letter-spacing: 0.06em;
  color: #041018;
  -webkit-text-stroke: 2px #5ad4ff;
  text-shadow:
    0 0 8px #3ecbff,
    0 0 22px #00a2ff,
    0 0 48px rgba(0, 140, 255, 0.7),
    0 0 90px rgba(0, 90, 220, 0.4);
  animation: neonFlicker 5.5s infinite;
}

.word-shop {
  display: block;
  margin-top: -8px;
  margin-left: 8px;
  font-family: "Mr Dafoe", cursive;
  font-size: clamp(52px, 8vw, 96px);
  color: var(--neon);
  text-shadow:
    0 0 12px var(--neon),
    0 0 28px var(--neon-2),
    0 0 60px rgba(0, 140, 255, 0.55);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--neon-soft);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3dff9a;
  box-shadow: 0 0 12px #3dff9a;
  animation: pulseGlow 1.4s ease-in-out infinite;
}

.lead {
  max-width: 540px;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 22px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-pills li {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  background: rgba(8, 24, 40, 0.5);
}

.hero-visual {
  display: grid;
  place-items: center;
  padding: 28px;
  overflow: hidden;
}

.orbit {
  position: relative;
  width: min(420px, 68vw);
  aspect-ratio: 1;
}

.orbit img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  animation: floatY 5.5s ease-in-out infinite;
  filter: drop-shadow(0 0 28px rgba(62, 203, 255, 0.45));
}

.orbit-ring {
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px dashed rgba(62, 203, 255, 0.45);
  animation: spin 18s linear infinite;
}

.orbit-ring-b {
  inset: -28px;
  border-style: solid;
  border-width: 1px;
  border-color: transparent transparent rgba(62, 203, 255, 0.28) rgba(62, 203, 255, 0.55);
  animation-duration: 10s;
  animation-direction: reverse;
}

.orbit-spark {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(62, 203, 255, 0.16), transparent 62%);
  animation: pulseGlow 2.8s ease-in-out infinite;
}

.marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(0, 140, 255, 0.08), transparent 30%, transparent 70%, rgba(0, 140, 255, 0.08));
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  padding: 14px 0;
  animation: marquee 22s linear infinite;
  font-family: "Orbitron", sans-serif;
  letter-spacing: 0.22em;
  font-size: 12px;
  color: var(--neon-soft);
}

.marquee-track span::after {
  content: "◆";
  margin-left: 48px;
  color: var(--neon-2);
}

.banner-wrap {
  position: relative;
  z-index: 2;
  padding: 36px clamp(18px, 5vw, 72px) 8px;
}

.banner-frame {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow:
    0 0 0 1px rgba(62, 203, 255, 0.08) inset,
    0 20px 80px rgba(0, 40, 90, 0.45),
    0 0 60px rgba(0, 140, 255, 0.12);
}

.banner-frame img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  object-position: center;
}

.section {
  position: relative;
  z-index: 2;
  padding: 84px clamp(18px, 5vw, 72px) 20px;
}

.section-head {
  max-width: 680px;
  margin-bottom: 36px;
}

.section-head h2,
.cta-inner h2 {
  margin: 8px 0 10px;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 0.04em;
  text-shadow: 0 0 24px rgba(62, 203, 255, 0.25);
}

.section-head p:last-child {
  color: var(--muted);
  line-height: 1.6;
}

.bots {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.bot-card {
  position: relative;
  padding: 26px;
  overflow: hidden;
  transform-style: preserve-3d;
}

.bot-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bot-meta {
  min-width: 0;
  flex: 1;
}

.bot-meta h3 {
  overflow-wrap: anywhere;
}

.bot-card {
  position: relative;
  padding: 26px;
  overflow: hidden;
  transform-style: preserve-3d;
}

.bot-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px 180px at var(--mx, 50%) var(--my, 0%), rgba(62, 203, 255, 0.16), transparent 55%);
  pointer-events: none;
}

.bot-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.bot-top h3 {
  margin: 0 0 4px;
  font-size: 20px;
}

.bot-user {
  color: var(--neon);
  font-size: 14px;
  overflow-wrap: anywhere;
}

.bot-avatar {
  width: 62px;
  height: 62px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(62, 203, 255, 0.4);
}

.badge {
  margin-left: auto;
  flex-shrink: 0;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neon-soft);
  border: 1px solid var(--line);
  background: rgba(62, 203, 255, 0.08);
}

.bot-card p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 18px;
}

.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 22px;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 76px;
  padding: 16px 18px;
  border-radius: 20px;
  color: #031018;
  background: linear-gradient(180deg, #8ae4ff, var(--neon) 42%, var(--neon-2));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12) inset,
    0 0 24px rgba(62, 203, 255, 0.4),
    0 10px 28px rgba(0, 90, 180, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  touch-action: manipulation;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.2) inset,
    0 0 36px rgba(62, 203, 255, 0.7),
    0 12px 32px rgba(0, 90, 180, 0.4);
}

.contact-btn--live {
  background: linear-gradient(180deg, #d9f7ff, #5ad4ff 40%, #1aa6ff);
}

.contact-icon {
  position: relative;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(3, 16, 24, 0.18);
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

.contact-icon .live-dot {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 8px;
  height: 8px;
}

.contact-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
  text-align: left;
}

.contact-copy small {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.72;
}

.contact-copy strong {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(13px, 2.2vw, 16px);
  letter-spacing: 0.04em;
  line-height: 1.25;
}

.contact-tg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  opacity: 0.8;
}

.glass-card {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.22);
}

.features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.features .glass-card,
.steps .glass-card {
  padding: 24px;
}

.features h3,
.steps h3 {
  margin: 14px 0 8px;
}

.features p,
.steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.icon-box {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--neon);
  background: rgba(62, 203, 255, 0.08);
  border: 1px solid var(--line);
  box-shadow: 0 0 18px rgba(62, 203, 255, 0.12);
}

.icon-box svg {
  width: 22px;
  height: 22px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: none;
}

.step-num {
  display: block;
  font-family: "Orbitron", sans-serif;
  color: var(--neon);
  font-size: 22px;
  text-shadow: 0 0 16px var(--neon);
}

.cta-band {
  position: relative;
  z-index: 2;
  margin: 64px clamp(18px, 5vw, 72px) 20px;
  padding: 56px 28px;
  text-align: center;
  border-radius: 32px;
  border: 1px solid var(--line);
  background:
    radial-gradient(500px 180px at 50% 0%, rgba(62, 203, 255, 0.18), transparent 60%),
    rgba(6, 18, 32, 0.7);
  box-shadow: 0 0 80px rgba(0, 120, 255, 0.12);
}

.cta-inner p {
  color: var(--muted);
  margin: 0 0 24px;
}

.footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 32px clamp(18px, 5vw, 72px) 110px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.footer strong {
  display: block;
  color: var(--text);
}

.footer .copy {
  margin-left: auto;
  font-size: 13px;
}

.fab {
  position: fixed;
  right: max(16px, env(safe-area-inset-right, 0px));
  bottom: max(16px, env(safe-area-inset-bottom, 0px));
  z-index: 30;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #031018;
  background: linear-gradient(180deg, #8ae4ff, var(--neon-2));
  box-shadow: 0 0 28px rgba(62, 203, 255, 0.55);
  animation: pulseGlow 2.4s ease-in-out infinite;
}

.fab svg {
  width: 26px;
  height: 26px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.12s; }
.delay-2 { animation-delay: 0.22s; }
.delay-3 { animation-delay: 0.32s; }

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes pulseGlow {
  0%, 100% { filter: drop-shadow(0 0 8px rgba(62, 203, 255, 0.35)); opacity: 1; }
  50% { filter: drop-shadow(0 0 22px rgba(62, 203, 255, 0.8)); opacity: 0.86; }
}

@keyframes neonFlicker {
  0%, 19%, 21%, 23%, 80%, 100% { opacity: 1; }
  20%, 22% { opacity: 0.72; }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes fadeUp {
  to { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  :root {
    --nav-h: 64px;
  }

  .hero,
  .features,
  .steps {
    grid-template-columns: 1fr;
  }

  .bots {
    grid-template-columns: 1fr;
  }

  .contact-row {
    grid-template-columns: 1fr;
    margin-top: 16px;
  }

  .contact-btn {
    min-height: 72px;
  }

  .hero {
    min-height: auto;
    gap: 8px;
    padding: 20px clamp(14px, 4vw, 28px) 12px;
    text-align: center;
  }

  .hero-visual {
    order: -1;
    padding: 12px 24px 4px;
  }

  .orbit {
    width: min(240px, 58vw);
  }

  .lead,
  .section-head {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-pills {
    justify-content: center;
  }

  .hero-actions {
    margin: 20px 0 16px;
  }

  .hero-actions .btn {
    width: min(100%, 360px);
  }

  .nav-links {
    display: none;
  }

  .word-trump {
    font-size: clamp(36px, 12vw, 72px);
    letter-spacing: 0.03em;
    -webkit-text-stroke-width: 1.4px;
  }

  .word-shop {
    margin-left: 0;
    margin-top: -4px;
    font-size: clamp(40px, 13vw, 72px);
  }

  .section {
    padding: 56px clamp(14px, 4vw, 28px) 12px;
  }

  .banner-wrap,
  .cta-band {
    margin-left: clamp(14px, 4vw, 28px);
    margin-right: clamp(14px, 4vw, 28px);
  }

  .banner-wrap {
    padding: 24px 0 8px;
  }

  .banner-frame {
    border-radius: 18px;
  }

  .cta-band {
    margin-top: 40px;
    padding: 36px 18px;
    border-radius: 22px;
  }

  .footer {
    padding: 24px clamp(14px, 4vw, 28px) calc(96px + env(safe-area-inset-bottom, 0px));
  }

  .footer .copy {
    margin-left: 0;
    width: 100%;
  }
}

@media (max-width: 720px) {
  .nav-brand span {
    display: none;
  }

  .nav-cta {
    padding-inline: 14px;
  }

  .bot-top {
    flex-wrap: wrap;
  }

  .badge {
    margin-left: 0;
  }

  .bot-card {
    padding: 18px;
  }

  .bot-avatar {
    width: 52px;
    height: 52px;
  }

  .bot-actions .btn {
    width: 100%;
  }

  .features {
    grid-template-columns: 1fr 1fr;
  }

  .marquee-track {
    gap: 28px;
    letter-spacing: 0.12em;
    font-size: 11px;
  }

  .marquee-track span::after {
    margin-left: 28px;
  }
}

@media (max-width: 520px) {
  .features {
    grid-template-columns: 1fr;
  }

  .nav-cta-text {
    display: none;
  }

  .nav-cta {
    width: 44px;
    min-height: 44px;
    padding: 0;
  }

  .hero-pills {
    justify-content: center;
  }

  .hero-pills li {
    font-size: 12px;
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  .contact-copy strong {
    font-size: 14px;
  }
}

@media (hover: none) {
  .cursor,
  .cursor-glow {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
