/* FZD Global — Nexus Data Consulting design system (from Stitch)
   Aesthetic: dark immersive backgrounds, electric cyan + lime accents,
   Montserrat headlines + Inter body + Geist Mono labels. Glassmorphism
   cards via luminous outlines and soft glows (no heavy shadows).
   Old variable names retained as aliases so all 39 pages re-skin automatically.
*/

:root {
  /* ── Surfaces — Stitch "Midnight Foundation" tonal layering ─── */
  --bg: #101415;
  --bg-2: #191c1e;
  --bg-3: #1d2022;
  --surface: rgba(18,24,34,0.88);
  --surface-2: rgba(26,32,44,0.90);
  --surface-3: rgba(34,40,52,0.92);
  --surface-lowest: #0b0f10;

  /* ── Aliases for legacy CSS in interior pages ────────────── */
  --canvas: var(--bg);
  --canvas-warm: var(--bg-2);
  --paper: var(--bg-3);
  --navy: var(--surface-lowest);
  --navy-2: var(--bg-2);
  --navy-3: var(--bg-3);
  --navy-fade: rgba(255,255,255,0.04);

  /* ── Text — high-legibility on dark ──────────────────────── */
  --text: #e0e3e5;
  --text-2: #bbc9cf;
  --text-3: #859398;
  --ink: var(--text);
  --ink-2: var(--text-2);
  --muted: var(--text-3);

  /* ── Borders — luminous outlines (no shadows) ────────────── */
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.16);
  --border-tonal: #3c494e;
  --rule: var(--border);
  --rule-strong: var(--border-strong);

  /* ── Accent — Stitch "Electric Blue" + "Lime High-Performance" ── */
  --accent-1: #00d4ff;
  --accent-2: #3cd7ff;
  --accent-3: #a8e8ff;
  --accent-light-1: #a8e8ff;
  --accent-light-2: #b4ebff;
  --accent-light-3: #00d4ff;
  --lime: #caf300;
  --lime-bright: #b0d500;

  /* Aliases — old coral/gold tokens map to new accent stops */
  --coral: var(--accent-1);
  --coral-deep: #00b3d9;
  --gold: var(--lime);

  /* ── Gradients (cyan→lime is the Stitch signature) ──────── */
  --gradient: var(--accent-1);
  --gradient-text: linear-gradient(135deg, #00d4ff 0%, #caf300 100%);
  --gradient-soft: rgba(0, 212, 255, 0.08);
  --gradient-cyan-lime: linear-gradient(135deg, #00d4ff 0%, #caf300 100%);

  /* ── Glow states (Stitch signature) ──────────────────────── */
  --glow: 0 0 24px rgba(0, 212, 255, 0.18);
  --glow-strong: 0 0 40px rgba(0, 212, 255, 0.3), 0 0 80px rgba(0, 212, 255, 0.12);
  --glow-lime: 0 0 24px rgba(202, 243, 0, 0.22);
  --shadow-soft: 0 1px 2px rgba(0,0,0,0.4), 0 8px 24px rgba(0,0,0,0.25);
  --shadow-lift: 0 4px 12px rgba(0,0,0,0.4), 0 24px 48px rgba(0,0,0,0.4);

  /* ── Type — Stitch Montserrat / Inter / Geist Mono ───────── */
  --display: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "Geist Mono", "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* ── Layout ──────────────────────────────────────────────── */
  --container: 1280px;
  --gutter: clamp(20px, 4vw, 48px);
  --radius: 4px;
  --radius-sm: 2px;
  --radius-lg: 12px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; color-scheme: dark; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: rgba(0, 212, 255, 0.35); color: var(--text); }

/* ── Client logo ticker ─────────────────────────────────────── */
.client-ticker {
  padding: 32px 0 28px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}
.client-ticker::before,
.client-ticker::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}
.client-ticker::before { left: 0; background: linear-gradient(90deg, var(--bg-2), transparent); }
.client-ticker::after  { right: 0; background: linear-gradient(-90deg, var(--bg-2), transparent); }
.client-ticker__label {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 24px;
  font-family: var(--mono);
}
.client-ticker__track {
  display: flex;
  width: max-content;
  animation: clientScroll 65s linear infinite;
}
.client-ticker__track:hover { animation-play-state: paused; }
.client-ticker__set {
  display: inline-flex;
  align-items: center;
  gap: 60px;
  padding-right: 60px;
}
.client-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  user-select: none;
}
.client-logo img {
  height: 28px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.7);
  transition: filter 0.25s;
  display: block;
}
.client-logo:hover img { filter: brightness(0) invert(1) opacity(1); }
.client-logo__name {
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  font-family: var(--mono);
  white-space: nowrap;
  opacity: 0.55;
  transition: opacity 0.25s;
}
.client-logo:hover .client-logo__name { opacity: 0.9; }
@keyframes clientScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Clients & Partners grid (about page) ──────────────────── */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px 16px;
  margin-top: 40px;
}
@media (max-width: 900px) {
  .logo-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 600px) {
  .logo-grid { grid-template-columns: repeat(3, 1fr); }
}
.logo-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 20px 16px 16px;
  cursor: default;
}
.logo-pill img {
  height: 44px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.2s;
  display: block;
  flex-shrink: 0;
}
.logo-pill:hover img { opacity: 1; }
.logo-pill__name {
  font-size: 11px;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.52);
  font-family: var(--sans);
  text-align: center;
  line-height: 1.3;
  word-break: break-word;
  hyphens: auto;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
}
.logo-pill:hover .logo-pill__name {
  opacity: 1;
  transform: translateY(0);
}
.logo-pill--partner img {
  height: 52px;
  opacity: 0.85;
}
.logo-pill--partner:hover img { opacity: 1; }
.logo-pill--partner .logo-pill__name {
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
}
.logo-pill--partner:hover .logo-pill__name {
  opacity: 1;
  transform: translateY(0);
}

