/* ============================================================
   TVMatch — Design System
   Tokens + component styles
   Faithful to the reference: warm-neutral dark world,
   purple primary, lime / coral / amber semantic accents,
   Geist + Geist Mono, Phosphor icons.
   ============================================================ */

:root {
  /* --- Neutrals: warm dark "ink" --- */
  --ink-900: #151313;   /* deepest bg */
  --ink-800: #201D1D;   /* base dark surface */
  --ink-700: #2A2727;   /* elevated surface / dark CTA */
  --ink-600: #312E2E;   /* hairlines on dark, raised chips */
  --ink-500: #393636;   /* control fills on dark */
  --ink-400: #4F4C4C;   /* borders on dark */

  /* --- Neutrals: warm light "paper" --- */
  --paper:    #F4F4F4;  /* light bg / light text on dark */
  --paper-2:  #EAEAEA;  /* input fills (light) */
  --paper-3:  #E1E1E1;  /* hairlines (light) */
  --paper-4:  #D8D8D8;  /* deeper light line */
  --white:    #FFFFFF;

  /* --- Text --- */
  --t-on-dark:     #F4F4F4;
  --t-on-dark-mut: #B8B8B8;
  --t-on-dark-dim: #817F7F;
  --t-on-light:     #201D1D;
  --t-on-light-mut: #7A7A7A;
  --t-on-light-dim: #A1A0A0;

  /* --- Accents --- */
  --purple:      #6840FF;   /* primary action */
  --purple-700:  #4F2EDB;   /* hover */
  --purple-100:  #E7E0FF;   /* tint on light */
  --purple-dim:  #2A2350;   /* tint on dark */

  --lime:        #A1FF62;   /* owner / approved / live */
  --lime-700:    #82E13F;
  --lime-dim:    #2A3A1C;

  --coral:       #F84131;   /* advertiser / rejected / alert */
  --coral-700:   #DC2C1D;
  --coral-dim:   #3A201D;

  --amber:       #F5B544;   /* pending / paused (derived) */
  --amber-dim:   #3A301A;

  --info:        #3898EC;   /* neutral system links */

  /* --- Radii --- */
  --r-xs: 4px;
  --r-sm: 6px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 16px;
  --r-2xl: 24px;
  --r-pill: 999px;

  /* --- Spacing (8pt) --- */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 96px;
  --s-10: 128px;

  /* --- Shadows --- */
  --shadow-card:  0 1px 2px rgba(0,0,0,.06);
  --shadow-pop:   0 2px 12px rgba(0,0,0,.12);
  --shadow-deep:  0 24px 80px rgba(21,19,19,.55);
  --shadow-modal: 0 48px 140px rgba(0,0,0,.18);

  /* --- Type --- */
  --sans: "Geist", "Geist Fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "Geist Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --maxw: 1180px;
}

/* ============================================================
   Base
   ============================================================ */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  background: var(--ink-800);
  color: var(--t-on-dark);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: var(--purple); color: #fff; }

/* ============================================================
   Type scale
   ============================================================ */
.t-display {
  font-size: clamp(56px, 9vw, 116px);
  line-height: .92;
  letter-spacing: -.03em;
  font-weight: 500;
  margin: 0;
}
.t-h1 { font-size: clamp(40px, 5vw, 64px); line-height: 1.0; letter-spacing: -.025em; font-weight: 500; margin: 0; }
.t-h2 { font-size: clamp(30px, 3.4vw, 42px); line-height: 1.05; letter-spacing: -.02em; font-weight: 500; margin: 0; }
.t-h3 { font-size: 28px; line-height: 1.12; letter-spacing: -.015em; font-weight: 500; margin: 0; }
.t-h4 { font-size: 21px; line-height: 1.2; letter-spacing: -.01em; font-weight: 500; margin: 0; }
.t-lead { font-size: 20px; line-height: 1.5; font-weight: 400; }
.t-body { font-size: 16px; line-height: 1.6; }
.t-sm { font-size: 14px; line-height: 1.55; }
.t-mono {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
}
.t-cap { font-size: 11px; line-height: 1.4; }

/* ============================================================
   Doc scaffolding (the design-system page chrome)
   ============================================================ */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

