/**
 * Global shell + landing (single entry in `nuxt.config` `css`).
 * Header/footer live here (not Vue scoped) so they are not deferred to a late Vite chunk.
 */
/**
 * Prevent FOUC on lazy-loaded page content.
 * Header/footer styles are globally loaded and paint immediately.
 * Page content (landing-page / content-page) fades in after Nuxt mounts,
 * which is when the per-page CSS chunks have been applied.
 *
 * SSR output is fully visible (crawlers see all content).
 *
 * `data-nuxt-ready` is set on <html> by app.vue on mount.
 */
html:not([data-nuxt-ready]) .landing-page,
html:not([data-nuxt-ready]) .content-page {
  opacity: 0;
}

/*
 * App loader: full-screen spinner shown while Nuxt mounts.
 * Hidden once data-nuxt-ready is set on <html> by app.vue onMounted.
 * The #app-loader div is rendered by app.vue so it ships in the SSR HTML
 * and appears immediately.
 */
.app-loader {
  position: fixed;
  inset: 0;
  z-index: 2147483600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.35s ease-out;
}

html[data-nuxt-ready] .app-loader {
  opacity: 0;
  pointer-events: none;
}

.app-loader-spinner {
  width: 2rem;
  height: 2rem;
  border: 2.5px solid rgba(122, 122, 122, 0.575);
  border-top-color: #000000a9;
  border-radius: 50%;
  animation: app-loader-spin 0.7s linear infinite;
}

@keyframes app-loader-spin {
  to {
    transform: rotate(360deg);
  }
}

/** Stagger fade-in once after mount. Opacity only (no transform) so the
 * compositor stays calm while the questionnaire is used.
 *
 * Tune via --hero-stagger-start (delay of first child) and --hero-stagger-gap
 * (additional delay per subsequent child). */
@keyframes hero-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

:root {
  --hero-stagger-start: 0.3s;
  --hero-stagger-gap: 0.06s;
}

html[data-nuxt-ready] .landing-page .l-hero > * {
  animation: hero-fade-in 0.45s ease both;
}

html[data-nuxt-ready] .landing-page .l-hero > *:nth-child(1)  { animation-delay: calc(var(--hero-stagger-start) + 0  * var(--hero-stagger-gap)); }
html[data-nuxt-ready] .landing-page .l-hero > *:nth-child(2)  { animation-delay: calc(var(--hero-stagger-start) + 1  * var(--hero-stagger-gap)); }
html[data-nuxt-ready] .landing-page .l-hero > *:nth-child(3)  { animation-delay: calc(var(--hero-stagger-start) + 2  * var(--hero-stagger-gap)); }
html[data-nuxt-ready] .landing-page .l-hero > *:nth-child(4)  { animation-delay: calc(var(--hero-stagger-start) + 3  * var(--hero-stagger-gap)); }
html[data-nuxt-ready] .landing-page .l-hero > *:nth-child(5)  { animation-delay: calc(var(--hero-stagger-start) + 4  * var(--hero-stagger-gap)); }
html[data-nuxt-ready] .landing-page .l-hero > *:nth-child(6)  { animation-delay: calc(var(--hero-stagger-start) + 5  * var(--hero-stagger-gap)); }
html[data-nuxt-ready] .landing-page .l-hero > *:nth-child(7)  { animation-delay: calc(var(--hero-stagger-start) + 6  * var(--hero-stagger-gap)); }
html[data-nuxt-ready] .landing-page .l-hero > *:nth-child(8)  { animation-delay: calc(var(--hero-stagger-start) + 7  * var(--hero-stagger-gap)); }
html[data-nuxt-ready] .landing-page .l-hero > *:nth-child(9)  { animation-delay: calc(var(--hero-stagger-start) + 8  * var(--hero-stagger-gap)); }
html[data-nuxt-ready] .landing-page .l-hero > *:nth-child(10) { animation-delay: calc(var(--hero-stagger-start) + 9  * var(--hero-stagger-gap)); }
html[data-nuxt-ready] .landing-page .l-hero > *:nth-child(11) { animation-delay: calc(var(--hero-stagger-start) + 10 * var(--hero-stagger-gap)); }
html[data-nuxt-ready] .landing-page .l-hero > *:nth-child(12) { animation-delay: calc(var(--hero-stagger-start) + 11 * var(--hero-stagger-gap)); }
html[data-nuxt-ready] .landing-page .l-hero > *:nth-child(13) { animation-delay: calc(var(--hero-stagger-start) + 12 * var(--hero-stagger-gap)); }
html[data-nuxt-ready] .landing-page .l-hero > *:nth-child(14) { animation-delay: calc(var(--hero-stagger-start) + 13 * var(--hero-stagger-gap)); }
html[data-nuxt-ready] .landing-page .l-hero > *:nth-child(15) { animation-delay: calc(var(--hero-stagger-start) + 14 * var(--hero-stagger-gap)); }
html[data-nuxt-ready] .landing-page .l-hero > *:nth-child(16) { animation-delay: calc(var(--hero-stagger-start) + 15 * var(--hero-stagger-gap)); }

