/* ────────────────────────────────────────────────────────────────────
   Lila Zebra · Marketing Site
   Style: dark editorial · magazine-grade · McKinsey-density
   Palette: plum-black · violet · teal (no warm yellows)
   ──────────────────────────────────────────────────────────────────── */

:root {
  --plum:          #0F0612;
  --plum-deep:     #070309;
  --plum-card:     #1A0F2E;
  --paper:         #FAF9FC;
  --paper-soft:    #F4F0F8;
  --violet:        #7C3AED;
  --violet-deep:   #5B2E91;
  --violet-bright: #A855F7;
  --teal:          #0F766E;
  --teal-bright:   #14B8A6;
  --teal-deep:     #134E4A;
  --ink:           #0F0612;
  --ink-muted:     #6B7280;
  --ink-on-dark:   #E9E4F0;
  --ink-muted-dark:#9CA3AF;
  --line-light:    #D8C9E6;
  --line-dark:     #2A1F3F;

  --container:     1240px;
  --gutter:        clamp(20px, 4vw, 56px);

  --r:             6px;
  --r-lg:          12px;

  --t-fast:        160ms;
  --t-mid:         320ms;
  --t-slow:        620ms;
  --ease:          cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ─────────────── Reset ─────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-feature-settings: "ss01" on, "cv11" on, "calt" on;
  font-variant-numeric: tabular-nums;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--violet-bright); color: white; }

.skip-link {
  position: absolute; top: -40px; left: 16px;
  background: var(--plum); color: white; padding: 8px 12px;
  border-radius: var(--r); z-index: 100;
}
.skip-link:focus { top: 16px; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ─────────────── Reveal animation ─────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ─────────────── Type primitives ─────────────── */
.kicker {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.22em;
  margin: 0 0 22px;
  display: inline-block;
  position: relative;
  padding-left: 28px;
}
.kicker::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 20px; height: 1px;
  background: currentColor;
}
.kicker--teal  { color: var(--teal-bright); }
.kicker--violet{ color: var(--violet); }

.display {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-feature-settings: "ss01" on, "cv11" on;
  letter-spacing: -0.022em;
  line-height: 1.04;
  margin: 0 0 24px;
}
.display--hero {
  font-size: clamp(40px, 6.6vw, 88px);
  font-weight: 900;
}
.display--section {
  font-size: clamp(28px, 3.6vw, 52px);
}
.display__accent { color: var(--violet-bright); }

.lead {
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: 1.5;
  max-width: 64ch;
  margin: 0 0 32px;
}
.lead--muted { color: var(--ink-muted); }

/* On plum backgrounds */
.section--plum .lead       { color: var(--ink-on-dark); }
.section--plum .display    { color: white; }
.section--plum .lead--muted{ color: var(--ink-muted-dark); }

