/* ============================================================
   LUALDI ADVISORS — SHARED DESIGN SYSTEM
   Carrier-style instrument-grade UI. Dark inks, amber accent.
   ============================================================ */

:root {
  /* Backgrounds — layered inks */
  --bg-0: #050507;
  --bg-1: #0a0a0f;
  --bg-2: #101018;
  --bg-3: #161624;
  --bg-4: #1f1f2d;

  /* Lines */
  --line: #1c1c28;
  --line-bright: #2a2a3a;
  --line-amber: rgba(212, 162, 90, 0.22);

  /* Cold-silver text ramp */
  --silver-bright: #eef1f7;
  --silver: #b8bfcc;
  --ink-1: #8891a2;
  --ink-2: #5d6576;
  --ink-3: #3d4452;

  /* The single cool accent — Steely Teal #22D3EE
     Variable names retain the "amber" prefix to avoid mass renames across
     hundreds of `var(--amber)` references. Color values are authoritative. */
  --amber: #22d3ee;
  --amber-bright: #67e8f9;
  --amber-dim: rgba(34, 211, 238, 0.18);
  --amber-glow: rgba(34, 211, 238, 0.45);

  /* Status hints */
  --green: #7aaa87;
  --red:   #c26565;

  /* Type */
  --f-mono: 'Comfortaa', system-ui, monospace;
  --f-display: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg-0);
  color: var(--silver);
  font-family: var(--f-mono);
  font-weight: 400;
  font-feature-settings: 'tnum' 1, 'cv11' 1;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(ellipse 70% 50% at 50% 30%, rgba(14, 22, 40, 0.7) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 80% 80%, rgba(40, 25, 15, 0.18) 0%, transparent 60%),
    var(--bg-0);
  background-attachment: fixed;
}

/* Film-grain overlay — keeps the inks from feeling flat */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.83  0 0 0 0 0.63  0 0 0 0 0.35  0 0 0 1 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

a { color: inherit; text-decoration: none; }

/* =====  TOP NAV  ===== */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 56px;
  z-index: 100;
  background: rgba(5, 5, 7, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  padding: 0 28px;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-1);
}
.topbar-left { display: flex; align-items: center; gap: 18px; flex: 0 0 auto; }
.topbar-nav  { display: flex; align-items: center; gap: 26px; flex: 1; justify-content: center; }
.topbar-right { display: flex; align-items: center; gap: 14px; flex: 0 0 auto; }
/* LUALDI: heavy weight. ADVISORS: light weight. SAME SIZE — only the weight differs. */
.topbar-mark {
  color: var(--silver-bright);
  letter-spacing: 0.14em;
  font-size: 14px;
  font-family: var(--f-display);
  font-weight: 900;
  line-height: 1;
}
.topbar-mark .dot-amber {
  display: inline-block;
  width: 9px;
  height: 9px;
  background: var(--amber);
  border-radius: 50%;
  margin: 0 9px;
  font-size: 0;
  line-height: 0;
  box-shadow: 0 0 10px rgba(34, 211, 238, 0.55);
  animation: pulse 2.4s ease-in-out infinite;
}
.topbar-mark .topbar-mark-thin {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: inherit;
  letter-spacing: 0.14em;
  color: var(--silver);
}
.topbar-mark a { display: inline-flex; align-items: center; }
.topbar-mark { display: inline-flex; align-items: center; }
.topbar-sep { color: var(--ink-3); }

.nav-link {
  color: var(--ink-1);
  font-size: 10px;
  letter-spacing: 0.28em;
  transition: color 0.2s;
  position: relative;
  padding: 6px 0;
}
.nav-link:hover { color: var(--silver-bright); }
.nav-link.active { color: var(--amber); }
.nav-link.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--amber);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border: 1px solid var(--line-bright);
  border-radius: 2px;
  color: var(--silver);
  background: var(--bg-1);
  font-size: 9px;
  letter-spacing: 0.24em;
}
.pulse-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 8px var(--amber-glow);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 6px var(--amber-glow); transform: scale(1); }
  50%      { box-shadow: 0 0 14px var(--amber); transform: scale(1.18); }
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line-bright);
  color: var(--silver);
  padding: 6px 10px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  cursor: pointer;
}

/* =====  GLOBAL LAYOUT  ===== */
.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

main { padding-top: 56px; }

.eyebrow {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-1);
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--amber);
}
.eyebrow .num { color: var(--amber); }

h2.section-h {
  font-family: var(--f-mono);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--silver-bright);
  margin-top: 16px;
  max-width: 840px;
}
h2.section-h em { font-style: normal; color: var(--amber); }

/* =====  HERO  ===== */
.hero {
  min-height: 92vh;
  padding: 100px 0 70px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  width: 1100px; height: 1100px;
  left: 50%; top: 45%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(212, 162, 90, 0.10) 0%, transparent 55%);
  pointer-events: none;
  z-index: 1;
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.5;
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 3; max-width: 1080px; width: 100%; }
.hero-eyebrow { margin-bottom: 38px; }

.wordmark {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(64px, 12vw, 156px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--silver-bright);
  margin: 0 0 22px;
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}
.wordmark .amber-dot {
  color: var(--amber);
  display: inline-block;
  transform-origin: center center;
  filter: drop-shadow(0 0 18px rgba(34, 211, 238, 0.45));
  will-change: transform, filter;
  animation: pulse-title 3s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}
@keyframes pulse-title {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 14px rgba(34, 211, 238, 0.38));
  }
  50% {
    transform: scale(1.05);
    filter: drop-shadow(0 0 32px rgba(34, 211, 238, 0.85));
  }
}
.wordmark .small {
  font-size: 0.32em;
  letter-spacing: -0.01em;
  color: var(--ink-1);
  font-weight: 500;
}

