:root {
  color-scheme: dark;
  --bg: #07100f;
  --surface: #0e1b19;
  --line: #23413a;
  --text: #effbf6;
  --muted: #9fbcb2;
  --accent: #62e4b1;
  --accent-soft: rgba(98, 228, 177, 0.12);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 10%, rgba(98, 228, 177, 0.10), transparent 34rem),
    linear-gradient(160deg, #07100f 0%, #091412 60%, #050b0a 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a { color: var(--accent); text-underline-offset: 0.2em; }

.shell {
  width: min(920px, calc(100% - 36px));
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.brand {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
}

.hero, .page {
  margin: auto 0;
  padding: clamp(40px, 8vw, 88px) 0;
}

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

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3rem, 10vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.page h1 { font-size: clamp(2.8rem, 8vw, 5.4rem); }

.lead {
  max-width: 640px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  line-height: 1.65;
}

.status {
  width: fit-content;
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--accent-soft);
  color: #c9f8e6;
  font-size: 0.92rem;
}

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

.details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.details article {
  padding: 24px 0;
  display: grid;
  gap: 7px;
}

.details article + article {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.label {
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.back {
  display: inline-block;
  margin-top: 34px;
  font-weight: 700;
}

footer {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 0.88rem;
}

footer nav { display: flex; gap: 18px; }

@media (max-width: 620px) {
  .details { grid-template-columns: 1fr; }
  .details article + article {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }
  footer { align-items: flex-start; flex-direction: column; justify-content: center; }
}
