/* ============================================================================
   VanillaSEO — style.css
   ----------------------------------------------------------------------------
   GENERATED FILE. Do not edit.

   Built from assets/css/main.css and its partials by tools/build-css.php.
   Edit the partial, then run:  php tools/build-css.php

   Built: 2026-09-17 08:13
   Parts: 17
   ========================================================================== */

/* ==========================================================================
   DESIGN TOKENS
   --------------------------------------------------------------------------
   Every colour, space and type size in the system is declared here and
   nowhere else. To restyle the site, change a token — never a rule.

   Contrast is checked against WCAG 2.1 AA: body text >= 4.5:1, large text
   (18pt+ or 14pt bold) >= 3:1. The ratio is noted beside each text colour.
   ========================================================================== */
:root {
  /* Brand ---------------------------------------------------------------- */
  --c-purple:        #6D4AFF;   /* primary: buttons, accents, borders       */
  --c-purple-dark:   #553ACC;   /* hover / pressed                          */
  --c-purple-deep:   #4D3ACC;   /* form band ground                         */
  --c-purple-soft:   #C9BFFF;   /* accents on dark grounds                  */
  --c-purple-tint:   #F0ECFF;   /* guarantee band ground                    */
  --c-purple-wash:   #F7F5FF;   /* table row hover                          */

  /* Neutrals ------------------------------------------------------------- */
  --c-ink:           #1A1A1A;   /* headlines, primary text (16.1:1)         */
  --c-body:          #3D3D3D;   /* body copy (10.4:1)                       */
  --c-muted:         #63636D;   /* small print (4.6:1 on white)             */
  --c-line:          #E4E4EC;   /* hairlines                                */
  --c-line-soft:     #EDEDF2;
  --c-bg:            #FFFFFF;
  --c-bg-alt:        #F5F5F7;   /* light band ground                        */
  --c-bg-chrome:     #FAFAFC;

  /* On dark grounds ------------------------------------------------------ */
  --c-on-dark:       #FFFFFF;
  --c-on-dark-soft:  #D2D2DA;
  --c-on-dark-mute:  #8E8E9C;
  --c-on-deep-soft:  #E4DEFF;   /* text on the purple form band             */

  /* Status --------------------------------------------------------------- */
  --c-go:            #00874A;   /* checkmarks (4.6:1 on white)              */
  --c-go-deep:       #00703C;   /* submit button ground                     */
  --c-go-deeper:     #005C31;   /* submit hover                             */
  --c-no:            #FF3366;   /* crosses, errors                          */
  --c-no-deep:       #C4123C;   /* error text on white (5.9:1)              */
  --c-warn:          #B45309;   /* "needs work" (4.8:1 on white)            */

  /* Type ----------------------------------------------------------------- */
  --font-sans: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Fluid type scale: min at 360px, max at ~1200px. */
  --t-h1:    clamp(2.375rem, 1.6rem + 3.4vw, 4.125rem);   /* 38 -> 66px */
  --t-h2:    clamp(1.625rem, 1.3rem + 1.5vw, 2.5rem);     /* 26 -> 40px */
  --t-h2-sm: clamp(1.375rem, 1.25rem + 0.6vw, 1.625rem);  /* 22 -> 26px */
  --t-lede:  clamp(1.0625rem, 1rem + 0.5vw, 1.3125rem);   /* 17 -> 21px */
  --t-body:  1.0625rem;                                   /* 17px      */
  --t-sm:    0.9375rem;                                   /* 15px      */
  --t-xs:    0.8125rem;                                   /* 13px      */
  --t-mono:  0.6875rem;                                   /* 11px      */

  /* Space: a 4px-based scale. */
  --s-1: 0.25rem;  --s-2: 0.5rem;   --s-3: 0.75rem;  --s-4: 1rem;
  --s-5: 1.25rem;  --s-6: 1.5rem;   --s-8: 2rem;     --s-10: 2.5rem;
  --s-12: 3rem;    --s-16: 4rem;

  /* Section rhythm shrinks on small screens. */
  --s-section: clamp(3.5rem, 2rem + 6vw, 5rem);
  --s-gutter:  clamp(1.25rem, 0.75rem + 2vw, 2rem);

  /* Other ---------------------------------------------------------------- */
  --radius:      4px;
  --radius-pill: 999px;
  --shadow-sm:   0 2px 8px rgba(0, 0, 0, .08);
  --shadow-md:   0 12px 32px rgba(109, 74, 255, .12);
  --shadow-lg:   0 18px 40px rgba(26, 26, 26, .12);
  --wrap:        1200px;
  --wrap-narrow: 820px;
  --wrap-form:   560px;
  --ease:        cubic-bezier(.4, 0, .2, 1);
}

/* ==========================================================================
   RESET & BASE
   --------------------------------------------------------------------------
   A short reset, not a library. Only rules that earn their place.
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

/* Sticky header is 68px tall; offset anchor targets so headings clear it. */
:target { scroll-margin-top: 88px; }

