/* ============================================================
   StatusRollup landing — page styles.
   Loads after colors_and_type.css.
   ============================================================ */

/* ---------- Layout primitives ---------- */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- Top nav ---------- */
/* Opaque on purpose. Glass nav is the default SaaS reflex; restraint reads
   more confident here, and the hairline rule is the only separator we need. */
.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
}
.nav-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.nav-wm {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.025em;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
}
.nav-wm em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent-ink);
}

.nav-links {
  display: flex;
  gap: clamp(1rem, 2.5vw, 2rem);
  font-size: 14px;
  color: var(--ink-soft);
}
.nav-links a:hover {
  color: var(--ink);
}

.nav-cta {
  display: flex;
  gap: 14px;
  align-items: center;
}
.nav-signin {
  font-size: 14px;
  color: var(--ink-soft);
}
.nav-signin:hover {
  color: var(--ink);
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 15px;
  padding: 12px 18px;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast), transform
    var(--t-fast);
  white-space: nowrap;
}
.btn-sm {
  font-size: 13px;
  padding: 8px 14px;
}
.btn-primary {
  background: var(--accent);
  color: var(--surface);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-ink);
  border-color: var(--accent-ink);
}
.btn-primary .arr {
  transition: transform var(--t-fast);
}
.btn-primary:hover .arr {
  transform: translateX(3px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule);
}
.btn-ghost:hover {
  border-color: var(--ink);
}

/* ---------- Hero ---------- */
.hero {
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: start;
}
.hero-grid[data-layout="centered"] {
  grid-template-columns: 1fr;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.hero-grid[data-layout="centered"] .eyebrow {
  justify-content: center;
}
.hero-grid[data-layout="centered"] .hero-bullets {
  display: none;
}
.hero-grid[data-layout="centered"] .hero-rail {
  display: none;
}

.hero-copy .display {
  margin-top: 22px;
}
.hero-copy .deck {
  margin-top: 22px;
  max-width: 36em;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 36px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-soft);
}
.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hb-tick {
  width: 14px;
  height: 1px;
  background: var(--accent);
  flex: 0 0 auto;
}

.hero-rail-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ---------- Mini status panel: 3-tile rollup ---------- */
.ministatus {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ms-tile-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 520px) {
  .ms-tile-row {
    grid-template-columns: 1fr;
  }
}

.ms-tile {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  padding: 14px 16px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.ms-tile--full {
  padding: 18px 20px;
}
/* Flat tinted fills (no gradients). The whole tile carries the status color
   at low chroma; the dot and headline carry the readable signal. */
.ms-tile--ok {
  background: color-mix(in oklch, var(--st-up) 5%, var(--surface));
  border-color: color-mix(in oklch, var(--st-up) 35%, var(--border));
}
.ms-tile--warn {
  background: color-mix(in oklch, var(--st-degraded) 8%, var(--surface));
  border-color: color-mix(in oklch, var(--st-degraded) 45%, var(--border));
}

.ms-tile-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.ms-tile-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.ms-tile-time {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.ms-tile-time .mono {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink);
}
.ms-tile-tz {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.ms-tile-stat {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink);
}
.ms-tile-stat-link {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent-ink);
}

.ms-tile-headline {
  margin-top: 12px;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
}
.ms-tile-sub {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.ms-tile-sub strong {
  color: var(--ink);
  font-weight: 500;
}

.ms-mini-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ms-mini-list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
}
.ms-mini-name {
  color: var(--ink);
  font-weight: 500;
}
.ms-mini-note {
  grid-column: 2 / 3;
  font-size: 11px;
  color: var(--muted);
  margin-top: -2px;
}
.ms-mini-note + .ms-mini-num,
.ms-mini-note + .ms-mini-link {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
}
.ms-mini-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-soft);
}
.ms-mini-link {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent-ink);
}

.ms-tile-foot {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
}
.ms-tile-foot code {
  color: var(--ink-soft);
}
.ms-tile-foot .link {
  color: var(--accent-ink);
}

