:root {
  --bg: #080810;
  --surface: #0c0c18;
  --card: #101020;
  --line: #1a1a30;
  --line2: #222240;
  --text: #d8d8ee;
  --sub: #7878a8;
  --dim: #44446a;
  --acc: #b9a8c7;
  --acc-bg: rgba(88, 69, 105, 0.14);
  --acc-bd: rgba(88, 69, 105, 0.3);
  --green: #3dd68c;
  --yel: #f0b429;
  --yel-bg: rgba(240, 180, 41, 0.1);
  --yel-bd: rgba(240, 180, 41, 0.25);
  --blue: #1b7fff;
  --mono: 'JetBrains Mono', 'Consolas', monospace;
  --sans: 'Sora', 'Segoe UI', sans-serif;
  --r5: 5px;
  --r8: 8px;
  --r12: 12px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before,
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  z-index: 0;
  background:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.35;
}

body::after {
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 40% at 20% 20%, rgba(88, 69, 105, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 35% at 80% 70%, rgba(27, 127, 255, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 40% 30% at 50% 50%, rgba(61, 214, 140, 0.06) 0%, transparent 60%);
}

.shell {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  padding: 32px 24px 64px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.topbar {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--line2);
  border-radius: var(--r12);
  padding: 12px 18px;
  animation: fade-down 0.5s ease both;
}

.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.3px;
}

.brand-icon {
  display: inline-flex;
}

.brand-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse-dot 2s ease-in-out infinite;
}

.topbar-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.status-pill {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--yel-bg);
  border: 1px solid var(--yel-bd);
  color: var(--yel);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  animation: pulse-badge 2s ease-in-out infinite;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  animation: fade-up 0.6s 0.1s ease both;
}

.hero-left,
.hero-right {
  display: flex;
  flex-direction: column;
}

.hero-left {
  gap: 20px;
}

.hero-right {
  gap: 14px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-kicker {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--acc);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-kicker::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--acc);
}

h1,
h2 {
  color: #fff;
  letter-spacing: -0.5px;
}

h1 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.1;
  max-width: 12ch;
}

h1 span {
  background: linear-gradient(135deg, var(--acc), #7c5cbf, var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 13px;
  color: var(--sub);
  line-height: 1.7;
  max-width: 400px;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--line2);
  border-radius: var(--r8);
  padding: 12px 14px;
  transition: border-color 0.15s, background 0.15s, transform 0.15s;
}

.feat:hover {
  border-color: var(--acc-bd);
  background: var(--card);
  transform: translateY(-1px);
}

.feat-ico {
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.feat-body strong {
  display: block;
  font-size: 12px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 2px;
}

.feat-body p,
.panel-card p,
.info-card p {
  color: var(--sub);
}

.feat-body p {
  font-size: 11px;
  line-height: 1.5;
}

.panel-card,
.info-card {
  background: var(--surface);
  border: 1px solid var(--line2);
  border-radius: var(--r12);
}

.panel-card {
  padding: 18px 20px;
}

.panel-card.main-card {
  background: linear-gradient(135deg, rgba(88, 69, 105, 0.12), rgba(27, 127, 255, 0.06));
  border-color: var(--acc-bd);
  flex: 1;
}

.panel-kicker,
.stat-card span,
.section-chip,
footer {
  font-family: var(--mono);
}

.panel-kicker {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dim);
  display: block;
  margin-bottom: 8px;
}

.panel-card strong {
  display: block;
  font-size: 13px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 6px;
}

.panel-card p {
  font-size: 11px;
  line-height: 1.6;
  margin-bottom: 14px;
}

.progress-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.progress-labels {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--sub);
}

.progress-labels strong {
  color: var(--green);
  display: inline;
  font-size: 10px;
  font-weight: 700;
  margin: 0;
}

.progress-bar {
  height: 5px;
  background: var(--line2);
  border-radius: 999px;
  overflow: hidden;
}

.progress-value {
  height: 100%;
  background: linear-gradient(90deg, #3dd68c, #9be8c2);
  border-radius: 999px;
  transition: width 0.8s ease;
}

.stats-grid,
.bottom-grid {
  display: grid;
}

.stats-grid {
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.stat-card {
  padding: 12px 14px;
}

.stat-card span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dim);
  display: block;
  margin-bottom: 4px;
}

.stat-card strong {
  font-size: 14px;
  margin-bottom: 2px;
}

.stat-card small {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--sub);
}

.stat-green {
  color: var(--green);
}

.stat-yellow {
  color: var(--yel);
}

.stat-accent {
  color: var(--acc);
}

.stat-muted {
  color: var(--sub);
}

.bottom-grid {
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  animation: fade-up 0.6s 0.25s ease both;
}

.info-card {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.15s, transform 0.15s;
}

.info-card:hover {
  border-color: var(--acc-bd);
  transform: translateY(-1px);
}

.section-chip {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--acc-bg);
  border: 1px solid var(--acc-bd);
  color: var(--acc);
  width: fit-content;
}

.info-card h2 {
  font-size: 18px;
  font-weight: 900;
  line-height: 1.35;
}

.info-card p {
  font-size: 12px;
  line-height: 1.7;
}

.ghost-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--acc);
  text-decoration: none;
  border: 1px solid var(--acc-bd);
  background: var(--acc-bg);
  padding: 6px 14px;
  border-radius: var(--r5);
  margin-top: 4px;
  width: fit-content;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.ghost-link:hover,
.ghost-link:focus-visible {
  background: rgba(88, 69, 105, 0.25);
  border-color: rgba(88, 69, 105, 0.5);
}

.ghost-link:focus-visible {
  outline: 2px solid rgba(27, 127, 255, 0.7);
  outline-offset: 2px;
}

footer {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 10px;
  color: var(--dim);
  padding: 0 24px 24px;
  animation: fade-up 0.6s 0.35s ease both;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 8px var(--green);
  }

  50% {
    opacity: 0.5;
    box-shadow: 0 0 3px var(--green);
  }
}

@keyframes pulse-badge {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.6;
  }
}

@keyframes fade-down {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

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

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

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

@media (max-width: 720px) {
  .shell {
    padding: 16px 14px 48px;
    gap: 18px;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar-right {
    margin-left: 0;
  }

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

  .hero-right {
    order: -1;
  }

  h1 {
    font-size: 30px;
  }
}

@media (max-width: 520px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