.ds-section {
  padding: clamp(64px, 9vw, 120px) 0;
  border-top: 1px solid var(--ink-600);
}
.ds-section.light { background: var(--paper); color: var(--t-on-light); border-top: 1px solid var(--paper-3); }

.ds-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 12px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--t-on-dark-dim);
  margin: 0 0 20px;
}
.light .ds-eyebrow { color: var(--t-on-light-mut); }
.ds-eyebrow::before { content: ""; width: 18px; height: 1px; background: currentColor; opacity: .5; }

.ds-section-head { margin-bottom: clamp(40px, 6vw, 72px); max-width: 760px; }
.ds-section-head p { color: var(--t-on-dark-mut); margin: 18px 0 0; font-size: 18px; }
.light .ds-section-head p { color: var(--t-on-light-mut); }

.ds-subhead {
  font-family: var(--mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--t-on-dark-dim); margin: 0 0 18px; padding-bottom: 10px;
  border-bottom: 1px solid var(--ink-600);
}
.light .ds-subhead { color: var(--t-on-light-mut); border-bottom: 1px solid var(--paper-3); }

.grid { display: grid; gap: 20px; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .cols-3, .cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; }
}

/* ============================================================
   Color swatches
   ============================================================ */
.swatch {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--ink-600);
  background: var(--ink-700);
}
.light .swatch { border-color: var(--paper-3); background: var(--white); }
.swatch .chip { height: 96px; }
.swatch .meta { padding: 12px 14px; }
.swatch .meta .name { font-weight: 500; font-size: 14px; }
.swatch .meta .hex {
  font-family: var(--mono); font-size: 12px; letter-spacing: .04em;
  color: var(--t-on-dark-dim); margin-top: 2px;
}
.light .swatch .meta .hex { color: var(--t-on-light-mut); }
.swatch .meta .tok { font-family: var(--mono); font-size: 11px; color: var(--purple); margin-top: 6px; }

/* ============================================================
   Spec rows (token tables)
   ============================================================ */
.spec {
  display: grid; grid-template-columns: 180px 1fr auto; gap: 16px; align-items: center;
  padding: 14px 0; border-bottom: 1px solid var(--ink-600);
}
.light .spec { border-bottom-color: var(--paper-3); }
.spec:last-child { border-bottom: none; }
.spec .tok { font-family: var(--mono); font-size: 12px; color: var(--purple); }
.spec .val { font-family: var(--mono); font-size: 12px; color: var(--t-on-dark-dim); }
.light .spec .val { color: var(--t-on-light-mut); }

/* ============================================================
   Demo surfaces (panels that hold component examples)
   ============================================================ */