/* Stack modifier — break the wordmark into vertical lines.
   Used on the Contact hero: line 1 = "OPEN ·", line 2 = "CONVERSATION".
   The .wordmark-line wrapper keeps OPEN + the amber dot on the same line,
   replicating the default flex-baseline behavior inside the column container. */
.wordmark.wordmark-stack {
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.wordmark.wordmark-stack .wordmark-line {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
.wordmark.wordmark-stack .small {
  margin-left: 0;
}

.hero-tag-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 38px;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--silver);
  flex-wrap: wrap;
}
.hero-tag-row .sep { color: var(--amber); }

.hero-lede {
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.32;
  color: var(--silver-bright);
  max-width: 880px;
  margin-bottom: 28px;
  letter-spacing: -0.005em;
}
.hero-lede em { font-style: normal; color: var(--amber); }

.hero-sub {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-1);
  max-width: 680px;
  margin-bottom: 52px;
}

.cta-row { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 26px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s cubic-bezier(0.2, 0.7, 0.2, 1);
  font-weight: 500;
}
.btn-primary { background: var(--amber); color: var(--bg-0); }
.btn-primary:hover {
  background: var(--amber-bright);
  box-shadow: 0 0 0 4px var(--amber-dim), 0 0 32px var(--amber-glow);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--silver);
  border: 1px solid var(--line-bright);
}
.btn-ghost:hover { border-color: var(--amber); color: var(--amber); }
.btn .arrow { font-family: var(--f-mono); font-weight: 600; }

/* =====  SECTION FRAME  ===== */
section.block {
  padding: 110px 0;
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
}

/* =====  SECTION BG IMAGES  ===== */
.section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.section-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.5);
  opacity: 1;
  display: block;
}

/* Parallax — hero images only.
   The image is sized 150% of its container with a -25% top offset, giving
   ±25% of vertical headroom for translateY without revealing edges. JS in
   main.js sets the transform on scroll. Honors prefers-reduced-motion. */
.section-bg.hero-bg img {
  position: absolute;
  left: 0;
  top: -25%;
  height: 150%;
  width: 100%;
  will-change: transform;
  transition: none;
}
@media (prefers-reduced-motion: reduce) {
  .section-bg.hero-bg img {
    top: 0;
    height: 100%;
    transform: none !important;
  }
}
.section-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 60% at 50% 50%,
                              rgba(212, 162, 90, 0.18) 0%, transparent 70%);
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
}
.section-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 75% 60% at 50% 50%,
                    rgba(5, 5, 7, 0.25) 0%, rgba(5, 5, 7, 0.55) 100%),
    linear-gradient(180deg,
                    rgba(5, 5, 7, 0.7) 0%,
                    rgba(5, 5, 7, 0.05) 20%,
                    rgba(5, 5, 7, 0.05) 80%,
                    rgba(5, 5, 7, 0.7) 100%);
  pointer-events: none;
  z-index: 2;
}
/* Uniform 50% darken treatment — applies to all hero / CTA / section background
   images. No grayscale, no per-section override. The dark page behind, the amber
   accent overlay, and the vignette do the rest. */

/* =====  DOCTRINE / PROP HEAD  ===== */
.doctrine-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 72px;
}
.doctrine-head p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--silver);
  margin-top: 12px;
}

/* Site-wide image protection — blocks casual right-click-save and drag-save.
   Determined users can still use DevTools / screenshots — no client-side
   protection is bulletproof — but this stops 95% of casual saves. */
img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  pointer-events: auto;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 2px;
}
.pillar {
  padding: 36px 32px;
  border-right: 1px solid var(--line);
  position: relative;
}
.pillar:last-child { border-right: none; }
.pillar-num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--amber);
  margin-bottom: 18px;
}
.pillar-title {
  font-size: 22px;
  color: var(--silver-bright);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.pillar-body {
  font-size: 13.5px;
  line-height: 1.72;
  color: var(--ink-1);
}
.pillar-tag {
  margin-top: 20px;
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-2);
}

/* =====  CARD GRID (sectors, products, offices, team)  ===== */
.cards-head {
  margin-bottom: 56px;
  max-width: 880px;
}
.cards-head p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-1);
  margin-top: 18px;
}
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cards-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.card {
  background: var(--bg-1);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
}
.card:hover { border-color: var(--amber); transform: translateY(-2px); }
.card:hover .card-code { color: var(--amber); }
.card:hover .card-image img { filter: brightness(0.75); }

.card-image {
  position: relative;
  height: 168px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.5);
  transition: filter 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.card-image::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(212, 162, 90, 0.22) 0%, rgba(212, 162, 90, 0.03) 60%, transparent 100%);
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
}
.card-image::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 100% 100% at 50% 0%, transparent 0%, rgba(5, 5, 7, 0.55) 100%),
    linear-gradient(180deg, transparent 0%, transparent 55%, rgba(10, 10, 15, 0.88) 100%);
  pointer-events: none;
  z-index: 2;
}

/* Corner brackets — engineering-drawing rigor */
.image-corner {
  position: absolute;
  width: 12px; height: 12px;
  z-index: 3;
  pointer-events: none;
}
.image-corner::before, .image-corner::after {
  content: '';
  position: absolute;
  background: var(--amber);
}
.image-corner::before { width: 12px; height: 1px; }
.image-corner::after  { width: 1px; height: 12px; }
.image-corner.tl { top: 10px;    left: 10px;    }
.image-corner.tl::before { top: 0; left: 0; }
.image-corner.tl::after  { top: 0; left: 0; }
.image-corner.tr { top: 10px;    right: 10px;   }
.image-corner.tr::before { top: 0; right: 0; }
.image-corner.tr::after  { top: 0; right: 0; }
.image-corner.bl { bottom: 10px; left: 10px;    }
.image-corner.bl::before { bottom: 0; left: 0; }
.image-corner.bl::after  { bottom: 0; left: 0; }
.image-corner.br { bottom: 10px; right: 10px;   }
.image-corner.br::before { bottom: 0; right: 0; }
.image-corner.br::after  { bottom: 0; right: 0; }

