/* ══════════════════════════════════════════
   LUMINOVAAI — MAIN STYLESHEET
   ══════════════════════════════════════════ */

:root {
  --purple-900: #1e0936;
  --purple-800: #2d1254;
  --purple-700: #4c1d95;
  --purple-600: #7c3aed;
  --purple-500: #8b5cf6;
  --purple-400: #a78bfa;
  --purple-300: #c4b5fd;
  --pink-500:   #ec4899;
  --pink-400:   #f472b6;
  --blue-500:   #3b82f6;
  --blue-400:   #60a5fa;
  --cyan-400:   #22d3ee;
  --bg-dark:    #070412;
  --bg-card:    rgba(255,255,255,0.04);
  --bg-card-hover: rgba(255,255,255,0.07);
  --border:     rgba(139,92,246,0.2);
  --border-hover: rgba(139,92,246,0.5);
  --text-primary: #f1f0f7;
  --text-secondary: #9b8fb5;
  --text-muted: #6b5f84;
  --grad-main: linear-gradient(135deg, #8b5cf6, #ec4899, #3b82f6);
  --grad-subtle: linear-gradient(135deg, rgba(139,92,246,0.3), rgba(236,72,153,0.3));
  --shadow-glow: 0 0 40px rgba(139,92,246,0.3);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.4);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--purple-700); border-radius: 3px; }

/* ── Utilities ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.gradient-text {
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  font-family: 'Orbitron', monospace;
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--purple-400);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 48px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform 0.3s ease; }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--grad-main);
  color: #fff;
  box-shadow: 0 4px 20px rgba(139,92,246,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139,92,246,0.6);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--border-hover);
  background: var(--bg-card);
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }
.btn-sm { padding: 10px 20px; font-size: 13px; }

/* ════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: rgba(7,4,18,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  font-family: 'Orbitron', monospace;
  font-size: 22px;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: 2px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.logo-la {
  background: linear-gradient(135deg, #d8b4fe, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
}
.logo-sep { color: rgba(139,92,246,0.3); font-weight: 300; font-size: 14px; }
.logo-glow { color: #fff; text-shadow: 0 0 20px rgba(139,92,246,0.8); }
.logo-ai {
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-official {
  font-size: 11px;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
  align-self: flex-end;
  margin-bottom: 2px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-primary); }

.nav-cta {
  font-size: 13px;
  padding: 10px 22px;
  background: var(--grad-main);
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 15px rgba(139,92,246,0.4);
  flex-shrink: 0;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(139,92,246,0.6); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(7,4,18,0.97);
    backdrop-filter: blur(20px);
    justify-content: center;
    align-items: center;
    gap: 40px;
    z-index: 999;
  }
  .nav-links.open a { font-size: 24px; }
}

/* ════════════════════════════════════════
   HERO
   ════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

#particleCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139,92,246,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139,92,246,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.orb-1 { width: 500px; height: 500px; background: #7c3aed; top: -100px; right: -100px; animation: orbFloat 8s ease-in-out infinite; }
.orb-2 { width: 400px; height: 400px; background: #ec4899; bottom: -50px; left: -100px; animation: orbFloat 10s ease-in-out infinite reverse; }
.orb-3 { width: 300px; height: 300px; background: #3b82f6; top: 50%; left: 30%; animation: orbFloat 12s ease-in-out infinite 2s; }

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero > .container,
.hero-content {
  position: relative;
  z-index: 2;
}

.hero {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-content { flex: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(139,92,246,0.15);
  border: 1px solid rgba(139,92,246,0.3);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 13px;
  color: var(--purple-300);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}
.badge-dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

.hero-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
}
.hero-sub strong { color: var(--purple-300); }

/* Hero pillars */
.hero-pillars {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  justify-content: flex-start;
}
.pillar {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(139,92,246,0.1);
  border: 1px solid rgba(139,92,246,0.25);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--purple-300);
  letter-spacing: 1px;
  transition: all 0.2s;
}
.pillar:hover { background: rgba(139,92,246,0.2); border-color: rgba(139,92,246,0.5); }
.pillar-icon { font-size: 16px; }

