/* Syntropic Capital — extreme minimalism */

:root {
  --bg: #080b12;
  --ink: #e8e4d8;
  --muted: #8a8678;
  --faint: #4a4840;
  --gold: #c9a84c;
}

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

html, body { height: 100%; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'IBM Plex Sans', -apple-system, sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

/* background system motif */
.field {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.field svg { width: 100%; height: 100%; }

main {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 48px clamp(28px, 7vw, 96px);
}

/* wordmark */
.mark {
  display: flex;
  align-items: center;
  gap: 14px;
}
.ring {
  width: 22px; height: 22px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.ring::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.55;
}
.wordmark {
  font-size: 12px;
  letter-spacing: 0.34em;
  color: var(--ink);
  text-decoration: none;
}

/* center statement */
.center {
  max-width: 720px;
  animation: rise 1.1s ease both;
}
h1 {
  font-family: 'Spectral', Georgia, serif;
  font-weight: 200;
  font-size: clamp(34px, 5.2vw, 58px);
  line-height: 1.18;
  letter-spacing: 0.005em;
}
h1 em {
  font-style: italic;
  color: var(--gold);
}
.sub {
  margin-top: 28px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* footer */
footer nav {
  display: flex;
  gap: 14px;
  align-items: baseline;
  margin-bottom: 10px;
}
footer a {
  color: var(--muted);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.25s;
}
footer a:hover { color: var(--gold); }
.sep { color: var(--faint); }
.copyright {
  font-size: 11px;
  color: var(--faint);
  letter-spacing: 0.06em;
}

/* disclaimer page */
body.page main.doc {
  justify-content: flex-start;
  gap: 64px;
  max-width: 860px;
}
.doc-title {
  font-family: 'Spectral', Georgia, serif;
  font-weight: 300;
  font-size: 30px;
  margin-bottom: 32px;
}
article p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 22px;
  max-width: 640px;
}
body.page footer { margin-top: auto; }

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

@media (max-width: 600px) {
  main { padding: 36px 24px; }
}
