:root {
  --ink: #07070a;
  --panel: rgba(18, 18, 25, 0.82);
  --panel-soft: rgba(255, 255, 255, 0.035);
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(151, 99, 255, 0.28);
  --text: #f7f6fb;
  --muted: #9c99a8;
  --purple: #8d5cff;
  --purple-bright: #b898ff;
  --green: #55e9ac;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--ink);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 0 clamp(1.25rem, 4vw, 4.5rem);
  background:
    radial-gradient(circle at 50% 42%, rgba(84, 45, 160, 0.12), transparent 30rem),
    linear-gradient(180deg, #0b0b10 0%, #07070a 72%);
}

.grid-overlay {
  position: absolute;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 78%);
}

.ambient {
  position: absolute;
  z-index: -2;
  width: 34rem;
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(110px);
  opacity: 0.17;
}

.ambient-one {
  top: -19rem;
  left: 12%;
  background: #8054ff;
}

.ambient-two {
  right: -20rem;
  bottom: -16rem;
  background: #4c26ad;
}

.topbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 6rem;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  min-height: 44px;
}

.brand-mark {
  position: relative;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(184, 152, 255, 0.78);
  border-radius: 0.5rem;
  transform: rotate(45deg);
  background: linear-gradient(145deg, rgba(141, 92, 255, 0.34), rgba(141, 92, 255, 0.04));
  box-shadow: 0 0 24px rgba(141, 92, 255, 0.2), inset 0 0 12px rgba(184, 152, 255, 0.08);
}

.brand-cut {
  position: absolute;
  inset: 0.35rem;
  border-left: 2px solid var(--purple-bright);
  border-bottom: 2px solid var(--purple-bright);
  border-radius: 0.16rem;
}

.brand-name {
  font-size: 1.08rem;
  font-weight: 720;
  letter-spacing: -0.025em;
}

.brand-labs,
.build-label,
.eyebrow,
.progress-kicker {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  letter-spacing: 0.15em;
}

.brand-labs {
  margin-left: -0.35rem;
  color: var(--purple-bright);
  font-size: 0.59rem;
  font-weight: 700;
}

.build-label {
  color: #777382;
  font-size: 0.62rem;
}

.hero {
  width: min(100%, 820px);
  margin: auto;
  padding: clamp(3.5rem, 8vh, 6.5rem) 0 clamp(3rem, 8vh, 5rem);
  text-align: center;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(141, 92, 255, 0.23);
  border-radius: 999px;
  background: rgba(141, 92, 255, 0.075);
  color: #c9c4d5;
  font-size: 0.73rem;
}

.status-dot {
  position: relative;
  display: block;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--purple-bright);
  box-shadow: 0 0 0.8rem rgba(184, 152, 255, 0.75);
}

.status-dot::after {
  content: "";
  position: absolute;
  inset: -0.32rem;
  border: 1px solid rgba(184, 152, 255, 0.42);
  border-radius: inherit;
  animation: ping 2.4s ease-out infinite;
}

.hero-copy {
  margin: 2.1rem auto 2.8rem;
}

.eyebrow {
  margin: 0 0 1.1rem;
  color: var(--purple-bright);
  font-size: 0.62rem;
  font-weight: 700;
}

h1 {
  margin: 0;
  font-size: clamp(3.1rem, 7.2vw, 6.45rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
  font-weight: 690;
}

h1 span {
  display: block;
  margin-top: 0.15em;
  color: transparent;
  background: linear-gradient(100deg, #ffffff 0%, #bca4ff 58%, #8355f3 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.lede {
  width: min(100%, 620px);
  margin: 1.65rem auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.16rem);
  line-height: 1.72;
}

.progress-card {
  position: relative;
  padding: clamp(1.35rem, 3vw, 2rem);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 1.35rem;
  background:
    linear-gradient(145deg, rgba(141, 92, 255, 0.055), transparent 48%),
    var(--panel);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38), inset 0 1px rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(22px);
  text-align: left;
}

.progress-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 16%;
  width: 68%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 152, 255, 0.8), transparent);
}

.progress-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.progress-head > div {
  display: grid;
  gap: 0.35rem;
}

.progress-kicker {
  color: #777382;
  font-size: 0.55rem;
}

.progress-head strong {
  font-size: 1.05rem;
  font-weight: 630;
}

.progress-value {
  color: var(--purple-bright);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.8rem;
}

.progress-track {
  height: 0.36rem;
  margin: 1.5rem 0 1.7rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.065);
}

.progress-fill {
  display: block;
  width: 58%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #6630eb, var(--purple-bright));
  box-shadow: 0 0 1rem rgba(141, 92, 255, 0.52);
  animation: rendering 3.4s ease-in-out infinite alternate;
}

.milestones {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.milestone {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  min-width: 0;
  padding: 0.88rem;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 0.85rem;
  background: var(--panel-soft);
  color: #716e7a;
}

.milestone.active {
  border-color: rgba(141, 92, 255, 0.22);
  background: rgba(141, 92, 255, 0.075);
  color: #cbc2df;
}

.milestone.complete {
  color: #b5b1bc;
}

.milestone-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 0.55rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.55rem;
}

.complete .milestone-icon {
  border-color: rgba(85, 233, 172, 0.25);
  background: rgba(85, 233, 172, 0.08);
  color: var(--green);
}

.active .milestone-icon {
  border-color: rgba(184, 152, 255, 0.27);
  color: var(--purple-bright);
}

.milestone div {
  display: grid;
  min-width: 0;
  gap: 0.22rem;
}

.milestone strong {
  color: inherit;
  font-size: 0.73rem;
  font-weight: 610;
}

.milestone div span {
  color: #706c78;
  font-size: 0.62rem;
}

.return-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin: 1.6rem 0 0;
  color: #7f7b89;
  font-size: 0.76rem;
}

.return-note > span {
  color: var(--purple-bright);
}

footer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  min-height: 4.5rem;
  border-top: 1px solid var(--line);
  color: #5e5b66;
  font-size: 0.67rem;
}

.footer-divider {
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #5e5b66;
}

@keyframes ping {
  0% {
    transform: scale(0.65);
    opacity: 0.75;
  }
  75%,
  100% {
    transform: scale(1.45);
    opacity: 0;
  }
}

@keyframes rendering {
  from {
    transform: translateX(-7%);
  }
  to {
    transform: translateX(76%);
  }
}

@media (max-width: 700px) {
  .site-shell {
    padding: 0 1.15rem;
  }

  .topbar {
    height: 5rem;
  }

  .build-label {
    display: none;
  }

  .hero {
    padding-top: 3rem;
  }

  h1 {
    font-size: clamp(2.95rem, 13vw, 4.35rem);
  }

  .milestones {
    grid-template-columns: 1fr;
  }

  .milestone {
    padding: 0.75rem;
  }

  footer {
    flex-wrap: wrap;
    gap: 0.55rem;
    padding: 1rem 0;
  }
}

@media (max-width: 400px) {
  .brand-labs {
    display: none;
  }

  .status-pill {
    font-size: 0.66rem;
  }

  .progress-head {
    align-items: flex-end;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
