/* ==========================================================================
   Legacy Buddy: Global Styles
   global.css
   Font imports, reset, base typography, and every shared component used
   across the five pages. Load AFTER tokens.css and BEFORE animations.css.
   Naming: BEM with an 'lb-' prefix.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700;800;900&family=Work+Sans:wght@400;500;600;700;800&family=Roboto:wght@300;400;500;700&display=swap');

/* ==========================================================================
   1. Reset and base
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  /* Offset anchored sections so they are not hidden under the sticky nav */
  scroll-padding-top: calc(var(--lb-nav-height) + var(--lb-announcement-height) + 8px);
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--lb-font-body);
  font-size: var(--lb-text-base);
  line-height: var(--lb-leading-relaxed);
  color: var(--lb-text-body);
  background-color: var(--lb-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--lb-font-heading);
  color: var(--lb-ink);
  line-height: var(--lb-leading-tight);
  font-weight: 700;
}

/* Big editorial headings use the display serif; component titles and small
   labels keep the Work Sans UI face. */
h1,
h2 {
  font-family: var(--lb-font-display);
  letter-spacing: var(--lb-tracking-tight);
}

strong,
b {
  font-weight: 700;
}

/* ==========================================================================
   2. Accessibility helpers
   ========================================================================== */

/* Skip link, visible only on keyboard focus */
.lb-skip-link {
  position: absolute;
  left: 50%;
  top: -64px;
  transform: translateX(-50%);
  z-index: calc(var(--lb-z-modal) + 10);
  background: var(--lb-gold);
  color: var(--lb-navy);
  font-family: var(--lb-font-heading);
  font-weight: 600;
  padding: var(--lb-space-3) var(--lb-space-6);
  border-radius: var(--lb-radius-md);
  transition: top var(--lb-transition-base);
}

.lb-skip-link:focus {
  top: var(--lb-space-2);
}

/* Screen-reader-only text */
.lb-visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Consistent, visible focus ring for keyboard users */
:focus-visible {
  outline: 3px solid var(--lb-gold);
  outline-offset: 2px;
  border-radius: var(--lb-radius-sm);
}

/* ==========================================================================
   3. Layout primitives
   ========================================================================== */

.lb-container {
  width: 100%;
  max-width: var(--lb-container-max);
  margin-inline: auto;
  padding-inline: var(--lb-space-6);
}

.lb-section {
  max-width: var(--lb-container-max);
  margin-inline: auto;
  padding: clamp(3rem, 6vw, 6rem) var(--lb-space-6);
}

.lb-section--wide {
  max-width: none;
}

.lb-section__inner {
  max-width: var(--lb-container-max);
  margin-inline: auto;
}

/* Full-bleed background bands that still center their content */
.lb-band {
  width: 100%;
}

.lb-band--navy {
  background-color: var(--lb-navy);
  color: var(--lb-white);
}

.lb-band--navy-gradient {
  background: var(--lb-grad-hero);
  color: var(--lb-white);
}

.lb-band--navy-soft {
  background: linear-gradient(180deg, var(--lb-navy-dark) 0%, var(--lb-navy) 100%);
  color: var(--lb-white);
}

.lb-band--off-white {
  background-color: var(--lb-off-white);
}

.lb-band--white {
  background-color: var(--lb-white);
}

.lb-band--emerald-pale {
  background-color: var(--lb-emerald-pale);
}

/* Generic responsive grids */
.lb-grid {
  display: grid;
  gap: var(--lb-space-6);
}

.lb-grid--2 {
  grid-template-columns: 1fr;
}

.lb-grid--3 {
  grid-template-columns: 1fr;
}

.lb-grid--4 {
  grid-template-columns: 1fr;
}

/* ==========================================================================
   4. Section headers and kickers
   ========================================================================== */

.lb-kicker {
  display: inline-block;
  font-family: var(--lb-font-heading);
  font-weight: 600;
  font-size: var(--lb-text-sm);
  letter-spacing: var(--lb-tracking-wider);
  text-transform: uppercase;
  color: var(--lb-gold);
  margin-bottom: var(--lb-space-4);
}

.lb-kicker--on-navy {
  color: var(--lb-emerald-glow);
}

/* Accent pill badge, e.g. "Launching in 2026" */
.lb-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--lb-space-2);
  font-family: var(--lb-font-heading);
  font-weight: 600;
  font-size: var(--lb-text-sm);
  letter-spacing: var(--lb-tracking-wide);
  text-transform: uppercase;
  color: var(--lb-green-strong);
  background-color: var(--lb-green-soft);
  border: 1px solid rgba(34, 197, 94, 0.28);
  padding: var(--lb-space-2) var(--lb-space-4);
  border-radius: var(--lb-radius-full);
}

.lb-badge--outline {
  background: transparent;
  color: var(--lb-gold-light);
  border: 1px solid rgba(212, 175, 55, 0.5);
}

.lb-section-head {
  max-width: 760px;
  margin-bottom: var(--lb-space-12);
}

.lb-section-head--center {
  margin-inline: auto;
  text-align: center;
}

.lb-section-head__title {
  font-size: clamp(1.75rem, 2.4vw + 1rem, 3rem);
  font-weight: 800;
  letter-spacing: var(--lb-tracking-tight);
}

.lb-section-head__subtitle {
  margin-top: var(--lb-space-4);
  font-size: var(--lb-text-lg);
  color: var(--lb-text-light);
  line-height: var(--lb-leading-relaxed);
}

.lb-band--navy .lb-section-head__title,
.lb-band--navy-gradient .lb-section-head__title,
.lb-band--navy-soft .lb-section-head__title {
  color: var(--lb-white);
}

.lb-band--navy .lb-section-head__subtitle,
.lb-band--navy-gradient .lb-section-head__subtitle,
.lb-band--navy-soft .lb-section-head__subtitle {
  color: rgba(255, 255, 255, 0.78);
}

/* ==========================================================================
   5. Buttons
   ========================================================================== */

.lb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--lb-space-2);
  font-family: var(--lb-font-heading);
  font-weight: 600;
  font-size: var(--lb-text-base);
  line-height: 1;
  text-align: center;
  height: 48px;
  padding-inline: var(--lb-space-6);
  border-radius: var(--lb-radius-md);
  transition: transform var(--lb-transition-fast), background-color var(--lb-transition-base),
    color var(--lb-transition-base), box-shadow var(--lb-transition-base),
    border-color var(--lb-transition-base);
  text-decoration: none;
  white-space: nowrap;
}

.lb-btn-primary {
  background-color: var(--lb-blue-strong);
  background-image: var(--lb-grad-primary);
  color: var(--lb-white);
  box-shadow: 0 8px 18px rgba(11, 122, 87, 0.30);
  position: relative;
  overflow: hidden;
}

/* Light sheen that sweeps across on hover */
.lb-btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -130%;
  width: 55%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  transform: skewX(-18deg);
  transition: left 650ms var(--lb-ease-out);
  pointer-events: none;
}

