/* =============================================================
   learnfromcher.com — site-v2 shared stylesheet
   Loads AFTER each page's inline styles and element-square.css.
   Adds: the Programmes dropdown nav, the programme-page layout,
   the waitlist form, and the Section-B UX/visual fixes.
   Marketing pages are pinned to LIGHT mode (data-theme="light").
   ============================================================= */

/* base reset + body defaults (harmless on existing pages; needed by the
   fresh programme/chooser pages that carry no big inline style block) */
*, *::before, *::after { box-sizing: border-box; }
body.v2-page { margin: 0; font-family: 'DM Sans', sans-serif; color: #1A2E35; line-height: 1.6; background: #fff; }
body.v2-page h1, body.v2-page h2, body.v2-page h3, body.v2-page p, body.v2-page ul { margin: 0; }
html { scroll-behavior: smooth; }

:root {
  --v2-teal:    #1A7A8A;
  --v2-teal-dk: #0F5A67;
  --v2-teal-md: #2A9BAD;
  --v2-teal-lt: #EBF6F8;
  --v2-ink:     #1A2E35;
  --v2-mid:     #4A5568;
  --v2-light:   #718096;
  --v2-border:  #E2E8F0;
  --v2-coral:   #E8604C;
  --v2-purple:  #9B8FC7;
}

/* ─────────────────────────────────────────────────────────────
   NAV — shared bar + Programmes dropdown
   ───────────────────────────────────────────────────────────── */
nav[data-site-nav] {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 64px; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.97);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--v2-border);
}
nav[data-site-nav] .nav-links {
  display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0;
}
nav[data-site-nav] .nav-links > li { position: relative; }
nav[data-site-nav] .nav-links a,
nav[data-site-nav] .nav-drop-toggle {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 600; color: var(--v2-mid);
  text-decoration: none; transition: color 0.2s;
  background: none; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 5px;
}
nav[data-site-nav] .nav-links a:hover,
nav[data-site-nav] .nav-drop-toggle:hover { color: var(--v2-teal); }
nav[data-site-nav] .nav-links a.active,
nav[data-site-nav] .nav-drop-toggle.active { color: var(--v2-teal); }

nav[data-site-nav] .nav-portal-link {
  border: 1.5px solid rgba(26,46,53,.16); border-radius: 9px;
  padding: 7px 14px; font-family: 'DM Mono', monospace;
  font-size: 13px; color: var(--v2-ink); white-space: nowrap;
}
nav[data-site-nav] .nav-portal-link:hover { border-color: var(--v2-teal); color: var(--v2-teal); }