/* ─────────────── Buttons ─────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: var(--r);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: transform var(--t-fast) var(--ease),
              background var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: var(--violet);
  color: white;
}
.btn--primary:hover { background: var(--violet-bright); }
.btn--ghost {
  background: transparent;
  color: inherit;
  border-color: currentColor;
}
.btn--ghost:hover {
  background: currentColor;
  color: var(--plum);
}
.section--plum .btn--ghost:hover { color: white; }
.btn--small  { padding: 10px 16px; font-size: 13px; }
.btn--full   { width: 100%; justify-content: center; padding: 16px 22px; }

/* ─────────────── Nav ─────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 6, 18, 0.78);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  color: white;
  border-bottom: 1px solid var(--line-dark);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.nav__logo {
  width: 26px; height: 26px;
  color: var(--violet-bright);
}
.nav__wordmark { font-size: 15px; }
.nav__links {
  display: none;
  gap: 28px;
  margin-left: auto;
  font-size: 14px;
}
.nav__links a {
  color: var(--ink-on-dark);
  transition: color var(--t-fast) var(--ease);
}
.nav__links a:hover { color: var(--violet-bright); }
.nav__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}
.lang-switch {
  display: inline-flex;
  gap: 2px;
  padding: 3px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-dark);
  border-radius: var(--r);
}
.lang-switch button {
  background: transparent;
  border: 0;
  color: var(--ink-muted-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 10px;
  border-radius: 4px;
  transition: color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.lang-switch button[aria-pressed="true"] {
  background: var(--violet);
  color: white;
}
.lang-switch button:hover:not([aria-pressed="true"]) { color: white; }
.nav__cta { padding: 10px 16px; font-size: 13px; }

@media (min-width: 940px) {
  .nav__links { display: inline-flex; }
  .nav__actions { margin-left: 0; }
}

/* ─────────────── Hero ─────────────── */
.hero {
  position: relative;
  background: var(--plum);
  color: white;
  overflow: hidden;
  padding: clamp(72px, 12vw, 140px) 0 clamp(72px, 12vw, 140px);
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.hero__photo {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 30% 50%;
  transform: scaleX(-1);            /* subject moves to the right, away from headline */
  opacity: 0.82;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.4) 30%, black 55%, black 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.4) 30%, black 55%, black 100%);
}
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, var(--plum) 0%, rgba(15, 6, 18, 0.92) 28%, rgba(15, 6, 18, 0.55) 55%, rgba(15, 6, 18, 0.2) 90%),
    linear-gradient(180deg, transparent 65%, rgba(15, 6, 18, 0.55) 100%);
  pointer-events: none;
}
.hero__glow {
  position: absolute;
  width: 720px; height: 720px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.42;
}
.hero__glow--violet {
  background: radial-gradient(circle, var(--violet) 0%, transparent 60%);
  top: -180px; right: -120px;
}
.hero__glow--teal {
  background: radial-gradient(circle, var(--teal-bright) 0%, transparent 60%);
  bottom: -260px; left: -160px;
  opacity: 0.28;
}
.hero__inner {
  position: relative;
  max-width: 1080px;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 8px 0 56px;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 40px;
  margin: 0;
  padding-top: 36px;
  border-top: 1px solid var(--line-dark);
}
.stat__value {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: -0.025em;
  line-height: 1;
  color: white;
  margin: 0 0 6px;
}
.stat__label {
  margin: 0;
  font-size: 12.5px;
  color: var(--ink-muted-dark);
  letter-spacing: 0.01em;
}
@media (min-width: 720px) {
  .hero__stats { grid-template-columns: repeat(4, 1fr); }
}

/* ─────────────── Section frame ─────────────── */
.section {
  padding: clamp(80px, 11vw, 140px) 0;
  position: relative;
}
.section--plum  { background: var(--plum); color: white; }
.section--paper { background: var(--paper); color: var(--ink); }
.section--tight { padding: clamp(64px, 9vw, 110px) 0; }

.section__head {
  max-width: 880px;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.section__head--asym {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 980px) {
  .section__head--asym {
    grid-template-columns: 0.55fr 1fr;
    column-gap: 80px;
    align-items: end;
    max-width: var(--container);
  }
  .section__head--asym .kicker { grid-column: 1; grid-row: 1; }
  .section__head--asym .display{ grid-column: 1; grid-row: 2; }
  .section__head--asym .lead   { grid-column: 2; grid-row: 2; margin-bottom: 4px; }
}

/* ─────────────── Pains ─────────────── */
.pains-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line-light);
}
.pain {
  padding: 36px 0;
  border-bottom: 1px solid var(--line-light);
  display: grid;
  grid-template-columns: 56px 1fr;
  grid-template-areas:
    "no    title"
    "blank body";
  column-gap: 24px;
  row-gap: 8px;
  align-items: start;
}
.pain__no    { grid-area: no; }
.pain__title { grid-area: title; min-width: 0; }
.pain__body  { grid-area: body; min-width: 0; }
.pain__no {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--violet);
  font-weight: 500;
  letter-spacing: 0.1em;
  padding-top: 6px;
}
.pain__title {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  letter-spacing: -0.015em;
  font-size: clamp(20px, 2vw, 26px);
  margin: 0 0 8px;
  line-height: 1.2;
}
.pain__body {
  margin: 0;
  color: var(--ink-muted);
  max-width: 64ch;
  font-size: 15px;
}
@media (min-width: 980px) {
  .pains-grid { grid-template-columns: 1fr 1fr; column-gap: 64px; }
}