body {
  margin: 0;
  background: var(--c-bg);
  color: var(--c-body);
  font-family: var(--font-sans);
  font-size: var(--t-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, p, ul, ol, figure, address, dl, dd { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, svg { max-width: 100%; height: auto; display: block; }
address { font-style: normal; }

a { color: var(--c-purple); text-decoration: none; }
a:hover { color: var(--c-purple-dark); text-decoration: underline; }

/* One visible focus treatment for every interactive element. */
:focus-visible {
  outline: 3px solid var(--c-purple);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ==========================================================================
   TYPOGRAPHY PRIMITIVES
   ========================================================================== */
.kicker {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-purple);
  margin-bottom: var(--s-5);
}
.kicker--on-dark { color: #B39FF5; }

.h2 {
  font-size: var(--t-h2);
  line-height: 1.12;
  letter-spacing: -.025em;
  font-weight: 700;
  color: var(--c-ink);
  text-wrap: balance;
}
.h2--sm      { font-size: var(--t-h2-sm); }
.h2--on-dark { color: var(--c-on-dark); }

.h3 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -.015em;
  color: var(--c-ink);
}

.prose {
  font-size: clamp(1.0625rem, 1rem + 0.3vw, 1.1875rem);
  line-height: 1.65;
  color: var(--c-body);
  text-wrap: pretty;
  margin-top: var(--s-4);
}
.prose--strong { color: var(--c-ink); font-weight: 700; }
.prose--wide   { max-width: 56em; }

.mono-note {
  font-family: var(--font-mono);
  font-size: var(--t-mono);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--c-muted);
}

/* Both marks are aria-hidden — the text beside them carries the meaning — but
   they are still glyphs a sighted reader looks at, so they meet the 4.5:1
   floor anyway. --c-no (#FF3366) measures 3.55:1 on white and is kept for
   error *backgrounds*, where the text on top is white. */
.tick  { color: var(--c-go); font-weight: 700; flex: none; }       /* 4.6:1 */
.cross { color: var(--c-no-deep); font-weight: 700; flex: none; }  /* 5.9:1 */

/* ==========================================================================
   LAYOUT UTILITIES
   ========================================================================== */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--s-gutter);
}
.wrap--narrow { max-width: var(--wrap-narrow); }
.wrap--form   { max-width: var(--wrap-form); text-align: center; }

.section { padding-block: var(--s-section); }

.band-light  { background: var(--c-bg-alt); }
.band-violet { background: var(--c-purple-tint); }
.band-deep   { background: var(--c-purple-deep); }
.band-dark   { background: var(--c-ink); color: var(--c-on-dark); }

/* Links on a dark ground.
   The default link colour is --c-purple, which measures 1.46:1 on the deep
   purple band and 3.38:1 on the ink band — both fail WCAG AA for body text.
   White is 7.52:1 and 15.3:1 respectively. The underline is kept because
   colour alone must never be the thing that marks a link. */
.band-deep a:not(.btn),
.band-dark a:not(.btn) {
  color: var(--c-on-dark);
  text-decoration: underline;
}
.band-deep a:not(.btn):hover,
.band-dark a:not(.btn):hover {
  color: var(--c-purple-soft);
}

.section__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s-4) var(--s-10);
}

/* Available to screen readers, invisible on screen. */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100%; left: var(--s-4);
  z-index: 100;
  background: var(--c-ink);
  color: var(--c-on-dark);
  padding: var(--s-3) var(--s-4);
  border-radius: var(--radius);
  font-weight: 600;
}
.skip-link:focus { top: var(--s-2); color: var(--c-on-dark); text-decoration: none; }

.muted { color: var(--c-muted); }

/* Spacing helpers. Deliberately few — layout belongs to components. */
.mt-0 { margin-top: 0; }
.mt-4 { margin-top: var(--s-4); }
.mt-6 { margin-top: var(--s-6); }
.mt-8 { margin-top: var(--s-8); }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  min-height: 52px;              /* comfortably above the 44px touch floor */
  padding: 0 var(--s-8);
  border: 0;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: var(--t-body);
  font-weight: 600;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  transition: background-color .18s var(--ease);
}
.btn:hover { text-decoration: none; }
.btn:disabled { opacity: .65; cursor: not-allowed; }

.btn--primary { background: var(--c-purple); color: var(--c-on-dark); }
.btn--primary:hover { background: var(--c-purple-dark); color: var(--c-on-dark); }

.btn--dark { background: var(--c-ink); color: var(--c-on-dark); }
.btn--dark:hover { background: var(--c-body); color: var(--c-on-dark); }

.btn--go { background: var(--c-go-deep); color: var(--c-on-dark); font-weight: 700; }
.btn--go:hover { background: var(--c-go-deeper); }

/* Outline: for secondary actions that must not compete with the primary. */
.btn--ghost {
  background: transparent;
  color: var(--c-purple);
  box-shadow: inset 0 0 0 2px var(--c-purple);
}
.btn--ghost:hover { background: var(--c-purple-wash); color: var(--c-purple-dark); }