.lb-btn-primary:hover {
  background-image: var(--lb-grad-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(11, 122, 87, 0.42);
}

.lb-btn-primary:hover::after {
  left: 135%;
}

.lb-btn-secondary {
  background-color: transparent;
  color: var(--lb-navy);
  border: 2px solid var(--lb-navy);
}

.lb-btn-secondary:hover {
  background-color: var(--lb-navy);
  color: var(--lb-white);
}

/* Secondary button placed on a navy background */
.lb-btn-secondary--on-navy {
  color: var(--lb-white);
  border-color: rgba(255, 255, 255, 0.7);
}

.lb-btn-secondary--on-navy:hover {
  background-color: var(--lb-white);
  color: var(--lb-navy);
  border-color: var(--lb-white);
}

.lb-btn-ghost {
  background: transparent;
  color: var(--lb-navy);
  padding-inline: var(--lb-space-2);
}

.lb-btn-ghost:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.lb-btn-large {
  height: 56px;
  padding-inline: var(--lb-space-8);
  font-size: var(--lb-text-lg);
}

.lb-btn-full {
  width: 100%;
}

.lb-btn:disabled,
.lb-btn[aria-disabled='true'] {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ==========================================================================
   6. Announcement bar
   ========================================================================== */

.lb-announcement-bar {
  background-color: var(--lb-navy);
  color: var(--lb-white);
  min-height: var(--lb-announcement-height);
  display: flex;
  align-items: center;
  position: relative;
  z-index: calc(var(--lb-z-nav) + 1);
}

.lb-announcement-bar[hidden] {
  display: none;
}

.lb-announcement-bar__inner {
  max-width: var(--lb-container-max);
  margin-inline: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--lb-space-2);
  padding: var(--lb-space-2) var(--lb-space-10) var(--lb-space-2) var(--lb-space-6);
  font-family: var(--lb-font-body);
  font-size: var(--lb-text-sm);
  text-align: center;
}

.lb-announcement-bar__highlight {
  color: #5EE6A0;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: var(--lb-space-2);
}

.lb-announcement-bar__link {
  color: var(--lb-white);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lb-announcement-bar__link:hover {
  color: #5EE6A0;
}

.lb-announcement-bar__close {
  position: absolute;
  right: var(--lb-space-4);
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--lb-radius-full);
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--lb-text-lg);
  line-height: 1;
  transition: background-color var(--lb-transition-base), color var(--lb-transition-base);
}

.lb-announcement-bar__close:hover {
  background-color: rgba(255, 255, 255, 0.12);
  color: var(--lb-white);
}

/* ==========================================================================
   7. Navigation
   ========================================================================== */

.lb-nav {
  position: sticky;
  top: 0;
  z-index: var(--lb-z-nav);
  width: 100%;
  background-color: transparent;
  transition: background-color var(--lb-transition-base), box-shadow var(--lb-transition-base);
}

/* Solid state: applied by main.js on scroll, and as a default on
   light-hero pages via .lb-nav--solid in markup. */
.lb-nav.lb-nav--scrolled,
.lb-nav--solid {
  background-color: rgba(12, 18, 34, 0.72);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 10px 34px rgba(7, 11, 22, 0.30);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.lb-nav__inner {
  max-width: var(--lb-container-max);
  margin-inline: auto;
  height: var(--lb-nav-height);
  padding-inline: var(--lb-space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--lb-space-6);
}

/* Logo / wordmark */
.lb-nav__brand {
  display: flex;
  align-items: center;
  gap: var(--lb-space-3);
}

.lb-nav__brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
}

.lb-nav__wordmark {
  font-family: var(--lb-font-heading);
  font-weight: 700;
  font-size: var(--lb-text-xl);
  color: var(--lb-white);
  letter-spacing: var(--lb-tracking-tight);
}

.lb-nav__tagline {
  font-family: var(--lb-font-body);
  font-weight: 400;
  font-size: var(--lb-text-xs);
  color: #9DBDAF;
  letter-spacing: var(--lb-tracking-wide);
  margin-top: 2px;
}

/* Center links */
.lb-nav__links {
  display: none;
  align-items: center;
  gap: var(--lb-space-8);
}

.lb-nav__link {
  font-family: var(--lb-font-heading);
  font-weight: 500;
  font-size: var(--lb-text-base);
  color: rgba(255, 255, 255, 0.88);
  position: relative;
  padding-block: var(--lb-space-2);
  transition: color var(--lb-transition-base);
}

.lb-nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--lb-gold);
  transition: width var(--lb-transition-base);
}

.lb-nav__link:hover,
.lb-nav__link[aria-current='page'] {
  color: var(--lb-white);
}

.lb-nav__link:hover::after,
.lb-nav__link[aria-current='page']::after {
  width: 100%;
}

.lb-nav__actions {
  display: none;
  align-items: center;
  gap: var(--lb-space-4);
}

/* Hamburger toggle (mobile) */
.lb-nav__toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  border-radius: var(--lb-radius-md);
}

.lb-nav__toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--lb-white);
  border-radius: var(--lb-radius-full);
  transition: transform var(--lb-transition-base), opacity var(--lb-transition-base);
}

.lb-nav__toggle[aria-expanded='true'] .lb-nav__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.lb-nav__toggle[aria-expanded='true'] .lb-nav__toggle-bar:nth-child(2) {
  opacity: 0;
}

.lb-nav__toggle[aria-expanded='true'] .lb-nav__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile slide-in drawer */
.lb-nav__drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(82vw, 340px);
  background-color: var(--lb-navy-dark);
  box-shadow: var(--lb-shadow-xl);
  z-index: var(--lb-z-modal);
  transform: translateX(100%);
  transition: transform var(--lb-transition-base);
  display: flex;
  flex-direction: column;
  padding: var(--lb-space-8) var(--lb-space-6);
  gap: var(--lb-space-6);
  overflow-y: auto;
}

.lb-nav__drawer.lb-is-open {
  transform: translateX(0);
}

.lb-nav__drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lb-nav__drawer-close {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--lb-white);
  font-size: var(--lb-text-2xl);
  border-radius: var(--lb-radius-md);
}

.lb-nav__drawer-close:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.lb-nav__drawer-links {
  display: flex;
  flex-direction: column;
  gap: var(--lb-space-2);
}

.lb-nav__drawer-link {
  font-family: var(--lb-font-heading);
  font-weight: 500;
  font-size: var(--lb-text-lg);
  color: var(--lb-white);
  padding: var(--lb-space-3) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lb-nav__drawer-link:hover {
  color: var(--lb-gold);
}

.lb-nav__drawer .lb-btn {
  margin-top: var(--lb-space-4);
}

/* Backdrop behind the drawer */
.lb-nav__backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(7, 11, 22, 0.55);
  backdrop-filter: blur(2px);
  z-index: var(--lb-z-overlay);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--lb-transition-base), visibility var(--lb-transition-base);
}

.lb-nav__backdrop.lb-is-open {
  opacity: 1;
  visibility: visible;
}

/* Lock body scroll while the drawer is open */
body.lb-no-scroll {
  overflow: hidden;
}

/* ==========================================================================
   8. Stat cards
   ========================================================================== */

.lb-stat-card {
  background-color: var(--lb-white);
  border-radius: var(--lb-radius-lg);
  border-top: 4px solid var(--lb-gold);
  box-shadow: var(--lb-shadow-sm);
  padding: var(--lb-space-6);
  text-align: center;
}

.lb-stat-card__icon {
  font-size: var(--lb-text-3xl);
  color: var(--lb-gold);
  margin-bottom: var(--lb-space-2);
  line-height: 1;
}

.lb-stat-card__number {
  font-family: var(--lb-font-heading);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.1;
  color: var(--lb-navy);
}

.lb-stat-card__label {
  font-family: var(--lb-font-body);
  font-weight: 400;
  font-size: var(--lb-text-sm);
  color: var(--lb-text-light);
  margin-top: var(--lb-space-2);
}

/* ==========================================================================
   9. Feature cards
   ========================================================================== */

