:root {
  --bg-0: #05070d;
  --bg-1: #0a0e1a;
  --bg-2: #0f1524;
  --fg: #e8ecf4;
  --fg-dim: #a0a8bd;
  --fg-muted: #6b7388;
  --silver-1: #e6ecf5;
  --silver-2: #9fa8bd;
  --silver-3: #6b7388;
  --accent: #7dd3fc;
  --accent-2: #a78bfa;
  --line: rgba(255,255,255,0.08);
  --line-2: rgba(255,255,255,0.14);
  --glass: rgba(255,255,255,0.03);
  --glass-2: rgba(255,255,255,0.05);
  --radius: 16px;
  --radius-lg: 24px;
  --max: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-0);
  color: var(--fg);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(125,211,252,0.08), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(167,139,250,0.07), transparent 60%),
    radial-gradient(700px 400px at 50% 100%, rgba(125,211,252,0.05), transparent 60%),
    linear-gradient(180deg, #05070d 0%, #080b14 50%, #05070d 100%);
  z-index: -2;
  pointer-events: none;
}

.bg-orbs { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: float 18s ease-in-out infinite;
}
.orb-1 { width: 500px; height: 500px; top: -100px; left: -100px; background: radial-gradient(circle, #7dd3fc, transparent 70%); }
.orb-2 { width: 600px; height: 600px; bottom: -200px; right: -200px; background: radial-gradient(circle, #a78bfa, transparent 70%); animation-delay: -6s; }
.orb-3 { width: 400px; height: 400px; top: 40%; left: 50%; transform: translateX(-50%); background: radial-gradient(circle, rgba(159,168,189,0.4), transparent 70%); animation-delay: -12s; }

@keyframes float {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px,-30px) scale(1.05); }
  66% { transform: translate(-20px,20px) scale(0.98); }
}
.orb-2 { animation-name: float; }
.orb-3 { animation-name: float; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  background: rgba(10,14,26,0.6);
  border-bottom: 1px solid var(--line);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
}
.nav-logo { width: 32px; height: 32px; object-fit: contain; }
.nav-x {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--fg);
  font-weight: 600;
  font-size: 14px;
  background: var(--glass);
  border: 1px solid var(--line-2);
  transition: background .2s, border-color .2s, transform .15s;
}
.nav-x:hover { background: var(--glass-2); border-color: rgba(255,255,255,0.22); transform: translateY(-1px); }

.hero {
  position: relative;
  padding: 80px 24px 60px;
  text-align: center;
}
.hero-inner { max-width: 880px; margin: 0 auto; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(125,211,252,0.08);
  border: 1px solid rgba(125,211,252,0.25);
  color: #cbe8fc;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 40px;
}
.badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7dd3fc;
  box-shadow: 0 0 10px #7dd3fc;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
  position: relative;
}
.hero-logo {
  width: 180px;
  height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 20px 50px rgba(125,211,252,0.25)) drop-shadow(0 10px 30px rgba(0,0,0,0.5));
  animation: logoFloat 6s ease-in-out infinite;
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--fg);
}
.gradient-text {
  background: linear-gradient(135deg, #e6ecf5 0%, #9fa8bd 50%, #7dd3fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.tagline {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--fg-dim);
  max-width: 640px;
  margin: 0 auto 44px;
  line-height: 1.65;
}

.cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: transform .15s, box-shadow .2s, background .2s, border-color .2s;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
}
.btn-primary {
  background: linear-gradient(135deg, #ffffff 0%, #d5dde8 100%);
  color: #0a0e1a;
  box-shadow: 0 8px 30px rgba(125,211,252,0.15), inset 0 1px 0 rgba(255,255,255,0.8);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(125,211,252,0.25), inset 0 1px 0 rgba(255,255,255,0.9);
}
.btn-ghost {
  background: var(--glass);
  color: var(--fg);
  border-color: var(--line-2);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: var(--glass-2); border-color: rgba(255,255,255,0.22); transform: translateY(-1px); }
.btn-lg { padding: 16px 30px; font-size: 16px; }

.section {
  padding: 100px 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
}
.section.in { opacity: 1; transform: translateY(0); }
.section h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(30px, 4.5vw, 46px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--fg);
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(125,211,252,0.08);
  border: 1px solid rgba(125,211,252,0.22);
}
.lead {
  font-size: 17px;
  color: var(--fg-dim);
  max-width: 720px;
  line-height: 1.75;
  margin-bottom: 18px;
}

.about { text-align: center; }
.about .lead { margin-left: auto; margin-right: auto; }

