* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #0A0A0F;
  color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
}
.glow {
  position: fixed;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168,85,247,0.15) 0%, transparent 70%);
  top: 30%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}
.rings {
  position: fixed;
  top: 30%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0.06;
  z-index: 0;
}
.rings circle {
  fill: none;
  stroke: #A855F7;
  stroke-width: 1;
}

.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.icon {
  width: 160px; height: 160px;
  margin: 0 auto 2rem;
  filter: drop-shadow(0 0 40px rgba(168,85,247,0.4)) drop-shadow(0 0 80px rgba(168,85,247,0.15));
}
.icon svg { width: 100%; height: 100%; }
.icon-img {
  width: 100%;
  height: 100%;
  border-radius: 32px;
}
h1 {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #C850FF, #00D4FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}
.tagline {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 500px;
}
.badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border: 1px solid rgba(168,85,247,0.3);
  border-radius: 999px;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}
.live-badge {
  background: rgba(16,185,129,0.15);
  border-color: rgba(16,185,129,0.3);
  color: rgba(16,185,129,0.8);
}

.live-content { display: none; }
.offline-content { display: flex; flex-direction: column; align-items: center; }
body.site-live .live-content { display: flex; flex-direction: column; align-items: center; }
body.site-live .offline-content { display: none; }

.cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cta-btn:hover { transform: translateY(-2px); }
.cta-btn:active { transform: translateY(0); }
.cta-primary {
  background: linear-gradient(135deg, #C850FF, #7C3AED);
  color: #fff;
  border: none;
  box-shadow: 0 4px 24px rgba(124,58,237,0.3);
}
.cta-primary:hover { box-shadow: 0 6px 32px rgba(124,58,237,0.5); }
.cta-secondary {
  background: transparent;
  color: #C850FF;
  border: 1px solid rgba(168,85,247,0.3);
}
.cta-secondary:hover { background: rgba(168,85,247,0.08); }

.scroll-hint {
  margin-top: 2.5rem;
  animation: bounce 2s ease infinite;
  color: rgba(255,255,255,0.25);
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.scroll-hint svg { width: 24px; height: 24px; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

section {
  position: relative;
  z-index: 1;
  padding: 5rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}
section h2 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, #C850FF, #00D4FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 600px) {
  .features { grid-template-columns: 1fr; }
  h1 { font-size: 2.25rem; }
  .tagline { font-size: 1.05rem; }
}
.feature-card {
  background: rgba(168,85,247,0.06);
  border: 1px solid rgba(168,85,247,0.12);
  border-radius: 16px;
  padding: 1.75rem;
  text-align: left;
  transition: border-color 0.3s, background 0.3s;
}
.feature-card:hover {
  border-color: rgba(168,85,247,0.3);
  background: rgba(168,85,247,0.1);
}
.feature-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}
.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #E0B0FF;
}
.feature-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.how-it-works {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  counter-reset: step;
}
.step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.step-number {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C850FF, #7C3AED);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}
.step-text h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #E0B0FF;
}
.step-text p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.cta-section {
  text-align: center;
  padding: 4rem 2rem 6rem;
  position: relative;
  z-index: 1;
}
.cta-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
  background: none;
  -webkit-text-fill-color: #fff;
}
.cta-section p {
  color: rgba(255,255,255,0.5);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.notify-form {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 460px;
  margin: 1.5rem auto 0;
}
.notify-form input {
  flex: 1;
  min-width: 200px;
  padding: 0.875rem 1.25rem;
  border-radius: 12px;
  border: 1px solid rgba(168,85,247,0.25);
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}
.notify-form input::placeholder { color: rgba(255,255,255,0.3); }
.notify-form input:focus { border-color: #C850FF; }
.notify-form button {
  padding: 0.875rem 1.75rem;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, #C850FF, #7C3AED);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.notify-form button:hover { transform: translateY(-2px); box-shadow: 0 4px 20px rgba(124,58,237,0.4); }
.notify-msg {
  margin-top: 1rem;
  font-size: 0.9rem;
  min-height: 1.5rem;
}
.notify-msg.success { color: #10B981; }
.notify-msg.error { color: #F87171; }

footer {
  text-align: center;
  padding: 2rem;
  color: rgba(255,255,255,0.2);
  font-size: 0.8rem;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.05);
}
