/* ============================================================
   SPINUP BRANDS — DESIGN SYSTEM
   Every colour pair below was verified by WCAG contrast maths
   before it was written here. Recorded ratios are in comments.
   Key catch: white-on-teal measures 2.26:1 and FAILS, so every
   teal button uses ink text (8.43:1).
   ============================================================ */

:root {
  /* ---- ground ---- */
  --ink:        #0B1017;   /* page ground        white on this = 19.08:1 */
  --ink-2:      #121A24;   /* section band                              */
  --ink-3:      #1A2430;   /* cards, raised      paper on this = 14.59:1 */
  --ink-line:   #263243;   /* hairlines                                 */
  --paper:      #F4F7FA;   /* light canvas       ink on this  = 17.74:1 */
  --paper-2:    #E7EDF3;   /* light band                                */
  --white:      #FFFFFF;

  /* ---- text ---- */
  --t-hi:       #FFFFFF;   /* on dark                          19.08:1 */
  --t-body:     #C6D2DE;   /* on dark, body                    12.3:1  */
  --t-mute:     #9FB0C0;   /* on dark, secondary                8.58:1 */
  --t-dark:     #0B1017;   /* on light                         17.74:1 */
  --t-dark-mute:#4A5A6B;   /* on light, secondary               6.4:1  */

  /* ---- brand ---- */
  --teal:       #00C2A8;   /* accent ON DARK ONLY               8.43:1 */
  --teal-bright:#14D6BC;   /* hover / focus ring on dark       10.33:1 */
  --teal-deep:  #00806D;   /* links ON LIGHT                    4.53:1 */
  --gold:       #E8B14C;   /* economics accent on dark          9.83:1 */
  --gold-deep:  #8C6520;   /* gold text on light                4.89:1 */

  /* ---- semantic ---- */
  --ok:         #34D399;
  --warn:       #FBBF24;
  --err:        #FF6B6B;   /* on dark 6.9:1 */
  --err-deep:   #B4232C;   /* on light 5.9:1 */

  /* ---- type ---- */
  --f-display: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
  --f-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --f-mono:    "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* fluid type — clamp() so nothing needs a media query */
  --fs-hero:  clamp(2.5rem, 1.2rem + 5.6vw, 5.5rem);
  --fs-h1:    clamp(2.1rem, 1.2rem + 3.9vw, 4rem);
  --fs-h2:    clamp(1.7rem, 1.15rem + 2.4vw, 2.85rem);
  --fs-h3:    clamp(1.25rem, 1.05rem + 0.9vw, 1.6rem);
  --fs-lead:  clamp(1.05rem, 0.98rem + 0.42vw, 1.3rem);
  --fs-body:  clamp(1rem, 0.97rem + 0.16vw, 1.075rem);
  --fs-sm:    0.9375rem;
  --fs-xs:    0.8125rem;
  --fs-eyebrow: 0.78rem;

  --lh-tight: 1.02;
  --lh-head:  1.1;
  --lh-body:  1.65;

  /* ---- space (4px base) ---- */
  --s1: .25rem;  --s2: .5rem;   --s3: .75rem;  --s4: 1rem;
  --s5: 1.5rem;  --s6: 2rem;    --s7: 3rem;    --s8: 4rem;
  --s9: 6rem;    --s10: 8rem;
  --section-y: clamp(4rem, 2rem + 8vw, 9rem);

  /* ---- layout ---- */
  --wrap: 1240px;
  --wrap-narrow: 780px;
  --gutter: clamp(1.15rem, 0.7rem + 2.2vw, 2.5rem);
  --radius: 14px;
  --radius-sm: 9px;
  --radius-lg: 22px;

  --shadow-1: 0 1px 2px rgba(0,0,0,.28);
  --shadow-2: 0 12px 34px rgba(0,0,0,.34);
  --shadow-3: 0 26px 70px rgba(0,0,0,.44);

  --ease: cubic-bezier(.22,.61,.36,1);
  --dur: 200ms;
}

