/* Footer sub-pages — card layout (Impressum / legal style) */
body.info-page {
  background: #f9fafb;
  color: #111827;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.info-page-main {
  flex: 1;
  width: 100%;
}

.info-page-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.75rem 1.5rem 3.5rem;
}

.info-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  color: #9ca3af;
  margin-bottom: 1.25rem;
}

.info-breadcrumb a {
  color: #9ca3af;
  text-decoration: none;
}

.info-breadcrumb a:hover {
  color: #4f46e5;
  text-decoration: underline;
}

.info-breadcrumb-sep {
  color: #d1d5db;
  user-select: none;
}

.info-page-heading {
  margin-bottom: 2rem;
}

.info-page-heading h1 {
  font-size: clamp(1.85rem, 4vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #111827;
  margin: 0 0 0.5rem;
}

.info-page-heading p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #6b7280;
  max-width: 760px;
}

.info-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.info-page-main-col,
.info-page-side-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 0;
}

.info-legal-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.info-legal-card-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.info-legal-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #eef2ff;
  color: #4f46e5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-legal-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-legal-card-head h2 {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.01em;
}

.info-legal-card-body {
  color: #374151;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.info-legal-card-body p {
  margin: 0 0 0.85rem;
}

.info-legal-card-body p:last-child {
  margin-bottom: 0;
}

.info-kv-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 0;
}

.info-kv-row {
  display: grid;
  grid-template-columns: minmax(120px, 38%) minmax(0, 1fr);
  gap: 0.75rem 1rem;
  align-items: start;
}

.info-kv-row dt {
  margin: 0;
  font-weight: 600;
  color: #111827;
  font-size: 0.875rem;
}

.info-kv-row dd {
  margin: 0;
  color: #4b5563;
  font-size: 0.9375rem;
  line-height: 1.55;
}

.info-kv-row dd a {
  color: #2563eb;
  text-decoration: none;
}

.info-kv-row dd a:hover {
  text-decoration: underline;
}

.info-subsection {
  margin-top: 1rem;
}

.info-subsection:first-child {
  margin-top: 0;
}

.info-subsection h3 {
  margin: 0 0 0.45rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #111827;
}

.info-bullet-list {
  margin: 0.35rem 0 0;
  padding-left: 1.15rem;
}

.info-bullet-list li {
  margin-bottom: 0.45rem;
  color: #4b5563;
}

.info-highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.info-highlight-grid .info-legal-card {
  height: 100%;
}

.info-highlight-grid .info-legal-card-head {
  margin-bottom: 0.85rem;
}

.info-highlight-grid .info-legal-card-head h2 {
  font-size: 0.98rem;
}

.info-page-updated {
  font-size: 0.8125rem;
  color: #9ca3af;
  margin-top: 0.25rem;
}

.info-side-links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.info-side-links a {
  color: #2563eb;
  text-decoration: none;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.info-side-links a:hover {
  text-decoration: underline;
}

.info-side-links a.is-active {
  color: #111827;
  font-weight: 600;
  pointer-events: none;
}

.info-cta-card {
  background: linear-gradient(135deg, #eef2ff 0%, #ffffff 100%);
  border-color: #c7d2fe;
}

.info-cta-card .info-legal-card-body p {
  margin-bottom: 1rem;
}

.info-cta-card .btn-primary {
  border-radius: 10px;
  background: #4f46e5;
  border: 1px solid #4338ca;
  color: #ffffff;
  font-weight: 600;
  padding: 0.65rem 1.1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.info-cta-card .btn-primary:hover {
  background: #4338ca;
  filter: none;
  text-decoration: none;
}

.info-gdpr-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.info-gdpr-actions .btn-primary,
.info-gdpr-actions .btn-secondary {
  border-radius: 10px;
  font-size: 0.875rem;
  padding: 0.55rem 0.95rem;
}

.info-footer-active a,
a.info-footer-active {
  font-weight: 600;
}

@media (max-width: 960px) {
  .info-page-grid {
    grid-template-columns: 1fr;
  }

  .info-highlight-grid {
    grid-template-columns: 1fr;
  }
}

.info-page .subnav-tab,
.info-page .subnav-menu-btn {
  text-decoration: none;
  color: inherit;
}
  .info-page-wrap {
    padding: 1.25rem 1rem 2.5rem;
  }

  .info-kv-row {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }
}

/* ════════════════════════════════════════════════════════════
   Faire-replica About page (?page=about) — cream editorial
   canvas, olive mission hero, split sections, stats band,
   values accordion, offices, contact
   ════════════════════════════════════════════════════════════ */
body.faire-about-mode { background: #fdf8f0; }
body.faire-about-mode .info-page-main {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
  background: #fdf8f0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #333333;
}

/* Mission hero — olive band, serif statement */
.fa-hero {
  background: #66693f;
  color: #ffffff;
  text-align: center;
  padding: clamp(4rem, 9vw, 7.5rem) 1.5rem;
}
.fa-hero-kicker { font-size: 0.95rem; font-weight: 600; margin-bottom: 1.6rem; }
.fa-hero-title {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(1.9rem, 4vw, 3.05rem);
  line-height: 1.28;
  letter-spacing: -0.01em;
  max-width: 21ch;
  margin: 0 auto;
}

/* Editorial splits */
.fa-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 8rem);
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 6.5rem) 2rem;
}
.fa-split-copy h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  line-height: 1.25;
  margin: 0 0 1.4rem;
  color: #333333;
}
.fa-split-copy p {
  font-size: 1rem;
  line-height: 1.65;
  color: #333333;
  margin: 0 0 1.1rem;
  max-width: 52ch;
}
.fa-split-img { margin: 0; }
.fa-split-img img {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  object-fit: cover;
  display: block;
}
.fa-link {
  color: #333333;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.fa-link:hover { color: #000000; }

/* Stats band — lighter olive, serif numbers, world map */
.fa-stats { background: #8b8e64; color: #ffffff; }
.fa-stats-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 6rem) 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}
.fa-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 4vw, 3rem);
}
.fa-stat b {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  line-height: 1.15;
  max-width: 9ch;
}
.fa-stat span { display: block; margin-top: 0.55rem; font-size: 0.95rem; }
.fa-map { width: 100%; height: auto; display: block; }

