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

:root {
  --accent:        262 83% 66%;   
  --accent-glow:   262 83% 58%;
  --foreground:    0 0% 100%;
  --muted:         240 4% 54%;
  --muted-foreground: 240 4% 54%;
  --card:          240 6% 10%;
  --outline:       240 6% 18%;
  --bg:            #0e0e11;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: hsl(var(--foreground));
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

.floating-nav {
  background: rgba(18,18,22,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid hsl(var(--outline));
}

nav.top-nav {
  position: fixed; top: 16px; left: 0; right: 0;
  z-index: 50;
  display: flex; justify-content: center;
  pointer-events: none;
}

.nav-inner {
  pointer-events: auto;
  display: inline-flex; align-items: center; gap: 2px;
  padding: 6px 8px;
  border-radius: 9999px;
}

.nav-logo {
  display: flex; align-items: center;
  padding: 0 10px 0 4px;
}

.nav-logo img {
  width: 24px; height: 24px;
  object-fit: contain;
}

.nav-link {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
  cursor: pointer;
}

.nav-link:hover { color: hsl(var(--foreground)); }

.nav-link.active {
  background: hsl(240 6% 18%);
  color: hsl(var(--foreground));
}

.page-root {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

.btn-accent {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  background: hsl(var(--accent));
  color: #fff;
  font-size: 14px; font-weight: 600;
  padding: 0 40px; height: 48px;
  border-radius: 9999px;
  border: none; cursor: pointer;
  font-family: inherit;
  transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
  box-shadow: 0 0 30px -5px hsl(var(--accent) / 0.5);
  text-decoration: none;
  white-space: nowrap;
}
.btn-accent:hover {
  background: hsl(var(--accent-glow));
  box-shadow: 0 0 50px -5px hsl(var(--accent) / 0.7);
  transform: scale(1.03);
}

.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  background: hsl(var(--foreground) / 0.06);
  color: hsl(var(--foreground));
  font-size: 14px; font-weight: 500;
  padding: 0 32px; height: 48px;
  border-radius: 9999px;
  border: 1px solid hsl(var(--foreground) / 0.1);
  cursor: pointer; font-family: inherit;
  transition: background 0.3s, border-color 0.3s, transform 0.2s;
  backdrop-filter: blur(4px);
  text-decoration: none;
  white-space: nowrap;
}
.btn-ghost:hover {
  background: hsl(var(--foreground) / 0.1);
  border-color: hsl(var(--foreground) / 0.2);
  transform: scale(1.03);
}

.feature-card {
  background: hsl(var(--card) / 0.5);
  border: 1px solid hsl(var(--outline));
  border-radius: 16px;
  backdrop-filter: blur(8px);
}

footer {
  border-top: 1px solid hsl(var(--outline));
  padding: 32px 16px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  position: relative; z-index: 1;
}

footer img { width: 24px; height: 24px; object-fit: contain; }

footer span {
  font-size: 13px;
  color: hsl(var(--muted-foreground));
}

.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
}
.scroll-mouse {
  width: 20px; height: 32px;
  border: 2px solid hsl(var(--foreground) / 0.3);
  border-radius: 9999px;
  display: flex; justify-content: center;
  align-items: flex-start; padding-top: 6px;
}
.scroll-dot {
  width: 4px; height: 6px;
  background: hsl(var(--foreground) / 0.5);
  border-radius: 9999px;
  animation: scrollDot 2s ease infinite;
}
@keyframes scrollDot {
  0%   { transform: translateY(0); opacity: 1; }
  80%  { transform: translateY(10px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

.spinner {
  width: 40px; height: 40px;
  border: 2.5px solid hsl(var(--accent) / 0.2);
  border-top-color: hsl(var(--accent));
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero-glow {
  position: absolute;
  top: 40%; left: 50%;
  transform: translate(-50%, -60%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse at center, hsl(var(--accent) / 0.2) 0%, transparent 65%);
  pointer-events: none;
}

.legal-section { margin-bottom: 32px; }
.legal-section h2 {
  font-size: 16px; font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 12px;
}
.legal-section ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.legal-section ul li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 14px; color: hsl(var(--muted-foreground)); line-height: 1.65;
}
.legal-section ul li::before {
  content: '•'; color: hsl(240 6% 35%);
  flex-shrink: 0; margin-top: 1px;
}
.legal-section p {
  font-size: 14px; color: hsl(var(--muted-foreground));
  line-height: 1.7; margin-bottom: 8px;
}