.image-stamp {
  position: absolute;
  top: 10px; right: 28px;
  z-index: 3;
  font-size: 8px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(5, 5, 7, 0.78);
  padding: 4px 8px 3px;
  border: 1px solid var(--amber-dim);
  backdrop-filter: blur(4px);
}
.image-coords {
  position: absolute;
  bottom: 10px; left: 28px;
  z-index: 3;
  font-size: 8px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-1);
}
.image-coords .sep { color: var(--amber); margin: 0 4px; }

.card-body { padding: 24px 28px 28px; flex: 1; display: flex; flex-direction: column; }
.card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.card-code {
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-2);
  transition: color 0.3s;
}
.card-status { display: flex; align-items: center; gap: 8px; }
.card-status .dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px rgba(122, 170, 135, 0.6);
}
.card-status .lbl {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-1);
}
.card-name {
  font-size: 20px;
  color: var(--silver-bright);
  margin-bottom: 10px;
  letter-spacing: -0.005em;
}
.card-scope {
  font-size: 13px;
  line-height: 1.65;
  color: var(--ink-1);
  margin-bottom: 20px;
  flex: 1;
}
.card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.entity-chip {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver);
  padding: 4px 8px;
  border: 1px solid var(--line-bright);
  background: var(--bg-2);
}
.card-link {
  margin-top: auto;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amber);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.card-link:hover { color: var(--amber-bright); }

/* =====  RUNTIME LOOP  ===== */
.loop-head { margin-bottom: 64px; max-width: 880px; }
.loop {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
}
.loop-step {
  padding: 40px 36px;
  border-right: 1px solid var(--line);
  position: relative;
  background: var(--bg-1);
}
.loop-step:last-child { border-right: none; }
.loop-step::after {
  content: '';
  position: absolute;
  right: -7px; top: 50%;
  width: 14px; height: 14px;
  border-top: 1px solid var(--amber);
  border-right: 1px solid var(--amber);
  transform: translateY(-50%) rotate(45deg);
  background: var(--bg-0);
  z-index: 2;
}
.loop-step:last-child::after { display: none; }
.loop-num {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 64px;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -0.04em;
  opacity: 0.85;
}
.loop-title {
  font-size: 16px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver-bright);
  margin-bottom: 16px;
}
.loop-body {
  font-size: 13.5px;
  line-height: 1.72;
  color: var(--ink-1);
}

/* =====  DEMO CONSOLE  ===== */
.demo-head { margin-bottom: 48px; }
.demo-head .lede {
  font-size: 17px;
  line-height: 1.7;
  color: var(--silver);
  margin-top: 18px;
  max-width: 720px;
}
.console {
  background: var(--bg-1);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  min-height: 520px;
}
.console-main { border-right: 1px solid var(--line); display: flex; flex-direction: column; }
.console-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.console-bar-left { display: flex; align-items: center; gap: 14px; }
.console-bar-title {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--silver-bright);
}
.console-bar-meta {
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.console-query { padding: 32px 32px 24px; }
.query-prompt {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 10px;
}
.query-text {
  font-size: 22px;
  color: var(--silver-bright);
  line-height: 1.4;
  letter-spacing: -0.005em;
}
.query-text .caret {
  display: inline-block;
  width: 8px; height: 22px;
  background: var(--amber);
  margin-left: 4px;
  transform: translateY(3px);
  animation: blink 1.1s steps(2) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

.console-trace {
  padding: 16px 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(212, 162, 90, 0.03);
}
.trace-line {
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-1);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 5px 0;
}
.trace-tag {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amber);
  width: 80px;
  flex-shrink: 0;
}

.console-answer { padding: 28px 32px; flex: 1; }
.answer-label {
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.answer-label::before {
  content: '';
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 6px var(--amber-glow);
}
.price-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}
.price-cell {
  border: 1px solid var(--line);
  padding: 16px;
  background: var(--bg-2);
}
.price-cell .rank {
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-1);
  margin-bottom: 6px;
}
.price-cell .hour {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--silver);
  margin-bottom: 4px;
}
.price-cell .val {
  font-size: 28px;
  color: var(--silver-bright);
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.price-cell.best { border-color: var(--amber); }
.price-cell.best .val { color: var(--amber); }

.save-row {
  border: 1px solid var(--amber);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: rgba(212, 162, 90, 0.06);
}
.save-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--silver);
}
.save-amount {
  font-size: 30px;
  color: var(--amber);
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 22px var(--amber-glow);
}
.save-pct {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--ink-1);
  text-transform: uppercase;
}

.console-foot {
  padding: 14px 32px;
  border-top: 1px solid var(--line);
  background: var(--bg-2);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.console-foot .strong { color: var(--silver); }

.console-side { display: flex; flex-direction: column; }
.side-bar {
  padding: 14px 22px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--silver-bright);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.side-bar .meta { color: var(--ink-2); font-size: 9px; letter-spacing: 0.24em; }
.side-body { padding: 24px 28px; flex: 1; display: flex; flex-direction: column; gap: 22px; }
.side-stat { border-bottom: 1px dashed var(--line); padding-bottom: 18px; }
.side-stat:last-of-type { border-bottom: none; }
.side-stat .k {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-1);
  margin-bottom: 6px;
}
.side-stat .v {
  font-size: 20px;
  color: var(--silver-bright);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.005em;
}
.side-stat .v .unit {
  font-size: 11px;
  color: var(--ink-1);
  margin-left: 6px;
  letter-spacing: 0.16em;
}
.side-quote {
  padding: 16px;
  border-left: 2px solid var(--amber);
  background: rgba(212, 162, 90, 0.04);
  font-size: 12.5px;
  line-height: 1.65;
  color: var(--silver);
  font-style: italic;
}
.side-quote em { color: var(--amber); font-style: normal; }

