:root {
  color-scheme: dark;
  --black: #000000;
  --ink: #f8fafc;
  --muted: #a7adbb;
  --line: rgba(255, 255, 255, 0.18);
  --panel: rgba(255, 255, 255, 0.075);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --yellow: #f2b705;
  --orange: #f26722;
  --blue: #2463eb;
  --font-sans: Ubuntu, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "Azeret Mono", "SFMono-Regular", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background:
    linear-gradient(120deg, rgba(242, 183, 5, 0.18), transparent 28rem),
    linear-gradient(155deg, transparent 35%, rgba(36, 99, 235, 0.22) 62%, transparent 74%),
    radial-gradient(circle at 88% 12%, rgba(242, 103, 34, 0.28), transparent 18rem),
    var(--black);
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 78%);
}

a {
  color: inherit;
}

.page-shell {
  width: min(100%, 1180px);
  min-height: 100vh;
  margin: 0 auto;
  padding: clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: clamp(32px, 6vw, 72px);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 52px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  text-decoration: none;
}

.brand img {
  width: 128px;
  height: auto;
  flex: 0 0 auto;
}

.brand span {
  font-family: var(--font-mono);
  font-size: clamp(0.8rem, 1.5vw, 0.96rem);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.topbar-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  line-height: 1.4;
  text-align: right;
  text-transform: uppercase;
}

.topbar-meta span {
  padding-left: 14px;
  border-left: 1px solid var(--line);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  align-items: end;
  gap: clamp(28px, 5vw, 72px);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow,
.detail-label {
  margin: 0 0 18px;
  color: var(--yellow);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 13ch;
  margin-bottom: 24px;
  font-size: clamp(3.4rem, 10vw, 8.8rem);
  line-height: 0.88;
  letter-spacing: 0;
}

.intro {
  max-width: 680px;
  margin-bottom: 34px;
  color: rgba(248, 250, 252, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
}

.button-primary {
  background: var(--ink);
  color: var(--black);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.08);
}

.status-panel,
.details article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.28);
}

.status-panel {
  padding: 22px;
}

.status-header {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  margin-bottom: 24px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 0 0 0 6px rgba(242, 183, 5, 0.12);
}

dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

dl div {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

dt {
  margin-bottom: 6px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
}

dd {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 1rem;
  line-height: 1.45;
}

dd a {
  color: var(--ink);
  text-decoration-color: var(--orange);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.details article {
  min-height: 184px;
  padding: 20px;
}

.details h2 {
  margin-bottom: 12px;
  font-size: 1.04rem;
  letter-spacing: 0;
}

.details p {
  margin-bottom: 0;
  color: rgba(248, 250, 252, 0.72);
  line-height: 1.6;
}

.details article:nth-child(2) .detail-label {
  color: var(--orange);
}

.details article:nth-child(3) .detail-label {
  color: #7ea2ff;
}

@media (max-width: 840px) {
  .page-shell {
    gap: 36px;
  }

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

  .topbar-meta {
    text-align: left;
  }

  .topbar-meta span {
    padding-left: 0;
    border-left: 0;
  }

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

  h1 {
    max-width: 100%;
    font-size: clamp(3rem, 14vw, 5rem);
    line-height: 0.92;
  }
}

@media (max-width: 460px) {
  .brand {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .button {
    width: 100%;
  }

  h1 {
    font-size: clamp(2.8rem, 13vw, 3.6rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