/* ---------- Section heads ---------- */
.sec-head {
  max-width: 720px;
}
.sec-head--center {
  margin: 0 auto;
  text-align: center;
}
.sec-head--center .eyebrow {
  justify-content: center;
}
.sec-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.875rem, 3vw, 2.5rem);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-top: 18px;
  font-variation-settings: "opsz" 144;
}
.sec-title em {
  font-style: italic;
  color: var(--accent-ink);
  font-weight: 400;
}
.sec-deck {
  margin-top: 18px;
  max-width: 56ch;
  font-size: var(--t-deck-size);
  line-height: 1.5;
  color: var(--ink-soft);
}
.sec-head--center .sec-deck {
  margin-left: auto;
  margin-right: auto;
}

.display--md {
  font-size: clamp(2rem, 3.4vw, 3rem);
}

/* ---------- Pillars ---------- */
.pillars {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(2rem, 4vw, 3.5rem) 0;
}
.pillar {
  display: grid;
  grid-template-columns: 200px 1.1fr 1.4fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-bottom: 1px solid var(--border);
}
.pillar:last-child {
  border-bottom: 0;
}
.pillar-kicker {
  color: var(--muted);
  padding-top: 6px;
}
.pillar-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  letter-spacing: -0.025em;
  line-height: 1.1;
  font-variation-settings: "opsz" 144;
}
.pillar-title em {
  font-style: italic;
  color: var(--accent-ink);
  font-weight: 400;
}
.pillar-text {
  margin-top: 16px;
  max-width: 38ch;
}

@media (max-width: 980px) {
  .pillar {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .pillar-text {
    max-width: none;
  }
}

/* ---------- Generic art-card (used in pillars, DNS, self-monitor) ---------- */
.art-card {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  position: relative;
  font-size: 13px;
}
.art-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 56px;
  height: 1px;
  background: var(--accent);
}
.art-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}
.art-head .meta {
  font-size: 9.5px;
}
.art-foot {
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  color: var(--ink-soft);
  font-size: 13px;
}
.art-foot strong {
  color: var(--ink);
}

/* tree mock */
.tree,
.tree ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tree {
  padding: 14px 16px;
}
.tree > li {
  padding: 6px 0;
}
.tree ul {
  padding-left: 26px;
  border-left: 1px solid var(--border);
  margin-left: 4px;
  margin-top: 4px;
}
.tree-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 0;
  font-size: 14px;
}
.tree-row strong {
  color: var(--ink);
  font-weight: 500;
}
.tree-row--child {
  font-size: 13px;
  color: var(--ink-soft);
}
.tree-tag {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
}
.tree-meta {
  font-size: 9px;
  padding: 2px 5px;
  border: 1px solid var(--rule);
  border-radius: var(--r-sm);
}

