/* ============================================================
   TRIPLE SEQUENCE HOLDINGS LLC
   Design System — Light Institutional / Terminal-Precision
   ============================================================ */

/* -------- Design Tokens -------- */
:root {
  /* Surfaces */
  --bg:            #FFFFFF;
  --bg-alt:        #F6F6F3;
  --bg-elevated:   #FBFBF9;
  --bg-ink:        #0E0F0E;

  /* Ink */
  --ink:           #111312;
  --ink-secondary: #45494A;
  --ink-muted:     #8A8E8C;
  --ink-faint:     #B8BBB8;
  --on-ink:        #F4F5F3;

  /* Lines */
  --border:        #E5E5E0;
  --border-strong: #CFCFC8;
  --border-ink:    #232525;

  /* Accent — deep institutional teal, used sparingly */
  --accent:        #0E4F47;
  --accent-bright: #15665B;
  --accent-deep:   #0A3A34;
  --accent-soft:   rgba(14, 79, 71, 0.06);
  --accent-line:   rgba(14, 79, 71, 0.18);

  /* Type */
  --font-mono: 'Space Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Metrics */
  --maxw: 1200px;
  --pad: clamp(20px, 5vw, 64px);
  --radius: 2px;
  --header-h: 72px;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* -------- Reset -------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--accent); color: #fff; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: var(--border-strong); }
::-webkit-scrollbar-thumb:hover { background: var(--ink-muted); }

/* -------- Layout helpers -------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
.container-wide { max-width: 1360px; }
.section { padding-block: clamp(64px, 10vw, 128px); position: relative; }
.section--tight { padding-block: clamp(48px, 7vw, 88px); }
.section--alt { background: var(--bg-alt); }
.section--ink { background: var(--bg-ink); color: var(--on-ink); }
.section--bordered { border-top: 1px solid var(--border); }

/* -------- Type system -------- */
.mono { font-family: var(--font-mono); }

.label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.label::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}
.label--plain::before { display: none; }
.label--muted { color: var(--ink-muted); }
.label--muted::before { background: var(--ink-faint); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

h1, h2, h3, h4 {
  font-family: var(--font-mono);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.08;
  color: var(--ink);
}
.display {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  letter-spacing: -0.01em;
  line-height: 1.02;
}
.h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
.h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); }
.h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); letter-spacing: 0.04em; }
.h4 { font-size: 1rem; letter-spacing: 0.08em; }

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.6;
  color: var(--ink-secondary);
  font-weight: 400;
  max-width: 60ch;
}
.body-text { color: var(--ink-secondary); font-size: 1rem; line-height: 1.75; }
.body-text + .body-text { margin-top: 1.1em; }
.text-accent { color: var(--accent); }
.text-muted { color: var(--ink-muted); }

/* Section header block */
.section-head { max-width: 760px; margin-bottom: clamp(40px, 6vw, 72px); }
.section-head .label { margin-bottom: 22px; }
.section-head .h2 { margin-bottom: 22px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .label { justify-content: center; }

/* -------- Buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 15px 26px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.btn .arw { transition: transform 0.25s var(--ease); }
.btn:hover .arw { transform: translateX(4px); }
.btn-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-deep); border-color: var(--accent-deep); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--border-strong); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-ghost { background: transparent; color: var(--ink-secondary); padding-inline: 0; }
.btn-ghost:hover { color: var(--accent); }
.btn-on-ink { background: #fff; color: var(--bg-ink); border-color: #fff; }
.btn-on-ink:hover { background: transparent; color: #fff; }
.btn-lg { padding: 18px 32px; font-size: 13px; }

/* -------- Header / Nav -------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.site-header.scrolled { border-bottom-color: var(--border); background: rgba(255, 255, 255, 0.94); }
.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 14px; }
.brand-mark {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 5px 8px;
  border-radius: var(--radius);
  line-height: 1;
}
.brand-word {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.15;
}
.brand-word span { display: block; color: var(--ink-muted); font-weight: 400; letter-spacing: 0.22em; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-secondary);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 2px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--accent); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-cta {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--border-strong);
  padding: 10px 18px;
  border-radius: var(--radius);
  transition: all 0.2s;
}
.nav-cta:hover { border-color: var(--accent); color: var(--accent); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.nav-toggle span { width: 22px; height: 1.5px; background: var(--ink); transition: 0.3s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--bg);
  z-index: 99;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  padding: 32px var(--pad);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--font-mono);
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-menu a .idx { color: var(--ink-faint); font-size: 11px; }
.mobile-menu a:hover { color: var(--accent); }

/* -------- Hero -------- */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(60px, 10vw, 120px));
  padding-bottom: clamp(60px, 10vw, 120px);
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 70% 30%, #000 0%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 70% at 70% 30%, #000 0%, transparent 75%);
  opacity: 0.55;
  pointer-events: none;
}
.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 32px;
}
.status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 var(--accent-line);
  animation: pulse-ring 2.4s infinite;
}
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(14,79,71,0.35); }
  70% { box-shadow: 0 0 0 9px rgba(14,79,71,0); }
  100% { box-shadow: 0 0 0 0 rgba(14,79,71,0); }
}
.hero-title { margin-bottom: 28px; }
.hero-tagline { max-width: 56ch; margin-bottom: 40px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero-ref {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--ink-faint);
  text-transform: uppercase;
}