.lb-feature-card {
  position: relative;
  background-color: var(--lb-white);
  border-radius: var(--lb-radius-xl);
  box-shadow: var(--lb-shadow-md);
  padding: var(--lb-space-8);
  transition: transform var(--lb-transition-base), box-shadow var(--lb-transition-base);
  overflow: hidden;
}

.lb-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lb-shadow-lg);
}

.lb-feature-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--lb-radius-lg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--lb-blue-strong);
  background-color: var(--lb-blue-soft);
  margin-bottom: var(--lb-space-6);
}

.lb-feature-card__icon--gold {
  color: var(--lb-emerald-glow);
  background-color: var(--lb-ink);
}

.lb-feature-card__title {
  font-family: var(--lb-font-heading);
  font-weight: 600;
  font-size: var(--lb-text-xl);
  color: var(--lb-navy);
  margin-bottom: var(--lb-space-3);
}

.lb-feature-card__body {
  font-family: var(--lb-font-body);
  font-size: var(--lb-text-base);
  color: var(--lb-text-body);
  line-height: var(--lb-leading-relaxed);
}

/* ==========================================================================
   10. Pillar cards
   ========================================================================== */

.lb-pillar-card {
  background-color: var(--lb-white);
  border-radius: var(--lb-radius-lg);
  border-left: 4px solid var(--lb-gold);
  box-shadow: var(--lb-shadow-sm);
  padding: var(--lb-space-6);
  display: flex;
  flex-direction: column;
  gap: var(--lb-space-2);
}

.lb-pillar-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--lb-space-3);
}

.lb-pillar-card__name {
  font-family: var(--lb-font-heading);
  font-weight: 600;
  font-size: var(--lb-text-lg);
  color: var(--lb-navy);
  display: flex;
  align-items: center;
  gap: var(--lb-space-2);
}

.lb-pillar-card__weight {
  flex-shrink: 0;
  font-family: var(--lb-font-heading);
  font-weight: 600;
  font-size: var(--lb-text-xs);
  color: var(--lb-navy);
  background-color: var(--lb-gold-pale);
  border: 1px solid var(--lb-gold);
  padding: 2px var(--lb-space-2);
  border-radius: var(--lb-radius-full);
}

.lb-pillar-card__desc {
  font-family: var(--lb-font-body);
  font-size: var(--lb-text-sm);
  color: var(--lb-text-body);
  line-height: var(--lb-leading-normal);
}

/* Compact pillar row used in the LQ teaser list */
.lb-pillar-row {
  display: flex;
  align-items: flex-start;
  gap: var(--lb-space-3);
  padding: var(--lb-space-3) 0;
  border-bottom: 1px solid var(--lb-silver-light);
}

.lb-pillar-row:last-child {
  border-bottom: none;
}

.lb-pillar-row__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--lb-radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--lb-blue-strong);
  background-color: var(--lb-blue-soft);
  flex-shrink: 0;
}

.lb-pillar-row__text strong {
  font-family: var(--lb-font-heading);
  color: var(--lb-navy);
  font-weight: 600;
}

.lb-pillar-row__text span {
  display: block;
  font-size: var(--lb-text-sm);
  color: var(--lb-text-light);
}

/* ==========================================================================
   11. Forms
   ========================================================================== */

.lb-form-group {
  display: flex;
  flex-direction: column;
  gap: var(--lb-space-2);
  margin-bottom: var(--lb-space-4);
}

.lb-label {
  font-family: var(--lb-font-heading);
  font-weight: 500;
  font-size: var(--lb-text-sm);
  color: var(--lb-navy);
}

.lb-label__optional {
  font-weight: 400;
  color: var(--lb-text-light);
}

.lb-input,
.lb-textarea,
.lb-select {
  width: 100%;
  min-height: 48px;
  padding: var(--lb-space-3) var(--lb-space-4);
  background-color: var(--lb-white);
  border: 1px solid var(--lb-silver);
  border-radius: var(--lb-radius-md);
  color: var(--lb-text-dark);
  transition: border-color var(--lb-transition-base), box-shadow var(--lb-transition-base);
}

.lb-textarea {
  min-height: 120px;
  resize: vertical;
  line-height: var(--lb-leading-normal);
}

.lb-input::placeholder,
.lb-textarea::placeholder {
  color: var(--lb-text-light);
}

.lb-input:focus,
.lb-textarea:focus,
.lb-select:focus {
  outline: none;
  border: 2px solid var(--lb-navy);
  box-shadow: 0 0 0 3px rgba(12, 18, 34, 0.10);
}

/* Error state */
.lb-form-group--error .lb-input,
.lb-form-group--error .lb-textarea,
.lb-form-group--error .lb-select,
.lb-input[aria-invalid='true'],
.lb-textarea[aria-invalid='true'],
.lb-select[aria-invalid='true'] {
  border-color: var(--lb-red);
  background-color: var(--lb-red-pale);
}

.lb-input[aria-invalid='true']:focus,
.lb-textarea[aria-invalid='true']:focus {
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.12);
}

.lb-error-msg {
  font-family: var(--lb-font-body);
  font-size: var(--lb-text-xs);
  color: var(--lb-red);
  min-height: 1em;
}

.lb-error-msg[hidden] {
  display: none;
}

/* Two-column form row collapses to one column on mobile */
.lb-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--lb-space-4);
}

.lb-form-note {
  font-family: var(--lb-font-body);
  font-size: var(--lb-text-xs);
  color: var(--lb-text-light);
  line-height: var(--lb-leading-normal);
  margin-top: var(--lb-space-3);
}

/* ==========================================================================
   12. Footer
   ========================================================================== */

.lb-footer {
  background-color: var(--lb-navy);
  color: rgba(255, 255, 255, 0.78);
  padding-top: var(--lb-space-16);
}

.lb-footer__inner {
  max-width: var(--lb-container-max);
  margin-inline: auto;
  padding-inline: var(--lb-space-6);
}

.lb-footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--lb-space-10);
  padding-bottom: var(--lb-space-12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.lb-footer__brand-block {
  max-width: 320px;
}

.lb-footer__wordmark {
  font-family: var(--lb-font-heading);
  font-weight: 700;
  font-size: var(--lb-text-2xl);
  color: var(--lb-white);
}

.lb-footer__tagline {
  font-family: var(--lb-font-body);
  font-size: var(--lb-text-sm);
  color: #9DBDAF;
  margin-top: var(--lb-space-2);
}

.lb-footer__mission {
  margin-top: var(--lb-space-4);
  font-size: var(--lb-text-sm);
  line-height: var(--lb-leading-relaxed);
}

.lb-footer__cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--lb-space-8);
}

.lb-footer__col-title {
  font-family: var(--lb-font-heading);
  font-weight: 600;
  font-size: var(--lb-text-sm);
  letter-spacing: var(--lb-tracking-wide);
  text-transform: uppercase;
  color: var(--lb-white);
  margin-bottom: var(--lb-space-4);
}

.lb-footer__list {
  display: flex;
  flex-direction: column;
  gap: var(--lb-space-3);
}

.lb-footer__link {
  font-size: var(--lb-text-sm);
  color: rgba(255, 255, 255, 0.78);
  transition: color var(--lb-transition-base);
}

.lb-footer__link:hover {
  color: var(--lb-gold);
}

.lb-footer__social {
  display: flex;
  gap: var(--lb-space-3);
  margin-top: var(--lb-space-6);
}

.lb-footer__social-link {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--lb-radius-full);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--lb-white);
  transition: background-color var(--lb-transition-base), border-color var(--lb-transition-base);
}

