/* Fraudhalo — fhlo.css
   Brand: Slate Navy #0F2952 | Alert Amber #F59E0B | Signal Teal #0EA5E9
   Fonts: IBM Plex Sans (headlines) | Inter (body) | DM Mono (code)
   Engineering register — institutional-technical, NOT startup-vibey
*/

/* ─── Custom Properties ─────────────────────────────────────────────── */
:root {
  --fhlo-navy:        #0F2952;
  --fhlo-navy-deep:   #0D1B2E;
  --fhlo-navy-mid:    #162E5C;
  --fhlo-white:       #F5F7FA;
  --fhlo-amber:       #F59E0B;
  --fhlo-amber-hover: #D97706;
  --fhlo-teal:        #0EA5E9;
  --fhlo-teal-dark:   #0284C7;
  --fhlo-graphite:    #1A2332;
  --fhlo-steel:       #4B5A6E;
  --fhlo-red:         #EF4444;
  --fhlo-green:       #10B981;
  --fhlo-border:      #D1D9E6;
  --fhlo-surface:     #EBF0F7;
  --fhlo-code-bg:     #0D1B2E;
  --fhlo-light-text:  #B0BEC8;

  --font-headline:    'IBM Plex Sans', system-ui, sans-serif;
  --font-body:        'Inter', system-ui, sans-serif;
  --font-mono:        'DM Mono', 'Courier New', monospace;

  --radius-card:      6px;
  --radius-btn:       4px;
  --radius-input:     2px;
  --shadow-card:      0 1px 8px rgba(15, 41, 82, 0.10);
  --shadow-card-hover:0 4px 20px rgba(15, 41, 82, 0.16);
  --transition:       0.18s ease;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--fhlo-graphite);
  background: var(--fhlo-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── Typography ────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-headline);
  font-weight: 700;
  line-height: 1.2;
  color: var(--fhlo-graphite);
}

h1 { font-size: clamp(34px, 5vw, 58px); line-height: 1.12; }
h2 { font-size: clamp(26px, 3.5vw, 36px); }
h3 { font-size: clamp(18px, 2.2vw, 22px); font-weight: 600; }
h4 { font-size: 17px; font-weight: 600; }

p { font-size: 16px; line-height: 1.7; color: var(--fhlo-graphite); }
.fhlo-lead { font-size: 18px; line-height: 1.65; color: var(--fhlo-steel); }

code, .fhlo-mono {
  font-family: var(--font-mono);
  font-size: 0.88em;
  background: var(--fhlo-surface);
  padding: 2px 6px;
  border-radius: 3px;
  color: var(--fhlo-teal);
}

pre.fhlo-code-block {
  background: var(--fhlo-code-bg);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-card);
  padding: 20px 24px;
  overflow-x: auto;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}

pre.fhlo-code-block code {
  font-family: var(--font-mono);
  font-size: 13px;
  background: none;
  padding: 0;
  color: #a8d8f0;
  white-space: pre;
  line-height: 1.6;
}

pre.fhlo-code-block .c-key  { color: #0EA5E9; }
pre.fhlo-code-block .c-str  { color: #10B981; }
pre.fhlo-code-block .c-num  { color: #F59E0B; }
pre.fhlo-code-block .c-cmt  { color: #4B5A6E; font-style: italic; }

/* ─── Layout Utilities ──────────────────────────────────────────────── */
.fhlo-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.fhlo-container--narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

.fhlo-section {
  padding: 88px 0;
}

.fhlo-section--tight {
  padding: 60px 0;
}

.fhlo-section--navy {
  background: var(--fhlo-navy);
}

.fhlo-section--surface {
  background: var(--fhlo-surface);
}

.fhlo-section--white {
  background: #fff;
}

.fhlo-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.fhlo-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.fhlo-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ─── Buttons ───────────────────────────────────────────────────────── */
.fhlo-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.fhlo-btn--amber {
  background: var(--fhlo-amber);
  color: var(--fhlo-navy-deep);
}
.fhlo-btn--amber:hover {
  background: var(--fhlo-amber-hover);
}

.fhlo-btn--navy {
  background: var(--fhlo-navy);
  color: #fff;
}
.fhlo-btn--navy:hover {
  background: var(--fhlo-navy-mid);
  box-shadow: var(--shadow-card);
}

.fhlo-btn--outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.fhlo-btn--outline-white:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.06);
}

.fhlo-btn--outline-navy {
  background: transparent;
  color: var(--fhlo-navy);
  border: 1.5px solid var(--fhlo-navy);
}
.fhlo-btn--outline-navy:hover {
  background: var(--fhlo-navy);
  color: #fff;
}

.fhlo-text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  color: #fff;
  font-size: 15px;
  transition: gap var(--transition), opacity var(--transition);
}
.fhlo-text-link:hover { gap: 10px; opacity: 0.85; }
.fhlo-text-link--teal { color: var(--fhlo-teal); }
.fhlo-text-link--teal:hover { color: var(--fhlo-teal-dark); }

/* ─── Navigation ────────────────────────────────────────────────────── */
.fhlo-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--fhlo-navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow 0.2s;
}

