/* ============================================================
   TOKENS — Light mode (default)
   ============================================================ */
:root {
  /* Backgrounds */
  --bg:       #ffffff;
  --surface:  #f6f8fa;
  --border:   #d1d9e0;
  --border-l: #b0b8c1;

  /* Text hierarchy */
  --white:    #1a1f29;
  --text:     #2d333b;
  --muted:    #57606a;
  --subtle:   #8b949e;

  /* Accent */
  --copper:   #0188CC;
  --copper-d: #016DA3;
  --copper-l: #33A3E0;
  --accent-secondary: #6366F1;
  --gradient: linear-gradient(135deg, #0188CC, #6366F1);
  --danger:   #cf222e;

  /* Depth */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:  0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg:  0 12px 32px rgba(0,0,0,0.12), 0 4px 8px rgba(0,0,0,0.06);
  --glow-accent: rgba(1,136,204,0.15);

  /* Theme-specific (previously hardcoded) */
  --nav-bg:         rgba(255,255,255,0.92);
  --nav-overlay:    rgba(255,255,255,1);
  --glow:           rgba(0,96,214,0.06);
  --logo-banner-bg: #ffffff;
  --card-border:    transparent;

  /* Type */
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Fraunces', serif;
  --font-mono:    'DM Mono', monospace;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --r: 8px;
}

/* ── Dark mode override ────────────────────────────── */
[data-theme="dark"] {
  --bg:       #0a0e17;
  --surface:  #111827;
  --border:   #1f2937;
  --border-l: #374151;

  --white:    #f0f6fc;
  --text:     #e6edf3;
  --muted:    #d0d7de;
  --subtle:   #8b949e;

  --copper:   #0198E1;
  --copper-d: #0180BF;
  --copper-l: #4DB8F0;
  --accent-secondary: #818CF8;
  --gradient: linear-gradient(135deg, #0198E1, #818CF8);
  --danger:   #f85149;

  --shadow-sm:  0 1px 3px rgba(0,0,0,0.3), 0 1px 2px rgba(0,0,0,0.2);
  --shadow-md:  0 4px 12px rgba(0,0,0,0.4), 0 2px 4px rgba(0,0,0,0.2);
  --shadow-lg:  0 12px 32px rgba(0,0,0,0.5), 0 4px 8px rgba(0,0,0,0.3);
  --glow-accent: rgba(1,152,225,0.2);

  --nav-bg:         rgba(10,14,23,0.92);
  --nav-overlay:    rgba(10,14,23,0.98);
  --glow:           rgba(0,112,242,0.08);
  --logo-banner-bg: #111827;
  --card-border:    rgba(255,255,255,0.06);
}

/* Smooth theme transition (applied only during toggle) */
html.theme-transition,
html.theme-transition *,
html.theme-transition *::before,
html.theme-transition *::after {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease !important;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: default;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ============================================================
   UTILITIES
   ============================================================ */
.label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

.label--copper { color: var(--copper); }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border-l);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
}

.tag::before {
  content: '';
  display: block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--copper);
}

.divider {
  border: none;
  border-top: 1px solid var(--border);
}

/* fade-up animation */
.fade-up {
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Stagger children in grids */
.fade-up.visible > *:nth-child(1) { transition-delay: 0s; }
.fade-up.visible > *:nth-child(2) { transition-delay: 0.06s; }
.fade-up.visible > *:nth-child(3) { transition-delay: 0.12s; }
.fade-up.visible > *:nth-child(4) { transition-delay: 0.18s; }
.fade-up.visible > *:nth-child(5) { transition-delay: 0.24s; }
.fade-up.visible > *:nth-child(6) { transition-delay: 0.30s; }

/* ============================================================
   NAV
   ============================================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 3rem;
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.2) 70%, transparent 100%);
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

nav.scrolled {
  background: var(--nav-bg);
  border-color: var(--border);
  backdrop-filter: blur(12px);
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

nav.scrolled .nav-logo { opacity: 1; }

.nav-logo-img {
  height: 3.8rem;
  width: auto;
  object-fit: contain;
}

/* Nav logo: white by default (hero is always dark) */
.nav-logo-dark  { display: inline; }
.nav-logo-light { display: none; }

/* When scrolled on light theme: swap to dark logo */
nav.scrolled .nav-logo-dark  { display: inline; }
nav.scrolled .nav-logo-light { display: none; }
:root:not([data-theme="dark"]) nav.scrolled .nav-logo-dark  { display: none; }
:root:not([data-theme="dark"]) nav.scrolled .nav-logo-light { display: inline; }

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240, 246, 252, 0.8);
  transition: color 0.2s ease;
}

nav.scrolled .nav-links a {
  color: var(--muted);
}