/* Values accordion */
.fa-values {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: start;
  gap: clamp(2.5rem, 7vw, 7rem);
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 6.5rem) 2rem;
}
.fa-values h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  margin: 0 0 1.6rem;
  color: #333333;
}
.fa-values details { border-top: 1px solid #d8d4c6; }
.fa-values details:last-of-type { border-bottom: 1px solid #d8d4c6; }
.fa-values summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 0.25rem;
  font-size: 1.02rem;
  font-weight: 400;
  color: #333333;
}
.fa-values summary::-webkit-details-marker { display: none; }
.fa-values summary::after {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 1.6px solid #333;
  border-bottom: 1.6px solid #333;
  transform: rotate(45deg);
  transition: transform 0.18s ease;
  flex: 0 0 auto;
  margin-left: 1rem;
}
.fa-values details[open] summary::after { transform: rotate(-135deg) translate(-2px, -2px); }
.fa-values details p {
  margin: 0;
  padding: 0 2.5rem 1.3rem 1rem;
  font-size: 0.96rem;
  line-height: 1.6;
  color: #333333;
}
.fa-values .fa-split-img img { aspect-ratio: 1 / 1.18; }

/* Offices */
.fa-city-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem 2.5rem;
  margin: 1.8rem 0 2.2rem;
  max-width: 24rem;
}
.fa-city-grid b { font-size: 1.18rem; font-weight: 600; color: #1f1f1f; }
.fa-careers { font-size: 1rem; }

/* Contact */
.fa-contact .fa-split-copy h2 { margin-bottom: 1.6rem; }
.fa-address { font-size: 1rem; line-height: 1.7; }
.fa-address-secondary { margin-top: 1.4rem; }
.fa-underline { color: #333333; text-decoration: underline; text-underline-offset: 4px; }

@media (max-width: 860px) {
  .fa-split, .fa-values, .fa-stats-inner { grid-template-columns: 1fr; }
  .fa-split-rev .fa-split-img { order: -1; }
}

/* ── Generic Faire sub-page blocks (all footer pages) ──────── */
.fa-hero-sub {
  margin: 1.7rem auto 0;
  max-width: 58ch;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.02rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
}

/* Hairline bullet rows, Faire accordion-list flavor */
.fa-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 52ch;
}
.fa-bullets li {
  padding: 0.85rem 0.2rem;
  border-top: 1px solid #d8d4c6;
  font-size: 0.98rem;
  line-height: 1.55;
  color: #333333;
}
.fa-bullets li:last-child { border-bottom: 1px solid #d8d4c6; }

/* Centered prose column — legal pages and data sections */
.fa-prose {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(2.2rem, 5vw, 3.5rem) 2rem 0;
}
.fa-prose:last-of-type { padding-bottom: clamp(3rem, 7vw, 5rem); }
.fa-prose h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  color: #333333;
  margin: 0 0 1.1rem;
}
.fa-prose p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #333333;
  margin: 0 0 1rem;
}
.fa-prose .fa-bullets,
.fa-prose .info-bullet-list { max-width: none; }
.fa-prose .info-bullet-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.fa-prose .info-bullet-list li {
  padding: 0.85rem 0.2rem;
  border-top: 1px solid #d8d4c6;
  font-size: 0.98rem;
  line-height: 1.55;
}
.fa-prose .info-bullet-list li:last-child { border-bottom: 1px solid #d8d4c6; }
.fa-prose .info-kv-list { margin: 0; }
.fa-prose .info-kv-row {
  display: grid;
  grid-template-columns: minmax(140px, 220px) 1fr;
  gap: 1.5rem;
  padding: 0.8rem 0.2rem;
  border-top: 1px solid #d8d4c6;
}
.fa-prose .info-kv-row:last-child { border-bottom: 1px solid #d8d4c6; }
.fa-prose .info-kv-row dt { color: #6e6a5e; font-size: 0.9rem; }
.fa-prose .info-kv-row dd { margin: 0; font-size: 0.96rem; color: #333; }
.fa-prose .info-subsection h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: 1.2rem;
  margin: 1.4rem 0 0.5rem;
}
.fa-prose a { color: #333333; text-decoration: underline; text-underline-offset: 3px; }

/* Solid ink CTA pill (Faire button flavor) */
.fa-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.6rem;
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  background: #333333;
  color: #ffffff !important;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none !important;
}
.fa-cta-btn:hover { background: #111111; }

/* GDPR tools inherit the prose column — flatten the legacy card chrome */
.fa-gdpr .info-legal-card {
  border: none;
  background: transparent;
  box-shadow: none;
  padding: 0;
}
.fa-gdpr .info-legal-icon { display: none; }
.fa-gdpr .info-legal-card-head h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  color: #333333;
}
.fa-gdpr .info-gdpr-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 1rem; }

.fa-updated {
  max-width: 760px;
  margin: 0 auto;
  padding: 2rem 2rem 3.5rem;
  color: #8a8674;
  font-size: 0.85rem;
}

/* ════════════════════════════════════════════════════════════
   STRIPE SKIN — footer sub-pages re-colored to the Stripe
   palette: ink #0a2540 · slate #425466 · violet #635bff ·
   cloud #f6f9fc · hairline #e6ebf1. Gradient hero with the
   signature slanted edge; feature cards; navy CTA band.
   Appended after the Faire skin: same selectors, later wins.
   ════════════════════════════════════════════════════════════ */
body.faire-about-mode { background: #ffffff; }
body.faire-about-mode .info-page-main {
  background: #ffffff;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
  color: #425466;
}

/* Hero — vivid Stripe gradient mesh, white type, slanted bottom */
.fa-hero {
  position: relative;
  text-align: left;
  background:
    radial-gradient(circle at 12% 0%, rgba(0, 212, 255, 0.55), transparent 42%),
    radial-gradient(circle at 88% 12%, rgba(255, 92, 168, 0.5), transparent 46%),
    radial-gradient(circle at 78% 95%, rgba(255, 176, 32, 0.38), transparent 52%),
    linear-gradient(135deg, #635bff 0%, #4f46e5 60%, #3f3ad1 100%);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - clamp(1.8rem, 5vw, 4.5rem)), 0 100%);
  padding: clamp(4.5rem, 9vw, 7rem) 2rem clamp(6rem, 11vw, 9.5rem);
}
.fa-hero-kicker,
.fa-hero-title,
.fa-hero-sub {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
.fa-hero-kicker {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.3rem;
}
.fa-hero-title {
  font-family: inherit;
  font-weight: 800;
  font-size: clamp(2rem, 4.4vw, 3.3rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: #ffffff;
  max-width: min(1080px, 100%);
}
.fa-hero-title { margin-left: auto; margin-right: auto; }
.fa-hero-sub {
  margin-top: 1.5rem;
  font-size: 1.06rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  max-width: 1080px;
}
@media (min-width: 1100px) {
  .fa-hero-title { max-width: 1080px; }
  .fa-hero-title, .fa-hero-sub { padding-right: 22rem; }
}

/* Editorial splits — ink headings, slate body, floating imagery */
.fa-split { background: #ffffff; }
.fa-split-copy h2 {
  font-family: inherit;
  font-weight: 700;
  font-size: clamp(1.55rem, 2.6vw, 2.1rem);
  letter-spacing: -0.02em;
  color: #0a2540;
}
.fa-split-copy p { color: #425466; font-size: 1rem; line-height: 1.7; }
.fa-split-img img {
  border-radius: 10px;
  box-shadow: 0 13px 27px -5px rgba(50, 50, 93, 0.25), 0 8px 16px -8px rgba(0, 0, 0, 0.3);
}
.fa-link {
  color: #635bff;
  font-weight: 600;
  text-decoration: none;
}
.fa-link span { display: inline-block; transition: transform 0.15s ease; }
.fa-link:hover { color: #0a2540; }
.fa-link:hover span { transform: translateX(4px); }

/* Bullets — violet check marks on clean rows */
.fa-bullets li,
.fa-prose .info-bullet-list li {
  position: relative;
  border: none;
  padding: 0.45rem 0 0.45rem 2rem;
  color: #425466;
}
.fa-bullets li:last-child,
.fa-prose .info-bullet-list li:last-child { border: none; }
.fa-bullets li::before,
.fa-prose .info-bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(99, 91, 255, 0.12);
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4.5 8.5l2.5 2.5 5-5' fill='none' stroke='%23635bff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 12px 12px;
  background-position: center;
  background-repeat: no-repeat;
}

/* Feature cards on a cloud band (highlights) */
.fa-band { background: #f6f9fc; padding: clamp(3rem, 7vw, 5rem) 2rem; }
.fa-band-inner { max-width: 1080px; margin: 0 auto; }
.fa-band-title {
  font-weight: 700;
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  letter-spacing: -0.02em;
  color: #0a2540;
  margin: 0 0 2rem;
}
.fa-cardgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.fa-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.5rem 1.4rem 1.4rem;
  box-shadow: 0 6px 18px rgba(50, 50, 93, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.fa-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 13px 27px -5px rgba(50, 50, 93, 0.18), 0 8px 16px -8px rgba(0, 0, 0, 0.2);
}
.fa-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #635bff, #4f46e5);
  color: #ffffff;
  margin-bottom: 0.95rem;
}
.fa-card-icon svg { width: 17px; height: 17px; }
.fa-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #0a2540;
}
.fa-card p { margin: 0; font-size: 0.92rem; line-height: 1.6; color: #425466; }

/* About-page pieces — values accordion, stats band, offices, contact */
.fa-values h2 { font-family: inherit; font-weight: 700; color: #0a2540; letter-spacing: -0.02em; }
.fa-values details,
.fa-values details:last-of-type { border-color: #e6ebf1; }
.fa-values summary { color: #0a2540; font-weight: 600; }
.fa-values summary::after { border-color: #635bff; }
.fa-values details p { color: #425466; }

.fa-stats { background: #0a2540; }
.fa-stat b {
  font-family: inherit;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, #00d4ff, #a5a0ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #ffffff;
}
.fa-stat span { color: #8898aa; }
.fa-map g[fill="#e9e6d6"] { fill: #1d3a5f; }
.fa-map g[fill="#55583a"] { fill: #635bff; }

.fa-city-grid b { color: #0a2540; }
.fa-address { color: #425466; }
.fa-underline { color: #635bff; text-decoration: none; font-weight: 600; }
.fa-underline:hover { color: #0a2540; }

/* Legal / prose pages — ink headings, hairline tables */
.fa-prose h2 {
  font-family: inherit;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0a2540;
}
.fa-prose p { color: #425466; }
.fa-prose .info-kv-row { border-color: #e6ebf1; }
.fa-prose .info-kv-row:last-child { border-color: #e6ebf1; }
.fa-prose .info-kv-row dt { color: #8898aa; }
.fa-prose .info-kv-row dd { color: #0a2540; }
.fa-prose .info-subsection h3 { font-family: inherit; font-weight: 700; color: #0a2540; }
.fa-prose a { color: #635bff; text-decoration: none; font-weight: 600; }
.fa-prose a:hover { color: #0a2540; }
.fa-gdpr .info-legal-card-head h2 { font-family: inherit; font-weight: 700; color: #0a2540; }

/* CTA — navy band, violet pill with traveling arrow */
.fa-cta-band {
  background:
    radial-gradient(circle at 85% 15%, rgba(99, 91, 255, 0.35), transparent 45%),
    #0a2540;
  padding: clamp(3.5rem, 8vw, 5.5rem) 2rem;
  margin-top: clamp(2.5rem, 6vw, 4rem);
}
.fa-cta-inner { max-width: 1080px; margin: 0 auto; }
.fa-cta-inner h2 {
  margin: 0 0 0.9rem;
  font-weight: 800;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  letter-spacing: -0.02em;
  color: #ffffff;
}
.fa-cta-inner p { margin: 0 0 1.8rem; max-width: 62ch; color: #adbdcc; font-size: 1rem; line-height: 1.65; }
.fa-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0.8rem 1.7rem;
  border-radius: 999px;
  background: #635bff;
  color: #ffffff !important;
  font-weight: 600;
  font-size: 0.96rem;
  text-decoration: none !important;
  transition: background 0.15s ease;
}
.fa-cta-btn:hover { background: #7a73ff; }
.fa-cta-btn span { display: inline-block; transition: transform 0.15s ease; }
.fa-cta-btn:hover span { transform: translateX(4px); }

.fa-updated { color: #8898aa; }