/* =====  FAQ  ===== */
.faq-list { border: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  padding: 22px 28px;
  font-size: 15px;
  letter-spacing: -0.005em;
  color: var(--silver-bright);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  transition: background 0.2s;
}
.faq-q:hover { background: rgba(212, 162, 90, 0.04); }
.faq-q::after {
  content: '+';
  color: var(--amber);
  font-size: 20px;
  font-weight: 300;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  padding: 0 28px;
  max-height: 0;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-1);
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-a { padding: 0 28px 24px; max-height: 600px; }

/* =====  TEAM ROSTER  ===== */
.roster {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
}
.roster-region {
  border-right: 1px solid var(--line);
  padding: 36px 32px;
  background: var(--bg-1);
}
.roster-region:last-child { border-right: none; }
.roster-region h3 {
  font-family: var(--f-mono);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.roster-member { margin-bottom: 22px; }
.roster-member:last-child { margin-bottom: 0; }
.roster-name {
  font-size: 16px;
  color: var(--silver-bright);
  letter-spacing: -0.005em;
  margin-bottom: 4px;
}
.roster-role {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-1);
  line-height: 1.55;
}

/* =====  OFFICES  ===== */
.offices {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1100px) {
  .offices { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 820px) {
  .offices { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .offices { grid-template-columns: 1fr; }
}
.office {
  background: var(--bg-1);
  border: 1px solid var(--line);
  position: relative;
  transition: border-color 0.3s;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.office:hover { border-color: var(--amber); }
.office:hover .card-image img { filter: brightness(0.75); }
.office-body { padding: 28px 28px 30px; }
.office-code {
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 18px;
}
.office-city {
  font-size: 26px;
  color: var(--silver-bright);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.office-role {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-1);
  margin-bottom: 18px;
}
.office-coords {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-variant-numeric: tabular-nums;
}

/* =====  STRIP GALLERY (custom solutions)  ===== */
.strip-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
@media (max-width: 1200px) { .strip-gallery { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .strip-gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px)  { .strip-gallery { grid-template-columns: 1fr; } }

.strip {
  background: var(--bg-1);
  border: 1px solid var(--line);
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.strip:hover { border-color: var(--amber); transform: translateY(-2px); }
.strip:hover .strip-image img { filter: brightness(0.78) grayscale(0); }

.strip-image {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--bg-2);
}
.strip-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.62) grayscale(0.18);
  transition: filter 0.4s;
}
.strip-image .image-stamp {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 8px;
  background: rgba(8, 10, 14, 0.75);
  border: 1px solid rgba(34, 211, 238, 0.35);
  color: var(--amber);
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-family: Comfortaa, monospace;
}
.strip-image .image-corner {
  position: absolute;
  width: 10px;
  height: 10px;
  border-color: rgba(34, 211, 238, 0.55);
  border-style: solid;
  border-width: 0;
}
.strip-image .image-corner.tl { top: 6px; left: 6px; border-top-width: 1px; border-left-width: 1px; }
.strip-image .image-corner.tr { top: 6px; right: 6px; border-top-width: 1px; border-right-width: 1px; }
.strip-image .image-corner.bl { bottom: 6px; left: 6px; border-bottom-width: 1px; border-left-width: 1px; }
.strip-image .image-corner.br { bottom: 6px; right: 6px; border-bottom-width: 1px; border-right-width: 1px; }

.strip-body { padding: 14px 16px 16px; }
.strip-code {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 6px;
  font-family: Comfortaa, monospace;
}
.strip-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--silver-bright);
  line-height: 1.3;
  letter-spacing: -0.005em;
  margin: 0;
}

/* =====  INSIGHTS · listing  ===== */
.hero-compact { padding: 110px 0 60px; min-height: auto; }
.hero-compact .wordmark { font-size: clamp(48px, 8vw, 96px); margin-bottom: 18px; }

.empty-state {
  border: 1px solid var(--line);
  background: var(--bg-1);
  padding: 60px clamp(28px, 5vw, 64px) 56px;
  text-align: left;
  max-width: 860px;
}
.empty-state .eyebrow { margin-bottom: 18px; }
.empty-state h2 { margin-bottom: 22px; }
.empty-state-lede {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.65;
  color: var(--silver);
  max-width: 720px;
  margin: 0 0 30px;
}
.empty-state .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.article-feature {
  border: 1px solid var(--line);
  background: var(--bg-1);
  transition: border-color 0.3s;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.article-feature:hover { border-color: var(--amber); }
.article-feature .feature-image {
  display: block;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
}
.article-feature .feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.78) grayscale(0.05);
  transition: filter 0.4s, transform 0.6s;
}
.article-feature:hover .feature-image img { filter: brightness(0.92); transform: scale(1.02); }
.article-feature-body { padding: 36px 40px; }
.article-feature-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-1);
  font-family: Comfortaa, monospace;
  margin-bottom: 18px;
}
.article-feature-meta .sep { color: var(--ink-3); }
.article-feature-meta .article-section { color: var(--amber); }
.article-feature-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 0 0 18px;
}
.article-feature-title a {
  color: var(--silver-bright);
  text-decoration: none;
  transition: color 0.3s;
}
.article-feature-title a:hover { color: var(--amber); }
.article-feature-excerpt {
  color: var(--silver);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 22px;
  max-width: 780px;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .insights-grid { grid-template-columns: 1fr; }
}
.insight-card {
  border: 1px solid var(--line);
  background: var(--bg-1);
  transition: border-color 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.insight-card:hover { border-color: var(--amber); transform: translateY(-2px); }
.insight-card .card-image {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
}
.insight-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.78) grayscale(0.05);
  transition: filter 0.4s, transform 0.6s;
}
.insight-card:hover .card-image img { filter: brightness(0.92); transform: scale(1.02); }
.insight-card-body {
  padding: 28px 32px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.insight-card-body .insight-excerpt { flex: 1; }
.insight-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-1);
  font-family: Comfortaa, monospace;
  margin-bottom: 14px;
}
.insight-meta .sep { color: var(--ink-3); }
.insight-meta .article-section { color: var(--amber); }
.insight-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin: 0 0 14px;
}
.insight-title a {
  color: var(--silver-bright);
  text-decoration: none;
  transition: color 0.3s;
}
.insight-title a:hover { color: var(--amber); }
.insight-excerpt {
  color: var(--silver);
  font-size: 13.5px;
  line-height: 1.7;
  margin: 0 0 18px;
  flex: 1;
}