.nav-links a:hover,
.nav-links a.active { color: #fff; }

nav.scrolled .nav-links a:hover,
nav.scrolled .nav-links a.active { color: var(--white); }

.nav-cta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff !important;
  background: var(--gradient);
  padding: 0.5rem 1.25rem;
  border-radius: var(--r);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), filter 0.25s ease !important;
  box-shadow: var(--shadow-sm);
}

.nav-cta:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-md);
  filter: brightness(1.1);
  color: #fff !important;
}

.nav-cta-secondary {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240, 246, 252, 0.9) !important;
  background: transparent;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--r);
  transition: background 0.2s ease, color 0.2s ease !important;
}

nav.scrolled .nav-cta-secondary {
  color: var(--copper) !important;
  border-color: var(--copper);
}

.nav-cta-secondary:hover {
  background: var(--copper) !important;
  color: #fff !important;
  box-shadow: 0 0 12px var(--glow-accent);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 10000;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: #f0f6fc;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

nav.scrolled .hamburger-line {
  background: var(--white);
}

.nav-hamburger.open .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open .hamburger-line:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Theme Toggle */
.theme-toggle {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--r);
  cursor: pointer;
  padding: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(240, 246, 252, 0.8);
  transition: color 0.2s ease, border-color 0.2s ease;
  line-height: 0;
}

nav.scrolled .theme-toggle {
  color: var(--muted);
  border-color: var(--border);
}

.theme-toggle:hover {
  color: #f0f6fc;
  border-color: rgba(255, 255, 255, 0.5);
}

nav.scrolled .theme-toggle:hover {
  color: var(--white);
  border-color: var(--border-l);
}

.theme-toggle svg { display: block; }

/* Show moon in light mode, sun in dark mode */
.theme-toggle .icon-sun  { display: none; }
.theme-toggle .icon-moon { display: block; }

[data-theme="dark"] .theme-toggle .icon-sun  { display: block; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 0 3rem;
  position: relative;
  overflow: hidden;
}

/* Background image layer (separate for Ken Burns animation) */
.hero-bg {
  position: absolute;
  inset: -5%;
  background: url('/static/hero-bg.jpg') center center / cover no-repeat;
  z-index: 0;
  animation: kenBurns 30s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  0%   { transform: scale(1.0); }
  100% { transform: scale(1.05); }
}

/* Dark gradient overlay for text readability */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 14, 23, 0.88) 0%,
    rgba(10, 14, 23, 0.7) 40%,
    rgba(10, 14, 23, 0.35) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Subtle accent glow */
.hero::after {
  content: '';
  position: absolute;
  bottom: -10%; left: 15%;
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(0, 96, 214, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 8rem;
  padding-bottom: 4rem;
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.2s forwards;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(5rem, 10vw, 10rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
  color: #f0f6fc;
  max-width: 14ch;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.35s forwards;
}

.hero-headline .accent {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-deck {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(240, 246, 252, 0.85);
  max-width: 580px;
  margin-top: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.5s forwards;
}

.hero-deck strong { color: #f0f6fc; font-weight: 600; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.6s forwards;
}

.hero-stat {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 1.25rem 1rem;
  border-radius: var(--r);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}

.hero-stat:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: block;
  margin-bottom: 0.25rem;
}

.hero-stat-label {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(240, 246, 252, 0.6);
}

/* Hero CTA button */
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  background: var(--gradient);
  padding: 1rem 2rem;
  border-radius: var(--r);
  margin-top: 2.5rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), filter 0.25s ease;
  align-self: flex-start;
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.65s forwards;
  box-shadow: var(--shadow-sm);
}

.hero-cta:hover {
  transform: scale(1.03) translateY(-1px);
  box-shadow: var(--shadow-md);
  filter: brightness(1.1);
  color: #fff;
}

.hero-scroll {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.7s forwards;
}

.hero-scroll-line {
  width: 40px;
  height: 1px;
  background: var(--border-l);
}

.hero-scroll-text {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Hero-specific light overrides (always dark overlay) */
.hero .hero-scroll-line { background: rgba(255, 255, 255, 0.2); }
.hero .hero-scroll-text { color: rgba(240, 246, 252, 0.5); }
.hero .hero-eyebrow .tag {
  color: rgba(240, 246, 252, 0.9);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

/* ============================================================
   SECTION CHROME
   ============================================================ */
section {
  padding: 7rem 3rem;
  border-bottom: none;
  position: relative;
}

section + section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 3rem;
  right: 3rem;
  height: 1px;
  background: var(--gradient);
  opacity: 0.2;
}

.section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 4rem;
  gap: 3rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white);
  max-width: 16ch;
}

.section-title .accent {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-intro {
  max-width: 420px;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text);
  align-self: flex-end;
}