/**
 * First-load intro animations: reveal header from right and landing from left.
 * Only fires once per tab session (controlled by data-first-load on <html>).
 * Crawlers see the static SSR output (no attribute) so no animation runs.
 */

@keyframes header-reveal {
  from {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
    /* filter: blur(14px); */
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 -10px 0);
    /* filter: blur(0); */
  }
}

@keyframes landing-reveal {
  from {
    opacity: 1;
    clip-path: inset(0 0 100% 0);
    /* clip-path: inset(0px 0px 0px 100%); */
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    /* clip-path: inset(0px 0px 0px 0%); */
  }
}

html[data-first-load] .site-header {
  animation: header-reveal 0.1s ease-out both;
}

html[data-first-load] .landing-page {
  animation: landing-reveal 0.2s 0.2s ease-in both;
}

@media (prefers-reduced-motion: reduce) {
  html[data-first-load] .site-header,
  html[data-first-load] .landing-page,
  html[data-nuxt-ready] .landing-page .l-hero > * {
    animation: none !important;
    opacity: 1 !important;
    clip-path: none !important;
  }

  .app-loader-spinner {
    animation: none !important;
  }
}

html,
body {
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

html {
  --font-sans-ui: system-ui, -apple-system, sans-serif;
  --font-sans-body: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial,
    sans-serif;
  --header-bg: #1b3a5c;
  --header-font: #ffffff;
  --bg-colour: #f8f6f1;
  background: var(--bg-colour);
}

body {
  background: var(--bg-colour);
  transition: opacity 0.15s ease;
}

.landing-page,
.content-page {
  transition: opacity 0.15s ease;
}

/* --- SiteHeader (was scoped) --- */
.site-header {
  background: var(--header-bg);
  box-shadow: 0 0 10px #00000010, 0 0 10px #ffffff30;
  z-index: 1;
  position: relative;
}
.site-header-nav {
  padding: 18px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  flex-shrink: 0;
  color: inherit;
}
.site-logo-image {
  display: block;
  width: auto;
  max-width: 200px;
  height: 43px;
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
}
.site-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.site-logo-brand {
  color: var(--header-font);
  font-family: var(--font-sans-ui);
  font-size: 25px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.1;
}
.site-logo-tag {
  color: #c9a84c;
  font-family: var(--font-sans-ui);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.25em;
  margin-top: 4px;
  text-transform: uppercase;
  line-height: 1.1;
}
.site-nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-nav-links a {
  color: var(--header-font);
  opacity: 0.7;
  text-decoration: none;
  font-family: var(--font-sans-ui);
  font-size: 18px;
  font-weight: 600;
  top: -3px;
  position: relative;
}
.site-nav-links a:hover {
  color: var(--header-font);
  opacity: 1;
}
.site-user-trigger {
  width: 2rem;
  height: 2rem;
  border: none;
  background: transparent;
  color: var(--header-font);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}
.site-user-trigger:hover {
  color: var(--header-font);
}
.site-user-trigger:focus-visible {
  outline: 2px solid rgba(201, 168, 76, 0.85);
  outline-offset: 2px;
}
.sign-in-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: color-mix(in srgb, var(--header-bg, #1b3a5c) 55%, transparent);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-sizing: border-box;
}
.sign-in-overlay[hidden] {
  display: none;
}
.sign-in-modal {
  position: relative;
  background: #fff;
  border-radius: 16px;
  max-width: 420px;
  width: 100%;
  padding: 28px 24px 24px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
}
.sign-in-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: #f0f4f8;
  color: var(--primary-colour, #1b3a5c);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sign-in-close:hover {
  background: color-mix(in srgb, var(--secondary-colour, #c9a84c) 15%, transparent);
}
.sign-in-title {
  margin: 0 0 10px;
  font-family: var(--font-sans-ui);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-colour, #1b3a5c);
}
.sign-in-intro {
  margin: 0 0 18px;
  font-family: var(--font-sans-ui);
  font-size: 1rem;
  line-height: 1.5;
  color: #475569;
}
.sign-in-err {
  color: #b91c1c;
  font-size: 0.95rem;
  margin: 0 0 12px;
}
.sign-in-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 6px;
  font-family: var(--font-sans-ui);
}
.sign-in-input {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  border: 2px solid #e2e8f0;
  border-radius: var(--border-radius, 10px);
  font-size: 1rem;
  margin-bottom: 16px;
  font-family: var(--font-sans-ui);
}
.sign-in-input:focus {
  outline: none;
  border-color: var(--primary-colour, #1b3a5c);
}
.sign-in-submit {
  width: 100%;
  padding: 14px 16px;
  border: none;
  border-radius: var(--border-radius, 9999px);
  background: var(--secondary-colour, #c9a84c);
  color: var(--secondary-contrast, #1b3a5c);
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  font-family: var(--font-sans-ui);
}
.sign-in-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}
@media (max-width: 768px) {
  .site-header-nav {
    padding: 14px 20px;
  }
  .site-logo-image {
    height: 43px;
  }
  .how-it-works-link {
    display: none;
  }
  .site-nav-links {
    gap: 0;
  }
  .site-nav-links a {
    font-size: 16px;
  }
}

/* --- SiteFooter (was scoped) --- */
.site-footer {
  border-top: 1px solid #e5e0d8;
  background: #fff;
  padding: 18px 48px;
  ;
}
.site-footer-inner {
  margin: 0 auto;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: flex-start;
}
.site-footer-title {
  margin: 0;
  color: #111827;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-sans-body);
  text-decoration: none;
  cursor: default;
}
.site-footer-copy {
  margin: 0.35rem 0 0;
  max-width: 38rem;
  color: #6b7280;
  line-height: 1.45;
  font-size: 0.92rem;
  font-family: var(--font-sans-body);
}
.site-footer-links {
  display: flex;
  gap: 0.8rem 1rem;
  flex-wrap: wrap;
  align-items: center;
  font-family: var(--font-sans-body);
  font-size: 0.92rem;
}
.site-footer-links a {
  color: #1b3a5c;
  text-decoration: none;
  font-weight: 600;
}
.site-footer-links a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.site-footer-links .footer-link-agents {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  padding: 0.4rem 0.85rem;
  border-radius: var(--border-radius, 8px);
  background: var(--primary-colour, #1b3a5c);
  color: var(--primary-contrast, #ffffff);
  font-weight: 700;
  text-decoration: none;
}
.site-footer-links .footer-link-agents:hover {
  text-decoration: none;
  filter: brightness(1.08);
}
.whitelabel .site-footer-links {
  min-width: auto;
}
.site-footer-meta {
  max-width: 980px;
  margin: 18px 0;
  color: #6b7280;
  font-size: 0.82rem;
  font-family: var(--font-sans-body);
}
@media (max-width: 740px) {
  .site-footer-inner {
    flex-direction: column;
  }
  .site-footer-links {
    justify-content: flex-start;
  }
}

/* Marbella landing - aligned with docs/designs/01-landing.html */
.landing-page * {
  box-sizing: border-box;
}

.landing-page {
  --navy: #1b3a5c;
  --gold: #c9a84c;
  --light: #f8f6f1;
  --white: #ffffff;
  --text: #2c2c2c;
  --muted: #6b7280;
  --border: #e5e0d8;
  --success: #2e7d52;

  /** Whitelabel-overridable semantic variables */
  /* --bg-colour: var(--white); */
  --bg-colour-light: color-mix(in srgb, var(--bg-colour) 80%, white);
  --font-colour: var(--text);
  --font-colour-light: color-mix(in srgb, var(--font-colour) 80%, transparent);
  --font-colour-lighter: color-mix(in srgb, var(--font-colour) 65%, transparent);
  --header-bg: var(--navy);
  --header-font: var(--white);
  --hero-bg: var(--navy);
  --hero-font: var(--white);
  --primary-colour: var(--navy);
  --secondary-colour: var(--gold);
  --primary-contrast: var(--white);
  --secondary-contrast: var(--navy);
  --font-title: "Cormorant Garamond", Georgia, serif;

  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  background: var(--bg-colour);
  color: var(--font-colour);
  min-height: 100vh;
}

.landing-page .ui {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
}

.landing-page nav.l-nav {
  background: var(--header-bg);
  padding: 18px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.landing-page .l-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  flex-shrink: 0;
  color: inherit;
}

.landing-page .l-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.landing-page .l-logo-brand {
  color: var(--header-font);
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 25px;
  font-weight: bold;
  letter-spacing: 0.12em;
  line-height: 1.1;
}

.landing-page .l-logo-tag {
  color: var(--gold);
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0.25em;
  margin-top: 4px;
  text-transform: uppercase;
  line-height: 1.1;
}

.landing-page .l-nav-links {
  display: flex;
}

.landing-page .l-nav-links a {
  color: color-mix(in srgb, var(--header-font) 70%, transparent);
  text-decoration: none;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 18px;
  font-weight: bold;
  margin-left: 32px;
}

.landing-page .l-nav-links a:hover {
  color: var(--header-font);
}

.landing-page .l-hero {
  background: var(--hero-bg);
  padding: 80px 48px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 10px #00000021;
}

.landing-page .l-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
}

.landing-page .l-hero-badge {
  display: inline-block;
  position: relative;
  z-index: 1;
  background: rgba(201, 168, 76, 0.2);
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--gold);
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  padding: 8px 18px 4px 22px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.landing-page .l-hero-badge div{
  display: inline-block;
  vertical-align: middle;
  padding-left: 5px;
}

.landing-page .l-hero h1 {
  position: relative;
  z-index: 1;
  color: var(--hero-font);
  font-family: var(--font-title);
  font-size: 50px;
  font-weight: 400;
  max-width: 680px;
  margin: 0 auto 10px;
  line-height: 1em;
  margin-bottom: .25em;
}
.landing-page .l-hero h1 div {
  display: inline-block;
  vertical-align: middle;
}

.landing-page .l-hero h1 em {
  opacity: 0.70;
  font-style: normal;
}

.landing-page .l-hero p {
  position: relative;
  z-index: 1;
  color: var(--hero-font);
  opacity: 0.80;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 18px;
  max-width: 670px;
  margin: 0 auto;
  line-height: 1.6;
}

.landing-page .l-hero p + p {
  /* margin-top: 20px; */
}

.landing-page .l-hero ul {
  width: auto;
  display: inline-block;
  position: relative;
  z-index: 1;
  list-style: none;
  padding-left: 0;
  margin: 12px auto 0;
}

.landing-page .l-hero li {
  position: relative;
  z-index: 1;
  color: var(--hero-font);
  opacity: 0.80;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 18px;
  max-width: 670px;
  margin: 0 auto 10px;
  text-align: left;
  line-height: 1;
  padding-left: 30px;
}

.landing-page .l-hero li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--success);
  font-weight: bold;
}

.landing-page .l-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 1rem;
}

.landing-page .content-body .l-list {
  margin-left: 0;
}

.landing-page .l-list li {
  position: relative;
  padding-left: 30px;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.landing-page .l-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--success);
  font-weight: bold;
}

.landing-page .l-hero-video-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 16px auto 0;
  position: relative;
  z-index: 1;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.landing-page .l-hero-video-cta:hover .l-hero-video-text {
  color: #ffffff;
}

.landing-page .l-hero-video-cta:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 8px;
}

.landing-page .l-youtube-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  color: #ff0033;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.landing-page .l-hero-video-cta:hover .l-youtube-icon-btn,
.landing-page .l-hero-video-cta:focus-visible .l-youtube-icon-btn {
  opacity: 0.88;
  transform: scale(1.05);
}

.landing-page .l-youtube-icon {
  display: block;
  width: 36px;
  height: 27px;
  color: #ff0033;
  position: relative;
  top: 4px;
}

.landing-page .l-youtube-icon__play {
  transform: translateY(-1px);
}

.landing-page .l-video-avatar {
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

.landing-page .l-hero-video-text {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 17px;
  font-weight: bold;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.95);
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
  align-self: center;
}

.landing-page .l-hero-video-text:hover {
  color: #ffffff;
}

.landing-page .l-hero-video-text:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.l-video-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(4px);
}