/* Corner frame marks */
.frame { position: relative; }
.frame::before, .frame::after {
  content: "";
  position: absolute;
  width: 14px; height: 14px;
  border-color: var(--border-strong);
  border-style: solid;
}
.frame::before { top: 0; left: 0; border-width: 1px 0 0 1px; }
.frame::after { bottom: 0; right: 0; border-width: 0 1px 1px 0; }

/* -------- Stats / metrics -------- */
.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  border: 1px solid var(--border);
  background: var(--bg);
}
.metric { padding: 32px 28px; border-right: 1px solid var(--border); }
.metric:last-child { border-right: none; }
.metric-num {
  font-family: var(--font-mono);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 12px;
}
.metric-num span { color: var(--accent); }
.metric-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  line-height: 1.5;
}

/* -------- Grids -------- */
.grid { display: grid; gap: 1px; background: var(--border); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.cols { display: grid; gap: clamp(24px, 4vw, 56px); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 88px); align-items: center; }
.split--narrow-left { grid-template-columns: 0.85fr 1.15fr; }

/* -------- Cards -------- */
.card {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: clamp(28px, 3.5vw, 40px);
  transition: border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
  position: relative;
}
.card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -28px rgba(17,19,18,0.28);
}
.card-index {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 24px;
  display: block;
}
.card .h3 { margin-bottom: 14px; }
.card-body { color: var(--ink-secondary); font-size: 0.95rem; line-height: 1.7; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 22px;
}
.card-link .arw { transition: transform 0.25s var(--ease); }
.card:hover .card-link .arw { transform: translateX(4px); }

/* Value blocks (bordered grid that shares lines) */
.value-grid { border: 1px solid var(--border); display: grid; }
.value-grid.cols-2-grid { grid-template-columns: repeat(2, 1fr); }
.value-grid.cols-4-grid { grid-template-columns: repeat(4, 1fr); }
.value-cell {
  padding: clamp(28px, 3vw, 44px);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.value-cell:hover { background: var(--bg-elevated); }
.value-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink-faint);
  display: block;
  margin-bottom: 28px;
}
.value-cell .h3 { margin-bottom: 14px; }

/* -------- Feature / definition lists -------- */
.deflist { border-top: 1px solid var(--border); }
.def-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.def-key {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding-top: 2px;
}
.def-val { color: var(--ink); font-size: 0.98rem; line-height: 1.65; }

.feature-list { list-style: none; display: grid; gap: 18px; }
.feature-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-secondary);
  line-height: 1.65;
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 8px;
  border: 1px solid var(--accent);
  background: var(--accent-soft);
}
.feature-list li strong { color: var(--ink); font-weight: 600; }

/* Checklist (governance / compliance) */
.checklist { list-style: none; display: grid; gap: 16px; }
.checklist li {
  position: relative;
  padding-left: 32px;
  color: var(--ink-secondary);
  line-height: 1.6;
}
.checklist li::before {
  content: "→";
  position: absolute;
  left: 0; top: 0;
  font-family: var(--font-mono);
  color: var(--accent);
  font-weight: 700;
}