.fhlo-nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.fhlo-nav__inner {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 0;
}

.fhlo-nav__logo {
  flex-shrink: 0;
  margin-right: 40px;
}

.fhlo-nav__logo a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fhlo-nav__logo-img {
  height: 32px;
  width: auto;
}

.fhlo-nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}

.fhlo-nav__item {
  position: relative;
}

.fhlo-nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.fhlo-nav__link:hover,
.fhlo-nav__link--active {
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.fhlo-nav__link--utility {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  padding: 6px 12px;
}
.fhlo-nav__link--utility:hover { color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.06); }

.fhlo-nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: var(--fhlo-navy-deep);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-card);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.15s, transform 0.15s, visibility 0.15s;
  z-index: 100;
}

.fhlo-nav__item:hover .fhlo-nav__dropdown,
.fhlo-nav__item:focus-within .fhlo-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fhlo-nav__dropdown a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  transition: color var(--transition), background var(--transition);
}
.fhlo-nav__dropdown a:hover { color: #fff; background: rgba(255,255,255,0.06); }

.fhlo-nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.fhlo-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}

.fhlo-nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.fhlo-nav__hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.fhlo-nav__hamburger.active span:nth-child(2) { opacity: 0; }
.fhlo-nav__hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.fhlo-nav__mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: 64px;
  background: var(--fhlo-navy);
  z-index: 999;
  overflow-y: auto;
  padding: 16px 0 32px;
}

.fhlo-nav__mobile-menu.open { display: block; }

.fhlo-nav__mobile-menu a {
  display: block;
  padding: 13px 24px;
  font-size: 16px;
  color: rgba(255,255,255,0.88);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition), background var(--transition);
}
.fhlo-nav__mobile-menu a:hover { color: #fff; background: rgba(255,255,255,0.06); }

.fhlo-nav__mobile-menu .fhlo-nav__mobile-sub {
  padding-left: 40px;
  font-size: 15px;
  color: rgba(255,255,255,0.65);
}

.fhlo-nav__mobile-cta {
  padding: 20px 24px 4px;
}

/* ─── Hero — Dark Split ─────────────────────────────────────────────── */
.fhlo-hero {
  background: var(--fhlo-navy);
  background: radial-gradient(ellipse 120% 80% at 60% 50%, #162E5C 0%, #0F2952 60%);
  padding: 96px 0 80px;
  overflow: hidden;
  position: relative;
}

.fhlo-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.fhlo-hero__accent-rule {
  width: 48px;
  height: 1px;
  background: var(--fhlo-amber);
  margin-bottom: 20px;
}

.fhlo-hero__headline {
  font-family: var(--font-headline);
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}

.fhlo-hero__subhead {
  font-size: 18px;
  line-height: 1.65;
  color: var(--fhlo-light-text);
  margin-bottom: 32px;
  max-width: 520px;
}

.fhlo-hero__ctas {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.fhlo-hero__proof-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.fhlo-proof-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  white-space: nowrap;
}

.fhlo-proof-chip__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--fhlo-teal);
  flex-shrink: 0;
}

/* Transaction Stream SVG area */
.fhlo-hero__viz {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
}

.fhlo-txn-row {
  display: flex;
  gap: 8px;
  will-change: transform;
}

.fhlo-txn-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.fhlo-txn-chip__id {
  color: rgba(255,255,255,0.35);
  font-size: 10px;
}

.fhlo-txn-chip--approved {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #10B981;
}