/* ============ reset ============ */
*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,*::before,*::after {
    animation-duration:.001ms !important; animation-iteration-count:1 !important;
    transition-duration:.001ms !important; scroll-behavior:auto !important;
  }
}
body {
  margin: 0;
  background: var(--ink);
  color: var(--t-body);
  font-family: var(--f-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;          /* belt & braces against 320px overflow */
}
/* Subtle film grain + mesh over the flat dark ground. Premium dark UIs are never
   a flat fill — this kills colour banding and adds the tactile feel that matches
   a physical-product brand. Pure CSS, no extra request. */
body::before {
  content: ""; position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    radial-gradient(60rem 40rem at 78% -8%, rgba(0,194,168,.075), transparent 60%),
    radial-gradient(50rem 34rem at 6% 18%, rgba(232,177,76,.045), transparent 62%);
}
body::after {
  content: ""; position: fixed; inset: 0; z-index: 0; pointer-events: none;
  opacity: .5; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}
.hdr, main, .ftr, .mobile-cta { position: relative; z-index: 1; }
img,svg,video { max-width: 100%; height: auto; display: block; }
h1,h2,h3,h4 {
  font-family: var(--f-display);
  color: var(--t-hi);
  line-height: var(--lh-head);
  letter-spacing: -.022em;
  margin: 0 0 var(--s4);
  text-wrap: balance;          /* kills orphan words in headings */
  font-weight: 800;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); letter-spacing: -.012em; }
p  { margin: 0 0 var(--s4); text-wrap: pretty; }
a  { color: var(--teal); text-underline-offset: 3px; }
a:hover { color: var(--teal-bright); }
ul,ol { margin: 0 0 var(--s4); padding-left: 1.15rem; }
li { margin-bottom: var(--s2); }
strong { color: var(--t-hi); font-weight: 650; }

/* ============ a11y ============ */
:focus-visible {
  outline: 3px solid var(--teal-bright);
  outline-offset: 3px;
  border-radius: 4px;
}
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--teal); color: var(--ink);
  padding: var(--s3) var(--s5); font-weight: 700; border-radius: 0 0 var(--radius-sm) 0;
}
.skip:focus { left: 0; }
.vh {
  position:absolute!important; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0;
}

/* ============ layout ============ */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-narrow { max-width: var(--wrap-narrow); }
.section { padding-block: var(--section-y); position: relative; }
.section--band  { background: var(--ink-2); }
.section--light { background: var(--paper); color: var(--t-dark-mute); }
.section--light h1,.section--light h2,.section--light h3 { color: var(--t-dark); }
.section--light a { color: var(--teal-deep); }         /* 4.53:1 verified */
.section--light strong { color: var(--t-dark); }

.grid { display: grid; gap: var(--s5); }
.g2 { grid-template-columns: repeat(2,1fr); }
.g3 { grid-template-columns: repeat(3,1fr); }
.g4 { grid-template-columns: repeat(4,1fr); }
@media (max-width: 900px) { .g3,.g4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px) { .g2,.g3,.g4 { grid-template-columns: 1fr; } }

/* ============ type helpers ============ */
.eyebrow {
  font-family: var(--f-mono);
  font-size: .875rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 var(--s4);
  display: block;
  font-weight: 500;
}
.section--light .eyebrow { color: var(--teal-deep); }
.lead { font-size: var(--fs-lead); color: var(--t-body); max-width: 62ch; }
.section--light .lead { color: var(--t-dark-mute); }
.measure { max-width: 68ch; }

/* ============ buttons ============
   NB: ink-on-teal = 8.43:1. white-on-teal = 2.26:1 (FAILS).
   Never invert this.                                        */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--s2);
  min-height: 52px;                 /* > 44px touch target */
  padding: var(--s3) var(--s6);
  border-radius: 999px;
  font-family: var(--f-body);
  font-weight: 700; font-size: var(--fs-body);
  text-decoration: none; cursor: pointer; border: 2px solid transparent;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--teal); color: var(--ink); }