/* ── Top accent bar — gradient cyan → lime ───────────────── */
.top-bar {
  height: 2px;
  background: var(--gradient-cyan-lime);
}

/* ── Header — frosted glass, backdrop blur ───────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(16, 20, 21, 0.72);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.005em;
  color: var(--text);
}
.brand__gmbh {
  color: inherit;
  margin-left: 3px;
}
.brand__mark {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  background: #fff url("fzd-mark.png") center/86% no-repeat;
  border-radius: 50%;
  font-size: 0;
  color: transparent;
  text-indent: -9999px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
}
.brand__sub {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--text-3);
  text-transform: uppercase;
  margin-top: 2px;
  font-weight: 400;
}
.brand__stack { display: flex; flex-direction: column; line-height: 1; gap: 4px; }
.brand__stack > span:first-child { white-space: nowrap; text-transform: uppercase; }

/* ── Global CTA band — brand gradient, no image ─────────── */
.cta-band {
  background:
    radial-gradient(ellipse at 15% 50%, rgba(0,212,255,0.09) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 50%, rgba(202,243,0,0.07) 0%, transparent 55%),
    linear-gradient(160deg, #090d17 0%, #101415 45%, #0c1119 100%) !important;
}

/* ── Author avatar photo ─────────────────────────────────── */
.av--photo {
  background-size: cover !important;
  background-repeat: no-repeat !important;
  border-radius: 50% !important;
  font-size: 0 !important;
  color: transparent !important;
  overflow: hidden;
}

.nav { display: flex; align-items: center; gap: 26px; }
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  position: relative;
  padding: 6px 0;
  transition: color .2s;
  white-space: nowrap;
}
.nav a:hover { color: var(--text); }
.nav a.is-active { color: var(--accent-1); }
.nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--accent-1);
  box-shadow: 0 0 8px rgba(0,212,255,0.5);
}

.header-tools { display: flex; align-items: center; gap: 14px; }

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  overflow: hidden;
  gap: 0;
}
.lang-switch button {
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.28);
  padding: 8px 0;
  width: 40px;
  text-align: center;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  transition: color .2s, background .2s;
  cursor: pointer;
}
.lang-switch button:hover:not(.is-active) {
  color: rgba(255,255,255,0.55);
}
.lang-switch button.is-active {
  background: transparent;
  color: rgba(255,255,255,0.92);
  font-weight: 600;
}