/* ─────────────── Approach ─────────────── */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line-dark);
}
.step {
  padding: 36px 0;
  border-bottom: 1px solid var(--line-dark);
  display: grid;
  grid-template-columns: 80px 1fr 2fr;
  gap: 32px;
  align-items: baseline;
}
.step__no {
  font-family: "JetBrains Mono", monospace;
  color: var(--teal-bright);
  font-size: 13px;
  letter-spacing: 0.1em;
}
.step__title {
  font-weight: 800;
  letter-spacing: -0.015em;
  font-size: clamp(20px, 2.2vw, 28px);
  margin: 0;
  color: white;
}
.step__body {
  margin: 0;
  color: var(--ink-muted-dark);
  font-size: 15px;
  max-width: 60ch;
}
@media (max-width: 760px) {
  .step {
    grid-template-columns: 64px 1fr;
    gap: 16px 20px;
  }
  .step__body { grid-column: 2; }
}

/* ─────────────── Value Chain ─────────────── */
.chain {
  margin: 72px 0 0;
  padding: 36px 0 0;
  border-top: 1px solid var(--line-dark);
}
.chain__head {
  margin-bottom: 36px;
  max-width: 640px;
}
.chain__title {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  letter-spacing: -0.018em;
  font-size: clamp(18px, 1.8vw, 22px);
  margin: 0;
  color: white;
}
.chain__row {
  display: flex;
  align-items: flex-start;
  width: 100%;
  gap: 0;
}
.chain__node {
  flex: 0 0 auto;
  width: clamp(80px, 11vw, 112px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.chain__chip {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--plum-card);
  border: 1px solid var(--line-dark);
  color: var(--violet-bright);
  display: grid;
  place-items: center;
  position: relative;
  transition: transform var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease);
}
.chain__node:nth-child(8n+3) .chain__chip,  /* every node ~mid-chain */
.chain__node:nth-child(8n+7) .chain__chip { color: var(--teal-bright); }
.chain__node:hover .chain__chip {
  transform: translateY(-2px);
  border-color: var(--violet);
  box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.12);
}
.chain__chip svg {
  width: 22px; height: 22px;
}
.chain__label {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  text-align: center;
  color: var(--ink-muted-dark);
  letter-spacing: 0.02em;
  line-height: 1.35;
  max-width: 100%;
}
.chain__line {
  flex: 1 1 0;
  align-self: flex-start;
  height: 1px;
  margin-top: 25px;
  background: linear-gradient(90deg,
    rgba(124, 58, 237, 0.55) 0%,
    rgba(20, 184, 166, 0.55) 100%);
  position: relative;
}
.chain__line::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -3px;
  border-left: 5px solid rgba(20, 184, 166, 0.7);
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
}

@media (max-width: 820px) {
  .chain__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .chain__node {
    flex-direction: row;
    width: 100%;
    text-align: left;
    gap: 16px;
    padding: 4px 0;
  }
  .chain__chip {
    width: 44px; height: 44px;
  }
  .chain__chip svg { width: 18px; height: 18px; }
  .chain__label {
    text-align: left;
    font-size: 13px;
    color: var(--ink-on-dark);
  }
  .chain__line {
    margin: 0 0 0 21px;
    width: 1px;
    height: 18px;
    background: linear-gradient(180deg,
      rgba(124, 58, 237, 0.55) 0%,
      rgba(20, 184, 166, 0.55) 100%);
  }
  .chain__line::after {
    right: auto; top: auto;
    left: -3px; bottom: -1px;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 5px solid rgba(20, 184, 166, 0.7);
  }
}

