:root {
  color-scheme: dark;
  --bg: #10131a;
  --bg-soft: #161b25;
  --text: #f4efe6;
  --muted: #c9c0b3;
  --quiet: #91887d;
  --line: rgba(244, 239, 230, 0.16);
  --accent: #f3c969;
  --accent-soft: rgba(243, 201, 105, 0.14);
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 18%, rgba(243, 201, 105, 0.16), transparent 30rem),
    linear-gradient(135deg, #0c0f16 0%, #151b27 48%, #211d23 100%);
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    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: 4rem 4rem;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 72%);
}

.page-shell {
  width: min(100% - 2rem, 980px);
  min-height: 100vh;
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 5rem) 0;
  display: grid;
  align-content: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.hero {
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 840px;
  margin-bottom: 1.25rem;
  font-size: clamp(2.8rem, 8vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.intro {
  max-width: 620px;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.65;
}

.status-card {
  display: flex;
  max-width: 650px;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 19, 26, 0.64);
  backdrop-filter: blur(18px);
}

.status-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.status-dot {
  flex: 0 0 auto;
  width: 0.7rem;
  height: 0.7rem;
  margin-top: 0.45rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 0.42rem var(--accent-soft);
}

.note {
  max-width: 560px;
  padding-top: clamp(1.5rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
}

.note h2 {
  margin-bottom: 0.85rem;
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.note p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 1.25rem, 980px);
  }

  h1 {
    font-size: clamp(2.6rem, 15vw, 4.6rem);
  }

  .status-card {
    padding: 0.9rem;
  }
}