/* regions table */
.regions {
  width: 100%;
  border-collapse: collapse;
}
.regions th {
  text-align: left;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  padding: 10px 16px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.regions td {
  padding: 8px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.regions tr:last-child td {
  border-bottom: 0;
}
.regions .mono {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-soft);
}
.region-cell {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: var(--r-sm);
  background: var(--bg-alt);
  color: var(--ink-soft);
}
.tag-ok {
  background: var(--st-up-soft);
  color: var(--st-up);
}
.tag-slow {
  background: var(--st-degraded-soft);
  color: var(--st-degraded);
}
.tag-fail {
  background: var(--st-out-soft);
  color: var(--st-out);
}

/* rolling provider name inline inside the pillar headline */
.roll {
  display: inline-block;
  position: relative;
  vertical-align: baseline;
  font-style: italic;
  color: var(--accent-ink);
}
/* invisible real text — sets the box width AND the natural baseline */
.roll-ghost {
  display: inline-block;
  visibility: hidden;
  white-space: nowrap;
  pointer-events: none;
}
/* clip overlay sits on top of the ghost; same metrics → same baseline */
.roll-clip {
  position: absolute;
  inset: 0;
  overflow: hidden;
  display: block;
  text-align: center;
}
.roll-inner {
  display: inline-block;
  animation: roll-in .42s var(--ease-quick) both;
  white-space: nowrap;
}
@keyframes roll-in {
  0% {
    transform: translateY(85%);
    opacity: 0;
  }
  55% {
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* audit log mock */
.audit {
  list-style: none;
  padding: 14px 16px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.audit > li {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 14px;
  font-size: 13px;
  line-height: 1.5;
  align-items: start;
}
.audit > li > .meta {
  color: var(--muted);
  padding-top: 2px;
}
.audit > li > div {
  color: var(--ink-soft);
}
.audit > li em {
  color: var(--ink);
  font-style: italic;
}
/* Edited audit entry: full background tint flags the change; no side-stripe
   border. The mono "EDIT" label inside the row carries the affordance. */
.audit-edit {
  background: var(--st-degraded-soft);
  padding: 12px 14px;
  margin: 0 -14px;
}
.audit-edit::before {
  content: "EDIT";
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--st-degraded);
  margin-right: 10px;
  vertical-align: 1px;
}
.diff-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
}
.diff-old {
  color: var(--muted);
  text-decoration: line-through;
}
.diff-arr {
  color: var(--muted);
}
.diff-new {
  color: var(--ink);
}
/* Reason: italic indented quote, no side-stripe border. The italic + indent
   carries the citation affordance on its own. */
.audit-reason {
  margin-top: 6px;
  padding-left: 14px;
  font-size: 12px;
  color: var(--ink-soft);
  font-style: italic;
}

/* ---------- Bands (full-bleed sections) ---------- */
.band {
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-bottom: 1px solid var(--border);
}
.band-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.band-grid--rev {
  grid-template-columns: 1.1fr 0.9fr;
}
@media (max-width: 980px) {
  .band-grid,
  .band-grid--rev {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.band-foot {
  margin-top: 2.5rem;
  text-align: center;
  color: var(--ink-soft);
  font-size: 14px;
}
.muted-note {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 14px;
}
.muted-note em {
  color: var(--accent-ink);
  font-style: italic;
}

/* DNS code mock */
.code {
  margin: 0;
  padding: 14px 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--surface);
  white-space: pre;
  overflow-x: auto;
}
.code .hi {
  color: var(--accent-ink);
}

/* uptime bars */
.uptime {
  list-style: none;
  padding: 14px 16px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.uptime li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
}
.up-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  color: var(--ink-soft);
}
.up-row .meta {
  margin-left: 6px;
  font-size: 9px;
  padding: 2px 5px;
  background: var(--bg-alt);
  border-radius: var(--r-sm);
  color: var(--muted);
}
.up-row strong {
  color: var(--ink);
  font-weight: 500;
}
.up-bar {
  height: 4px;
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}
.up-bar > span {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
}
.up-excluded {
  padding: 8px 0 0;
  border-top: 1px dashed var(--rule);
}
.up-excluded:first-of-type {
  margin-top: 4px;
}

/* ---------- Honesty index ---------- */
.band--honesty {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.band--honesty .sec-head {
  max-width: 100%;
}
.honesty-card {
  margin-top: 2.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
}
.honesty-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 56px;
  height: 1px;
  background: var(--accent);
}
.hc-grid {
  display: grid;
  grid-template-columns: 160px 1fr 140px 140px;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
}
.hc-head {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.hc-row {
  border-bottom: 1px solid var(--border);
}
.hc-row:last-child {
  border-bottom: 0;
}
.hc-vendor {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 144;
}
.hc-bar {
  position: relative;
  height: 28px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
}
.hc-bar-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: var(--ink);
  opacity: 0.85;
}
.hc-bar-num {
  position: relative;
  margin-left: 10px;
  z-index: 1;
  color: var(--surface);
  mix-blend-mode: difference;
  font-size: 12px;
}
.hc-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-soft);
}