/* =====  ARTICLE PAGE (individual)  ===== */
.article-wrap { max-width: 880px; }
.article-header { padding: 90px 0 40px; border-bottom: 1px solid var(--line); }

/* Cover image — wide hero below the article header */
.article-cover {
  margin: 0 auto;
  max-width: 1280px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.85) grayscale(0.05);
}

/* Inline figure inside prose */
.article-figure {
  margin: 32px 0 36px;
  border: 1px solid var(--line);
  background: var(--bg-1);
}
.article-figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  filter: brightness(0.78) grayscale(0.05);
}
.article-figure figcaption {
  padding: 12px 18px;
  border-top: 1px solid var(--line);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-family: Comfortaa, monospace;
  color: var(--ink-1);
}

.article-crumbs {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-family: Comfortaa, monospace;
  color: var(--ink-1);
  margin-bottom: 28px;
}
.article-crumbs a { color: var(--ink-1); text-decoration: none; transition: color 0.3s; }
.article-crumbs a:hover { color: var(--amber); }
.article-crumbs .sep { color: var(--ink-3); margin: 0 8px; }
.article-crumbs .current { color: var(--amber); }

.article-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-family: Comfortaa, monospace;
  color: var(--ink-1);
  margin-bottom: 26px;
}
.article-meta .sep { color: var(--ink-3); }
.article-meta .article-section { color: var(--amber); }

.article-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(34px, 5vw, 56px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--silver-bright);
  margin: 0 0 28px;
}
.article-lede {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
  color: var(--silver);
  margin: 0 0 26px;
  max-width: 720px;
}
.article-lede em { color: var(--amber); font-style: normal; }

.article-tags { display: flex; gap: 8px; flex-wrap: wrap; }

.article-body {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 60px;
  padding: 60px 0 80px;
  align-items: start;
}
@media (max-width: 980px) {
  .article-body { grid-template-columns: 1fr; gap: 40px; }
}

.article-toc {
  position: sticky;
  top: 80px;
  border-left: 1px solid var(--line);
  padding-left: 22px;
  font-size: 12px;
  line-height: 1.6;
}
.article-toc .toc-label {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amber);
  font-family: Comfortaa, monospace;
  margin-bottom: 12px;
}
.article-toc ol {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: toc;
}
.article-toc ol li { margin-bottom: 6px; }
.article-toc ol ol { margin-top: 6px; padding-left: 14px; }
.article-toc a {
  color: var(--silver);
  text-decoration: none;
  transition: color 0.3s;
}
.article-toc a:hover { color: var(--amber); }

.article-prose {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--silver);
  max-width: 720px;
}
.article-prose h2 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.01em;
  color: var(--silver-bright);
  margin: 50px 0 18px;
  scroll-margin-top: 80px;
}
.article-prose h2:first-child { margin-top: 0; }
.article-prose h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.005em;
  color: var(--silver-bright);
  margin: 36px 0 14px;
  scroll-margin-top: 80px;
}
.article-prose p { margin: 0 0 18px; }
.article-prose p em { color: var(--silver-bright); font-style: italic; }
.article-prose a {
  color: var(--amber);
  text-decoration: none;
  border-bottom: 1px solid rgba(34, 211, 238, 0.35);
  transition: border-color 0.3s, color 0.3s;
}
.article-prose a:hover { border-bottom-color: var(--amber); }
.article-prose ul, .article-prose ol { margin: 0 0 22px; padding-left: 24px; }
.article-prose li { margin-bottom: 8px; }
.article-prose strong { color: var(--silver-bright); font-weight: 600; }

.article-blockquote {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-left: 2px solid var(--amber);
  padding: 22px 26px;
  margin: 26px 0;
  font-family: Comfortaa, monospace;
  font-size: 12.5px;
  line-height: 1.85;
  color: var(--silver);
}
.article-blockquote .bq-line { margin-bottom: 4px; }
.article-blockquote .bq-decision {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  color: var(--silver-bright);
}
.article-blockquote .bq-tag {
  display: inline-block;
  min-width: 100px;
  color: var(--ink-1);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-right: 12px;
}
.article-blockquote .bq-tag-amber { color: var(--amber); }

.article-prose .faq-list {
  border: 1px solid var(--line);
  margin-top: 30px;
}
.article-prose .faq-item { border-bottom: 1px solid var(--line); padding: 20px 24px; }
.article-prose .faq-item:last-child { border-bottom: none; }
.article-prose .faq-q {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--silver-bright);
  margin-bottom: 8px;
}
.article-prose .faq-a {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--silver);
}