.fhlo-txn-chip--flagged {
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.35);
  color: #F59E0B;
}

.fhlo-txn-chip--blocked {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #EF4444;
}

.fhlo-txn-chip--amount {
  color: rgba(255,255,255,0.5);
  font-size: 10.5px;
}

/* ─── Trust Band ────────────────────────────────────────────────────── */
.fhlo-trust-band {
  background: #fff;
  border-top: 1px solid var(--fhlo-border);
  border-bottom: 1px solid var(--fhlo-border);
  padding: 20px 0;
}

.fhlo-trust-band__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.fhlo-trust-metric {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 28px;
  border-right: 1px solid var(--fhlo-border);
}

.fhlo-trust-metric:last-child { border-right: none; }

.fhlo-trust-metric__icon {
  color: var(--fhlo-teal);
  font-size: 14px;
  flex-shrink: 0;
}

.fhlo-trust-metric__value {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--fhlo-graphite);
  font-family: var(--font-headline);
}

/* ─── Section Headers ───────────────────────────────────────────────── */
.fhlo-section-header {
  text-align: center;
  margin-bottom: 52px;
}

.fhlo-section-header--left {
  text-align: left;
  margin-bottom: 40px;
}

.fhlo-section-eyebrow {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fhlo-teal);
  margin-bottom: 12px;
}

.fhlo-section-header h2 { margin-bottom: 14px; }
.fhlo-section-header p { color: var(--fhlo-steel); max-width: 580px; margin: 0 auto; }
.fhlo-section-header--left p { margin: 0; }

/* ─── Feature Cards (attack types) ─────────────────────────────────── */
.fhlo-card {
  background: #fff;
  border: 1px solid var(--fhlo-border);
  border-radius: var(--radius-card);
  padding: 28px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.fhlo-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.fhlo-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(14, 165, 233, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--fhlo-teal);
  font-size: 20px;
}

.fhlo-card__icon--amber { background: rgba(245, 158, 11, 0.1); color: var(--fhlo-amber); }
.fhlo-card__icon--red   { background: rgba(239, 68, 68, 0.08); color: var(--fhlo-red); }
.fhlo-card__icon--green { background: rgba(16, 185, 129, 0.08); color: var(--fhlo-green); }

.fhlo-card h3 { margin-bottom: 10px; font-size: 18px; }
.fhlo-card p  { font-size: 14.5px; color: var(--fhlo-steel); line-height: 1.6; margin-bottom: 20px; }
.fhlo-card__link { font-size: 14px; font-weight: 600; color: var(--fhlo-teal); display: inline-flex; align-items: center; gap: 5px; }
.fhlo-card__link:hover { gap: 9px; color: var(--fhlo-teal-dark); }

/* ─── 3-Step / Process ──────────────────────────────────────────────── */
.fhlo-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.fhlo-step {
  padding: 32px 24px;
  position: relative;
}

.fhlo-step::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--fhlo-border);
}

.fhlo-step:last-child::after { display: none; }

.fhlo-step__number {
  font-family: var(--font-headline);
  font-size: 40px;
  font-weight: 700;
  color: rgba(14, 165, 233, 0.2);
  line-height: 1;
  margin-bottom: 16px;
}

.fhlo-step__title { font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.fhlo-step__desc  { font-size: 14.5px; color: var(--fhlo-steel); line-height: 1.6; margin-bottom: 16px; }

/* ─── Integration Logo Row ──────────────────────────────────────────── */
.fhlo-integration-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 36px;
  margin-top: 32px;
}

.fhlo-integration-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--fhlo-border);
  border-radius: var(--radius-card);
  color: var(--fhlo-steel);
  font-size: 14px;
  font-weight: 500;
  opacity: 0.65;
  transition: opacity var(--transition);
}
.fhlo-integration-item:hover { opacity: 1; }
.fhlo-integration-item i { font-size: 18px; }

/* ─── Metrics / Stats ───────────────────────────────────────────────── */
.fhlo-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
}

.fhlo-metric {
  padding: 48px 40px;
  text-align: center;
  background: var(--fhlo-navy);
}