/* -------- Timeline -------- */
.timeline { border-left: 1px solid var(--border-strong); margin-left: 6px; }
.timeline-item { position: relative; padding: 0 0 44px 36px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -5px; top: 4px;
  width: 9px; height: 9px;
  background: var(--accent);
  border-radius: 50%;
}
.timeline-year {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 10px;
}
.timeline-item .h4 { margin-bottom: 8px; }
.timeline-item p { color: var(--ink-secondary); font-size: 0.95rem; }

/* -------- Team -------- */
.team-card { background: var(--bg); border: 1px solid var(--border); transition: border-color .3s; }
.team-card:hover { border-color: var(--border-strong); }
.avatar {
  aspect-ratio: 4 / 5;
  background:
    repeating-linear-gradient(45deg, var(--bg-alt) 0 10px, var(--bg-elevated) 10px 20px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.avatar-monogram {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink-faint);
  letter-spacing: 0.05em;
}
.team-meta { padding: 24px; }
.team-role {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.team-name { font-size: 1.05rem; letter-spacing: 0.06em; margin-bottom: 8px; }
.team-card p { color: var(--ink-secondary); font-size: 0.9rem; }
.team-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  border: 1px solid var(--border);
  padding: 4px 8px;
  display: inline-block;
  margin-top: 14px;
}

/* -------- Notices / callouts -------- */
.callout {
  border: 1px solid var(--border);
  border-left: 2px solid var(--accent);
  background: var(--bg-elevated);
  padding: 28px 32px;
}
.callout .label { margin-bottom: 14px; }
.callout p { color: var(--ink-secondary); }
.notice {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  line-height: 1.7;
  color: var(--ink-muted);
  text-transform: uppercase;
  border: 1px solid var(--border);
  padding: 20px 24px;
  background: var(--bg-alt);
}

/* Tag / badge */
.tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent-line);
  background: var(--accent-soft);
  padding: 5px 10px;
  border-radius: var(--radius);
  display: inline-block;
}
.tag--muted { color: var(--ink-muted); border-color: var(--border); background: var(--bg-alt); }

/* -------- Page header (interior pages) -------- */
.page-head {
  padding-top: calc(var(--header-h) + clamp(56px, 8vw, 96px));
  padding-bottom: clamp(40px, 6vw, 72px);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.crumb {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 28px;
  display: flex;
  gap: 10px;
}
.crumb a:hover { color: var(--accent); }
.crumb .sep { color: var(--ink-faint); }
.page-head .display, .page-head .h1 { margin-bottom: 22px; }
.page-head .lede { margin-top: 4px; }

/* -------- Media / figures -------- */
.figure { border: 1px solid var(--border); overflow: hidden; background: var(--bg-alt); }
.figure img { width: 100%; height: 100%; object-fit: cover; display: block; }
.figure--tall { aspect-ratio: 4 / 5; }
.figure--wide { aspect-ratio: 16 / 9; }
.figure-cap {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding: 14px 18px;
  border-top: 1px solid var(--border);
  background: var(--bg);
  display: flex;
  justify-content: space-between;
}

/* -------- Forms -------- */
.form { display: grid; gap: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { display: grid; gap: 8px; }
.field label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-secondary);
}
.field input, .field textarea, .field select {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 14px 16px;
  transition: border-color 0.2s;
  width: 100%;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--accent);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
.form-note { font-size: 0.82rem; color: var(--ink-muted); line-height: 1.6; }
.form-status {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 14px 18px;
  border: 1px solid var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
  display: none;
}
.form-status.show { display: block; }

/* Department / contact cards */
.contact-card { border: 1px solid var(--border); padding: 28px 30px; transition: border-color .3s; }
.contact-card:hover { border-color: var(--border-strong); }
.contact-card .team-role { margin-bottom: 16px; }
.contact-card a { color: var(--ink); border-bottom: 1px solid var(--border-strong); transition: color .2s, border-color .2s; }
.contact-card a:hover { color: var(--accent); border-color: var(--accent); }

/* -------- Newsroom -------- */
.news-item {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 32px;
  align-items: start;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.3s var(--ease);
}
.news-item:hover { padding-left: 12px; }
.news-date {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding-top: 4px;
}
.news-body .h3 { margin-bottom: 12px; font-size: 1.2rem; }
.news-body p { color: var(--ink-secondary); font-size: 0.95rem; max-width: 60ch; }
.news-cat { align-self: start; }