.btn--primary:hover { background: var(--teal-bright); color: var(--ink); }
.btn--ghost { background: transparent; color: var(--t-hi); border-color: #4A5F78; }
.btn--ghost:hover { border-color: var(--teal); color: var(--teal); }
.section--light .btn--ghost { color: var(--t-dark); border-color: #C4D0DC; }
.section--light .btn--ghost:hover { border-color: var(--teal-deep); color: var(--teal-deep); }
.btn--lg { min-height: 60px; padding: var(--s4) var(--s7); font-size: 1.08rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: var(--s4); align-items: center; }

/* ============ cards ============ */
.card {
  background: var(--ink-3);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius);
  padding: var(--s6);
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.card:hover { border-color: #33455A; transform: translateY(-3px); }
.section--light .card { background: var(--white); border-color: #D9E2EA; }
/* CASCADE FIX: `.section--light a` was overriding button text colour, producing
   teal-on-teal at 2.15:1 (caught by Lighthouse, not by token maths). Buttons must
   always win — ink-on-teal is 8.43:1. */
.section--light a.btn--primary,
a.btn--primary { color: var(--ink); }
.section--light a.btn--primary:hover,
a.btn--primary:hover { color: var(--ink); }
.card__n {
  font-family: var(--f-mono); font-size: var(--fs-xs);
  color: var(--teal); letter-spacing: .1em; display: block; margin-bottom: var(--s3);
}
.section--light .card__n { color: var(--teal-deep); }

/* a card that is entirely clickable, without nesting links */
.card--link { position: relative; }
.card--link a::after { content:""; position:absolute; inset:0; }

/* ============ proof strip ============ */
.facts { display: grid; grid-template-columns: repeat(5,1fr); gap: 1px; background: var(--ink-line); border-block: 1px solid var(--ink-line); }
.fact { background: var(--ink); padding: var(--s6) var(--s4); text-align: center; }
.fact__n { font-family: var(--f-display); font-size: clamp(1.9rem,1.2rem+2.2vw,3rem); color: var(--t-hi); font-weight: 800; line-height: 1; display:block; }
.fact__l { font-size: var(--fs-xs); color: var(--t-mute); letter-spacing: .06em; text-transform: uppercase; margin-top: var(--s2); display:block; }
@media (max-width: 860px) { .facts { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 420px) { .facts { grid-template-columns: 1fr; } }

/* ============ forms ============ */
.field { margin-bottom: var(--s5); }
.label { display: block; font-weight: 650; color: var(--t-hi); margin-bottom: var(--s2); font-size: var(--fs-sm); }
.section--light .label { color: var(--t-dark); }
.hint { font-size: var(--fs-xs); color: var(--t-mute); margin-top: var(--s2); }
.input, .select, .textarea {
  width: 100%; min-height: 52px;
  padding: var(--s3) var(--s4);
  background: var(--ink-2); color: var(--t-hi);
  border: 1.5px solid var(--ink-line); border-radius: var(--radius-sm);
  font-family: var(--f-body); font-size: 16px;   /* 16px stops iOS zoom-on-focus */
}
.textarea { min-height: 130px; resize: vertical; }
.input:focus, .select:focus, .textarea:focus { border-color: var(--teal); }
.input[aria-invalid="true"], .select[aria-invalid="true"], .textarea[aria-invalid="true"] { border-color: var(--err); }
.err { color: var(--err); font-size: var(--fs-sm); margin-top: var(--s2); display: block; font-weight: 600; }
.section--light .err { color: var(--err-deep); }

/* choice cards double as radio/checkbox */
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.choice__box {
  display: block; padding: var(--s5); background: var(--ink-3);
  border: 2px solid var(--ink-line); border-radius: var(--radius); cursor: pointer;
  transition: border-color var(--dur) var(--ease);
}
.choice input:checked + .choice__box { border-color: var(--teal); background: #14262B; }
.choice input:focus-visible + .choice__box { outline: 3px solid var(--teal-bright); outline-offset: 3px; }
/* selected state must not rely on colour alone (WCAG 1.4.1) */
.choice input:checked + .choice__box::after {
  content: "✓ selected"; display:block; margin-top: var(--s3);
  font-family: var(--f-mono); font-size: var(--fs-xs); color: var(--teal); letter-spacing:.08em;
}

/* ============ accordion ============ */
.acc { border-top: 1px solid var(--ink-line); }
.acc__item { border-bottom: 1px solid var(--ink-line); }
.acc__btn {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: var(--s5) var(--s6) var(--s5) 0; color: var(--t-hi);
  font-family: var(--f-display); font-size: var(--fs-h3); font-weight: 700;
  display: flex; justify-content: space-between; align-items: center; gap: var(--s4);
  min-height: 56px;
}
.section--light .acc__btn { color: var(--t-dark); }
.acc__ico { flex: none; width: 22px; height: 22px; position: relative; }
.acc__ico::before,.acc__ico::after {
  content:""; position:absolute; background: var(--teal); border-radius:2px;
  top:50%; left:0; width:100%; height:2.5px; transform: translateY(-50%);
  transition: transform var(--dur) var(--ease);
}
.acc__ico::after { transform: translateY(-50%) rotate(90deg); }
.acc__btn[aria-expanded="true"] .acc__ico::after { transform: translateY(-50%) rotate(0); }
.acc__panel { padding: 0 var(--s6) var(--s5) 0; max-width: 74ch; }
.acc__panel[hidden] { display: none; }

/* ============ header / nav ============ */
.hdr {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11,16,23,.90);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ink-line);
}
.hdr__in { display: flex; align-items: center; gap: var(--s6); min-height: 72px; }
.logo { font-family: var(--f-display); font-weight: 800; color: var(--t-hi); text-decoration: none; font-size: 1.16rem; letter-spacing: -.02em; flex: none; }
.logo span { color: var(--teal); }
.nav { display: flex; gap: var(--s5); margin-left: auto; align-items: center; }
.nav a { color: var(--t-body); text-decoration: none; font-size: var(--fs-sm); font-weight: 550; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--teal); }
.burger { display: none; background: none; border: 1.5px solid var(--ink-line); border-radius: var(--radius-sm); width: 48px; height: 48px; cursor: pointer; margin-left: auto; }
.burger span { display:block; width:20px; height:2px; background: var(--t-hi); margin: 4px auto; transition: transform var(--dur) var(--ease), opacity var(--dur); }
.burger[aria-expanded="true"] span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.burger[aria-expanded="true"] span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }
@media (max-width: 1000px) {
  .burger { display: block; }
  .nav {
    position: fixed; inset: 72px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--ink-2); border-bottom: 1px solid var(--ink-line);
    padding: var(--s4) var(--gutter) var(--s7);
    max-height: calc(100dvh - 72px); overflow-y: auto;
  }
  .nav[hidden] { display: none; }
  .nav a { padding: var(--s4) 0; border-bottom: 1px solid var(--ink-line); font-size: 1.05rem; }
  .nav .btn { margin-top: var(--s5); }
}

/* sticky mobile action bar (blueprint 2.6) */
.mobile-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  padding: var(--s3) var(--gutter) calc(var(--s3) + env(safe-area-inset-bottom));
  background: rgba(11,16,23,.96); border-top: 1px solid var(--ink-line);
  backdrop-filter: blur(12px);
}
.mobile-cta .btn { width: 100%; }
@media (max-width: 760px) { .mobile-cta { display: block; } body { padding-bottom: 84px; } }
/* hidden while the hero's own CTA is on screen — avoids two identical primary
   actions competing above the fold (Audit A defect) */