.fhlo-metric__value {
  font-family: var(--font-headline);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.fhlo-metric__label {
  font-size: 14px;
  color: var(--fhlo-amber);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ─── Testimonials ──────────────────────────────────────────────────── */
.fhlo-testimonial {
  background: #fff;
  border: 1px solid var(--fhlo-border);
  border-radius: var(--radius-card);
  padding: 28px;
  box-shadow: var(--shadow-card);
}

.fhlo-testimonial__quote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--fhlo-graphite);
  margin-bottom: 20px;
  position: relative;
}

.fhlo-testimonial__quote::before {
  content: '"';
  font-size: 48px;
  color: var(--fhlo-amber);
  opacity: 0.3;
  line-height: 1;
  position: absolute;
  top: -8px;
  left: -4px;
  font-family: var(--font-headline);
}

.fhlo-testimonial__quote p { padding-left: 20px; }

.fhlo-testimonial__attribution {
  font-size: 13px;
  color: var(--fhlo-steel);
  font-weight: 500;
}

.fhlo-testimonial__role {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--fhlo-teal);
  margin-top: 4px;
}

/* ─── Data Handling / Trust Band (icon row) ─────────────────────────── */
.fhlo-trust-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.fhlo-trust-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.fhlo-trust-icon-item__icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--fhlo-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fhlo-navy);
  font-size: 20px;
  box-shadow: var(--shadow-card);
}

.fhlo-trust-icon-item__label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--fhlo-graphite);
}

/* ─── Founder CTA ───────────────────────────────────────────────────── */
.fhlo-founder-cta {
  background: var(--fhlo-navy);
  padding: 80px 0;
}

.fhlo-founder-cta__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.fhlo-founder-cta__content h2 {
  color: #fff;
  margin-bottom: 16px;
  font-size: 30px;
}

.fhlo-founder-cta__content p {
  color: var(--fhlo-light-text);
  max-width: 520px;
  margin-bottom: 28px;
}

.fhlo-founder-cta__portrait {
  width: 200px;
  height: 240px;
  border-radius: var(--radius-card);
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.12);
}

/* ─── Footer ────────────────────────────────────────────────────────── */
.fhlo-footer {
  background: var(--fhlo-white);
  border-top: 1px solid var(--fhlo-border);
  padding: 56px 0 0;
}

.fhlo-footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.fhlo-footer__logo-wrap {
  margin-bottom: 16px;
}

.fhlo-footer__logo-img {
  height: 28px;
  width: auto;
}

.fhlo-footer__tagline {
  font-size: 14px;
  color: var(--fhlo-steel);
  line-height: 1.55;
  margin-bottom: 16px;
  max-width: 280px;
}

.fhlo-footer__contact-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--fhlo-steel);
  margin-bottom: 6px;
}

.fhlo-footer__contact-line i {
  color: var(--fhlo-teal);
  width: 14px;
  font-size: 12px;
  flex-shrink: 0;
}

.fhlo-footer__col-heading {
  font-family: var(--font-headline);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fhlo-graphite);
  margin-bottom: 16px;
}

.fhlo-footer__links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.fhlo-footer__links a {
  font-size: 14px;
  color: var(--fhlo-steel);
  transition: color var(--transition);
}

.fhlo-footer__links a:hover { color: var(--fhlo-navy); }

.fhlo-footer__bottom {
  border-top: 1px solid var(--fhlo-border);
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.fhlo-footer__bottom-text {
  font-size: 13px;
  color: var(--fhlo-steel);
}

/* ─── Page Hero (sub-pages) ─────────────────────────────────────────── */
.fhlo-page-hero {
  background: var(--fhlo-navy);
  padding: 72px 0 64px;
  text-align: center;
}

.fhlo-page-hero h1 {
  color: #fff;
  font-size: clamp(28px, 3.5vw, 46px);
  margin-bottom: 16px;
}

.fhlo-page-hero p {
  color: var(--fhlo-light-text);
  max-width: 680px;
  margin: 0 auto;
  font-size: 17px;
}

.fhlo-page-hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fhlo-amber);
  margin-bottom: 14px;
}

/* ─── Detection page specific ───────────────────────────────────────── */
.fhlo-signal-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.fhlo-signal-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--fhlo-border);
  border-radius: var(--radius-card);
}

.fhlo-signal-item__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--fhlo-amber);
  flex-shrink: 0;
  margin-top: 7px;
}

.fhlo-signal-item__code {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fhlo-teal);
  margin-bottom: 4px;
}

