:root {
  --bg: #07080a;
  --ink: #eceae4;
  --muted: #9a978e;
  --line: #1c1e22;
  --panel: #0e1013;
  --accent: #e8e6e1;
  font-family: Inter, system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(900px 420px at 80% -10%, #1a1c22 0%, transparent 55%),
    var(--bg);
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 7vw;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-family: Syne, sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
}

nav {
  display: flex;
  gap: 28px;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
}

nav a:hover {
  color: var(--ink);
}

main {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 7vw 80px;
}

.hero {
  padding: 14vh 0 10vh;
}

.kicker {
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  font-size: 0.78rem;
  margin: 0 0 18px;
}

h1,
h2 {
  font-family: Syne, sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0;
}

h1 {
  font-size: clamp(3rem, 9vw, 6.4rem);
  line-height: 0.92;
}

.lede {
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.6;
  margin: 28px 0 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 0.95rem;
  font-weight: 500;
}

.btn.primary {
  background: var(--accent);
  color: #0b0c0e;
}

.btn.ghost {
  color: var(--ink);
  border: 1px solid var(--line);
}

.panel {
  border-top: 1px solid var(--line);
  padding: 72px 0;
}

h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.panel p {
  color: var(--muted);
  line-height: 1.7;
  max-width: 40rem;
}

.traits {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}

.traits li {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 20px;
  min-height: 120px;
}

.traits strong {
  display: block;
  font-family: Syne, sans-serif;
  margin-bottom: 8px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin: 0;
}

.stats div {
  border: 1px solid var(--line);
  padding: 20px;
  background: var(--panel);
}

dt {
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

dd {
  margin: 8px 0 0;
  font-family: Inter, sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.note,
.short {
  color: var(--muted);
  font-size: 0.92rem;
}

blockquote {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.65;
  max-width: 40rem;
}

footer {
  display: flex;
  justify-content: space-between;
  padding: 24px 7vw 40px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
}

@media (max-width: 640px) {
  nav {
    gap: 16px;
  }

  .hero {
    padding-top: 10vh;
  }
}