/* ─────────────── Signal Layer ─────────────── */
.signal-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0 0 56px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}
@media (min-width: 640px)  { .signal-stats { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .signal-stats { grid-template-columns: repeat(4, 1fr); } }
.signal-stat {
  padding: 28px 24px 28px 0;
  border-bottom: 1px solid var(--line-light);
}
@media (min-width: 640px) {
  .signal-stat { border-right: 1px solid var(--line-light); padding-left: 24px; }
  .signal-stat:first-child,
  .signal-stat:nth-child(2) { padding-top: 28px; }
  .signal-stat:first-child { padding-left: 0; }
  .signal-stats > :last-child { border-right: 0; }
  .signal-stats > :nth-last-child(-n+2) { border-bottom: 0; }
}
@media (min-width: 1000px) {
  .signal-stat { padding-top: 28px; padding-bottom: 28px; }
  .signal-stat:first-child { padding-left: 0; }
  .signal-stats > :last-child { border-right: 0; }
  .signal-stats > :nth-last-child(-n+4) { border-bottom: 0; }
}
.signal-stat__value {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 3.6vw, 52px);
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--ink);
  margin: 0 0 8px;
}
.signal-stat:nth-child(odd)  .signal-stat__value { color: var(--violet); }
.signal-stat:nth-child(even) .signal-stat__value { color: var(--teal-deep); }
.signal-stat__label {
  margin: 0;
  font-size: 13px;
  color: var(--ink-muted);
  letter-spacing: 0.01em;
}

.signal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  margin-bottom: 56px;
}
@media (min-width: 980px) {
  .signal-grid { grid-template-columns: 1.4fr 1fr; gap: 80px; }
}
.signal-block__head {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  color: var(--violet);
  margin: 0 0 22px;
  padding-left: 28px;
  position: relative;
}
.signal-block__head--mt { margin-top: 36px; color: var(--teal-deep); }
.signal-block__head::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 20px; height: 1px;
  background: currentColor;
}

.chip-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 8px;
}
.chip {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 99px;
  background: white;
  border: 1px solid var(--line-light);
  color: var(--ink);
  transition: transform var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease);
}
.chip:hover {
  transform: translateY(-1px);
  border-color: var(--violet);
  color: var(--violet);
}
.chip--accent {
  background: rgba(124, 58, 237, 0.06);
  border-color: rgba(124, 58, 237, 0.25);
  color: var(--violet-deep);
}
.chip--accent:hover { border-color: var(--violet); }
.chip--teal {
  background: rgba(20, 184, 166, 0.06);
  border-color: rgba(20, 184, 166, 0.25);
  color: var(--teal-deep);
}
.chip--teal:hover { border-color: var(--teal); color: var(--teal-deep); }
.chip--domain {
  background: var(--paper-soft);
  border-color: var(--line-light);
  color: var(--ink);
  border-style: dashed;
}
.chip--domain:hover {
  background: white;
  border-style: solid;
  border-color: var(--violet);
  color: var(--violet);
}

.signal-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line-light);
}
.signal-list li {
  padding: 13px 0 13px 28px;
  border-bottom: 1px solid var(--line-light);
  font-size: 14.5px;
  color: var(--ink);
  position: relative;
}
.signal-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  background: var(--violet);
  border-radius: 50%;
}
.signal-list li:nth-child(even)::before { background: var(--teal-bright); }

.signal-closing {
  margin: 0;
  padding: 32px 0 0;
  border-top: 1px solid var(--line-light);
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: -0.012em;
  line-height: 1.35;
  max-width: 64ch;
  color: var(--ink);
}
.signal-closing::first-letter { color: var(--violet); }

