:root {
  --bg:       #0e0d0b;
  --surface:  #161410;
  --border:   #2a2620;
  --text:     #d4cfc5;
  --muted:    #6b6560;
  --accent:   #c8a96e;
  --accent2:  #7a9e7e;
  --ff-serif: Georgia, "Times New Roman", serif;
  --ff-mono:  ui-monospace, "Cascadia Code", "Courier New", monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-mono);
  font-weight: 300;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

a { color: var(--accent); }
a:hover { color: var(--accent2); }
code { font-size: 0.85em; color: var(--muted); }

.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 180px;
  opacity: 0.35;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2.5rem;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0;
  background: rgba(14,13,11,0.88);
  backdrop-filter: blur(8px);
  z-index: 10;
}

.site-label {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--accent);
  letter-spacing: 0.04em;
}

.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--muted);
  transition: background 0.6s ease;
}
.status-dot.active { background: var(--accent2); box-shadow: 0 0 6px var(--accent2); }

main { flex: 1; padding: 4rem 2.5rem 3rem; max-width: 860px; }

.hero { margin-bottom: 5rem; }

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: fadeUp 0.6s 0.1s ease forwards;
}

h1 {
  font-family: var(--ff-serif);
  font-size: clamp(3.2rem, 8vw, 6rem);
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 1.6rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.25s ease forwards;
}

h1 em { color: var(--accent); font-style: italic; }

.sub {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 42ch;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.7s 0.4s ease forwards;
}

.probe {
  opacity: 0;
  animation: fadeUp 0.7s 0.55s ease forwards;
}

.probe h2 {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

table { width: 100%; border-collapse: collapse; font-size: 0.8rem; }

td {
  padding: 0.55rem 0.8rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

td:first-child { color: var(--muted); width: 38%; white-space: nowrap; }
td:last-child  { color: var(--accent2); word-break: break-all; }
tr:last-child td { border-bottom: none; }

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
  header, main, footer { padding-left: 1.25rem; padding-right: 1.25rem; }
  h1 { font-size: 2.8rem; }
}
