/* ==========================================================================
   Transit Board — marketing site.
   Meridiem brand: minimal/techy — ink + paper + one vivid orange (#FF5A1F).
   Flat surfaces, monochrome with the orange used sparingly as the accent.
   ========================================================================== */

:root {
  --font-display: ui-rounded, "SF Pro Rounded", "Hiragino Maru Gothic ProN",
    "Nunito", "Baloo 2", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Meridiem palette — minimal/techy: monochrome + one vivid orange. */
  --blue: #17161A;      /* repurposed: primary = Ink */
  --blue-ink: #F7F6F3;  /* text on ink */
  --red: #C8352B;       /* functional signal only (delays/alerts) */
  --red-ink: #fff4f2;
  --orange: #FF5A1F;    /* THE accent — used sparingly */

  --ink: #17161A;
  --ink-soft: #8A8A85;

  --paper: #F7F6F3;
  --card: #FFFFFF;
  --card-solid: #FFFFFF;
  --card-line: rgba(23, 22, 26, 0.12);

  --radius: clamp(16px, 1.8vw, 22px);
  --radius-sm: 14px;
  --wrap: 1140px;
  --gutter: clamp(18px, 4vw, 40px);

  --shadow-sm: 0 2px 8px rgba(40, 30, 80, 0.10);
  --shadow-md: 0 16px 40px rgba(60, 44, 110, 0.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* The signature wash — used site-wide, brightest at the hero. */
  background: var(--paper);
}

h1, h2, h3 { line-height: 1.08; letter-spacing: -0.015em; margin: 0; }

a { color: inherit; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: #fff;
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 800;
  z-index: 100;
}
.skip-link:focus { left: 12px; }

/* ---- buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  font-family: inherit;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  padding: 0.72em 1.35em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }
.btn.full { width: 100%; }

.btn-primary {
  background: var(--blue);
  color: var(--blue-ink);
  box-shadow: 0 6px 18px rgba(23, 22, 26, 0.22);
}
.btn-primary:hover { background: #2c2b31; box-shadow: 0 10px 24px rgba(23, 22, 26, 0.28); }

.btn-secondary {
  background: var(--card-solid);
  color: var(--ink);
  border-color: var(--card-line);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { background: #fff; }

.btn-ghost {
  background: rgba(255, 255, 255, 0.5);
  color: var(--ink);
  border-color: var(--card-line);
  font-size: 0.94rem;
  padding: 0.55em 1.1em;
}
.btn-ghost:hover { background: #fff; }

@media (prefers-reduced-motion: reduce) {
  .btn:hover { transform: none; }
}

/* ---- header -------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(247, 246, 243, 0.82);
  border-bottom: 1px solid var(--card-line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 64px;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  margin-right: auto;
}
.brand-name { font-size: 1.15rem; letter-spacing: -0.02em; text-transform: lowercase; }
.brand-dot { color: var(--orange); }

.brand-pill {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  height: 28px;
  padding: 0 8px;
  background: var(--blue);
  color: var(--blue-ink);
  font-weight: 900;
  font-size: 0.95rem;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.site-nav {
  display: flex;
  gap: 22px;
  font-weight: 800;
  font-size: 0.96rem;
}
.site-nav a { text-decoration: none; color: var(--ink-soft); }
.site-nav a:hover { color: var(--ink); }

.header-cta { flex: none; }

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

/* ---- hero ---------------------------------------------------------------- */
.hero { padding: clamp(36px, 6vw, 76px) 0 clamp(30px, 5vw, 56px); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 14px;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(255, 90, 31, 0.10);
  padding: 0.4em 0.9em;
  border-radius: 999px;
}
.hero h1 {
  font-weight: 900;
  font-size: clamp(2.1rem, 6vw, 3.7rem);
}
.lede {
  margin: 18px 0 26px;
  font-size: clamp(1.05rem, 2.2vw, 1.28rem);
  font-weight: 600;
  color: var(--ink-soft);
  max-width: 34ch;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-note {
  margin: 18px 0 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink-soft);
}

/* ---- the board mock ------------------------------------------------------ */
.board-frame {
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid var(--card-line);
  border-radius: calc(var(--radius) + 8px);
  padding: clamp(10px, 1.4vw, 16px);
  box-shadow: var(--shadow-md);
}
.board-screen {
  border-radius: var(--radius);
  padding: clamp(12px, 1.8vw, 20px);
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1.2vw, 12px);
  /* the board's own inner wash, brighter at top */
  background:
    linear-gradient(180deg, #FBFAF8 0%, #F4F2ED 100%);
  border: 1px solid var(--card-line);
}
.board-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.board-place-name { display: block; font-weight: 900; font-size: clamp(1.05rem, 2.4vw, 1.5rem); line-height: 1; }
.board-place-sub { display: block; margin-top: 4px; font-weight: 700; font-size: 0.8rem; color: var(--ink-soft); }
.board-clock {
  font-weight: 800;
  font-size: clamp(1.05rem, 2.4vw, 1.5rem);
  font-variant-numeric: tabular-nums;
  background: var(--card);
  border: 1px solid var(--card-line);
  padding: 0.12em 0.5em;
  border-radius: 999px;
}

.board-leave {
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin: 10px 0;
  padding: 0.5em 0.7em;
  border-radius: 12px;
  background: var(--card);
  border: 1px solid var(--card-line);
  font-weight: 800;
  font-size: clamp(0.82rem, 1.9vw, 1.02rem);
  color: var(--ink);
}
.board-leave-dot {
  width: 0.62em;
  height: 0.62em;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 90, 31, 0.16);
  flex: none;
}