.mobile-cta--hidden { transform: translateY(110%); pointer-events: none; }
.mobile-cta { transition: transform 220ms var(--ease); }

/* Mobile hero: tighten the vertical rhythm so the hero's supporting microcopy
   is not clipped by the 844px fold (Audit C defect). */
@media (max-width: 760px) {
  .hero-copy h1 { font-size: clamp(2.1rem, 1.1rem + 6.2vw, 3.1rem); margin-bottom: var(--s3); }
  .hero-copy .lead { font-size: 1.02rem; margin-bottom: var(--s3); }
  .hero-copy ul { margin-bottom: var(--s3) !important; gap: var(--s1) var(--s4) !important; }
  .hero-copy .proofline { margin-bottom: var(--s4) !important; }
  .hero-copy .btn-row { margin-top: var(--s4) !important; }
  .hero-copy .btn { width: 100%; }
  .hero-copy .hint { margin-top: var(--s3) !important; }
}

/* ============ footer ============ */
.ftr { background: var(--ink-2); border-top: 1px solid var(--ink-line); padding-block: var(--s8) var(--s6); }
.ftr__grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: var(--s6); }
@media (max-width: 940px) { .ftr__grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px) { .ftr__grid { grid-template-columns: 1fr; } }
/* footer column labels are nav labels, not document structure — rendered as
   <p class="ftr__h"> so they cannot create an h2->h4 heading jump */
.ftr .ftr__h { font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: .13em; color: var(--t-mute); font-family: var(--f-mono); font-weight: 500; margin: 0 0 var(--s3); }
.ftr ul { list-style: none; padding: 0; }
.ftr a { color: var(--t-body); text-decoration: none; font-size: var(--fs-sm); }
.ftr a:hover { color: var(--teal); }
.ftr__bottom { margin-top: var(--s7); padding-top: var(--s5); border-top: 1px solid var(--ink-line); display: flex; flex-wrap: wrap; gap: var(--s4); justify-content: space-between; font-size: var(--fs-xs); color: var(--t-mute); }

