:root {
  --bg:        #0a0704;
  --ink:       #e8d5b0;
  --gold:      #d97706;
  --pale-gold: #fde68a;
  --gray:      #9a7f5c;
  --rule:      rgba(217, 119, 6, 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: "JetBrains Mono", ui-monospace, "Menlo", monospace;
  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(217, 119, 6, 0.025) 0,
    rgba(217, 119, 6, 0.025) 1px,
    transparent 1px,
    transparent 3px
  );
  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); }
a:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
header {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.7;
}
header a { border-bottom: none; }
.status-chip { color: var(--pale-gold); 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; }
@keyframes gem-pulse {
  0%, 100% { opacity: 1; text-shadow: 0 0 8px rgba(217, 119, 6, 0.4); }
  50%       { opacity: 0.75; text-shadow: 0 0 20px rgba(217, 119, 6, 0.8), 0 0 40px rgba(217, 119, 6, 0.3); }
}
.wordmark {
  font-weight: 700;
  font-size: clamp(1.9rem, 6vw, 3.25rem);
  letter-spacing: -0.01em;
  color: var(--gold);
  line-height: 1.1;
  animation: gem-pulse 3s ease-in-out infinite;
}
.bracket { color: var(--pale-gold); font-weight: 500; }
.tagline {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  margin-top: 1.25rem;
  color: var(--gray);
  letter-spacing: 0.02em;
}
.tagline::before { content: "// "; color: var(--pale-gold); }
.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.78rem; opacity: 0.55; padding-top: 2rem; }
.socials { margin-top: 0.5rem; font-size: 0.78rem; }
@media (max-width: 520px) {
  body { font-size: 0.95rem; }
  header { flex-direction: column; gap: 0.4rem; }
}