.btn--danger { background: transparent; color: var(--c-no-deep); box-shadow: inset 0 0 0 2px currentColor; }
.btn--danger:hover { background: #FFF1F4; color: var(--c-no-deep); }

.btn--sm    { min-height: 48px; padding: 0 var(--s-5); font-size: var(--t-sm); }
.btn--block { width: 100%; }

/* ==========================================================================
   LOGO
   --------------------------------------------------------------------------
   Set in type rather than shipped as an image: it stays sharp at any size,
   weighs nothing, and is selectable text for screen readers.
   ========================================================================== */
.logo {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-size: 1.375rem;
  letter-spacing: -.02em;
  color: var(--c-ink);
}
.logo:hover { text-decoration: none; }
.logo--centred { justify-content: center; font-size: 1.625rem; margin-bottom: var(--s-8); }
.logo--on-dark .logo__light { color: var(--c-on-dark); }

.logo__light { font-weight: 400; color: var(--c-ink); }
.logo__bold  { font-weight: 700; color: var(--c-purple); }
.logo__bold--soft { color: var(--c-purple-soft); }

.logo__mark {
  width: 6px; height: 6px;
  margin-left: 5px;
  background: var(--c-purple);
  display: inline-block;
}
.logo__mark--soft { background: var(--c-purple-soft); }

/* ==========================================================================
   HEADER & NAVIGATION
   --------------------------------------------------------------------------
   Mobile: the nav is a panel that drops out of the bar, toggled by a button.
   Desktop (60em+): a plain horizontal list, and the toggle disappears.
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--c-bg);
  box-shadow: var(--shadow-sm);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-6);
  padding-block: var(--s-4);
}

.nav {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--c-bg);
  border-top: 1px solid var(--c-line);
  box-shadow: var(--shadow-sm);
  padding: var(--s-4) var(--s-gutter) var(--s-6);
}
.nav.is-open { display: block; }

.nav__list { display: flex; flex-direction: column; gap: var(--s-2); }

.nav__link {
  display: flex;
  align-items: center;
  min-height: 48px;
  color: var(--c-body);
  font-size: var(--t-sm);
}
.nav__link:hover { color: var(--c-purple); text-decoration: none; }
.nav__link[aria-current="page"] { color: var(--c-purple); font-weight: 600; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px; height: 48px;
  padding: 0 12px;
  background: none;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  cursor: pointer;
}
.nav-toggle__bar {
  display: block;
  height: 2px;
  background: var(--c-ink);
  transition: transform .2s var(--ease), opacity .2s var(--ease);
}
/* Bars morph into a cross when open. */
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 60em) {
  .nav-toggle { display: none; }
  .nav {
    display: block;
    position: static;
    border: 0;
    box-shadow: none;
    padding: 0;
  }
  .nav__list { flex-direction: row; align-items: center; gap: var(--s-8); }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero { background: var(--c-bg-alt); }

.hero__grid {
  display: grid;
  gap: clamp(2rem, 1rem + 4vw, 3.5rem);
  padding-block: var(--s-section);
  align-items: center;
}
@media (min-width: 60em) {
  .hero__grid { grid-template-columns: 1.05fr .95fr; }
}

.hero__title {
  font-size: var(--t-h1);
  line-height: 1.02;
  letter-spacing: -.035em;
  font-weight: 700;
  color: var(--c-ink);
  text-wrap: balance;
}

.hero__lede {
  margin-top: var(--s-6);
  max-width: 32em;
  font-size: var(--t-lede);
  line-height: 1.5;
  color: var(--c-body);
  text-wrap: pretty;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-5);
  margin-top: var(--s-8);
}
.hero__price { font-size: var(--t-sm); line-height: 1.4; color: var(--c-muted); }
.hero__price strong { color: var(--c-ink); font-weight: 600; }

.badges { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-top: var(--s-6); }
.badge {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-pill);
  padding: var(--s-2) var(--s-4);
  font-size: 0.875rem;
  color: var(--c-ink);
}

/* ==========================================================================
   ILLUSTRATED CLICK MAP
   --------------------------------------------------------------------------
   Everything here is decoration standing in for a real Clarity export.
   Replace the whole .clickmap block with an <img> when one exists, and delete
   this file. Do not present synthetic data as client data.
   ========================================================================== */
.clickmap {
  background: var(--c-bg);
  border: 1px solid #DEDEE6;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.clickmap__chrome {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  padding: 11px 14px;
  border-bottom: 1px solid var(--c-line-soft);
  background: var(--c-bg-chrome);
}
.clickmap__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--c-line); }
.clickmap__url {
  flex: 1;
  margin-left: var(--s-1);
  background: var(--c-bg);
  border: 1px solid var(--c-line-soft);
  border-radius: 3px;
  padding: 5px 10px;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  color: var(--c-muted);
}
.clickmap__tag {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-purple);
}

.clickmap__stage { position: relative; padding: var(--s-6) var(--s-6) 0; }

/* -- Heat blobs ------------------------------------------------------------
   Radial gradients blurred to read as thermal density. Contained by
   overflow:hidden so they never spill at narrow widths.                    */