.fhlo-signal-item__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--fhlo-graphite);
  margin-bottom: 4px;
}

.fhlo-signal-item__desc {
  font-size: 13px;
  color: var(--fhlo-steel);
  line-height: 1.55;
}

/* ─── Case Study / Proof ─────────────────────────────────────────────── */
.fhlo-case-study {
  background: var(--fhlo-navy);
  border-radius: var(--radius-card);
  padding: 36px 40px;
  color: #fff;
}

.fhlo-case-study__metrics {
  display: flex;
  gap: 32px;
  margin: 24px 0;
  flex-wrap: wrap;
}

.fhlo-case-study__metric-value {
  font-family: var(--font-headline);
  font-size: 36px;
  font-weight: 700;
  color: var(--fhlo-amber);
  line-height: 1;
}

.fhlo-case-study__metric-label {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}

.fhlo-case-study__context {
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-mono);
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ─── Model Card Specific ───────────────────────────────────────────── */
.fhlo-model-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 24px 0;
}

.fhlo-model-table th {
  background: var(--fhlo-surface);
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
  font-size: 12.5px;
  color: var(--fhlo-graphite);
  border-bottom: 1px solid var(--fhlo-border);
  font-family: var(--font-headline);
}

.fhlo-model-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--fhlo-border);
  vertical-align: top;
  color: var(--fhlo-graphite);
}

.fhlo-model-table tr:last-child td { border-bottom: none; }
.fhlo-model-table tr:nth-child(even) td { background: rgba(235,240,247,0.4); }

.fhlo-model-table .fhlo-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 11.5px;
  font-weight: 600;
  font-family: var(--font-mono);
}

.fhlo-badge--teal { background: rgba(14,165,233,0.1); color: var(--fhlo-teal); }
.fhlo-badge--amber { background: rgba(245,158,11,0.1); color: var(--fhlo-amber-hover); }
.fhlo-badge--green { background: rgba(16,185,129,0.1); color: #059669; }

/* ─── Pricing Cards ─────────────────────────────────────────────────── */
.fhlo-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.fhlo-pricing-card {
  background: #fff;
  border: 1px solid var(--fhlo-border);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  transition: box-shadow var(--transition);
}

.fhlo-pricing-card:hover { box-shadow: var(--shadow-card-hover); }

.fhlo-pricing-card--featured {
  border-color: var(--fhlo-teal);
  box-shadow: 0 0 0 2px rgba(14,165,233,0.15), var(--shadow-card);
  position: relative;
}

.fhlo-pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--fhlo-teal);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 12px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.fhlo-pricing-card__tier {
  font-family: var(--font-headline);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fhlo-steel);
  margin-bottom: 8px;
}

.fhlo-pricing-card__price {
  font-family: var(--font-headline);
  font-size: 40px;
  font-weight: 700;
  color: var(--fhlo-graphite);
  line-height: 1;
  margin-bottom: 4px;
}

.fhlo-pricing-card__price span {
  font-size: 16px;
  color: var(--fhlo-steel);
  font-weight: 400;
}

.fhlo-pricing-card__volume {
  font-size: 13px;
  color: var(--fhlo-steel);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--fhlo-border);
}

.fhlo-pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.fhlo-pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 14px;
  color: var(--fhlo-graphite);
}

