:root {
  --bg: #0b0b0c;
  --fg: #e8e6e1;
  --dim: #888683;
  --accent: #d9b46a;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  height: 100%;
  background: var(--bg);
  color: var(--fg);
  font-family: ui-monospace, "SF Mono", "JetBrains Mono", "Cascadia Mono", Menlo, Consolas, monospace;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body {
  display: grid;
  place-items: center;
  padding: 2rem;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  max-width: 32rem;
}

.glyph {
  width: 9rem;
  height: 9rem;
  color: var(--accent);
}

.glyph .ring { transform-origin: center; transform-box: fill-box; }
.glyph .r1 { animation: spin 24s linear infinite; }
.glyph .r2 { animation: spin 16s linear infinite reverse; }
.glyph .r3 { animation: spin 32s linear infinite; }

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .glyph .ring { animation: none; }
}

h1 {
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.roles {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.roles p {
  color: var(--fg);
  font-size: 0.95rem;
  margin: 0;
}

.roles hr {
  width: 2.25rem;
  height: 1px;
  border: 0;
  background: var(--accent);
  margin: 0;
  opacity: 0.85;
}

.sub {
  color: var(--dim);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

a {
  color: var(--fg);
  text-decoration: none;
  border-bottom: 1px solid var(--dim);
  padding-bottom: 1px;
  transition: color 120ms ease, border-color 120ms ease;
}

a:hover, a:focus-visible {
  color: var(--accent);
  border-color: var(--accent);
  outline: none;
}