.section-link {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--copper);
  transition: color 0.2s ease;
  position: relative;
}

.section-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gradient);
  transition: width 0.3s var(--ease);
}

.section-link:hover::after { width: 100%; }

/* ============================================================
   INDUSTRY SECTION (fault lines)
   ============================================================ */
#industry { background: var(--surface); }

.fault-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.fault-item {
  background: var(--surface);
  padding: 2.5rem 2rem;
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  border-radius: var(--r);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-sm);
}

.fault-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.fault-num {
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--subtle);
  opacity: 0.4;
  display: block;
  margin-bottom: 1.25rem;
}

.fault-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--copper);
  line-height: 1.3;
  margin-bottom: 1rem;
}

.fault-body {
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--text);
}

/* ============================================================
   RESPONSE / POSITIONING SECTION
   ============================================================ */
#positioning {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.positioning-hero-section {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

/* Background image layer */
.positioning-hero-bg {
  position: absolute;
  inset: -5%;
  background: url('/static/approach-bg.jpg') center center / cover no-repeat;
  z-index: 0;
  animation: kenBurns 30s ease-in-out infinite alternate;
}

.contact-hero-bg {
  position: absolute;
  inset: -5%;
  background: url('/static/maxim-berg-abstract-unsplash.jpg') center center / cover no-repeat;
  z-index: 0;
  animation: kenBurns 30s ease-in-out infinite alternate;
}

.contact-hero-intro {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(240, 246, 252, 0.85);
  margin-top: 1.5rem;
  max-width: 520px;
}

/* Dark gradient overlay */
#positioning.positioning-hero-section::before,
#contact-hero.positioning-hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 14, 23, 0.88) 0%,
    rgba(10, 14, 23, 0.7) 40%,
    rgba(10, 14, 23, 0.35) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Subtle accent glow */
#positioning.positioning-hero-section::after,
#contact-hero.positioning-hero-section::after {
  content: '';
  position: absolute;
  bottom: -10%; left: 15%;
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(0, 96, 214, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.positioning-hero-section .section-header,
.positioning-hero-section .positioning-hero,
.positioning-hero-section .positioning-pull,
.positioning-hero-section .positioning-bullets,
.positioning-hero-section .positioning-cols {
  position: relative;
  z-index: 2;
}

/* Force light text on hero bg image */
.positioning-hero-section .positioning-hero-title,
.positioning-hero-section .positioning-pull,
.positioning-hero-section .positioning-pull strong {
  color: #f0f6fc;
}

.positioning-hero-section .positioning-pull {
  color: rgba(240, 246, 252, 0.85);
}

.positioning-hero-section .positioning-bullets li {
  color: rgba(240, 246, 252, 0.85);
}

.positioning-hero-section .positioning-bullets li::before {
  color: var(--copper);
}

.positioning-hero-section .label {
  color: rgba(240, 246, 252, 0.9);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.positioning-hero-section .tag {
  color: rgba(240, 246, 252, 0.9);
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
}

.positioning-hero-section .positioning-cols > div {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r);
  padding: 2rem;
}

.positioning-hero-section .positioning-cols p {
  color: rgba(240, 246, 252, 0.8);
}

.positioning-hero-section .positioning-cols .label {
  background: transparent;
  border: none;
}

.positioning-hero {
  margin-bottom: 3rem;
}

.positioning-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.95;
  color: #f0f6fc;
  letter-spacing: 0.02em;
}

.positioning-hero-title .accent {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#positioning:not(.positioning-hero-section)::before {
  content: '';
  position: absolute;
  bottom: -30%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(ellipse, var(--glow) 0%, transparent 70%);
  pointer-events: none;
}

.positioning-pull {
  font-family: var(--font-body);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.35;
  color: var(--white);
  max-width: 820px;
  margin-bottom: 4rem;
}

.positioning-pull strong {
  font-style: normal;
  font-weight: 600;
  color: var(--copper);
}

.positioning-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.positioning-cols p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.positioning-cols p:last-child { margin-bottom: 0; }

.positioning-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 3rem;
  max-width: 700px;
}

.positioning-bullets li {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text);
  padding-left: 1.5rem;
  position: relative;
}

.positioning-bullets li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  color: var(--copper);
  font-size: 0.8rem;
}

/* ============================================================
   CLIENT LOGO CAROUSEL
   ============================================================ */
#clients {
  background: var(--surface);
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

.logo-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  padding: 1rem 3rem;
  background: var(--logo-banner-bg);
  border-radius: 6px;
  margin: 0 2rem;
}

.logo-item {
  height: 24px;
  width: auto;
  display: block;
  opacity: 0.8;
}

.logo-item--tall {
  height: 34px;
}

/* ============================================================
   PARTNERS STRIP
   ============================================================ */