.clickmap__heat { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.blob { position: absolute; display: block; filter: blur(9px); }

.blob--1 {
  left: 6%; top: 48%; width: 44%; height: 34%;
  background: radial-gradient(closest-side,
    rgba(255, 64, 0, .92), rgba(255, 150, 0, .60) 38%, rgba(255, 214, 0, .42) 56%,
    rgba(0, 196, 132, .26) 74%, rgba(0, 140, 255, .10) 88%, transparent 100%);
}
.blob--2 {
  left: 52%; top: 12%; width: 34%; height: 26%;
  background: radial-gradient(closest-side,
    rgba(255, 96, 0, .72), rgba(255, 190, 0, .44) 44%, rgba(0, 196, 132, .22) 70%, transparent 100%);
}
.blob--3 {
  left: 8%; top: 8%; width: 26%; height: 18%;
  filter: blur(10px);
  background: radial-gradient(closest-side,
    rgba(255, 214, 0, .42), rgba(0, 196, 132, .22) 55%, transparent 100%);
}
.blob--4 {
  left: 60%; top: 62%; width: 30%; height: 24%;
  filter: blur(11px);
  background: radial-gradient(closest-side,
    rgba(0, 196, 132, .30), rgba(0, 140, 255, .16) 60%, transparent 100%);
}

/* -- Wireframe of the fictional client page -- */
.mock { position: relative; display: flex; flex-direction: column; gap: var(--s-4); }
.mock__bar { display: flex; align-items: center; justify-content: space-between; gap: var(--s-4); }
.mock__brand { font-size: 0.8125rem; color: var(--c-muted); }
.mock__brand b { color: var(--c-ink); font-weight: 500; }
.mock__nav { display: flex; gap: var(--s-3); }
.mock__navitem { width: 42px; height: 7px; background: var(--c-line-soft); border-radius: 2px; }
.mock__navitem:nth-child(2) { width: 34px; }
.mock__navitem:nth-child(3) { width: 48px; }
.mock__rule { height: 1px; border: 0; background: var(--c-line-soft); margin: 0; }

.mock__hero { display: grid; grid-template-columns: 1.25fr 1fr; gap: var(--s-6); align-items: center; }
.mock__text { display: flex; flex-direction: column; gap: 9px; }
.mock__h {
  font-size: 1.1875rem;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.15;
  color: var(--c-ink);
}
.mock__line { height: 6px; background: var(--c-line-soft); border-radius: 2px; }
.mock__line--long  { width: 92%; }
.mock__line--mid   { width: 60%; }
.mock__line--short { width: 76%; }

.mock__ctas { display: flex; align-items: center; gap: var(--s-3); margin-top: var(--s-1); }
.mock__btn {
  position: relative;
  border-radius: 3px;
  padding: 9px 14px;
  font-size: 0.6875rem;
}
.mock__btn--solid { background: var(--c-ink); color: var(--c-on-dark); font-weight: 600; }
.mock__btn--ghost { border: 1px solid #DEDEE6; color: var(--c-body); }

.mock__media {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--c-line-soft);
  background-image: repeating-linear-gradient(135deg, #F7F7FA 0 7px, #EFEFF4 7px 14px);
}

.mock__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-3); padding-bottom: var(--s-6); }
.mock__card {
  position: relative;
  border: 1px solid var(--c-line-soft);
  padding: var(--s-3);
  display: flex;
  flex-direction: column;
  gap: 7px;
}

/* Numbered click pins */
.pin {
  position: absolute;
  top: -9px; right: -9px;
  width: 19px; height: 19px;
  border-radius: 50%;
  background: var(--c-purple);
  color: var(--c-on-dark);
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clickmap__legend {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding: var(--s-3) var(--s-4);
  border-top: 1px solid var(--c-line-soft);
  background: var(--c-bg-chrome);
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--c-body);
}
.scale { display: flex; align-items: center; gap: var(--s-2); }
.scale__ramp {
  width: 104px; height: 7px;
  border-radius: 2px;
  background: linear-gradient(90deg, #FF4000, #FF9600, #FFD600, #00C484, #008CFF);
}

.clickmap__ranked { border-top: 1px solid var(--c-line-soft); padding: var(--s-4) var(--s-4) var(--s-5); }
.clickmap__rankedtitle {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: var(--s-3);
}
.ranked { display: flex; flex-direction: column; gap: var(--s-2); }
.ranked__row { display: flex; align-items: center; gap: var(--s-3); font-size: 0.75rem; }
.ranked__num {
  width: 18px; height: 18px;
  flex: none;
  border-radius: 50%;
  background: var(--c-purple);
  color: var(--c-on-dark);
  font-family: var(--font-mono);
  font-size: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ranked__label { flex: 1; color: var(--c-ink); font-weight: 600; }
.ranked__label--weak { color: var(--c-body); font-weight: 400; }
.ranked__val { font-family: var(--font-mono); color: var(--c-body); }

.clickmap-figure__caption {
  margin-top: var(--s-3);
  font-family: var(--font-mono);
  font-size: var(--t-mono);
  line-height: 1.6;
  color: var(--c-muted);
}

/* ==========================================================================
   CARDS: BENCHMARKS, STEPS, SCOPE LISTS, GUARANTEE, PRICING
   ========================================================================== */

/* -- Benchmarks ------------------------------------------------------------
   One-pixel gaps on a --c-line ground produce hairline dividers without
   per-cell border juggling.                                               */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1px;
  margin-top: var(--s-8);
  background: var(--c-line);
  border: 1px solid var(--c-line);
}
.stat { background: var(--c-bg); padding: var(--s-8) var(--s-6); }
.stat__num {
  font-size: 3.25rem;
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1;
  color: var(--c-purple);
}
.stat__label { margin-top: var(--s-3); font-size: 1rem; font-weight: 600; color: var(--c-ink); }
.stat__text  { margin-top: var(--s-1); font-size: var(--t-sm); line-height: 1.55; color: var(--c-muted); }
.stat__src {
  margin-top: var(--s-4);
  font-family: var(--font-mono);
  font-size: var(--t-mono);
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--c-muted);
}

/* -- Process steps -- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  gap: var(--s-6);
  margin-top: var(--s-10);
}
.step { background: var(--c-bg); border-top: 3px solid var(--c-purple); padding: var(--s-8) var(--s-6); }
.step__num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-purple);
}
.step__title { margin-top: var(--s-3); font-size: 1.375rem; font-weight: 700; letter-spacing: -.015em; color: var(--c-ink); }
.step__text  { margin-top: var(--s-2); font-size: 1rem; line-height: 1.6; color: var(--c-body); }

/* -- Scope lists -- */
.scope {
  display: grid;
  gap: clamp(2rem, 1rem + 4vw, 3.5rem);
}
@media (min-width: 60em) { .scope { grid-template-columns: 1fr 1fr; } }