.lb-footer__social-link:hover {
  background-color: var(--lb-blue);
  border-color: var(--lb-blue);
  color: var(--lb-white);
}

.lb-footer__social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.lb-footer__bottom {
  padding: var(--lb-space-8) 0;
  display: flex;
  flex-direction: column;
  gap: var(--lb-space-4);
}

.lb-footer__disclaimer {
  font-size: var(--lb-text-xs);
  line-height: var(--lb-leading-relaxed);
  color: rgba(255, 255, 255, 0.6);
}

.lb-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: var(--lb-space-2) var(--lb-space-4);
  align-items: center;
}

.lb-footer__legal-link {
  font-size: var(--lb-text-xs);
  color: rgba(255, 255, 255, 0.7);
}

.lb-footer__legal-link:hover {
  color: var(--lb-gold);
}

.lb-footer__copyright {
  font-size: var(--lb-text-xs);
  color: rgba(255, 255, 255, 0.55);
}

/* ==========================================================================
   13. Score badge
   ========================================================================== */

.lb-score-badge {
  position: relative;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.lb-score-badge--lg {
  width: 180px;
  height: 180px;
}

.lb-score-badge__svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.lb-score-badge__track {
  fill: none;
  stroke: var(--lb-silver-light);
  stroke-width: 6;
}

.lb-score-badge__fill {
  fill: none;
  stroke: var(--lb-gold);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: var(--lb-score-circumference, 226);
  stroke-dashoffset: var(--lb-score-circumference, 226);
  transition: stroke-dashoffset 1.4s ease;
}

.lb-score-badge__center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.lb-score-badge__number {
  font-family: var(--lb-font-heading);
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  color: var(--lb-navy);
}

.lb-score-badge--lg .lb-score-badge__number {
  font-size: 56px;
}

.lb-score-badge__label {
  font-family: var(--lb-font-heading);
  font-weight: 600;
  font-size: var(--lb-text-xs);
  letter-spacing: var(--lb-tracking-wide);
  color: var(--lb-gold);
  margin-top: 2px;
}

.lb-score-badge--lg .lb-score-badge__label {
  font-size: var(--lb-text-base);
}

/* Score badge sitting on a navy card uses light text */
.lb-score-badge--on-navy .lb-score-badge__number {
  color: var(--lb-white);
}

.lb-score-badge--on-navy .lb-score-badge__track {
  stroke: rgba(255, 255, 255, 0.18);
}

/* ==========================================================================
   14. Countdown
   ========================================================================== */

.lb-countdown {
  display: flex;
  align-items: flex-start;
  gap: var(--lb-space-3);
}

.lb-countdown__label {
  font-family: var(--lb-font-heading);
  font-weight: 600;
  font-size: var(--lb-text-sm);
  letter-spacing: var(--lb-tracking-wide);
  color: var(--lb-gold);
  text-transform: uppercase;
  margin-bottom: var(--lb-space-2);
  display: block;
}

.lb-countdown__units {
  display: flex;
  gap: var(--lb-space-3);
}

.lb-countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 64px;
  padding: var(--lb-space-3);
  background-color: var(--lb-white);
  border-radius: var(--lb-radius-md);
  box-shadow: var(--lb-shadow-sm);
}

.lb-countdown__num {
  font-family: var(--lb-font-heading);
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
  color: var(--lb-navy);
  font-variant-numeric: tabular-nums;
}

.lb-countdown__unit-label {
  font-family: var(--lb-font-body);
  font-size: var(--lb-text-xs);
  letter-spacing: var(--lb-tracking-wide);
  text-transform: uppercase;
  color: var(--lb-gold);
  margin-top: var(--lb-space-2);
}

.lb-countdown__live {
  font-family: var(--lb-font-heading);
  font-weight: 700;
  font-size: var(--lb-text-2xl);
  color: var(--lb-gold);
}

/* Compact countdown variant for the navy hero */
.lb-countdown--hero .lb-countdown__num {
  font-size: 40px;
}

.lb-countdown--hero .lb-countdown__unit {
  min-width: 58px;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.lb-countdown--hero .lb-countdown__num {
  color: var(--lb-white);
}

/* ==========================================================================
   15. Quiz interface
   ========================================================================== */

.lb-quiz {
  background-color: var(--lb-white);
  border-radius: var(--lb-radius-2xl);
  box-shadow: var(--lb-shadow-lg);
  padding: var(--lb-space-8);
  max-width: 720px;
  margin-inline: auto;
}

.lb-quiz__progress {
  margin-bottom: var(--lb-space-6);
}

.lb-quiz__progress-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: var(--lb-space-2);
}

.lb-quiz__pillar {
  font-family: var(--lb-font-heading);
  font-weight: 600;
  font-size: var(--lb-text-xs);
  letter-spacing: var(--lb-tracking-wide);
  text-transform: uppercase;
  color: var(--lb-gold);
}

.lb-quiz__counter {
  font-family: var(--lb-font-heading);
  font-weight: 500;
  font-size: var(--lb-text-sm);
  color: var(--lb-text-light);
}

.lb-quiz__progress-track {
  width: 100%;
  height: 8px;
  background-color: var(--lb-silver-light);
  border-radius: var(--lb-radius-full);
  overflow: hidden;
}

.lb-quiz__progress-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--lb-gold), var(--lb-gold-light));
  border-radius: var(--lb-radius-full);
  transition: width var(--lb-transition-slow);
}

.lb-quiz__question {
  font-family: var(--lb-font-heading);
  font-weight: 600;
  font-size: var(--lb-text-2xl);
  line-height: var(--lb-leading-snug);
  color: var(--lb-navy);
  margin-bottom: var(--lb-space-6);
}

.lb-quiz__options {
  display: flex;
  flex-direction: column;
  gap: var(--lb-space-3);
}

.lb-quiz__option {
  display: flex;
  align-items: center;
  gap: var(--lb-space-3);
  width: 100%;
  text-align: left;
  padding: var(--lb-space-4);
  border: 2px solid var(--lb-silver-light);
  border-radius: var(--lb-radius-lg);
  background-color: var(--lb-white);
  font-family: var(--lb-font-body);
  font-size: var(--lb-text-base);
  color: var(--lb-text-body);
  transition: border-color var(--lb-transition-base), background-color var(--lb-transition-base),
    transform var(--lb-transition-fast);
}

.lb-quiz__option:hover {
  border-color: var(--lb-gold);
  background-color: var(--lb-gold-pale);
}

.lb-quiz__option.lb-is-selected {
  border-color: var(--lb-gold);
  background-color: var(--lb-gold-pale);
}

.lb-quiz__option-marker {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: var(--lb-radius-full);
  border: 2px solid var(--lb-silver);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--lb-font-heading);
  font-weight: 600;
  font-size: var(--lb-text-xs);
  color: var(--lb-text-light);
  transition: border-color var(--lb-transition-base), background-color var(--lb-transition-base),
    color var(--lb-transition-base);
}

.lb-quiz__option.lb-is-selected .lb-quiz__option-marker {
  border-color: var(--lb-blue-strong);
  background-color: var(--lb-blue-strong);
  color: var(--lb-white);
}

.lb-quiz__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--lb-space-4);
  margin-top: var(--lb-space-8);
}

.lb-quiz__back {
  visibility: visible;
}

.lb-quiz__back[hidden] {
  visibility: hidden;
}

/* Email gate and results panels share the quiz shell */
.lb-quiz__panel {
  text-align: center;
}

.lb-quiz__panel-title {
  font-family: var(--lb-font-heading);
  font-weight: 700;
  font-size: var(--lb-text-3xl);
  color: var(--lb-navy);
  margin-bottom: var(--lb-space-3);
}

