/* ===========================================================================
   GSA brand tokens, global
   ---------------------------------------------------------------------------
   These were defined only on .gsa-scope. The header, footer and mobile menu
   sit OUTSIDE that element, so any rule there using var(--lime) resolved to
   nothing — which is how the mobile "Book a demo" button ended up near-black
   text on a black panel with no background at all. Declared on :root so the
   whole document can use them; .gsa-scope still redeclares its own set.
   =========================================================================== */
:root {
  --gsa-lime:       #E4EE4F;
  --gsa-lime-hover: #EEF66A;
  --gsa-teal:       #1C403D;
  --gsa-ink:        #0B1C18;
  --gsa-on-dark:    #EDF2EC;
  --gsa-on-dark-mute: #92A79E;
  --gsa-line-dark:  rgba(255,255,255,.14);
}

/* ===========================================================================
   GSA 2026 — category design layer
   ---------------------------------------------------------------------------
   Sits on top of the purchased theme (main.css). Everything here is prefixed
   .gsa- and uses class selectors only, so it never fights the theme's cascade.
   Typeface is Satoshi, already self-hosted by the theme — no new dependency.
   =========================================================================== */

.gsa-scope {
  /* ---- ground & ink ---- */
  --void:      #071310;
  --ink:       #0B1C18;
  --slate:     #112825;
  --raised:    #16332E;
  --paper:     #F6F8F3;
  --paper-2:   #ECF0E8;
  --white:     #FFFFFF;

  /* ---- brand ---- */
  --lime:      #E4EE4F;
  --lime-dim:  #C3CD3A;
  --teal:      #1C403D;
  --teal-lift: #A8D5C6;

  /* ---- text ---- */
  --on-dark:      #EDF2EC;
  --on-dark-mute: #92A79E;
  --on-dark-soft: #B9C8C1;
  --on-light:      #0B1C18;
  --on-light-mute: #576B65;

  /* ---- lines ---- */
  --line-dark:  rgba(255,255,255,.10);
  --line-dark2: rgba(255,255,255,.16);
  --line-light: #DDE3D8;

  /* ---- operational status (separate from the accent) ---- */
  --ok:   #4FD69C;
  --warn: #F0B542;
  --crit: #F2705C;

  --shadow-lift: 0 1px 2px rgba(7,19,16,.06), 0 18px 44px -22px rgba(7,19,16,.32);
  --shadow-deep: 0 30px 70px -34px rgba(0,0,0,.72);

  --r-sm: 6px; --r-md: 10px; --r-lg: 16px; --r-xl: 24px;

  --fs: "Satoshi", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  /* System mono — no web font request, no silent fallback. */
  --fm: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;

  font-family: var(--fs);
  color: var(--on-light);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.gsa-scope *,
.gsa-scope *::before,
.gsa-scope *::after { box-sizing: border-box; }

/* ---------------------------------------------------------------- layout */
.gsa-sec { padding: clamp(64px, 9vw, 132px) 0; position: relative; }
.gsa-sec--tight { padding: clamp(48px, 6vw, 84px) 0; }
.gsa-wrap { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.gsa-wrap--narrow { max-width: 860px; }

.gsa-dark  { background: var(--ink);  color: var(--on-dark); }
.gsa-void  { background: var(--void); color: var(--on-dark); }
.gsa-light { background: var(--paper); color: var(--on-light); }
.gsa-white { background: var(--white); color: var(--on-light); }

/* ---------------------------------------------------------------- type */
.gsa-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase;
  margin: 0 0 20px; display: flex; align-items: center; gap: 10px;
  color: var(--on-light-mute);
}
:is(.gsa-dark,.gsa-void) .gsa-eyebrow, .gsa-void .gsa-eyebrow { color: var(--on-dark-mute); }
.gsa-eyebrow::before {
  content: ""; width: 22px; height: 2px; background: var(--lime); flex: none; border-radius: 2px;
}

.gsa-display {
  font-family: var(--fs);
  font-size: clamp(2.5rem, 6.1vw, 4.7rem);
  font-weight: 700; line-height: .98; letter-spacing: -.038em;
  margin: 0 0 24px; text-wrap: balance; color: inherit;
}
.gsa-h2 {
  font-size: clamp(1.9rem, 3.9vw, 3rem);
  font-weight: 700; line-height: 1.06; letter-spacing: -.028em;
  margin: 0 0 18px; text-wrap: balance; color: inherit;
}
.gsa-h3 {
  font-size: 1.28rem; font-weight: 700; line-height: 1.24; letter-spacing: -.014em;
  margin: 0 0 10px; color: inherit;
}
.gsa-h4 {
  font-size: 1.02rem; font-weight: 700; letter-spacing: -.008em; margin: 0 0 7px; color: inherit;
}
.gsa-lede {
  font-size: clamp(1.06rem, 1.55vw, 1.28rem); line-height: 1.56;
  color: var(--on-light-mute); max-width: 60ch; margin: 0 0 32px; font-weight: 400;
}
:is(.gsa-dark,.gsa-void) .gsa-lede, .gsa-void .gsa-lede { color: var(--on-dark-soft); }
.gsa-p { margin: 0 0 14px; color: var(--on-light-mute); }
:is(.gsa-dark,.gsa-void) .gsa-p, .gsa-void .gsa-p { color: var(--on-dark-soft); }
.gsa-p--tight { max-width: 56ch; }
.gsa-lime { color: var(--lime); }
.gsa-nowrap { white-space: nowrap; }
.gsa-num { font-variant-numeric: tabular-nums; }

.gsa-head { max-width: 720px; margin: 0 0 clamp(38px, 5vw, 64px); }
.gsa-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.gsa-head--center .gsa-eyebrow { justify-content: center; }
.gsa-head--center .gsa-lede { margin-left: auto; margin-right: auto; }

/* ---------------------------------------------------------------- buttons */
.gsa-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--fs); font-size: .95rem; font-weight: 700; letter-spacing: -.01em;
  padding: 15px 26px; min-height: 50px; border-radius: 100px; border: 1.5px solid transparent;
  text-decoration: none; cursor: pointer; transition: transform .16s ease, background .16s ease,
  border-color .16s ease, color .16s ease; white-space: nowrap;
}
.gsa-btn:hover { transform: translateY(-1px); text-decoration: none; }
.gsa-btn:focus-visible { outline: 3px solid var(--lime); outline-offset: 3px; }
.gsa-btn--primary { background: var(--lime); color: #0B1C18; border-color: var(--lime); }
.gsa-btn--primary:hover { background: #EEF66A; color: #0B1C18; }
.gsa-btn--ghost { background: transparent; color: var(--on-dark); border-color: var(--line-dark2); }
.gsa-btn--ghost:hover { border-color: var(--lime); color: var(--lime); }
.gsa-light .gsa-btn--ghost, .gsa-white .gsa-btn--ghost { color: var(--on-light); border-color: #C6CFC0; }
.gsa-light .gsa-btn--ghost:hover, .gsa-white .gsa-btn--ghost:hover { border-color: var(--teal); color: var(--teal); }
.gsa-btn--dark { background: var(--ink); color: var(--on-dark); border-color: var(--ink); }
.gsa-btn--dark:hover { background: var(--slate); color: var(--lime); }
.gsa-btns { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.gsa-link {
  display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: .93rem;
  color: var(--teal); text-decoration: none; border-bottom: 1.5px solid transparent; padding-bottom: 1px;
}
.gsa-link:hover { border-bottom-color: currentColor; text-decoration: none; color: var(--teal); }
:is(.gsa-dark,.gsa-void) .gsa-link, .gsa-void .gsa-link { color: var(--lime); }
.gsa-link:focus-visible { outline: 2px solid var(--lime); outline-offset: 3px; }

/* ---------------------------------------------------------------- hero */
.gsa-hero { position: relative; overflow: hidden; padding: clamp(96px, 13vw, 168px) 0 0; }
.gsa-hero::before {
  content: ""; position: absolute; inset: -30% -10% auto -10%; height: 90%;
  background: radial-gradient(58% 62% at 22% 12%, rgba(228,238,79,.13), transparent 70%),
              radial-gradient(48% 56% at 82% 4%, rgba(168,213,198,.10), transparent 72%);
  pointer-events: none;
}
.gsa-hero__inner { position: relative; z-index: 1; }
.gsa-hero__grid {
  display: grid; grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
  gap: clamp(36px, 5vw, 76px); align-items: center;
}
.gsa-hero__claim {
  display: inline-flex; align-items: center; gap: 9px; padding: 7px 15px 7px 11px;
  border: 1px solid var(--line-dark2); border-radius: 100px; margin: 0 0 26px;
  font-size: 12.5px; font-weight: 600; color: var(--on-dark-soft); letter-spacing: -.005em;
}
.gsa-hero .gsa-display { color: var(--on-dark); }
.gsa-hero__sub {
  font-size: clamp(1.04rem, 1.5vw, 1.2rem); line-height: 1.58; color: var(--on-dark-soft);
  max-width: 54ch; margin: 0 0 34px;
}
.gsa-hero__note {
  margin: 22px 0 0; font-size: 13px; color: var(--on-dark-mute); display: flex;
  flex-wrap: wrap; gap: 7px 20px;
}
.gsa-hero__note span { display: inline-flex; align-items: center; gap: 7px; }

/* live pulse dot */
.gsa-pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); flex: none; position: relative; }
.gsa-pulse::after {
  content: ""; position: absolute; inset: -5px; border-radius: 50%;
  border: 1.5px solid var(--ok); opacity: .55; animation: gsaPulse 2.4s ease-out infinite;
}
@keyframes gsaPulse { 0% { transform: scale(.55); opacity: .75 } 100% { transform: scale(1.5); opacity: 0 } }
@media (prefers-reduced-motion: reduce) { .gsa-pulse::after { animation: none; opacity: .3 } }

/* ---------------------------------------------------------------- console */
/* Interface illustration of the live Bays view. A faithful light-theme replica of the shipping
   dashboard: cream canvas, white cards, stat tiles, and full bay cards with the real anatomy —
   heartbeat / uptime / version / projector, the yellow Reset menu, Remote, Details, and per-app
   health chips. The window bar stays dark for contrast against the hero. */
.gsa-console {
  background: linear-gradient(180deg, var(--slate), #0E2320);
  border: 1px solid var(--line-dark2); border-radius: var(--r-lg);
  box-shadow: var(--shadow-deep); overflow: hidden; font-family: var(--fs);
}
.gsa-console__bar {
  display: flex; align-items: center; gap: 10px; padding: 12px 16px;
  border-bottom: 1px solid var(--line-dark); background: rgba(0,0,0,.22);
}
.gsa-console__dots { display: flex; gap: 6px; }
.gsa-console__dots i { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.16); display: block; }
.gsa-console__title {
  font-size: 12px; font-weight: 700; color: var(--on-dark-soft); letter-spacing: -.005em;
}
.gsa-console__live {
  margin-left: auto; display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ok);
}
.gsa-console__live--warn { color: var(--warn); }
.gsa-console__live--warn .gsa-pulse { background: var(--warn); }
.gsa-console__body { padding: 14px; background: #F2F4EA; }

.gsa-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 0 0 12px; }
.gsa-stat {
  background: #FFFFFF; border: 1px solid #E4E8D9;
  border-radius: 12px; padding: 12px 14px 11px;
}
.gsa-stat__k {
  font-size: 9.5px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase;
  color: #7D8880; margin: 0 0 5px;
}
.gsa-stat__v {
  font-size: 1.42rem; font-weight: 700; color: #15221C; line-height: 1;
  font-variant-numeric: tabular-nums; margin: 0 0 4px;
}
.gsa-stat__m { font-size: 10.5px; color: #97A199; margin: 0; }
.gsa-stat__m--ok { color: #1D7A46; }
.gsa-stat__m--warn { color: #A96F13; }

.gsa-bays { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.gsa-bay {
  background: #FFFFFF; border: 1px solid #E4E8D9;
  border-radius: 14px; padding: 13px 13px 11px;
}
.gsa-bay__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; margin: 0 0 10px; }
.gsa-bay__n { font-size: 14.5px; font-weight: 800; color: #15221C; letter-spacing: -.01em; margin: 0 0 5px; }
.gsa-bay__venue {
  display: inline-block; background: #EDF0E3; color: #5C665E; border-radius: 999px;
  font-size: 9px; font-weight: 700; padding: 3px 9px; letter-spacing: .01em;
}
.gsa-bay__pill {
  display: inline-flex; align-items: center; gap: 5px; flex: none;
  background: #E7F6EC; color: #1D7A46; border: 1px solid #CBE9D6; border-radius: 999px;
  font-size: 10px; font-weight: 700; padding: 4px 10px;
}
.gsa-bay__pill i { width: 6px; height: 6px; border-radius: 50%; background: #2FA968; display: block; }
.gsa-bay__rows { margin: 0 0 11px; }
.gsa-bay__rows div { display: flex; justify-content: space-between; gap: 8px; padding: 2.5px 0; }
.gsa-bay__rows span { font-size: 10.5px; color: #8A948C; }
.gsa-bay__rows b { font-size: 10.5px; font-weight: 600; color: #26332C; font-variant-numeric: tabular-nums; }
.gsa-bay__btns { display: flex; gap: 6px; padding: 0 0 10px; border-bottom: 1px solid #EDF0E4; margin: 0 0 10px; }
.gsa-bay__btn {
  display: inline-block; background: #FFFFFF; border: 1px solid #DFE4D4; border-radius: 999px;
  font-size: 9.5px; font-weight: 700; color: #26332C; padding: 5px 10px; white-space: nowrap;
}
.gsa-bay__btn--y { background: #E4EE4F; border-color: #E4EE4F; color: #10231D; }
.gsa-bay__chips { display: flex; flex-wrap: wrap; gap: 5px; }
.gsa-chip {
  display: inline-flex; align-items: center; gap: 5px;
  background: #F4F6EC; border: 1px solid #E6EADB; border-radius: 999px;
  font-size: 9px; font-weight: 600; color: #3D4A41; padding: 3.5px 8px; white-space: nowrap;
}
.gsa-chip i { width: 5px; height: 5px; border-radius: 50%; background: #2FA968; display: block; flex: none; }

/* Bay detail + Controls replica (the "operate the bay" section). Same visual system as the
   hero console: white cards on the cream canvas, the product's own pills and yellow action. */
.gsa-two { display: grid; grid-template-columns: 1fr 1.12fr; gap: 10px; align-items: start; }
.gsa-panel { background: #FFFFFF; border: 1px solid #E4E8D9; border-radius: 14px; padding: 13px 14px; }
.gsa-panel__top { display: flex; justify-content: space-between; align-items: center; gap: 8px; margin: 0 0 6px; }
.gsa-panel__name { font-size: 13px; font-weight: 800; color: #15221C; letter-spacing: -.01em; margin: 0; }
.gsa-det div { display: flex; justify-content: space-between; align-items: center; gap: 8px; padding: 4.5px 0; border-top: 1px solid #F0F2E7; }
.gsa-det div:first-child { border-top: 0; }
.gsa-det span:first-child { font-size: 10px; color: #8A948C; }
.gsa-det b { font-size: 10px; font-weight: 600; color: #26332C; font-variant-numeric: tabular-nums; }
.gsa-bay__pill--sm { font-size: 8.5px; padding: 2.5px 8px; }
.gsa-bay__pill--mute { background: #F0F1EA; color: #6B756D; border-color: #E2E5D8; }
.gsa-bay__pill--mute i { background: #9AA49B; }
.gsa-ctl__note { font-size: 9.5px; color: #97A199; margin: 2px 0 4px; }
.gsa-ctl__h { font-size: 10px; font-weight: 800; color: #26332C; margin: 10px 0 6px; }
.gsa-ctl__row { display: flex; flex-wrap: wrap; gap: 5px; }
.gsa-cbtn {
  display: inline-block; background: #FFFFFF; border: 1px solid #DFE4D4; border-radius: 9px;
  font-size: 9.5px; font-weight: 700; color: #26332C; padding: 6px 10px; white-space: nowrap;
}
.gsa-cbtn--y { background: #E4EE4F; border-color: #E4EE4F; color: #10231D; }
.gsa-cbtn--r { color: #C2453A; border-color: #EFCFC8; }
.gsa-vol { display: flex; align-items: center; gap: 9px; margin-top: 2px; }
.gsa-vol__track { position: relative; flex: 1; height: 5px; border-radius: 999px; background: #E2E5D6; display: block; }
.gsa-vol__fill { position: absolute; left: 0; top: 0; bottom: 0; width: 64%; border-radius: 999px; background: #E4EE4F; display: block; }
.gsa-vol__knob {
  position: absolute; left: 64%; top: 50%; width: 13px; height: 13px; border-radius: 50%;
  background: #DDE84A; border: 2px solid #FFFFFF; box-shadow: 0 1px 3px rgba(0,0,0,.18);
  transform: translate(-50%, -50%); display: block;
}
.gsa-vol b { font-size: 10.5px; color: #26332C; }

@media (max-width: 620px) {
  .gsa-stats { grid-template-columns: repeat(3, 1fr); }
  .gsa-bays  { grid-template-columns: 1fr; }
  .gsa-two   { grid-template-columns: 1fr; }
  .gsa-duo .gsa-console { height: auto; }   /* fixed heights would clip on narrow phones */
}

/* ---------------------------------------------------------------- proof strip */
.gsa-proof { border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); padding: 26px 0; margin-top: clamp(56px, 7vw, 92px); }
.gsa-proof__row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 22px; }
.gsa-proof__label { font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--on-dark-mute); margin: 0; }
.gsa-proof__names { display: flex; flex-wrap: wrap; gap: 12px 34px; align-items: center; }
.gsa-proof__name { font-size: 1.02rem; font-weight: 700; color: var(--on-dark-soft); letter-spacing: -.02em; }

/* Proof band (2026-09-09) — the numbers under the hero, inside the existing proof strip.
   6 facilities / 17 bays / 14 Uneekor+GSPro / 3 TrackMan. 17 = 14 + 3: if any of these ever
   change, keep the split adding up to the total. The counts include the AnyTime multi-site bays,
   so they legitimately exceed the platform's onboarded-bay count — do not "fix" them against the
   dashboard. Deliberately NO card chrome (no fill, border box, radius or shadow): hairline
   dividers only, so it belongs to the strip above it rather than sitting on it. */
/* 2026-09-10 — the venue-names row above this was removed, so the band no longer needs its own
   separating rule: .gsa-proof already supplies the hairline top/bottom and the 26px padding, and
   keeping these would draw a second line right under the first. Edited in place, not overridden. */
.gsa-proof__live  { display: flex; align-items: center; justify-content: center; gap: 9px; margin: 0 0 22px; font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--on-dark-mute); }
.gsa-proof__stats { display: grid; grid-template-columns: repeat(4, 1fr); }
.gsa-proof__stat  { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; padding: 2px 14px; border-left: 1px solid var(--line-dark); }
.gsa-proof__stat:first-child { border-left: 0; }
.gsa-proof__num   { font-size: clamp(40px, 5.4vw, 78px); font-weight: 700; line-height: .92; letter-spacing: -.04em; color: var(--on-dark); font-variant-numeric: tabular-nums; }
.gsa-proof__cap   { font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--on-dark-mute); }

/* Two-up below 880: the left-hand cell of each row loses its divider. */
@media (max-width: 880px) {
  .gsa-proof__stats { grid-template-columns: repeat(2, 1fr); row-gap: 28px; }
  .gsa-proof__stat:nth-child(odd) { border-left: 0; }
}

/* ---------------------------------------------------------------- cards */
.gsa-grid { display: grid; gap: 18px; }
.gsa-grid--2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.gsa-grid--3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.gsa-grid--4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
@media (max-width: 980px) { .gsa-grid--3, .gsa-grid--4 { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 640px) { .gsa-grid--2, .gsa-grid--3, .gsa-grid--4 { grid-template-columns: 1fr; } }

.gsa-card {
  background: var(--white); border: 1px solid var(--line-light); border-radius: var(--r-md);
  padding: 26px 24px; box-shadow: var(--shadow-lift);
}
:is(.gsa-dark,.gsa-void) .gsa-card, .gsa-void .gsa-card {
  background: rgba(255,255,255,.035); border-color: var(--line-dark); box-shadow: none;
}
.gsa-card__ico {
  width: 42px; height: 42px; border-radius: var(--r-sm); display: grid; place-items: center;
  background: var(--teal); color: var(--lime); margin: 0 0 16px; flex: none;
}
:is(.gsa-dark,.gsa-void) .gsa-card__ico, .gsa-void .gsa-card__ico { background: rgba(228,238,79,.13); }
.gsa-card__ico svg { width: 20px; height: 20px; }
.gsa-card .gsa-p:last-child { margin-bottom: 0; }

/* cost-of-manual list */
.gsa-cost { display: grid; gap: 0; border-top: 1px solid var(--line-dark); }
.gsa-cost__row {
  display: grid; grid-template-columns: 54px minmax(0,1fr); gap: 20px; align-items: start;
  padding: 24px 0; border-bottom: 1px solid var(--line-dark);
}
.gsa-cost__n { font-family: var(--fm); font-size: 12px; font-weight: 600; color: var(--lime); padding-top: 5px; }
@media (max-width: 560px) { .gsa-cost__row { grid-template-columns: 1fr; gap: 6px; } }

/* ---------------------------------------------------------------- product block */
.gsa-prod { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: clamp(34px,5vw,72px); align-items: center; }
.gsa-prod--flip .gsa-prod__media { order: -1; }
@media (max-width: 900px) {
  /* minmax(0,1fr), same as the desktop rule above: a bare 1fr means minmax(auto,1fr), and
     min-width:auto let the tickets trio's intrinsic width blow the single column out to
     492px on a 375px phone — the whole page then scrolled sideways. */
  .gsa-prod { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .gsa-prod--flip .gsa-prod__media { order: 0; }
}
.gsa-prod__tag {
  display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; padding: 6px 13px; border-radius: 100px;
  background: rgba(228,238,79,.14); color: var(--lime); margin: 0 0 18px;
}
.gsa-light .gsa-prod__tag, .gsa-white .gsa-prod__tag { background: var(--teal); color: var(--lime); }
.gsa-feat { list-style: none; margin: 22px 0 26px; padding: 0; display: grid; gap: 11px; }
/* Marker is absolutely positioned rather than a grid track. With grid, any
   inline element inside the item (a <strong>, a link) becomes a grid item and
   gets laid out in a track instead of flowing with the text. */
.gsa-feat li { position: relative; padding-left: 31px; font-size: .96rem; }
.gsa-feat li::before {
  content: ""; position: absolute; left: 0; top: .42em;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--lime); flex: none;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 11.4 3.4 8.3l1.1-1.1 2 2 4.9-4.9 1.1 1.1z' fill='%23000'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 11.4 3.4 8.3l1.1-1.1 2 2 4.9-4.9 1.1 1.1z' fill='%23000'/%3E%3C/svg%3E") center/contain no-repeat;
}
.gsa-light .gsa-feat li::before, .gsa-white .gsa-feat li::before { background: var(--teal); }

/* ---------------------------------------------------------------- heartbeat sequence */
.gsa-seq { display: grid; gap: 0; counter-reset: sq; }
.gsa-seq__step {
  counter-increment: sq; display: grid; grid-template-columns: 46px minmax(0,1fr); gap: 20px;
  padding: 0 0 30px; position: relative;
}
.gsa-seq__step::before {
  content: ""; position: absolute; left: 22px; top: 38px; bottom: 0; width: 1.5px;
  background: linear-gradient(180deg, var(--lime), rgba(228,238,79,.12));
}
.gsa-seq__step:last-child { padding-bottom: 0; }
.gsa-seq__step:last-child::before { display: none; }
.gsa-seq__dot {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: var(--slate); border: 1.5px solid var(--lime); color: var(--lime);
  font-family: var(--fm); font-size: 13px; font-weight: 600; z-index: 1;
}
.gsa-light .gsa-seq__dot, .gsa-white .gsa-seq__dot { background: var(--teal); }
.gsa-seq__t { font-size: 10.5px; font-family: var(--fm); color: var(--on-dark-mute); margin: 0 0 4px; letter-spacing: .04em; }
.gsa-light .gsa-seq__t, .gsa-white .gsa-seq__t { color: var(--on-light-mute); }

/* event log */
.gsa-log {
  background: var(--void); border: 1px solid var(--line-dark); border-radius: var(--r-md);
  padding: 6px; font-family: var(--fm); font-size: 12px; overflow: hidden;
}
.gsa-log__row {
  display: grid; grid-template-columns: 62px 16px minmax(0,1fr); gap: 10px; align-items: baseline;
  padding: 9px 11px; border-radius: var(--r-sm);
}
.gsa-log__row + .gsa-log__row { border-top: 1px solid rgba(255,255,255,.05); }
.gsa-log__ts { color: var(--on-dark-mute); font-size: 11px; }
.gsa-log__ic { font-size: 11px; }
.gsa-log__tx { color: var(--on-dark-soft); line-height: 1.45; }
.gsa-log__row--ok  .gsa-log__ic { color: var(--ok); }
.gsa-log__row--warn .gsa-log__ic { color: var(--warn); }
.gsa-log__row--crit .gsa-log__ic { color: var(--crit); }
.gsa-log__row--ok  { background: rgba(79,214,156,.05); }
.gsa-log__row--crit { background: rgba(242,112,92,.06); }
.gsa-log b { color: var(--on-dark); font-weight: 600; }
@media (max-width: 520px) { .gsa-log__row { grid-template-columns: 52px 14px minmax(0,1fr); gap: 7px; font-size: 11px; } }

/* ---------------------------------------------------------------- guardian chat */
.gsa-chat {
  background: var(--white); border: 1px solid var(--line-light); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-lift); max-width: 420px;
}
.gsa-chat__hd {
  display: flex; align-items: center; gap: 11px; padding: 14px 16px;
  background: var(--teal); color: var(--on-dark);
}
.gsa-chat__av { width: 32px; height: 32px; border-radius: 50%; background: var(--lime); color: var(--teal); display: grid; place-items: center; font-weight: 700; font-size: 13px; flex: none; }
.gsa-chat__nm { font-size: 13.5px; font-weight: 700; margin: 0; line-height: 1.2; }
.gsa-chat__st { font-size: 11px; color: var(--teal-lift); margin: 0; display: flex; align-items: center; gap: 6px; }
.gsa-chat__bd { padding: 16px; display: grid; gap: 11px; background: var(--paper); }
.gsa-msg { max-width: 84%; padding: 11px 14px; border-radius: 14px; font-size: 13.5px; line-height: 1.48; }
.gsa-msg--them { background: var(--white); border: 1px solid var(--line-light); border-bottom-left-radius: 4px; color: var(--on-light); }
.gsa-msg--me { background: var(--teal); color: var(--on-dark); margin-left: auto; border-bottom-right-radius: 4px; }
.gsa-msg--sys {
  background: rgba(79,214,156,.12); border: 1px solid rgba(79,214,156,.3); color: #17604A;
  font-size: 12.5px; font-weight: 600; max-width: 100%; display: flex; align-items: center; gap: 8px;
}

/* ---------------------------------------------------------------- matrix */
.gsa-matrix { overflow-x: auto; border: 1px solid var(--line-light); border-radius: var(--r-md); background: var(--white); }
:is(.gsa-dark,.gsa-void) .gsa-matrix, .gsa-void .gsa-matrix { background: rgba(255,255,255,.03); border-color: var(--line-dark); }
.gsa-matrix table { width: 100%; border-collapse: collapse; font-size: .93rem; min-width: 640px; }
.gsa-matrix th, .gsa-matrix td { padding: 15px 18px; text-align: left; border-bottom: 1px solid var(--line-light); }
:is(.gsa-dark,.gsa-void) .gsa-matrix th, :is(.gsa-dark,.gsa-void) .gsa-matrix td { border-color: var(--line-dark); }
.gsa-matrix thead th {
  font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--on-light-mute); background: var(--paper-2);
}
:is(.gsa-dark,.gsa-void) .gsa-matrix thead th { color: var(--on-dark-mute); background: rgba(0,0,0,.24); }
.gsa-matrix tbody tr:last-child th, .gsa-matrix tbody tr:last-child td { border-bottom: none; }
.gsa-matrix tbody th { font-weight: 700; color: inherit; }
.gsa-matrix td { color: var(--on-light-mute); }
:is(.gsa-dark,.gsa-void) .gsa-matrix td { color: var(--on-dark-soft); }
.gsa-tick { color: var(--teal); font-weight: 700; }
:is(.gsa-dark,.gsa-void) .gsa-tick { color: var(--lime); }

/* ---------------------------------------------------------------- pricing */
.gsa-price-card {
  background: var(--white); border: 1px solid var(--line-light); border-radius: var(--r-lg);
  padding: clamp(26px, 3.4vw, 44px); box-shadow: var(--shadow-lift);
}
:is(.gsa-dark,.gsa-void) .gsa-price-card {
  background: linear-gradient(165deg, var(--slate), #0E211E);
  border-color: var(--line-dark2); box-shadow: var(--shadow-deep);
}
.gsa-price-card--feature { border-color: var(--teal); border-width: 2px; }
.gsa-price__amt {
  display: flex; align-items: baseline; gap: 5px; margin: 0 0 6px; flex-wrap: wrap;
}
.gsa-price__big {
  font-size: clamp(3rem, 6.6vw, 4.6rem); font-weight: 700; letter-spacing: -.045em;
  line-height: .9; font-variant-numeric: tabular-nums; color: inherit;
}
.gsa-price__unit { font-size: 1.02rem; font-weight: 600; color: var(--on-light-mute); }
:is(.gsa-dark,.gsa-void) .gsa-price__unit { color: var(--on-dark-mute); }
.gsa-price__cur {
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--on-light-mute); margin: 0 0 22px;
}
:is(.gsa-dark,.gsa-void) .gsa-price__cur { color: var(--on-dark-mute); }

.gsa-calc {
  background: var(--paper-2); border-radius: var(--r-md); padding: 22px; margin: 26px 0;
}
:is(.gsa-dark,.gsa-void) .gsa-calc { background: rgba(0,0,0,.28); }
.gsa-calc__top { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin: 0 0 14px; flex-wrap: wrap; }
.gsa-calc__lab { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--on-light-mute); margin: 0; }
:is(.gsa-dark,.gsa-void) .gsa-calc__lab { color: var(--on-dark-mute); }
.gsa-calc__steps { display: flex; align-items: center; gap: 4px; }
.gsa-calc__btn {
  width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--line-light);
  background: var(--white); color: var(--on-light); font-size: 20px; font-weight: 700;
  cursor: pointer; display: grid; place-items: center; line-height: 1; transition: .15s;
}
:is(.gsa-dark,.gsa-void) .gsa-calc__btn { background: rgba(255,255,255,.06); border-color: var(--line-dark2); color: var(--on-dark); }
.gsa-calc__btn:hover:not(:disabled) { border-color: var(--teal); color: var(--teal); }
:is(.gsa-dark,.gsa-void) .gsa-calc__btn:hover:not(:disabled) { border-color: var(--lime); color: var(--lime); }
.gsa-calc__btn:disabled { opacity: .35; cursor: not-allowed; }
.gsa-calc__btn:focus-visible { outline: 3px solid var(--lime); outline-offset: 2px; }
.gsa-calc__val {
  min-width: 58px; text-align: center; font-size: 1.5rem; font-weight: 700;
  font-variant-numeric: tabular-nums; color: inherit;
}
.gsa-calc__out { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; flex-wrap: wrap; padding-top: 14px; border-top: 1px solid var(--line-light); }
:is(.gsa-dark,.gsa-void) .gsa-calc__out { border-color: var(--line-dark); }
.gsa-calc__sum { font-size: 1.85rem; font-weight: 700; font-variant-numeric: tabular-nums; letter-spacing: -.03em; color: inherit; }
.gsa-calc__note { font-size: 12.5px; color: var(--on-light-mute); margin: 10px 0 0; }
:is(.gsa-dark,.gsa-void) .gsa-calc__note { color: var(--on-dark-mute); }

.gsa-setup {
  border: 1px dashed var(--line-light); border-radius: var(--r-md); padding: 20px 22px; margin: 0 0 18px;
}
:is(.gsa-dark,.gsa-void) .gsa-setup { border-color: var(--line-dark2); }

/* ---------------------------------------------------------------- faq */
.gsa-faq { border-top: 1px solid var(--line-light); }
:is(.gsa-dark,.gsa-void) .gsa-faq { border-color: var(--line-dark); }
.gsa-faq__i { border-bottom: 1px solid var(--line-light); }
:is(.gsa-dark,.gsa-void) .gsa-faq__i { border-color: var(--line-dark); }
.gsa-faq__q {
  width: 100%; background: none; border: 0; text-align: left; cursor: pointer;
  display: grid; grid-template-columns: minmax(0,1fr) 26px; gap: 18px; align-items: center;
  padding: 22px 0; font-family: var(--fs); font-size: 1.06rem; font-weight: 700;
  letter-spacing: -.014em; color: inherit; line-height: 1.34;
}
.gsa-faq__q:focus-visible { outline: 3px solid var(--lime); outline-offset: 2px; border-radius: 4px; }
.gsa-faq__ic { position: relative; width: 20px; height: 20px; justify-self: end; flex: none; }
.gsa-faq__ic::before, .gsa-faq__ic::after {
  content: ""; position: absolute; background: currentColor; border-radius: 2px; transition: transform .22s ease;
}
.gsa-faq__ic::before { left: 0; right: 0; top: 9px; height: 2px; }
.gsa-faq__ic::after { top: 0; bottom: 0; left: 9px; width: 2px; }
.gsa-faq__q[aria-expanded="true"] .gsa-faq__ic::after { transform: scaleY(0); }
.gsa-faq__a { display: none; padding: 0 0 24px; max-width: 68ch; }
.gsa-faq__a.is-open { display: block; }
.gsa-faq__a .gsa-p:last-child { margin-bottom: 0; }

/* ---------------------------------------------------------------- quote */
.gsa-quote { border-left: 2.5px solid var(--lime); padding-left: clamp(20px,3vw,34px); }
.gsa-quote__tx {
  font-size: clamp(1.15rem, 2vw, 1.6rem); line-height: 1.44; font-weight: 500;
  letter-spacing: -.018em; margin: 0 0 20px; color: inherit; text-wrap: balance;
}
.gsa-quote__by { display: flex; align-items: center; gap: 13px; }
.gsa-quote__img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; flex: none; }
.gsa-quote__nm { font-size: .95rem; font-weight: 700; margin: 0; line-height: 1.3; }
.gsa-quote__ro { font-size: .86rem; color: var(--on-light-mute); margin: 0; }
:is(.gsa-dark,.gsa-void) .gsa-quote__ro, .gsa-void .gsa-quote__ro { color: var(--on-dark-mute); }

/* ---------------------------------------------------------------- final cta */
.gsa-cta { background: linear-gradient(150deg, var(--teal), #0C1F1C 72%); border-radius: var(--r-xl); padding: clamp(38px,6vw,76px); text-align: center; color: var(--on-dark); position: relative; overflow: hidden; }
.gsa-cta::after {
  content: ""; position: absolute; inset: auto -14% -62% -14%; height: 74%;
  background: radial-gradient(50% 60% at 50% 0%, rgba(228,238,79,.16), transparent 70%); pointer-events: none;
}
.gsa-cta > * { position: relative; z-index: 1; }
.gsa-cta .gsa-btns { justify-content: center; }

/* ---------------------------------------------------------------- utility */
.gsa-mt0 { margin-top: 0 } .gsa-mb0 { margin-bottom: 0 }
.gsa-sr {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
@media (max-width: 900px) {
  .gsa-hero__grid { grid-template-columns: 1fr; gap: 42px; }
  .gsa-proof__row { flex-direction: column; align-items: flex-start; }
}

/* ---------------------------------------------------------------- layout helpers
   (referenced from the page markup; kept here rather than inline so spacing
   stays adjustable in one place) */
.gsa-quote-wrap { margin-top: clamp(38px, 5vw, 64px); max-width: 820px; }
.gsa-price-wrap { max-width: 720px; margin: 0 auto; }
.gsa-price-cta  { margin-top: 26px; }
.gsa-fine       { font-size: .94rem; }
.gsa-cta__h     { max-width: 18ch; margin-left: auto; margin-right: auto; }
.gsa-cta__p     { margin-left: auto; margin-right: auto; max-width: 54ch; }

/* ---------------------------------------------------------------- reveal
   Added by gsa.js only when the visitor has not asked for reduced motion,
   so nothing depends on JS to become visible. */
.gsa-rv { opacity: 0; transform: translateY(14px); }
.gsa-rv--in { opacity: 1; transform: none; transition: opacity .6s ease, transform .6s cubic-bezier(.22,.61,.36,1); }
@media (prefers-reduced-motion: reduce) {
  .gsa-rv, .gsa-rv--in { opacity: 1; transform: none; transition: none; }
}

/* ===========================================================================
   THEME CORRECTIONS
   ---------------------------------------------------------------------------
   These were previously copy-pasted into an inline <style> block on every
   single page. Centralised here so they exist once. Deliberately unscoped —
   the header and footer sit outside .gsa-scope.
   =========================================================================== */

/* The logo files are 1281px wide natively and the theme only constrains them
   below 768px, so without this the header and footer overflow on desktop. */
.logo-area img,
.footer-logo img { max-height: 56px; width: auto; }

.ht-promo:hover,
.ht-promo:hover span { color: #ffffff !important; }

.ht-topbar-right .ht-btn.style-2 { font-size: 14px !important; padding: 10px 20px !important; }

/* The one live rule left from the old inline block: contact.html wraps
   its form in a bordered panel the theme gives no padding to. */
.contact-border-wrapper { padding: 32px; }

/* The template injects a chevron into every top-level menu link. The old site
   suppressed it everywhere because the nav was flat. The nav now has a real
   Platform dropdown, so the chevron is suppressed only where there is no
   sub-menu to open — and .mean-expand (the mobile submenu toggle) is left
   alone so the dropdown is reachable on a phone. */
.main-menu ul > li:not(.ht-item-has-children) > a::before,
.menu-list > li:not(.ht-item-has-children) > a > .float-end,
.menu-list > li:not(.ht-item-has-children) > a > .bi-chevron-down,
.menu-list > li:not(.ht-item-has-children) > a i.bi-chevron-down {
  display: none !important; content: none !important;
}

/* ---------------------------------------------------------------------------
   Font pinning.
   main.css sets font-family directly on h1..h6 (Playfair Display) and on p
   (DM Sans). A directly-matched element rule always beats a value inherited
   from .gsa-scope, so the family has to be stated on our own classes.
   --------------------------------------------------------------------------- */
.gsa-scope .gsa-display,
.gsa-scope .gsa-h2,
.gsa-scope .gsa-h3,
.gsa-scope .gsa-h4,
.gsa-scope .gsa-lede,
.gsa-scope .gsa-p,
.gsa-scope .gsa-eyebrow,
.gsa-scope .gsa-hero__sub,
.gsa-scope .gsa-hero__claim,
.gsa-scope .gsa-feat li,
.gsa-scope .gsa-quote__tx,
.gsa-scope .gsa-quote__nm,
.gsa-scope .gsa-quote__ro,
.gsa-scope .gsa-matrix th,
.gsa-scope .gsa-matrix td,
.gsa-scope .gsa-stat__k,
.gsa-scope .gsa-stat__v,
.gsa-scope .gsa-bay__n,
.gsa-scope .gsa-price__big,
.gsa-scope .gsa-price__unit,
.gsa-scope .gsa-calc__val,
.gsa-scope .gsa-calc__sum,
.gsa-scope .gsa-chat__nm,
.gsa-scope .gsa-msg,
.gsa-scope .gsa-seq__t { font-family: var(--fs); }

/* Monospace stays monospace. */
.gsa-scope .gsa-bay__meta,
.gsa-scope .gsa-log,
.gsa-scope .gsa-log__ts,
.gsa-scope .gsa-log__tx,
.gsa-scope .gsa-seq__dot,
.gsa-scope .gsa-cost__n { font-family: var(--fm); }

/* main.css also sets a 34px line-height on p, which is far too loose here. */
.gsa-scope .gsa-p { line-height: 1.6; }
.gsa-scope .gsa-lede { line-height: 1.56; }

/* ---------------------------------------------------------------------------
   Fixes found in local testing
   --------------------------------------------------------------------------- */

/* main.css sets body colour to rgba(0,0,0,.7); the chat header sits on teal,
   so its text has to state its own colour rather than inherit. */
.gsa-scope .gsa-chat__nm { color: var(--on-dark); }
.gsa-scope .gsa-chat__st { color: var(--teal-lift); }
.gsa-scope .gsa-msg--them { color: var(--on-light); }
.gsa-scope .gsa-msg--me   { color: var(--on-dark); }

/* Tap targets: WCAG 2.5.8 wants 24px minimum, Apple/Android guidance 44px.
   Go with 44 on anything a thumb has to hit. */
.gsa-scope .gsa-link { min-height: 44px; align-items: center; }
.gsa-scope .gsa-calc__btn { width: 44px; height: 44px; }

/* The console sits on its own dark gradient inside light sections — make the
   ground an opaque colour underneath so nothing depends on the gradient. */
.gsa-scope .gsa-console { background-color: #0E2320; }
.gsa-scope .gsa-log { background-color: var(--void); }

/* Gradient grounds need an opaque colour underneath so contrast never depends
   on the gradient rendering. */
.gsa-scope .gsa-cta { background-color: var(--teal); }

/* ---------------------------------------------------------------- pricing page */
.gsa-pricing-hero { padding-top: clamp(84px, 11vw, 140px); }
.gsa-pricing-hero .gsa-display { color: var(--on-dark); }

.gsa-scope .gsa-price__big--sm { font-size: clamp(2.2rem, 4vw, 2.8rem); }

.gsa-scope .gsa-setup-quote {
  font-family: var(--fs); font-size: 1.32rem; font-weight: 700;
  letter-spacing: -.022em; line-height: 1.15; color: inherit; display: inline-block;
}

.gsa-scope .gsa-ta-r { text-align: right; }
.gsa-scope .gsa-matrix td.gsa-num { font-variant-numeric: tabular-nums; white-space: nowrap; }

.gsa-scope .gsa-row-total th,
.gsa-scope .gsa-row-total td {
  background: var(--paper-2); font-weight: 700; color: var(--on-light);
}
:is(.gsa-dark,.gsa-void) .gsa-row-total th,
:is(.gsa-dark,.gsa-void) .gsa-row-total td {
  background: rgba(255,255,255,.06); color: var(--on-dark);
}

/* Cards on the pricing page carry a price block; keep it from inheriting the
   huge hero treatment. */
.gsa-scope .gsa-card .gsa-price__amt { margin-bottom: 10px; }

/* The CTA panel is a dark ground that can sit inside a light section, so its
   contents must take the dark-ground colours regardless of the parent. */
.gsa-scope .gsa-cta,
.gsa-scope .gsa-cta .gsa-h2 { color: var(--on-dark); }
.gsa-scope .gsa-cta .gsa-lede,
.gsa-scope .gsa-cta .gsa-p { color: var(--on-dark-soft); }
.gsa-scope .gsa-cta .gsa-eyebrow { color: var(--on-dark-mute); }
.gsa-scope .gsa-cta .gsa-btn--ghost { color: var(--on-dark); border-color: var(--line-dark2); }
.gsa-scope .gsa-cta .gsa-btn--ghost:hover { color: var(--lime); border-color: var(--lime); }

/* ---------------------------------------------------------------- demo form
   The theme's contact form was three unlabelled placeholder-only fields.
   Placeholders disappear on focus and are not a substitute for a label, so
   every field now carries a real one. */
.gsa-fld-label {
  display: block; font-family: "Satoshi", system-ui, sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: -.005em;
  color: #1C403D; margin: 0 0 7px;
}
.gsa-fld-label .gsa-opt { font-weight: 400; color: #66766F; }
.gsa-demo-form .input-wrapper { margin-bottom: 18px; }
.gsa-form-note { font-size: 13px; color: #66766F; margin: 14px 0 0; line-height: 1.5; }
.gsa-demo-form input:focus-visible,
.gsa-demo-form textarea:focus-visible { outline: 3px solid #E4EE4F; outline-offset: 2px; }

/* ---------------------------------------------------------------- tap targets
   Theme chrome (topbar button, hamburger, footer links, social icons) shipped
   at 18-36px. Anything a thumb has to hit gets 44px without changing layout. */
.ht-topbar-right .ht-btn.style-2 { padding: 13px 22px !important; line-height: 1.2; }

.hamburger-menu,
.ht-menu-toggle { min-width: 44px; min-height: 44px;
                  align-items: center; justify-content: center; }

.footer-widget ul li a,
.footer-menu li a { display: inline-block; padding-top: 6px; padding-bottom: 6px; }

.social-links a {
  min-width: 44px; min-height: 44px; display: inline-flex;
  align-items: center; justify-content: center;
}

/* Visible keyboard focus across the theme chrome, which had none. */
.menu-list a:focus-visible,
.footer-widget a:focus-visible,
.footer-menu a:focus-visible,
.social-links a:focus-visible,
.ht-btn:focus-visible,
.bs-btn:focus-visible { outline: 3px solid #E4EE4F; outline-offset: 3px; border-radius: 4px; }

/* ---------------------------------------------------------------- bay input
   The bay count is typed, not stepped — franchise operators run well past 20
   and nobody should click a plus button twenty times. */
.gsa-scope input.gsa-calc__val {
  width: 88px; min-width: 88px; text-align: center;
  font-family: var(--fs); font-size: 1.5rem; font-weight: 700;
  font-variant-numeric: tabular-nums; letter-spacing: -.02em;
  color: var(--on-light); background: var(--white);
  border: 1.5px solid var(--line-light); border-radius: 10px;
  padding: 8px 6px; min-height: 44px; -moz-appearance: textfield;
}
:is(.gsa-dark,.gsa-void) input.gsa-calc__val {
  color: var(--on-dark); background: rgba(255,255,255,.07); border-color: var(--line-dark2);
}
.gsa-scope input.gsa-calc__val::-webkit-outer-spin-button,
.gsa-scope input.gsa-calc__val::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.gsa-scope input.gsa-calc__val:focus-visible { outline: 3px solid var(--lime); outline-offset: 2px; }
.gsa-scope .gsa-calc__steps { gap: 8px; }
.gsa-scope .gsa-note-gap { margin-top: 16px; }

/* Tax-inclusive figure under the calculator total — quieter than the
   pre-tax number it sits beneath, since the quoted price is the pre-tax one. */
.gsa-scope .gsa-calc__tax {
  margin: 8px 0 0; font-size: 13px; font-variant-numeric: tabular-nums;
  color: var(--on-light-mute); text-align: right;
}
:is(.gsa-dark,.gsa-void) .gsa-calc__tax { color: var(--on-dark-mute); }

/* ---------------------------------------------------------------- calculator
   GSA Guardian Assist is an optional add-on, so it reads as a choice the
   visitor makes — a real checkbox with its own line in the breakdown, never
   folded into the platform figure. */
.gsa-scope .gsa-calc__opt {
  display: grid; grid-template-columns: 24px minmax(0,1fr); gap: 12px;
  align-items: start; margin: 18px 0 0; padding: 14px 16px; cursor: pointer;
  background: var(--white); border: 1.5px solid var(--line-light); border-radius: var(--r-sm);
}
:is(.gsa-dark,.gsa-void) .gsa-calc__opt {
  background: rgba(255,255,255,.05); border-color: var(--line-dark2);
}
.gsa-scope .gsa-calc__opt:hover { border-color: var(--teal); }
:is(.gsa-dark,.gsa-void) .gsa-calc__opt:hover { border-color: var(--lime); }
.gsa-scope .gsa-calc__opt input {
  width: 24px; height: 24px; margin: 1px 0 0; accent-color: var(--teal); cursor: pointer;
}
:is(.gsa-dark,.gsa-void) .gsa-calc__opt input { accent-color: var(--lime); }
.gsa-scope .gsa-calc__opt input:focus-visible { outline: 3px solid var(--lime); outline-offset: 2px; }
.gsa-scope .gsa-calc__optbody { display: block; }
.gsa-scope .gsa-calc__optname {
  display: block; font-family: var(--fs); font-size: .95rem; font-weight: 700;
  letter-spacing: -.01em; color: inherit; margin-bottom: 3px;
}
.gsa-scope .gsa-calc__optdesc {
  display: block; font-family: var(--fs); font-size: 12.5px; line-height: 1.45;
  color: var(--on-light-mute);
}
:is(.gsa-dark,.gsa-void) .gsa-calc__optdesc { color: var(--on-dark-mute); }

.gsa-scope .gsa-tag-opt {
  display: inline-block; font-size: 9.5px; font-weight: 700; letter-spacing: .11em;
  text-transform: uppercase; padding: 2px 7px; border-radius: 3px; vertical-align: 2px;
  margin-left: 6px; background: var(--paper-2); color: var(--on-light-mute);
}
:is(.gsa-dark,.gsa-void) .gsa-tag-opt { background: rgba(255,255,255,.1); color: var(--on-dark-mute); }

.gsa-scope .gsa-calc__lines { margin: 18px 0 0; display: grid; gap: 8px; }
.gsa-scope .gsa-calc__line {
  display: flex; justify-content: space-between; align-items: baseline; gap: 14px;
  font-family: var(--fs); font-size: .93rem; color: var(--on-light-mute);
}
:is(.gsa-dark,.gsa-void) .gsa-calc__line { color: var(--on-dark-soft); }
.gsa-scope .gsa-calc__line span:last-child { font-variant-numeric: tabular-nums; font-weight: 600; }
.gsa-scope .gsa-calc__line[hidden] { display: none; }
.gsa-scope .gsa-calc__out { margin-top: 14px; }

/* ---------------------------------------------------------------- escalation ladder
   Four numbered tiers, because this genuinely is a sequence: each one only
   runs when the one above it could not resolve the problem. Tier 3 is the
   optional product and is the only row given emphasis. */
.gsa-scope .gsa-ladder { display: grid; gap: 0; border-top: 1px solid var(--line-dark); }
.gsa-light .gsa-ladder, .gsa-white .gsa-ladder { border-top-color: var(--line-light); }

.gsa-scope .gsa-ladder__row {
  display: grid; grid-template-columns: 54px minmax(0,1fr) auto; gap: 20px;
  align-items: start; padding: 22px 0; border-bottom: 1px solid var(--line-dark);
  position: relative;
}
.gsa-light .gsa-ladder__row, .gsa-white .gsa-ladder__row { border-bottom-color: var(--line-light); }

.gsa-scope .gsa-ladder__n {
  font-family: var(--fm); font-size: 12px; font-weight: 600;
  color: var(--on-dark-mute); padding-top: 4px;
}
.gsa-light .gsa-ladder__n, .gsa-white .gsa-ladder__n { color: var(--on-light-mute); }

.gsa-scope .gsa-ladder__row--hero {
  background: rgba(228,238,79,.06);
  box-shadow: inset 3px 0 0 var(--lime);
  padding-left: 18px; padding-right: 18px;
  grid-template-columns: 36px minmax(0,1fr) auto;
}
.gsa-scope .gsa-ladder__row--hero .gsa-ladder__n { color: var(--lime); }
.gsa-scope .gsa-ladder__row--last .gsa-ladder__body { opacity: .72; }

.gsa-scope .gsa-ladder__tag {
  font-family: var(--fs); font-size: 10px; font-weight: 700; letter-spacing: .11em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 3px; white-space: nowrap;
  margin-top: 3px; color: var(--on-dark-mute); background: rgba(255,255,255,.07);
}
.gsa-light .gsa-ladder__tag, .gsa-white .gsa-ladder__tag { color: var(--on-light-mute); background: var(--paper-2); }
.gsa-scope .gsa-ladder__tag--opt { background: var(--lime); color: #0B1C18; }
.gsa-scope .gsa-ladder__tag--inc { background: rgba(79,214,156,.16); color: var(--ok); }

@media (max-width: 620px) {
  .gsa-scope .gsa-ladder__row,
  .gsa-scope .gsa-ladder__row--hero { grid-template-columns: 34px minmax(0,1fr); gap: 12px; }
  .gsa-scope .gsa-ladder__tag { grid-column: 2; justify-self: start; margin-top: 10px; }
}

.gsa-scope .gsa-assist-foot {
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr));
  gap: clamp(24px, 4vw, 56px); margin-top: clamp(32px, 4vw, 52px);
}
@media (max-width: 760px) { .gsa-scope .gsa-assist-foot { grid-template-columns: 1fr; gap: 26px; } }

/* Guardian Assist is a two-part price, so the card shows both parts stacked
   with an explicit plus rather than mashing them into one line. */
.gsa-scope .gsa-price__plus {
  font-size: 1.6rem; font-weight: 700; color: var(--on-light-mute); line-height: 1; align-self: center;
}
:is(.gsa-dark,.gsa-void) .gsa-price__plus { color: var(--on-dark-mute); }
.gsa-scope .gsa-assist-eg { margin-top: 22px; }
.gsa-scope .gsa-assist-eg table { min-width: 0; font-size: .88rem; }
.gsa-scope .gsa-assist-eg th, .gsa-scope .gsa-assist-eg td { padding: 10px 14px; }

/* ---------------------------------------------------------------- assist voices
   Real player questions, in their words. These are not faults, which is the
   whole argument for the product — so they are set as speech, not as a
   feature list. */
.gsa-scope .gsa-says {
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px; margin: 0 0 clamp(30px, 4vw, 48px);
}
@media (max-width: 760px) { .gsa-scope .gsa-says { grid-template-columns: 1fr; } }
.gsa-scope .gsa-say {
  background: rgba(255,255,255,.04); border: 1px solid var(--line-dark);
  border-radius: var(--r-md); padding: 22px 24px;
}
.gsa-light .gsa-say, .gsa-white .gsa-say { background: var(--white); border-color: var(--line-light); }
.gsa-scope .gsa-say__q {
  font-family: var(--fs); font-size: 1.12rem; font-weight: 700; letter-spacing: -.018em;
  line-height: 1.3; color: var(--lime); margin: 0 0 10px; text-wrap: balance;
}
.gsa-light .gsa-say__q, .gsa-white .gsa-say__q { color: var(--teal); }
.gsa-scope .gsa-say__a {
  font-family: var(--fs); font-size: .95rem; line-height: 1.55;
  color: var(--on-dark-soft); margin: 0;
}
.gsa-light .gsa-say__a, .gsa-white .gsa-say__a { color: var(--on-light-mute); }

.gsa-scope .gsa-assist-point { max-width: 78ch; margin: 0 0 clamp(30px, 4vw, 48px); }
.gsa-scope .gsa-p--wide { max-width: 78ch; }
.gsa-scope .gsa-ladder-wrap { margin: 0 0 clamp(30px, 4vw, 48px); }
.gsa-scope .gsa-ladder-h { margin-bottom: 16px; }

/* Each player voice now carries two beats: what is actually going on, then
   what Guardian Assist does about it. The second is marked so a reader
   skimming the boxes can pick out the answers alone. */
.gsa-scope .gsa-say__what {
  font-family: var(--fs); font-size: .95rem; line-height: 1.55;
  color: var(--on-dark-soft); margin: 0 0 14px;
}
.gsa-light .gsa-say__what, .gsa-white .gsa-say__what { color: var(--on-light-mute); }

.gsa-scope .gsa-say__do {
  font-family: var(--fs); font-size: .95rem; line-height: 1.55; margin: 0;
  padding-top: 14px; border-top: 1px solid var(--line-dark); color: var(--on-dark);
}
.gsa-light .gsa-say__do, .gsa-white .gsa-say__do { border-top-color: var(--line-light); color: var(--on-light); }

.gsa-scope .gsa-say__lab {
  display: block; font-size: 10px; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: var(--lime); margin-bottom: 5px;
}
.gsa-light .gsa-say__lab, .gsa-white .gsa-say__lab { color: var(--teal); }

/* Golf SimPass serves two audiences from one product — the facility that
   wants to be found, and the player doing the finding. Set side by side so
   an operator can see both halves at once. */
.gsa-scope .gsa-twoside {
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr));
  gap: clamp(24px, 4vw, 56px); margin-top: clamp(30px, 4vw, 52px);
  padding-top: clamp(30px, 4vw, 52px); border-top: 1px solid var(--line-light);
}
:is(.gsa-dark,.gsa-void) .gsa-twoside { border-top-color: var(--line-dark); }
@media (max-width: 760px) { .gsa-scope .gsa-twoside { grid-template-columns: 1fr; gap: 30px; } }

/* ===========================================================================
   CHAT LAUNCHER
   Unscoped — it sits outside .gsa-scope so it works on every page, including
   the ones still on the old theme markup.
   =========================================================================== */
.gsa-chatw {
  position: fixed; right: 20px; bottom: 20px; z-index: 9000;
  font-family: "Satoshi", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
}
.gsa-chatw__btn {
  display: inline-flex; align-items: center; gap: 9px;
  background: #E4EE4F; color: #0B1C18; border: 1.5px solid #E4EE4F;
  border-radius: 100px; padding: 13px 22px; min-height: 52px;
  font-size: .84rem; font-weight: 700; cursor: pointer;
  text-transform: uppercase; letter-spacing: .09em;
  box-shadow: 0 6px 24px -8px rgba(7,19,16,.45); transition: transform .16s ease, background .16s ease;
}
.gsa-chatw__btn:hover { transform: translateY(-1px); background: #EEF66A; }
.gsa-chatw__btn:focus-visible { outline: 3px solid #1C403D; outline-offset: 3px; }

.gsa-chatw__panel {
  width: min(320px, calc(100vw - 40px));
  background: #ffffff; border: 1px solid #DDE3D8; border-radius: 14px;
  padding: 18px; box-shadow: 0 20px 50px -18px rgba(7,19,16,.4);
}
.gsa-chatw__panel[hidden] { display: none; }
.gsa-chatw__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.gsa-chatw__title { margin: 0; font-size: 1.02rem; font-weight: 700; color: #0B1C18; letter-spacing: -.015em; }
.gsa-chatw__x {
  background: none; border: 0; font-size: 24px; line-height: 1; color: #576B65;
  cursor: pointer; width: 32px; height: 32px; border-radius: 50%;
}
.gsa-chatw__x:hover { background: #F3F4EC; color: #0B1C18; }
.gsa-chatw__x:focus-visible { outline: 3px solid #E4EE4F; outline-offset: 2px; }
.gsa-chatw__intro { margin: 6px 0 14px; font-size: 13px; line-height: 1.5; color: #576B65; }

.gsa-chatw__opt {
  display: grid; grid-template-columns: 34px minmax(0,1fr); gap: 11px; align-items: center;
  padding: 11px 12px; border-radius: 9px; text-decoration: none; color: #0B1C18;
  border: 1px solid transparent; min-height: 44px;
}
.gsa-chatw__opt + .gsa-chatw__opt { margin-top: 4px; }
.gsa-chatw__opt:hover { background: #F6F8F3; border-color: #DDE3D8; text-decoration: none; color: #0B1C18; }
.gsa-chatw__opt:focus-visible { outline: 3px solid #E4EE4F; outline-offset: 2px; }
.gsa-chatw__ico {
  width: 34px; height: 34px; border-radius: 50%; background: #1C403D; color: #E4EE4F;
  display: grid; place-items: center; font-size: 15px;
}
.gsa-chatw__opt strong { display: block; font-size: .92rem; font-weight: 700; letter-spacing: -.01em; }
.gsa-chatw__opt em { display: block; font-style: normal; font-size: 12px; color: #576B65; margin-top: 1px; line-height: 1.4; }

@media (max-width: 560px) {
  .gsa-chatw { right: 14px; bottom: 14px; }
  .gsa-chatw__btn { padding: 12px 18px; }
}
@media (prefers-reduced-motion: reduce) { .gsa-chatw__btn { transition: none; } }

/* ---------------------------------------------------------------- systems list
   One row per system: the name and what kind of thing it is on the left, what
   GSA does with it on the right. Four rows, so a list rather than cards. */
.gsa-sys { display: grid; gap: 0; border-top: 1px solid var(--line-light); }
:is(.gsa-dark,.gsa-void) .gsa-sys { border-top-color: var(--line-dark); }
.gsa-sys__row {
  display: grid; grid-template-columns: minmax(0,230px) minmax(0,1fr);
  gap: clamp(18px, 3vw, 44px); padding: 26px 0;
  border-bottom: 1px solid var(--line-light);
}
:is(.gsa-dark,.gsa-void) .gsa-sys__row { border-bottom-color: var(--line-dark); }
.gsa-sys__name .gsa-h3 { margin-bottom: 4px; }
.gsa-sys__kind {
  font-family: var(--fs); font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--on-light-mute); margin: 0;
}
:is(.gsa-dark,.gsa-void) .gsa-sys__kind { color: var(--on-dark-mute); }
.gsa-sys__body { align-self: center; }
@media (max-width: 700px) {
  .gsa-sys__row { grid-template-columns: 1fr; gap: 10px; padding: 22px 0; }
}

/* Call packs sit below the main GSA Guardian Assist card — most facilities
   never need them, and leading with overage pricing makes a simple product
   look complicated. */
.gsa-scope .gsa-packs {
  margin-top: clamp(34px, 5vw, 60px); padding-top: clamp(30px, 4vw, 48px);
  border-top: 1px solid var(--line-light);
}
:is(.gsa-dark,.gsa-void) .gsa-packs { border-top-color: var(--line-dark); }
.gsa-scope .gsa-packs__table { max-width: 560px; margin-top: 20px; }
.gsa-scope .gsa-packs__table table { min-width: 0; }
.gsa-scope .gsa-packs__rule {
  margin-top: 22px; padding: 16px 20px; border-radius: var(--r-sm);
  background: rgba(228,238,79,.08); border-left: 3px solid var(--lime); max-width: 78ch;
}
.gsa-light .gsa-packs__rule, .gsa-white .gsa-packs__rule { background: var(--paper-2); }
.gsa-scope .gsa-p--wide { max-width: 78ch; }

/* Volume rate table sits right under the headline price, because the rate a
   facility actually pays depends on its bay count. */
.gsa-scope .gsa-voltable { max-width: 420px; margin: 20px 0 12px; }
.gsa-scope .gsa-voltable table { min-width: 0; }
.gsa-scope .gsa-calc__rate {
  display: inline-block; font-style: normal; font-size: 11.5px; font-weight: 600;
  letter-spacing: .02em; color: var(--on-light-mute); margin-left: 8px;
  font-variant-numeric: tabular-nums;
}
:is(.gsa-dark,.gsa-void) .gsa-calc__rate { color: var(--on-dark-mute); }

/* ===========================================================================
   BAY SCREEN PROMPT — GSA Guardian
   Guardian is automated: it appears on the bay screen and walks the player
   through it. So the visual is the screen they are looking at, not a chat
   transcript, which would imply a person on the other end.
   =========================================================================== */
.gsa-scope .gsa-screen {
  background: #08120F; border: 1px solid var(--line-dark2); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-deep); max-width: 460px;
}
.gsa-light .gsa-screen, .gsa-white .gsa-screen { border-color: rgba(0,0,0,.12); }

.gsa-scope .gsa-screen__bar {
  display: flex; align-items: center; gap: 9px; padding: 11px 16px;
  background: rgba(0,0,0,.4); border-bottom: 1px solid rgba(255,255,255,.08);
}
.gsa-scope .gsa-screen__dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--warn); flex: none;
}
.gsa-scope .gsa-screen__label {
  font-family: var(--fs); font-size: 11px; font-weight: 700; letter-spacing: .09em;
  text-transform: uppercase; color: var(--on-dark-mute);
}

/* the game sitting behind the prompt */
.gsa-scope .gsa-screen__stage {
  position: relative; padding: 30px 22px 26px; min-height: 260px;
  display: grid; place-items: center;
  background:
    radial-gradient(120% 80% at 50% 110%, rgba(79,214,156,.14), transparent 60%),
    linear-gradient(180deg, #0D2A34 0%, #123A33 45%, #17402F 100%);
}
.gsa-scope .gsa-screen__stage::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.35) 100%);
}

.gsa-scope .gsa-prompt {
  position: relative; z-index: 1; width: 100%;
  background: rgba(8,18,15,.93); border: 1px solid rgba(228,238,79,.28);
  border-radius: 14px; padding: 22px 22px 20px; text-align: center;
  backdrop-filter: blur(6px);
}


.gsa-scope .gsa-prompt__from {
  font-family: var(--fs); font-size: 10px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--lime); margin: 0 0 6px;
}
.gsa-scope .gsa-prompt__title {
  font-family: var(--fs); font-size: 1.08rem; font-weight: 700; letter-spacing: -.015em;
  color: var(--on-dark); margin: 0 0 14px; line-height: 1.3;
}
.gsa-scope .gsa-prompt__steps {
  margin: 0 0 18px; padding: 0; list-style: none; counter-reset: p; text-align: left;
  display: grid; gap: 9px;
}
.gsa-scope .gsa-prompt__steps li {
  counter-increment: p; position: relative; padding-left: 32px;
  font-family: var(--fs); font-size: .87rem; line-height: 1.45; color: var(--on-dark-soft);
  margin: 0;
}
.gsa-scope .gsa-prompt__steps li::before {
  content: counter(p); position: absolute; left: 0; top: 0;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(228,238,79,.15); color: var(--lime);
  display: grid; place-items: center; font-size: 11px; font-weight: 700;
}
.gsa-scope .gsa-prompt__steps strong { color: var(--on-dark); font-weight: 700; }

.gsa-scope .gsa-prompt__btns { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.gsa-scope .gsa-prompt__btn {
  font-family: var(--fs); font-size: .82rem; font-weight: 700; letter-spacing: -.005em;
  padding: 9px 16px; border-radius: 100px; border: 1.5px solid var(--line-dark2);
  color: var(--on-dark-soft);
}
.gsa-scope .gsa-prompt__btn--go { background: var(--lime); border-color: var(--lime); color: #0B1C18; }

@media (max-width: 460px) {
  .gsa-scope .gsa-screen__stage { padding: 22px 14px 20px; min-height: 0; }
  .gsa-scope .gsa-prompt { padding: 18px 16px 16px; }
}

/* ---------------------------------------------------------------- Guardian mark
   The real one, taken from the GSA Guardian dashboard rather than invented:
   .brand .shield is a rounded square, background #E4EE4F (--accent), letter
   #191C09 (--accent-ink), weight 900, radius 9px on a 34px box, with a
   lime-tinted drop shadow. Scaled up here, proportions kept.
   Source: dashboard-guardian/guardian.css + index.html on the VPS.        */
.gsa-scope .gsa-prompt__mark {
  width: 48px; height: 48px; margin: 0 auto 13px;
  position: relative; display: grid; place-items: center;
}
.gsa-scope .gsa-prompt__shield {
  position: relative; z-index: 1;
  width: 48px; height: 48px; border-radius: 13px;
  display: grid; place-items: center;
  background: #E4EE4F; color: #191C09;
  font-family: var(--fs); font-size: 25px; font-weight: 900; line-height: 1;
  box-shadow: 0 4px 14px rgba(150,170,20,.30);
}
/* it appears over the game, so it announces itself and settles */
.gsa-scope .gsa-prompt__pulse {
  position: absolute; inset: -7px; border-radius: 19px;
  border: 1.5px solid #E4EE4F; opacity: .5;
  animation: gsaPulse 2.4s ease-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .gsa-scope .gsa-prompt__pulse { animation: none; opacity: .22; }
}

/* ---------------------------------------------------------------- the arrival
   Same bay-screen component as the GSA Guardian prompt, carrying the positive
   moment rather than the problem one. The rest of the page is about things not
   going wrong; this is the one section about something going right. */
.gsa-scope .gsa-screen__dot--ok { background: var(--ok); }

/* The bay welcome screen (THE ARRIVAL). A replica of what the TV shows when a booking arrives:
   venue mark, the player greeted by name, the tee-off window and one LET'S PLAY action, over a
   course scene painted in CSS so no photo asset is needed. Placed after the shared stage rules —
   the extra class ties on specificity and must win on order. */
.gsa-scope .gsa-wel__stage {
  padding: 46px 22px 42px; min-height: 340px;
  background:
    linear-gradient(180deg, rgba(8,16,10,.34), rgba(8,16,10,.16) 42%, rgba(8,16,10,.42)),
    radial-gradient(150% 60% at 50% 124%, #55842C 0 58%, transparent 59%),
    radial-gradient(95% 34% at -8% 80%, #486F2B 0 54%, transparent 55%),
    radial-gradient(100% 32% at 108% 74%, #52772E 0 50%, transparent 51%),
    radial-gradient(130% 44% at 34% 96%, #679138 0 56%, transparent 57%),
    linear-gradient(180deg, #AECBDA 0%, #C6D5C4 30%, #9DBB6A 50%, #78A244 72%, #587F2F 100%);
}
.gsa-wel__logo {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%); z-index: 1;
  background: rgba(10,14,10,.72); color: #F2F5EE;
  font-family: Georgia, "Times New Roman", serif; font-size: 10.5px; letter-spacing: .22em;
  padding: 12px 18px 10px; border-radius: 0 0 10px 10px; white-space: nowrap;
}
.gsa-wel__center { position: relative; z-index: 1; text-align: center; }
.gsa-wel__eyebrow {
  color: #7DE84C; font-size: 10px; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; margin: 0 0 8px; text-shadow: 0 1px 8px rgba(0,0,0,.55);
}
.gsa-wel__name {
  color: #FFFFFF; font-size: 27px; font-weight: 800; letter-spacing: .01em; line-height: 1.05;
  margin: 0 0 7px; text-shadow: 0 2px 14px rgba(0,0,0,.45);
}
.gsa-wel__bay {
  color: #F0F4EC; font-size: 11.5px; font-weight: 700; letter-spacing: .12em;
  margin: 0 0 11px; text-shadow: 0 1px 8px rgba(0,0,0,.5);
}
.gsa-wel__rule { display: block; width: 52px; height: 3px; border-radius: 2px; background: #7DE84C; margin: 0 auto 12px; }
.gsa-wel__tee { color: #7DE84C; font-size: 9.5px; font-weight: 800; letter-spacing: .16em; margin: 0 0 4px; }
.gsa-wel__time { color: #E6ECE2; font-size: 9.5px; margin: 0 0 15px; }
.gsa-wel__btn {
  display: inline-block; background: #37B31F; color: #FFFFFF;
  font-size: 11px; font-weight: 800; letter-spacing: .1em;
  padding: 11px 26px; border-radius: 6px; box-shadow: 0 6px 18px rgba(0,0,0,.3);
}
.gsa-wel__guard {
  position: absolute; right: 12px; bottom: 12px; z-index: 1;
  width: 30px; height: 30px; border-radius: 50%;
  background: #150F27; border: 2px solid #6C3BD9; color: #FFFFFF;
  font-size: 13px; font-weight: 800; display: grid; place-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.4);
}

/* Tickets list + ticket detail (the heartbeat section) — two consoles staggered like a drill-in.
   Rows carry their OUTCOME as a pill, because that is the product's whole point: a problem
   arrives already fixed, timed, and explained. */
.gsa-duo { display: flex; flex-direction: column; gap: 12px; }
/* One footprint for the whole set (operator): every console spans the column and shares one
   height, so the three read as equal slides. The list's rows spread to fill theirs. */
.gsa-duo .gsa-console { display: flex; flex-direction: column; height: 356px; }   /* bar 45px + the tallest body (the ticket details at 310px), measured, +1 spare */
.gsa-duo .gsa-console__body { flex: 1; display: flex; flex-direction: column; }
.gsa-tix { display: flex; flex-direction: column; flex: 1; justify-content: space-evenly; }
.gsa-tix__row {
  display: flex; align-items: center; gap: 8px;
  background: #FFFFFF; border: 1px solid #E4E8D9; border-radius: 10px; padding: 8px 10px;
}

.gsa-tix__bay { width: 86px; flex: none; display: flex; flex-direction: column; }
.gsa-tix__bay b { font-size: 10.5px; font-weight: 800; color: #15221C; line-height: 1.2; }
.gsa-tix__bay i { font-style: normal; font-size: 8px; color: #97A199; }
.gsa-tix__tx { flex: 1; min-width: 0; font-size: 9.5px; color: #3D4A41; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gsa-tix__age, .gsa-tix__ttr { flex: none; font-size: 9px; color: #8A948C; font-variant-numeric: tabular-nums; }
.gsa-tix__age { width: 38px; }
.gsa-tix__ttr { width: 42px; text-align: right; }
.gsa-tix__pill {
  flex: none; font-size: 7.5px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  border-radius: 999px; padding: 3.5px 8px; white-space: nowrap;
}
.gsa-tix__pill--crit { background: #FDEBEA; color: #B3261E; }
.gsa-tix__pill--fixed { background: #EDF4C9; color: #4A6212; }
.gsa-tkd__head { display: flex; align-items: center; gap: 8px; margin: 0 0 10px; min-width: 0; }
.gsa-tkd__back {
  flex: none; background: #FFFFFF; border: 1px solid #DFE4D4; border-radius: 8px;
  font-size: 8.5px; font-weight: 700; color: #26332C; padding: 4px 8px; white-space: nowrap;
}
.gsa-tkd__title { font-size: 10.5px; font-weight: 800; color: #15221C; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gsa-tkd__r { display: flex; justify-content: space-between; align-items: center; gap: 8px; padding: 4.5px 0; border-top: 1px solid #F0F2E7; }
.gsa-tkd__r:first-child { border-top: 0; }
.gsa-tkd__r > span:first-child { font-size: 8.5px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: #97A199; }
.gsa-tkd__r b { font-size: 10px; font-weight: 600; color: #26332C; }
.gsa-tkd__lbl { font-size: 8.5px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: #97A199; margin: 10px 0 5px; }
.gsa-tkd__diag { font-size: 10px; color: #26332C; line-height: 1.5; }

/* The Guardian widget (the Guardian section) — a replica of the player-facing help card, both
   screens side by side and sized as one pair. The widget itself is dark by design: that is what
   it looks like floating over the game. */
.gsa-scope .gsa-gw__stage {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; align-items: stretch;
  place-items: stretch; padding: 18px 16px;
}
.gsa-gw {
  background: #101219; border: 1px solid rgba(255,255,255,.07); border-radius: 16px;
  padding: 12px; display: flex; flex-direction: column; gap: 7px;
  box-shadow: 0 10px 26px rgba(0,0,0,.45); min-width: 0;
}
.gsa-gw__head { display: flex; align-items: center; gap: 9px; padding: 2px 2px 5px; }
.gsa-gw__logo {
  flex: none; width: 27px; height: 27px; border-radius: 50%;
  background: linear-gradient(140deg, #7A3BFF, #5716D9); color: #FFFFFF;
  font-size: 13px; font-weight: 800; display: grid; place-items: center;
}
.gsa-gw__back, .gsa-gw__x {
  flex: none; width: 21px; height: 21px; border-radius: 50%; background: rgba(255,255,255,.09);
  color: #C9CDD6; font-size: 12px; display: grid; place-items: center; line-height: 1;
}
.gsa-gw__x { margin-left: auto; }
.gsa-gw__hx { display: flex; flex-direction: column; min-width: 0; }
.gsa-gw__hx b { font-size: 12.5px; font-weight: 800; color: #FFFFFF; line-height: 1.25; }
.gsa-gw__hx i { font-style: normal; font-size: 8.5px; color: #9AA1AD; line-height: 1.35; }
.gsa-gw__tile {
  display: flex; align-items: center; gap: 9px;
  background: #1A1D27; border-radius: 11px; padding: 8px 9px; min-width: 0;
  flex: 1 1 0;   /* tiles share the card's height — the 3-tile menu gets the bigger tiles the real widget has */
}
.gsa-gw__ic {
  flex: none; width: 25px; height: 25px; border-radius: 7px;
  display: grid; place-items: center; font-size: 12px; color: #FFFFFF; line-height: 1;
}
.gsa-gw__ic--purple { background: #7A3BFF; }
.gsa-gw__ic--cyan   { background: #0FB5D6; }
.gsa-gw__ic--orange { background: #E08A12; }
.gsa-gw__ic--green  { background: #23A85B; }
.gsa-gw__ic--red    { background: #D8382E; }
.gsa-gw__ic--gray   { background: #4A4F5B; font-weight: 800; }
.gsa-gw__tx { display: flex; flex-direction: column; min-width: 0; }
.gsa-gw__tx b { font-size: 9.5px; font-weight: 800; color: #FFFFFF; line-height: 1.3; }
.gsa-gw__tx i { font-style: normal; font-size: 8px; color: #9AA1AD; line-height: 1.35; }
.gsa-gw__chev { margin-left: auto; flex: none; color: #6B7280; font-size: 12px; }
.gsa-gw__foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding: 4px 2px 0; }
.gsa-gw__ok { display: inline-flex; align-items: center; gap: 5px; font-size: 8.5px; font-weight: 700; color: #E7EAF0; }
.gsa-gw__ok i { width: 6px; height: 6px; border-radius: 50%; background: #2FD07A; display: block; }
.gsa-gw__by { font-size: 8px; color: #7B8290; }
@media (max-width: 620px) {
  .gsa-scope .gsa-gw__stage { grid-template-columns: 1fr; }
}

.gsa-scope .gsa-prompt--welcome { border-color: rgba(228,238,79,.22); }
.gsa-scope .gsa-welcome__sub {
  font-family: var(--fs); font-size: .9rem; line-height: 1.5;
  color: var(--on-dark-soft); margin: 0 0 16px;
}
.gsa-scope .gsa-welcome__list {
  list-style: none; margin: 0 0 18px; padding: 0; display: grid; gap: 0;
  text-align: left; border-top: 1px solid rgba(255,255,255,.09);
}
.gsa-scope .gsa-welcome__list li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 14px;
  padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.09); margin: 0;
}
.gsa-scope .gsa-welcome__list span {
  font-family: var(--fs); font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--on-dark-mute); flex: none;
}
.gsa-scope .gsa-welcome__list strong {
  font-family: var(--fs); font-size: .85rem; font-weight: 700; color: var(--on-dark);
  text-align: right;
}

.gsa-scope .gsa-arrival { display: grid; gap: 0; margin: 26px 0 22px; border-top: 1px solid var(--line-light); }
:is(.gsa-dark,.gsa-void) .gsa-arrival { border-top-color: var(--line-dark); }
.gsa-scope .gsa-arrival__row {
  padding: 18px 0; border-bottom: 1px solid var(--line-light);
}
:is(.gsa-dark,.gsa-void) .gsa-arrival__row { border-bottom-color: var(--line-dark); }
.gsa-scope .gsa-arrival__when {
  display: block; font-family: var(--fs); font-size: 10.5px; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase; color: var(--teal); margin-bottom: 6px;
}
:is(.gsa-dark,.gsa-void) .gsa-arrival__when { color: var(--lime); }

/* Stop a single word dropping to a line of its own in the prompt steps. */
.gsa-scope .gsa-prompt__steps li { text-wrap: pretty; }

/* ---------------------------------------------------------------- sign in
   A returning facility owner signs in far more often than a new one books a
   demo, so it is present at every screen size. Styled as a text link so it
   does not compete with the primary button beside it. Unscoped: the header
   sits outside .gsa-scope. */
.gsa-signin {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: "Satoshi", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: .92rem; font-weight: 700; letter-spacing: -.01em;
  color: #0B1C18; text-decoration: none;
  padding: 10px 16px; min-height: 44px; margin-right: 6px;
  border-radius: 100px; border: 1.5px solid transparent;
  white-space: nowrap; transition: color .16s ease, border-color .16s ease;
}
.gsa-signin:hover { color: #1C403D; border-color: #C6CFC0; text-decoration: none; }
.gsa-signin:focus-visible { outline: 3px solid #E4EE4F; outline-offset: 3px; }
@media (max-width: 575.98px) {
  .gsa-signin { padding: 10px 12px; margin-right: 2px; font-size: .88rem; }
}

/* ---------------------------------------------------------------- mobile menu
   The theme styles .ht-menu-wrapper already; these fill the gaps its stylesheet
   leaves for our own nav markup, and make the panel usable at 44px targets. */
.ht-menu-wrapper .mobile-logo img { max-height: 44px; width: auto; }
.ht-mobile-menu ul { list-style: none; margin: 0; padding: 0; }
.ht-mobile-menu ul li { border-bottom: 1px solid rgba(255,255,255,.12); }
.ht-mobile-menu ul li a {
  display: block; padding: 13px 0; min-height: 44px;
  font-family: "Satoshi", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem; font-weight: 600; color: #EDF2EC; text-decoration: none;
}
.ht-mobile-menu ul li a:hover,
.ht-mobile-menu ul li a:focus-visible { color: #E4EE4F; text-decoration: none; }
.ht-mobile-menu ul li a:focus-visible { outline: 3px solid #E4EE4F; outline-offset: 2px; }
.ht-menu-wrapper .ht-menu-toggle { color: #EDF2EC; background: none; min-width: 44px; min-height: 44px; }
.ht-menu-wrapper .ht-menu-toggle:hover { color: #E4EE4F; }
.gsa-mobile-cta { margin-top: 22px; width: 100%; }

/* A fixed, full-screen overlay should never swallow clicks while it is closed.
   visibility:hidden already removes it from hit testing, but this makes the
   intent explicit and survives anyone changing the closed state to opacity-only. */
header .ht-menu-wrapper:not(.ht-body-visible) { pointer-events: none; }
header .ht-menu-wrapper.ht-body-visible { pointer-events: auto; }

/* ---------------------------------------------------------------- policy pages
   Terms, and anywhere else a long legal document needs to read well. The
   wording is untouched; this is only the typography around it. */
.gsa-scope .gsa-policy { max-width: 72ch; }
.gsa-scope .gsa-policy h1 {
  font-family: var(--fs); font-size: clamp(1.9rem, 3.6vw, 2.6rem); font-weight: 700;
  letter-spacing: -.026em; line-height: 1.1; margin: 0 0 10px; color: var(--on-light);
}
.gsa-scope .gsa-policy h2 {
  font-family: var(--fs); font-size: 1.18rem; font-weight: 700; letter-spacing: -.014em;
  line-height: 1.3; margin: 36px 0 10px; color: var(--on-light);
}
.gsa-scope .gsa-policy h3 {
  font-family: var(--fs); font-size: 1rem; font-weight: 700; margin: 26px 0 8px; color: var(--on-light);
}
.gsa-scope .gsa-policy p,
.gsa-scope .gsa-policy li {
  font-family: var(--fs); font-size: .97rem; line-height: 1.65; color: var(--on-light-mute);
  margin: 0 0 13px;
}
.gsa-scope .gsa-policy ul,
.gsa-scope .gsa-policy ol { margin: 0 0 18px; padding-left: 1.3em; }
.gsa-scope .gsa-policy li { margin-bottom: 7px; }
.gsa-scope .gsa-policy strong { color: var(--on-light); font-weight: 700; }
.gsa-scope .gsa-policy a { color: var(--teal); text-decoration: underline; text-underline-offset: 2px; }
.gsa-scope .gsa-policy a:hover { color: var(--on-light); }
.gsa-scope .gsa-policy .updated {
  font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--on-light-mute); margin: 0 0 30px;
}

/* ---------------------------------------------------------------- customers
   Each card shows what that facility actually runs. Three different stacks
   side by side is the clearest proof the platform is genuinely modular —
   stronger than any sentence claiming it. */
.gsa-scope .gsa-cust__meta {
  font-family: var(--fs); font-size: 10.5px; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: var(--teal); margin: 0 0 6px;
}
:is(.gsa-dark,.gsa-void) .gsa-cust__meta { color: var(--lime); }

.gsa-scope .gsa-stack {
  list-style: none; margin: 18px 0 0; padding: 16px 0 0;
  border-top: 1px solid var(--line-light); display: grid; gap: 8px;
}
:is(.gsa-dark,.gsa-void) .gsa-stack { border-top-color: var(--line-dark); }
.gsa-scope .gsa-stack li {
  position: relative; padding-left: 22px; margin: 0;
  font-family: var(--fs); font-size: .87rem; line-height: 1.45; color: var(--on-light-mute);
}
:is(.gsa-dark,.gsa-void) .gsa-stack li { color: var(--on-dark-soft); }
.gsa-scope .gsa-stack li::before {
  content: ""; position: absolute; left: 0; top: .42em;
  width: 13px; height: 13px; border-radius: 50%; background: var(--teal);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 11.4 3.4 8.3l1.1-1.1 2 2 4.9-4.9 1.1 1.1z' fill='%23000'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 11.4 3.4 8.3l1.1-1.1 2 2 4.9-4.9 1.1 1.1z' fill='%23000'/%3E%3C/svg%3E") center/contain no-repeat;
}
:is(.gsa-dark,.gsa-void) .gsa-stack li::before { background: var(--lime); }

/* the one deliberate "not this" — a dash, not a tick, so the difference reads */
.gsa-scope .gsa-stack__no { opacity: .62; }
.gsa-scope .gsa-stack__no::before {
  -webkit-mask: none; mask: none;
  background: none; border-top: 1.5px solid currentColor;
  border-radius: 0; width: 11px; height: 0; top: .78em; left: 1px;
}

/* ===========================================================================
   MOBILE MENU
   Mirrors the desktop nav: five destinations, with Platform expanding to the
   same dropdown. Unscoped, because the header sits outside .gsa-scope — which
   is why every colour here is a literal or a :root token, never a --lime.
   =========================================================================== */

/* the top strip carries a duplicate "Book a demo" and a promo that is already
   hidden on small screens, so on mobile the whole bar is dead weight above
   the logo. Hide it and let the header start with the brand. */
@media (max-width: 991.98px) {
  .theme-main-menu .header-top { display: none; }
}

.ht-mobile-menu ul { list-style: none; margin: 0; padding: 0; }
.ht-mobile-menu > ul > li { border-bottom: 1px solid var(--gsa-line-dark); }

.ht-mobile-menu > ul > li > a,
.gsa-mnav__toggle {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  padding: 14px 0; min-height: 48px; gap: 12px;
  font-family: "Satoshi", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem; font-weight: 600; line-height: 1.3;
  color: var(--gsa-on-dark); text-decoration: none;
  background: none; border: 0; text-align: left; cursor: pointer;
}
.ht-mobile-menu > ul > li > a:hover,
.gsa-mnav__toggle:hover { color: var(--gsa-lime); text-decoration: none; }
.ht-mobile-menu a:focus-visible,
.gsa-mnav__toggle:focus-visible { outline: 3px solid var(--gsa-lime); outline-offset: 2px; border-radius: 4px; }

/* chevron turns when the group is open */
.gsa-mnav__chev { width: 10px; height: 10px; flex: none; position: relative; }
.gsa-mnav__chev::before {
  content: ""; position: absolute; inset: 0; margin: auto;
  width: 8px; height: 8px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-2px,-2px); transition: transform .2s ease;
}
.gsa-mnav__toggle[aria-expanded="true"] .gsa-mnav__chev::before { transform: rotate(-135deg) translate(-2px,-2px); }

.gsa-mnav__sub { padding: 0 0 12px 14px !important; border-left: 1px solid var(--gsa-line-dark); margin-left: 2px !important; }
.gsa-mnav__sub[hidden] { display: none; }
.gsa-mnav__sub li { border: 0; }
.gsa-mnav__sub a {
  display: block; padding: 10px 0; min-height: 44px;
  font-family: "Satoshi", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: .92rem; font-weight: 500; color: var(--gsa-on-dark-mute); text-decoration: none;
}
.gsa-mnav__sub a:hover { color: var(--gsa-lime); text-decoration: none; }

/* The CTA used .gsa-btn--primary, whose background is var(--lime) — a token
   that does not exist outside .gsa-scope. It rendered with no background and
   near-black text on a black panel. Literal colours, no tokens to lose. */
.gsa-mobile-cta {
  display: flex; align-items: center; justify-content: center;
  margin-top: 24px; width: 100%; min-height: 52px; padding: 14px 24px;
  background: #E4EE4F; color: #0B1C18 !important;
  border: 1.5px solid #E4EE4F; border-radius: 100px;
  font-family: "Satoshi", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: .95rem; font-weight: 700; letter-spacing: -.01em;
  text-decoration: none; text-align: center;
}
.gsa-mobile-cta:hover { background: #EEF66A; color: #0B1C18 !important; text-decoration: none; }
.gsa-mobile-cta:focus-visible { outline: 3px solid #ffffff; outline-offset: 3px; }