.checklist { margin-top: var(--s-5); }
.checklist li {
  display: flex;
  gap: var(--s-3);
  padding-block: var(--s-4);
  border-bottom: 1px solid var(--c-line);
  color: var(--c-ink);
}
.checklist li:last-child { border-bottom: 0; }

/* Purple frame keeps the module on-brand; the crosses carry the negation. */
.boundary { border: 2px solid var(--c-purple); padding: var(--s-6); align-self: start; }
.crosslist { display: flex; flex-direction: column; gap: var(--s-3); margin-top: var(--s-5); }
.crosslist li { display: flex; gap: var(--s-3); color: var(--c-body); }
.boundary__note {
  margin-top: var(--s-5);
  padding-top: var(--s-4);
  border-top: 1px solid #E0D8FF;
  font-size: var(--t-sm);
  font-style: italic;
  line-height: 1.6;
  color: var(--c-muted);
}

/* -- Risk-reversal band -- */
.risk__grid {
  display: grid;
  gap: clamp(2rem, 1rem + 4vw, 3.5rem);
  align-items: start;
}
@media (min-width: 60em) { .risk__grid { grid-template-columns: 1fr 1fr; } }

.risk__body { color: var(--c-on-dark-soft); }

.callout {
  margin-block: var(--s-5);
  padding: var(--s-5) var(--s-6);
  border: 1px solid var(--c-purple);
  border-left-width: 4px;
  background: rgba(109, 74, 255, .14);
}
.callout__title { font-size: 1.25rem; font-weight: 700; color: var(--c-on-dark); margin-bottom: var(--s-2); }
.callout__text  { font-size: var(--t-sm); color: var(--c-on-dark-soft); }
.callout__text strong { color: var(--c-on-dark); }

/* -- Guarantee -- */
.guarantee {
  background: var(--c-bg);
  border: 3px dashed var(--c-purple);
  padding: clamp(1.75rem, 1rem + 3vw, 3rem);
}
.guarantee .h2 { margin-block: var(--s-4) var(--s-5); }
.guarantee__lead { font-size: 1.25rem; font-weight: 600; line-height: 1.55; color: var(--c-ink); text-wrap: pretty; }
.guarantee__sub  { margin-top: var(--s-2); font-size: 1.125rem; color: var(--c-body); }

.guarantee__terms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: var(--s-3) var(--s-8);
  margin-top: var(--s-6);
}
.guarantee__terms li { display: flex; gap: var(--s-3); font-size: 1rem; color: var(--c-ink); }

.guarantee__foot {
  margin-top: var(--s-6);
  padding-top: var(--s-5);
  border-top: 1px solid var(--c-line);
  font-size: 1rem;
  color: var(--c-body);
}

/* -- Pricing -- */
.pricing {
  display: grid;
  gap: clamp(1.75rem, 1rem + 3vw, 2.75rem);
  align-items: start;
}
@media (min-width: 60em) { .pricing { grid-template-columns: 1fr 1fr; } }

.price-card { border: 2px solid var(--c-purple); box-shadow: var(--shadow-md); padding: var(--s-8) var(--s-6); }
.price-card__figure { display: flex; align-items: baseline; gap: var(--s-2); }
.price-card__amount {
  font-size: clamp(3.5rem, 2rem + 6vw, 4.75rem);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1;
  color: var(--c-ink);
}
.price-card__period { font-size: 1.25rem; font-weight: 500; color: var(--c-muted); }
.price-card__note { margin-top: var(--s-3); font-size: 1rem; line-height: 1.6; color: var(--c-body); }

.price-card__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
  gap: var(--s-2) var(--s-6);
  margin-block: var(--s-6);
}
.price-card__features li { display: flex; gap: var(--s-2); font-size: 1rem; color: var(--c-ink); }

/* -- Comparison table --
   Wrapper scrolls horizontally on very narrow screens rather than squashing
   the columns; tabindex makes that scroll keyboard-reachable.             */
.compare__scroll { overflow-x: auto; border: 1px solid var(--c-line); margin-top: var(--s-5); }

.compare__table { width: 100%; border-collapse: collapse; font-size: 1rem; }
.compare__table th,
.compare__table td { padding: var(--s-5) var(--s-4); text-align: left; font-weight: 400; }

.compare__table thead th {
  background: var(--c-bg-alt);
  font-family: var(--font-mono);
  font-size: var(--t-mono);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-body);
  padding-block: var(--s-4);
}
.compare__table thead .compare__us { color: var(--c-purple); }

.compare__table tbody tr { border-top: 1px solid var(--c-line); transition: background-color .15s var(--ease); }
.compare__table tbody tr:hover { background: var(--c-purple-wash); }
.compare__table tbody th { color: var(--c-muted); }        /* row label      */
.compare__val { color: var(--c-ink); font-weight: 600; }   /* our column     */

.compare .mono-note { display: block; margin-top: var(--s-3); }
.compare .btn { margin-top: var(--s-5); }

/* -- Trust strip -- */
.trust { border-bottom: 1px solid var(--c-line); }
.trust__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
  gap: var(--s-6);
  padding-block: var(--s-10);
}
.trust__num {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--t-mono);
  letter-spacing: .1em;
  color: var(--c-purple);
}
.trust__text { display: block; margin-top: var(--s-2); font-size: 1rem; font-weight: 600; color: var(--c-ink); }

/* ==========================================================================
   FORMS
   --------------------------------------------------------------------------
   Two contexts: the scorecard form on the deep purple band, and the plain
   forms in the client area on white. The .form--light modifier switches the
   label and hint colours; everything else is shared.
   ========================================================================== */