.lb-quiz__panel-body {
  font-size: var(--lb-text-lg);
  color: var(--lb-text-body);
  max-width: 480px;
  margin: 0 auto var(--lb-space-6);
}

.lb-quiz__gate-form {
  max-width: 420px;
  margin-inline: auto;
  text-align: left;
}

/* Results layout */
.lb-quiz__result-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--lb-space-3);
  margin-bottom: var(--lb-space-8);
}

.lb-quiz__result-band {
  font-family: var(--lb-font-heading);
  font-weight: 600;
  font-size: var(--lb-text-xl);
  padding: var(--lb-space-2) var(--lb-space-6);
  border-radius: var(--lb-radius-full);
}

.lb-quiz__pillars {
  display: flex;
  flex-direction: column;
  gap: var(--lb-space-4);
  text-align: left;
  margin-bottom: var(--lb-space-8);
}

.lb-quiz__pillar-bar-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--lb-space-2) var(--lb-space-4);
  align-items: center;
}

.lb-quiz__pillar-bar-label {
  font-family: var(--lb-font-heading);
  font-weight: 500;
  font-size: var(--lb-text-sm);
  color: var(--lb-navy);
}

.lb-quiz__pillar-bar-value {
  font-family: var(--lb-font-heading);
  font-weight: 700;
  font-size: var(--lb-text-sm);
  color: var(--lb-navy);
}

.lb-quiz__pillar-bar-track {
  grid-column: 1 / -1;
  width: 100%;
  height: 10px;
  background-color: var(--lb-silver-light);
  border-radius: var(--lb-radius-full);
  overflow: hidden;
}

.lb-quiz__pillar-bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--lb-emerald), var(--lb-emerald-light));
  border-radius: var(--lb-radius-full);
  transition: width 1.2s ease;
}

.lb-quiz__recommendations {
  text-align: left;
  background-color: var(--lb-off-white);
  border-radius: var(--lb-radius-lg);
  padding: var(--lb-space-6);
  margin-bottom: var(--lb-space-8);
}

.lb-quiz__recommendations h4 {
  font-family: var(--lb-font-heading);
  font-size: var(--lb-text-base);
  color: var(--lb-navy);
  margin-bottom: var(--lb-space-3);
}

.lb-quiz__recommendations ul {
  display: flex;
  flex-direction: column;
  gap: var(--lb-space-3);
}

.lb-quiz__recommendations li {
  display: flex;
  gap: var(--lb-space-3);
  align-items: flex-start;
  font-size: var(--lb-text-sm);
  color: var(--lb-text-body);
  line-height: var(--lb-leading-normal);
}

.lb-quiz__recommendations li::before {
  content: '\2192';
  color: var(--lb-gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* Score-band color tokens */
.lb-band-color--urgent {
  background-color: var(--lb-red-pale);
  color: var(--lb-red);
}

.lb-band-color--building {
  background-color: var(--lb-amber-pale);
  color: #B45309;
}

.lb-band-color--strong {
  background-color: var(--lb-emerald-pale);
  color: var(--lb-emerald);
}

.lb-band-color--excellent {
  background-color: rgba(12, 18, 34, 0.08);
  color: var(--lb-navy);
}

/* Panel switching */
.lb-quiz__screen[hidden] {
  display: none;
}

/* ==========================================================================
   16. Hero and dashboard preview (shared across pages)
   ========================================================================== */

.lb-hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-block: var(--lb-space-16);
}

.lb-hero__title {
  font-size: clamp(2.25rem, 4.4vw + 1rem, 3.75rem);
}

.lb-hero__subtitle {
  font-size: clamp(1.0625rem, 0.5vw + 1rem, 1.25rem);
}

/* Pull the hero band up so it sits BEHIND the transparent sticky nav.
   The nav (z-index above) then reveals the navy hero, not the page
   background, keeping the white wordmark and links legible at the top. */
.lb-band--hero {
  margin-top: calc(-1 * var(--lb-nav-height));
  position: relative;
  overflow: hidden;
}

.lb-band--hero .lb-hero {
  padding-top: calc(var(--lb-space-16) + var(--lb-nav-height));
}

/* Soft aurora glow for depth and a more fluid feel */
.lb-band--hero::before {
  content: '';
  position: absolute;
  inset: -10%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(38% 48% at 15% 18%, rgba(33, 217, 161, 0.30), transparent 70%),
    radial-gradient(34% 42% at 86% 12%, rgba(18, 184, 134, 0.20), transparent 70%),
    radial-gradient(48% 58% at 80% 88%, rgba(15, 162, 119, 0.34), transparent 72%);
  animation: lb-aurora 18s ease-in-out infinite alternate;
}

.lb-band--hero > * {
  position: relative;
  z-index: 1;
}

.lb-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--lb-space-12);
  align-items: center;
  width: 100%;
}

.lb-hero__title {
  font-family: var(--lb-font-display);
  font-weight: 800;
  line-height: var(--lb-leading-tight);
  letter-spacing: var(--lb-tracking-tight);
  color: var(--lb-white);
  margin-bottom: var(--lb-space-6);
}

.lb-hero__subtitle {
  font-family: var(--lb-font-body);
  font-weight: 400;
  line-height: var(--lb-leading-relaxed);
  color: rgba(255, 255, 255, 0.85);
  max-width: 620px;
  margin-bottom: var(--lb-space-8);
}

.lb-hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--lb-space-4);
  margin-bottom: var(--lb-space-10);
}

.lb-hero__countdown {
  margin-bottom: var(--lb-space-8);
}

/* Social proof avatar cluster */
.lb-social-proof {
  display: flex;
  align-items: center;
  gap: var(--lb-space-3);
}

.lb-avatars {
  display: flex;
}

.lb-avatars__item {
  width: 40px;
  height: 40px;
  border-radius: var(--lb-radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--lb-font-heading);
  font-weight: 600;
  font-size: var(--lb-text-sm);
  color: var(--lb-white);
  background-color: var(--lb-blue);
  border: 2px solid var(--lb-blue-deep);
  margin-left: -10px;
}

.lb-avatars__item:first-child {
  margin-left: 0;
}

.lb-social-proof__text {
  font-family: var(--lb-font-body);
  font-size: var(--lb-text-sm);
  color: rgba(255, 255, 255, 0.85);
}

.lb-social-proof__text strong {
  color: var(--lb-white);
  font-weight: 700;
}

/* Dashboard preview card */
.lb-dashboard-preview {
  position: relative;
  background-color: var(--lb-navy-dark);
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--lb-radius-2xl);
  box-shadow: var(--lb-shadow-xl);
  padding: var(--lb-space-8);
  overflow: hidden;
}

.lb-dashboard-preview__label {
  font-family: var(--lb-font-heading);
  font-weight: 600;
  font-size: var(--lb-text-xs);
  letter-spacing: var(--lb-tracking-wide);
  text-transform: uppercase;
  color: var(--lb-gold);
}

.lb-dashboard-preview__score {
  display: flex;
  align-items: center;
  gap: var(--lb-space-4);
  margin: var(--lb-space-4) 0 var(--lb-space-6);
}

.lb-dashboard-preview__score-meta strong {
  display: block;
  font-family: var(--lb-font-heading);
  font-weight: 600;
  font-size: var(--lb-text-lg);
  color: var(--lb-white);
}

.lb-dashboard-preview__score-meta span {
  font-size: var(--lb-text-sm);
  color: rgba(255, 255, 255, 0.65);
}