.l-video-modal[hidden] {
  display: none;
}

.l-video-modal__panel {
  position: relative;
  width: min(360px, 92vw);
  max-height: min(88vh, 720px);
  border-radius: 16px;
  overflow: hidden;
  background: #0b1220;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.l-video-modal__title {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 2;
  margin: 0;
  padding: 12px 52px 10px 16px;
  font-size: 15px;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.92);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent);
  pointer-events: none;
}

.l-video-modal__close {
  position: absolute;
  top: 6px;
  right: 8px;
  z-index: 3;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}

.l-video-modal__close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.l-video-modal__close:focus-visible {
  outline: 2px solid #c9a84c;
  outline-offset: 2px;
}

.l-video-modal__frame {
  aspect-ratio: 9 / 16;
  width: 100%;
  background: #000;
}

.l-video-modal__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.landing-page .l-trust-bar {
  background: var(--bg-colour);
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
  padding: 18px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.landing-page .l-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 18px;
  color: var(--font-colour-light);
}

.landing-page .l-trust-item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  line-height: 0;
  color: var(--secondary-colour);
}

.landing-page .l-questionnaire-wrap {
  max-width: 780px;
  margin: 40px auto 60px;
  padding: 0 24px;
  position: relative;
}

.landing-page .l-intro-video {
  margin-bottom: 20px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
  background: #0f172a;
}