/* CTA — explicit WHITE text on teal, never link-blue (Section B item 8) */
nav[data-site-nav] .nav-cta,
nav[data-site-nav] a.nav-cta {
  background: var(--v2-teal); color: #fff; border-radius: 10px;
  padding: 9px 18px; font-weight: 700; font-size: 14px;
  box-shadow: 0 6px 16px rgba(26,122,138,.24); white-space: nowrap;
  transition: background 0.2s;
}
nav[data-site-nav] .nav-cta:hover,
nav[data-site-nav] a.nav-cta:hover { background: var(--v2-teal-dk); color: #fff; }

nav[data-site-nav] .nav-logo { display: inline-flex; align-items: center; }

/* hamburger */
nav[data-site-nav] .nav-mobile-btn {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
nav[data-site-nav] .nav-mobile-btn span {
  display: block; width: 22px; height: 2px; background: var(--v2-ink);
  border-radius: 2px; transition: all 0.3s;
}

/* ---- Dropdown panel ---- */
nav[data-site-nav] .nav-drop {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(6px);
  min-width: 520px;
  background: #fff; border: 1px solid var(--v2-border); border-radius: 16px;
  box-shadow: 0 24px 60px rgba(26,46,53,.16);
  padding: 20px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px 20px;
  opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .18s ease, transform .18s ease;
  z-index: 210;
}
nav[data-site-nav] .nav-has-drop:hover .nav-drop,
nav[data-site-nav] .nav-has-drop.open .nav-drop {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
nav[data-site-nav] .nav-drop-head {
  font-family: 'DM Mono', monospace; font-size: 12px; font-weight: 500;
  text-transform: uppercase; letter-spacing: .08em; color: var(--v2-ink);
  padding: 4px 8px 8px; border-bottom: 2px solid var(--v2-teal-lt); margin-bottom: 6px;
}
nav[data-site-nav] .nav-drop-head span { color: var(--v2-light); font-size: 11px; letter-spacing: .02em; }
nav[data-site-nav] .nav-drop-pure    .nav-drop-head { border-bottom-color: #EDE9F7; }
nav[data-site-nav] .nav-drop-na      .nav-drop-head { border-bottom-color: #D6EFF2; }
nav[data-site-nav] .nav-drop-col a {
  display: block; padding: 8px; border-radius: 8px; font-size: 14px; font-weight: 600; color: var(--v2-mid);
}
nav[data-site-nav] .nav-drop-col a:hover { background: var(--v2-teal-lt); color: var(--v2-teal-dk); }
nav[data-site-nav] .nav-drop-foot {
  grid-column: 1 / -1; margin-top: 8px; padding-top: 12px; border-top: 1px solid var(--v2-border);
  display: flex; gap: 20px; flex-wrap: wrap;
}
nav[data-site-nav] .nav-drop-foot a { font-size: 13px; font-weight: 700; color: var(--v2-teal); padding: 2px 0; }
nav[data-site-nav] .nav-drop-toggle svg { transition: transform .2s; }
nav[data-site-nav] .nav-has-drop.open .nav-drop-toggle svg,
nav[data-site-nav] .nav-has-drop:hover .nav-drop-toggle svg { transform: rotate(180deg); }

/* ---- Mobile nav: hamburger + nested accordion ---- */
@media (max-width: 1080px) {
  nav[data-site-nav] .nav-mobile-btn { display: flex; order: 3; }
  nav[data-site-nav] .nav-links {
    position: fixed; top: 64px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--v2-border);
    padding: 8px 16px 20px; max-height: calc(100vh - 64px); overflow-y: auto;
    box-shadow: 0 20px 40px rgba(26,46,53,.12);
    display: none;
  }
  nav[data-site-nav].nav-open .nav-links { display: flex; }
  nav[data-site-nav] .nav-links > li { width: 100%; border-bottom: 1px solid var(--v2-border); }
  nav[data-site-nav] .nav-links > li:last-child { border-bottom: none; }
  nav[data-site-nav] .nav-links a,
  nav[data-site-nav] .nav-drop-toggle { width: 100%; padding: 14px 4px; font-size: 15px; justify-content: space-between; }
  nav[data-site-nav] .nav-portal-link { border: none; padding: 14px 4px; font-family: 'DM Sans', sans-serif; font-size: 15px; }
  nav[data-site-nav] .nav-cta { text-align: center; justify-content: center; margin-top: 10px; padding: 14px; }
  nav[data-site-nav] .nav-links > li:has(.nav-cta) { border-bottom: none; }

  /* accordion: dropdown flows inline, hidden until .open */
  nav[data-site-nav] .nav-drop {
    position: static; transform: none; min-width: 0; width: 100%;
    box-shadow: none; border: none; border-radius: 0; padding: 0 0 10px;
    grid-template-columns: 1fr; gap: 0;
    display: none; opacity: 1; visibility: visible; pointer-events: auto;
  }
  nav[data-site-nav] .nav-has-drop:hover .nav-drop { display: none; } /* no hover-open on mobile */
  /* override the desktop open-state transform (higher specificity) so the
     accordion flows in-place instead of being shoved off-screen left */
  nav[data-site-nav] .nav-has-drop.open .nav-drop {
    display: block; position: static; transform: none; left: auto;
  }
  nav[data-site-nav] .nav-drop-col { padding-left: 10px; margin-bottom: 6px; }
  nav[data-site-nav] .nav-drop-head { border-bottom: none; padding: 8px; margin: 0; }
  nav[data-site-nav] .nav-drop-col a { padding: 10px 12px; }
  nav[data-site-nav] .nav-drop-foot { padding: 10px 10px 0; }
}

/* ─────────────────────────────────────────────────────────────
   PROGRAMME PAGE layout
   ───────────────────────────────────────────────────────────── */
.prog-hero {
  padding-top: 64px; background: var(--v2-ink);
  position: relative; overflow: hidden;
}
.prog-hero .hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 2px, transparent 2px),
    linear-gradient(90deg, rgba(255,255,255,.045) 2px, transparent 2px);
  background-size: 150px 150px; background-position: -40px -30px;
}
.prog-hero-inner {
  position: relative; max-width: 820px; margin: 0 auto; padding: 84px 24px 72px; text-align: center;
}
.prog-stream-badge {
  display: inline-block; font-family: 'DM Mono', monospace; font-size: 12px; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase; padding: 6px 14px; border-radius: 100px;
  background: var(--v2-teal); color: #fff; margin-bottom: 18px;
}
.prog-status-badge {
  display: inline-block; font-family: 'DM Mono', monospace; font-size: 11px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase; padding: 5px 12px; border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,.3); color: rgba(255,255,255,.85); margin-left: 8px;
}
.prog-hero-title {
  font-family: 'DM Serif Display', serif; font-weight: 400;
  font-size: clamp(30px, 5vw, 46px); line-height: 1.15; color: #fff; letter-spacing: -.5px;
  margin: 0 0 14px; overflow-wrap: break-word; word-break: break-word;
}
.prog-hero-meta {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 12px; margin: 18px 0 8px;
}
.prog-hero-meta .chip {
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  border-radius: 9px; padding: 8px 12px;
}
.prog-hero-price {
  font-family: 'DM Serif Display', serif; font-size: clamp(26px, 4vw, 34px); color: #7DD3DC; margin-top: 10px;
}
.prog-hero-start { font-size: 14px; color: rgba(255,255,255,.82); margin-top: 8px; }
/* Bootcamp hero CTA — the paying button, kept above the fold on a phone */
.prog-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.prog-hero-note { font-size: 13px; color: rgba(255,255,255,.72); line-height: 1.55; margin-top: 10px; max-width: 520px; }

.prog-body { padding: 72px 24px; }
.prog-body-inner { max-width: 720px; margin: 0 auto; }
.prog-h { font-family: 'DM Serif Display', serif; font-weight: 400; font-size: 26px; color: var(--v2-ink); margin: 0 0 8px; }
.prog-lead { font-size: 16px; color: var(--v2-mid); line-height: 1.7; margin: 0 0 8px; }

.prog-included { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 12px; }
.prog-included li {
  position: relative; padding-left: 30px; font-size: 15px; color: var(--v2-mid); line-height: 1.55;
}
.prog-included li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  width: 20px; height: 20px; border-radius: 50%; background: var(--v2-teal-lt); color: var(--v2-teal-dk);
  font-size: 12px; font-weight: 800; display: flex; align-items: center; justify-content: center;
}