.lb-dashboard-preview__bars {
  display: flex;
  flex-direction: column;
  gap: var(--lb-space-4);
}

.lb-mini-bar__top {
  display: flex;
  justify-content: space-between;
  font-size: var(--lb-text-xs);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--lb-space-1);
}

.lb-mini-bar__track {
  height: 8px;
  background-color: rgba(255, 255, 255, 0.12);
  border-radius: var(--lb-radius-full);
  overflow: hidden;
}

.lb-mini-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--lb-gold), var(--lb-gold-light));
  border-radius: var(--lb-radius-full);
}

.lb-dashboard-preview__floats {
  margin-top: var(--lb-space-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--lb-space-3);
}

.lb-mini-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--lb-space-2);
  font-family: var(--lb-font-body);
  font-size: var(--lb-text-xs);
  color: rgba(255, 255, 255, 0.9);
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: var(--lb-space-2) var(--lb-space-3);
  border-radius: var(--lb-radius-full);
}

/* Frosted "coming soon" overlay */
.lb-frosted {
  position: relative;
}

.lb-frosted__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(12, 18, 34, 0.42);
  backdrop-filter: blur(6px);
  border-radius: inherit;
  z-index: 2;
}

.lb-frosted__chip {
  font-family: var(--lb-font-heading);
  font-weight: 600;
  font-size: var(--lb-text-sm);
  color: var(--lb-blue-strong);
  background-color: var(--lb-white);
  padding: var(--lb-space-2) var(--lb-space-4);
  border-radius: var(--lb-radius-full);
  box-shadow: var(--lb-shadow-md);
}

/* ==========================================================================
   17. Trust bar
   ========================================================================== */

.lb-trust-bar {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--lb-space-8);
}

.lb-trust-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--lb-space-1);
  position: relative;
}

.lb-trust-bar__icon {
  width: 60px;
  height: 60px;
  border-radius: var(--lb-radius-lg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--lb-blue-strong);
  background-color: var(--lb-blue-soft);
  margin: 0 auto var(--lb-space-3);
}

.lb-trust-bar__value {
  font-family: var(--lb-font-heading);
  font-weight: 700;
  font-size: var(--lb-text-2xl);
  color: var(--lb-navy);
}

.lb-trust-bar__label {
  font-size: var(--lb-text-sm);
  color: var(--lb-text-light);
}

/* ==========================================================================
   18. Steps (how it works)
   ========================================================================== */

.lb-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--lb-space-8);
  position: relative;
}

.lb-step {
  text-align: center;
  position: relative;
}

.lb-step__num {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--lb-space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--lb-radius-full);
  background-color: var(--lb-blue-strong);
  color: var(--lb-white);
  font-family: var(--lb-font-heading);
  font-weight: 700;
  font-size: var(--lb-text-xl);
}

.lb-step__title {
  font-family: var(--lb-font-heading);
  font-weight: 600;
  font-size: var(--lb-text-lg);
  color: var(--lb-navy);
  margin-bottom: var(--lb-space-2);
}

.lb-step__body {
  font-size: var(--lb-text-sm);
  color: var(--lb-text-body);
  max-width: 280px;
  margin-inline: auto;
}

/* ==========================================================================
   19. Testimonials
   ========================================================================== */

.lb-testimonial {
  background-color: var(--lb-white);
  border-radius: var(--lb-radius-xl);
  box-shadow: var(--lb-shadow-md);
  padding: var(--lb-space-8);
  display: flex;
  flex-direction: column;
  gap: var(--lb-space-4);
}

.lb-testimonial__quote-mark {
  font-family: var(--lb-font-heading);
  font-weight: 800;
  font-size: var(--lb-text-5xl);
  line-height: 0.6;
  color: var(--lb-gold);
}

.lb-testimonial__text {
  font-size: var(--lb-text-base);
  color: var(--lb-text-body);
  line-height: var(--lb-leading-relaxed);
  flex-grow: 1;
}

.lb-testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--lb-space-3);
}

.lb-testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--lb-radius-full);
  background-color: var(--lb-navy);
  color: var(--lb-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--lb-font-heading);
  font-weight: 600;
  font-size: var(--lb-text-sm);
  flex-shrink: 0;
}

.lb-testimonial__name {
  font-family: var(--lb-font-heading);
  font-weight: 600;
  font-size: var(--lb-text-sm);
  color: var(--lb-navy);
}

.lb-testimonial__meta {
  font-size: var(--lb-text-xs);
  color: var(--lb-text-light);
}

/* ==========================================================================
   20. Split layouts and content utilities
   ========================================================================== */

.lb-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--lb-space-12);
  align-items: center;
}

.lb-prose > * + * {
  margin-top: var(--lb-space-4);
}

.lb-prose p {
  font-size: var(--lb-text-base);
  color: var(--lb-text-body);
  line-height: var(--lb-leading-relaxed);
}

.lb-band--navy .lb-prose p,
.lb-band--navy-gradient .lb-prose p,
.lb-band--navy-soft .lb-prose p {
  color: rgba(255, 255, 255, 0.82);
}

.lb-lead {
  font-size: var(--lb-text-xl);
  line-height: var(--lb-leading-relaxed);
  color: var(--lb-text-body);
}

.lb-text-center {
  text-align: center;
}

.lb-mt-6 {
  margin-top: var(--lb-space-6);
}

.lb-mt-8 {
  margin-top: var(--lb-space-8);
}

/* Statement / belief card */
.lb-statement-card {
  background-color: var(--lb-navy);
  color: var(--lb-white);
  border-left: 4px solid var(--lb-gold);
  border-radius: var(--lb-radius-xl);
  padding: var(--lb-space-12);
  box-shadow: var(--lb-shadow-lg);
}

.lb-statement-card__text {
  font-family: var(--lb-font-display);
  font-weight: 600;
  font-size: var(--lb-text-2xl);
  line-height: var(--lb-leading-snug);
  color: var(--lb-white);
}

/* Compliance / disclaimer block */
.lb-compliance {
  background-color: var(--lb-off-white);
  border: 1px solid var(--lb-silver-light);
  border-radius: var(--lb-radius-lg);
  padding: var(--lb-space-6);
  font-size: var(--lb-text-sm);
  color: var(--lb-text-light);
  line-height: var(--lb-leading-relaxed);
}

/* Score range guide */
.lb-range-guide {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--lb-space-3);
}

.lb-range-guide__item {
  display: flex;
  align-items: center;
  gap: var(--lb-space-3);
  padding: var(--lb-space-3) var(--lb-space-4);
  border-radius: var(--lb-radius-md);
  border: 1px solid var(--lb-silver-light);
}

.lb-range-guide__swatch {
  width: 16px;
  height: 16px;
  border-radius: var(--lb-radius-sm);
  flex-shrink: 0;
}

.lb-range-guide__range {
  font-family: var(--lb-font-heading);
  font-weight: 700;
  color: var(--lb-navy);
  min-width: 72px;
}

.lb-range-guide__name {
  font-size: var(--lb-text-sm);
  color: var(--lb-text-body);
}

/* Locked / blurred teaser questions */
.lb-locked-list {
  position: relative;
  margin-top: var(--lb-space-4);
}

.lb-locked-list__items {
  filter: blur(3px);
  opacity: 0.55;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: var(--lb-space-3);
}

.lb-locked-list__item {
  padding: var(--lb-space-4);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--lb-radius-md);
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--lb-text-sm);
}

.lb-locked-list__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--lb-space-2);
  text-align: center;
}

