:root {
  --bg: #0d0b12;
  --ink: #d4c9e0;
  --gold: #e8b84b;
  --purple: #9b72cf;
  --gray: #7a6e88;
  --rule: rgba(232, 184, 75, 0.2);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg); color: var(--ink); }
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.6;
  padding: 1.75rem clamp(1.5rem, 5vw, 4rem) 2rem;
  position: relative;
}
body::before {
  content: "";
  position: fixed; inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(232, 184, 75, 0.018) 0,
    rgba(232, 184, 75, 0.018) 1px,
    transparent 1px,
    transparent 4px
  );
  pointer-events: none;
  z-index: 0;
}
header, main, footer { position: relative; z-index: 1; }
a { color: var(--gold); text-decoration: none; border-bottom: 1px dotted var(--rule); transition: color 0.2s ease, border-color 0.2s ease; }
a:hover, a:focus { color: var(--ink); border-bottom-color: var(--gold); }
header {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.7;
}
header a { border-bottom: none; }
.status-chip { font-family: ui-monospace, monospace; color: var(--purple); font-size: 0.72rem; }
main { flex: 1; display: flex; flex-direction: column; justify-content: center; max-width: 44rem; margin: 0 auto; gap: 2.5rem; padding: 2rem 0; width: 100%; }
.hero { text-align: center; }
.wordmark {
  font-family: "Cinzel", Georgia, serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 8vw, 4.5rem);
  letter-spacing: 0.04em;
  color: var(--gold);
  line-height: 1.1;
}
.tagline {
  font-family: "Inter", system-ui, sans-serif;
  font-style: italic;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  margin-top: 1.25rem;
  color: var(--gray);
  letter-spacing: 0.01em;
}
.positioning p { text-align: center; max-width: 38rem; margin: 0 auto; color: var(--ink); }
.status { text-align: center; opacity: 0.85; font-size: 0.95rem; }
footer { text-align: center; font-size: 0.8rem; opacity: 0.55; padding-top: 2rem; }
.socials { margin-top: 0.5rem; font-size: 0.8rem; }
@media (max-width: 520px) {
  body { font-size: 1rem; }
  header { flex-direction: column; gap: 0.4rem; }
}
