:root {
  color-scheme: dark;
  --bg: #060707;
  --panel: #101212;
  --panel-2: #171917;
  --line: #2b302b;
  --text: #f2f0e8;
  --muted: #a0a396;
  --green: #5bd48b;
  --amber: #e0b252;
  --red: #e06464;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 20% 15%, rgba(91, 212, 139, 0.16), transparent 26rem),
    linear-gradient(145deg, #060707 0%, #0d0e0c 52%, #151511 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(24px, 5vw, 72px);
}

.brand-panel {
  width: min(820px, 100%);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(16, 18, 18, 0.94), rgba(23, 25, 23, 0.86));
  border-radius: 8px;
  padding: clamp(28px, 6vw, 64px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

.mark {
  display: flex;
  gap: 8px;
  align-items: center;
  height: 44px;
  margin-bottom: 34px;
}

.mark span {
  display: block;
  width: 12px;
  border-radius: 2px;
  background: var(--green);
}

.mark span:nth-child(1) {
  height: 24px;
}

.mark span:nth-child(2) {
  height: 40px;
  background: var(--amber);
}

.mark span:nth-child(3) {
  height: 18px;
  background: var(--red);
}

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

h1 {
  margin: 0;
  font-size: clamp(3.2rem, 11vw, 7.4rem);
  line-height: 0.9;
  font-weight: 850;
  letter-spacing: 0;
}

.lede {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.65;
}

.status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.status-row span {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  border-radius: 999px;
  padding: 9px 12px;
  color: var(--text);
  font-size: 0.86rem;
}

@media (max-width: 560px) {
  .brand-panel {
    padding: 26px;
  }

  .status-row {
    display: grid;
  }
}
