/* =====================================================================
   site.css — SINGLE SOURCE for shared chrome styling (nav + footer +
   lock-link). Loaded AFTER each page's inline <style>, so rules here win.
   Pair with site-chrome.js (which injects the matching markup).
   Edit this ONE file to restyle the menu/footer across every page.
   Design tokens (--ink, --accent, --border…) come from each page's :root.
   ===================================================================== */

  /* ===========================================================
     HEADER / NAV
     =========================================================== */
  /* the <site-header> wrapper is the sticky element (header.nav lives inside it) */
  site-header {
    display: block;
    position: sticky; top: 0; z-index: 50;
  }
	  header.nav {
	    background: var(--bg);
	    border-bottom: var(--border);
	  }
	  .skip-link {
	    position: absolute;
	    left: 16px;
	    top: 16px;
	    z-index: 100;
	    transform: translateY(-180%);
	    background: var(--ink);
	    color: var(--bg);
	    border: var(--border);
	    padding: 12px 16px;
	    font-family: 'Space Mono', monospace;
	    font-size: 11px;
	    letter-spacing: 0.12em;
	    text-transform: uppercase;
	    transition: transform .2s ease;
	  }
	  .skip-link:focus-visible {
	    transform: translateY(0);
	    outline: 2px solid var(--accent);
	    outline-offset: 2px;
	  }
	  a:focus-visible,
	  button:focus-visible,
	  [tabindex]:focus-visible {
	    outline: 2px solid var(--accent);
	    outline-offset: 3px;
	  }
	  .u-title-case {
	    text-transform: capitalize !important;
	  }

	  /* Constant gap between the sticky nav's bottom line and the first content
     block, across every page. Excludes landing demo bars, the gated private
     wrapper, and decorative first elements. */
  :root { --page-gap: 88px; }
  site-header + section,
  site-header + main,
  site-header + div:not(.guide-bar):not(.site-content):not(.glow):not([class*="glow"]) {
    padding-top: var(--page-gap) !important;
  }
  .nav-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 32px;
    padding: 18px 32px;
  }
  .nav-left {
    display: flex;
    align-items: center;
    gap: 32px;
    justify-self: start;
  }
  .nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-self: end;
  }
  .logo {
    font-family: 'Satoshi', 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 0.9;
    letter-spacing: -0.02em;
    color: var(--ink);
    transform: scaleY(1.05);
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
  }
  .logo:hover { color: var(--accent); }
  .tagline {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    line-height: 1.4;
    text-transform: none;
    letter-spacing: 0;
    color: var(--ink);
  }
  .nav-links {
    display: flex; gap: 28px;
    justify-self: center;
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow: hidden;
    max-width: 100%;
  }
  .nav-links a {
    position: relative;
    cursor: pointer;
    display: inline-block;
    white-space: nowrap;
    transition: color .2s ease;
  }
  .nav-links a:hover { color: var(--accent); }
  .nav-links a .scram-char {
    display: inline-block;
    min-width: 0.33ch;
  }
  .pill {
    display: inline-flex; align-items: center;
    background: var(--ink);
    color: var(--bg);
    padding: 14px 22px;
    border-radius: 0;
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    line-height: 1;
    overflow: hidden;
    position: relative;
    transition: background .3s ease, color .3s ease, transform .3s ease;
  }
  .pill:hover { background: var(--accent); transform: translateY(-2px); }

  /* letter flip on pill hover */
  .pill-text { display: inline-flex; align-items: center; line-height: 1; }
  .pill-letter {
    display: inline-block;
    position: relative;
    overflow: hidden;
    height: 1em;
    line-height: 1em;
    vertical-align: middle;
  }
  .pill-letter .t,
  .pill-letter .b {
    display: inline-block;
    line-height: 1em;
    transition: transform .45s cubic-bezier(.2,.8,.2,1);
  }
  .pill-letter .b {
    position: absolute;
    left: 0; top: 0;
    transform: translateY(110%);
  }
  .pill:hover .pill-letter .t { transform: translateY(-110%); }
  .pill:hover .pill-letter .b { transform: translateY(0); }
  .pill-space { display: inline-block; width: 0.45em; }

  /* ---------- HAMBURGER (mobile) ---------- */
  .hamburger {
    display: none;
    position: relative;
    width: 38px; height: 38px;
    background: transparent;
    border: var(--border);
    cursor: pointer;
    padding: 0;
    z-index: 60;
  }
  .hamburger span {
    position: absolute;
    left: 8px;
    width: 22px;
    height: 2px;
    background: var(--ink);
    transition: transform .35s cubic-bezier(.2,.8,.2,1), top .35s ease, opacity .2s ease;
  }
  .hamburger span:nth-child(1) { top: 12px; }
  .hamburger span:nth-child(2) { top: 18px; }
  .hamburger span:nth-child(3) { top: 24px; }
  .hamburger.open span:nth-child(1) { top: 18px; transform: rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { top: 18px; transform: rotate(-45deg); }

  /* ---------- MOBILE MENU OVERLAY ---------- */
  .mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 55;
    padding: 96px 32px 48px;
    transform: translateY(-100%);
    transition: transform .5s cubic-bezier(.2,.8,.2,1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    pointer-events: none;
  }
  .mobile-menu.open {
    transform: translateY(0);
    pointer-events: auto;
  }
  .mobile-menu .mobile-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .mobile-menu .mobile-links a {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(28px, 10vw, 72px);
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: var(--ink);
    padding: 14px 0;
    border-bottom: 1px solid #1a1a1a33;
    transition: color .2s ease, padding-left .35s cubic-bezier(.2,.8,.2,1);
    display: block;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .mobile-menu .mobile-links a:hover,
  .mobile-menu .mobile-links a:active { color: var(--accent); padding-left: 12px; }
  .mobile-menu .mobile-foot {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    display: flex;
    justify-content: space-between;
    color: var(--ink);
    border-top: var(--border);
    padding-top: 24px;
  }
  body.menu-open { overflow: hidden; }

  @media (max-width: 880px) {
    .nav-inner { grid-template-columns: 1fr auto; gap: 16px; }
    .nav-left { gap: 16px; }
    .tagline, .nav-links { display: none; }
    .nav-inner .pill { display: none; }
    .hamburger { display: block; }
  }
  /* Android-first: avoid crunching before hamburger */
  @media (max-width: 1024px) {
    .nav-inner { gap: 18px; }
    .nav-links { gap: 18px; font-size: 10px; letter-spacing: 0.12em; }
    .nav-left { gap: 18px; }
  }
  @media (min-width: 881px) {
    .mobile-menu { display: none; }
  }



  /* ===========================================================
     FOOTER / CTA
     =========================================================== */
  footer {
    border-top: var(--border);
    padding: 80px 32px 24px;
  }
  .foot-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 32px;
  }
	  .foot-headline {
	    font-family: 'Space Grotesk', sans-serif;
	    font-weight: 700;
	    font-size: clamp(24px, 2.4vw, 36px);
    line-height: 1.15;
    text-transform: none;
	    max-width: 32ch;
	    letter-spacing: -0.005em;
	  }
	  .footer-cta { margin-top: 24px; }
	  .foot-right { text-align: right; display: flex; flex-direction: column; gap: 16px; align-items: flex-end; }
	  .foot-mail {
	    font-family: 'Space Grotesk', sans-serif;
	    font-weight: 700;
    font-size: clamp(28px, 3.2vw, 44px);
	    text-transform: lowercase;
	    letter-spacing: -0.01em;
	  }
	  .foot-site-link {
	    font-size: clamp(18px, 2vw, 24px);
	    font-weight: 400;
	    color: var(--subtext-2);
	  }
  .foot-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
  }
  .foot-socials .pill { background: var(--bg); color: var(--ink); border: var(--border); }
  .foot-socials .pill:hover { background: var(--ink); color: var(--bg); }
	  .colophon {
	    border-top: var(--border);
	    margin-top: 56px;
    padding-top: 18px;
    display: flex; justify-content: space-between;
    font-family: 'Space Mono', monospace;
    font-size: 11px;
	    text-transform: uppercase;
	    letter-spacing: 0.14em;
	  }
	  .foot-policy-link {
	    color: inherit;
	    text-decoration: underline;
	  }
  @media (max-width: 720px) {
    .foot-grid { grid-template-columns: 1fr; }
    .foot-right { text-align: left; align-items: flex-start; }
    .foot-socials { justify-content: flex-start; }
    .colophon { flex-direction: column; gap: 12px; }
  }


  /* ---------- LOCK LINK (private area access) ---------- */
  .lock-link {
    width: 38px; height: 38px;
    background: transparent; color: var(--ink);
    border: var(--border);
    display: inline-flex; align-items: center; justify-content: center;
    text-decoration: none;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
  }