/* ─────────────── Deliverables ─────────────── */
.deliverables {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (min-width: 720px) { .deliverables { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px){ .deliverables { grid-template-columns: 1fr 1fr 1fr; } }
.deliverable {
  background: var(--paper);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
  position: relative;
}
.deliverable:hover { background: var(--paper-soft); }
.deliverable__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tag {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 99px;
  background: var(--paper-soft);
  color: var(--violet);
  border: 1px solid var(--line-light);
}
.deliverable:hover .tag { background: white; }
.deliverable__no {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--ink-muted);
}
.deliverable__title {
  font-weight: 800;
  letter-spacing: -0.015em;
  font-size: 22px;
  line-height: 1.2;
  margin: 0;
}
.deliverable__body {
  margin: 0;
  color: var(--ink-muted);
  font-size: 14.5px;
}

/* ─────────────── Industries ─────────────── */
.industries {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 720px)  { .industries { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) {
  .industries { grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(0, auto); }
  .industry--wide { grid-column: span 4; }
}
.industry {
  background: var(--plum-card);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-lg);
  padding: 24px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.industry:hover {
  transform: translateY(-2px);
  border-color: var(--violet-bright);
}
.industry__art {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--r);
  background: var(--plum-deep);
  position: relative;
  overflow: hidden;
  margin: 0;
}
.industry__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--t-slow) var(--ease);
}
.industry:hover .industry__art img { transform: scale(1.03); }
.industry__art::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 80%, rgba(15, 6, 18, 0.18) 100%);
  pointer-events: none;
}
.industry__art--wide { aspect-ratio: 16 / 6; }

.industry__title {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
  margin: 0;
  color: white;
}
.industry__body {
  margin: 0;
  color: var(--ink-muted-dark);
  font-size: 14px;
}

/* ─────────────── Agents ─────────────── */
.agents {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px)  { .agents { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .agents { grid-template-columns: 1fr 1fr 1fr; } }

.agent {
  background: white;
  border: 1px solid var(--line-light);
  border-radius: var(--r-lg);
  padding: 22px 20px 20px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
  transition: border-color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.agent:hover {
  border-color: var(--violet);
  transform: translateY(-2px);
}
.agent__avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--plum);
  color: white;
  display: grid;
  place-items: center;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  position: relative;
  overflow: hidden;
}
.agent__avatar::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--avatar-a, var(--violet)) 0%, var(--avatar-b, var(--teal-bright)) 100%);
  opacity: 1;
}
.agent__avatar span {
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 2px rgba(0,0,0,0.18);
}
.agent__avatar::after {
  content: "";
  position: absolute;
  bottom: -1px; right: -1px;
  width: 14px; height: 14px;
  background: var(--teal-bright);
  border: 2px solid white;
  border-radius: 50%;
}
.agent__meta { min-width: 0; }
.agent__name {
  font-weight: 800;
  font-size: 15px;
  margin: 0 0 2px;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.agent__name small {
  font-family: "JetBrains Mono", monospace;
  font-weight: 500;
  font-size: 10px;
  color: var(--ink-muted);
  letter-spacing: 0.08em;
}
.agent__role {
  font-size: 13px;
  color: var(--ink);
  margin: 4px 0 8px;
  line-height: 1.35;
}
.agent__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  color: var(--ink-muted);
}
.agent__tags span {
  padding: 2px 7px;
  background: var(--paper-soft);
  border-radius: 99px;
  letter-spacing: 0.04em;
}

.agents__footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line-light);
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  align-items: center;
  justify-content: space-between;
}
.mini-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  margin: 0;
  padding: 0;
}
.mini-stats dt {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
}

/* ─────────────── Trust Markers ─────────────── */
.trust-markers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 720px)  { .trust-markers { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .trust-markers { grid-template-columns: repeat(3, 1fr); } }

.trust-marker {
  background: var(--plum-card);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-lg);
  padding: 22px 22px 24px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  transition: transform var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease);
}
.trust-marker:hover {
  transform: translateY(-2px);
  border-color: var(--violet);
}
.trust-marker__chip {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.16), rgba(20, 184, 166, 0.12));
  border: 1px solid rgba(168, 85, 247, 0.22);
  color: var(--violet-bright);
  display: grid;
  place-items: center;
}
.trust-marker__chip svg { width: 20px; height: 20px; }
.trust-marker:nth-child(3n+2) .trust-marker__chip { color: var(--teal-bright); }
.trust-marker__title {
  font-weight: 800;
  letter-spacing: -0.012em;
  font-size: 15px;
  margin: 0 0 4px;
  color: white;
}
.trust-marker__body {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-muted-dark);
}