/* ── Buttons — solid cyan primary, ghost secondary ───────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.88);
  transition: background .2s, color .2s, transform .2s, border-color .2s, box-shadow .2s;
  cursor: pointer;
}
.btn:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.30);
  color: #fff;
  box-shadow: 0 0 18px rgba(255,255,255,0.05);
}
.btn--ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.20);
  color: rgba(255,255,255,0.70);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.30);
  color: rgba(255,255,255,0.90);
}
.btn--coral {
  background: rgba(0,212,255,0.10);
  border-color: rgba(0,212,255,0.32);
  color: var(--accent-1);
}
.btn--coral:hover {
  background: rgba(0,212,255,0.16);
  border-color: rgba(0,212,255,0.55);
  color: #fff;
  box-shadow: 0 0 20px rgba(0,212,255,0.10);
}
.btn--lg { padding: 8px 18px; font-size: 12px; letter-spacing: 0.06em; }
.btn .arr { transition: transform .25s; }
.btn:hover .arr { transform: translateX(4px); }

/* ── Section primitives ─────────────────────────────────── */
.section { padding: clamp(72px, 10vw, 140px) 0; position: relative; }
.section--alt { background: var(--bg-2); }
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-1);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--accent-1);
  display: inline-block;
}
.h-display {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(40px, 5.6vw, 84px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0;
  text-wrap: balance;
}
.h-display em,
.h-display .grad {
  font-style: normal;
  font-weight: 700;
  background: var(--gradient-cyan-lime);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-bottom: 0.15em;
  display: inline-block;
}
.h-section {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--text);
  margin: 0;
  text-wrap: balance;
}
.h-card {
  font-family: var(--display);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.22;
  color: var(--text);
  margin: 0;
  letter-spacing: -0.005em;
}
.lead {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-2);
  max-width: 60ch;
  margin: 16px 0 0;
}
.lead strong { color: var(--text); font-weight: 600; }

.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: clamp(40px, 6vw, 72px);
}
@media (min-width: 900px) {
  .section-head {
    grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
    align-items: end;
    gap: 64px;
  }
}

/* ── Reveal animation ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

/* ── Footer — surface-container-low, slight differentiation ─ */
.site-footer {
  background: var(--surface-lowest);
  color: var(--text-2);
  padding: 96px 0 36px;
  margin-top: 0;
  border-top: 1px solid var(--border);
}
.site-footer::before { display: none; }
.site-footer .container { display: grid; gap: 56px; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 48px;
  align-items: start;
}
@media (max-width: 980px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }
.site-footer .brand { color: var(--text); }
.site-footer .brand__mark {
  background: #fff url("fzd-mark.png") center/86% no-repeat;
  border-color: rgba(255,255,255,0.2);
}
.footer-tagline {
  font-family: var(--display);
  font-weight: 600;
  font-size: 22px;
  background: var(--gradient-cyan-lime);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 24px 0 12px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.footer-address { font-size: 13px; color: var(--text-3); max-width: 240px; line-height: 1.6; }
.footer-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-2);
  margin: 0 0 18px;
  font-weight: 500;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: var(--text-2);
  transition: color .2s;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
}
.footer-col a:hover {
  color: var(--accent-1);
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-3);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom .legal-links { display: flex; gap: 24px; }
.footer-bottom .legal-links a:hover { color: var(--accent-1); }

/* ── Image placeholders — dark glass with cyan tint ──────── */
.imgph {
  position: relative;
  background:
    linear-gradient(135deg, rgba(0,212,255,0.06), rgba(202,243,0,0.04)),
    var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.imgph::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(0,212,255,0.18), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(60,215,255,0.12), transparent 50%);
  filter: blur(40px);
  opacity: 0.7;
}
.imgph::after {
  content: attr(data-label);
  position: absolute;
  left: 16px;
  bottom: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--text);
  text-transform: uppercase;
  background: rgba(11, 15, 16, 0.85);
  backdrop-filter: blur(8px);
  padding: 6px 10px;
  border-left: 2px solid var(--accent-1);
  border-radius: 0;
  z-index: 1;
}