.lede-on-dark {
  margin: var(--s-4) auto var(--s-8);
  max-width: 30em;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--c-on-deep-soft);
  text-wrap: pretty;
}

.form { display: flex; flex-direction: column; gap: var(--s-3); text-align: left; }

.field__label { display: block; font-size: var(--t-xs); font-weight: 500; color: var(--c-on-deep-soft); }
.field__input {
  display: block;
  width: 100%;
  margin-top: 7px;
  min-height: 52px;
  padding: 0 var(--s-4);
  font-family: inherit;
  font-size: var(--t-body);
  color: var(--c-ink);
  background: var(--c-bg);
  border: 2px solid var(--c-bg);
  border-radius: var(--radius);
}
.field__input:focus-visible { outline-color: var(--c-purple-soft); }
.field__input[aria-invalid="true"] { border-color: var(--c-no); }

/* --c-on-deep-soft is 5.80:1 on the purple band; --c-purple-soft was 4.43:1,
   which is under the 4.5:1 floor for text this size. */
.field__hint { margin-top: var(--s-1); font-size: var(--t-xs); color: var(--c-on-deep-soft); }

/* Light context: the client area and legal pages. */
.form--light .field__label { color: var(--c-ink); font-size: var(--t-sm); font-weight: 600; }
.form--light .field__input { border-color: var(--c-line); }
.form--light .field__input:focus-visible { outline-color: var(--c-purple); }
.form--light .field__hint { color: var(--c-muted); }