.article-footer {
  border-top: 1px solid var(--line);
  padding: 36px 0;
  background: var(--bg-1);
}
.article-byline-label {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-1);
  font-family: Comfortaa, monospace;
  margin-bottom: 6px;
}
.article-byline-name {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--silver-bright);
  letter-spacing: -0.005em;
  margin-bottom: 4px;
}
.article-byline-meta {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-1);
  font-family: Comfortaa, monospace;
}

/* =====  REPORT ARTICLE COMPONENTS  ===== */
.report-exec {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-left: 2px solid var(--amber);
  padding: 36px 40px;
  margin: 26px 0 36px;
}
.report-exec-label,
.report-exec-findings-label {
  font-family: Comfortaa, monospace;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.report-exec-findings-label { margin-top: 28px; margin-bottom: 18px; }
.report-exec-lead {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  color: var(--silver);
  margin: 0;
}
.report-findings { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.report-findings li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
}
.report-findings .finding-num {
  font-family: Comfortaa, monospace;
  font-size: 22px;
  font-weight: 600;
  color: var(--amber);
  line-height: 1;
  letter-spacing: 0.04em;
}
.report-findings .finding-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--silver);
}
.report-exec-note {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px dashed var(--line);
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--ink-1);
  font-style: italic;
}

.report-quote { margin: 30px 0; }

.report-variable-head { margin: 56px 0 4px; padding-top: 12px; border-top: 1px solid var(--line); }
.report-variable-label {
  font-family: Comfortaa, monospace;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amber);
  padding-top: 20px;
}

.report-fig-caption { margin-bottom: 18px; }
.report-fig-title {
  font-family: Comfortaa, monospace;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--silver-bright);
  margin-bottom: 6px;
}
.report-fig-sub {
  font-size: 12.5px;
  color: var(--ink-1);
  font-style: italic;
  line-height: 1.5;
}
.report-fig-source {
  font-family: Comfortaa, monospace;
  font-size: 10px;
  line-height: 1.6;
  color: var(--ink-2);
  margin-top: 16px;
}

/* Bar chart */
.report-chart-wrap {
  background: var(--bg-1);
  border: 1px solid var(--line);
  padding: 28px 32px;
  margin: 32px 0 40px;
}
.report-chart-legend { display: flex; gap: 22px; margin-bottom: 22px; flex-wrap: wrap; }
.report-chart-legend .legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: Comfortaa, monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-1);
}
.report-chart-legend .legend-dot {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 1px;
}
.report-chart-legend .dot-compute { background: var(--silver); }
.report-chart-legend .dot-dc { background: var(--ink-1); }
.report-chart-legend .dot-power { background: var(--amber); }

.report-bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  height: 240px;
  margin-bottom: 8px;
}
.report-bar-chart .bar-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: flex-end;
}
.report-bar-chart .bar-total-label {
  font-family: Comfortaa, monospace;
  font-size: 11px;
  font-weight: 600;
  color: var(--silver-bright);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}
.report-bar-chart .bar-stack {
  width: 100%;
  display: flex;
  flex-direction: column-reverse;
  border: 1px solid var(--line);
  overflow: hidden;
}
.report-bar-chart .bar-compute { background: var(--silver); }
.report-bar-chart .bar-dc { background: var(--ink-1); }
.report-bar-chart .bar-power { background: var(--amber); box-shadow: 0 0 14px rgba(34,211,238,0.35) inset; }
.report-bar-chart .bar-year {
  font-family: Comfortaa, monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-1);
  margin-top: 10px;
}

/* Data tables (sensitivity) */
.report-table-wrap {
  background: var(--bg-1);
  border: 1px solid var(--line);
  padding: 28px 32px;
  margin: 32px 0 40px;
}
.report-table-scroll { overflow-x: auto; }
.report-data-table,
.report-spec-table {
  width: 100%;
  border-collapse: collapse;
  font-family: Comfortaa, monospace;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}
.report-data-table th,
.report-spec-table th {
  background: var(--bg-2);
  color: var(--ink-1);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 14px;
  text-align: right;
  border-bottom: 1px solid var(--line-bright);
  white-space: nowrap;
}
.report-data-table th:first-child,
.report-spec-table th:first-child { text-align: left; }
.report-data-table th.baseline-col { color: var(--amber); }
.report-data-table th .baseline-mark { color: var(--amber); margin-left: 4px; }
.report-data-table td,
.report-spec-table td {
  padding: 9px 14px;
  border-bottom: 1px solid var(--line);
  color: var(--silver);
  text-align: right;
}
.report-data-table td:first-child,
.report-spec-table td:first-child {
  text-align: left;
  color: var(--silver-bright);
  font-weight: 500;
}
.report-data-table .baseline-val { color: var(--amber); font-weight: 500; }
.report-data-table tr.total-row td {
  border-top: 1px solid var(--line-bright);
  border-bottom: none;
  background: var(--bg-2);
  color: var(--silver-bright);
  font-weight: 500;
}
.report-data-table tr.total-row .baseline-val { color: var(--amber); }

.report-spec-table tr.alt-row td { background: rgba(255, 255, 255, 0.02); }
.report-spec-table tr.highlight-row td {
  background: rgba(34, 211, 238, 0.08);
  color: var(--silver-bright);
}
.gen-badge {
  display: inline-block;
  background: var(--bg-3);
  color: var(--amber);
  font-size: 10px;
  font-weight: 500;
  padding: 2px 9px;
  border-radius: 11px;
  letter-spacing: 0.12em;
  margin-right: 10px;
  text-transform: uppercase;
  white-space: nowrap;
  border: 1px solid rgba(34, 211, 238, 0.25);
}