.imgph--portrait { aspect-ratio: 4/5; }
.imgph--landscape { aspect-ratio: 16/10; }
.imgph--square { aspect-ratio: 1; }
.imgph--hero { aspect-ratio: 4/5; min-height: 480px; }
.imgph--dark { background: var(--surface-lowest); }

/* ── Cards — glassmorphism with luminous outline ─────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color .25s, transform .25s, box-shadow .25s, background .25s;
  position: relative;
  backdrop-filter: blur(8px);
}
.card::before { display: none; }
.card--link { cursor: pointer; }
.card--link:hover {
  border-color: var(--accent-1);
  transform: translateY(-3px);
  box-shadow: var(--glow);
  background: rgba(255,255,255,0.04);
}
.card > * { position: relative; z-index: 1; }
.card__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent-1);
  text-transform: uppercase;
}
.card__arrow {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-2);
}
.card--link:hover .card__arrow { color: var(--accent-1); }
.card--link:hover .card__arrow .arr { transform: translateX(4px); }
.card__arrow .arr { transition: transform .25s; }

/* ── Tag pill — low-opacity cyan fill ─────────────────────── */
.tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-3);
  padding: 6px 11px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 100px;
}

/* ── Editorial split ────────────────────────────────────── */
.split-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 56px);
}
@media (min-width: 900px) {
  .split-2 { grid-template-columns: 1fr 1fr; }
  .split-2--6-5 { grid-template-columns: 6fr 5fr; }
  .split-2--5-6 { grid-template-columns: 5fr 6fr; }
}

/* ── Page hero (interior pages) — immersive dark with glow ── */
.page-hero {
  background: var(--bg);
  color: var(--text);
  padding: clamp(96px, 14vw, 180px) 0 clamp(64px, 9vw, 112px);
  position: relative;
  overflow: hidden;
  border-bottom: 0;
}
/* Bottom fade — blends page-hero into first content section */
.page-hero::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 140px;
  background: linear-gradient(to bottom, transparent, #101415);
  z-index: 3;
  pointer-events: none;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 10%, rgba(0,212,255,0.12), transparent 50%),
    radial-gradient(ellipse at 85% 30%, rgba(202,243,0,0.06), transparent 50%);
  filter: blur(30px);
  pointer-events: none;
}
.page-hero .eyebrow { color: var(--accent-1); background: none; -webkit-background-clip: initial; background-clip: initial; }
.page-hero .h-display { color: var(--text); }
.page-hero .lead { color: var(--text-2); }

.breadcrumb {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 24px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.breadcrumb a { color: var(--text-2); transition: color .2s; background: none; -webkit-background-clip: initial; background-clip: initial; }
.breadcrumb a:hover { color: var(--accent-1); background: none; -webkit-background-clip: initial; background-clip: initial; }
.breadcrumb__sep { color: var(--text-3); opacity: 0.5; }

/* ── Long-form prose ────────────────────────────────────── */
.prose {
  max-width: 70ch;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-2);
}
.prose p { margin: 0 0 1.4em; }
.prose h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 32px;
  color: var(--text);
  margin: 2em 0 0.6em;
  letter-spacing: -0.015em;
}
.prose h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 19px;
  color: var(--text);
  margin: 1.6em 0 0.4em;
  letter-spacing: -0.005em;
}
.prose ul { padding-left: 20px; }
.prose ul li { margin: 0.5em 0; }
.prose blockquote {
  position: relative;
  margin: 2em 0;
  padding: 4px 0 4px 28px;
  font-family: var(--display);
  font-style: normal;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--text);
  letter-spacing: -0.005em;
  border-left: 3px solid var(--accent-1);
}
.prose blockquote::before { display: none; }
.prose code {
  font-family: var(--mono);
  font-size: 0.88em;
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  color: var(--accent-3);
}
.prose a {
  color: var(--accent-1);
  border-bottom: 1px solid rgba(0, 212, 255, 0.4);
  transition: color .2s, border-color .2s;
}
.prose a:hover { color: var(--accent-3); border-bottom-color: var(--accent-3); }

/* ── Pull quote / divider ──────────────────────────────── */
.rule { border: 0; border-top: 1px solid var(--border); margin: 0; }
.rule--gold { border-top: 1px solid var(--lime); height: 0; background: transparent; }
.rule--coral { border-top: 1px solid var(--accent-1); height: 0; background: transparent; }