/* Honeypot: off-screen, never focusable, invisible to bots' heuristics. */
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form__error {
  background: var(--c-no);
  color: var(--c-on-dark);
  font-size: 0.875rem;
  font-weight: 500;
  padding: var(--s-3) var(--s-4);
  border-radius: var(--radius);
}
.form--light .form__error { background: #FFF1F4; color: var(--c-no-deep); border-left: 4px solid var(--c-no); }

.form__fineprint { margin-top: var(--s-1); font-size: var(--t-xs); text-align: center; color: var(--c-on-deep-soft); }
.form--light .form__fineprint { color: var(--c-muted); }

.form-success { background: var(--c-bg); border-left: 4px solid var(--c-go); padding: var(--s-6); text-align: left; }
.form-success__title { font-size: 1.1875rem; font-weight: 700; color: var(--c-ink); }
.form-success__text  { margin-top: var(--s-2); font-size: 1rem; line-height: 1.6; color: var(--c-body); }

/* A checkbox row: "remember me", consent boxes. */
.field--check { display: flex; align-items: center; gap: var(--s-3); }
.field--check input { width: 20px; height: 20px; accent-color: var(--c-purple); flex: none; }
.field--check label { font-size: var(--t-sm); color: var(--c-body); }

/* Flash messages, shown after a redirect. */
.flash {
  padding: var(--s-4) var(--s-5);
  border-radius: var(--radius);
  border-left: 4px solid;
  font-size: var(--t-sm);
  margin-bottom: var(--s-5);
}
.flash--ok    { background: #ECFDF3; border-color: var(--c-go);      color: #045B31; }
.flash--warn  { background: #FFF7ED; border-color: var(--c-warn);    color: #7C3A03; }
.flash--error { background: #FFF1F4; border-color: var(--c-no);      color: var(--c-no-deep); }

/* ==========================================================================
   FAQ ACCORDION
   --------------------------------------------------------------------------
   Panels start open in the markup so the content exists without JavaScript.
   main.js adds .faq--js, which is what hides collapsed panels.
   ========================================================================== */
.faq { display: flex; flex-direction: column; gap: var(--s-2); margin-top: var(--s-8); }
.faq__item { background: var(--c-bg); border: 1px solid var(--c-line); }
.faq__heading { margin: 0; font-size: inherit; }

.faq__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
  width: 100%;
  min-height: 56px;
  padding: var(--s-5) var(--s-6);
  background: none;
  border: 0;
  font-family: inherit;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--c-ink);
  text-align: left;
  cursor: pointer;
}
.faq__button:hover { color: var(--c-purple); }

/* +/- indicator drawn from the button's state — no duplicate text nodes. */
.faq__sign { position: relative; width: 16px; height: 16px; flex: none; }
.faq__sign::before,
.faq__sign::after {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 16px; height: 2px;
  background: var(--c-purple);
  transition: transform .2s var(--ease);
}
.faq__sign::after { transform: rotate(90deg); }
.faq__button[aria-expanded="true"] .faq__sign::after { transform: rotate(0deg); }

.faq__panel { padding: 0 var(--s-6) var(--s-6); color: var(--c-body); line-height: 1.65; }
.faq--js .faq__panel[hidden] { display: none; }

.faq__after { margin-top: var(--s-6); font-size: var(--t-body); color: var(--c-body); }

/* ==========================================================================
   SCORECARD REPORT
   --------------------------------------------------------------------------
   The page a lead lands on after submitting the form: one score, the metrics
   behind it, the issues we found, and one way forward.
   ========================================================================== */
.report__head {
  display: grid;
  gap: var(--s-6);
  align-items: center;
  padding-block: var(--s-10);
}
@media (min-width: 48em) { .report__head { grid-template-columns: auto 1fr; gap: var(--s-10); } }

/* -- The score dial --------------------------------------------------------
   A conic gradient sweep, with the number sitting in a punched-out centre.
   The value is also written out in text for screen readers.              */
.score {
  --score: 0;
  --score-colour: var(--c-warn);
  position: relative;
  width: 148px; height: 148px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(var(--score-colour) calc(var(--score) * 1%), var(--c-line) 0);
  margin-inline: auto;
}
.score::before {
  content: "";
  position: absolute;
  inset: 12px;
  background: var(--c-bg);
  border-radius: 50%;
}
.score--good { --score-colour: var(--c-go); }
.score--warn { --score-colour: var(--c-warn); }
.score--bad  { --score-colour: var(--c-no); }

.score__value {
  position: relative;
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
  color: var(--c-ink);
}
.score__label {
  position: relative;
  margin-top: 2px;
  font-family: var(--font-mono);
  font-size: var(--t-mono);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-muted);
}

.report__site { font-size: var(--t-h2-sm); font-weight: 700; color: var(--c-ink); word-break: break-word; }
.report__meta { margin-top: var(--s-2); font-size: var(--t-sm); color: var(--c-muted); }

/* -- Core Web Vitals row -- */
.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  gap: 1px;
  background: var(--c-line);
  border: 1px solid var(--c-line);
  margin-top: var(--s-6);
}
.metric { background: var(--c-bg); padding: var(--s-5); }
.metric__name {
  font-family: var(--font-mono);
  font-size: var(--t-mono);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.metric__value { margin-top: var(--s-2); font-size: 1.5rem; font-weight: 700; color: var(--c-ink); }
.metric__value--good { color: var(--c-go); }
.metric__value--warn { color: var(--c-warn); }
.metric__value--bad  { color: var(--c-no-deep); }
.metric__target { margin-top: var(--s-1); font-size: var(--t-xs); color: var(--c-muted); }

/* -- Issue list -- */
.issues { display: flex; flex-direction: column; gap: var(--s-4); margin-top: var(--s-6); }

.issue {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s-4);
  border: 1px solid var(--c-line);
  border-left: 4px solid var(--c-muted);
  padding: var(--s-5) var(--s-6);
  background: var(--c-bg);
}
.issue--critical { border-left-color: var(--c-no); }
.issue--high     { border-left-color: #E8590C; }
.issue--medium   { border-left-color: var(--c-warn); }
.issue--low      { border-left-color: var(--c-muted); }

.issue__num {
  font-family: var(--font-mono);
  font-size: var(--t-sm);
  color: var(--c-muted);
  padding-top: 2px;
}
.issue__title { font-size: 1.125rem; font-weight: 700; color: var(--c-ink); line-height: 1.35; }
.issue__detail { margin-top: var(--s-2); font-size: var(--t-sm); line-height: 1.6; color: var(--c-body); }

.issue__tags { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-top: var(--s-3); }
.tag {
  font-family: var(--font-mono);
  font-size: var(--t-mono);
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px var(--s-2);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  color: var(--c-muted);
}
.tag--critical { color: var(--c-no-deep); border-color: currentColor; }
.tag--high     { color: #B4440A;          border-color: currentColor; }
.tag--medium   { color: var(--c-warn);    border-color: currentColor; }

/* -- Estimated loss callout -- */
.estimate {
  margin-top: var(--s-8);
  padding: var(--s-6);
  background: var(--c-purple-tint);
  border-left: 4px solid var(--c-purple);
}
.estimate__figure { font-size: 2.5rem; font-weight: 800; letter-spacing: -.03em; color: var(--c-purple); line-height: 1; }
.estimate__text { margin-top: var(--s-3); font-size: var(--t-sm); line-height: 1.6; color: var(--c-body); }

.report__actions { display: flex; flex-wrap: wrap; gap: var(--s-4); margin-top: var(--s-8); }

/* ==========================================================================
   CLIENT DASHBOARD
   ========================================================================== */
.app-bar {
  background: var(--c-ink);
  color: var(--c-on-dark);
  padding-block: var(--s-4);
}
.app-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
}
.app-bar__nav { display: flex; flex-wrap: wrap; align-items: center; gap: var(--s-5); }
.app-bar__link { color: #B8B8C2; font-size: var(--t-sm); }
.app-bar__link:hover { color: var(--c-on-dark); }
.app-bar__link[aria-current="page"] { color: var(--c-on-dark); font-weight: 600; }

.page-head { padding-block: var(--s-8) var(--s-6); }
.page-head__title { font-size: var(--t-h2); font-weight: 700; letter-spacing: -.025em; color: var(--c-ink); }
.page-head__sub { margin-top: var(--s-2); color: var(--c-muted); }

/* -- Status pills -- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: var(--s-1) var(--s-3);
  border-radius: var(--radius-pill);
  font-size: var(--t-xs);
  font-weight: 600;
}
.pill--active    { background: #ECFDF3; color: #045B31; }
.pill--trial     { background: var(--c-purple-tint); color: #3B2A99; }
.pill--paused    { background: #FFF7ED; color: #7C3A03; }
.pill--cancelled { background: #FFF1F4; color: var(--c-no-deep); }

/* -- Panel grid -- */
.panels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(19rem, 1fr));
  gap: var(--s-5);
  padding-bottom: var(--s-12);
}
.panel {
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  padding: var(--s-6);
  display: flex;
  flex-direction: column;
}
.panel--wide { grid-column: 1 / -1; }

.panel__title {
  font-family: var(--font-mono);
  font-size: var(--t-mono);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: var(--s-4);
}
.panel__figure { font-size: 2.25rem; font-weight: 800; letter-spacing: -.03em; line-height: 1; color: var(--c-ink); }
.panel__note { margin-top: var(--s-2); font-size: var(--t-sm); color: var(--c-muted); }
.panel__actions { margin-top: auto; padding-top: var(--s-5); display: flex; flex-wrap: wrap; gap: var(--s-3); }