/* ─────────────── Hubs ─────────────── */
.hubs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line-dark);
}
@media (min-width: 720px)  { .hubs { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .hubs { grid-template-columns: repeat(4, 1fr); } }

.hub {
  padding: 32px 0;
  border-bottom: 1px solid var(--line-dark);
  position: relative;
}
@media (min-width: 720px) {
  .hub { border-right: 1px solid var(--line-dark); padding-left: 24px; padding-right: 24px; }
  .hub:first-child { padding-left: 0; }
  .hubs > :last-child { border-right: 0; }
}
.hub__no {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--teal-bright);
  letter-spacing: 0.1em;
}
.hub__city {
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 32px;
  margin: 10px 0 4px;
  color: white;
}
.hub__role {
  margin: 0 0 6px;
  font-size: 13px;
  color: var(--ink-on-dark);
}
.hub__addr {
  margin: 0;
  font-family: "JetBrains Mono", monospace;
  font-size: 11.5px;
  color: var(--ink-muted-dark);
  letter-spacing: 0.02em;
}

/* ─────────────── Principles ─────────────── */
.principles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--line-light);
}
@media (min-width: 720px)  { .principles { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .principles { grid-template-columns: repeat(4, 1fr); } }
.principle {
  padding: 32px 24px 32px 0;
  border-bottom: 1px solid var(--line-light);
}
@media (min-width: 720px) {
  .principle { border-right: 1px solid var(--line-light); padding-left: 24px; }
  .principle:first-child { padding-left: 0; }
  .principles > :last-child { border-right: 0; }
}
.principle__title {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}
.principle__body {
  margin: 0;
  color: var(--ink-muted);
  font-size: 14.5px;
}

/* ─────────────── CTA ─────────────── */
.section--cta {
  background: var(--plum);
  position: relative;
  overflow: hidden;
}
.section--cta::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(20,184,166,0.22), transparent 50%),
    radial-gradient(circle at 5% 90%, rgba(124,58,237,0.28), transparent 55%);
  pointer-events: none;
}
.cta {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}
@media (min-width: 980px) {
  .cta { grid-template-columns: 1fr 1fr; gap: 96px; align-items: start; }
}
.cta__copy .lead { color: var(--ink-on-dark); }
.cta__alt { margin-top: 24px; font-size: 13px; color: var(--ink-muted-dark); }
.cta__alt a { color: var(--teal-bright); text-decoration: underline; text-underline-offset: 4px; }

.cta__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--line-dark);
  padding: 28px;
  border-radius: var(--r-lg);
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field--wide { grid-column: 1 / -1; }
.field__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-muted-dark);
  font-weight: 700;
}
.field input,
.field textarea {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line-dark);
  color: white;
  border-radius: var(--r);
  padding: 12px 14px;
  font: inherit;
  font-size: 14.5px;
  transition: border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
  resize: vertical;
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(255,255,255,0.32); }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--violet-bright);
  background: rgba(168,85,247,0.06);
}
.cta__form .btn { grid-column: 1 / -1; }

