/* ==========================================================
   OMNIX// — payouts.css  (FILE 04 — THE LEDGER)
   Settlement table, climbing schedule ladder, trust band.
   ========================================================== */

/* ---------- RAILS — settlement table ---------- */
.rails { max-width: var(--container); margin-inline: auto; padding: clamp(48px, 8vw, 96px) var(--pad-x) clamp(64px, 10vw, 120px); }
.rails__h { margin-bottom: var(--s-6); }
.rails-table { width: 100%; border-collapse: collapse; font-variant-numeric: tabular-nums; }
.rails-table thead th {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--mist);
  font-weight: 500;
  text-align: left;
  padding: 14px var(--s-4);
  border-bottom: 1px solid var(--line-2);
}
.rails-table tbody th, .rails-table tbody td {
  padding: var(--s-5) var(--s-4);
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  text-align: left;
}
.rail { width: 38%; }
.rail__name { display: block; font-family: var(--serif); font-variation-settings: 'opsz' 28, 'wght' 400; font-size: 1.4rem; color: var(--paper); }
.rail__desc { display: block; margin-top: 6px; font-size: 0.85rem; line-height: 1.5; color: var(--mist); max-width: 46ch; font-weight: 400; }
.rails-table tbody td { font-family: var(--mono); color: var(--bone); font-size: 0.9rem; }
.rails-table tbody tr { transition: background var(--dur-fast) var(--ease); }
.rails-table tbody tr:hover { background: var(--ink-2); }

@media (max-width: 720px) {
  .rails-table thead { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
  .rails-table, .rails-table tbody, .rails-table tr, .rails-table th, .rails-table td { display: block; width: auto; }
  .rails-table tr { border: 1px solid var(--line); border-radius: 8px; padding: var(--s-5); margin-bottom: var(--s-4); }
  .rails-table tbody th, .rails-table tbody td { border: 0; padding: 5px 0; }
  .rail { width: auto; margin-bottom: var(--s-3); }
  .rails-table tbody td { display: flex; justify-content: space-between; gap: var(--s-4); }
  .rails-table tbody td::before { content: attr(data-label); font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--mist); }
}

/* ---------- SCHEDULE — climbing ladder ---------- */
.schedule { max-width: var(--container); margin-inline: auto; padding: clamp(64px, 10vw, 140px) var(--pad-x); border-top: 1px solid var(--line); }
.schedule__head { margin-bottom: var(--s-8); max-width: 640px; }
.schedule__head .file-label { margin-bottom: var(--s-5); }
.schedule__head .lede { margin-top: var(--s-5); }
.ladder { list-style: none; }
.ladder__step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--s-4);
  padding: var(--s-6) var(--s-5);
  border-top: 1px solid var(--line);
  border-left: 2px solid var(--line);
  transition: border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.ladder__step:hover { border-left-color: var(--spot); }
.ladder__stamp { font-family: var(--mono); font-weight: 700; color: var(--spot); font-size: 13px; letter-spacing: 0.12em; padding-top: 4px; }
.ladder__body h3 { margin-bottom: var(--s-3); }
.ladder__body p { color: var(--mist); }
.ladder__step--vip { background: var(--spot-dim); border-left-color: var(--spot); }
@media (min-width: 760px) {
  .ladder__body { display: grid; grid-template-columns: minmax(10rem, 1fr) 2fr; gap: var(--s-6); align-items: baseline; }
  .ladder__step:nth-child(2) { margin-left: 32px; }
  .ladder__step:nth-child(3) { margin-left: 64px; }
  .ladder__step:nth-child(4) { margin-left: 96px; }
}

/* ---------- STUFF WE DON'T DO — trust band ---------- */
.nope { max-width: var(--container); margin-inline: auto; padding: clamp(64px, 10vw, 140px) var(--pad-x); border-top: 1px solid var(--line); }
.nope > .file-label { margin-bottom: var(--s-6); }
.nope__grid { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.nope__cell { background: var(--ink); padding: clamp(28px, 4vw, 44px) clamp(20px, 3vw, 32px); }
.nope__stmt { font-family: var(--serif); font-variation-settings: 'opsz' 72, 'wght' 400; font-size: clamp(1.55rem, 2.6vw, 2.1rem); line-height: 1.06; color: var(--paper); margin-bottom: var(--s-4); }
.nope__stmt em { color: var(--spot); font-style: italic; font-variation-settings: 'opsz' 72, 'wght' 400; }
.nope__sub { font-size: 0.85rem; line-height: 1.55; color: var(--mist); }
@media (min-width: 560px) { .nope__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .nope__grid { grid-template-columns: repeat(4, 1fr); } }

/* ---------- CLOSING CTA (sign-off) ---------- */
.signoff { position: relative; text-align: center; padding: clamp(80px, 13vw, 180px) var(--pad-x); border-top: 1px solid var(--line); overflow: hidden; }
.signoff__bar { position: absolute; top: 0; left: 0; right: 0; height: 6px; background: var(--spot); }
.signoff__title { margin: 0 0 var(--s-6); }
.signoff__title em { color: var(--spot); }
.signoff__sub { max-width: 44ch; margin: 0 auto var(--s-7); color: var(--bone); font-size: var(--fs-read); }
.signoff .btn { margin-inline: auto; }