.landing-page .l-video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
}

.landing-page .l-video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.landing-page .l-questionnaire-card {
  background: var(--bg-colour);
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.landing-page .l-card-header {
  background: var(--primary-colour);
  padding: 20px 32px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}

.landing-page .l-card-header .l-card-title {
  color: var(--primary-contrast);
  font-size: 22px;
  font-weight: bold;
  font-family: system-ui, -apple-system, sans-serif;
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
  line-height: 1.25;
}

.landing-page .l-card-body {
  padding: 32px;
  min-height: 440px;
  background: var(--bg-colour);
  color: var(--font-colour);
}

.landing-page .l-progress-row {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
}

.landing-page .l-progress-dot {
  height: 4px;
  flex: 1;
  border-radius: 2px;
  background: var(--border);
}

.landing-page .l-progress-dot.active {
  background: var(--secondary-colour);
}

.landing-page .l-progress-dot.done {
  background: var(--secondary-colour);
}

/* Question steps: opacity-only, in-place (no remount / no transform).
 * Transform + :key remounts were locking the Windows compositor after a
 * few answers. */
@keyframes l-q-in {
  from {
    opacity: 0.25;
  }
  to {
    opacity: 1;
  }
}

.landing-page .l-question-block.l-q-anim {
  animation: l-q-in 0.2s ease;
}

@media (prefers-reduced-motion: reduce) {
  .landing-page .l-question-block.l-q-anim {
    animation: none;
  }
}

.landing-page .l-question-label {
}

.landing-page .l-question-text {
  font-size: 31px;
  font-weight: bold;
  color: var(--font-colour);
  margin-bottom: 24px;
  line-height: 1.35;
}

.landing-page .l-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 8px;
  align-items: stretch;
}