.fhlo-pricing-card__feature i {
  color: var(--fhlo-green);
  font-size: 13px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ─── Blog ──────────────────────────────────────────────────────────── */
.fhlo-blog-hero {
  background: var(--fhlo-navy);
  padding: 72px 0;
  text-align: center;
}

.fhlo-blog-hero h1 { color: #fff; margin-bottom: 12px; }
.fhlo-blog-hero p  { color: var(--fhlo-light-text); font-size: 17px; }

.fhlo-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.fhlo-blog-card {
  background: #fff;
  border: 1px solid var(--fhlo-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

.fhlo-blog-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.fhlo-blog-card__thumb {
  width: 100%;
  height: 192px;
  object-fit: cover;
  background: var(--fhlo-surface);
}

.fhlo-blog-card__body {
  padding: 20px;
}

.fhlo-blog-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.fhlo-category-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fhlo-category-badge--technical { background: rgba(14,165,233,0.1); color: var(--fhlo-teal-dark); }
.fhlo-category-badge--strategy  { background: rgba(245,158,11,0.1); color: #92400E; }
.fhlo-category-badge--industry  { background: rgba(16,185,129,0.1); color: #065F46; }

.fhlo-blog-card__date {
  font-size: 12px;
  color: var(--fhlo-steel);
  font-family: var(--font-mono);
}

.fhlo-blog-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
  line-height: 1.35;
  color: var(--fhlo-graphite);
}

.fhlo-blog-card__excerpt {
  font-size: 13.5px;
  color: var(--fhlo-steel);
  line-height: 1.6;
  margin-bottom: 16px;
}

.fhlo-blog-card__read {
  font-size: 13px;
  font-weight: 600;
  color: var(--fhlo-teal);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.fhlo-blog-card__read:hover { gap: 9px; color: var(--fhlo-teal-dark); }

.fhlo-blog-featured {
  background: #fff;
  border: 1px solid var(--fhlo-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 36px;
  transition: box-shadow var(--transition);
}

.fhlo-blog-featured:hover { box-shadow: var(--shadow-card-hover); }

.fhlo-blog-featured__thumb {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  background: var(--fhlo-surface);
}

.fhlo-blog-featured__body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fhlo-blog-featured__body h2 {
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 10px;
}

/* ─── Blog Article ──────────────────────────────────────────────────── */
.fhlo-article-hero {
  background: var(--fhlo-navy);
  padding: 64px 0 56px;
}

.fhlo-article-hero__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.fhlo-article-hero h1 {
  color: #fff;
  font-size: clamp(26px, 3.5vw, 42px);
  max-width: 860px;
}

.fhlo-article-hero__excerpt {
  color: var(--fhlo-light-text);
  font-size: 17px;
  max-width: 740px;
  margin-top: 16px;
}

.fhlo-article-hero__cover {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius-card);
  margin-top: 40px;
}

.fhlo-article-body {
  padding: 72px 0 80px;
}

.fhlo-article-body__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

.fhlo-article-body h2 { font-size: 24px; margin: 40px 0 14px; }
.fhlo-article-body h3 { font-size: 19px; margin: 28px 0 10px; }
.fhlo-article-body p  { margin-bottom: 20px; font-size: 16.5px; }
.fhlo-article-body ul, .fhlo-article-body ol { padding-left: 24px; margin-bottom: 20px; list-style: disc; }
.fhlo-article-body li { margin-bottom: 8px; font-size: 16px; color: var(--fhlo-graphite); }

/* ─── Subscribe Strip ───────────────────────────────────────────────── */
.fhlo-subscribe {
  background: var(--fhlo-surface);
  border: 1px solid var(--fhlo-border);
  border-radius: var(--radius-card);
  padding: 40px 48px;
  text-align: center;
  margin-top: 48px;
}

.fhlo-subscribe h3 { margin-bottom: 8px; }
.fhlo-subscribe p { color: var(--fhlo-steel); font-size: 15px; margin-bottom: 24px; }

.fhlo-subscribe__form {
  display: flex;
  max-width: 420px;
  margin: 0 auto;
  gap: 10px;
}

.fhlo-subscribe__input {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid var(--fhlo-border);
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--fhlo-graphite);
  background: #fff;
  outline: none;
  transition: border-color var(--transition);
}

.fhlo-subscribe__input:focus { border-color: var(--fhlo-teal); }

/* ─── Contact Form ──────────────────────────────────────────────────── */
.fhlo-form {
  background: #fff;
  border: 1px solid var(--fhlo-border);
  border-radius: var(--radius-card);
  padding: 40px;
  box-shadow: var(--shadow-card);
}

.fhlo-form-group {
  margin-bottom: 20px;
}

.fhlo-form-label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--fhlo-graphite);
  margin-bottom: 6px;
}

.fhlo-form-input,
.fhlo-form-select,
.fhlo-form-textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--fhlo-border);
  border-radius: var(--radius-input);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--fhlo-graphite);
  background: #fff;
  outline: none;
  transition: border-color var(--transition);
}

.fhlo-form-input:focus,
.fhlo-form-select:focus,
.fhlo-form-textarea:focus { border-color: var(--fhlo-teal); }

.fhlo-form-textarea { resize: vertical; min-height: 100px; line-height: 1.6; }