/* ─────────────── Footer ─────────────── */
.footer {
  background: var(--plum-deep);
  color: var(--ink-on-dark);
  padding-top: 72px;
  padding-bottom: 24px;
  border-top: 1px solid var(--line-dark);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
@media (min-width: 820px) {
  .footer__inner { grid-template-columns: 1.4fr 2fr; }
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.footer__logo { width: 36px; height: 36px; color: var(--violet-bright); }
.footer__wordmark { font-weight: 800; font-size: 22px; color: white; letter-spacing: -0.01em; }
.footer__tagline { margin: 8px 0 0; color: var(--ink-muted-dark); font-size: 14px; max-width: 32ch; }
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer__cols > div { display: flex; flex-direction: column; gap: 10px; }
.footer__head {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--violet-bright);
  font-weight: 700;
  margin: 0 0 6px;
}
.footer__cols a { color: var(--ink-on-dark); font-size: 14px; transition: color var(--t-fast) var(--ease); }
.footer__cols a:hover { color: var(--teal-bright); }
.footer__bottom {
  border-top: 1px solid var(--line-dark);
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 11.5px;
  color: var(--ink-muted-dark);
}
.footer__placeholder {
  margin: 0;
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.02em;
  opacity: 0.7;
}

/* ──────────────────────────────────────────────────────────────────
   CONTENT / INSIGHTS — long-form reading layout
   ────────────────────────────────────────────────────────────────── */

.insight {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(40px, 6vw, 88px) 0 clamp(64px, 9vw, 120px);
}
.insight__inner {
  max-width: 760px;
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.insight__head { margin-bottom: 40px; }
.breadcrumb {
  font-family: "JetBrains Mono", monospace;
  font-size: 11.5px;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}
.breadcrumb a { color: var(--violet); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; text-underline-offset: 3px; }
.breadcrumb__sep { padding: 0 8px; color: var(--line-light); }

.insight__h1 {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: clamp(30px, 4.2vw, 52px);
  letter-spacing: -0.022em;
  line-height: 1.06;
  margin: 0 0 20px;
}
.insight__meta {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
  margin: 0 0 0;
}
.insight__meta strong { color: var(--ink); font-weight: 500; }

.insight__body {
  font-size: 17px;
  line-height: 1.62;
  color: var(--ink);
}
.insight__body > p {
  margin: 0 0 22px;
}
.insight__body > p.lead {
  font-size: 19.5px;
  line-height: 1.5;
  color: var(--ink);
  margin: 28px 0 32px;
}
.insight__body h2 {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: -0.018em;
  line-height: 1.22;
  margin: 52px 0 18px;
  scroll-margin-top: 80px;
}
.insight__body h3 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.012em;
  margin: 32px 0 12px;
}
.insight__body ul, .insight__body ol {
  margin: 0 0 22px;
  padding-left: 22px;
}
.insight__body li { margin-bottom: 8px; }
.insight__body a {
  color: var(--violet);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.insight__body a:hover { color: var(--violet-bright); }
.insight__body code {
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
  background: var(--paper-soft);
  padding: 2px 6px;
  border-radius: 4px;
}
.insight__body blockquote {
  margin: 28px 0;
  padding: 4px 0 4px 22px;
  border-left: 3px solid var(--violet);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--ink);
}
.insight__body blockquote cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-size: 13px;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
}

/* Key Takeaways box */
.key-takeaways {
  background: var(--paper-soft);
  border-left: 3px solid var(--violet);
  padding: 22px 24px 18px;
  margin: 36px 0 40px;
  border-radius: 4px;
}
.key-takeaways__head {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  color: var(--violet);
  margin: 0 0 12px;
}
.key-takeaways ul {
  margin: 0;
  padding-left: 18px;
  list-style: none;
}
.key-takeaways li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 8px;
  font-size: 15.5px;
  line-height: 1.5;
}
.key-takeaways li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--violet);
  font-weight: 700;
}

/* Comparison table */
.insight__body .table-wrap { overflow-x: auto; margin: 28px 0; }
.insight__body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  margin: 0;
}
.insight__body th, .insight__body td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line-light);
  vertical-align: top;
}
.insight__body th {
  font-weight: 700;
  background: var(--paper-soft);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.insight__body tr:hover td { background: var(--paper-soft); }

/* Inline stat callouts */
.stat-inline {
  display: inline-block;
  background: rgba(124, 58, 237, 0.08);
  border-radius: 4px;
  padding: 1px 8px;
  color: var(--violet-deep);
  font-weight: 600;
}

/* FAQ block — semantic <details> */
.faq-block { margin: 40px 0; }
.faq-block details {
  border-top: 1px solid var(--line-light);
  padding: 18px 0;
}
.faq-block details:last-child { border-bottom: 1px solid var(--line-light); }
.faq-block summary {
  list-style: none;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  color: var(--ink);
}
.faq-block summary::-webkit-details-marker { display: none; }
.faq-block summary::after {
  content: "+";
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 400;
  color: var(--violet);
  line-height: 1;
  transition: transform var(--t-fast) var(--ease);
}
.faq-block details[open] summary::after {
  transform: rotate(45deg);
}
.faq-block details > *:not(summary) {
  margin-top: 14px;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink-muted);
}

