/* ── Reset ── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text-1);
  font-family: var(--font);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--indigo);
  color: #000;
}

/* ── Layout ── */

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.section { padding: 120px 0; }
.section--surface { background: var(--surface); }
.section--ruled { border-top: 1px solid var(--border); }

/* ── Mono label (the signature element) ── */

.mono {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-4);
}

.mono--indigo { color: var(--indigo); }
.mono--red { color: var(--red); }
.mono--green { color: var(--green); }
.mono--light { color: var(--text-3); }

/* ── Data type (Sora bold numbers) ── */

.data {
  font-family: var(--font);
  font-weight: 800;
  color: var(--text-1);
}

.data--xl { font-size: 64px; letter-spacing: -2px; line-height: 1; }
.data--lg { font-size: 36px; letter-spacing: -1px; line-height: 1.1; }
.data--md { font-size: 24px; line-height: 1.2; }
.data--sm { font-size: 17px; }

/* ── Body text ── */

.body { font-size: 14px; color: var(--text-2); line-height: 1.65; }
.body--lg { font-size: 16px; }
.body--sm { font-size: 12px; }
.body--mono { font-family: var(--mono); font-size: 10px; font-weight: 400; color: var(--text-4); }

/* ── Score badge ── */

.score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--text-1);
  color: var(--bg);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 800;
  border-radius: var(--r-badge);
  flex-shrink: 0;
}

.score--lg {
  width: 48px;
  height: 48px;
  font-size: 18px;
}

/* ── Tag ── */

.tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 8px;
  border-radius: var(--r-badge);
}

.tag--red { background: var(--red-surface); color: var(--red); }
.tag--indigo { background: var(--indigo-surface); color: var(--indigo); }
.tag--green { background: rgba(34, 197, 94, 0.1); color: var(--green); }
.tag--muted { background: var(--surface-alt); color: var(--text-3); border: 1px solid var(--border); }

/* ── Buttons (matching app components exactly) ── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  height: 52px;
  padding: 0 32px;
  border-radius: var(--r-button);
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn:hover { opacity: 0.85; }

.btn--brand { background: var(--indigo); color: #fff; }
.btn--primary { background: var(--text-1); color: var(--bg); }
.btn--ghost { background: transparent; color: var(--text-1); border: 1px solid var(--border); }

/* ── Reveal ── */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible { opacity: 1; transform: none; }