#partners {
  background: var(--surface);
  padding: 2.5rem 3rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.partners-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
}

.partners-label {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
}

.partners-strip .logo-item {
  height: 26px;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.partners-strip .logo-item--tall {
  height: 36px;
}

.partners-strip .logo-item:hover {
  opacity: 1;
}

[data-theme="dark"] .partners-strip .logo-item {
  filter: brightness(0) invert(1);
  opacity: 0.6;
}

[data-theme="dark"] .partners-strip .logo-item:hover {
  opacity: 0.9;
}

/* ============================================================
   PRINCIPLES SECTION
   ============================================================ */
#principles { background: var(--surface); }

.principle-list { margin-top: 1rem; }

.principle-item {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 5rem;
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.principle-item:last-child { border-bottom: none; }

.principle-left { position: sticky; top: 7rem; }

.principle-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--copper);
  border: 1px solid var(--copper-d);
  padding: 0.25rem 0.75rem;
  margin-bottom: 1rem;
  border-radius: var(--r);
}

.principle-heading {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.principle-vs {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--subtle);
  margin-top: 0.75rem;
}

.principle-content h4 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  margin-bottom: 1rem;
}

.principle-content p {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 1.25rem;
}

/* ============================================================
   SERVICES HERO
   ============================================================ */
.services-hero-section {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.services-hero-bg {
  position: absolute;
  inset: -5%;
  background: url('/static/eduard-pretsi-unsplash.jpg') center center / cover no-repeat;
  z-index: 0;
  animation: kenBurns 30s ease-in-out infinite alternate;
}

.services-hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 14, 23, 0.88) 0%,
    rgba(10, 14, 23, 0.7) 40%,
    rgba(10, 14, 23, 0.35) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.services-hero-section::after {
  content: '';
  position: absolute;
  bottom: -10%; left: 15%;
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(0, 96, 214, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.services-hero-section .positioning-hero,
.services-hero-section .services-hero-intro {
  position: relative;
  z-index: 2;
}

.services-hero-section .positioning-hero-title,
.services-hero-section .services-hero-intro {
  color: #f0f6fc;
}

.services-hero-intro {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(240, 246, 252, 0.85);
  max-width: 42rem;
  line-height: 1.8;
  margin-top: 2rem;
}

.services-hero-section .tag {
  color: rgba(240, 246, 252, 0.9);
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
#services { background: var(--bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--surface);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s ease;
  position: relative;
  border-radius: var(--r);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-icon {
  color: var(--copper);
  line-height: 0;
  margin-bottom: 0.25rem;
  transition: color 0.25s ease;
}

.service-icon svg { display: block; }

.service-card:hover .service-icon { color: var(--copper-l); }

.service-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  color: var(--white);
  line-height: 1.1;
}

.service-desc {
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--text);
  flex: 1;
}

.service-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.service-bullets li {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: var(--muted);
  padding-left: 1rem;
  position: relative;
}

.service-bullets li:hover { color: var(--text); }

.service-bullets li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  color: var(--copper);
  font-size: 0.65rem;
}

/* ============================================================
   APPROACH SECTION
   ============================================================ */
#approach { background: var(--surface); }

.approach-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.approach-step {
  background: var(--surface);
  padding: 2.5rem 2rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  border-radius: var(--r);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-sm);
}

.approach-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.approach-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--subtle);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 1.5rem;
  display: block;
}

.approach-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.approach-body {
  font-size: 0.82rem;
  line-height: 1.75;
  color: var(--text);
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
#comparison { background: var(--bg); }

.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--border);
  border-radius: var(--r);
  margin-top: 3rem;
  font-size: 0.88rem;
  overflow: hidden;
}

.compare-table thead tr {
  background: var(--surface);
  border-bottom: 1px solid var(--border-l);
}

.compare-table th {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 1rem 1.5rem;
  text-align: left;
  color: var(--muted);
}

.compare-table th.th-new {
  color: var(--copper);
  border-left: 1px solid var(--border);
}

.compare-table th.th-dim { color: var(--subtle); }

.compare-table td {
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  line-height: 1.6;
  vertical-align: top;
}

.compare-table tbody tr:last-child td { border-bottom: none; }

.compare-table td:first-child {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--subtle);
  white-space: nowrap;
  width: 180px;
}

.compare-table td.td-old { color: var(--subtle); }

.compare-table td.td-new {
  color: var(--text);
  border-left: 1px solid var(--border);
}

.compare-table td.td-new strong {
  color: var(--copper);
  font-weight: 400;
}

.compare-table tbody tr:hover td { background: var(--surface); }

/* ============================================================
   CREDENTIALS
   ============================================================ */
#credentials { background: var(--surface); }

