/* ===========================================================================
   CTW Distribution — main stylesheet (mobile-first)
   Recreates design/CTW Homepage.dc.html + global header/footer.
   =========================================================================== */

/* ---------- reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-ui);
  color: var(--ink);
  background: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; display: block; }
a { color: var(--cobalt); text-decoration: none; }
a:hover { color: var(--cobalt-deep); }
h1, h2, h3, p { margin: 0; }
button { font-family: inherit; }

/* ---------- layout ---------- */
.wrap { max-width: var(--wrap); margin: 0 auto; padding-inline: var(--pad); }
@media (min-width: 1000px) { .wrap { padding-inline: var(--pad-lg); } }

.section { padding-block: 48px; }
@media (min-width: 1000px) { .section { padding-block: 64px; } }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cobalt);
  margin-bottom: 8px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: 16px; line-height: 1;
  padding: 15px 24px; border-radius: var(--r-btn);
  border: 1.5px solid transparent; cursor: pointer;
  transition: background .15s var(--ease), color .15s var(--ease), border-color .15s var(--ease);
  min-height: 44px;
}
.btn-primary { background: var(--cobalt); color: #fff; }
.btn-primary:hover { background: var(--cobalt-deep); color: #fff; }
.btn-secondary { background: #fff; color: var(--ink); border-color: var(--hair-2); }
.btn-secondary:hover { color: var(--ink); border-color: var(--ink); }
.btn-white { background: #fff; color: var(--ink); font-weight: 800; }
.btn-white:hover { color: var(--ink); background: #f1f1f1; }
.btn-sm { font-size: 14px; padding: 11px 18px; }
.btn-block { width: 100%; }

/* ---------- chips / badges ---------- */
.chip-lock {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; color: var(--cobalt);
  background: var(--cobalt-tint); padding: 6px 10px; border-radius: 8px;
}
.tag-mono {
  font-family: var(--font-mono); font-size: 8.5px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--cobalt); background: var(--cobalt-tint);
  padding: 3px 6px; border-radius: 6px; white-space: nowrap;
}

/* ===========================================================================
   HEADER
   =========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hair);
}
.site-header > .wrap {
  height: 64px; display: flex; align-items: center; gap: 20px;
}
@media (min-width: 1000px) { .site-header > .wrap { height: 74px; gap: 28px; } }

/* logo */
.logo { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo__tile {
  width: 34px; height: 34px; border-radius: var(--r-tile); background: var(--cobalt);
  display: flex; align-items: center; justify-content: center;
}
.logo__word {
  font-weight: 800; font-size: 21px; letter-spacing: -0.05em; color: var(--ink);
  display: inline-flex; align-items: flex-end;
}
.logo__dot { width: 5px; height: 5px; border-radius: 50%; background: var(--cobalt); margin-left: 3px; margin-bottom: 4px; }
@media (min-width: 1000px) { .logo__word { font-size: 23px; } .logo__tile { width: 36px; height: 36px; } }

/* desktop nav + dropdowns */
.nav { display: none; }
@media (min-width: 1000px) {
  .nav { display: flex; align-items: center; gap: 22px; font-size: 14.5px; font-weight: 600; }
  .nav-top { color: var(--nav); display: inline-flex; align-items: center; gap: 5px; }
  .nav-top:hover, .nav .is-active { color: var(--cobalt); }
  .nav-caret { font-size: 10px; opacity: .85; transition: transform .14s var(--ease); }
  .nav-item { position: relative; display: inline-flex; }
  .nav-item:hover .nav-caret, .nav-item:focus-within .nav-caret { transform: rotate(180deg); color: var(--cobalt); }
  .nav-dropdown {
    position: absolute; top: 100%; left: 0; margin-top: 12px;
    background: #fff; border: 1px solid var(--hair); border-radius: 14px;
    box-shadow: 0 24px 50px -26px rgba(20, 20, 25, .30);
    padding: 14px; opacity: 0; visibility: hidden; transform: translateY(-6px);
    transition: opacity .14s var(--ease), transform .14s var(--ease), visibility .14s; z-index: 60;
  }
  .nav-dropdown::before { content: ""; position: absolute; top: -12px; left: 0; right: 0; height: 12px; } /* hover bridge */
  .nav-item:hover .nav-dropdown, .nav-item:focus-within .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-dropdown--single { min-width: 210px; display: flex; flex-direction: column; gap: 2px; }
  .nav-dropdown--single a { padding: 9px 12px; border-radius: 9px; font-size: 14px; font-weight: 600; color: var(--nav); }
  .nav-dropdown--single a:hover { background: var(--cobalt-tint); color: var(--cobalt); }
  .nav-dropdown--mega { display: grid; grid-template-columns: repeat(3, minmax(158px, 1fr)); gap: 6px 26px; padding: 18px 20px; }
  .nav-col { display: flex; flex-direction: column; gap: 2px; }
  .nav-col__head { font-weight: 800; font-size: 13px; color: var(--ink); padding: 6px 8px; border-radius: 8px; letter-spacing: -0.01em; }
  .nav-col__head:hover { color: var(--cobalt); }
  .nav-col__item { padding: 7px 8px; font-size: 13.5px; font-weight: 600; color: var(--slate); border-radius: 8px; }
  .nav-col__item:hover { background: var(--cobalt-tint); color: var(--cobalt); }
}
.header-actions { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.dealer-login { display: none; }
@media (min-width: 1000px) { .dealer-login { display: inline; font-size: 14px; font-weight: 700; color: var(--ink); } }

/* mobile menu toggle */
.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border: 1px solid var(--hair); border-radius: 10px;
  background: #fff; cursor: pointer; padding: 0;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 2px; position: relative;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
@media (min-width: 1000px) { .nav-toggle { display: none; } }

/* mobile panel */
.mobile-nav { display: none; border-top: 1px solid var(--hair); background: #fff; }
.mobile-nav.is-open { display: block; }
.mobile-nav .wrap { display: block; height: auto; padding-block: 8px 20px; } /* not the flex header bar */
.mobile-nav a { display: block; width: 100%; color: var(--nav); }
.mobile-nav a:hover { color: var(--cobalt); }

/* leaf top-level items (Payments, Resources, About, Contact, Dealer Login) */
.mobile-nav .mnav-top { padding: 14px 0; font-size: 16px; font-weight: 700; border-bottom: 1px solid var(--hair-3); }

/* accordion groups (Carriers, Shop) — collapsed by default via <details> */
.m-acc { border-bottom: 1px solid var(--hair-3); }
.m-acc > summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 0; font-size: 16px; font-weight: 700; color: var(--nav); }
.m-acc > summary::-webkit-details-marker { display: none; }
.m-acc > summary::after { content: "▾"; color: var(--cobalt); font-size: 12px; transition: transform .15s var(--ease); }
.m-acc[open] > summary::after { transform: rotate(180deg); }
.m-acc__panel { padding: 2px 0 8px; }
.m-acc__link { padding: 9px 0 9px 16px; font-size: 15px; font-weight: 600; color: var(--slate); }
.m-acc__link--group { font-weight: 700; color: var(--nav); padding-top: 11px; padding-bottom: 11px; }

/* nested groups (Shop → SIM Cards / Phones) */
.m-acc--nested { border-bottom: 0; }
.m-acc--nested > summary { padding: 11px 0 11px 16px; font-size: 15px; font-weight: 700; color: var(--ink); }
.m-acc--nested > summary::after { font-size: 11px; }
.m-acc--nested .m-acc__panel { padding: 0 0 4px; }
.m-acc__link--deep { padding-left: 30px; font-size: 14px; }

.mobile-nav .mobile-cta { margin: 16px 0 4px; color: #fff; }
@media (min-width: 1000px) { .mobile-nav { display: none !important; } }

/* ===========================================================================
   HERO
   =========================================================================== */
.hero { background: linear-gradient(180deg, var(--paper), #fff); }
.hero .wrap { padding-block: 44px; display: grid; gap: 32px; align-items: center; }
@media (min-width: 1000px) {
  .hero .wrap { grid-template-columns: 1.05fr 0.95fr; gap: 40px; padding-block: 70px; }
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cobalt-tint); color: var(--cobalt-ink);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 7px 12px; border-radius: 99px; margin-bottom: 20px;
}
.hero__eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cobalt); }
.hero h1 {
  font-size: clamp(34px, 8vw, 56px); font-weight: 800; letter-spacing: -0.04em;
  line-height: 0.99; margin-bottom: 18px; max-width: 12ch; text-wrap: balance;
}
.hero__sub { font-size: clamp(16px, 2.4vw, 18px); line-height: 1.55; color: var(--body); max-width: 48ch; margin-bottom: 26px; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.hero__ctas .btn { flex: 1 1 auto; }
@media (min-width: 560px) { .hero__ctas .btn { flex: 0 0 auto; } }
.hero__badge img { width: 210px; height: auto; }
.hero__visual {
  position: relative; margin: 0; overflow: hidden;
  width: 100%; aspect-ratio: 16 / 11; border-radius: 18px; border: 1px solid var(--hair-2);
  background: var(--paper);
}
.hero__visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
/* subtle on-brand cobalt wash */
.hero__visual::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(158deg, rgba(47,107,255,0.30) 0%, rgba(47,107,255,0.09) 46%, rgba(22,24,28,0.06) 100%);
}
@media (min-width: 1000px) { .hero__visual { aspect-ratio: auto; height: 400px; } }

/* ===========================================================================
   CARRIER STRIP
   =========================================================================== */
.carriers { background: var(--strip-bg); }
.carriers .wrap { padding-block: 40px; }
.carriers__label {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--footer-muted); text-align: center; margin-bottom: 20px;
}
.carriers__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 720px) { .carriers__grid { grid-template-columns: repeat(4, 1fr); gap: 14px; } }
.carrier-tile {
  background: var(--strip-card); border: 1px solid var(--strip-card-border); border-radius: 12px;
  height: 88px; padding: 12px; display: flex; align-items: center; justify-content: center;
  transition: border-color .15s var(--ease);
}
.carrier-tile:hover { border-color: var(--cobalt); }
@media (min-width: 1000px) { .carrier-tile { height: 100px; } }

/* ===========================================================================
   WHY CTW
   =========================================================================== */
.why h2, .how h2, .shop-preview h2, .seo h2, .section-h2 {
  font-size: clamp(28px, 5vw, 36px); font-weight: 800; letter-spacing: -0.03em;
}
.section-h2 { margin-bottom: 14px; }
.why h2 { margin-bottom: 28px; }
.why__grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 560px) { .why__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .why__grid { grid-template-columns: repeat(5, 1fr); gap: 16px; } }
.vcard { border: 1px solid var(--hair); border-radius: var(--r-card); padding: 22px; }
.vcard__icon {
  width: 42px; height: 42px; border-radius: 11px; background: var(--cobalt-tint);
  display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 14px;
}
.vcard h3 { font-weight: 800; font-size: 16px; margin-bottom: 6px; }
.vcard p { font-size: 13.5px; line-height: 1.5; color: var(--slate); }
.vcard--feature { border: 1.5px solid var(--cobalt); background: var(--cobalt-tint-bg); }
.vcard--feature .vcard__head { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 14px; }
.vcard--feature .vcard__icon { background: var(--cobalt); margin-bottom: 0; }
.vcard--feature p { color: var(--body); }

/* ===========================================================================
   HOW IT WORKS
   =========================================================================== */
.how { background: var(--paper); }
.how h2 { margin-bottom: 28px; }
.how__grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 720px) { .how__grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.step { background: #fff; border: 1px solid var(--hair); border-radius: var(--r-card); padding: 26px; }
.step__num {
  width: 44px; height: 44px; border-radius: 50%; background: var(--cobalt); color: #fff;
  font-weight: 800; font-size: 18px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.step:last-child .step__num { background: var(--ink); }
.step h3 { font-weight: 800; font-size: 19px; margin-bottom: 6px; }
.step p { font-size: 15px; line-height: 1.5; color: var(--slate); }

/* ===========================================================================
   SHOP PREVIEW
   =========================================================================== */
.shop-preview__head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 20px; }
.shop-preview__head a { font-size: 15px; font-weight: 700; }
.shop-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 560px) { .shop-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
.pcard { border: 1px solid var(--hair); border-radius: var(--r-card); overflow: hidden; background: #fff; }
.pcard__img {
  height: 180px;
  background: repeating-linear-gradient(45deg, var(--stripe-a), var(--stripe-a) 11px, var(--stripe-b) 11px, var(--stripe-b) 22px);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 11px; color: var(--stripe-label);
}
.pcard__body { padding: 18px; }
.pcard__body h3 { font-weight: 700; font-size: 17px; }
.pcard__body .chip-lock { margin-top: 10px; }

/* ===========================================================================
   SEO BLOCK
   =========================================================================== */
.seo { background: var(--paper); }
.seo .wrap { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 1000px) { .seo .wrap { grid-template-columns: 0.8fr 1.2fr; gap: 40px; } }
.seo h2 { line-height: 1.05; }
.seo__body { display: flex; flex-direction: column; gap: 14px; font-size: 15.5px; line-height: 1.65; color: var(--body); }

/* ===========================================================================
   CTA BAND
   =========================================================================== */
.cta-band {
  background: var(--cobalt);
  background-image: radial-gradient(circle at 82% 10%, rgba(255,255,255,0.14), transparent 45%);
  text-align: center;
}
.cta-band .wrap { padding-block: 56px; }
.cta-band h2 { font-size: clamp(28px, 5.5vw, 38px); font-weight: 800; letter-spacing: -0.03em; color: #fff; margin-bottom: 10px; }
.cta-band p { font-size: 17px; color: #DCE5FF; margin-bottom: 24px; }

/* ===========================================================================
   FOOTER
   =========================================================================== */
.site-footer { background: var(--footer-bg); color: var(--footer-text); }
.site-footer .wrap { padding-top: 48px; padding-bottom: 32px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 30px; }
@media (min-width: 560px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr 1.3fr; gap: 32px; } }
.footer-brand .logo__word { color: #fff; }
.footer-brand p { font-size: 13.5px; line-height: 1.55; color: var(--footer-muted); max-width: 240px; margin: 14px 0 12px; }
.footer-contact { font-family: var(--font-mono); font-size: 12px; color: #8b93a0; line-height: 1.7; }
.footer-brand .wdg { display: inline-block; margin-top: 16px; }
.footer-brand .wdg img { width: 190px; height: auto; }
.footer-col { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer-col a { color: var(--footer-text); }
.footer-col a:hover { color: #fff; }
.footer-label {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--footer-label);
}
.footer-col .soon { color: var(--footer-label); }
.footer-col .strong { color: #fff; font-weight: 700; }
.newsletter { margin-top: 2px; }
.newsletter__label { font-size: 12px; color: var(--footer-muted); margin-bottom: 8px; }
.newsletter__row { display: flex; gap: 7px; }
.newsletter__row input {
  flex: 1; min-width: 0; background: #1b1e25; border: 1px solid var(--strip-card-border); border-radius: 9px;
  padding: 10px 12px; color: #fff; font-family: var(--font-ui); font-size: 13px; outline: none;
}
.newsletter__row button { background: var(--cobalt); color: #fff; font-weight: 700; font-size: 13px; padding: 10px 16px; border-radius: 9px; border: 0; cursor: pointer; }
.footer-bottom {
  border-top: 1px solid var(--footer-div); margin-top: 30px; padding-top: 20px;
  font-size: 12.5px; color: var(--footer-label);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.footer-bottom a { color: var(--footer-label); }
.footer-bottom a:hover { color: var(--footer-text); }

/* ---------- utilities ---------- */
.screen-reader-text {
  border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%);
  height: 1px; width: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute;
}
.ctw-ph {
  background: repeating-linear-gradient(45deg, var(--stripe-a), var(--stripe-a) 11px, var(--stripe-b) 11px, var(--stripe-b) 22px);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 12px; color: var(--stripe-label);
}

/* ---------- a11y ---------- */
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--cobalt); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0; z-index: 100; }
.skip-link:focus { left: 0; color: #fff; }
:focus-visible { outline: 3px solid var(--cobalt); outline-offset: 2px; }

/* ===========================================================================
   CARRIER LANDING TEMPLATE  (single-carrier.php)
   =========================================================================== */
.breadcrumb { font-family: var(--font-mono); font-size: 12px; color: var(--muted); margin-bottom: 22px; }
.breadcrumb a { color: var(--cobalt); }

.carrier-hero { background: linear-gradient(180deg, var(--paper), #fff); }
.carrier-hero .wrap { padding-top: 28px; padding-bottom: 48px; }
.carrier-hero__grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
@media (min-width: 1000px) { .carrier-hero__grid { grid-template-columns: 1.1fr 0.9fr; gap: 48px; } .carrier-hero .wrap { padding-bottom: 64px; } }
.carrier-hero h1 { font-size: clamp(32px, 7vw, 54px); font-weight: 800; letter-spacing: -0.04em; line-height: 0.99; margin-bottom: 18px; max-width: 12ch; text-wrap: balance; }

/* quick-facts card */
.facts-card { background: #fff; border: 1px solid var(--hair-2); border-radius: 20px; padding: 22px; box-shadow: 0 30px 60px -40px rgba(20,20,25,0.3); }
@media (min-width: 560px) { .facts-card { padding: 28px; } }
.facts-card__logo {
  height: 148px; border-radius: 14px; margin-bottom: 20px; background: #fff; border: 1px solid var(--hair);
  display: flex; align-items: center; justify-content: center; padding: 18px;
}

/* carrier logo chips — auto contrast per background (see inc/carriers.php) */
.clogo { display: inline-flex; align-items: center; justify-content: center; max-width: 100%; }
.clogo img { display: block; max-width: 100%; }
.clogo--chip-dark  { background: var(--ink); border-radius: 10px; padding: 10px 16px; }
.clogo--chip-light { background: #fff;       border-radius: 10px; padding: 8px 14px; }
.clogo__name { font-weight: 800; font-size: 20px; letter-spacing: -0.03em; }
/* On the dark carrier strip the chip fills the tile for a uniform logo card. */
.carrier-tile .clogo { width: 100%; height: 100%; }
.carrier-tile .clogo--chip-light { width: 100%; height: 100%; padding: 10px 18px; border-radius: 9px; }
.facts-card__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.fact { border: 1px solid var(--hair); border-radius: 12px; padding: 14px; }
.fact__label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.fact__value { font-weight: 800; font-size: 17px; margin-top: 4px; }
.fact--gated { background: var(--cobalt-tint-bg); border-color: var(--cobalt-tint-border); }
.fact--gated .fact__label, .fact--gated .fact__value { color: var(--cobalt); }
.fact--gated .fact__value { font-size: 14px; }

/* why sell — 4-up */
.why4-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 560px) { .why4-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (min-width: 1000px) { .why4-grid { grid-template-columns: repeat(4, 1fr); } }

/* plans */
.carrier-plans { background: var(--paper); }
.carrier-plans__note { font-size: 16px; color: var(--slate); margin: 8px 0 28px; }
.plan-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 720px) { .plan-grid { grid-template-columns: repeat(3, 1fr); } }
.plan-card { position: relative; background: #fff; border: 1px solid var(--hair); border-radius: var(--r-card); padding: 26px; }
.plan-card--best { border: 1.5px solid var(--cobalt); }
.plan-card__flag {
  position: absolute; top: -11px; left: 26px; background: var(--cobalt); color: #fff;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 7px;
}
.plan-card__tier { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.plan-card__name { font-weight: 800; font-size: 22px; margin: 6px 0 6px; letter-spacing: -0.02em; }
.plan-card__price { font-weight: 800; font-size: 26px; letter-spacing: -0.02em; margin: 0 0 2px; }
.plan-card__retail { font-family: var(--font-mono); font-size: 10px; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.plan-card__note { font-size: 12.5px; line-height: 1.4; color: var(--slate); margin: 0 0 6px; }
.plan-card__features { list-style: none; margin: 14px 0 20px; padding: 0; display: flex; flex-direction: column; gap: 9px; font-size: 14px; color: var(--body); }
.plan-card__features li::before { content: "✓ "; color: var(--cobalt); font-weight: 700; }
.plan-card__gate { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--cobalt); background: var(--cobalt-tint); padding: 11px 12px; border-radius: 10px; }

/* how-to-start extras */
.carrier-related { margin-top: 24px; font-size: 15px; font-weight: 700; }

/* coverage (dark) */
.carrier-coverage { background: var(--strip-bg); color: #E8EAEE; }
.carrier-coverage .wrap { padding-block: 52px; display: grid; grid-template-columns: 1fr; gap: 28px; align-items: center; }
@media (min-width: 1000px) { .carrier-coverage .wrap { grid-template-columns: 0.9fr 1.1fr; gap: 40px; padding-block: 56px; } }
.eyebrow--dark { color: var(--footer-muted); }
.carrier-coverage h2 { font-size: clamp(26px, 5vw, 32px); font-weight: 800; letter-spacing: -0.03em; color: #fff; margin-bottom: 14px; }
.carrier-coverage p { font-size: 15.5px; line-height: 1.6; color: var(--footer-text); }
.carrier-coverage__map {
  min-height: 220px; border-radius: 16px; border: 1px solid var(--strip-card-border);
  background: repeating-linear-gradient(45deg, #20242C, #20242C 12px, #262b34 12px, #262b34 24px);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 12px; color: var(--footer-label);
}
@media (min-width: 1000px) { .carrier-coverage__map { height: 260px; } }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 760px; }
.faq-item { border: 1px solid var(--hair); border-radius: 12px; padding: 4px 18px; background: #fff; }
.faq-item summary { list-style: none; cursor: pointer; font-weight: 700; font-size: 16px; padding: 14px 0; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--cobalt); font-size: 22px; font-weight: 700; line-height: 1; }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { margin: 0 0 14px; font-size: 15px; line-height: 1.6; color: var(--body); }

/* ===========================================================================
   CARRIERS HUB  (archive-carrier.php)
   =========================================================================== */
.hub-hero { background: linear-gradient(180deg, var(--paper), #fff); }
.hub-hero .wrap { padding-top: 44px; padding-bottom: 8px; }
.hub-hero h1 { font-size: clamp(32px, 7vw, 52px); font-weight: 800; letter-spacing: -0.04em; line-height: 1.0; margin-bottom: 16px; max-width: 16ch; text-wrap: balance; }
.hub-hero__sub { font-size: clamp(16px, 2.4vw, 18px); line-height: 1.55; color: var(--body); max-width: 60ch; }
.hub-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 560px) { .hub-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (min-width: 1000px) { .hub-grid { grid-template-columns: repeat(3, 1fr); } }
.hub-card { display: flex; flex-direction: column; border: 1px solid var(--hair); border-radius: var(--r-card); padding: 22px; background: #fff; transition: border-color .15s var(--ease), transform .15s var(--ease); }
.hub-card:hover { border-color: var(--cobalt); transform: translateY(-2px); }
.hub-card__logo {
  height: 118px; border-radius: 12px; margin-bottom: 16px; padding: 18px; display: flex; align-items: center; justify-content: center;
  background: #fff; border: 1px solid var(--hair);
}
.hub-card__name { font-weight: 800; font-size: 22px; letter-spacing: -0.02em; color: var(--nav); }
.hub-card__meta { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cobalt); margin-bottom: 8px; }
.hub-card__blurb { font-size: 14px; line-height: 1.55; color: var(--slate); margin-bottom: 16px; }
.hub-card__cta { margin-top: auto; font-weight: 700; font-size: 14.5px; color: var(--cobalt); }
.hub-card--soon { background: var(--paper); border-style: dashed; }
.hub-card--soon .hub-card__meta { color: var(--muted); }

/* ===========================================================================
   BECOME A DEALER  (page-become-a-dealer.php)
   =========================================================================== */
.dealer-hero { background: linear-gradient(180deg, var(--paper), #fff); }
.dealer-grid { padding-top: 40px; padding-bottom: 56px; display: grid; grid-template-columns: 1fr; gap: 36px; align-items: start; }
@media (min-width: 900px) { .dealer-grid { grid-template-columns: 1fr 1fr; gap: 56px; padding-top: 52px; padding-bottom: 64px; } }
.dealer-value h1 { font-size: clamp(34px, 6vw, 52px); font-weight: 800; letter-spacing: -0.04em; line-height: 0.99; margin-bottom: 18px; max-width: 12ch; text-wrap: balance; }
.value-checks { list-style: none; margin: 0 0 26px; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.value-checks li { display: flex; align-items: center; gap: 12px; font-size: 15.5px; color: var(--nav); }
.value-checks__tick { width: 26px; height: 26px; border-radius: 50%; background: var(--cobalt-tint); color: var(--cobalt); font-weight: 800; font-size: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.dealer-wdg { display: inline-block; }
.dealer-wdg img { width: 200px; height: auto; }

/* form card */
.form-card { background: #fff; border: 1px solid var(--hair-2); border-radius: 20px; padding: 24px; box-shadow: 0 40px 80px -45px rgba(20,20,25,0.35); }
@media (min-width: 560px) { .form-card { padding: 32px; } }
.form-card__title { font-size: 24px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 4px; }
.form-card__sub { font-size: 14px; color: var(--muted); margin-bottom: 22px; }

.dealer-form { display: flex; flex-direction: column; gap: 16px; }
.field { display: flex; flex-direction: column; }
.field-row { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 560px) { .field-row { grid-template-columns: 1fr 1fr; } }
.field-row--csz { grid-template-columns: 1fr; }
@media (min-width: 560px) { .field-row--csz { grid-template-columns: 1.4fr 0.8fr 0.8fr; } }

.lbl { display: block; font-size: 13px; font-weight: 700; color: var(--nav); margin-bottom: 7px; }
.lbl__opt { color: var(--stripe-label); font-weight: 500; }
.fld { width: 100%; background: #fff; border: 1.5px solid var(--hair-2); border-radius: 11px; padding: 13px 14px; font-family: var(--font-ui); font-size: 15px; color: var(--ink); outline: none; transition: border-color .12s var(--ease), box-shadow .12s var(--ease); }
.fld:focus { border-color: var(--cobalt); box-shadow: 0 0 0 3px rgba(47,107,255,0.13); }
select.fld { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6660' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 34px; }

/* checkbox chips */
.chip-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.chip { display: flex; align-items: center; gap: 9px; border: 1.5px solid var(--hair-2); border-radius: 11px; padding: 12px 13px; font-size: 14px; font-weight: 600; cursor: pointer; transition: border-color .12s var(--ease); }
.chip input, .consent input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.chip__box { width: 18px; height: 18px; border-radius: 5px; border: 2px solid #C9C3B8; display: flex; align-items: center; justify-content: center; font-size: 11px; color: transparent; flex-shrink: 0; transition: background .12s var(--ease), border-color .12s var(--ease); }
.chip:has(input:checked) { border-color: var(--cobalt); }
.chip input:checked + .chip__box, .consent input:checked + .chip__box { background: var(--cobalt); border-color: var(--cobalt); color: #fff; }
.chip:focus-within, .consent:focus-within .chip__box { outline: 3px solid rgba(47,107,255,0.4); outline-offset: 2px; }

.consent { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--slate); line-height: 1.5; cursor: pointer; }
.consent .chip__box { margin-top: 1px; }

.form-login { text-align: center; font-size: 12.5px; color: var(--muted); margin: 0; }

/* honeypot */
.hp { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* errors + success */
.form-errors { background: #FDECEC; border: 1px solid #F3C6C6; color: #9B2C2C; border-radius: 11px; padding: 12px 14px; margin-bottom: 18px; font-size: 13.5px; }
.form-errors ul { margin: 6px 0 0; padding-left: 18px; }
.form-errors strong { font-weight: 800; }
.form-success { text-align: center; padding: 20px 6px; }
.form-success__icon { width: 56px; height: 56px; border-radius: 50%; background: var(--cobalt); color: #fff; font-size: 28px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.form-success h2 { font-size: 24px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 10px; }
.form-success p { font-size: 15px; line-height: 1.6; color: var(--body); margin-bottom: 22px; }

/* what happens next reuses .how__grid + .step; keep it on white */
.whatsnext h2 { font-size: clamp(28px, 5vw, 36px); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 28px; }

/* reassurance strip */
.reassure { background: var(--paper); }
.reassure__grid { padding-block: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; text-align: center; }
@media (min-width: 720px) { .reassure__grid { grid-template-columns: repeat(4, 1fr); } }
.reassure__big { font-weight: 800; font-size: 26px; color: var(--cobalt); }
.reassure__cap { font-size: 13.5px; color: var(--slate); margin-top: 4px; }

/* WPForms dealer form styling lives in assets/css/wpforms.css, which is enqueued
   AFTER WPForms' own stylesheet (see functions.php) so the theme wins. */

/* ===========================================================================
   SHOP — WooCommerce category + product (theme/woocommerce/*)
   =========================================================================== */

/* ---- category / archive ---- */
.shop-archive__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 8px; }
.shop-archive__head h1 { font-size: clamp(30px, 6vw, 44px); font-weight: 800; letter-spacing: -0.04em; }
.shop-count { font-family: var(--font-mono); font-size: 12px; color: var(--muted); white-space: nowrap; }
.shop-archive__intro { font-size: 16px; color: var(--slate); max-width: 560px; margin: 0 0 24px; }

.shop-banner { display: flex; align-items: center; gap: 14px; border-radius: 14px; padding: 15px 18px; margin-bottom: 28px; }
.shop-banner--gate { background: var(--cobalt-tint-bg); border: 1px solid var(--cobalt-tint-border); }
.shop-banner--ok { background: var(--ok-bg); border: 1px solid var(--ok-border); color: var(--ok-text); }
.shop-banner__lock { font-size: 20px; }
.shop-banner__txt { flex: 1; font-size: 13.5px; color: var(--body); }
.shop-banner__txt strong { color: var(--ink); }
.shop-banner--gate .btn { white-space: nowrap; }
.shop-banner__tick { width: 26px; height: 26px; border-radius: 50%; background: var(--ok-dot); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 800; flex-shrink: 0; }

.shop-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 560px) { .shop-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .shop-grid { grid-template-columns: repeat(3, 1fr); } }

.product-card { border: 1px solid var(--hair); border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; background: #fff; transition: border-color .15s var(--ease); }
.product-card:hover { border-color: var(--hair-2); }
.product-card__media { display: block; height: 170px; }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; }
.product-card__ph { height: 100%; font-size: 11px; }
.product-card__body { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.product-card__sku { font-family: var(--font-mono); font-size: 10px; color: var(--stripe-label); letter-spacing: 0.06em; }
.product-card__name { display: block; font-weight: 700; font-size: 16px; line-height: 1.25; color: var(--ink); margin: 5px 0 14px; }
.product-card__name:hover { color: var(--cobalt); }
.product-card__buy { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.product-card__price strong { font-weight: 800; font-size: 22px; }
.product-card__price span { font-size: 12px; color: var(--muted); }

/* ---- single product ---- */
.product-single__grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: start; }
@media (min-width: 900px) { .product-single__grid { grid-template-columns: 1fr 1fr; gap: 48px; } }
.product-gallery__hero { height: 320px; border-radius: 18px; overflow: hidden; margin-bottom: 14px; display: flex; align-items: center; justify-content: center; }
@media (min-width: 560px) { .product-gallery__hero { height: 380px; } }
.product-gallery__hero img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.product-gallery__thumb { height: 72px; border-radius: 11px; background: var(--stripe-a); border: 1.5px solid transparent; }
.product-gallery__thumb.is-active { border-color: var(--cobalt); }

.product-details__sku { font-family: var(--font-mono); font-size: 11px; color: var(--stripe-label); letter-spacing: 0.06em; margin-bottom: 8px; }
.product-details__title { font-size: clamp(28px, 5vw, 36px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; margin-bottom: 12px; }
.product-details__desc { font-size: 16px; line-height: 1.6; color: var(--body); margin-bottom: 22px; }
.product-details__desc p { margin: 0 0 10px; }

.price-card { border: 1px solid var(--hair); border-radius: 16px; padding: 22px; margin-bottom: 16px; }
.price-card__price { margin-bottom: 16px; }
.price-card__price strong { font-weight: 800; font-size: 34px; }
.price-card__price span { font-size: 14px; color: var(--muted); }
.price-card__stock { font-family: var(--font-mono); font-size: 11px; color: var(--muted); margin-top: 14px; }
/* WooCommerce add-to-cart form (styled since we dequeued WC's CSS) */
.price-card form.cart { display: flex; align-items: stretch; gap: 12px; margin: 0; }
.price-card .quantity { display: flex; }
.price-card .quantity .qty { width: 84px; border: 1.5px solid var(--hair-2); border-radius: 11px; padding: 12px 10px; font-family: var(--font-ui); font-size: 15px; text-align: center; color: var(--ink); }
.price-card .quantity label { position: absolute; left: -9999px; }
.price-card .single_add_to_cart_button { flex: 1; background: var(--cobalt); color: #fff; font-family: var(--font-ui); font-weight: 800; font-size: 15px; border: 0; border-radius: 12px; padding: 14px; cursor: pointer; transition: background-color .15s var(--ease); }
.price-card .single_add_to_cart_button:hover { background: var(--cobalt-deep); }

.bulk-table { border: 1px solid var(--hair); border-radius: 16px; overflow: hidden; margin-bottom: 8px; }
.bulk-table__head { padding: 12px 18px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); background: var(--paper); }
.bulk-table__row { display: flex; justify-content: space-between; padding: 12px 18px; font-size: 14px; border-bottom: 1px solid var(--hair-3); }
.bulk-table__row:last-child { border-bottom: 0; }
.bulk-table__price { font-weight: 700; }
.bulk-table__row--top .bulk-table__price { color: var(--cobalt); }

.gate-card { border: 1px solid var(--cobalt-tint-border); background: var(--cobalt-tint-bg); border-radius: 16px; padding: 22px; margin-bottom: 24px; }
.gate-card__head { display: flex; align-items: center; gap: 10px; font-size: 17px; margin-bottom: 10px; }
.gate-card p { font-size: 14px; color: var(--body); margin: 0 0 16px; }
.gate-card__actions { display: flex; flex-wrap: wrap; gap: 10px; }

.spec-list { list-style: none; margin: 22px 0 0; padding: 0; display: flex; flex-direction: column; gap: 9px; font-size: 14px; color: var(--body); }
.spec-list li { display: flex; gap: 9px; }
.spec-list__tick { color: var(--cobalt); font-weight: 800; }

/* WooCommerce notices (minimal, since WC styles are dequeued) */
.woocommerce-message, .woocommerce-info, .woocommerce-error { background: var(--cobalt-tint-bg); border: 1px solid var(--cobalt-tint-border); border-radius: 12px; padding: 12px 16px; margin: 0 0 20px; font-size: 14px; list-style: none; }
.woocommerce-error { background: #FDECEC; border-color: #F3C6C6; color: #9B2C2C; }
.woocommerce-message a, .woocommerce-info a { font-weight: 700; }

/* ---- header cart ---- */
.header-cart { position: relative; display: inline-flex; align-items: center; color: var(--ink); }
.header-cart:hover { color: var(--cobalt); }
.header-cart__count { position: absolute; top: -7px; right: -9px; min-width: 17px; height: 17px; padding: 0 4px; border-radius: 9px; background: var(--cobalt); color: #fff; font-size: 11px; font-weight: 800; line-height: 17px; text-align: center; }
.header-cart__count[hidden] { display: none; }

/* ---- product info accordions (shipping / returns) ---- */
.product-info { margin-top: 40px; max-width: 820px; border-top: 1px solid var(--hair); }
.prod-acc { border-bottom: 1px solid var(--hair); }
.prod-acc summary { list-style: none; cursor: pointer; font-weight: 800; font-size: 16px; padding: 18px 2px; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.prod-acc summary::-webkit-details-marker { display: none; }
.prod-acc summary::after { content: "+"; color: var(--cobalt); font-size: 22px; font-weight: 700; line-height: 1; }
.prod-acc[open] summary::after { content: "–"; }
.prod-acc__body { padding: 0 2px 18px; font-size: 15px; line-height: 1.6; color: var(--body); }
.prod-acc__body p { margin: 0 0 10px; }

/* ---- cart action buttons ---- */
.ctw-clear-cart { font-size: 13px; font-weight: 700; color: var(--muted); margin-left: 14px; }
.ctw-clear-cart:hover { color: #c0392b; }

/* ---- shipping & handling (calculated at fulfillment) ---- */
.ctw-ship-note { color: var(--muted); font-weight: 500; }
.ctw-ship-note-row td { padding-top: 4px; }
.ctw-ship-terms { display: block; color: var(--slate); font-size: 12px; line-height: 1.5; }

/* ===========================================================================
   INFO PAGES: Payments / About / Contact / Resources
   =========================================================================== */

/* --- Payments platform cards --- */
.pay-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 24px; }
@media (min-width: 700px) { .pay-grid { grid-template-columns: repeat(2, 1fr); } }
.pay-card { border: 1px solid var(--hair); border-radius: var(--r-card); padding: 26px; background: #fff; }
.pay-card__logo {
  height: 56px; border-radius: 12px; background: var(--cobalt-tint);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.pay-card__logo span { font-weight: 800; font-size: 20px; letter-spacing: -0.02em; color: var(--cobalt); }
.pay-card h3 { font-weight: 800; font-size: 18px; margin-bottom: 8px; }
.pay-card p { font-size: 14.5px; line-height: 1.55; color: var(--body); }
.pay-note {
  margin-top: 26px; padding: 16px 18px; border: 1px dashed var(--hair-2); border-radius: 12px;
  font-size: 13.5px; line-height: 1.55; color: var(--slate); background: #fff;
}
.pay-cta { margin-top: 28px; }

/* --- About: breathing room on story + why sections --- */
.seo--about .wrap { padding-block: 56px; gap: 32px; }
@media (min-width: 1000px) { .seo--about .wrap { padding-block: 88px; gap: 72px; } }
.seo--about .seo__lead { display: flex; flex-direction: column; }
.seo--about .about-badge { margin-top: 36px; }
.why--about { padding-block: 56px; }
@media (min-width: 1000px) { .why--about { padding-block: 88px; } }
.why--about h2 { margin-bottom: 36px; }

/* --- About: WDG badge --- */
.about-badge { display: inline-block; margin-top: 20px; }
.about-badge img { display: block; height: auto; max-width: 210px; }

/* --- Contact --- */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: start; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 0.8fr 1.2fr; gap: 44px; } }
.contact-aside { display: flex; flex-direction: column; gap: 22px; }
.contact-block__label {
  font-family: var(--font-mono, monospace); font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--cobalt); margin-bottom: 4px;
}
.contact-block__value { font-size: 20px; font-weight: 800; letter-spacing: -0.02em; color: var(--ink); }
a.contact-block__value:hover { color: var(--cobalt); }
.contact-block__value--plain { font-weight: 700; font-size: 17px; }
.contact-aside .about-badge { margin-top: 6px; }

/* --- Resources grid --- */
.res-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 720px) { .res-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .res-grid { grid-template-columns: repeat(3, 1fr); } }
.res-card { border: 1px solid var(--hair); border-radius: var(--r-card); background: #fff; transition: border-color .15s, box-shadow .15s, transform .15s; }
.res-card:hover { border-color: var(--cobalt); box-shadow: 0 10px 30px rgba(47,107,255,.10); transform: translateY(-2px); }
.res-card__link { display: flex; flex-direction: column; height: 100%; padding: 24px; }
.res-card__cat {
  font-family: var(--font-mono, monospace); font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--cobalt); margin-bottom: 12px;
}
.res-card__title { font-size: 19px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 10px; color: var(--ink); }
.res-card__excerpt { font-size: 14px; line-height: 1.55; color: var(--slate); margin-bottom: 20px; }
.res-card__meta { margin-top: auto; display: flex; align-items: center; justify-content: space-between; font-size: 12.5px; color: var(--muted); }
.res-card__more { font-weight: 700; color: var(--cobalt); }

/* --- Legal / Privacy page --- */
.legal-updated { margin-top: 14px; font-size: 13px; font-weight: 700; color: var(--muted); }
.legal-toc {
  max-width: 760px; margin: 32px 0 8px; padding: 20px 22px;
  border: 1px solid var(--hair); border-radius: var(--r-card); background: var(--paper);
}
.legal-toc__label {
  display: block; font-family: var(--font-mono, monospace); font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--cobalt); margin-bottom: 12px;
}
.legal-toc ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr; gap: 8px; }
@media (min-width: 620px) { .legal-toc ul { grid-template-columns: 1fr 1fr; gap: 8px 24px; } }
.legal-toc a { font-size: 14px; font-weight: 600; color: var(--ink); }
.legal-toc a:hover { color: var(--cobalt); }
.legal-content { scroll-margin-top: 90px; }
.legal-content h2 { scroll-margin-top: 90px; }
.legal-callout {
  margin: 32px 0; padding: 26px 28px; border: 1.5px solid var(--cobalt);
  border-radius: var(--r-card); background: var(--cobalt-tint-bg); scroll-margin-top: 90px;
}
.legal-callout__title { margin-top: 0 !important; font-size: clamp(20px, 3vw, 24px) !important; }
.legal-callout__cta { margin-top: 20px; margin-bottom: 0; }

/* --- Single post --- */
.post-hero { background: linear-gradient(180deg, var(--paper), #fff); border-bottom: 1px solid var(--hair); }
.post-hero__inner { padding-top: 36px; padding-bottom: 28px; max-width: 760px; }
.post-hero__meta { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.post-hero__back { font-size: 13px; font-weight: 700; color: var(--slate); }
.post-hero__back:hover { color: var(--cobalt); }
.post-hero__title { font-size: clamp(28px, 5.5vw, 44px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.08; margin-bottom: 16px; text-wrap: balance; }
.post-hero__byline { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--muted); }
.post-body { max-width: 760px; padding-top: 36px; padding-bottom: 8px; }
.post-content { font-size: 16.5px; }
.post-content h2 { font-size: clamp(22px, 3.5vw, 27px); font-weight: 800; letter-spacing: -0.02em; margin-top: 34px; margin-bottom: 12px; line-height: 1.2; }
.post-content h3 { font-size: 17px; font-weight: 800; letter-spacing: -0.01em; margin-top: 22px; margin-bottom: 8px; }
.post-content p { margin: 0 0 16px; }
.post-content a { color: var(--cobalt); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.post-content a:hover { color: var(--cobalt-deep); }
/* Button links inside prose keep their button styling, not the inline-link color */
.post-content a.btn { text-decoration: none; }
.post-content a.btn-primary, .post-content a.btn-primary:hover { color: #fff; }
.post-content a.btn-white, .post-content a.btn-white:hover { color: var(--ink); }
.post-content a.btn-secondary, .post-content a.btn-secondary:hover { color: var(--ink); }
.post-content ul, .post-content ol { margin: 0 0 16px; padding-left: 22px; display: flex; flex-direction: column; gap: 8px; }
.post-content li { line-height: 1.6; }
.post-content strong { font-weight: 700; color: var(--ink); }