/* Insight box (2-col elastic vs inelastic) */
.report-insight-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin: 36px 0;
}
@media (max-width: 720px) {
  .report-insight-box { grid-template-columns: 1fr; }
}
.report-insight-box .insight-cell {
  background: var(--bg-1);
  padding: 26px 28px;
}
.report-insight-box .insight-cell-label {
  font-family: Comfortaa, monospace;
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
}
.report-insight-box .insight-cell p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--silver);
  margin: 0;
}

/* Non-movers cards (3-col) */
.report-nonmover-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0 36px;
}
@media (max-width: 820px) {
  .report-nonmover-grid { grid-template-columns: 1fr; }
}
.report-nonmover-card {
  background: var(--bg-1);
  border: 1px solid var(--line);
  padding: 22px 24px 24px;
  transition: border-color 0.3s;
}
.report-nonmover-card:hover { border-color: var(--amber); }
.report-nonmover-tag {
  font-family: Comfortaa, monospace;
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
}
.report-nonmover-title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.3;
  color: var(--silver-bright);
  margin: 0 0 10px;
  letter-spacing: -0.005em;
}
.report-nonmover-body {
  font-size: 13px;
  line-height: 1.7;
  color: var(--silver);
  margin: 0;
}

/* Conclusion block */
.report-conclusion {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-left: 2px solid var(--amber);
  padding: 36px 40px;
  margin: 26px 0 36px;
}
.report-conclusion p {
  margin-bottom: 18px;
  color: var(--silver);
}
.report-conclusion p:last-child { margin-bottom: 0; }
.report-conclusion p em { color: var(--amber); font-style: italic; }

/* Disclaimer */
.report-disclaimer {
  margin-top: 48px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.report-disclaimer-label {
  font-family: Comfortaa, monospace;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-1);
  margin-bottom: 12px;
}
.report-disclaimer p {
  font-family: Comfortaa, monospace;
  font-size: 11px;
  line-height: 1.7;
  color: var(--ink-1);
  margin: 0 0 16px;
}
.report-disclaimer-footer { color: var(--ink-2); font-size: 10px; }

/* Stat grid (4 headline numbers) */
.report-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin: 24px 0 36px;
}
@media (max-width: 720px) { .report-stat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .report-stat-grid { grid-template-columns: 1fr; } }
.report-stat-cell {
  background: var(--bg-1);
  padding: 22px 24px;
}
.report-stat-num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--amber);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.report-stat-label {
  font-family: Comfortaa, monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-1);
  line-height: 1.55;
}

/* Scenario cards (3-col with shaded left rail) */
.report-scenario-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 14px 0 16px;
}
@media (max-width: 720px) { .report-scenario-grid { grid-template-columns: 1fr; } }
.report-scenario-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 22px 24px;
  position: relative;
}
.report-scenario-card.sc-base    { border-left: 2px solid var(--ink-2); }
.report-scenario-card.sc-mid     { border-left: 2px solid var(--silver); }
.report-scenario-card.sc-hyper   { border-left: 2px solid var(--amber); background: rgba(34, 211, 238, 0.06); }
.report-scenario-label {
  font-family: Comfortaa, monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-1);
  margin-bottom: 12px;
}
.report-scenario-rate {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 26px;
  color: var(--silver-bright);
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.report-scenario-card.sc-hyper .report-scenario-rate { color: var(--amber); }
.report-scenario-desc {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--silver);
}

/* Price map (exposed vs insulated, 2-col with country chips) */
.report-price-map {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 14px 0 16px;
}
@media (max-width: 720px) { .report-price-map { grid-template-columns: 1fr; } }
.report-price-group {
  background: var(--bg-1);
  border: 1px solid var(--line);
  padding: 22px 24px;
}
.report-price-group.exposed   { border-left: 2px solid var(--red); }
.report-price-group.insulated { border-left: 2px solid var(--green); }
.report-price-heading {
  font-family: Comfortaa, monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.report-price-group.exposed .report-price-heading   { color: var(--red); }
.report-price-group.insulated .report-price-heading { color: var(--green); }
.report-price-chips { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.report-price-chip {
  font-family: Comfortaa, monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  padding: 5px 11px;
  border-radius: 14px;
  color: var(--silver-bright);
  text-transform: uppercase;
}
.report-price-chip.tag-exposed   { background: rgba(194, 101, 101, 0.15); border: 1px solid rgba(194, 101, 101, 0.45); }
.report-price-chip.tag-insulated { background: rgba(122, 170, 135, 0.15); border: 1px solid rgba(122, 170, 135, 0.45); }
.report-price-note {
  font-size: 13px;
  line-height: 1.65;
  color: var(--silver);
  margin: 0;
}

/* Winners grid (2x2) */
.report-winners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0 36px;
}
@media (max-width: 820px) { .report-winners-grid { grid-template-columns: 1fr; } }
.report-winner-card {
  background: var(--bg-1);
  border: 1px solid var(--line);
  padding: 26px 28px;
  transition: border-color 0.3s;
}
.report-winner-card:hover { border-color: var(--amber); }
.report-winner-category {
  font-family: Comfortaa, monospace;
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
}
.report-winner-title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.3;
  color: var(--silver-bright);
  margin: 0 0 12px;
  letter-spacing: -0.005em;
}
.report-winner-desc {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--silver);
  margin: 0;
}