.landing-page .l-option-btn {
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 16px 20px;
  background: var(--bg-colour-light);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.15s ease, background-color 0.15s ease;
  font: inherit;
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-self: stretch;
}

.landing-page .l-option-btn:hover {
  border-color: var(--secondary-colour);
}

.landing-page .l-option-btn.selected {
  border-color: var(--secondary-colour);
  background: color-mix(in srgb, var(--secondary-colour) 8%, var(--white));
}

.landing-page .l-option-btn.selected::after {
  content: "✓";
  float: right;
  color: var(--secondary-colour);
  font-weight: bold;
}

.landing-page .l-option-label {
  font-size: 26px;
  font-weight: bold;
  color: var(--font-colour-light);
  margin-bottom: 3px;
}

.landing-page .l-option-sub {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 18px;
  color: var(--font-colour-lighter);
}

.landing-page .l-cta-row {
  background: var(--bg-colour-light);
  border-top: 1px solid var(--border);
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
}


.landing-page .l-cta-row .l-btn-primary {
  margin: 0;
  background: var(--secondary-colour);
  color: var(--secondary-contrast);
}

.landing-page p.l-smaller-text {
  font-size: 1.2em;
}
.landing-page .l-cta-note {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 18px;
  color: var(--font-colour-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  line-height: 1.4;
}

.landing-page .l-cta-note strong {
  color: var(--font-colour);
}

.landing-page .l-hero-subtext {
  margin-top: 5px;
}
.landing-page .l-hero-subtext p {
  opacity: 0.7 !important;
  font-size: 0.95em;
}

.landing-page .l-btn-primary {
  background: var(--primary-colour);
  color: var(--primary-contrast);
  border: none;
  border-radius: var(--border-radius, 9999px);
  padding: 16px 36px;
  font-size: 22px;
  font-weight: bold;
  font-family: system-ui, -apple-system, sans-serif;
  cursor: pointer;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.35);
  white-space: nowrap;
  flex-shrink: 0;
  display: block;
  position: relative;
  z-index: 9;
  text-decoration: none;
}

.landing-page .l-hero .l-btn-primary {
  margin: 14px auto 0;
  background: var(--secondary-colour);
  color: var(--secondary-contrast);
}

.landing-page .l-hero p + .l-btn-primary {
  margin-top: 20px;
}

.landing-page .l-btn-primary:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}

.landing-page .l-how-section {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px 60px;
}

.landing-page .l-how-cta {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px 100px;
  text-align: center;
}

.landing-page .l-how-cta .l-btn-primary {
  display: inline-block;
  margin: 0 auto;
  background: var(--secondary-colour);
  color: var(--secondary-contrast);
  text-decoration: none;
}

.landing-page .l-how-section .l-section-label,
.landing-page .l-how-section .l-section-title {
  text-align: center;
}

.landing-page .l-section-label,
.landing-page .l-question-label {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary-colour);
  margin-bottom: 12px;
  opacity: 0.65;
}

.landing-page .l-section-title {
  font-size: 22px;
  font-weight: bold;
  font-family: system-ui, -apple-system, sans-serif;
  color: var(--font-colour);
  margin-bottom: 40px;
  opacity: 0.75;
}

.landing-page .l-steps-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.landing-page .l-step-card {
  text-align: center;
}

.landing-page .l-step-num {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #16324F;
  color: #fff;
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 48px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 14px rgba(22, 50, 79, 0.18);
  margin: 0 auto 14px;
}

.landing-page .l-step-title {
  font-size: 22px;
  font-weight: bold;
  font-family: system-ui, -apple-system, sans-serif;
  color: var(--font-colour);
  margin-bottom: 8px;
}

.landing-page .l-step-desc {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 18px;
  color: var(--font-colour-light);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .landing-page .l-trust-bar {
    flex-wrap: wrap;
    gap: 18px 20px;
    padding: 18px 28px;
    justify-content: center;
  }
  .landing-page .l-hero h1 {
    font-size: 65px;
  }
  .landing-page .l-hero {
    padding: 60px 32px 72px;
  }
}

/* ── Agents page (/agents) ─────────────────────────── */

.landing-page .agents-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 56px 24px;
}

.landing-page .agents-section--white {
  background: var(--white);
}

.landing-page .agents-section--center {
  text-align: center;
}

.landing-page .agents-section--center .content-body {
  margin-left: auto;
  margin-right: auto;
}

.landing-page .agents-section--center .blog-cta {
  margin-left: auto;
  margin-right: auto;
}

.landing-page .blog-cta__link {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font-family: inherit;
  font-size: 1.38rem;
  font-weight: bold;
  color: #c9a84c;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.landing-page .blog-cta__link:hover {
  color: #fff;
}