.fhlo-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ─── Team / About ──────────────────────────────────────────────────── */
.fhlo-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.fhlo-team-card {
  text-align: center;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--fhlo-border);
  border-radius: var(--radius-card);
}

.fhlo-team-card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--fhlo-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: var(--font-headline);
  font-size: 24px;
  font-weight: 600;
  color: #fff;
}

.fhlo-team-card__photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 2px solid var(--fhlo-border);
}

.fhlo-team-card__name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.fhlo-team-card__role {
  font-size: 13px;
  color: var(--fhlo-steel);
  font-family: var(--font-mono);
}

/* ─── FAQ ───────────────────────────────────────────────────────────── */
.fhlo-faq-list { display: flex; flex-direction: column; gap: 0; }

.fhlo-faq-item {
  border-bottom: 1px solid var(--fhlo-border);
}

.fhlo-faq-item:first-child { border-top: 1px solid var(--fhlo-border); }

.fhlo-faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--fhlo-graphite);
  text-align: left;
  background: none;
  cursor: pointer;
  font-family: inherit;
  transition: color var(--transition);
}

.fhlo-faq-trigger:hover { color: var(--fhlo-navy); }
.fhlo-faq-trigger i { transition: transform 0.2s; flex-shrink: 0; color: var(--fhlo-teal); }
.fhlo-faq-trigger[aria-expanded="true"] i { transform: rotate(180deg); }

.fhlo-faq-content {
  display: none;
  padding: 0 0 18px;
  font-size: 15px;
  color: var(--fhlo-steel);
  line-height: 1.7;
}

.fhlo-faq-content.open { display: block; }

/* ─── Cookie Banner ─────────────────────────────────────────────────── */
.fhlo-cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--fhlo-navy-deep);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 18px 24px;
  max-width: 680px;
  width: calc(100% - 32px);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}

.fhlo-cookie-banner__text {
  flex: 1;
  min-width: 240px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.8);
  line-height: 1.55;
}

.fhlo-cookie-banner__text a {
  color: var(--fhlo-teal);
  text-decoration: underline;
}

.fhlo-cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

#cookie-banner { display: flex; }
#cookie-banner.hidden { display: none; }

/* ─── Legal pages ───────────────────────────────────────────────────── */
.fhlo-legal-body {
  padding: 72px 0;
}

.fhlo-legal-body h2 {
  font-size: 20px;
  margin: 40px 0 12px;
  padding-left: 16px;
  border-left: 3px solid var(--fhlo-amber);
}

.fhlo-legal-body h3 {
  font-size: 16px;
  margin: 24px 0 8px;
}

.fhlo-legal-body p, .fhlo-legal-body li {
  font-size: 15px;
  color: var(--fhlo-steel);
  line-height: 1.75;
}

.fhlo-legal-body ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.fhlo-legal-body li { margin-bottom: 6px; }

.fhlo-legal-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
}

.fhlo-legal-body table th {
  background: var(--fhlo-surface);
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
  border-bottom: 1px solid var(--fhlo-border);
}

.fhlo-legal-body table td {
  padding: 9px 14px;
  border-bottom: 1px solid var(--fhlo-border);
  vertical-align: top;
}

.fhlo-legal-body table tr:nth-child(even) td { background: rgba(235,240,247,0.4); }

.fhlo-ccpa-banner {
  background: var(--fhlo-navy);
  color: #fff;
  border-radius: 8px;
  padding: 20px 24px;
  margin: 24px 0;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.fhlo-ccpa-banner__text { flex: 1; font-size: 14px; }
.fhlo-ccpa-banner__text strong { display: block; margin-bottom: 4px; font-size: 16px; }

.fhlo-rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.fhlo-right-card {
  border: 1px solid var(--fhlo-border);
  border-radius: var(--radius-card);
  padding: 16px 18px;
}

.fhlo-right-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--fhlo-navy);
  margin-bottom: 6px;
}

.fhlo-right-card p {
  font-size: 13.5px;
  color: var(--fhlo-steel);
}

/* ─── Fade-in animations ─────────────────────────────────────────────── */
.fhlo-fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fhlo-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── 404 ───────────────────────────────────────────────────────────── */
.fhlo-404 {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}