/* =====  CONTACT FORM  ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-channels { display: flex; flex-direction: column; gap: 14px; }
.channel {
  border: 1px solid var(--line);
  background: var(--bg-1);
  padding: 22px 26px;
  transition: border-color 0.3s;
  display: block;
}
.channel:hover { border-color: var(--amber); }
.channel-label {
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
}
.channel-value {
  font-size: 18px;
  color: var(--silver-bright);
  letter-spacing: -0.005em;
  word-break: break-all;
}

.form {
  border: 1px solid var(--line);
  background: var(--bg-1);
  padding: 36px;
}
.form-row { margin-bottom: 22px; }
.form-row label {
  display: block;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 8px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--line-bright);
  color: var(--silver-bright);
  padding: 12px 14px;
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: 0.01em;
  outline: none;
  transition: border-color 0.2s;
}
.form-row textarea { resize: vertical; min-height: 120px; }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus { border-color: var(--amber); }

.form-status {
  margin-top: 16px;
  padding: 0 14px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1.7;
  min-height: 1.2em;
}
.form-status.ok   { color: var(--green); border-left: 2px solid var(--green); padding: 10px 14px; }
.form-status.err  { color: var(--red);   border-left: 2px solid var(--red);   padding: 10px 14px; }
.form-status.warn { color: var(--amber); border-left: 2px solid var(--amber); padding: 10px 14px; }

/* =====  CTA  ===== */
.cta-block {
  text-align: center;
  padding: 140px 0 110px;
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute;
  width: 900px; height: 900px;
  left: 50%; top: 60%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(212, 162, 90, 0.10) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.cta-inner { position: relative; z-index: 3; }
.cta-eyebrow { justify-content: center; margin-bottom: 28px; display: inline-flex; }
.cta-h {
  font-family: var(--f-mono);
  font-weight: 400;
  font-size: clamp(28px, 3.8vw, 48px);
  line-height: 1.2;
  color: var(--silver-bright);
  max-width: 880px;
  margin: 0 auto 18px;
  letter-spacing: -0.01em;
}
.cta-h em { font-style: normal; color: var(--amber); }
.cta-sub {
  font-size: 14px;
  color: var(--ink-1);
  margin-bottom: 48px;
  letter-spacing: 0.04em;
}
.cta-actions { display: flex; gap: 18px; justify-content: center; align-items: center; flex-wrap: wrap; }

/* =====  FOOTER  ===== */
footer {
  border-top: 1px solid var(--line);
  padding: 50px 0 36px;
  position: relative;
  z-index: 2;
  background: var(--bg-0);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}
.footer-col h4 {
  font-family: var(--f-mono);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 18px;
}
.footer-col p,
.footer-col a {
  font-size: 12px;
  line-height: 1.8;
  color: var(--ink-1);
  display: block;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--amber); }
/* Footer brand — same SIZE for LUALDI and ADVISORS, only the weight differs.
   LUALDI heavy (Inter 900), ADVISORS thin (Inter 300). */
.footer-brand .name {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 22px;
  color: var(--silver-bright);
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
.footer-brand .name .dot {
  display: inline-block;
  width: 13px;
  height: 13px;
  background: var(--amber);
  border-radius: 50%;
  /* slanted "A" of ADVISORS extends optically further left than its visual mass;
     trim the right margin so ADVISORS sits closer to the dot to compensate */
  margin-left: 11px;
  margin-right: 7px;
  font-size: 0;
  line-height: 0;
  box-shadow: 0 0 12px rgba(34, 211, 238, 0.55);
  animation: pulse 2.4s ease-in-out infinite;
}
.footer-brand .name .thin {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: inherit;
  letter-spacing: -0.01em;
  color: var(--silver);
}
.footer-brand p { color: var(--silver); font-size: 13px; max-width: 280px; }

.footer-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.footer-bar a { color: var(--ink-1); }
.footer-bar a:hover { color: var(--amber); }
.footer-legal { display: flex; gap: 22px; }

/* =====  FADE-IN ENTRANCES  ===== */
.fade-in {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1),
              transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.15s; }
.stagger-3 { transition-delay: 0.25s; }
.stagger-4 { transition-delay: 0.35s; }
.stagger-5 { transition-delay: 0.45s; }
.stagger-6 { transition-delay: 0.55s; }
.stagger-7 { transition-delay: 0.65s; }

/* =====  RESPONSIVE  ===== */
@media (max-width: 1024px) {
  .doctrine-head { grid-template-columns: 1fr; gap: 32px; }
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--line); }
  .pillar:last-child { border-bottom: none; }
  .cards-3 { grid-template-columns: repeat(2, 1fr); }
  .console { grid-template-columns: 1fr; }
  .console-main { border-right: none; border-bottom: 1px solid var(--line); }
  .loop { grid-template-columns: 1fr; }
  .loop-step { border-right: none; border-bottom: 1px solid var(--line); }
  .loop-step::after { display: none; }
  .loop-step:last-child { border-bottom: none; }
  .roster { grid-template-columns: 1fr; }
  .roster-region { border-right: none; border-bottom: 1px solid var(--line); }
  .roster-region:last-child { border-bottom: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 720px) {
  .topbar-nav { display: none; position: fixed; top: 56px; left: 0; right: 0; flex-direction: column; gap: 0; background: var(--bg-1); border-bottom: 1px solid var(--line); padding: 12px 0; }
  .topbar-nav.open { display: flex; }
  .topbar-nav .nav-link { padding: 12px 28px; width: 100%; }
  .nav-toggle { display: inline-block; margin-left: auto; }
  .topbar-right .status-pill { display: none; }
  .wrap { padding: 0 22px; }
  .cards-3, .cards-2 { grid-template-columns: 1fr; }
  .price-row { grid-template-columns: 1fr; }
  .save-row { flex-direction: column; align-items: flex-start; }
  section.block { padding: 70px 0; }
  .hero { padding: 90px 0 60px; }
  .footer-grid { grid-template-columns: 1fr; }
}