/* Founding offer callout (weekly pages) */
.prog-founding {
  margin: 28px 0 0; padding: 18px 20px; border-radius: 14px;
  background: linear-gradient(135deg, #FFF7ED 0%, #FEF2E3 100%); border: 1px solid #FBBF77;
}
.prog-founding strong { display: block; font-size: 15px; font-weight: 800; color: #C2410C; margin-bottom: 4px; }
.prog-founding span { display: block; font-size: 14px; color: #9A3412; line-height: 1.6; }
.prog-founding .ref-note { margin-top: 8px; font-size: 12.5px; color: #9A3412; opacity: .85; }

/* CHER Method strip */
.cher-strip { background: var(--v2-teal-lt); border-top: 1px solid #D6EEF2; border-bottom: 1px solid #D6EEF2; padding: 40px 24px; }
.cher-strip-inner { max-width: 900px; margin: 0 auto; }
.cher-strip-label { font-family: 'DM Mono', monospace; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--v2-teal-dk); text-align: center; margin-bottom: 18px; }
.cher-strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 620px) { .cher-strip-grid { grid-template-columns: 1fr 1fr; } }
.cher-strip-item { background: #fff; border: 1px solid #D6EEF2; border-radius: 12px; padding: 16px; }
.cher-strip-item .l { font-family: 'DM Serif Display', serif; font-size: 26px; color: var(--v2-teal-dk); line-height: 1; }
.cher-strip-item .w { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--v2-light); margin: 6px 0 4px; }
.cher-strip-item .d { font-size: 12.5px; color: var(--v2-mid); line-height: 1.5; }

/* FAQs */
.prog-faqs { margin-top: 8px; display: grid; gap: 12px; }
.pf-faq { border: 1px solid var(--v2-border); border-radius: 12px; padding: 16px 18px; background: #fff; }
.pf-q { font-size: 15px; font-weight: 700; color: var(--v2-ink); margin-bottom: 6px; }
.pf-a { font-size: 14px; color: var(--v2-mid); line-height: 1.65; }

/* Primary CTA block */
.prog-cta { background: var(--v2-ink); padding: 56px 24px; text-align: center; }
.prog-cta-inner { max-width: 560px; margin: 0 auto; }
.prog-cta h2 { font-family: 'DM Serif Display', serif; font-weight: 400; font-size: clamp(24px,4vw,34px); color: #fff; margin: 0 0 10px; }
.prog-cta p { font-size: 15px; color: rgba(255,255,255,.85); line-height: 1.6; margin: 0 0 24px; }
.prog-cta-btns { display: flex; flex-direction: column; gap: 12px; align-items: center; }
/* Small print under the CTA: price/payment note, minimum-size disclosure */
.prog-cta-note { font-size: 13px; color: rgba(255,255,255,.72); line-height: 1.6; margin: 14px 0 0; }
.prog-cta .prog-cta-note a { color: #7DD3DC; font-weight: 600; }
/* ── shared button colours — explicit white text on teal (Section B item 8) ── */
.v2-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 700;
  padding: 14px 28px; border-radius: 10px; text-decoration: none; border: none; cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s; max-width: 100%;
}
.v2-btn-primary { background: var(--v2-teal); color: #fff; box-shadow: 0 8px 22px rgba(26,122,138,.24); }
.v2-btn-primary:hover { background: var(--v2-teal-dk); color: #fff; transform: translateY(-1px); }
.v2-btn-wa { background: #16A34A; color: #fff; }
.v2-btn-wa:hover { background: #15803D; color: #fff; }
.v2-btn-ghost { background: transparent; color: rgba(255,255,255,.9); border: 1.5px solid rgba(255,255,255,.35); }
.v2-btn-ghost:hover { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.7); }
.v2-btn-outline { background: transparent; color: var(--v2-teal-dk); border: 1.5px solid var(--v2-teal); }
.v2-btn-outline:hover { background: var(--v2-teal-lt); color: var(--v2-teal-dk); }

/* ─────────────────────────────────────────────────────────────
   WAITLIST form
   ───────────────────────────────────────────────────────────── */
.waitlist-form { display: grid; gap: 10px; text-align: left; margin-top: 8px; }
.waitlist-form input,
.waitlist-form select {
  width: 100%; padding: 12px 14px; border: 1px solid var(--v2-border); border-radius: 10px;
  font-size: 15px; font-family: inherit; color: var(--v2-ink); background: #fff;
}
.waitlist-form input:focus,
.waitlist-form select:focus { outline: 2px solid var(--v2-teal); outline-offset: 1px; border-color: var(--v2-teal); }
.waitlist-form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.waitlist-form button[type="submit"] { margin-top: 4px; width: 100%; }
.waitlist-result { font-size: 13px; color: var(--v2-mid); min-height: 16px; margin: 2px 0 0; }
.waitlist-done { background: #F0FFF4; border: 1px solid #C6F6D5; color: #276749; border-radius: 10px; padding: 16px; font-size: 15px; font-weight: 600; }
.waitlist-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ─────────────────────────────────────────────────────────────
   CHOOSER page (programmes.html) stream cards
   ───────────────────────────────────────────────────────────── */
.chooser-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.chooser-card {
  background: #fff; border: 2px solid var(--v2-border); border-radius: 18px; padding: 30px;
  display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s, border-color .2s;
}
.chooser-card:hover { transform: translateY(-4px); box-shadow: 0 20px 44px rgba(26,46,53,.1); }
.chooser-card .cc-badge {
  display: inline-block; align-self: flex-start; font-family: 'DM Mono', monospace; font-size: 11px;
  font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: #fff;
  padding: 5px 12px; border-radius: 100px; margin-bottom: 16px;
}
.chooser-card h3 { font-family: 'DM Serif Display', serif; font-weight: 400; font-size: 24px; color: var(--v2-ink); margin: 0 0 4px; }
.chooser-card .cc-code { font-family: 'DM Mono', monospace; font-size: 13px; color: var(--v2-light); margin-bottom: 14px; }
.chooser-card .cc-who { font-size: 14.5px; color: var(--v2-mid); line-height: 1.6; margin: 0 0 20px; flex: 1; }
.chooser-card .cc-links { display: grid; gap: 10px; }
.chooser-card .cc-link {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 13px 16px; border-radius: 10px; text-decoration: none; font-weight: 700; font-size: 14px;
  background: var(--v2-teal-lt); color: var(--v2-teal-dk); border: 1px solid #D6EEF2;
}
.chooser-card .cc-link:hover { background: var(--v2-teal); color: #fff; }
.chooser-card .cc-link .cc-when { font-family: 'DM Mono', monospace; font-size: 11px; font-weight: 500; opacity: .8; }

/* ─────────────────────────────────────────────────────────────
   HOMEPAGE "Enrolling now" strip
   ───────────────────────────────────────────────────────────── */
.enrolling-strip { background: var(--v2-teal-lt); border-top: 1px solid #D6EEF2; border-bottom: 1px solid #D6EEF2; padding: 40px 24px; }
.enrolling-inner { max-width: 1100px; margin: 0 auto; }
.enrolling-head { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.enrolling-head .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--v2-coral); flex-shrink: 0; box-shadow: 0 0 0 4px rgba(232,96,76,.18); }
.enrolling-head h2 { font-family: 'DM Serif Display', serif; font-weight: 400; font-size: 24px; color: var(--v2-ink); margin: 0; }
.enrolling-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.enrolling-card {
  background: #fff; border: 1px solid #D6EEF2; border-radius: 14px; padding: 20px; text-decoration: none;
  display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s;
}
.enrolling-card:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(26,46,53,.1); }
.enrolling-card .ec-when { font-family: 'DM Mono', monospace; font-size: 11px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: #fff; background: var(--v2-teal); align-self: flex-start; padding: 4px 10px; border-radius: 6px; margin-bottom: 12px; }
.enrolling-card h3 { font-size: 16px; font-weight: 800; color: var(--v2-ink); margin: 0 0 6px; }
.enrolling-card p { font-size: 13px; color: var(--v2-mid); line-height: 1.55; margin: 0 0 14px; flex: 1; }
.enrolling-card .ec-price { font-family: 'DM Serif Display', serif; font-size: 20px; color: var(--v2-teal-dk); }
.enrolling-card .ec-go { font-size: 13px; font-weight: 700; color: var(--v2-teal); margin-top: 8px; }

/* Homepage three stream tiles */
.tiles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }

/* ─────────────────────────────────────────────────────────────
   SECTION B FIXES
   ───────────────────────────────────────────────────────────── */

/* B6 — pin light: hide any leftover theme toggle on marketing pages */
.sq-theme-btn, .sq-theme-mobile { display: none !important; }

/* B7 — corner "status" pills join the badge row in normal flow on small screens */
@media (max-width: 640px) {
  .pc-status { position: static !important; display: inline-block; margin-bottom: 10px; }
  .prog-status-badge { display: inline-block; margin: 8px 0 0; }
}

/* ─────────────────────────────────────────────────────────────
   Shared FOOTER (self-contained layout for fresh pages)
   ───────────────────────────────────────────────────────────── */
.v2-footer { background: #14232A; color: rgba(255,255,255,.85); padding: 44px 24px 28px; }
.v2-footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.v2-footer .fb-logo img { height: 34px; width: auto; display: block; margin-bottom: 12px; }
.v2-footer .fb-blurb { font-size: 13px; line-height: 1.7; max-width: 240px; color: rgba(255,255,255,.8); }
.v2-footer h4 { font-family: 'DM Mono', monospace; font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.7); margin: 0 0 14px; }
.v2-footer a { display: block; font-size: 14px; color: rgba(255,255,255,.85); text-decoration: none; margin-bottom: 9px; }
.v2-footer a:hover { color: #fff; }
.v2-footer-bottom { max-width: 1100px; margin: 28px auto 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.v2-footer-bottom p { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: .04em; color: rgba(255,255,255,.6); margin: 0; }
.v2-footer-legal { max-width: 1100px; margin: 16px auto 0; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: center; gap: 22px; flex-wrap: wrap; }
.v2-footer-legal a { display: inline; font-size: 12px; margin: 0; }
@media (max-width: 700px) { .v2-footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 420px) { .v2-footer-inner { grid-template-columns: 1fr; } }

/* B9 — zero horizontal scroll; long tokens wrap; scroll-top clears / hides on mobile */
html, body { max-width: 100%; overflow-x: hidden; }
img, video, svg, table { max-width: 100%; }
.prog-hero-title, .hero-title, .section-title, .cta-title { overflow-wrap: break-word; }
@media (max-width: 600px) {
  .prog-cta-btns .v2-btn, .hero-cta-group .btn-primary, .hero-cta-group .btn-secondary { width: 100%; }
  .sq-top-btn { display: none !important; } /* avoid overlap on narrow screens */
}