.landing-page .blog-cta__link:focus-visible {
  outline: 2px solid #c9a84c;
  outline-offset: 3px;
  border-radius: 4px;
}

/* Agents page: use Georgia as the serif base instead of Cormorant Garamond */
.landing-page.agents-page {
  font-family: Georgia, serif;
  background: #efefef;
}
.landing-page.agents-page h1 {
  font-family: Georgia, serif;
}

.landing-page .agents-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.landing-page .agents-split--reverse .agents-split__media {
  order: -1;
}

.landing-page .agents-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.landing-page .agents-cards .content-card {
  border: none;
  background: transparent;
  padding: 0;
}

.landing-page .agents-amplify-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.landing-page .agents-contact-form {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  text-align: left;
}

.landing-page .agents-contact-form__row {
  margin-bottom: 1rem;
}

.landing-page .agents-contact-form__label {
  display: block;
  font-family: system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #16324f;
  margin-bottom: 0.35rem;
}

.landing-page .agents-contact-form__optional {
  font-weight: 400;
  color: #7c776c;
}

.landing-page .agents-contact-form__input {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #d8d2c4;
  border-radius: 8px;
  padding: 0.7rem 0.85rem;
  font-size: 1rem;
  font-family: system-ui, sans-serif;
  color: #16324f;
  background: #fff;
}

.landing-page .agents-contact-form__textarea {
  resize: vertical;
  min-height: 6rem;
}

.landing-page .agents-contact-form__input:focus {
  outline: 2px solid #c9a84c;
  outline-offset: 1px;
  border-color: #c9a84c;
}

.landing-page .agents-contact-form__honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.landing-page .agents-contact-form__err {
  color: #b42318;
  font-family: system-ui, sans-serif;
  font-size: 0.9rem;
  margin: 0 0 0.75rem;
}

.landing-page .agents-contact-form__ok {
  color: #2e7d5b;
  font-family: system-ui, sans-serif;
  font-size: 0.95rem;
  margin: 0 0 0.75rem;
}

.landing-page .agents-contact-form .l-btn-primary {
  width: 100%;
  margin-top: 0.25rem;
}