/* Embedded figures / infographics */
.insight-figure {
  margin: 40px auto;
  max-width: 560px;
  text-align: center;
}
.insight-figure img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--line-light);
}
.insight-figure figcaption {
  font-family: "Inter", sans-serif;
  font-size: 12.5px;
  color: var(--ink-muted);
  margin-top: 12px;
}

.insight-video {
  margin: 40px 0;
}
.insight-video-frame {
  position: relative;
  padding-top: 56.25%;            /* 16:9 */
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line-light);
}
.insight-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.insight-video figcaption {
  font-family: "Inter", sans-serif;
  font-size: 12.5px;
  color: var(--ink-muted);
  margin-top: 12px;
  text-align: center;
}

/* Source citations footer */
.insight-sources {
  border-top: 1px solid var(--line-light);
  margin: 56px 0 0;
  padding-top: 22px;
}
.insight-sources__head {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  color: var(--ink-muted);
  margin: 0 0 12px;
}
.insight-sources ol {
  font-family: "JetBrains Mono", monospace;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--ink-muted);
  padding-left: 22px;
}
.insight-sources a { color: var(--violet); }

/* End-of-article CTA */
.insight-cta {
  margin: 56px 0 0;
  padding: 32px 28px;
  background: var(--plum);
  color: white;
  border-radius: var(--r-lg);
}
.insight-cta__head {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  color: var(--teal-bright);
  margin: 0 0 10px;
}
.insight-cta__title {
  font-weight: 800;
  letter-spacing: -0.015em;
  font-size: 22px;
  margin: 0 0 8px;
  color: white;
}
.insight-cta__body {
  font-size: 14.5px;
  color: var(--ink-on-dark);
  margin: 0 0 18px;
}

/* Related insights */
.related {
  margin: 64px 0 0;
  padding-top: 36px;
  border-top: 1px solid var(--line-light);
}
.related__head {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  color: var(--violet);
  margin: 0 0 22px;
}
.related__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 720px) { .related__list { grid-template-columns: 1fr 1fr; } }
.related__item {
  display: block;
  padding: 18px 20px;
  border: 1px solid var(--line-light);
  border-radius: var(--r);
  background: white;
  transition: border-color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
  color: var(--ink);
  text-decoration: none;
}
.related__item:hover { border-color: var(--violet); transform: translateY(-2px); }
.related__tag {
  font-family: "Inter", sans-serif;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--violet);
  margin: 0 0 6px;
}
.related__title {
  font-weight: 700;
  font-size: 15.5px;
  letter-spacing: -0.01em;
  margin: 0;
}

/* Insights hub layout */
.insights-hub {
  background: var(--paper);
  padding: clamp(56px, 8vw, 100px) 0;
}
.insights-hub__head { max-width: 720px; margin-bottom: 56px; }
.insights-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line-light);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}
.insights-list__item {
  display: block;
  background: var(--paper);
  padding: 28px 0;
  text-decoration: none;
  color: var(--ink);
  transition: background var(--t-fast) var(--ease);
}
.insights-list__item:hover { background: var(--paper-soft); }
.insights-list__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
@media (min-width: 880px) {
  .insights-list__row {
    grid-template-columns: 130px 1fr auto;
    align-items: baseline;
    gap: 32px;
  }
}
.insights-list__tag {
  font-family: "Inter", sans-serif;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--violet);
}
.insights-list__title {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.014em;
  line-height: 1.25;
  margin: 0 0 6px;
}
.insights-list__lede {
  margin: 0;
  font-size: 14.5px;
  color: var(--ink-muted);
  line-height: 1.5;
}
.insights-list__date {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* ─────────────── Motion preferences ─────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
