/* Okeli Yazboz — site styles. Tokens mirror design/tokens.css (DESIGN.md §9). */

:root {
  --felt-deep: #08231a;
  --felt: #0d3526;
  --surface-1: #123528;
  --surface-2: #184231;
  --border-hairline: rgba(132, 188, 158, 0.16);
  --gold-400: #e6c66a;
  --gold-600: #b9862f;
  --text-hi: #ffffff;
  --text-cream: #f1e8cf;
  --text-muted: #8aa99a;
  --r-md: 12px;
  --r-lg: 16px;
  --r-pill: 999px;
  --font-ui: -apple-system, BlinkMacSystemFont, "SF Pro Text", Inter, system-ui, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-ui);
  background: radial-gradient(120% 90% at 50% 0%, var(--felt) 0%, var(--felt-deep) 70%);
  background-attachment: fixed;
  color: var(--text-cream);
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}

.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 20px 80px;
}

header.site {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 40px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-hi);
  letter-spacing: -0.01em;
  text-decoration: none;
}

.brand span {
  color: var(--gold-400);
}

.tag {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

h1 {
  font-size: clamp(28px, 6vw, 40px);
  line-height: 1.15;
  color: var(--text-hi);
  margin: 0 0 16px;
}

h2 {
  font-size: 20px;
  color: var(--gold-400);
  margin: 40px 0 12px;
}

h3 {
  font-size: 16px;
  color: var(--text-hi);
  margin: 24px 0 8px;
}

p,
li {
  color: var(--text-cream);
}

.lede {
  font-size: 18px;
  color: var(--text-muted);
}

a {
  color: var(--gold-400);
}

.card {
  background: var(--surface-1);
  border: 1px solid var(--border-hairline);
  border-radius: var(--r-lg);
  padding: 20px 22px;
  margin: 20px 0;
}

.features {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 12px;
}

.features li {
  background: var(--surface-1);
  border: 1px solid var(--border-hairline);
  border-radius: var(--r-md);
  padding: 14px 16px;
}

.features strong {
  color: var(--text-hi);
  display: block;
}

.cta {
  display: inline-block;
  margin-top: 28px;
  padding: 12px 24px;
  border-radius: var(--r-pill);
  background: linear-gradient(180deg, #f6dd86 0%, #e3bd5b 48%, #c79636 100%);
  color: #46330b;
  font-weight: 700;
  text-decoration: none;
}

.profile {
  display: flex;
  align-items: center;
  gap: 16px;
}

.avatar {
  width: 64px;
  height: 64px;
  border-radius: var(--r-pill);
  background: var(--surface-2);
  border: 2px solid var(--gold-600);
  display: grid;
  place-items: center;
  font-size: 26px;
  font-weight: 700;
  color: var(--gold-400);
  flex: none;
}

.muted {
  color: var(--text-muted);
  font-size: 14px;
}

footer.site {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--border-hairline);
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-variant-numeric: tabular-nums;
}

th,
td {
  text-align: left;
  padding: 8px 10px;
  border-bottom: 1px solid var(--border-hairline);
}

th {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