.cert-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.cert-item {
  background: var(--surface);
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  border-radius: var(--r);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-sm);
}

.cert-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.cert-img {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: var(--r);
}

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

.cert-name {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.3;
}

.cert-org {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.35rem;
}

/* ============================================================
   TEAM SECTION
   ============================================================ */
#team { background: var(--surface); }

.team-grid {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.team-card {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  background: var(--bg);
  border: 1px solid var(--card-border);
  border-radius: var(--r);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.team-photo-wrap {
  flex-shrink: 0;
  position: relative;
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid var(--border);
  transition: border-color 0.3s ease;
}

.team-card:hover .team-photo {
  border-color: var(--copper);
}

.team-photo-wrap::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--gradient);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-card:hover .team-photo-wrap::after {
  opacity: 1;
}

.team-info {
  flex: 1;
  min-width: 0;
}

.team-role {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.5rem;
}

.team-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.team-bio {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1rem;
}

.team-certs {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.team-cert {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.team-cert-img {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  object-fit: contain;
}

.team-cert-name {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  color: var(--white);
  line-height: 1.4;
}

.team-cert-org {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.1em;
  color: var(--subtle);
}

.team-socials {
  display: flex;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.team-social {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--copper);
  position: relative;
}

.team-social::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gradient);
  transition: width 0.3s var(--ease);
}

.team-social:hover::after {
  width: 100%;
}

@media (max-width: 768px) {
  .team-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
  }
  .team-photo { width: 160px; height: 160px; }
  .team-certs { justify-content: center; }
  .team-socials { justify-content: center; }
}

/* ============================================================
   CASE STUDIES
   ============================================================ */
#work { background: var(--bg); }

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.work-item {
  background: var(--surface);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  cursor: default;
  border-radius: var(--r);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-sm);
}

.work-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.work-industry {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--copper);
}

.work-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
}

.work-desc {
  font-size: 0.82rem;
  line-height: 1.75;
  color: var(--text);
  flex: 1;
}

/* ============================================================
   BLOG SECTION
   ============================================================ */
/* ── Blog Hero ──────────────────────────────────────── */
.blog-hero-section {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.blog-hero-bg {
  position: absolute;
  inset: -5%;
  background: url('/static/oliver-hayes-porche-speed-unsplash.jpg') center center / cover no-repeat;
  z-index: 0;
  animation: kenBurns 30s ease-in-out infinite alternate;
}

.blog-article-hero-bg {
  position: absolute;
  inset: -5%;
  background: url('/static/li-zhang-speed-lines-unsplash.jpg') center center / cover no-repeat;
  z-index: 0;
  animation: kenBurns 30s ease-in-out infinite alternate;
}

.blog-hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 14, 23, 0.88) 0%,
    rgba(10, 14, 23, 0.7) 40%,
    rgba(10, 14, 23, 0.35) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.blog-hero-section::after {
  content: '';
  position: absolute;
  bottom: -10%; left: 15%;
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(0, 96, 214, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.blog-hero-section .section-header {
  position: relative;
  z-index: 2;
}

.blog-hero-section .section-title,
.blog-hero-section .section-title .accent {
  color: #f0f6fc;
}

.blog-hero-intro {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(240, 246, 252, 0.85);
  max-width: 42rem;
  line-height: 1.8;
  margin-top: 2rem;
}

.blog-hero-section .label {
  color: rgba(240, 246, 252, 0.9);
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
}

.blog-hero-section .article-title {
  color: #f0f6fc;
}

.blog-hero-section .article-meta {
  color: rgba(240, 246, 252, 0.7);
}

/* Article hero is more compact so content is visible above the fold */
#blog-article-hero {
  padding-top: 8rem;
  padding-bottom: 3rem;
}

#blog-article {
  padding-top: 3rem;
}

.work-hero-bg {
  position: absolute;
  inset: -5%;
  background: url('/static/li-zhang-speed-lines-unsplash.jpg') center center / cover no-repeat;
  z-index: 0;
  animation: kenBurns 30s ease-in-out infinite alternate;
}

.tools-hero-bg {
  position: absolute;
  inset: -5%;
  background: url('/static/oliver-hayes-porche-speed-unsplash.jpg') center center / cover no-repeat;
  z-index: 0;
  animation: kenBurns 30s ease-in-out infinite alternate;
}

/* ── Blog Cards ────────────────────────────────────── */
#blog { background: var(--surface); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.blog-card {
  background: var(--surface);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  cursor: pointer;
  border-radius: var(--r);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-sm);
}

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

.blog-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--r);
  border: 1px solid var(--border);
  margin-bottom: 0.25rem;
}

.blog-tag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
}

.blog-title {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.4;
  flex: 1;
}

.blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-date {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--subtle);
}