.landing-page .agents-split__media {
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.landing-page p.agents-hero-area {
  position: relative;
  z-index: 1;
  margin: 0.65rem auto 1rem;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 18px;
  color: var(--hero-font);
  opacity: 0.75;
}

.landing-page p.agents-hero-tagline {
  position: relative;
  z-index: 1;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 17px;
  font-weight: bold;
  color: var(--hero-font);
  opacity: 0.9;
  margin: 1.25rem auto 0;
}

@media (max-width: 768px) {
  .landing-page .agents-split,
  .landing-page .agents-split--reverse .agents-split__media {
    grid-template-columns: 1fr;
    order: unset;
  }

  .landing-page .agents-split--reverse .agents-split__text {
    order: unset;
  }

  .landing-page .agents-split__text {
    order: -1;
  }

  .landing-page .agents-cards {
    grid-template-columns: 1fr;
  }

  .landing-page .agents-amplify-grid {
    grid-template-columns: 1fr;
  }

  .landing-page .agents-section {
    padding: 40px 20px;
  }
}

@media (max-width: 768px) {
  .landing-page nav.l-nav {
    padding: 14px 20px;
  }
  .landing-page .l-nav-links {
    display: none;
  }
  .landing-page .l-hero {
    padding: 44px 20px 64px;
  }
  .landing-page .l-hero h1 {
    font-size: 53px;
  }
  .landing-page .l-hero p {
    max-width: 100%;
  }
  .landing-page .l-hero-badge {
    font-size: 16px;
    padding: 7px 18px;
  }
  .landing-page .l-trust-bar {
    display: none;
  }
  .landing-page .l-questionnaire-wrap {
    padding: 0 14px;
    margin: 28px auto 48px;
  }
  .landing-page .l-card-header {
    padding: 18px 20px;
    gap: 10px;
  }
  .landing-page .l-card-header .l-card-title {
    font-size: 18px;
  }
  .landing-page .l-card-body {
    padding: 20px;
    min-height: 535px;
  }
  .landing-page .l-question-text {
    font-size: 31px;
    margin-bottom: 18px;
  }
  .landing-page .l-options-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .landing-page .l-option-btn {
    padding: 14px 16px;
  }
  .landing-page .l-progress-row {
    gap: 6px;
    margin-bottom: 24px;
  }
  .landing-page .l-cta-row {
    padding: 20px;
  }
  .landing-page .l-cta-note {
    font-size: 18px;
  }
  .landing-page .l-btn-primary {
    width: 100%;
    padding: 17px;
    font-size: 20px;
  }
  .landing-page .l-how-section {
    padding: 0 24px 100px;
  }
  .landing-page .l-section-title {
    font-size: 22px;
    margin-bottom: 28px;
  }
  .landing-page .l-steps-row {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .landing-page .l-hero h1 {
    font-size: 46px;
  }
  .landing-page .l-steps-row {
    gap: 16px;
  }
}

.content-page {
  padding: 1rem;
  background: #f8f6f1;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  min-height: 70vh;
}

.content-wrap {
  max-width: 1000px;
  margin: 0 auto;
}

.content-wrap--narrow {
  max-width: 820px;
}

.content-eyebrow {
  margin: 0 0 0.45rem;
  color: #c9a84c;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.content-title {
  margin: 0 0 1rem;
  color: #1b3a5c;
  font-size: 2rem;
  line-height: 1.2;
}

.content-intro {
  margin: 0 0 1rem;
  color: #6b7280;
  line-height: 1.5;
  font-size: 1rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.content-search {
  width: 100%;
  max-width: 28rem;
  box-sizing: border-box;
  padding: 0.65rem 0.85rem;
  border: 2px solid #e5e0d8;
  border-radius: 10px;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.content-search:focus {
  outline: none;
  border-color: #1b3a5c;
}

.content-search-empty {
  margin: 0 0 1rem;
  color: #6b7280;
  font-size: 0.95rem;
}

.content-card {
  background: #fff;
  border: 1px solid #e5e0d8;
  border-radius: 12px;
  padding: 1.15rem 1.2rem;
}

.content-body {
  margin: 0 0 0.85rem;
  color: #2c2c2c;
  line-height: 1.55;
  font-size: 1rem;
}

.content-body:last-child {
  margin-bottom: 0;
}

.content-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.content-list-card {
  background: #fff;
  border: 1px solid #e5e0d8;
  border-radius: 12px;
  padding: 1.1rem 1.2rem;
}

.content-link {
  text-decoration: none;
  color: inherit;
}

.content-link-title {
  margin: 0;
  color: #1b3a5c;
  font-size: 1.4rem;
  line-height: 1.25;
}

.content-link:hover .content-link-title {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.content-meta {
  margin: 0.55rem 0 0;
  color: #6b7280;
  font-size: 0.85rem;
}

.content-desc {
  margin: 0.5rem 0 0;
  color: #3b4251;
  line-height: 1.45;
  font-size: 0.98rem;
}

.content-back-link {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: #1b3a5c;
  text-decoration: none;
}

.content-back-link:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.content-title--article {
  margin-bottom: 0;
}

.content-title-badge {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #6b7280;
  letter-spacing: 0.02em;
}

.content-meta--article {
  margin-top: 0.6rem;
  font-size: 0.86rem;
}

.content-intro--article {
  margin: 0.7rem 0 1.15rem;
  color: #3b4251;
  line-height: 1.55;
  font-style: italic;
  font-size: 0.93rem;
  max-width: 700px;
}

.content-section + .content-section {
  margin-top: 1rem;
}

.content-section-title {
  margin: 0 0 0.45rem;
  color: #1b3a5c;
  font-size: 1.15rem;
}

.content-section-body {
  margin: 0 0 0.7rem;
  color: #2c2c2c;
  line-height: 1.55;
}

/* ── Blog article body ─────────────────────────────── */

.content-body {
  margin: 1.5rem 0 2rem;
  color: #2c2c2c;
  line-height: 1.7;
  font-size: 1.05rem;
  max-width: 700px;
}

.content-body h2 {
  margin: 2rem 0 0.6rem;
  color: #1b3a5c;
  font-size: 1.35rem;
  line-height: 1.25;
}

.content-body h3 {
  margin: 1.5rem 0 0.4rem;
  color: #1b3a5c;
  font-size: 1.1rem;
}

.content-body p {
  margin: 0 0 1rem;
}

.content-body ul,
.content-body ol {
  margin: 0 0 1rem 1.4rem;
}

.content-body li {
  margin-bottom: 0.35rem;
}

.content-body strong {
  font-weight: 600;
  color: #1b3a5c;
}

.content-body a {
  color: #1b3a5c;
  text-underline-offset: 2px;
}

.content-body a:hover {
  color: #c9a84c;
}

/* ── Author block ──────────────────────────────────── */

.content-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin: 2.5rem 0;
  padding: 1.1rem 1.2rem;
  background: #fff;
  border: 1px solid #e5e0d8;
  border-radius: 12px;
  max-width: 700px;
}

.content-author__avatar {
  flex-shrink: 0;
}

.content-author__avatar img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.content-author__initials {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #1b3a5c;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  align-items: center;
  justify-content: center;
}

.content-author__name {
  margin: 0 0 0.15rem;
  font-weight: 600;
  color: #1b3a5c;
  font-size: 0.95rem;
}

.content-author__bio {
  margin: 0;
  color: #6b7280;
  font-size: 0.88rem;
  line-height: 1.4;
}

/* ── FAQ section ───────────────────────────────────── */

.content-faqs {
  margin: 2rem 0;
  max-width: 700px;
}

.content-faqs__title {
  margin: 0 0 1.1rem;
  color: #1b3a5c;
  font-size: 1.25rem;
}

.content-faq {
  margin-bottom: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid #e5e0d8;
}

.content-faq:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.content-faq__question {
  margin: 0 0 0.4rem;
  color: #1b3a5c;
  font-size: 1rem;
  font-weight: 600;
}

.content-faq__answer {
  margin: 0;
  color: #3b4251;
  line-height: 1.6;
  font-size: 0.97rem;
}

/* ── Related guides ────────────────────────────────── */

.content-related {
  margin: 2rem 0 1rem;
  max-width: 700px;
}

.content-related__title {
  margin: 0 0 0.8rem;
  color: #1b3a5c;
  font-size: 1.1rem;
}

.content-related__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.content-related__link {
  color: #1b3a5c;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-size: 0.97rem;
}

.content-related__link:hover {
  color: #c9a84c;
}

/* ── Video embeds ──────────────────────────────────── */

.blog-videos {
  margin: 2.5rem 0;
  max-width: 700px;
}

.blog-videos__title {
  margin: 0 0 0.25rem;
  color: #1b3a5c;
  font-size: 1.15rem;
}

.blog-videos__sub {
  margin: 0 0 1rem;
  color: #6b7280;
  font-size: 0.88rem;
}

.blog-videos__row {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.blog-video {
  flex: 0 0 auto;
  width: 160px;
}

.blog-video__label {
  margin-bottom: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.blog-video__frame {
  position: relative;
  width: 160px;
  aspect-ratio: 9 / 16;
  border-radius: 10px;
  overflow: hidden;
  background: #1b1b1b;
}

.blog-video__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ── Scarcity CTA ──────────────────────────────────── */

.blog-cta {
  margin: 2.5rem 0;
  max-width: 700px;
}

.blog-cta__inner {
  background: #1b3a5c;
  border-radius: 14px;
  padding: 1.6rem 1.75rem;
  color: #fff;
}

.blog-cta__eyebrow {
  margin: 0 0 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #c9a84c;
}

.blog-cta__headline {
  margin: 0 0 0.7rem;
  font-size: 1.25rem;
  line-height: 1.25;
  color: #fff;
}

.blog-cta__body {
  margin: 0 0 1.2rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}

.blog-cta__scarcity {
  margin-bottom: 1.25rem;
}

.blog-cta__bar-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.blog-cta__bar {
  height: 7px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 99px;
  overflow: hidden;
}

.blog-cta__bar-fill {
  height: 100%;
  background: #c9a84c;
  border-radius: 99px;
  transition: width 0.6s ease;
}

.blog-cta__bar-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  display: block;
  text-align: center;
}

.blog-cta__btn {
  display: block;
  text-align: center;
  padding: 0.7rem 1.4rem;
  background: #c9a84c;
  color: #1b3a5c;
  font-weight: 700;
  font-size: 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s;
  margin-bottom: 1rem;
}

.blog-cta__btn:hover {
  background: #b8923f;
  color: #fff;
}

/* ── Top author block (compact, below date) ──────────── */

.content-author--top {
  margin: 0.6rem 0 1.2rem;
  padding: 0.75rem 1rem;
}


/**
 * Animation + layout helpers for /agents section infographics.
 * Inline styles live in `components/agents-infographics/fragments/*.html`.
 */
@keyframes mb-draw {
  0% {
    stroke-dashoffset: var(--len);
  }
  55%,
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes mb-flow {
  to {
    stroke-dashoffset: -24;
  }
}

@keyframes mb-glow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(194, 153, 47, 0);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(194, 153, 47, 0.1);
  }
}

@keyframes mb-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.07);
  }
}

@keyframes mb-pop {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  60% {
    transform: scale(1.18);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes mb-rise {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  10%,
  90% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-6px);
  }
}

@keyframes mb-dots {
  0%,
  80%,
  100% {
    opacity: 0.25;
    transform: translateY(0);
  }
  40% {
    opacity: 1;
    transform: translateY(-2px);
  }
}

@keyframes mb-blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

@keyframes mb-drop {
  0% {
    opacity: 0;
    transform: translateY(-14px) scale(0.92);
  }
  12%,
  88% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(8px) scale(0.96);
  }
}

@keyframes mb-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/** Staggered step badges: bounce 1 → 2 → tick (200ms apart), then pause ~3s. */
@keyframes mb-step-bounce-1 {
  0%,
  10.5%,
  100% {
    transform: translateY(0) scale(1);
  }
  5.3% {
    transform: translateY(-7px) scale(1.1);
  }
}

@keyframes mb-step-bounce-2 {
  0%,
  5.3%,
  15.8%,
  100% {
    transform: translateY(0) scale(1);
  }
  10.5% {
    transform: translateY(-7px) scale(1.1);
  }
}

@keyframes mb-step-bounce-3 {
  0%,
  10.5%,
  21%,
  100% {
    transform: translateY(0) scale(1);
  }
  15.8% {
    transform: translateY(-7px) scale(1.1);
  }
}

.landing-page .agents-infographic {
  box-sizing: border-box;
  width: 100%;
}

.landing-page .agents-infographic *,
.landing-page .agents-infographic *::before,
.landing-page .agents-infographic *::after {
  box-sizing: border-box;
}

.landing-page .agents-infographic--inline {
  margin-top: 1.5rem;
}