@media (max-width: 760px) {
  .hc-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .hc-head > :nth-child(2) {
    display: none;
  }
  .hc-row > :nth-child(2) {
    grid-column: 1 / -1;
  }
}

/* ---------- Pricing ---------- */
.tiers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 2.5rem;
  border: 1px solid var(--border);
  background: var(--surface);
}
.tier {
  padding: 22px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.tier:last-child {
  border-right: 0;
}
.tier-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.tier-name {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.tier-price {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
  letter-spacing: -0.025em;
}
.tier-per {
  font-size: 13px;
  color: var(--muted);
  margin-left: 2px;
}
.tier-tag {
  font-size: 13px;
  color: var(--ink-soft);
  flex: 1;
  line-height: 1.5;
}
.tier-cta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin-top: auto;
}
.tier-cta:hover {
  color: var(--ink);
}

@media (max-width: 860px) {
  .tiers {
    grid-template-columns: 1fr 1fr;
  }
  .tier {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
  .tier:nth-child(2n) {
    border-right: 0;
  }
  .tier:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}
@media (max-width: 540px) {
  .tiers {
    grid-template-columns: 1fr;
  }
}

/* ---------- Compare ---------- */
.band--compare {
  background: var(--bg-alt);
}
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.compare-list {
  list-style: none;
  padding: 0;
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
}
.compare-list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 56px;
  height: 1px;
  background: var(--accent);
}
.compare-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--ink-soft);
}
.compare-list li:last-child {
  border-bottom: 0;
}
.cmp-yes {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 14px;
}

@media (max-width: 860px) {
  .compare-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Feature matrix ---------- */
.band--matrix {
  background: var(--bg-alt);
}
.fm-wrap {
  margin-top: 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  overflow-x: auto;
  position: relative;
}
.fm-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 56px;
  height: 1px;
  background: var(--accent);
  z-index: 1;
}
.fm {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  font-size: 13.5px;
}
.fm-col-feat {
  width: 38%;
}

.fm thead th {
  vertical-align: bottom;
  padding: 18px 14px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
  text-align: left;
  font-weight: 500;
}
.fm-th-feat {
  background: var(--surface) !important;
}
.fm-th {
  text-align: center;
}
.fm-th-name {
  display: block;
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 144;
}
.fm-th-price {
  display: block;
  margin-top: 4px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}
.fm-th-flag {
  display: inline-block;
  margin-left: 4px;
  padding: 1px 6px;
  border-radius: var(--r-sm);
  background: var(--accent-soft);
  color: var(--accent-ink);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.fm-th--featured {
  background: color-mix(in oklch, var(--accent) 12%, var(--bg-alt)) !important;
}
.fm-th--featured .fm-th-name {
  color: var(--accent-ink);
}

.fm-section th {
  text-align: left;
  padding: 16px 14px 8px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  font-weight: 500;
}
.fm tbody tr:not(.fm-section) td,
.fm tbody tr:not(.fm-section) th {
  border-bottom: 1px solid var(--border);
}
.fm-feat {
  text-align: left;
  padding: 12px 14px;
  font-weight: 400;
  color: var(--ink);
  font-size: 13.5px;
}
.fm-cell {
  text-align: center;
  padding: 12px 12px;
  vertical-align: middle;
  color: var(--ink-soft);
}
.fm-cell--featured {
  background: color-mix(in oklch, var(--accent) 6%, var(--surface));
}
.fm-yes {
  color: var(--accent);
  font-size: 16px;
  font-weight: 600;
}
.fm-no {
  color: var(--muted);
}
.fm-text {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink);
}

.fm-cta-row td {
  padding: 18px 12px !important;
  border-bottom: 0 !important;
}
.fm-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--accent-ink);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
}
.fm-cta:hover {
  color: var(--accent);
}