.pillars { text-align: center; }
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 50px;
}
.pillar-card {
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  background: var(--glass);
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
  text-align: left;
  transition: transform .3s, border-color .3s, background .3s;
  opacity: 0;
  transform: translateY(14px);
}
.pillar-card.in { opacity: 1; transform: translateY(0); transition: opacity .6s, transform .6s, border-color .3s; }
.pillar-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-2);
  background: var(--glass-2);
}
.pillar-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(125,211,252,0.14), rgba(167,139,250,0.14));
  border: 1px solid rgba(125,211,252,0.22);
  color: var(--accent);
}
.pillar-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--fg);
}
.pillar-card p { color: var(--fg-dim); font-size: 15px; line-height: 1.65; }

.features { text-align: center; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 50px;
}
.feature-card {
  padding: 28px 24px;
  border-radius: var(--radius);
  background: var(--glass);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  text-align: left;
  transition: transform .3s, border-color .3s, background .3s;
  opacity: 0;
  transform: translateY(14px);
}
.feature-card.in { opacity: 1; transform: translateY(0); transition: opacity .5s, transform .5s, border-color .3s; }
.feature-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-2);
  background: var(--glass-2);
}
.feature-icon {
  font-size: 32px;
  margin-bottom: 14px;
  display: inline-block;
  filter: grayscale(0.1);
}
.feature-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--fg);
}
.feature-card p { color: var(--fg-dim); font-size: 14.5px; line-height: 1.6; }

.status { padding: 80px 24px; }
.status-card {
  max-width: 820px;
  margin: 0 auto;
  padding: 56px 44px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(125,211,252,0.05), rgba(167,139,250,0.05)),
    var(--glass);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(14px);
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s, transform .8s;
}
.status-card.in { opacity: 1; transform: translateY(0); }
.status-card .lead { margin: 0 auto 32px; }
.status-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto 36px;
  text-align: left;
}
.status-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--fg-dim);
  font-size: 15px;
}
.status-item .check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.status-item.done { color: var(--fg); }
.status-item.done .check { background: rgba(34,197,94,0.2); color: #4ade80; border: 1px solid rgba(34,197,94,0.3); }
.status-item.active .check { background: rgba(125,211,252,0.2); color: var(--accent); border: 1px solid rgba(125,211,252,0.3); animation: pulse 2s ease-in-out infinite; }
.status-item:not(.done):not(.active) .check { background: rgba(255,255,255,0.04); color: var(--fg-muted); border: 1px solid var(--line); }

.footer {
  margin-top: 60px;
  padding: 50px 24px 30px;
  border-top: 1px solid var(--line);
  background: rgba(5,7,13,0.4);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-logo { width: 44px; height: 44px; object-fit: contain; }
.footer-name { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 20px; }
.footer-sub { font-size: 13px; color: var(--fg-muted); }
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--glass);
  border: 1px solid var(--line-2);
  color: var(--fg);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: transform .15s, background .2s, border-color .2s;
}
.social-link:hover { background: var(--glass-2); border-color: rgba(255,255,255,0.25); transform: translateY(-1px); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 24px;
  font-size: 13px;
  color: var(--fg-muted);
}
.footer-links { display: flex; gap: 22px; }
.footer-links a { color: var(--fg-dim); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--fg); }

.legal-page {
  padding: 60px 24px 40px;
  max-width: 820px;
  margin: 0 auto;
}
.legal-page .container { padding: 0; }
.legal-page .eyebrow { margin-bottom: 14px; }
.legal-page h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(34px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--fg);
}
.legal-meta { color: var(--fg-muted); font-size: 14px; margin-bottom: 36px; }
.legal-page h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 600;
  margin: 36px 0 12px;
  color: var(--fg);
}
.legal-page p, .legal-page li {
  color: var(--fg-dim);
  line-height: 1.75;
  font-size: 15.5px;
}
.legal-page p { margin-bottom: 14px; }
.legal-page ul { margin: 14px 0 18px 22px; }
.legal-page li { margin-bottom: 8px; }
.legal-page a { color: var(--accent); text-decoration: none; border-bottom: 1px solid rgba(125,211,252,0.25); transition: border-color .2s; }
.legal-page a:hover { border-color: var(--accent); }
.legal-page strong { color: var(--fg); font-weight: 600; }

@media (max-width: 640px) {
  .hero { padding: 50px 20px 40px; }
  .hero-logo { width: 140px; height: 140px; }
  .section { padding: 70px 20px; }
  .status-card { padding: 40px 26px; }
  .nav { padding: 12px 16px; }
  .nav-brand { font-size: 18px; }
  .nav-x span { display: none; }
  .cta-row .btn { width: 100%; justify-content: center; }
}
@media (max-width: 420px) {
  .footer-top, .footer-bottom { flex-direction: column; text-align: center; }
  .footer-brand { flex-direction: column; text-align: center; gap: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