.lock-link:hover { background: var(--ink); color: var(--bg); }
.lock-link svg { width: 16px; height: 16px; display: block; }

/* ---------- LET'S WORK TOGETHER MODAL ---------- */
.lwt-trigger {
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
}
.lwt-trigger:hover { background: #1a26d8; border-color: #1a26d8; }

.lwt-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 20, 20, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
  opacity: 0;
  transition: opacity .25s ease;
}
.lwt-overlay.open { display: flex; opacity: 1; }

.lwt-card {
  position: relative;
  width: 100%;
  max-width: 980px;
  max-height: 90vh;
  overflow-y: auto;
  background: #0a0a0a;
  color: #edece6;
  padding: 56px 56px 32px;
  border: 1px solid #0a0a0a;
  transform: translateY(20px);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.lwt-overlay.open .lwt-card { transform: translateY(0); }

.lwt-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: #edece6;
  color: #0a0a0a;
  border: 1px solid #edece6;
  cursor: pointer;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, transform .2s ease;
}
.lwt-close:hover {
  background: var(--accent);
  color: #edece6;
  border-color: var(--accent);
  transform: rotate(90deg);
}

.lwt-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(34px, 4.4vw, 54px);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 14px;
}
.lwt-sub {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
  font-size: clamp(12px, 1.05vw, 14px);
  color: #9a978d;
  margin-bottom: 40px;
  max-width: 60ch;
}
.lwt-step { display: none; }
.lwt-step.is-active { display: block; }