/* ── Filter chips ───────────────────────────────────────── */
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.chip {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 9px 16px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-2);
  cursor: pointer;
  border-radius: 100px;
  transition: all .25s;
}
.chip:hover { border-color: var(--accent-1); color: var(--accent-1); }
.chip.is-on {
  background: var(--accent-1);
  color: #00171c;
  border-color: var(--accent-1);
  box-shadow: var(--glow);
  font-weight: 600;
}

/* ── Mobile menu ────────────────────────────────────────── */
.menu-toggle { display: none; }
@media (max-width: 880px) {
  .nav { display: none; }
  .menu-toggle {
    display: inline-flex;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text);
    width: 40px; height: 40px;
    align-items: center; justify-content: center;
    border-radius: var(--radius);
    flex-shrink: 0;
  }
  .header-tools .btn { display: none; }

  body.menu-open .nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 80px;
    left: 0; right: 0;
    background: rgba(11, 15, 16, 0.95);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    padding: 24px var(--gutter) 32px;
    gap: 4px;
    z-index: 59;
    box-shadow: 0 24px 48px rgba(0,0,0,0.6);
  }
  body.menu-open .nav a {
    padding: 14px 0;
    font-size: 18px;
    border-bottom: 1px solid var(--border);
  }
  body.menu-open .menu-toggle {
    background: var(--accent-1);
    border-color: var(--accent-1);
    color: #00171c;
  }
}

