
:root {
  --bg: #060712;
  --panel: rgba(16, 18, 38, .58);
  --text: #f7f8ff;
  --muted: #a8aec7;
  --pink: #ff3bbd;
  --cyan: #33d9ff;
  --line: rgba(255,255,255,.11);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 28%, rgba(42, 116, 255, .16), transparent 30%),
    radial-gradient(circle at 25% 15%, rgba(255, 32, 177, .12), transparent 28%),
    linear-gradient(145deg, #04050d 0%, #090b1b 52%, #050611 100%);
  font-family: "Manrope", system-ui, sans-serif;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: .22;
}
.orb-one { width: 330px; height: 330px; background: var(--pink); left: -140px; top: 30%; }
.orb-two { width: 370px; height: 370px; background: #176cff; right: -150px; bottom: -80px; }

.site-header, footer {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}
.site-header {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -.03em;
}
.brand-mark {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--pink), var(--cyan));
  box-shadow: 0 0 22px rgba(105, 113, 255, .8);
  transform: rotate(12deg);
}
.status {
  color: var(--muted);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.status span {
  width: 7px; height: 7px; border-radius: 50%;
  background: #5dff9d;
  box-shadow: 0 0 12px #5dff9d;
}
main {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}
.hero {
  min-height: calc(100vh - 168px);
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 32px;
  align-items: center;
  padding: 52px 0 58px;
}
.copy { position: relative; z-index: 2; }
.eyebrow {
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .24em;
  color: var(--cyan);
}
h1 {
  margin: 0;
  max-width: 710px;
  font-size: clamp(46px, 5.4vw, 82px);
  line-height: .98;
  letter-spacing: -.055em;
}
.lead {
  max-width: 670px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.7;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 800;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.primary {
  color: #050610;
  background: linear-gradient(110deg, #ff55c8, #7c6dff 52%, #3ee5ff);
  box-shadow: 0 16px 48px rgba(80, 83, 255, .28);
}
.secondary {
  color: var(--text);
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
}
.secondary:hover { border-color: rgba(255,255,255,.3); }
.tags {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.tags span {
  padding: 8px 12px;
  border-radius: 999px;
  color: #c8cee6;
  background: rgba(255,255,255,.035);
  border: 1px solid var(--line);
  font-size: 13px;
}
.visual {
  min-height: 560px;
  display: grid;
  place-items: center;
  position: relative;
  isolation: isolate;
}
.visual img {
  width: min(100%, 690px);
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 32px 70px rgba(0,0,0,.55));
  animation: float 6s ease-in-out infinite;
}
.logo-glow {
  position: absolute;
  width: 68%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(from 90deg, rgba(255,45,183,.75), rgba(55,213,255,.75), rgba(109,65,255,.75), rgba(255,45,183,.75));
  filter: blur(78px);
  opacity: .24;
  z-index: 1;
  animation: pulse 5s ease-in-out infinite;
}
footer {
  min-height: 84px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: #7e859f;
  font-size: 13px;
}
@keyframes float {
  0%,100% { transform: translateY(0) rotate(-.5deg); }
  50% { transform: translateY(-13px) rotate(.5deg); }
}
@keyframes pulse {
  0%,100% { transform: scale(.94); opacity: .2; }
  50% { transform: scale(1.05); opacity: .32; }
}
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 64px;
  }
  .lead { margin-inline: auto; }
  .actions, .tags { justify-content: center; }
  .visual { min-height: auto; margin-top: 6px; }
  .visual img { width: min(100%, 620px); }
}
@media (max-width: 560px) {
  .site-header, main, footer { width: min(100% - 26px, 1180px); }
  .site-header { min-height: 70px; }
  .status { font-size: 0; }
  .status::after { content: "Скоро"; font-size: 12px; }
  .hero { min-height: auto; padding: 48px 0 38px; }
  h1 { font-size: clamp(40px, 13vw, 58px); }
  .lead { font-size: 16px; line-height: 1.6; }
  .button { width: 100%; }
  footer { min-height: 96px; flex-direction: column; justify-content: center; gap: 5px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; scroll-behavior: auto !important; }
}