/* ============ media ============ */
.media { border-radius: var(--radius); overflow: hidden; background: var(--ink-3); border: 1px solid var(--ink-line); }
.media img, .media video { width: 100%; display: block; }
figure { margin: 0; }
figcaption { font-size: var(--fs-xs); color: var(--t-mute); margin-top: var(--s3); }

/* ---- hero video ---- */
.hero-video { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--ink-line); background: var(--ink-3);
  box-shadow: 0 30px 80px rgba(0,0,0,.55); }
/* ambient glow so the clip floats off the page instead of sinking into it */
.hero-video::before {
  content: ""; position: absolute; inset: -14%; z-index: -1; pointer-events: none;
  background: radial-gradient(closest-side, rgba(0,194,168,.22), transparent 72%);
  filter: blur(28px);
}
.hero-video video { width: 100%; display: block; aspect-ratio: 4/3; object-fit: cover; }
/* specular lift so the clip separates from the dark page instead of muddying into it */
.hero-video::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, rgba(0,194,168,.10) 0%, transparent 45%),
              linear-gradient(0deg, rgba(11,16,23,.35) 0%, transparent 40%);
}
@media (prefers-reduced-motion: reduce) { .hero-video video { display: none; } }

/* hero grid: give the visual real weight instead of a small panel */
.hero-grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: clamp(2rem, 1rem + 3vw, 4.5rem); align-items: center; }
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  /* MOBILE: the visual must appear ABOVE the fold, not below a wall of type.
     Move it directly under the headline and keep it compact. */
  .hero-grid .hero-copy { display: contents; }
  .hero-grid > .hero-video, .hero-grid > .media { order: 2; margin-bottom: var(--s5); }
  .hero-copy > .eyebrow { order: 0; }
  .hero-copy > h1      { order: 1; }
  .hero-copy > .lead   { order: 3; }
  .hero-copy > ul      { order: 4; }
  .hero-copy > .proofline { order: 5; }
  .hero-copy > .btn-row   { order: 6; }
  .hero-copy > .hint      { order: 7; }
  .hero-video video { aspect-ratio: 16/9; }
}

/* ---- full-bleed band ---- */
.band {
  position: relative; min-height: clamp(300px, 34vw, 520px);
  display: grid; align-items: center;
  background-size: cover; background-position: center;
  border-block: 1px solid var(--ink-line);
}
.band::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(11,16,23,.93) 0%, rgba(11,16,23,.78) 45%, rgba(11,16,23,.35) 100%);
}
.band > .wrap { position: relative; z-index: 1; padding-block: var(--s8); }

/* ---- image cards: picture fills the top of the card ---- */
.card--img { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.card--img .card__media { aspect-ratio: 4/3; overflow: hidden; background: var(--ink-2); }
.card--img .card__media img { width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 420ms var(--ease); }
.card--img:hover .card__media img { transform: scale(1.035); }
.card--img .card__body { padding: var(--s5) var(--s6) var(--s6); flex: 1; }

/* ---- split feature row: alternating image / copy ---- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s8); align-items: center; }
.split--flip .split__media { order: 2; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: var(--s6); }
  .split--flip .split__media { order: 0; }
}

/* ---- image mosaic ---- */
.mosaic { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; gap: var(--s3); }
.mosaic figure { overflow: hidden; border-radius: var(--radius-sm); border: 1px solid var(--ink-line); }
.mosaic img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mosaic .tall { grid-row: span 2; }
.mosaic .wide { grid-column: span 2; }
@media (max-width: 900px) { .mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; } }
@media (max-width: 520px) { .mosaic .wide { grid-column: span 2; } .mosaic .tall { grid-row: span 1; } }

/* ============ misc ============ */
.pill { display:inline-block; font-family: var(--f-mono); font-size: var(--fs-xs); letter-spacing:.08em; text-transform: uppercase; padding: 6px 12px; border-radius:999px; border:1px solid var(--ink-line); color: var(--t-mute); }
.rule { height:1px; background: var(--ink-line); border:0; margin-block: var(--s7); }
.cta-band { background: linear-gradient(135deg, #0E1A22, #132A2B); border-block: 1px solid var(--ink-line); }
