:root {
  --bg: #020617;
  --card: #0f172a;
  --muted: #94a3b8;
  --text: #e2e8f0;
  --accent: #6366f1;
  --accent2: #22d3ee;
  --grad-start: #6366f1;
  --grad-end: #22d3ee;
  --border: #1e293b;
}

* { box-sizing: border-box; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: radial-gradient(circle at 20% 20%, #0f172a, #020617);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  position: sticky;
  top: 0;
  background: rgba(2, 6, 23, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}

.main-logo { height: 40px; width: auto; display: block; }

.gradient {
  background: linear-gradient(90deg, var(--grad-start), var(--grad-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.container { max-width: 1100px; margin: auto; padding: 60px 20px; }

h1 { font-size: clamp(36px, 7vw, 60px); line-height: 1.1; margin-bottom: 20px; letter-spacing: -2px; font-weight: 800; }
h2 { font-size: 32px; margin-bottom: 40px; text-align: center; font-weight: 700; }

.btn {
  padding: 12px 24px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
  display: inline-block;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3); }
.btn-secondary { background: transparent; border: 1px solid var(--border); color: var(--text); }

.hero-btns { display: flex; gap: 15px; flex-wrap: wrap; margin-top: 30px; }

.stats-bar {
  display: flex;
  justify-content: space-around;
  background: rgba(99, 102, 241, 0.05);
  padding: 30px;
  border-radius: 24px;
  border: 1px solid var(--border);
  margin-top: 40px;
}

.stat-value { display: block; font-size: 28px; font-weight: 700; color: var(--accent2); }
.stat-label { color: var(--muted); font-size: 13px; }

.succ-insight {
  display: flex;
  align-items: center;
  gap: 25px;
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid var(--accent);
  padding: 25px;
  border-radius: 20px;
  margin: 20px 0;
}

.succ-brand img { width: 60px; height: auto; filter: drop-shadow(0 0 8px var(--accent2)); }
.succ-message p { margin: 0; color: var(--text); font-size: 1rem; font-style: italic; }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }

.card {
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid var(--border);
  padding: 25px;
  border-radius: 16px;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.aeon-card h3 {
  background: linear-gradient(90deg, var(--grad-start), var(--grad-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 0;
  display: inline-block;
}

.aeon-card .card-glow {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at center, rgba(99, 102, 241, 0.15), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.aeon-card:hover {
  border-color: rgba(34, 211, 238, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.aeon-card:hover .card-glow { opacity: 1; }

.roadmap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
}

.step { text-align: center; }
.step-num {
  width: 45px; height: 45px;
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 15px; font-weight: 800; color: #020617; font-size: 18px;
}
.step-title { font-weight: 700; color: var(--accent2); margin-bottom: 5px; }
.step-desc { font-size: 12px; color: var(--muted); }

.reveal { opacity: 0; transform: translateY(20px); transition: all 0.8s ease-out; }
.reveal.visible { opacity: 1; transform: translateY(0); }

.cta-box {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
  padding: 50px;
  border-radius: 24px;
  text-align: center;
  border: 1px solid var(--border);
}

footer { text-align: center; padding: 40px; color: var(--muted); border-top: 1px solid var(--border); font-size: 12px; }

@media (max-width: 768px) {
  header { padding: 15px 20px; }
  .succ-insight { flex-direction: column; text-align: center; }
  .stats-bar { flex-direction: column; gap: 20px; }
  .roadmap { grid-template-columns: 1fr 1fr; }
}