.blog-link {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--copper);
}

/* ── Reading Page ──────────────────────────────────── */
.reading-hero-bg {
  position: absolute;
  inset: -5%;
  background: url('/static/jonatan-pie-canyon-unsplash.jpg') center center / cover no-repeat;
  z-index: 0;
  animation: kenBurns 30s ease-in-out infinite alternate;
}

#reading-hero {
  padding-top: 6.5rem;
  padding-bottom: 2rem;
}

#reading {
  background: var(--surface);
}

.reading-featured-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1.5rem;
}

.reading-featured-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.reading-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.reading-card {
  background: var(--surface);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  cursor: pointer;
  border-radius: var(--r);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
}

.reading-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.reading-card--featured {
  border-left: 3px solid var(--copper);
  padding: 3rem 2.5rem;
  background: linear-gradient(135deg, var(--surface) 0%, var(--glow-accent) 100%);
}

.reading-tag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
}

.reading-title {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.4;
}

.reading-card--featured .reading-title {
  font-size: 1.15rem;
}

.reading-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.reading-source {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--subtle);
}

.reading-date {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--subtle);
}

.reading-link {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--copper);
  margin-top: 0.25rem;
}

.reading-empty {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--muted);
  text-align: center;
  padding: 4rem 2rem;
}

.blog-medium-link {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

/* ============================================================
   BLOG ARTICLE
   ============================================================ */
#blog-article {
  background: var(--bg);
}

.article-title {
  font-family: var(--font-body);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 1rem;
}

.article-meta {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--subtle);
  margin-bottom: 2rem;
}

.article-hero-img {
  width: 100%;
  border-radius: var(--r);
  border: 1px solid var(--border);
  margin-bottom: 2rem;
}

.article-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2rem;
}

.article-body p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.article-body .article-h2-lead {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-top: 0;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.article-body h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.article-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.article-body ul,
.article-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.article-body li {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.article-body pre {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.25rem 1.5rem;
  overflow-x: auto;
  margin-bottom: 1.5rem;
}

.article-body code {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  line-height: 1.6;
}

.article-body p code,
.article-body li code {
  background: var(--surface);
  padding: 0.15em 0.4em;
  border-radius: 3px;
  font-size: 0.85em;
  border: 1px solid var(--border);
}

.article-body .article-img,
.article-body img {
  width: 100%;
  border-radius: var(--r);
  border: 1px solid var(--border);
  margin: 1.5rem 0;
}

.article-body .article-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin: 1.5rem 0;
  border-radius: var(--r);
  border: 1px solid var(--border);
}

.article-body .article-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.article-body blockquote {
  border-left: 3px solid var(--copper);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  color: var(--muted);
  font-style: italic;
}

.article-body strong {
  color: var(--white);
  font-weight: 600;
}

.article-body a {
  color: var(--copper);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.article-body a:hover {
  opacity: 0.8;
}

.article-body .compare-table {
  width: 100%;
  margin-bottom: 1.5rem;
}

.article-footer {
  max-width: 860px;
  margin: 3rem auto 0;
  padding: 2rem 2rem 0;
  border-top: 1px solid var(--border);
}

.article-back-link {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
}

.article-back-link:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .article-title { font-size: 1.6rem; }
  .article-header,
  .article-content,
  .article-footer { padding-left: 1rem; padding-right: 1rem; }
}

/* ============================================================
   FORGE SECTION
   ============================================================ */
#forge { background: var(--surface); }

.forge-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
  align-items: start;
}

.forge-text {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.forge-highlight {
  background: var(--bg);
  border: 1px solid var(--card-border);
  border-radius: var(--r);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
}

.forge-quote-text {
  font-family: var(--font-body);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--white);
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.forge-tools-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.forge-tool-pill {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--copper);
  border: 1px solid var(--copper);
  border-radius: 100px;
  padding: 0.35rem 0.85rem;
}

.forge-tools-note {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  color: var(--subtle);
}

/* ── Forge Components ──────────────────────────────── */
#forge-components { background: var(--bg); }

.forge-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.forge-card {
  background: var(--surface);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: var(--r);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.forge-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.forge-card-icon {
  color: var(--copper);
  margin-bottom: 0.25rem;
}

.forge-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: var(--white);
}

.forge-card-desc {
  font-size: 0.82rem;
  line-height: 1.75;
  color: var(--text);
}

.forge-card-bullets {
  padding-left: 1.25rem;
  margin: 0;
}

.forge-card-bullets li {
  font-size: 0.75rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.forge-card-bullets li::marker {
  color: var(--copper);
}

@media (max-width: 1100px) {
  .forge-layout { grid-template-columns: 1fr; }
  .forge-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .forge-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   TOOLS SECTION
   ============================================================ */
#tools { background: var(--bg); }

.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.tool-card {
  background: var(--surface);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  cursor: pointer;
  border-radius: var(--r);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-sm);
}

.tool-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.tool-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--r);
  border: 1px solid var(--border);
}

