:root {
  --bg-0: #08121a;
  --bg-1: #102231;
  --bg-2: #19384f;
  --ink: #ecf6fd;
  --ink-muted: #9fbed2;
  --panel: rgba(11, 27, 38, 0.72);
  --line: rgba(168, 205, 229, 0.22);
  --mint: #4ee3c4;
  --amber: #ffbe5c;
  --rose: #f66f83;
  --shadow: 0 22px 70px rgba(4, 15, 23, 0.46);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Sora", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1000px 600px at 15% 0%, #22567a 0%, transparent 65%),
    radial-gradient(800px 500px at 90% 20%, #3a2f57 0%, transparent 72%),
    linear-gradient(160deg, var(--bg-0), var(--bg-1) 55%, #1e2c43);
  overflow-x: hidden;
}

.bg-noise {
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 0.8px, transparent 0.8px);
  background-size: 3px 3px;
  pointer-events: none;
  opacity: 0.35;
  z-index: -2;
}

.orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(40px);
  z-index: -1;
  animation: float 12s ease-in-out infinite;
}

.orb-a {
  width: 340px;
  height: 340px;
  left: -100px;
  bottom: 6%;
  background: rgba(78, 227, 196, 0.22);
}

.orb-b {
  width: 260px;
  height: 260px;
  right: 4%;
  top: 7%;
  background: rgba(255, 190, 92, 0.22);
  animation-delay: 2s;
}

.shell {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.topbar {
  padding: 2.2rem 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.eyebrow {
  margin: 0;
  font: 600 0.74rem/1 "IBM Plex Mono", monospace;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.badge {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.48rem 0.9rem;
  font: 500 0.78rem/1 "IBM Plex Mono", monospace;
  background: rgba(16, 45, 61, 0.45);
}

.layout {
  padding-bottom: 4rem;
  display: grid;
  gap: 1.2rem;
}

section {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
  padding: 1.5rem;
}

.hero h1 {
  margin: 0;
  font-size: clamp(1.9rem, 4.7vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.hero p {
  margin: 1rem 0 0;
  max-width: 78ch;
  color: var(--ink-muted);
}

.hero-metrics {
  margin-top: 1.45rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.hero-metrics article {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
  background: rgba(8, 23, 31, 0.5);
}

.hero-metrics h2 {
  margin: 0;
  font-size: 1.7rem;
}

.hero-metrics p {
  margin: 0.35rem 0 0;
  font-size: 0.85rem;
}

h3 {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.capability {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.9rem;
  background: rgba(10, 22, 36, 0.5);
  display: grid;
  gap: 0.45rem;
}

.capability .title {
  font-size: 0.9rem;
  font-weight: 600;
}

.pill {
  justify-self: start;
  border-radius: 999px;
  padding: 0.28rem 0.6rem;
  font: 600 0.68rem/1 "IBM Plex Mono", monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pill.ready {
  background: rgba(78, 227, 196, 0.18);
  color: #89f3df;
}

.pill.pending {
  background: rgba(255, 190, 92, 0.18);
  color: #ffd69c;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.status-grid article {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.9rem;
  background: rgba(10, 24, 34, 0.52);
}

.label {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.value {
  margin: 0.4rem 0 0;
  font: 600 1rem/1.2 "IBM Plex Mono", monospace;
}

.timeline {
  display: grid;
  gap: 0.8rem;
}

.timeline article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.9rem;
  background: rgba(8, 24, 33, 0.5);
}

.timeline span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #0b1f2c;
  background: linear-gradient(145deg, var(--amber), #ff9f5c);
  font: 700 1rem/1 "IBM Plex Mono", monospace;
}

.timeline h4 {
  margin: 0;
  font-size: 1rem;
}

.timeline p {
  margin: 0.35rem 0 0;
  color: var(--ink-muted);
  font-size: 0.89rem;
}

.cta p {
  margin: 0;
  color: var(--ink-muted);
  max-width: 80ch;
}

.button {
  display: inline-block;
  margin-top: 0.95rem;
  margin-right: 0.65rem;
  text-decoration: none;
  background: linear-gradient(135deg, var(--mint), #66f0d4);
  color: #03261d;
  border-radius: 11px;
  padding: 0.65rem 1rem;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(77, 227, 196, 0.22);
}

.button.secondary {
  background: rgba(13, 34, 50, 0.72);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: reveal 0.65s ease forwards;
}

.reveal:nth-of-type(2) { animation-delay: 0.09s; }
.reveal:nth-of-type(3) { animation-delay: 0.16s; }
.reveal:nth-of-type(4) { animation-delay: 0.24s; }
.reveal:nth-of-type(5) { animation-delay: 0.31s; }
.reveal:nth-of-type(6) { animation-delay: 0.38s; }

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-24px) scale(1.07);
  }
}

@media (max-width: 960px) {
  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .status-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .grid,
  .status-grid {
    grid-template-columns: 1fr;
  }
}
