* {
  box-sizing: border-box;
}

:root {
  --bg: #06070d;
  --text: #f6f7fb;
  --muted: #a6adbd;
  --glass: rgba(255, 255, 255, 0.08);
  --glass-strong: rgba(255, 255, 255, 0.13);
  --border: rgba(255, 255, 255, 0.16);
  --accent: #b8ff65;
  --accent-2: #7c5cff;
  --accent-3: #2ee8ff;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 12%, rgba(124, 92, 255, 0.34), transparent 32%),
    radial-gradient(circle at 84% 18%, rgba(46, 232, 255, 0.22), transparent 34%),
    radial-gradient(circle at 50% 92%, rgba(184, 255, 101, 0.15), transparent 35%),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

#orb-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}

.page {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.75fr);
  align-items: center;
  gap: 36px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 64px 0;
}

.hero {
  position: relative;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--border);
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.13), rgba(255,255,255,0.04));
  box-shadow:
    0 30px 120px rgba(0,0,0,0.48),
    inset 0 1px 0 rgba(255,255,255,0.18);
  backdrop-filter: blur(24px);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  background:
    conic-gradient(
      from var(--angle),
      transparent,
      rgba(184, 255, 101, 0.35),
      rgba(46, 232, 255, 0.22),
      rgba(124, 92, 255, 0.32),
      transparent
    );
  filter: blur(20px);
  opacity: 0.72;
  animation: spin 8s linear infinite;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255,255,255,0.07);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 22px var(--accent);
}

h1 {
  margin: 34px 0 0;
  max-width: 780px;
  font-size: clamp(58px, 10vw, 132px);
  line-height: 0.85;
  letter-spacing: -0.09em;
}

h1 span {
  display: block;
}

h1 span:last-child {
  color: transparent;
  -webkit-text-stroke: 1.4px rgba(255,255,255,0.78);
  text-shadow: 0 0 45px rgba(124, 92, 255, 0.3);
}

.lead {
  max-width: 650px;
  margin: 34px 0 0;
  color: #d9deea;
  font-size: clamp(19px, 2.2vw, 28px);
  line-height: 1.45;
  letter-spacing: -0.03em;
}

.status-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(520px, 100%);
  margin-top: 38px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(0,0,0,0.22);
}

.label {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.status-text {
  margin: 6px 0 0;
  font-size: 18px;
}

.pulse-ring {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(184, 255, 101, 0.45);
  box-shadow:
    0 0 0 0 rgba(184, 255, 101, 0.4),
    inset 0 0 28px rgba(184, 255, 101, 0.16);
  animation: pulse 2s infinite;
}

.progress-wrap {
  width: min(520px, 100%);
  margin-top: 26px;
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.progress-track {
  height: 12px;
  margin-top: 12px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.08);
}

.progress-bar {
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent-2), var(--accent-3), var(--accent));
  box-shadow: 0 0 30px rgba(46, 232, 255, 0.42);
  transition: width 0.8s cubic-bezier(.2,.8,.2,1);
}

.terminal {
  border: 1px solid var(--border);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(5, 8, 16, 0.88), rgba(15, 18, 34, 0.68));
  box-shadow: 0 30px 90px rgba(0,0,0,0.45);
  backdrop-filter: blur(20px);
  overflow: hidden;
  transform: rotate(1.2deg);
}

.terminal-top {
  display: flex;
  gap: 8px;
  padding: 18px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
}

.terminal-top span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255,255,255,0.36);
}

.terminal-body {
  padding: 24px;
  min-height: 310px;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  color: #dce7ef;
  font-size: 15px;
  line-height: 1.85;
}

.terminal-body p {
  margin: 0 0 7px;
}

.muted {
  color: var(--accent);
}

.cursor {
  color: var(--accent);
  animation: blink 1s steps(2, start) infinite;
}

.footer {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.54);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.separator {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.32);
}

@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@keyframes spin {
  to {
    --angle: 360deg;
  }
}

@keyframes pulse {
  70% {
    box-shadow:
      0 0 0 18px rgba(184, 255, 101, 0),
      inset 0 0 28px rgba(184, 255, 101, 0.16);
  }
  100% {
    box-shadow:
      0 0 0 0 rgba(184, 255, 101, 0),
      inset 0 0 28px rgba(184, 255, 101, 0.16);
  }
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

@media (max-width: 920px) {
  body {
    overflow: auto;
  }

  .page {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 44px 0 96px;
  }

  .terminal {
    transform: none;
  }

  .footer {
    position: relative;
    left: auto;
    bottom: auto;
    justify-content: center;
    transform: none;
    margin: -64px auto 28px;
  }
}

@media (max-width: 560px) {
  .page {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    border-radius: 28px;
  }

  .lead {
    font-size: 18px;
  }

  .terminal-body {
    font-size: 13px;
  }
}