.tool-tag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
}

.tool-title {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
}

.tool-desc {
  font-size: 0.82rem;
  line-height: 1.75;
  color: var(--text);
  flex: 1;
}

.tool-link {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--copper);
  transition: opacity 0.2s ease;
}

.tool-card:hover .tool-link { opacity: 0.75; }

/* ============================================================
   MCP SERVERS TABLE
   ============================================================ */
#mcp-servers { background: var(--surface); }

.mcp-cat-header {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  background: var(--surface) !important;
  padding: 1.25rem 1.5rem !important;
  border-bottom: 1px solid var(--border) !important;
  font-weight: 500;
}

.mcp-link {
  color: var(--white);
  transition: color 0.2s ease;
  font-weight: 400;
}

.mcp-link:hover { color: var(--copper); }

.mcp-table td:first-child {
  white-space: normal;
  width: 240px;
}

/* ============================================================
   DIAGNOSTIC SECTION
   ============================================================ */

/* Problem / prose blocks */
.diag-prose { max-width: 700px; }
.diag-prose p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1.25rem;
}

/* Four Dimensions — 2-col grid */
.diag-dimensions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.diag-dimension {
  padding: 2.5rem 2rem;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  border-radius: var(--r);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-sm);
}

.diag-dimension:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.diag-dim-intro {
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--text);
}

.diag-key-q {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--copper);
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* Maturity Model — 4-col grid */
.maturity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.maturity-item {
  padding: 2.5rem 2rem;
  background: var(--surface);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  border-radius: var(--r);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-sm);
}

.maturity-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Deliverables — 3-col grid */
.diag-deliverables {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.diag-deliverable {
  padding: 2.5rem 2rem;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  border-radius: var(--r);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-sm);
}

.diag-deliverable:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   CONTACT / CTA
   ============================================================ */
#contact {
  background: var(--bg);
  border-bottom: none;
  position: relative;
  overflow: hidden;
}

#contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.3;
  pointer-events: none;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  position: relative;
  z-index: 1;
}

.contact-statement {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 0.95;
  color: var(--white);
  letter-spacing: 0.02em;
}

.contact-statement .accent {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  background: var(--gradient);
  padding: 1rem 2rem;
  border-radius: var(--r);
  margin-top: 1rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), filter 0.25s ease;
  align-self: flex-start;
  box-shadow: var(--shadow-sm);
}

.contact-cta:hover {
  transform: scale(1.03) translateY(-1px);
  box-shadow: var(--shadow-md);
  filter: brightness(1.1);
  color: #fff;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-input, .form-textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-input:focus, .form-textarea:focus {
  border-color: var(--copper);
  box-shadow: 0 0 0 3px var(--glow-accent);
}

.form-input::placeholder, .form-textarea::placeholder {
  color: var(--subtle);
}

.form-textarea { resize: vertical; min-height: 120px; }

.form-submit {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  background: var(--gradient);
  border: none;
  padding: 0.8rem 2rem;
  border-radius: var(--r);
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), filter 0.25s ease;
  box-shadow: var(--shadow-sm);
}

.form-submit:hover {
  transform: scale(1.03) translateY(-1px);
  box-shadow: var(--shadow-md);
  filter: brightness(1.1);
  color: #fff;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--surface);
  border-top: 2px solid transparent;
  border-image: var(--gradient) 1;
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-lockup {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
}

.footer-logo-img {
  height: 2rem;
  width: auto;
  object-fit: contain;
}

/* Footer: dark logo on light theme, white logo on dark theme */
.footer-logo-dark  { display: none; }
.footer-logo-light { display: inline; }
[data-theme="dark"] .footer-logo-dark  { display: inline; }
[data-theme="dark"] .footer-logo-light { display: none; }

.footer-logo-strapline {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  padding-left: 0.65rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s ease;
}

.footer-links a:hover { color: var(--white); }

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--subtle);
}

/* ============================================================
   ENGAGEMENT / PRICING SECTION
   ============================================================ */
#engagement { background: var(--surface); }

.engagement-table td.td-engagement-name {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--white);
  white-space: normal;
  text-transform: none;
  letter-spacing: 0;
  width: auto;
}

.engagement-table td.td-mono {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.pricing-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.pricing-bullets li {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text);
  padding-left: 1.5rem;
  position: relative;
}

.pricing-bullets li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--copper);
  font-weight: 600;
}

/* Timeline grid */
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.timeline-item {
  background: var(--surface);
  padding: 2rem 1.5rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  border-radius: var(--r);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-sm);
}

