:root {
  color-scheme: dark;
  --bg: #080b0c;
  --surface: rgba(19, 25, 24, 0.82);
  --line: rgba(232, 239, 230, 0.14);
  --text: #f3f5ef;
  --muted: #b7c0b8;
  --faint: #7f887f;
  --amber: #f4b847;
  --green: #72d29a;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 72% 10%, rgba(244, 184, 71, 0.15), transparent 30rem),
    linear-gradient(145deg, #080b0c 0%, #111715 52%, #080b0c 100%);
  color: var(--text);
}

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

a {
  color: inherit;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hold-page {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 44px 20px;
}

.hold-page.compact {
  min-height: 72vh;
}

.hold-panel {
  width: min(980px, 100%);
  padding: clamp(28px, 6vw, 64px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 1.12rem;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--amber), var(--green));
  color: #0b0d0d;
}

.brand-mark svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
  stroke: none;
}

.eyebrow {
  margin: clamp(42px, 7vw, 78px) 0 0;
  color: var(--amber);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 14px 0 0;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.lead {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.62;
}

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

.status-grid article {
  min-height: 160px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.status-grid span {
  color: var(--green);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.74rem;
  font-weight: 700;
}

.status-grid strong {
  display: block;
  margin-top: 20px;
  font-size: 1.05rem;
}

.status-grid p,
.small-note {
  color: var(--muted);
  line-height: 1.55;
}

.small-note {
  margin: 34px 0 0;
  font-size: 0.92rem;
}

.return-link {
  display: inline-flex;
  margin-top: 30px;
  color: var(--amber);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 760px) {
  .hold-page {
    align-items: start;
    padding: 18px 14px;
  }

  .hold-panel {
    padding: 24px 18px;
  }

  .eyebrow {
    margin-top: 42px;
  }

  h1 {
    max-width: 9ch;
    font-size: clamp(2.75rem, 14vw, 4.1rem);
    line-height: 0.98;
  }

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

  .status-grid article {
    min-height: auto;
  }
}