/* Logo visual in hero */
.logo-visual-wrap {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.logo-glow-ring {
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(139,92,246,0.3);
  animation: ringRotate 12s linear infinite;
}
.logo-visual-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  filter: drop-shadow(0 0 30px rgba(139,92,246,0.5));
}
.logo-svg { width: 160px; height: 160px; animation: avatarFloat 4s ease-in-out infinite; }
.logo-name-visual {
  font-family: 'Orbitron', monospace;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  text-shadow: 0 0 20px rgba(139,92,246,0.8);
}
.logo-name-visual span { color: var(--purple-400); font-size: 13px; }

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 0;
  align-items: center;
  flex-wrap: wrap;
}
.stat { text-align: center; padding: 0 32px; }
.stat:first-child { padding-left: 0; }
.stat-num {
  display: block;
  font-family: 'Orbitron', monospace;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
}
.stat-label { font-size: 12px; color: var(--text-muted); }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* Hero Avatar */
.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.avatar-wrapper {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  animation: ringRotate 8s linear infinite;
}
.ring-1 { width: 300px; height: 300px; border-color: rgba(139,92,246,0.4); }
.ring-2 { width: 360px; height: 360px; border-color: rgba(236,72,153,0.2); animation-duration: 12s; animation-direction: reverse; border-style: dashed; }
.ring-3 { width: 420px; height: 420px; border-color: rgba(59,130,246,0.15); animation-duration: 20s; }

@keyframes ringRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.avatar-core {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #4c1d95, #1e0936);
  border: 2px solid rgba(139,92,246,0.5);
  box-shadow:
    0 0 60px rgba(139,92,246,0.4),
    inset 0 0 40px rgba(139,92,246,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.avatar-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-face { width: 200px; height: 200px; }
.avatar-svg { width: 100%; height: 100%; animation: avatarFloat 4s ease-in-out infinite; }

@keyframes avatarFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.avatar-particles { position: absolute; inset: 0; pointer-events: none; }
.ap {
  position: absolute;
  font-size: 12px;
  color: var(--purple-400);
  animation: particleDrift 3s ease-in-out infinite;
  opacity: 0.7;
}
.ap-1 { top: 10%; left: 5%; animation-delay: 0s; }
.ap-2 { top: 20%; right: 2%; animation-delay: 0.5s; }
.ap-3 { bottom: 15%; left: 2%; animation-delay: 1s; }
.ap-4 { bottom: 10%; right: 8%; animation-delay: 1.5s; }
.ap-5 { top: 50%; right: 0; animation-delay: 0.3s; }

@keyframes particleDrift {
  0%, 100% { transform: translate(0,0); opacity: 0.7; }
  50% { transform: translate(5px,-10px); opacity: 1; }
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 2px;
  z-index: 2;
}
.scroll-indicator {
  width: 24px; height: 40px;
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-dot {
  width: 4px; height: 8px;
  background: var(--purple-400);
  border-radius: 2px;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(12px); opacity: 0.3; }
}

/* ════════════════════════════════════════
   ABOUT
   ════════════════════════════════════════ */
.about {
  padding: 120px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-text h2 {
  font-family: 'Orbitron', monospace;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.tag {
  background: rgba(139,92,246,0.12);
  border: 1px solid rgba(139,92,246,0.25);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 13px;
  color: var(--purple-300);
  transition: all 0.2s;
}
.tag:hover { background: rgba(139,92,246,0.22); border-color: rgba(139,92,246,0.5); }

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.3s ease;
}
.info-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.card-icon { font-size: 28px; margin-bottom: 12px; }
.info-card h3 { font-size: 15px; font-weight: 600; margin-bottom: 8px; }
.info-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* ════════════════════════════════════════
   FEATURES
   ════════════════════════════════════════ */
.features {
  padding: 120px 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(124,58,237,0.08) 0%, transparent 70%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 20px;
}

.feature-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: default;
}
.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), 0 0 30px rgba(139,92,246,0.15);
}
.fc-large { grid-column: span 2; }

.fc-bg {
  position: absolute;
  inset: 0;
  background: var(--grad-subtle);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover .fc-bg { opacity: 1; }

.fc-icon { font-size: 36px; margin-bottom: 16px; position: relative; }
.feature-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 10px; position: relative; }
.feature-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; position: relative; }

.fc-tag {
  display: inline-block;
  margin-top: 16px;
  background: rgba(139,92,246,0.2);
  border: 1px solid rgba(139,92,246,0.4);
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 12px;
  color: var(--purple-300);
  position: relative;
}