/* ---------- Tier featured + flag (used in pricing strip) ---------- */
.tier {
  position: relative;
}
.tier-flag {
  position: absolute;
  top: -1px;
  right: -1px;
  background: var(--accent);
  color: var(--surface);
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
}
.tier--featured {
  border-color: color-mix(in oklch, var(--accent) 50%, var(--border));
  background: color-mix(in oklch, var(--accent) 5%, var(--surface));
}
.tier--featured .tier-name {
  color: var(--accent-ink);
}

/* ---------- Dromos band ---------- */
.band--dromos {
  background: var(--ink);
  color: var(--bg);
  border: 0;
}
.band--dromos .eyebrow {
  color: oklch(98% 0.005 165 / 0.6);
}
.band--dromos .eyebrow::before {
  background: var(--orange);
}
.band--dromos .display,
.band--dromos h2 {
  color: var(--bg);
}
.band--dromos .display em,
.band--dromos h2 em {
  color: var(--orange-bright);
}
.band--dromos .deck {
  color: oklch(98% 0.005 165 / 0.78);
  max-width: 60ch;
}
.band--dromos .deck + .deck {
  margin-top: 14px;
}
.band--dromos code {
  background: oklch(98% 0.005 165 / 0.08);
  padding: 2px 6px;
  border-radius: var(--r-sm);
  color: var(--orange-bright);
}
.band--dromos a.link {
  color: var(--orange-bright);
  border-color: oklch(74% 0.13 50 / 0.3);
}
.band--dromos a.link:hover {
  border-color: var(--orange-bright);
}
.band--dromos .btn-ghost {
  color: var(--bg);
  border-color: oklch(98% 0.005 165 / 0.25);
}
.band--dromos .btn-ghost:hover {
  border-color: var(--bg);
}

.dromos-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.dromos-cta {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

@media (max-width: 860px) {
  .dromos-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Waitlist ---------- */
.band--waitlist {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--bg);
}
.wl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.wl-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.wl-label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.wl-label input {
  font-family: var(--font-sans);
  font-size: 16px;
  padding: 14px 16px;
  border: 1px solid var(--rule);
  background: var(--surface);
  color: var(--ink);
  border-radius: var(--r-sm);
  transition: border-color var(--t-fast);
}
.wl-label input:focus {
  outline: none;
  border-color: var(--accent);
}
.wl-submit {
  align-self: flex-start;
  padding: 14px 22px;
}
.wl-fine {
  font-size: 13px;
  color: var(--muted);
  max-width: 38em;
}
.wl-fine em {
  color: var(--accent-ink);
  font-style: italic;
}

@media (max-width: 860px) {
  .wl-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: var(--bg);
  padding: 4rem 0 2rem;
}
.footer .meta {
  color: oklch(98% 0.005 165 / 0.5);
}
.foot-top {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.foot-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--bg);
}
.foot-brand svg {
  color: var(--bg);
}
.foot-wm {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.025em;
  font-variation-settings: "opsz" 144;
}
.foot-wm em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent-bright);
}
.foot-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.foot-cols > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.foot-cols .meta {
  margin-bottom: 4px;
}
.foot-cols a {
  color: oklch(98% 0.005 165 / 0.78);
  font-size: 14px;
}
.foot-cols a:hover {
  color: var(--bg);
}

.foot-rule {
  max-width: var(--max-w);
  margin: 3rem auto 0;
  padding: 0 var(--gutter);
  border-top: 1px solid oklch(98% 0.005 165 / 0.1);
}
.foot-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.25rem var(--gutter) 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.foot-attr a {
  color: var(--accent-bright);
}
.foot-attr a.link {
  border-bottom-color: oklch(72% 0.14 158 / 0.3);
}
.foot-attr a.link:hover {
  border-bottom-color: var(--accent-bright);
}

@media (max-width: 860px) {
  .foot-top {
    grid-template-columns: 1fr;
  }
  .foot-cols {
    grid-template-columns: 1fr 1fr;
  }
}