.lb-locked-list__lock {
  font-size: var(--lb-text-3xl);
  color: var(--lb-gold);
}

.lb-locked-list__text {
  font-family: var(--lb-font-heading);
  font-weight: 600;
  color: var(--lb-white);
}

/* Pricing preview tiers */
.lb-pricing {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--lb-space-6);
}

.lb-price-card {
  background-color: var(--lb-white);
  border: 1px solid var(--lb-silver-light);
  border-radius: var(--lb-radius-xl);
  box-shadow: var(--lb-shadow-sm);
  padding: var(--lb-space-6);
  text-align: center;
}

.lb-price-card--featured {
  border: 2px solid var(--lb-gold);
  box-shadow: var(--lb-shadow-md);
}

.lb-price-card__name {
  font-family: var(--lb-font-heading);
  font-weight: 600;
  font-size: var(--lb-text-lg);
  color: var(--lb-navy);
}

.lb-price-card__price {
  font-family: var(--lb-font-heading);
  font-weight: 800;
  font-size: var(--lb-text-3xl);
  color: var(--lb-navy);
  margin: var(--lb-space-2) 0;
}

.lb-price-card__price--blurred {
  filter: blur(6px);
  user-select: none;
}

.lb-price-card__note {
  font-size: var(--lb-text-xs);
  color: var(--lb-text-light);
}

/* Document chips */
.lb-doc-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--lb-space-3);
}

.lb-doc-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--lb-space-2);
  font-family: var(--lb-font-heading);
  font-weight: 500;
  font-size: var(--lb-text-sm);
  color: var(--lb-navy);
  background-color: var(--lb-white);
  border: 1px solid var(--lb-silver);
  padding: var(--lb-space-3) var(--lb-space-4);
  border-radius: var(--lb-radius-md);
}

.lb-doc-chip svg {
  color: var(--lb-blue-strong);
}

/* FAQ */
.lb-faq {
  max-width: 760px;
  margin-inline: auto;
}

.lb-faq__item {
  border-bottom: 1px solid var(--lb-silver-light);
}

.lb-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--lb-space-4);
  text-align: left;
  padding: var(--lb-space-6) 0;
  font-family: var(--lb-font-heading);
  font-weight: 600;
  font-size: var(--lb-text-lg);
  color: var(--lb-navy);
}

.lb-faq__icon {
  flex-shrink: 0;
  font-size: var(--lb-text-2xl);
  color: var(--lb-gold);
  transition: transform var(--lb-transition-base);
  line-height: 1;
}

.lb-faq__question[aria-expanded='true'] .lb-faq__icon {
  transform: rotate(45deg);
}

.lb-faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--lb-transition-slow), padding var(--lb-transition-base);
}

.lb-faq__answer-inner {
  padding-bottom: var(--lb-space-6);
  font-size: var(--lb-text-base);
  color: var(--lb-text-body);
  line-height: var(--lb-leading-relaxed);
}

/* Value prop list with check icons */
.lb-checklist {
  display: flex;
  flex-direction: column;
  gap: var(--lb-space-4);
}

.lb-checklist__item {
  display: flex;
  gap: var(--lb-space-3);
  align-items: flex-start;
  font-size: var(--lb-text-base);
  color: var(--lb-text-body);
  line-height: var(--lb-leading-normal);
}

.lb-checklist__item::before {
  content: '\2713';
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: var(--lb-radius-full);
  background-color: var(--lb-emerald-pale);
  color: var(--lb-emerald);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--lb-text-sm);
}

.lb-band--navy .lb-checklist__item,
.lb-band--navy-gradient .lb-checklist__item {
  color: rgba(255, 255, 255, 0.85);
}

/* Three-column problem layout */
.lb-cols-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--lb-space-8);
}

.lb-col-block__title {
  font-family: var(--lb-font-heading);
  font-weight: 600;
  font-size: var(--lb-text-xl);
  color: var(--lb-navy);
  margin-bottom: var(--lb-space-3);
}

.lb-col-block__body {
  font-size: var(--lb-text-base);
  color: var(--lb-text-body);
  line-height: var(--lb-leading-relaxed);
}

/* Waitlist success state */
.lb-waitlist-success {
  text-align: center;
  padding: var(--lb-space-8);
}

.lb-waitlist-success[hidden] {
  display: none;
}

.lb-waitlist-success__emoji {
  font-size: var(--lb-text-5xl);
  color: var(--lb-green);
  margin-bottom: var(--lb-space-4);
  line-height: 1;
}

.lb-waitlist-success__title {
  font-family: var(--lb-font-heading);
  font-weight: 700;
  font-size: var(--lb-text-3xl);
  color: var(--lb-navy);
  margin-bottom: var(--lb-space-3);
}

.lb-band--navy .lb-waitlist-success__title,
.lb-band--navy-gradient .lb-waitlist-success__title {
  color: var(--lb-white);
}

.lb-waitlist-success__body {
  font-size: var(--lb-text-lg);
  color: var(--lb-text-body);
  max-width: 460px;
  margin-inline: auto;
}

.lb-band--navy .lb-waitlist-success__body,
.lb-band--navy-gradient .lb-waitlist-success__body {
  color: rgba(255, 255, 255, 0.82);
}

/* Button spinner */
.lb-btn__spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: var(--lb-white);
  border-radius: var(--lb-radius-full);
  animation: lb-spin 0.7s linear infinite;
}

/* Waitlist card wrapper (used on dark CTA sections) */
.lb-waitlist-card {
  background-color: var(--lb-white);
  border-radius: var(--lb-radius-2xl);
  box-shadow: var(--lb-shadow-xl);
  padding: var(--lb-space-8);
  max-width: 560px;
}

/* 5-step journey strip */
.lb-journey {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--lb-space-3);
  align-items: center;
}

.lb-journey__step {
  display: inline-flex;
  align-items: center;
  gap: var(--lb-space-2);
  font-family: var(--lb-font-heading);
  font-weight: 600;
  font-size: var(--lb-text-sm);
  color: var(--lb-navy);
  background-color: var(--lb-white);
  border: 1px solid var(--lb-silver-light);
  box-shadow: var(--lb-shadow-sm);
  padding: var(--lb-space-3) var(--lb-space-4);
  border-radius: var(--lb-radius-full);
}

.lb-journey__arrow {
  color: var(--lb-gold);
  font-weight: 700;
}

/* ==========================================================================
   21. Responsive breakpoints
   Mobile-first. Enhancements layer up at 768px, 1024px, 1280px.
   ========================================================================== */

@media (min-width: 768px) {
  .lb-grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .lb-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .lb-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .lb-form-row {
    grid-template-columns: 1fr 1fr;
  }

  .lb-trust-bar {
    grid-template-columns: repeat(4, 1fr);
  }

  .lb-trust-bar__item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: calc(var(--lb-space-8) / -2);
    top: 50%;
    transform: translateY(-50%);
    height: 56px;
    width: 1px;
    background-color: var(--lb-silver-light);
  }

  .lb-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .lb-pricing {
    grid-template-columns: repeat(4, 1fr);
  }

  .lb-range-guide {
    grid-template-columns: repeat(2, 1fr);
  }

  .lb-footer__top {
    grid-template-columns: 1.4fr 2fr;
  }

  .lb-footer__cols {
    grid-template-columns: repeat(4, 1fr);
  }

  .lb-footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .lb-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Gold dashed connectors between the three steps */
  .lb-steps--connected .lb-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 32px;
    left: calc(50% + 40px);
    right: calc(-50% + 40px);
    border-top: 2px dashed var(--lb-gold);
  }

  .lb-statement-card__text {
    font-size: var(--lb-text-3xl);
  }
}

