:root {
  --background: #ffffff;
  --foreground: #0a0a0b;
  --muted: #525252;
  --border: rgba(0,0,0,0.10);
  --card: rgba(0,0,0,0.03);
  --brand: #3b82f6;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}
a { color: inherit; text-decoration: none; }

.page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

/* Backdrops */
.bg-radial {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(59,130,246,0.12), transparent 60%);
}
.bg-glow-wrap {
  position: absolute; left: 50%; top: 50%;
  width: 800px; height: 800px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.bg-glow {
  position: absolute; inset: 0;
  border-radius: 9999px;
  background: rgba(59,130,246,0.20);
  filter: blur(80px);
  animation: pulse-glow 4s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%,100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}
.bg-grid {
  position: absolute; inset: 0; pointer-events: none;
  opacity: 0.10;
  background-image:
    linear-gradient(var(--foreground) 1px, transparent 1px),
    linear-gradient(90deg, var(--foreground) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
          mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

/* Orbits */
.orbit-wrap {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.orbit {
  border-radius: 9999px;
  border: 1px solid var(--border);
}
.orbit-1 { width: 500px; height: 500px; }
.orbit-2 { width: 760px; height: 760px; border-color: rgba(0,0,0,0.10); }
.orbit-spin { animation: orbit-spin 40s linear infinite; }
@keyframes orbit-spin { to { transform: rotate(360deg); } }

/* Content */
.content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
}
@media (min-width: 768px) { .site-header { padding: 24px 48px; } }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo {
  width: 36px; height: 36px;
  border-radius: 6px;
  box-shadow: 0 0 0 1px var(--border);
}
.brand-name { font-size: 16px; font-weight: 600; letter-spacing: -0.01em; }

.status-pill {
  /*display: none;*/
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background: var(--card);
  font-size: 12px;
  color: var(--muted);
  backdrop-filter: blur(10px);
}
@media (min-width: 768px) { .status-pill { display: inline-flex; } }
.status-dot { position: relative; display: inline-flex; width: 8px; height: 8px; }
.status-dot-ping, .status-dot-core {
  position: absolute; inset: 0;
  border-radius: 9999px;
  background: var(--brand);
}
.status-dot-ping { animation: ping 1.5s cubic-bezier(0,0,0.2,1) infinite; opacity: 0.75; }
.status-dot-core { position: relative; }
@keyframes ping {
  75%, 100% { transform: scale(2.2); opacity: 0; }
}

/* Hero */
.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 24px;
}
@media (min-width: 768px) { .hero { padding: 64px 48px; } }
.hero-inner { max-width: 768px; margin: 0 auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  margin-bottom: 32px;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background: var(--card);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: 48px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--foreground);
}
@media (min-width: 768px) { .hero-title { font-size: 80px; } }
@media (min-width: 1024px) { .hero-title { font-size: 96px; } }
.tm {
  font-size: 18px;
  vertical-align: super;
  font-weight: 500;
}
@media (min-width: 768px) { .tm { font-size: 24px; } }
@media (min-width: 1024px) { .tm { font-size: 30px; } }

.hero-sub {
  max-width: 560px;
  margin: 32px auto 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
}
@media (min-width: 768px) { .hero-sub { font-size: 18px; } }

/* Pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 640px;
  margin: 64px auto 0;
  text-align: left;
}
.pillar {
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--card);
  backdrop-filter: blur(10px);
  transition: border-color 0.2s ease;
}
.pillar:hover { border-color: rgba(59,130,246,0.40); }
.pillar-label { font-size: 14px; font-weight: 600; letter-spacing: -0.01em; }
.pillar-hint { margin-top: 4px; font-size: 11px; color: var(--muted); }

/* Footer */
.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 32px 24px;
  font-size: 12px;
  color: var(--muted);
}
@media (min-width: 768px) {
  .site-footer { flex-direction: row; padding: 32px 48px; }
}
.footer-links { display: flex; align-items: center; gap: 16px; }
.footer-links a { transition: color 0.2s ease; }
.footer-links a:hover { color: var(--foreground); }
