:root {
  --bg: #090312;
  --bg-2: #12051d;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --stroke: rgba(255, 255, 255, 0.12);
  --text: #f7efff;
  --muted: #d6c5e9;
  --primary: #ff2f92;
  --primary-2: #ff7a18;
  --accent: #8b5cf6;
  --shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 47, 146, 0.15), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.12), transparent 20%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.45;
  pointer-events: none;
  z-index: -1;
}
.orb-1 { width: 340px; height: 340px; top: 40px; left: -100px; background: #ff2f92; }
.orb-2 { width: 280px; height: 280px; top: 20%; right: -80px; background: #8b5cf6; }
.orb-3 { width: 300px; height: 300px; bottom: 10%; left: 30%; background: #ff7a18; }

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(12px);
  background: rgba(9, 3, 18, 0.5);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  z-index: 10;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  gap: 24px;
}
.brand {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
}
.brand span { color: var(--primary); }
nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.95rem;
}
nav a:hover { color: var(--text); }

.hero { padding: 76px 0 48px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: #ffabd3;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.96;
  margin: 0 0 18px;
}
.lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 62ch;
}
.live-strip {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 28px 0;
}
.live-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.06);
  padding: 12px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow);
}
.live-pill.alt { background: rgba(255, 122, 24, 0.12); }
.dot {
  width: 10px;
  height: 10px;
  margin-right: 10px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 6px rgba(74, 222, 128, 0.14);
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}
.btn {
  border: 0;
  border-radius: 16px;
  padding: 15px 22px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: white;
  box-shadow: 0 18px 38px rgba(255, 47, 146, 0.25);
}
.btn-secondary {
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--stroke);
  color: white;
}
.btn-full { width: 100%; }
.trust-points {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.96rem;
}
.hero-card,
.profile-card,
.feature-card,
.register-form {
  background: var(--panel);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}
.hero-card {
  border-radius: 28px;
  padding: 18px;
}
.hero-card-head,
.hero-card-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.94rem;
}
.hero-card-head { margin-bottom: 14px; }
.status {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #34d399, #22c55e);
}
.activity-list {
  display: grid;
  gap: 12px;
  min-height: 210px;
}
.activity-item {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
}
.activity-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}
.activity-item span { color: var(--muted); font-size: 0.94rem; }
.hero-card-footer { margin-top: 14px; }

section { padding: 46px 0; }
.section-head { margin-bottom: 22px; }
.section-head h2 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
}
.section-head p { margin: 0; color: var(--muted); }

.profiles-grid,
.feature-grid {
  display: grid;
  gap: 18px;
}
.profiles-grid { grid-template-columns: repeat(4, 1fr); }
.feature-grid { grid-template-columns: repeat(3, 1fr); }
.profile-card {
  border-radius: 24px;
  overflow: hidden;
}
.profile-info { padding: 16px; }
.profile-info h3 { margin: 0 0 8px; }
.profile-info p { margin: 0 0 12px; color: var(--muted); line-height: 1.55; }
.tag {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 47, 146, 0.14);
  color: #ffc0df;
  font-size: 0.85rem;
  border: 1px solid rgba(255,255,255,0.08);
}
.feature-card {
  border-radius: 24px;
  padding: 24px;
}
.feature-number {
  font-size: 0.9rem;
  color: #ffabd3;
  margin-bottom: 12px;
  letter-spacing: 0.12em;
}
.feature-card h3 { margin: 0 0 10px; }
.feature-card p { margin: 0; color: var(--muted); line-height: 1.65; }

.registration-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
}
.mini-benefits {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.mini-benefits span {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--stroke);
  color: var(--muted);
}
.register-form {
  border-radius: 24px;
  padding: 22px;
}
.register-form label {
  display: block;
  text-align: left;
  font-size: 0.95rem;
  margin-bottom: 14px;
  color: #f3eafe;
}
.register-form input,
.register-form textarea {
  width: 100%;
  margin-top: 8px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.08);
  color: white;
  padding: 14px 16px;
  font: inherit;
  outline: none;
}
.register-form input::placeholder,
.register-form textarea::placeholder { color: #c7b1de; }
.form-note {
  margin: 12px 0 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.site-footer {
  padding: 26px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-wrap {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}
.toast {
  position: fixed;
  right: 16px;
  bottom: 16px;
  max-width: 320px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(14, 8, 25, 0.9);
  border: 1px solid rgba(255,255,255,0.1);
  color: white;
  box-shadow: var(--shadow);
  transform: translateY(24px);
  opacity: 0;
  pointer-events: none;
  transition: 0.28s ease;
}
.toast.visible {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 980px) {
  .hero-grid,
  .registration-grid,
  .profiles-grid,
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .nav { flex-direction: column; align-items: flex-start; }
  .hero { padding-top: 40px; }
  .hero-grid,
  .registration-grid,
  .profiles-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .hero h1 { line-height: 1; }
  .trust-points { gap: 10px; }
}