.board-rows { display: flex; flex-direction: column; gap: 7px; }

.brow {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(8px, 1.4vw, 14px);
  padding: clamp(7px, 1vw, 11px) clamp(9px, 1.2vw, 14px);
  background: var(--card);
  border: 1px solid var(--card-line);
  border-radius: var(--radius-sm);
}
.bpill {
  display: inline-grid;
  place-items: center;
  min-width: clamp(38px, 5vw, 52px);
  padding: 0.16em 0.4em;
  font-weight: 900;
  font-size: clamp(1.05rem, 2.6vw, 1.7rem);
  color: #fff;
  border-radius: 999px;
  font-variant-numeric: tabular-nums;
  box-shadow: 0 2px 8px rgba(40, 30, 80, 0.18);
}
.axis-ns .bpill { background: var(--blue); color: var(--blue-ink); }
.axis-ew .bpill { background: var(--ink); color: var(--blue-ink); }

.bdest { display: flex; align-items: baseline; gap: 0.4em; min-width: 0; }
.barrow { font-weight: 900; font-size: clamp(1rem, 2.2vw, 1.4rem); color: var(--ink-soft); }
.bname {
  font-weight: 800;
  font-size: clamp(1rem, 2.4vw, 1.55rem);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btimes {
  display: flex;
  align-items: center;
  gap: 0.28em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  justify-self: end;
}
.bt { display: inline-flex; align-items: center; gap: 2px; }
.wico { height: clamp(16px, 2.4vw, 22px); width: auto; color: var(--ink); flex: none; }
.wico + .wico { margin-left: -3px; }
.bcar { font-size: clamp(15px, 2.3vw, 21px); line-height: 1; margin-right: 1px; }
.bnum { font-weight: 900; font-size: clamp(1.15rem, 3vw, 1.85rem); line-height: 1; }
.bsep { font-weight: 900; font-size: clamp(1rem, 2vw, 1.4rem); }
.bunit { font-weight: 700; font-size: clamp(0.7rem, 1.4vw, 0.9rem); color: var(--ink-soft); margin-left: 0.3em; }

.board-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink-soft);
}
.bstatus { display: inline-flex; align-items: center; gap: 0.45em; }
.bdot {
  width: 9px; height: 9px; border-radius: 999px;
  background: #37a869;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5);
}
.bbrand { letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.7; }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .lede { max-width: none; }
  .board-frame { max-width: 520px; }
}