/* utility */
.muted { color: var(--text-3); }
.center { text-align: center; }
.flex { display: flex; }
.gap-12 { gap: 12px; }
.gap-24 { gap: 24px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

/* ═══════════════════════════════════════════════════════════
   MOBILE RESPONSIVENESS
   ═══════════════════════════════════════════════════════════ */

/* ── Breadcrumb: always allow wrapping ──────────────────── */
.breadcrumb { flex-wrap: wrap; }

/* ── Post meta bar: always allow wrapping ───────────────── */
.post-meta-bar { flex-wrap: wrap !important; }

/* ── Typography: reduce minimum sizes for small phones ──── */
@media (max-width: 500px) {
  .h-display { font-size: clamp(28px, 8.5vw, 40px); }
  .h-section { font-size: clamp(22px, 7vw, 32px); }
  .lead { font-size: 16px; }
}

/* ── Page hero: reduce heading size and padding on phones ── */
@media (max-width: 500px) {
  .page-hero { padding-top: 80px; padding-bottom: 48px; }
  .page-hero .h-display { font-size: clamp(26px, 8vw, 44px) !important; }
}

/* ── Section: reduce vertical padding on phones ─────────── */
@media (max-width: 500px) {
  .section { padding: clamp(48px, 10vw, 72px) 0; }
}

/* ── Brand: tighten on very narrow screens (<370px) ──────── */
@media (max-width: 370px) {
  .brand { font-size: 15px; gap: 8px; }
  .brand__mark { width: 28px; height: 28px; flex: 0 0 28px; }
  .brand__sub { display: none; }
  .lang-switch button { width: 34px; }
  .site-header__inner { height: 64px; }
}

/* ── Author card: stack vertically on phones ─────────────── */
@media (max-width: 580px) {
  .author-card { grid-template-columns: 1fr; }
  .author-card .av { width: 56px; height: 56px; }
}

/* ── Client ticker: reduce fade width on phones ─────────── */
@media (max-width: 600px) {
  .client-ticker::before,
  .client-ticker::after { width: 48px; }
  .client-ticker__set { gap: 32px; padding-right: 32px; }
}

/* ── Logo grid: tighter on small phones ─────────────────── */
@media (max-width: 480px) {
  .logo-grid { grid-template-columns: repeat(2, 1fr); gap: 12px 10px; }
}
@media (max-width: 500px) {
  .logo-pill { padding: 14px 8px 12px; }
  .logo-pill img { height: 28px; max-width: 100%; }
  .logo-pill__name { font-size: 9px; white-space: normal; }
}

/* ── Footer: tighten padding and stack bottom row ────────── */
@media (max-width: 560px) {
  .site-footer { padding-top: 56px; padding-bottom: 28px; }
  .site-footer .container { gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ── Cards: reduce padding on phones ───────────────────── */
@media (max-width: 480px) {
  .card { padding: 20px 16px; }
}

/* ── Hero portrait: release min-height on mobile ─────────── */
@media (max-width: 640px) {
  .imgph--hero { min-height: 0; }
}

/* ── Buttons: ensure tap targets are large enough ────────── */
@media (max-width: 480px) {
  .btn { padding: 12px 18px; }
  .btn--lg { padding: 12px 20px; }
}

/* ── Insights post cards: tighten image height on phones ─── */
@media (max-width: 480px) {
  .pc-img { height: 130px; }
}

/* ── Related posts grid: 1 column on small phones ───────── */
@media (max-width: 480px) {
  .related-grid { grid-template-columns: 1fr !important; }
}

/* ── Field grid in contact form: 1 column below 500px ───── */
@media (max-width: 500px) {
  .field-grid { grid-template-columns: 1fr; }
}

/* ── CTA band email link: smaller on phones ──────────────── */
@media (max-width: 500px) {
  .cta-band__email { font-size: 16px; }
}

/* ── Back-to-top button ──────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--text-2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .25s, visibility .25s, transform .25s, border-color .25s, background .25s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.back-to-top svg {
  transition: transform .25s;
}
.back-to-top:hover {
  border-color: var(--accent-1);
  background: rgba(0, 212, 255, 0.1);
  color: var(--accent-1);
}
.back-to-top:hover svg {
  transform: translateY(-2px);
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (max-width: 480px) {
  .back-to-top { bottom: 20px; right: 20px; width: 40px; height: 40px; }
}

/* ── Service cards: stack CTA below content on mobile ─────── */
@media (max-width: 640px) {
  .svc-card {
    grid-template-columns: auto 1fr !important;
    grid-template-rows: auto auto !important;
  }
  .svc-card__cta {
    grid-column: 2 !important;
    grid-row: 2 !important;
    margin-top: 8px;
  }
}

/* ——— Privacy Modal ——————————————————————————————— */
#fzd-privacy-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(7, 9, 15, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 9998;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
#fzd-privacy-overlay.is-open {
  display: flex;
  animation: fzd-pm-fade 0.2s ease;
}
@keyframes fzd-pm-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
#fzd-privacy-panel {
  background: #191c1e;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  max-width: 720px;
  width: 100%;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0,0,0,0.6), 0 24px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,212,255,0.06);
  animation: fzd-pm-slide 0.25s ease;
}
@keyframes fzd-pm-slide {
  from { transform: translateY(14px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
#fzd-privacy-header {
  padding: 24px 28px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-shrink: 0;
}
.fzd-pm-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-1);
  margin-bottom: 5px;
}
.fzd-pm-title {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}
.fzd-pm-date {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--text-3);
  margin-top: 5px;
}
#fzd-privacy-close {
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-3);
  cursor: pointer;
  padding: 5px 10px;
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
  transition: color 0.15s, border-color 0.15s;
}
#fzd-privacy-close:hover {
  color: var(--text);
  border-color: var(--border-strong);
}
#fzd-privacy-body {
  padding: 28px;
  overflow-y: auto;
  flex: 1;
  overscroll-behavior: contain;
}
#fzd-privacy-body h3 {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-1);
  margin: 28px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
#fzd-privacy-body h3:first-child { margin-top: 0; }
#fzd-privacy-body h4 {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin: 16px 0 7px;
}
#fzd-privacy-body p {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.68;
  color: var(--text-2);
  margin: 0 0 10px;
}
#fzd-privacy-body ul {
  margin: 0 0 10px;
  padding: 0;
  list-style: none;
}
#fzd-privacy-body li {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-2);
  padding: 3px 0 3px 18px;
  position: relative;
}
#fzd-privacy-body li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent-1);
  font-family: var(--mono);
  font-size: 11px;
}
#fzd-privacy-body .fzd-pm-legal {
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.6;
  color: var(--text-3);
  padding: 8px 12px;
  border-left: 2px solid rgba(0,212,255,0.3);
  margin: 6px 0 14px;
}
#fzd-privacy-body address {
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.85;
  color: var(--text-2);
  font-style: normal;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 12px 16px;
  margin: 8px 0 14px;
}
#fzd-privacy-body a { color: var(--accent-1); text-decoration: none; }
#fzd-privacy-body a:hover { text-decoration: underline; }
.fzd-pm-doc-footer {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--text-3);
  text-align: center;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