.lwt-q {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(16px, 1.6vw, 20px);
  margin: 32px 0 18px;
  letter-spacing: -0.01em;
}
.lwt-q:first-child { margin-top: 0; }
.lwt-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.lwt-chip {
  background: transparent;
  color: #edece6;
  border: 1px solid #edece6;
  padding: 14px 22px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
  font-size: 12px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.lwt-chip:hover { background: rgba(237,236,230,0.08); }
.lwt-chip.selected {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.lwt-cta-row {
  display: grid;
  grid-template-columns: 1fr 56px;
  gap: 6px;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(237,236,230,0.12);
}
.lwt-cont,
.lwt-confirm {
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  cursor: pointer;
}
.lwt-cont {
  padding: 18px 24px;
  transition: background .2s ease, transform .2s ease, opacity .2s ease;
}
.lwt-cont:disabled,
.lwt-confirm:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.lwt-cont:not(:disabled):hover { background: #1a26d8; transform: translateY(-2px); }
.lwt-plus {
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
  font-size: 20px;
  display: grid;
  place-items: center;
}

.lwt-book {
  display: grid;
  grid-template-columns: 240px 1fr 200px;
  gap: 24px;
  margin-top: 8px;
}
.lwt-book-profile {
  padding-right: 20px;
  border-right: 1px solid rgba(237,236,230,0.12);
}
.lwt-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2a37ff 0%, #8b94ff 100%);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 14px;
}
.lwt-prof-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
  color: #9a978d;
  font-size: 11px;
  margin-bottom: 4px;
}
.lwt-prof-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.lwt-prof-row {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #9a978d;
  font-size: 11px;
  margin-bottom: 8px;
}
.lwt-prof-row svg {
  flex-shrink: 0;
  opacity: 0.6;
}
.lwt-cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  font-family: 'Space Grotesk', sans-serif;
}
.lwt-cal-month {
  font-weight: 700;
  font-size: 16px;
}
.lwt-cal-year {
  font-weight: 400;
  color: #9a978d;
  margin-left: 8px;
}
.lwt-cal-nav {
  display: flex;
  gap: 4px;
}
.lwt-cal-nav button {
  width: 32px;
  height: 32px;
  background: transparent;
  color: #edece6;
  border: 1px solid rgba(237,236,230,0.15);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.lwt-cal-nav button:hover { background: rgba(237,236,230,0.08); }
.lwt-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.lwt-cal-grid .dow {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-align: center;
  color: #6a6a62;
  padding: 8px 0;
}
.lwt-cal-grid .day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(237,236,230,0.05);
  color: #edece6;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background .15s ease, color .15s ease;
}
.lwt-cal-grid .day:hover { background: rgba(237,236,230,0.12); }
.lwt-cal-grid .day.disabled {
  color: #4a4a44;
  background: transparent;
  cursor: not-allowed;
}
.lwt-cal-grid .day.disabled:hover { background: transparent; }
.lwt-cal-grid .day.selected {
  background: var(--accent);
  color: #fff;
  font-weight: 700;
}
.lwt-cal-grid .day.today { border-color: rgba(237,236,230,0.3); }
.lwt-cal-grid .empty {
  background: transparent;
  cursor: default;
}
.lwt-cal-grid .empty:hover { background: transparent; }
.lwt-slots-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.lwt-slots-day {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 16px;
}
.lwt-slots-day span {
  color: #9a978d;
  font-weight: 400;
  margin-left: 4px;
}
.lwt-slots-toggle { display: inline-flex; }
.lwt-slots-toggle button {
  background: transparent;
  color: #9a978d;
  border: 1px solid rgba(237,236,230,0.15);
  padding: 4px 10px;
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  cursor: pointer;
}
.lwt-slots-toggle button.on {
  color: #edece6;
  background: rgba(237,236,230,0.08);
}
.lwt-slots {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 360px;
  overflow-y: auto;
}
.lwt-empty-slots {
  color: #6a6a62;
  font-size: 13px;
  padding: 8px 0;
  margin: 0;
}
.lwt-slot {
  background: transparent;
  color: #edece6;
  border: 1px solid rgba(237,236,230,0.2);
  padding: 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  cursor: pointer;
  text-align: center;
  transition: background .15s ease, border-color .15s ease;
}
.lwt-slot:hover {
  border-color: var(--accent);
  background: rgba(42,55,255,0.1);
}
.lwt-slot.selected {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.lwt-slot.booked {
  color: #5f5d57;
  border-color: rgba(237,236,230,0.08);
  background: rgba(237,236,230,0.025);
  cursor: not-allowed;
  text-decoration: line-through;
}
.lwt-slot.booked:hover {
  border-color: rgba(237,236,230,0.08);
  background: rgba(237,236,230,0.025);
}
.lwt-confirm-row {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(237,236,230,0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.lwt-confirm-row.is-centered { justify-content: center; }
.lwt-back {
  background: transparent;
  color: #9a978d;
  border: 1px solid rgba(237,236,230,0.2);
  padding: 14px 20px;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  cursor: pointer;
}
.lwt-back:hover {
  color: #edece6;
  border-color: #edece6;
}
.lwt-confirm {
  padding: 14px 28px;
}
.lwt-confirm:not(:disabled):hover { background: #1a26d8; }
.lwt-disq {
  text-align: center;
  padding: 120px 20px 80px;
}
.lwt-disq h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 24px;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}
.lwt-disq p {
  color: #9a978d;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(13px, 1.1vw, 15px);
  line-height: 1.55;
  max-width: 46ch;
  margin: 0 auto 48px;
}
.lwt-disq-cta {
  display: flex;
  justify-content: center;
}
.lwt-thanks {
  text-align: center;
  padding: 60px 20px;
}
.lwt-thanks h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.lwt-thanks p {
  color: #9a978d;
  max-width: 50ch;
  margin: 0 auto;
}

@media (max-width: 880px) {
  .lwt-card { padding: 40px 24px 24px; }
  .lwt-close {
    top: 16px;
    right: 16px;
  }
  .lwt-book { grid-template-columns: 1fr; }
  .lwt-book-profile {
    border-right: none;
    border-bottom: 1px solid rgba(237,236,230,0.12);
    padding: 0 0 20px;
  }
}

body.lwt-locked { overflow: hidden; }

/* ---------- THEME TOGGLE (dark mode button) ---------- */
.theme-toggle {
  width: 38px; height: 38px;
  background: transparent; color: var(--ink);
  border: var(--border); cursor: pointer; padding: 0;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.theme-toggle:hover { background: var(--ink); color: var(--bg); }
.theme-toggle svg { width: 16px; height: 16px; display: block; }
.theme-toggle .icon-moon { display: inline-block; }
.theme-toggle .icon-sun  { display: none; }
html[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
html[data-theme="dark"] .theme-toggle .icon-sun  { display: inline-block; }

/* ---------- DARK MODE variables (toggle sets html[data-theme="dark"]) ---------- */
html[data-theme="dark"] {
  --bg: #0a0a0a;
  --bg-2: #141414;
  --ink: #EDECE6;
  --muted: #6a6a62;
  --subtext: #9a9a92;
  --subtext-2: #c1bfb5;
  --rule: #EDECE6;
  --border: 1px solid #EDECE6;
}
html, body { transition: background-color .25s ease, color .25s ease; }

/* ---------------------------------------------------------------------
   Consistent MAIN PAGE HEADING size across all pages (excluding index
   and the full-screen landing demos, whose hero classes are not listed).
   Only the size is normalised; weight/tracking/line-height are untouched.
   --------------------------------------------------------------------- */
.ab-title, .sg-title, .dh-title, .cs-title,
.csh1-name, .csh2-name, .csh3-name, .csh4-name,
.h-hero, .hero-title, .h-hero.hero-title,
.cf-title, .pkg-hero-h1, .tools-title, .tools-hero-title,
.video-hero-title, .faq-hero h1, .pay-hero h1 {
  font-size: clamp(40px, 6vw, 100px) !important;
}

/* ---------------------------------------------------------------------
   Consistent gap between the main heading and its subtext, across pages
   (excludes index + landing demos, whose sub classes aren't listed).
   --------------------------------------------------------------------- */
.hero-sub, .ab-lead, .sg-lead, .pkg-hero-sub, .tools-sub,
.video-hero-sub, .tools-hero-lead, .cf-sub,
.faq-hero h1 + p, .pay-hero h1 + p {
  margin-top: 24px !important;
}

/* ---------------------------------------------------------------------
   Main navigation page hero rhythm. The gap is owned by the eyebrow so
   Manifesto, Resources, and Contact use the same rendered structure.
   --------------------------------------------------------------------- */
#model > .container > .section-head > div > .label,
.tools-hero > .container > .label,
.cf-head > .cf-eyebrow,
.ab-hero > .container > .label,
.sg-hero .label, .pkg-tag, .pay-tag, .tools-hero-eyebrow {
  margin-bottom: 16px !important;
}
#model > .container > .section-head > div > .section-title,
.tools-hero > .container > .tools-title,
.cf-head > .cf-title,
.ab-hero > .container > .ab-title,
.sg-title, .pkg-hero-h1, .pay-hero h1, .tools-hero-title {
  margin-top: 0 !important;
}

/* ---------------------------------------------------------------------
   Headings add no bottom margin — the heading→subtext gap is owned solely
   by the subtext's margin-top (24px), so it can't double up.
   --------------------------------------------------------------------- */
.ab-title, .sg-title, .cf-title, .pkg-hero-h1, .pay-hero h1,
.tools-title, .tools-hero-title, .video-hero-title,
.h-hero, .hero-title {
  margin-bottom: 0 !important;
}