.fhlo-404__number {
  font-family: var(--font-headline);
  font-size: clamp(80px, 12vw, 140px);
  font-weight: 700;
  color: var(--fhlo-navy);
  line-height: 1;
  opacity: 0.15;
  margin-bottom: -20px;
}

.fhlo-404__title {
  font-size: 24px;
  color: var(--fhlo-graphite);
  margin-bottom: 10px;
}

.fhlo-404__sub {
  font-size: 16px;
  color: var(--fhlo-steel);
  margin-bottom: 32px;
}

/* ─── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .fhlo-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .fhlo-trust-icons { grid-template-columns: repeat(2, 1fr); }
  .fhlo-metrics { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .fhlo-hero__inner { grid-template-columns: 1fr; }
  .fhlo-hero__viz { display: none; }
  .fhlo-steps { grid-template-columns: 1fr; }
  .fhlo-step::after { display: none; }
  .fhlo-blog-featured { grid-template-columns: 1fr; }
  .fhlo-blog-featured__thumb { min-height: 200px; max-height: 220px; }
  .fhlo-pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .fhlo-footer__grid { grid-template-columns: 1fr 1fr; }
  .fhlo-founder-cta__inner { grid-template-columns: 1fr; }
  .fhlo-founder-cta__portrait { display: none; }
}

@media (max-width: 768px) {
  .fhlo-nav__links, .fhlo-nav__actions { display: none; }
  .fhlo-nav__hamburger { display: flex; }
  .fhlo-grid-3, .fhlo-blog-grid { grid-template-columns: 1fr; }
  .fhlo-grid-2 { grid-template-columns: 1fr; }
  .fhlo-signal-list { grid-template-columns: 1fr; }
  .fhlo-section { padding: 60px 0; }
  .fhlo-trust-band__inner { gap: 0; flex-direction: column; }
  .fhlo-trust-metric { border-right: none; border-bottom: 1px solid var(--fhlo-border); width: 100%; justify-content: center; }
  .fhlo-trust-metric:last-child { border-bottom: none; }
  .fhlo-form-row { grid-template-columns: 1fr; }
  .fhlo-metrics { grid-template-columns: 1fr; background: none; gap: 0; }
  .fhlo-metric { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .fhlo-metric:last-child { border-bottom: none; }
  .fhlo-team-grid { grid-template-columns: repeat(2, 1fr); }
  .fhlo-footer__grid { grid-template-columns: 1fr; }
  .fhlo-subscribe__form { flex-direction: column; }
  .fhlo-blog-card__body { padding: 16px; }
  .fhlo-trust-icons { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .fhlo-container { padding: 0 16px; }
  .fhlo-hero { padding: 64px 0 56px; }
  .fhlo-team-grid { grid-template-columns: 1fr; }
  .fhlo-hero__ctas { flex-direction: column; align-items: flex-start; }
  .fhlo-cookie-banner { flex-direction: column; gap: 14px; }
  .fhlo-cookie-banner__actions { width: 100%; justify-content: center; }
}


/* ─── Orphan fixes ──────────────────────────────────────────── */

.fhlo-article-list {
  list-style: none;
  padding: 0;
  margin: 1.25em 0;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.fhlo-article-list li {
  padding-left: 1.25em;
  position: relative;
  color: var(--fhlo-graphite);
  line-height: 1.6;
}

.fhlo-article-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--fhlo-amber);
}

.fhlo-article-section {
  margin: 2rem 0;
}

.fhlo-article-section h2,
.fhlo-article-section h3 {
  margin-bottom: 0.75em;
}

.fhlo-article-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
  margin: 1.5em 0;
}

.fhlo-article-table th {
  background: var(--fhlo-navy);
  color: var(--fhlo-white);
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.fhlo-article-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--fhlo-border);
  color: var(--fhlo-graphite);
}

.fhlo-article-table tr:nth-child(even) td {
  background: var(--fhlo-surface);
}

.fhlo-card__icon--teal {
  color: var(--fhlo-teal);
}

.fhlo-hero__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.fhlo-txn-stream-panel {
  background: var(--fhlo-code-bg);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: var(--radius-card);
  padding: 20px;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--fhlo-light-text);
  overflow: hidden;
}


/* ─── Code syntax highlight stubs (Prism-compatible) ─── */
.language-json,
.language-python {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  display: block;
  overflow-x: auto;
}