.demo {
  border: 1px solid var(--ink-600);
  border-radius: var(--r-xl);
  padding: 32px;
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(104,64,255,.05), transparent 60%),
    var(--ink-700);
}
.demo.on-light { background: var(--paper); border-color: var(--paper-3); color: var(--t-on-light); }
.demo .label-row {
  display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-bottom: 22px;
}
.demo-cluster { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ============================================================
   COMPONENT — Buttons
   ============================================================ */
.btn {
  --bg: var(--ink-700);
  --fg: var(--t-on-dark);
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--sans); font-size: 15px; font-weight: 500; line-height: 1;
  padding: 14px 22px; border-radius: var(--r-pill); border: 1px solid transparent;
  background: var(--bg); color: var(--fg); cursor: pointer;
  text-decoration: none; transition: transform .12s ease, background .15s ease, border-color .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn .ph, .btn i { font-size: 18px; }

.btn--primary { --bg: var(--purple); --fg: #fff; }
.btn--primary:hover { --bg: var(--purple-700); }

.btn--lime { --bg: var(--lime); --fg: var(--ink-900); }
.btn--lime:hover { --bg: var(--lime-700); }

.btn--coral { --bg: var(--coral); --fg: #fff; }
.btn--coral:hover { --bg: var(--coral-700); }

.btn--dark { --bg: var(--ink-700); --fg: var(--t-on-dark); }
.btn--dark:hover { --bg: var(--ink-600); }

.btn--solid-ink { --bg: var(--ink-900); --fg: var(--t-on-dark); }

.btn--ghost { --bg: transparent; --fg: var(--t-on-dark); border-color: var(--ink-400); }
.btn--ghost:hover { --bg: rgba(255,255,255,.05); }
.on-light .btn--ghost, .light .btn--ghost { --fg: var(--t-on-light); border-color: var(--paper-4); }
.on-light .btn--ghost:hover, .light .btn--ghost:hover { --bg: rgba(0,0,0,.04); }

.btn--light { --bg: var(--paper); --fg: var(--ink-900); }
.btn--light:hover { --bg: var(--white); }

.btn--sm { padding: 9px 14px; font-size: 13px; }
.btn--lg { padding: 18px 28px; font-size: 17px; }
.btn--block { display: flex; width: 100%; }
.btn[disabled] { opacity: .4; pointer-events: none; }

/* Journey CTA — the two flagship home buttons */
.cta-journey {
  display: flex; flex-direction: column; gap: 6px; align-items: flex-start;
  text-align: left; padding: 22px 26px; min-width: 260px;
  border-radius: var(--r-xl); border: 1px solid transparent; cursor: pointer;
  text-decoration: none; transition: transform .14s ease, box-shadow .2s ease;
  font-family: var(--sans);
}
.cta-journey:hover { transform: translateY(-3px); }
.cta-journey .kicker { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; opacity: .75; }
.cta-journey .title { font-size: 21px; font-weight: 500; letter-spacing: -.01em; display: flex; align-items: center; gap: 10px; }
.cta-journey--owner { background: var(--lime); color: var(--ink-900); }
.cta-journey--owner:hover { box-shadow: 0 18px 50px rgba(161,255,98,.18); }
.cta-journey--adv { background: var(--purple); color: #fff; }
.cta-journey--adv:hover { box-shadow: 0 18px 50px rgba(104,64,255,.28); }
.cta-journey .arrow { margin-left: auto; font-size: 22px; transition: transform .18s ease; }
.cta-journey:hover .arrow { transform: translateX(4px); }

/* ============================================================
   COMPONENT — Tags / badges / status
   ============================================================ */
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  font-weight: 500; padding: 5px 9px 4px; border-radius: var(--r-sm); line-height: 1;
}
.tag--ink  { background: var(--ink-600); color: var(--t-on-dark-mut); }
.tag--purple { background: var(--purple); color: #fff; }
.tag--lime { background: var(--lime); color: var(--ink-900); }
.tag--coral { background: var(--coral); color: #fff; }
.tag--outline { background: transparent; border: 1px solid var(--ink-400); color: var(--t-on-dark-mut); }
.light .tag--outline { border-color: var(--paper-4); color: var(--t-on-light-mut); }

/* paired tag (like NO MEMBERSHIP · BUTTON PACK ONLY) */
.tag-pair { display: inline-flex; border-radius: var(--r-sm); overflow: hidden; }
.tag-pair .tag { border-radius: 0; }

/* Status pill — dot + label, tinted */
.status {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; padding: 6px 12px 6px 10px; border-radius: var(--r-pill);
  line-height: 1; border: 1px solid transparent;
}
.status .dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; flex: none; }
.status--neutral { background: var(--ink-600); color: var(--t-on-dark-mut); }
.status--info    { background: var(--purple-dim); color: #b9a8ff; }
.status--ok      { background: var(--lime-dim); color: var(--lime); }
.status--warn    { background: var(--amber-dim); color: var(--amber); }
.status--bad     { background: var(--coral-dim); color: #ff8b7f; }
.light .status--neutral { background: var(--paper-2); color: var(--t-on-light-mut); }
.light .status--info { background: var(--purple-100); color: var(--purple-700); }
.light .status--ok { background: #E4FFD2; color: #3f8a1d; }
.light .status--warn { background: #FFF0D2; color: #9a6a12; }
.light .status--bad { background: #FFE2DE; color: var(--coral-700); }

/* compatibility meter */
.compat { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; }
.compat .bar { width: 84px; height: 6px; border-radius: var(--r-pill); background: var(--ink-600); overflow: hidden; }
.light .compat .bar { background: var(--paper-3); }
.compat .bar > span { display: block; height: 100%; background: var(--lime); border-radius: var(--r-pill); }
.compat .pct { font-family: var(--mono); font-size: 13px; }

/* ============================================================
   COMPONENT — Form inputs
   ============================================================ */
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field > label {
  font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--t-on-dark-mut); display: flex; gap: 4px; align-items: center;
}
.on-light .field > label, .light .field > label { color: var(--t-on-light-mut); }
.field .req { color: var(--coral); }

.input, .select, .textarea {
  font-family: var(--sans); font-size: 15px; color: var(--t-on-dark);
  background: var(--ink-800); border: 1px solid var(--ink-400); border-radius: var(--r-md);
  padding: 13px 14px; width: 100%; transition: border-color .15s ease, box-shadow .15s ease;
}
.input::placeholder, .textarea::placeholder { color: var(--t-on-dark-dim); }
.input:focus, .select:focus, .textarea:focus {
  outline: none; border-color: var(--purple); box-shadow: 0 0 0 3px rgba(104,64,255,.25);
}
.textarea { min-height: 96px; resize: vertical; }

/* light variant (used inside white form cards, like the reference checkout) */
.on-light .input, .on-light .select, .on-light .textarea,
.light .input, .light .select, .light .textarea {
  background: var(--paper-2); border-color: var(--paper-2); color: var(--t-on-light);
}
.on-light .input::placeholder, .light .input::placeholder { color: var(--t-on-light-dim); }
.on-light .input:focus, .light .input:focus,
.on-light .select:focus, .light .select:focus,
.on-light .textarea:focus, .light .textarea:focus {
  background: var(--white); border-color: var(--purple); box-shadow: 0 0 0 3px rgba(104,64,255,.18);
}

.select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%237A7A7A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }

/* checkbox / consent */
.check { display: flex; gap: 12px; align-items: flex-start; cursor: pointer; }
.check input { position: absolute; opacity: 0; pointer-events: none; }
.check .box {
  width: 20px; height: 20px; flex: none; margin-top: 1px; border-radius: var(--r-xs);
  border: 1.5px solid var(--ink-400); display: grid; place-items: center;
  transition: background .15s ease, border-color .15s ease;
}
.on-light .check .box, .light .check .box { border-color: var(--paper-4); background: var(--white); }
.check .box i { font-size: 14px; color: #fff; opacity: 0; transform: scale(.6); transition: .15s ease; }
.check input:checked + .box { background: var(--purple); border-color: var(--purple); }
.check input:checked + .box i { opacity: 1; transform: scale(1); }
.check .txt { font-size: 13px; line-height: 1.5; color: var(--t-on-dark-mut); }
.on-light .check .txt, .light .check .txt { color: var(--t-on-light-mut); }
.check .txt a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }

/* segmented toggle (Billed quarterly / yearly) */
.seg { display: inline-flex; padding: 4px; background: var(--paper-2); border-radius: var(--r-lg); }
.seg button {
  border: none; background: transparent; font-family: var(--sans); font-size: 14px; font-weight: 500;
  padding: 10px 20px; border-radius: var(--r-md); cursor: pointer; color: var(--t-on-light-mut);
}
.seg button.on { background: var(--white); color: var(--t-on-light); box-shadow: var(--shadow-card); }

/* ============================================================
   COMPONENT — Cards
   ============================================================ */
.card {
  background: var(--ink-700); border: 1px solid var(--ink-600); border-radius: var(--r-xl);
  overflow: hidden;
}
.light .card, .on-light .card { background: var(--white); border-color: var(--paper-3); box-shadow: var(--shadow-card); }
.card__media { aspect-ratio: 16/10; position: relative; background: var(--ink-600); }
.card__body { padding: 20px; }
.card__title { font-size: 18px; font-weight: 500; letter-spacing: -.01em; }
.card__meta { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 12px; color: var(--t-on-dark-mut); font-size: 13px; }
.light .card__meta { color: var(--t-on-light-mut); }
.card__meta span { display: inline-flex; align-items: center; gap: 6px; }
.card__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 20px; border-top: 1px solid var(--ink-600); }
.light .card__foot { border-top-color: var(--paper-3); }
.price { font-size: 18px; font-weight: 500; }
.price small { font-family: var(--mono); font-size: 11px; color: var(--t-on-dark-dim); letter-spacing: .05em; font-weight: 400; }
.light .price small { color: var(--t-on-light-mut); }

/* striped image placeholder */
.ph-img {
  position: absolute; inset: 0; display: grid; place-items: center;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0 10px, transparent 10px 20px);
  color: var(--t-on-dark-dim); font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
}
.light .ph-img, .on-light .ph-img { background-image: repeating-linear-gradient(135deg, rgba(0,0,0,.04) 0 10px, transparent 10px 20px); color: var(--t-on-light-dim); }

/* stat / dashboard card */
.stat { padding: 22px; border-radius: var(--r-lg); border: 1px solid var(--ink-600); background: var(--ink-800); }
.light .stat, .on-light .stat { background: var(--paper); border-color: var(--paper-3); }
.stat .k { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--t-on-dark-dim); }
.light .stat .k, .on-light .stat .k { color: var(--t-on-light-mut); }
.stat .v { font-size: 34px; font-weight: 500; letter-spacing: -.02em; margin-top: 8px; }
.stat .v.accent { color: var(--lime); }

/* plan card (pricing) */
.plan { border-radius: var(--r-2xl); padding: 30px; }
.plan--base { background: var(--ink-900); color: var(--t-on-dark); }
.plan--feature { background: var(--purple); color: #fff; }
.plan .plan__name { font-size: 22px; font-weight: 500; }
.plan .plan__price { font-size: 40px; font-weight: 500; letter-spacing: -.02em; margin: 10px 0 4px; }
.plan ul { list-style: none; padding: 0; margin: 22px 0; display: grid; gap: 12px; }
.plan li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; }
.plan li i { margin-top: 2px; }

/* ============================================================
   COMPONENT — Top navigation
   ============================================================ */
.nav {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: var(--ink-700); border: 1px solid var(--ink-600); border-radius: var(--r-pill);
  padding: 10px 12px 10px 18px;
}
.nav .nav__menu { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; color: var(--t-on-dark-mut); }
.nav .nav__actions { display: inline-flex; gap: 8px; align-items: center; }

/* logo */
.logo { display: inline-flex; align-items: center; gap: 9px; text-decoration: none; color: inherit; }
.logo__mark {
  width: 26px; height: 20px; border-radius: 5px; background: var(--ink-900);
  border: 1.5px solid currentColor; display: grid; place-items: center; position: relative;
}
.logo__mark::after { content: ""; width: 0; height: 0; border-left: 7px solid var(--lime); border-top: 5px solid transparent; border-bottom: 5px solid transparent; margin-left: 2px; }
.logo__word { font-weight: 600; letter-spacing: -.02em; font-size: 18px; }
.logo__word b { font-weight: 600; }
.logo--lg .logo__mark { width: 40px; height: 30px; border-radius: 7px; }
.logo--lg .logo__mark::after { border-left-width: 11px; border-top-width: 8px; border-bottom-width: 8px; }
.logo--lg .logo__word { font-size: 27px; }

/* ============================================================
   COMPONENT — Footer (oversized wordmark, reference-style)
   ============================================================ */
.footer { background: var(--ink-900); color: var(--t-on-dark); padding-top: 80px; overflow: hidden; }
.footer__cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
@media (max-width: 800px){ .footer__cols { grid-template-columns: 1fr 1fr; } }
.footer h5 { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--t-on-dark-dim); margin: 0 0 16px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer a { color: var(--t-on-dark-mut); text-decoration: none; font-size: 14px; }
.footer a:hover { color: var(--t-on-dark); }
.footer__word {
  font-weight: 600; letter-spacing: -.04em; line-height: .8; white-space: nowrap;
  font-size: clamp(120px, 26vw, 360px); color: var(--ink-700); margin: 48px 0 -.12em;
  user-select: none;
}

/* utility */
.mono-note { font-family: var(--mono); font-size: 12px; color: var(--t-on-dark-dim); letter-spacing: .04em; }
.light .mono-note { color: var(--t-on-light-mut); }
.divider { height: 1px; background: var(--ink-600); border: none; margin: 0; }
.light .divider { background: var(--paper-3); }
.stack-sm > * + * { margin-top: 10px; }
.row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.spread { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.muted { color: var(--t-on-dark-mut); }
.light .muted { color: var(--t-on-light-mut); }