/* ════════════════════════════════════════
   SOCIAL
   ════════════════════════════════════════ */
.social-section { padding: 120px 0; }

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.social-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text-primary);
  overflow: hidden;
  transition: all 0.3s ease;
  background: var(--bg-card);
}
.social-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-card);
}

.sc-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s;
}
.instagram .sc-bg { background: linear-gradient(135deg, rgba(253,29,29,0.08), rgba(131,58,180,0.08), rgba(253,203,110,0.08)); }
.tiktok .sc-bg { background: linear-gradient(135deg, rgba(0,0,0,0.05), rgba(105,201,208,0.08)); }
.youtube .sc-bg { background: linear-gradient(135deg, rgba(255,0,0,0.08), rgba(255,100,100,0.04)); }
.discord .sc-bg { background: linear-gradient(135deg, rgba(88,101,242,0.12), rgba(88,101,242,0.04)); }
.social-card:hover .sc-bg { opacity: 1; }

.sc-icon { width: 40px; height: 40px; flex-shrink: 0; position: relative; }
.instagram .sc-icon { color: #e1306c; }
.tiktok .sc-icon { color: #69c9d0; }
.youtube .sc-icon { color: #ff0000; }
.discord .sc-icon { color: #5865f2; }

.sc-info { flex: 1; position: relative; }
.sc-name { display: block; font-weight: 600; font-size: 16px; }
.sc-handle { display: block; font-size: 13px; color: var(--text-muted); }

.sc-arrow { font-size: 20px; color: var(--text-muted); position: relative; transition: transform 0.2s, color 0.2s; }
.social-card:hover .sc-arrow { transform: translateX(4px); color: var(--purple-400); }

/* ════════════════════════════════════════
   COMMUNITY / REGISTRATION
   ════════════════════════════════════════ */
.community {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.community-bg { position: absolute; inset: 0; pointer-events: none; }
.orb-c1 { width: 600px; height: 600px; background: #7c3aed; top: -200px; right: -200px; opacity: 0.12; filter: blur(100px); }
.orb-c2 { width: 400px; height: 400px; background: #ec4899; bottom: -100px; left: -100px; opacity: 0.1; filter: blur(80px); }

.community-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.community-text h2 {
  font-family: 'Orbitron', monospace;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.community-text p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
}

.community-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.community-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-secondary);
}
.perk-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(139,92,246,0.2);
  border: 1px solid rgba(139,92,246,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--purple-300);
  flex-shrink: 0;
  font-weight: 700;
}

.member-avatars {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-secondary);
}
.member-list {
  display: flex;
  margin-right: 4px;
}
.member-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg-dark);
  margin-left: -10px;
}
.member-dot:first-child { margin-left: 0; }
.m1 { background: linear-gradient(135deg, #8b5cf6, #ec4899); }
.m2 { background: linear-gradient(135deg, #3b82f6, #8b5cf6); }
.m3 { background: linear-gradient(135deg, #ec4899, #f97316); }
.m4 { background: linear-gradient(135deg, #22d3ee, #3b82f6); }
.m5 { background: linear-gradient(135deg, #a855f7, #22d3ee); }

/* Form */
.registration-form-wrap { position: relative; }

.form-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

.form-header {
  text-align: center;
  margin-bottom: 32px;
}
.form-icon { font-size: 40px; margin-bottom: 12px; }
.form-header h3 {
  font-family: 'Orbitron', monospace;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}
.form-header p { font-size: 14px; color: var(--text-muted); }

.reg-form { display: flex; flex-direction: column; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.input-icon {
  position: absolute;
  left: 14px;
  width: 16px;
  height: 16px;
  color: var(--text-muted);
  pointer-events: none;
}

.input-wrap input,
.input-wrap select {
  width: 100%;
  padding: 13px 14px 13px 42px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: all 0.2s;
  -webkit-appearance: none;
}
.input-wrap input::placeholder { color: var(--text-muted); }
.input-wrap input:focus,
.input-wrap select:focus {
  border-color: var(--purple-500);
  background: rgba(139,92,246,0.08);
  box-shadow: 0 0 0 3px rgba(139,92,246,0.15);
}
.input-wrap input.error,
.input-wrap select.error {
  border-color: #f87171;
  box-shadow: 0 0 0 3px rgba(248,113,113,0.15);
}

.select-wrap::after {
  content: '▼';
  position: absolute;
  right: 14px;
  font-size: 10px;
  color: var(--text-muted);
  pointer-events: none;
}
.input-wrap select { cursor: pointer; }
.input-wrap select option { background: #1e0936; color: var(--text-primary); }

.field-error {
  font-size: 12px;
  color: #f87171;
  min-height: 16px;
}

.form-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--purple-500);
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}
.form-check label {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  cursor: pointer;
}
.link { color: var(--purple-400); text-decoration: none; }
.link:hover { text-decoration: underline; }

/* Success card */
.success-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(139,92,246,0.4);
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  text-align: center;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}
.success-icon { font-size: 60px; margin-bottom: 20px; animation: successPop 0.5s ease-out; }
@keyframes successPop {
  0% { transform: scale(0); } 80% { transform: scale(1.1); } 100% { transform: scale(1); }
}
.success-card h3 {
  font-family: 'Orbitron', monospace;
  font-size: 24px;
  margin-bottom: 12px;
}
.success-card p { color: var(--text-secondary); margin-bottom: 28px; }

/* ════════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════════ */
.testimonials {
  padding: 120px 0;
  background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(236,72,153,0.06) 0%, transparent 70%);
}

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

.tcard {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s ease;
}
.tcard:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.tcard-stars { color: #fbbf24; font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }
.tcard p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.tcard-author { display: flex; align-items: center; gap: 12px; }
.tcard-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  flex-shrink: 0;
}
.ta1 { background: linear-gradient(135deg, #8b5cf6, #ec4899); }
.ta2 { background: linear-gradient(135deg, #22d3ee, #3b82f6); }
.ta3 { background: linear-gradient(135deg, #f97316, #ec4899); }
.tcard-author strong { display: block; font-size: 14px; }
.tcard-author span { font-size: 12px; color: var(--text-muted); }

/* ════════════════════════════════════════
   FAQ
   ════════════════════════════════════════ */
.faq { padding: 120px 0; }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 48px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: var(--border-hover); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--purple-300); }
.faq-chevron { font-size: 10px; color: var(--text-muted); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  padding: 0 24px;
}
.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 24px 20px;
}

/* ════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════ */
.contact {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.contact-inner { text-align: center; }
.contact-inner h2 {
  font-family: 'Orbitron', monospace;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 16px;
}
.contact-inner p { color: var(--text-secondary); margin-bottom: 32px; }

.contact-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s;
  padding: 12px 20px;
  border: 1px solid var(--border);
  border-radius: 50px;
}
.contact-link svg { width: 18px; height: 18px; }
.contact-link:hover { color: var(--purple-300); border-color: var(--border-hover); }

/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
.footer {
  background: rgba(0,0,0,0.4);
  border-top: 1px solid var(--border);
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .nav-logo { margin-bottom: 16px; display: inline-block; }
.footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }

.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.2s;
}
.footer-social a svg { width: 16px; height: 16px; }
.footer-social a:hover { color: var(--text-primary); border-color: var(--border-hover); background: var(--bg-card-hover); }

.footer-links h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--purple-300); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
}

/* ════════════════════════════════════════
   COOKIE BANNER
   ════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: min(600px, calc(100vw - 32px));
  background: rgba(20,10,40,0.95);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card);
  transition: all 0.4s ease;
}
.cookie-banner.hidden {
  transform: translateX(-50%) translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
}
.cookie-inner strong { font-size: 14px; display: block; margin-bottom: 4px; }
.cookie-inner p { font-size: 12px; color: var(--text-muted); }
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }

/* ════════════════════════════════════════
   SCROLL ANIMATIONS
   ════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-pillars { justify-content: center; }
  .hero-sub { margin: 0 auto 40px; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .fc-large { grid-column: span 2; }
  .community-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .features-grid { grid-template-columns: 1fr; }
  .fc-large { grid-column: span 1; }
  .social-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero-stats { gap: 16px; }
  .stat { padding: 0 16px; }
  .form-card { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .hero-badge { font-size: 11px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cookie-inner { flex-direction: column; align-items: flex-start; }
  .about-cards { grid-template-columns: 1fr; }
}