.timeline-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.timeline-header {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.timeline-weeks {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
}

.timeline-phase {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.03em;
  color: var(--white);
  line-height: 1.1;
}

.timeline-detail {
  font-size: 0.82rem;
  line-height: 1.75;
  color: var(--text);
}

/* ============================================================
   MEANS GRID (approach summary)
   ============================================================ */
.means-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.means-item {
  background: var(--surface);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  border-radius: var(--r);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-sm);
}

.means-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.means-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.means-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.4;
}

/* ============================================================
   METRICS GRID (credentials delivery track record)
   ============================================================ */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.metric-item {
  background: var(--surface);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  border-radius: var(--r);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-sm);
}

.metric-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.metric-num {
  font-family: var(--font-display);
  font-size: 2rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.metric-label {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.4;
}

/* ============================================================
   FIXED-PRICE SECTION
   ============================================================ */
#fixed-price { background: var(--surface); }

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .fault-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-steps { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .reading-grid { grid-template-columns: repeat(2, 1fr); }
  .reading-featured-grid { grid-template-columns: repeat(2, 1fr); }
  .tools-grid { grid-template-columns: repeat(2, 1fr); }
  .principle-item { grid-template-columns: 200px 1fr; gap: 3rem; }
  .timeline-grid { grid-template-columns: repeat(2, 1fr); }
  .means-grid { grid-template-columns: repeat(2, 1fr); }
  .metrics-grid { grid-template-columns: repeat(3, 1fr); }
  .maturity-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }

  .nav-hamburger { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--nav-overlay);
    backdrop-filter: blur(6px);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 3rem;
    gap: 0;
    z-index: 9999;
    overflow-y: auto;
  }

  .nav-links.open {
    display: flex;
    animation: nav-fade-in 0.2s ease forwards;
  }

  @keyframes nav-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
  }

  .nav-links li {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
  }

  .nav-links a {
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    padding: 0.75rem 2rem;
    display: block;
    width: 100%;
    color: var(--text);
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: var(--white);
  }

  .nav-links .nav-cta {
    background: var(--copper);
    color: white;
    margin-top: 0.5rem;
    width: auto;
  }

  .nav-links .nav-cta:hover {
    background: var(--copper-d);
  }

  .nav-links .nav-cta-secondary {
    color: var(--copper) !important;
    border-color: var(--copper);
    margin-top: 0.5rem;
    width: auto;
  }

  .nav-links .theme-toggle {
    padding: 0.75rem 1.5rem;
    color: var(--text);
    border-color: var(--border);
  }

  /* Hamburger X uses text color for contrast */
  .nav-hamburger.open .hamburger-line {
    background: var(--text);
  }

  section { padding: 5rem 1.5rem; }
  .hero { padding: 0 1.5rem; }
  .hero-headline { font-size: clamp(3.5rem, 16vw, 6rem); }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .hero-bg { background-image: url('/static/hero-bg-mobile.jpg'); }
  .positioning-hero-bg { background-image: url('/static/approach-bg-mobile.jpg'); }
  .services-hero-bg { background-image: url('/static/eduard-pretsi-unsplash.jpg'); }
  .section-header { flex-direction: column; }
  .fault-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .approach-steps { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .reading-grid { grid-template-columns: 1fr; }
  .reading-featured-grid { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: 1fr; }
  .positioning-cols { grid-template-columns: 1fr; gap: 2rem; }
  .principle-item { grid-template-columns: 1fr; gap: 1.5rem; }
  .principle-left { position: static; }
  .cert-row { grid-template-columns: 1fr; }
  .compare-table { display: block; overflow-x: auto; }
  .timeline-grid { grid-template-columns: 1fr; }
  .means-grid { grid-template-columns: repeat(2, 1fr); }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .diag-dimensions { grid-template-columns: 1fr; }
  .maturity-grid { grid-template-columns: 1fr; }
  .diag-deliverables { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 1.5rem; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  #clients { padding: 2.5rem 1.5rem; }
  .logo-banner { gap: 2rem; padding: 1rem 1.5rem; }
  .logo-item { height: 18px; }
  #partners { padding: 2rem 1.5rem; }
  .partners-strip { flex-direction: column; gap: 1.5rem; }
  .partners-strip .logo-item { height: 20px; }
  .partners-strip .logo-item--tall { height: 28px; }
  .company-grid { grid-template-columns: 1fr; }
}

/* ── Company Details ─────────────────────────────── */
.company-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.company-card {
  background: var(--surface);
  padding: 2.5rem;
  border-radius: var(--r);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-sm);
}
.company-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--subtle);
  margin-bottom: 1rem;
}
.company-value {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text);
  margin: 0;
}
.company-value strong {
  color: var(--white);
}
