:root {
  --page: #0a0f1c;
  --panel: #101a30;
  --panel-border: #243456;
  --warm-panel: #1a1606;
  --warm-border: #5c4a16;
  --text: #c9d6ee;
  --text-2: #b9c6e0;
  --card-body: #c2cee6;
  --muted: #9aa6c4;
  --accent: #8aa2ff;
  --live: #56d364;
  --live-bg: #10331c;
  --gold: #e3b341;
  --gold-text: #f0d98a;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--page);
  color: var(--text);
  font: 16px/1.6 system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: 680px; margin: 0 auto; padding: 0 22px; }

.eyebrow {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); margin: 0 0 12px;
}

.hero {
  padding: 56px 22px 40px;
  background: radial-gradient(circle at 28% 25%, #15203a, var(--page) 70%);
  margin: 0 -22px;
}
.hero h1 { font-size: clamp(30px, 7vw, 46px); font-weight: 800; line-height: 1.12; margin: 0 0 14px; }
.lede { font-size: 17px; color: var(--text-2); max-width: 30em; margin: 0; }
.hero svg { margin-top: 22px; width: 100%; max-width: 360px; height: auto; }

.band { padding: 34px 0; border-top: 1px solid var(--panel-border); }
.band-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; margin: 0 0 16px; }
.band-label.live { color: var(--live); }
.band-label.gold { color: var(--gold); }
.band-intro { color: var(--muted); max-width: 32em; margin: -8px 0 16px; font-size: 14px; }

.prose { font-size: 17px; color: var(--text-2); max-width: 32em; }

.card {
  background: var(--panel); border: 1px solid var(--panel-border);
  border-radius: 12px; padding: 18px; margin-bottom: 14px;
}
.card.flagship { background: var(--warm-panel); border-color: var(--warm-border); }
.card-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 8px; }
.card-head h2 { font-size: 17px; font-weight: 700; margin: 0; }
.card.flagship .card-head h2 { color: var(--gold-text); }
.card p { margin: 0; font-size: 14.5px; color: var(--card-body); }
.card.flagship p { color: #d8cba0; }
.card a { color: var(--accent); text-decoration: none; }
.card a:hover { text-decoration: underline; }

.badge { font-size: 10px; padding: 3px 9px; border-radius: 20px; white-space: nowrap; }
.badge.live { background: var(--live-bg); color: var(--live); }
.badge.shipped { background: #1a2747; color: var(--accent); }
.badge.flagship { background: #3a2f0a; color: var(--gold); }

.cta-hed { font-size: 20px; margin: 0 0 6px; }
.cta p { color: var(--text-2); margin: 0 0 12px; }
.links a { color: var(--accent); text-decoration: none; margin-right: 14px; }
.links a:hover { text-decoration: underline; }

/* live nodes breathe */
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .45; } }
.node-live { animation: pulse 2.8s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) { .node-live { animation: none; } }

@media (max-width: 560px) {
  .hero { padding-top: 40px; }
  .band { padding: 26px 0; }
  .ask { min-height: 3.4em; }
}

/* alive page — ambient time line + morphing hero */
.ambient {
  font-size: 12px; color: var(--muted); letter-spacing: .3px;
  margin: 0 0 18px; min-height: 1em;
}
.ambient .dot {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--live); margin-right: 7px; vertical-align: middle;
  animation: pulse 2.8s ease-in-out infinite;
}
/* min-height reserves space for the tallest cycling phrase so the word
   swapping never reflows anything below it. ~2 lines desktop, ~3 lines narrow. */
.ask { font-size: clamp(30px, 7.4vw, 48px); font-weight: 800; line-height: 1.1; margin: 0 0 4px; min-height: 2.5em; }
.morph {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  color: var(--accent); transition: opacity .26s ease; display: inline-block;
}
.resolve { font-size: clamp(22px, 5vw, 34px); font-weight: 700; color: var(--text); margin: 0 0 18px; }

.band-foot { color: var(--muted); font-size: 13px; max-width: 34em; margin: 16px 0 0; }

/* staggered load reveal */
@keyframes rise { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.hero > * { animation: rise .6s ease both; }
.hero .eyebrow { animation-delay: .05s; }
.hero .ask { animation-delay: .16s; }
.hero .resolve { animation-delay: .3s; }
.hero .lede { animation-delay: .44s; }
@media (prefers-reduced-motion: reduce) {
  .hero > * { animation: none; }
  .morph { transition: none; }
}