/* ---- generic section ----------------------------------------------------- */
.section { padding: clamp(44px, 8vw, 88px) 0; }
.section-title {
  font-weight: 900;
  font-size: clamp(1.7rem, 4.4vw, 2.6rem);
  text-align: center;
}
.section-sub {
  margin: 12px auto 40px;
  text-align: center;
  font-size: clamp(1rem, 2vw, 1.18rem);
  font-weight: 600;
  color: var(--ink-soft);
  max-width: 46ch;
}

.card {
  background: var(--card);
  border: 1px solid var(--card-line);
  border-radius: var(--radius);
  backdrop-filter: blur(4px);
  box-shadow: var(--shadow-sm);
}

/* ---- how it works -------------------------------------------------------- */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 3vw, 26px);
  counter-reset: step;
}
.step {
  position: relative;
  padding: clamp(22px, 3vw, 32px);
  text-align: left;
}
.step-num {
  display: inline-grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 999px;
  background: var(--blue);
  color: var(--blue-ink);
  font-weight: 900;
  font-size: 1rem;
  margin-bottom: 16px;
}
.step-ico { width: 64px; height: 64px; margin-bottom: 14px; }
.step-ico svg { width: 100%; height: 100%; }
.step h3 { font-weight: 900; font-size: 1.2rem; margin-bottom: 8px; }
.step p { margin: 0; color: var(--ink-soft); font-weight: 600; }

@media (max-width: 820px) {
  .steps { grid-template-columns: 1fr; }
  .step-ico { position: absolute; top: clamp(22px, 3vw, 32px); right: clamp(22px, 3vw, 32px); width: 48px; height: 48px; margin: 0; }
}

/* ---- products ------------------------------------------------------------ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.6vw, 24px);
  align-items: start;
}
.product {
  padding: clamp(22px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.product.featured {
  border-color: rgba(23, 22, 26, 0.35);
  box-shadow: 0 18px 44px rgba(23, 22, 26, 0.14);
  background: rgba(255, 255, 255, 0.72);
}
.product-tag {
  align-self: flex-start;
  font-weight: 800;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: rgba(120, 110, 160, 0.12);
  padding: 0.35em 0.75em;
  border-radius: 999px;
  margin-bottom: 14px;
}
.product h3 { font-weight: 900; font-size: 1.4rem; margin-bottom: 10px; }
.product-desc { color: var(--ink-soft); font-weight: 600; margin: 0 0 16px; }
.product-list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-list li {
  position: relative;
  padding-left: 26px;
  font-weight: 700;
  font-size: 0.96rem;
}
.product-list li::before {
  content: "";
  position: absolute;
  left: 4px; top: 0.5em;
  width: 10px; height: 6px;
  border-left: 2.5px solid var(--blue);
  border-bottom: 2.5px solid var(--blue);
  transform: rotate(-45deg);
}

.tier {
  border-top: 1px solid var(--card-line);
  padding: 12px 0;
}
.tier-name { display: block; font-weight: 900; font-size: 1.02rem; }
.tier-detail { display: block; color: var(--ink-soft); font-weight: 600; font-size: 0.92rem; }
.tier-paid .tier-name { color: var(--blue); }

.price {
  margin: 8px 0 18px;
  font-weight: 800;
  font-size: 1.05rem;
}
.price span:first-of-type { font-size: 1.2rem; }
.price-note {
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--ink-soft);
}
.product .btn { margin-top: auto; }

@media (max-width: 880px) {
  .product-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
}

/* ---- features ------------------------------------------------------------ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2.2vw, 20px);
}
.feature { padding: clamp(18px, 2.4vw, 26px); }
.feature h3 { font-weight: 900; font-size: 1.08rem; margin-bottom: 8px; }
.feature p { margin: 0; color: var(--ink-soft); font-weight: 600; font-size: 0.95rem; }

@media (max-width: 900px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .feature-grid { grid-template-columns: 1fr; } }

/* ---- closer -------------------------------------------------------------- */
.closer { padding-top: 0; }
.closer-inner {
  padding: clamp(30px, 5vw, 56px);
  text-align: center;
}
.closer-inner h2 { font-weight: 900; font-size: clamp(1.6rem, 4vw, 2.4rem); }
.closer-inner p { margin: 12px 0 24px; color: var(--ink-soft); font-weight: 600; font-size: 1.1rem; }
.closer-inner .hero-ctas { justify-content: center; }

