:root {
  color-scheme: dark;
  --background: #090a0f;
  --panel: rgba(255, 255, 255, 0.07);
  --panel-strong: rgba(255, 255, 255, 0.11);
  --border: rgba(255, 255, 255, 0.14);
  --text: #f4f4f6;
  --muted: #aaaeba;
  --accent: #d7ff64;
  --accent-ink: #10130a;
  --shadow: rgba(0, 0, 0, 0.35);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--background);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(215, 255, 100, 0.14), transparent 34rem),
    radial-gradient(circle at 80% 10%, rgba(137, 100, 255, 0.12), transparent 28rem),
    linear-gradient(180deg, #090a0f 0%, #11131a 100%);
}

.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0;
}

.hero,
.panel,
.status-card {
  border: 1px solid var(--border);
  background: var(--panel);
  box-shadow: 0 24px 80px var(--shadow);
  backdrop-filter: blur(18px);
}

.hero {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 8vw, 88px);
  border-radius: 36px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 9vw, 7.2rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 4vw, 3.6rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.hero-copy {
  max-width: 690px;
  margin-bottom: 32px;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 20px;
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.button.primary {
  border-color: transparent;
  color: var(--accent-ink);
  background: var(--accent);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.05);
}

.panel,
.status-card {
  margin-top: 18px;
  border-radius: 28px;
  padding: clamp(24px, 5vw, 48px);
}

.grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 32px;
  align-items: start;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  counter-increment: steps;
  position: relative;
  padding: 18px 0 18px 48px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.steps li::before {
  content: counter(steps);
  position: absolute;
  left: 0;
  top: 14px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--accent-ink);
  background: var(--accent);
  font-size: 0.84rem;
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1fr);
  gap: 32px;
  align-items: center;
}

.status-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 32px;
  background: var(--panel-strong);
}

.status-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.status-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
}

.status-list li:last-child {
  border-bottom: 0;
}

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

.status-list strong {
  text-align: right;
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 20px, 1120px);
    padding: 20px 0;
  }

  .hero,
  .panel,
  .status-card {
    border-radius: 24px;
  }

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

  h1 {
    font-size: clamp(2.8rem, 17vw, 4.8rem);
  }
}