/* -- Recent-fixes list -- */
.timeline { display: flex; flex-direction: column; }
.timeline__item { padding-block: var(--s-4); border-bottom: 1px solid var(--c-line); }
.timeline__item:last-child { border-bottom: 0; }
.timeline__when {
  font-family: var(--font-mono);
  font-size: var(--t-mono);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.timeline__what { margin-top: var(--s-1); font-size: 1rem; color: var(--c-ink); }
.timeline__delta { margin-top: var(--s-1); font-size: var(--t-sm); color: var(--c-body); }
.timeline__delta b { color: var(--c-go); font-weight: 600; }

/* -- Uptime -- */
.uptime { display: flex; align-items: baseline; gap: var(--s-3); }
.uptime__pct { font-size: 2.25rem; font-weight: 800; letter-spacing: -.03em; line-height: 1; color: var(--c-go); }
.uptime__pct--degraded { color: var(--c-warn); }
.uptime__pct--bad { color: var(--c-no-deep); }

/* 30 slim bars, one per day. Colour carries the meaning, the title attribute
   and the table below carry it for anyone who cannot see colour.          */
.uptime__bars { display: flex; gap: 2px; margin-top: var(--s-4); }
.uptime__bar { flex: 1; height: 34px; background: var(--c-go); border-radius: 1px; }
.uptime__bar--down { background: var(--c-no); }
.uptime__bar--none { background: var(--c-line); }

/* -- Report archive table -- */
.table-scroll { overflow-x: auto; border: 1px solid var(--c-line); }
.table { width: 100%; border-collapse: collapse; font-size: var(--t-sm); }
.table th, .table td { padding: var(--s-4); text-align: left; }
.table thead th {
  background: var(--c-bg-alt);
  font-family: var(--font-mono);
  font-size: var(--t-mono);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-body);
  font-weight: 500;
}
.table tbody tr { border-top: 1px solid var(--c-line); }
.table tbody tr:hover { background: var(--c-purple-wash); }

.empty {
  padding: var(--s-10) var(--s-6);
  text-align: center;
  color: var(--c-muted);
  border: 1px dashed var(--c-line);
}

/* ==========================================================================
   LONG-FORM PROSE
   --------------------------------------------------------------------------
   Legal pages. Element selectors are acceptable inside .doc — the content is
   generated prose, and giving every paragraph a class would be busywork.
   ========================================================================== */
.doc { padding-block: var(--s-10) var(--s-16); }
.doc__updated {
  font-family: var(--font-mono);
  font-size: var(--t-mono);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: var(--s-6);
}

.doc h2 {
  font-size: var(--t-h2-sm);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--c-ink);
  margin-top: var(--s-10);
  margin-bottom: var(--s-3);
}
.doc h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--c-ink);
  margin-top: var(--s-6);
  margin-bottom: var(--s-2);
}
.doc p { margin-bottom: var(--s-4); line-height: 1.7; color: var(--c-body); }
.doc ul, .doc ol { margin-bottom: var(--s-4); padding-left: var(--s-6); }
.doc ul li { list-style: disc; margin-bottom: var(--s-2); line-height: 1.7; }
.doc ol li { list-style: decimal; margin-bottom: var(--s-2); line-height: 1.7; }
.doc strong { color: var(--c-ink); }

/* In-page contents list at the top of each legal page. */
.toc { border: 1px solid var(--c-line); padding: var(--s-5) var(--s-6); margin-bottom: var(--s-8); background: var(--c-bg-alt); }
.toc__title {
  font-family: var(--font-mono);
  font-size: var(--t-mono);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: var(--s-3);
}
.toc ol { display: flex; flex-wrap: wrap; gap: var(--s-2) var(--s-6); padding: 0; margin: 0; }
.toc li { list-style: none; font-size: var(--t-sm); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--c-ink); color: var(--c-on-dark-mute); }

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  gap: var(--s-8);
  padding-block: var(--s-12) var(--s-6);
}

.site-footer__address { margin-top: var(--s-4); font-size: var(--t-sm); line-height: 1.9; }
.site-footer__address a { color: #B8B8C2; }
.site-footer__address a:hover { color: var(--c-on-dark); }

.site-footer__title {
  font-family: var(--font-mono);
  font-size: var(--t-mono);
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-on-dark);
  margin-bottom: var(--s-3);
}
.site-footer__list { display: flex; flex-direction: column; gap: var(--s-2); font-size: var(--t-sm); }
.site-footer__list a { color: #B8B8C2; }
.site-footer__list a:hover { color: var(--c-on-dark); }

.site-footer__base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--s-3) var(--s-8);
  padding-block: var(--s-5) var(--s-10);
  border-top: 1px solid #2E2E36;
  font-size: var(--t-xs);
}

/* ==========================================================================
   MOTION & PRINT PREFERENCES
   --------------------------------------------------------------------------
   Kept last so these rules win without !important wars elsewhere.
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

@media print {
  .site-header, .nav-toggle, .skip-link, .btn, .app-bar { display: none !important; }
  body { color: #000; font-size: 11pt; }
  .band-dark, .band-deep { background: #fff !important; color: #000 !important; }
  .h2--on-dark, .callout__title, .risk__body { color: #000 !important; }
  .faq__panel[hidden] { display: block !important; }   /* print every answer */
  .panel, .issue, .table-scroll { break-inside: avoid; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #555; }
}
