
:root {
  --bg: #090b18;
  --panel: rgba(19, 24, 52, 0.82);
  --text: #f8fbff;
  --muted: #aab7dc;
  --accent: #70e2ff;
  --accent-2: #b36dff;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 20%, rgba(112, 226, 255, 0.26), transparent 32rem),
    radial-gradient(circle at 85% 10%, rgba(179, 109, 255, 0.28), transparent 28rem),
    linear-gradient(135deg, #070813, #11162f 48%, #060711);
}

.page {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 56px 0 72px;
}

.topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 34px rgba(112, 226, 255, 0.44);
}

.status {
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 34px;
  align-items: stretch;
}

.copy,
.card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 32px;
  background: var(--panel);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.copy {
  padding: 48px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(44px, 7vw, 96px);
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.lead {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.7;
  max-width: 640px;
}

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 16px;
  color: #06101b;
  font-weight: 800;
  text-decoration: none;
  background: linear-gradient(135deg, var(--accent), #e2fbff);
}

.button.secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.card {
  position: relative;
  overflow: hidden;
  padding: 34px;
}

.orb {
  position: absolute;
  width: 260px;
  height: 260px;
  right: -60px;
  top: -70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(112, 226, 255, 0.75), rgba(179, 109, 255, 0.18) 45%, transparent 70%);
  filter: blur(2px);
}

.stats {
  position: relative;
  display: grid;
  gap: 16px;
  margin-top: 140px;
}

.stat {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.stat strong {
  display: block;
  font-size: 34px;
}

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

.load-panel {
  margin-top: 34px;
  padding: 28px;
  border: 1px dashed rgba(112, 226, 255, 0.36);
  border-radius: 28px;
  background: rgba(6, 10, 26, 0.58);
}

.progress {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
}

.bar {
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 220ms ease;
}

.asset-log {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; }
  .topline { align-items: flex-start; gap: 16px; flex-direction: column; }
  .copy { padding: 32px; }
}