/* ---- footer -------------------------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--card-line);
  background: rgba(255, 255, 255, 0.35);
  padding: 36px 0 44px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding-bottom: 20px;
}
.footer-brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; }
.footer-nav { display: flex; gap: 20px; font-weight: 800; font-size: 0.94rem; }
.footer-nav a { text-decoration: none; color: var(--ink-soft); }
.footer-nav a:hover { color: var(--ink); }

.footer-legal {
  border-top: 1px solid var(--card-line);
  padding-top: 20px;
}
.footer-legal p { margin: 0 0 8px; font-size: 0.86rem; color: var(--ink-soft); font-weight: 600; }
.footer-legal strong { color: var(--ink); }
.footer-copy { opacity: 0.85; }

/* ===== Multi-page additions ===== */
.page-head { padding-top: 3.2rem; }
.page-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0.4rem 0 0.8rem;
}
.site-nav a[aria-current="page"] {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.waitlist-form {
  display: flex; gap: 0.6rem; flex-wrap: wrap;
  max-width: 520px; margin: 0.6rem auto 0;
}
.waitlist-form input {
  flex: 1 1 220px; min-width: 0;
  font: inherit; font-weight: 700;
  padding: 0.7rem 1rem;
  border-radius: 12px;
  border: 1.5px solid rgba(120, 110, 160, 0.28);
  background: #fff; color: var(--ink);
}
.waitlist-form input:focus { outline: none; border-color: var(--orange); }
.form-note {
  font-size: 0.82rem; color: #5b5675;
  margin-top: 0.7rem; text-align: center;
}
.btn[aria-disabled="true"] { opacity: 0.55; pointer-events: none; }
.product .btn.full + .btn.full { margin-top: 0.55rem; }

/* ---- lead form (business page) ------------------------------------------ */
.lead-form {
  display: flex; flex-direction: column; gap: 0.8rem;
  max-width: 560px; margin: 1.1rem auto 0; text-align: left;
}
.lead-row { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.lead-field {
  flex: 1 1 220px; min-width: 0;
  display: flex; flex-direction: column; gap: 0.3rem;
  font-weight: 800; font-size: 0.86rem; color: var(--ink);
}
.lead-opt { font-weight: 700; color: var(--ink-soft); }
.lead-field input,
.lead-field select,
.lead-field textarea {
  font: inherit; font-weight: 600;
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  border: 1.5px solid rgba(120, 110, 160, 0.28);
  background: #fff; color: var(--ink);
}
.lead-field textarea { resize: vertical; }
.lead-field input:focus,
.lead-field select:focus,
.lead-field textarea:focus { outline: none; border-color: var(--blue); }
.lead-form .btn { align-self: flex-start; margin-top: 0.2rem; }

/* ---- business nudge (homepage) ------------------------------------------ */
.biz-nudge {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.2rem; flex-wrap: wrap; padding: clamp(18px, 3vw, 28px);
}
.biz-nudge h3 { font-size: clamp(1.1rem, 2.4vw, 1.4rem); }
.biz-nudge p { margin: 0.3rem 0 0; color: var(--ink-soft); font-weight: 600; max-width: 52ch; }
.biz-nudge .btn { flex: none; }

/* ---- smart-border demo (preorder page) ---------------------------------- */
/* A picture-frame: the board fills the middle ~85%, thin widget strips frame
   it — a top status row, side rails, and a scrolling news ticker along the
   bottom edge. */
.frame-demo {
  display: flex;
  flex-direction: column;
  gap: 7px;
  max-width: 660px;
  margin: 1.4rem auto 0;
  aspect-ratio: 16 / 10;
  padding: 8px;
  border-radius: 20px;
  background: #E9E6DF;
  border: 1px solid var(--card-line);
}
.frame-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 6px;
  min-height: 30px;
  font-weight: 800;
  font-size: clamp(0.6rem, 1.4vw, 0.78rem);
  color: var(--ink-soft);
}
.frame-mid { flex: 1; display: flex; gap: 7px; min-height: 0; }
.frame-rail {
  flex: 0 0 15%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 6px;
  overflow: hidden;
}
.frame-rail span {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--card-line);
  border-radius: 9px;
  padding: 0.45em 0.25em;
  text-align: center;
  font-weight: 700;
  font-size: clamp(0.48rem, 1.1vw, 0.64rem);
  color: var(--ink-soft);
  line-height: 1.3;
}
.frame-rail b { display: block; color: var(--ink); font-weight: 900; font-size: 1.15em; }
.frame-core {
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0.4em;
  text-align: center;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 14px 34px rgba(30, 20, 60, 0.28);
}
.frame-core-title { font-weight: 900; font-size: clamp(0.72rem, 2.2vw, 1.25rem); }
.frame-core-sub { font-weight: 700; font-size: clamp(0.6rem, 1.4vw, 0.78rem); color: #cfe6d3; }
/* Bottom edge: a dark, scrolling news/alert ticker. */
.frame-ticker {
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  border-radius: 9px;
  padding: 0;
}
.frame-ticker-text {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  font-weight: 800;
  font-size: clamp(0.58rem, 1.35vw, 0.74rem);
  animation: ticker 22s linear infinite;
}
@keyframes ticker { to { transform: translateX(-100%); } }
@media (prefers-reduced-motion: reduce) {
  .frame-ticker-text { animation: none; padding-left: 8px; }
}

/* ---- comparison table (products page) ----------------------------------- */
.compare-wrap { overflow-x: auto; margin-top: 1.4rem; -webkit-overflow-scrolling: touch; }
.compare {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: var(--card-solid);
  border: 1px solid var(--card-line);
  border-radius: var(--radius);
  overflow: hidden;
}
.compare th, .compare td { padding: 0.7em 0.9em; text-align: center; border-bottom: 1px solid var(--card-line); }
.compare thead th {
  font-size: 0.92rem;
  font-weight: 900;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.5);
  vertical-align: bottom;
}
.compare thead th span {
  display: block;
  font-weight: 700;
  font-size: 0.72rem;
  color: var(--ink-soft);
  margin-top: 2px;
}
.compare tbody th {
  text-align: left;
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--ink);
  max-width: 320px;
}
.compare td { font-weight: 900; color: var(--orange); font-size: 1.05rem; }
.compare td.no { color: rgba(120, 110, 160, 0.5); font-weight: 700; }
.compare .col-hi { background: rgba(255, 90, 31, 0.10); }
.compare tbody .col-hi { background: rgba(255, 90, 31, 0.07); }
.compare tbody tr:last-child th, .compare tbody tr:last-child td { border-bottom: none; }
.compare .row-sep th, .compare .row-sep td { border-top: 2px solid rgba(23, 22, 26, 0.14); }
/* Extend the Pro/Hardware column highlight down through the body rows. */
.compare tbody td:nth-child(4), .compare tbody td:nth-child(5) { background: rgba(255, 90, 31, 0.07); }

/* ---- Meridiem brand band (dark, with the sunrise lockup) ---------------- */
.brand-band {
  background: var(--ink);
  border-radius: calc(var(--radius) + 6px);
  padding: clamp(36px, 6vw, 64px) clamp(20px, 4vw, 40px);
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.brand-band-logo { width: min(360px, 82%); height: auto; }
.brand-band-tag {
  color: #B9B8B2; font-weight: 600;
  font-size: clamp(1rem, 2.2vw, 1.22rem); margin: 0;
}
.brand-band .hero-ctas { justify-content: center; }
.brand-band .btn-primary { background: var(--orange); color: #17161A; box-shadow: 0 6px 18px rgba(255,90,31,0.3); }
.brand-band .btn-primary:hover { background: #ff6a33; }
.brand-band .btn-ghost { background: transparent; color: var(--blue-ink); border-color: rgba(247,246,243,0.28); }
.brand-band .btn-ghost:hover { background: rgba(247,246,243,0.10); }