@media (max-width: 600px) {
  #fzd-privacy-header { padding: 18px 20px 16px; }
  #fzd-privacy-body { padding: 18px 20px; }
  .fzd-pm-title { font-size: 16px; }
}

/* ——— Terms Modal body (shares all rules with privacy body) — */
#fzd-terms-body h3 { font-family: var(--mono); font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent-1); margin: 28px 0 12px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.06); }
#fzd-terms-body h3:first-child { margin-top: 0; }
#fzd-terms-body h4 { font-family: var(--sans); font-size: 13px; font-weight: 600; color: var(--text); margin: 16px 0 7px; }
#fzd-terms-body p { font-family: var(--sans); font-size: 14px; line-height: 1.68; color: var(--text-2); margin: 0 0 10px; }
#fzd-terms-body ul { margin: 0 0 10px; padding: 0; list-style: none; }
#fzd-terms-body li { font-family: var(--sans); font-size: 14px; line-height: 1.55; color: var(--text-2); padding: 3px 0 3px 18px; position: relative; }
#fzd-terms-body li::before { content: "—"; position: absolute; left: 0; color: var(--accent-1); font-family: var(--mono); font-size: 11px; }
#fzd-terms-body .fzd-pm-legal { font-family: var(--mono); font-size: 11px; line-height: 1.6; color: var(--text-3); padding: 8px 12px; border-left: 2px solid rgba(0,212,255,0.3); margin: 6px 0 14px; }
#fzd-terms-body address { font-family: var(--mono); font-size: 12px; line-height: 1.85; color: var(--text-2); font-style: normal; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--radius); padding: 12px 16px; margin: 8px 0 14px; }
#fzd-terms-body a { color: var(--accent-1); text-decoration: none; }
#fzd-terms-body a:hover { text-decoration: underline; }
#fzd-terms-body .fzd-pm-doc-footer { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; color: var(--text-3); text-align: center; margin-top: 24px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.06); }

/* ——— Cookie Policy Modal body (shares all rules with terms/privacy body) — */
#fzd-cookies-body h3 { font-family: var(--mono); font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent-1); margin: 28px 0 12px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.06); }
#fzd-cookies-body h3:first-child { margin-top: 0; }
#fzd-cookies-body p { font-family: var(--sans); font-size: 14px; line-height: 1.68; color: var(--text-2); margin: 0 0 10px; }
#fzd-cookies-body address { font-family: var(--mono); font-size: 12px; line-height: 1.85; color: var(--text-2); font-style: normal; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--radius); padding: 12px 16px; margin: 8px 0 14px; }
#fzd-cookies-body a { color: var(--accent-1); text-decoration: none; }
#fzd-cookies-body a:hover { text-decoration: underline; }
#fzd-cookies-body .fzd-pm-doc-footer { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; color: var(--text-3); text-align: center; margin-top: 24px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.06); }
.fzd-cookie-table { width: 100%; border-collapse: collapse; margin: 0 0 14px; font-family: var(--mono); font-size: 12px; }
.fzd-cookie-table th, .fzd-cookie-table td { border: 1px solid rgba(255,255,255,0.08); padding: 8px 10px; text-align: left; vertical-align: top; color: var(--text-2); }
.fzd-cookie-table th { color: var(--accent-1); font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; font-size: 10px; background: rgba(255,255,255,0.03); }
#fzd-cookie-panel .fzd-cookie-table { font-size: 11px; }
#fzd-cookie-more:hover { color: #e0e3e5; border-color: rgba(255,255,255,0.32); }
#fzd-cookie-accept:hover { background: rgba(0,212,255,0.12); }
@media (max-width: 600px) {
  #fzd-cookie-panel { padding: 22px; }
  #fzd-cookie-panel > div:last-child { flex-direction: column; align-items: stretch; }
}