@media (min-width: 1024px) {
  .lb-nav__links {
    display: flex;
  }

  .lb-nav__actions {
    display: flex;
  }

  .lb-nav__toggle {
    display: none;
  }

  .lb-hero__grid--split {
    grid-template-columns: 6fr 4fr;
  }

  .lb-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .lb-grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .lb-split {
    grid-template-columns: 1fr 1fr;
  }

  .lb-split--copy-wide {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

@media (min-width: 1280px) {
  .lb-container,
  .lb-section {
    padding-inline: var(--lb-space-8);
  }
}

/* ==========================================================================
   22. Library icons (Lucide) and brand logo mark
   ========================================================================== */

/* Lucide renders inline <svg class="lucide">. Size it to the surrounding
   text and inherit color so each icon lives cleanly inside its chip or label. */
.lucide {
  width: 1em;
  height: 1em;
  stroke-width: 2;
  vertical-align: -0.125em;
  flex-shrink: 0;
}

.lb-journey__step svg {
  width: 18px;
  height: 18px;
  color: var(--lb-blue-strong);
}

.lb-pillar-card__name svg {
  color: var(--lb-blue-strong);
}

.lb-feature-card__icon--gold svg {
  color: var(--lb-emerald-glow);
}

/* Brand logo mark: a custom shield, rendered as raw SVG (not Lucide) so it is
   always visible even before the icon library initializes. */
.lb-logo-mark {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  color: var(--lb-white);
  display: inline-flex;
}

.lb-logo-mark svg {
  width: 100%;
  height: 100%;
}

/* Brand logo image (full lockup) used in nav, mobile drawer, and footer.
   Swap the file at images/logo.svg to update all of them at once. */
.lb-nav__logo {
  height: 40px;
  width: auto;
  display: block;
}

.lb-footer__logo {
  height: 34px;
  width: auto;
  display: block;
  margin-bottom: var(--lb-space-2);
}

/* Slightly smaller in the mobile drawer so it sits comfortably next to the close button */
.lb-nav__drawer-head .lb-nav__logo {
  height: 34px;
  max-width: calc(100% - 56px);
  object-fit: contain;
  object-position: left center;
}

/* ==========================================================================
   23. CTA panel and fluid interactions
   ========================================================================== */

/* Centered call-to-action panel (hosted-quiz link, investor callouts) */
.lb-cta-panel {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
  background: var(--lb-lavender);
  border: 1px solid var(--lb-silver-light);
  border-radius: var(--lb-radius-2xl);
  padding: clamp(2rem, 5vw, 4rem);
  box-shadow: var(--lb-shadow-md);
}

.lb-cta-panel .lb-kicker {
  margin-bottom: var(--lb-space-3);
}

.lb-cta-panel__title {
  font-size: clamp(1.6rem, 2.6vw + 1rem, 2.5rem);
  margin-bottom: var(--lb-space-4);
}

.lb-cta-panel__body {
  font-size: var(--lb-text-lg);
  color: var(--lb-text-body);
  max-width: 560px;
  margin: 0 auto var(--lb-space-8);
  line-height: var(--lb-leading-relaxed);
}

.lb-cta-panel .lb-form-note {
  margin-top: var(--lb-space-4);
}

/* More fluid card interactions */
.lb-pillar-card,
.lb-testimonial,
.lb-price-card {
  transition: transform var(--lb-transition-base), box-shadow var(--lb-transition-base);
}

.lb-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--lb-shadow-lg), 0 0 0 1px rgba(18, 184, 134, 0.18);
}

.lb-pillar-card:hover,
.lb-price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lb-shadow-md);
}

/* Micro-interactions */
.lb-feature-card__icon,
.lb-pillar-row__icon,
.lb-trust-bar__icon {
  transition: transform var(--lb-transition-base), background-color var(--lb-transition-base);
}

.lb-feature-card:hover .lb-feature-card__icon {
  transform: translateY(-2px) scale(1.06);
}

.lb-trust-bar__item:hover .lb-trust-bar__icon {
  transform: translateY(-3px);
}

.lb-btn svg {
  transition: transform var(--lb-transition-base);
}

.lb-btn:hover svg {
  transform: translate(2px, -2px);
}

/* Scroll progress bar (injected by main.js) */
.lb-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: var(--lb-z-progress);
  background: linear-gradient(90deg, var(--lb-emerald-strong), var(--lb-emerald-glow));
  box-shadow: 0 0 12px rgba(33, 217, 161, 0.6);
  transition: width 80ms linear;
  pointer-events: none;
}

/* ==========================================================================
   24. LQ Score gauge / dial (lq-score.html)
   ========================================================================== */

.lb-gauge-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--lb-space-6);
}

.lb-gauge {
  position: relative;
  width: min(360px, 82vw);
  aspect-ratio: 1 / 1;
}

.lb-gauge__svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.lb-gauge__track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 14;
  stroke-linecap: round;
}

.lb-gauge__fill {
  fill: none;
  stroke: url(#lqGaugeGrad);
  stroke-width: 14;
  stroke-linecap: round;
  filter: drop-shadow(0 0 8px rgba(33, 217, 161, 0.45));
  transition: stroke-dashoffset 950ms var(--lb-ease-out);
}

.lb-gauge__needle {
  transform-box: view-box;
  transform-origin: 130px 130px;
  transition: transform 950ms var(--lb-ease-out);
}

.lb-gauge__hub {
  fill: var(--lb-emerald-glow);
}

.lb-gauge__center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.lb-gauge__num {
  font-family: var(--lb-font-display);
  font-weight: 800;
  font-size: clamp(3rem, 8vw, 4.75rem);
  line-height: 1;
  color: var(--lb-white);
  font-variant-numeric: tabular-nums;
}

.lb-gauge__band {
  margin-top: var(--lb-space-3);
  font-family: var(--lb-font-heading);
  font-weight: 600;
  font-size: var(--lb-text-xs);
  letter-spacing: var(--lb-tracking-wide);
  text-transform: uppercase;
  padding: var(--lb-space-1) var(--lb-space-3);
  border-radius: var(--lb-radius-full);
}

.lb-gauge-hint {
  font-family: var(--lb-font-heading);
  font-weight: 600;
  font-size: var(--lb-text-xs);
  letter-spacing: var(--lb-tracking-wide);
  text-transform: uppercase;
  color: var(--lb-emerald-glow);
}

.lb-gauge-factors {
  display: flex;
  flex-wrap: wrap;
  gap: var(--lb-space-3);
  justify-content: center;
  max-width: 560px;
}

.lb-factor {
  display: inline-flex;
  align-items: center;
  gap: var(--lb-space-2);
  font-family: var(--lb-font-heading);
  font-weight: 500;
  font-size: var(--lb-text-sm);
  padding: var(--lb-space-2) var(--lb-space-4);
  border-radius: var(--lb-radius-full);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.04);
  transition: color var(--lb-transition-base), border-color var(--lb-transition-base),
    background-color var(--lb-transition-base), transform var(--lb-transition-fast);
  cursor: pointer;
}

.lb-factor:hover {
  border-color: var(--lb-emerald-glow);
  color: var(--lb-white);
  transform: translateY(-1px);
}

.lb-factor[aria-pressed='true'] {
  background-color: var(--lb-emerald);
  border-color: var(--lb-emerald);
  color: var(--lb-white);
}

.lb-factor__pts {
  font-weight: 700;
  opacity: 0.85;
}