/* -------- Legal / prose -------- */
.legal { max-width: 760px; }
.legal h2 {
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  margin: 48px 0 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.legal h2:first-of-type { margin-top: 0; border-top: none; padding-top: 0; }
.legal h3 { font-size: 0.85rem; letter-spacing: 0.1em; margin: 28px 0 12px; color: var(--ink-secondary); }
.legal p { color: var(--ink-secondary); margin-bottom: 16px; line-height: 1.8; font-size: 0.97rem; }
.legal ul, .legal ol { color: var(--ink-secondary); margin: 0 0 16px 0; padding-left: 22px; line-height: 1.8; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--accent); border-bottom: 1px solid var(--accent-line); }
.legal strong { color: var(--ink); font-weight: 600; }
.legal-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

/* -------- CTA band -------- */
.cta-band { text-align: center; }
.cta-band .display, .cta-band .h1 { margin-bottom: 28px; }
.cta-band .lede { margin-inline: auto; margin-bottom: 40px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.section--ink .label { color: var(--accent-bright); }
.section--ink .label::before { background: var(--accent-bright); }
.section--ink h1, .section--ink h2, .section--ink h3 { color: var(--on-ink); }
.section--ink .lede, .section--ink .body-text { color: rgba(244,245,243,0.7); }
.section--ink .metric { border-color: var(--border-ink); }
.section--ink .metrics { border-color: var(--border-ink); }
.section--ink .metric-num { color: var(--on-ink); }
.section--ink .metric-label { color: rgba(244,245,243,0.5); }

/* -------- Footer -------- */
.site-footer { background: var(--bg-ink); color: var(--on-ink); padding-top: clamp(64px, 9vw, 104px); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 64px; border-bottom: 1px solid var(--border-ink); }
.footer-brand .brand-mark { color: #fff; border-color: rgba(255,255,255,0.4); }
.footer-brand .brand-word { color: #fff; }
.footer-brand .brand-word span { color: rgba(244,245,243,0.5); }
.footer-about { color: rgba(244,245,243,0.6); font-size: 0.9rem; line-height: 1.7; margin-top: 24px; max-width: 38ch; }
.footer-col h4 { font-size: 11px; letter-spacing: 0.18em; color: rgba(244,245,243,0.5); margin-bottom: 22px; }
.footer-col ul { list-style: none; display: grid; gap: 13px; }
.footer-col a {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(244,245,243,0.75);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent-bright); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-block: 32px;
}
.footer-legal {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: rgba(244,245,243,0.45);
  text-transform: uppercase;
  line-height: 1.7;
}
.footer-legal a { color: rgba(244,245,243,0.7); }
.footer-legal a:hover { color: var(--accent-bright); }
.footer-disclaimer {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: rgba(244,245,243,0.4);
  line-height: 1.8;
  padding-block: 28px;
  border-top: 1px solid var(--border-ink);
  max-width: 90ch;
}

/* -------- Scroll reveal -------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .status-dot { animation: none; }
}

/* -------- Utilities -------- */
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 16px; } .mt-2 { margin-top: 28px; } .mt-3 { margin-top: 44px; } .mt-4 { margin-top: 64px; }
.mb-2 { margin-bottom: 28px; } .mb-3 { margin-bottom: 44px; }
.maxw-sm { max-width: 56ch; } .maxw-md { max-width: 68ch; }
.center { text-align: center; }
.flex-between { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 24px; }
.divider { height: 1px; background: var(--border); border: none; margin-block: clamp(48px, 7vw, 88px); }

/* -------- Responsive -------- */
@media (max-width: 980px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .value-grid.cols-4-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  :root { --header-h: 64px; }
  .split, .split--narrow-left, .cols-2, .cols-3 { grid-template-columns: 1fr; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .value-grid.cols-2-grid, .value-grid.cols-4-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .def-row { grid-template-columns: 1fr; gap: 6px; }
  .news-item { grid-template-columns: 1fr; gap: 12px; }
  .news-cat { order: -1; }
  .metric { border-right: none; border-bottom: 1px solid var(--border); }
  .metric:last-child { border-bottom: none; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
