/* =============================================================
   ideius — single-page site styles
   Design tokens, reset, layout, components, motion.
   ============================================================= */

:root {
  /* Color */
  --ink-950: #07091B;
  --ink-900: #0A0F2C;
  --ink-850: #0E142F;
  --ink-800: #131A3D;
  --ink-700: #1F2851;
  --ink-600: #2A3463;
  --paper:   #F5F1EA;
  --mist:    #A8AFC4;
  --muted:   #6B7393;
  --orange:  #F26C1F;
  --orange-soft: #F58A1E;
  --blue:    #5B8DEF;
  --blue-soft: #87A8F3;
  --gradient: linear-gradient(95deg, #F26C1F 0%, #5B8DEF 100%);
  --gradient-soft: linear-gradient(95deg, rgba(242,108,31,0.18) 0%, rgba(91,141,239,0.18) 100%);

  /* Type */
  --f-display: ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --f-body:    ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --f-mono:    ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;

  /* Layout */
  --container: 1280px;
  --gutter: clamp(20px, 5vw, 64px);
  --section-y: clamp(56px, 7vw, 96px);
  --radius: 8px;
  --radius-lg: 8px;

  /* Motion */
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* =============================================================
   Reset
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-body);
  background-color: var(--ink-950);
  color: var(--paper);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
h1, h2, h3, h4, p, ul, blockquote, figure { margin: 0; }
ul { padding: 0; list-style: none; }

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--paper);
  color: var(--ink-950);
  padding: 10px 16px;
  font-family: var(--f-mono);
  font-size: 13px;
  z-index: 2000;
}
.skip-link:focus { left: 16px; top: 16px; }

/* Selection */
::selection { background: rgba(242, 108, 31, 0.35); color: var(--paper); }

/* Focus rings */
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================================
   Layout
   ============================================================= */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--section-y);
  position: relative;
}
.section::before {
  content: "";
  position: absolute;
  inset: 0 var(--gutter) auto var(--gutter);
  height: 1px;
  background: var(--ink-700);
  opacity: 0.55;
}
.section--alt {
  background: linear-gradient(180deg, var(--ink-900) 0%, var(--ink-950) 100%);
}

.section__head {
  max-width: 760px;
  margin-bottom: clamp(32px, 4vw, 52px);
}
.section__head--row {
  max-width: none;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: end;
  justify-content: space-between;
}
.section__head-aside {
  color: var(--mist);
  font-size: 16px;
  max-width: 360px;
}

/* =============================================================
   Type
   ============================================================= */
.eyebrow {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mist);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.eyebrow__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 12px rgba(242, 108, 31, 0.7);
  animation: pulse 2.6s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.85); }
}

.display {
  font-family: var(--f-display);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.06;
  color: var(--paper);
  text-wrap: balance;
  /* Long words like "intelligence" must be allowed to break rather than
     overflow on narrow viewports. */
  overflow-wrap: break-word;
  word-break: normal;
}
h1.display { font-size: 66px; }
.display--md { font-size: 46px; }

/* On narrow screens, drop text-wrap: balance — it interacts badly with
   hard <br> breaks and can produce a "wide line" the browser refuses
   to re-wrap. Natural wrapping is more reliable here. */
@media (max-width: 900px) {
  h1.display { font-size: 52px; }
  .display--md { font-size: 38px; }
}
@media (max-width: 600px) {
  .display { text-wrap: pretty; }
  h1.display { font-size: 38px; }
  .display--md { font-size: 31px; }
}

.lede {
  font-size: 19px;
  color: var(--mist);
  line-height: 1.55;
  max-width: 640px;
  margin-top: 20px;
}
@media (max-width: 600px) {
  .lede { font-size: 17px; }
}

.word-grad {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  font-weight: 600;
  /* Italic glyphs overhang the inline box on the right; with
     background-clip: text the gradient stops at the box edge and the
     overhanging portion of the last glyph would render as transparent
     (visually clipped). A small right padding extends the paint area;
     the negative margin keeps the visible layout the same. */
  padding-inline-end: 0.12em;
  margin-inline-end: -0.06em;
}

/* =============================================================
   Buttons
   ============================================================= */
.btn {
  --btn-bg: transparent;
  --btn-color: var(--paper);
  --btn-border: 1px solid var(--ink-700);

  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-color);
  border: var(--btn-border);
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0;
  transition: transform .25s var(--ease), border-color .25s var(--ease), background-color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--gradient {
  --btn-color: var(--ink-950);
  --btn-border: 1px solid transparent;
  background: var(--gradient);
  font-weight: 600;
  position: relative;
  isolation: isolate;
  box-shadow: 0 1px 0 rgba(255,255,255,0.18) inset, 0 10px 30px -12px rgba(242,108,31,0.5);
}
.btn--gradient:hover {
  box-shadow: 0 1px 0 rgba(255,255,255,0.22) inset, 0 14px 36px -12px rgba(91,141,239,0.55);
}
.btn--gradient::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: var(--gradient);
  filter: blur(14px);
  opacity: 0;
  z-index: -1;
  transition: opacity .35s var(--ease);
}
.btn--gradient:hover::before { opacity: 0.55; }

.btn--ghost {
  --btn-bg: transparent;
  --btn-border: 1px solid var(--ink-700);
}
.btn--ghost:hover { --btn-border: 1px solid var(--mist); }

.btn--full { width: 100%; justify-content: center; }

@media (max-width: 600px) {
  .btn {
    max-width: 100%;
    justify-content: center;
    text-align: center;
    white-space: normal;
  }
}

/* =============================================================
   Nav
   ============================================================= */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding-block: 14px;
  transition: background-color .3s var(--ease), border-color .3s var(--ease), backdrop-filter .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(7, 9, 27, 0.78);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--ink-700);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0;
  color: var(--paper);
  transition: opacity .2s var(--ease);
}
.nav__brand:hover { opacity: 0.85; }
.nav__mark {
  width: 44px;
  height: 44px;
  filter: drop-shadow(0 4px 12px rgba(242, 108, 31, 0.25));
}
.nav__wordmark { line-height: 1; margin-top: 4px; }
@media (max-width: 480px) {
  .nav__brand { font-size: 20px; }
  .nav__mark { width: 38px; height: 38px; }
}

.nav__links {
  display: flex;
  gap: 24px;
  margin-inline-start: auto;
  font-size: 14.5px;
}
.nav__links a {
  color: var(--mist);
  transition: color .2s var(--ease);
  position: relative;
}
.nav__links a:hover { color: var(--paper); }

.nav__cta { padding: 10px 18px; font-size: 14px; }

.nav__toggle { display: none; }
.nav__mobile { display: none; }

@media (max-width: 980px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    margin-inline-start: auto;
    padding: 10px;
  }
  .nav__toggle span {
    width: 22px;
    height: 1.5px;
    background: var(--paper);
    transition: transform .3s var(--ease), opacity .3s var(--ease);
  }
  .nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
  .nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  .nav__mobile {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 24px var(--gutter);
    background: var(--ink-900);
    border-top: 1px solid var(--ink-700);
  }
  .nav__mobile[hidden] { display: none; }
  .nav__mobile a {
    padding: 18px 0;
    font-family: var(--f-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--paper);
    border-bottom: 1px solid var(--ink-700);
  }
  .nav__mobile a.btn {
    width: 100%;
    margin-top: 18px;
    align-self: stretch;
    border: 1px solid transparent;
    padding: 16px 22px;
    font-family: var(--f-body);
    font-size: clamp(17px, 5vw, 20px);
    line-height: 1.25;
    overflow-wrap: anywhere;
  }
}

/* =============================================================
   Hero
   ============================================================= */
.hero {
  position: relative;
  padding-block: clamp(96px, 11vh, 132px) clamp(48px, 6vw, 80px);
  min-height: clamp(520px, 70vh, 760px);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: block;
  min-height: auto;
  padding-block: 0;
}
.hero__inner > * {
  max-width: 860px;
}
.hero__inner .hero__meta { max-width: 560px; }
@media (max-width: 1100px) {
  .hero__inner > * { max-width: none; }
}

.hero__sub {
  font-size: 18px;
  color: var(--mist);
  max-width: 620px;
  margin-top: 24px;
  line-height: 1.55;
}
@media (max-width: 600px) {
  .hero__sub { font-size: 16px; }
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  max-width: 560px;
  margin-top: clamp(40px, 6vw, 72px);
  padding-top: 24px;
  border-top: 1px solid var(--ink-700);
}
.hero__meta > div { display: flex; flex-direction: column; gap: 6px; }
@media (max-width: 560px) {
  /* 3 columns get cramped — wrap to 2 columns so labels and values
     don't get truncated. */
  .hero__meta { grid-template-columns: 1fr 1fr; gap: 24px; }
}

.meta-label {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.meta-value {
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--paper);
}

/* Cursor-following gradient glow */
.hero__glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(
      600px 600px at var(--mx, 30%) var(--my, 40%),
      rgba(242, 108, 31, 0.22) 0%,
      rgba(91, 141, 239, 0.14) 30%,
      transparent 60%
    );
  transition: background .25s var(--ease);
}

/* Prominent hero brand mark */
.hero__mark {
  position: absolute;
  top: 50%;
  right: clamp(40px, 6vw, 96px);
  transform: translateY(-50%);
  width: clamp(280px, 30vw, 440px);
  aspect-ratio: 1;
  z-index: 1;
  opacity: 0.95;
  background: center / contain no-repeat;
  filter: drop-shadow(0 24px 48px rgba(242, 108, 31, 0.22))
          drop-shadow(0 0 80px rgba(91, 141, 239, 0.18));
  pointer-events: none;
  animation: hero-mark-float 9s ease-in-out infinite;
}
@media (min-width: 641px) {
  .hero__mark { background-image: url("/assets/img/logo-mark-320.png"); }
}
@keyframes hero-mark-float {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50%      { transform: translateY(calc(-50% - 10px)) translateX(0); }
}
@media (max-width: 1100px) {
  .hero__mark {
    opacity: 0.12;
    right: -60px;
    width: 380px;
    filter: none;
    animation: none;
  }
}
@media (max-width: 640px) {
  .hero__mark { display: none; }
}

/* "Makers of Packwolf.ai" attribution — sits beneath the hero mark on desktop,
   reflows into a quiet line below the meta tiles on narrower screens.

   Two variants exist in the DOM and toggle via display so the desktop one
   can be positioned relative to the hero (viewport) — matching the bulb's
   own `right` offset — while the mobile one stays inside the content
   container's padding. Only one is in the a11y tree at a time. */
.hero__makers {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mist);
  transition: color .2s var(--ease);
}
.hero__makers:hover,
.hero__makers:focus-visible { color: var(--paper); }
.hero__makers:focus-visible {
  outline: 1px solid var(--mist);
  outline-offset: 6px;
  border-radius: 4px;
}
.hero__makers-brand {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.02em;
}
.hero__makers-arrow {
  opacity: 0.7;
  transition: transform .2s var(--ease), opacity .2s var(--ease);
}
.hero__makers:hover .hero__makers-arrow,
.hero__makers:focus-visible .hero__makers-arrow {
  opacity: 1;
  transform: translate(1px, -1px);
}

/* Desktop variant — same `right` and `width` clamps as `.hero__mark`
   so the label centers under the bulb in viewport coordinates. */
.hero__makers--anchor {
  position: absolute;
  top: calc(50% + clamp(150px, 16vw, 230px));
  right: clamp(40px, 6vw, 96px);
  width: clamp(280px, 30vw, 440px);
  justify-content: center;
  z-index: 3;
}
.hero__makers--inline { display: none; }

@media (max-width: 1100px) {
  .hero__makers--anchor { display: none; }
  .hero__makers--inline {
    display: inline-flex;
    margin-top: 20px;
  }
}

/* Faint grid behind hero */
.hero__grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(168,175,196,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(168,175,196,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 80%);
}

/* =============================================================
   Marquee
   ============================================================= */
.marquee {
  border-block: 1px solid var(--ink-700);
  overflow: hidden;
  background: var(--ink-900);
  /* Fade content into/out of view at the edges so text doesn't appear
     hard-truncated where the viewport ends. */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 7%, black 93%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, black 7%, black 93%, transparent 100%);
}
.marquee__track {
  display: flex;
  gap: 32px;
  align-items: center;
  padding-block: 16px;
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--paper);
  letter-spacing: 0;
  white-space: nowrap;
  width: max-content;
  animation: scroll-x 55s linear infinite;
}
@media (max-width: 600px) {
  .marquee__track { font-size: 20px; }
}
.marquee__track .dot { color: var(--orange); }
@keyframes scroll-x {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

/* =============================================================
   Bento — What we do
   ============================================================= */
.bento {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}
.bento__tile {
  --tile-pad: clamp(28px, 3vw, 40px);
  position: relative;
  grid-column: span 3;
  background: linear-gradient(180deg, var(--ink-800) 0%, var(--ink-850) 100%);
  border: 1px solid var(--ink-700);
  border-radius: var(--radius-lg);
  padding: var(--tile-pad);
  transition: transform .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease);
  isolation: isolate;
  overflow: hidden;
}
.bento__tile:hover {
  transform: translateY(-3px);
  border-color: var(--ink-600);
}
.bento__tile::after {
  /* subtle gradient hairline at top edge */
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.bento__tile:hover::after { opacity: 0.55; }

.bento__tile--lg { grid-column: span 6; }
.bento__tile--wide { grid-column: span 6; }

@media (min-width: 880px) {
  .bento__tile--lg { grid-column: span 6; }
  .bento__tile { grid-column: span 2; }
  .bento__tile--wide { grid-column: span 6; }
}

@media (max-width: 879px) {
  .bento { grid-template-columns: 1fr; }
  .bento__tile, .bento__tile--lg, .bento__tile--wide { grid-column: span 1; }
}

.tile__corner {
  position: absolute;
  font-family: var(--f-mono);
  font-size: 14px;
  color: var(--ink-600);
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.tile__corner--tl { top: 14px; left: 14px; }
.tile__corner--tr { top: 14px; right: 14px; }
.tile__corner--bl { bottom: 14px; left: 14px; }
.tile__corner--br { bottom: 14px; right: 14px; }

.tile__num {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--orange);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  text-transform: none;
}
.tile__title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 30px;
  letter-spacing: 0;
  line-height: 1.15;
  color: var(--paper);
  margin-bottom: 14px;
}
.bento__tile--lg .tile__title { font-size: 38px; }
.tile__body {
  color: var(--mist);
  font-size: 16px;
  line-height: 1.6;
  max-width: 60ch;
}
@media (max-width: 600px) {
  .tile__title { font-size: 25px; }
  .bento__tile--lg .tile__title { font-size: 30px; }
}
.tile__bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.tile__bullets li {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--mist);
  padding: 6px 12px;
  border: 1px solid var(--ink-700);
  border-radius: 999px;
  background: rgba(255,255,255,0.02);
}

/* =============================================================
   Content pages — local SEO / service pages
   ============================================================= */
.page-hero {
  position: relative;
  padding-block: clamp(112px, 14vh, 168px) clamp(48px, 7vw, 92px);
  overflow: hidden;
  isolation: isolate;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(10,15,44,0.92) 0%, rgba(7,9,27,0.96) 100%),
    linear-gradient(90deg, rgba(242,108,31,0.10) 0%, rgba(91,141,239,0.10) 100%);
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.28;
  background-image:
    linear-gradient(to right, rgba(168,175,196,0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(168,175,196,0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, black 0%, transparent 78%);
  -webkit-mask-image: linear-gradient(180deg, black 0%, transparent 78%);
}
.page-hero__inner {
  max-width: 900px;
  display: block;
  min-height: auto;
  padding-block: 0;
}
.page-hero__sub {
  color: var(--mist);
  font-size: 20px;
  line-height: 1.6;
  max-width: 720px;
  margin-top: 24px;
}
@media (max-width: 600px) {
  .page-hero__sub { font-size: 17px; }
}
.page-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.industry-detail-hero {
  position: relative;
  padding-block: clamp(112px, 14vh, 168px) clamp(54px, 7vw, 98px);
  overflow: hidden;
  isolation: isolate;
}
.industry-detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 78% 28%, rgba(91,141,239,0.16) 0%, transparent 34%),
    radial-gradient(circle at 18% 20%, rgba(242,108,31,0.12) 0%, transparent 32%),
    linear-gradient(180deg, rgba(10,15,44,0.94) 0%, rgba(7,9,27,0.98) 100%);
}
.industry-detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.3;
  background-image:
    linear-gradient(to right, rgba(168,175,196,0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(168,175,196,0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, black 0%, transparent 82%);
  -webkit-mask-image: linear-gradient(180deg, black 0%, transparent 82%);
}
.industry-detail-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: clamp(40px, 7vw, 92px);
  align-items: center;
  min-height: auto;
  padding-block: 0;
}
.industry-detail-hero__copy {
  max-width: 850px;
}
.industry-detail-visual {
  position: relative;
  border: 1px solid var(--ink-700);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(31,40,81,0.74) 0%, rgba(12,18,43,0.94) 100%);
  box-shadow:
    0 34px 90px -58px rgba(91,141,239,0.95),
    0 1px 0 rgba(255,255,255,0.08) inset;
  overflow: hidden;
}
.industry-detail-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(242,108,31,0.12), transparent 34%),
    radial-gradient(circle at 72% 26%, rgba(91,141,239,0.14), transparent 30%);
  pointer-events: none;
}
.industry-detail-visual__header {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid var(--ink-700);
  background: rgba(7,9,27,0.28);
}
.industry-detail-visual__header span,
.industry-detail-visual__note span {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.industry-detail-visual__header strong {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--paper);
}
.industry-detail-visual__frame {
  position: relative;
  z-index: 1;
  padding: clamp(18px, 3vw, 28px);
}
.industry-detail-visual__svg {
  display: block;
  width: 100%;
  height: auto;
}
.industry-scene {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: minmax(380px, 1fr) auto;
  min-height: clamp(500px, 42vw, 580px);
}
.industry-scene:has(.industry-scene__art) {
  grid-template-rows: auto auto;
  min-height: 0;
}
.industry-scene:has(.industry-scene__art) .industry-scene__canvas {
  aspect-ratio: 600 / 480;
  min-height: 0;
}
.industry-scene__canvas {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 52% 48%, rgba(91,141,239,0.16), transparent 34%),
    linear-gradient(180deg, rgba(31,40,81,0.5), rgba(10,15,44,0.18));
}
.industry-scene__canvas::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image:
    linear-gradient(to right, rgba(168,175,196,0.09) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(168,175,196,0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 50% 48%, black 0%, transparent 76%);
  -webkit-mask-image: radial-gradient(circle at 50% 48%, black 0%, transparent 76%);
}
.industry-scene__canvas::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 58%;
  aspect-ratio: 1;
  border: 1px solid rgba(168,175,196,0.13);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.industry-scene__canvas:has(.industry-scene__art) {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 52% 48%, rgba(91,141,239,0.10), transparent 60%),
    linear-gradient(180deg, #0f1840 0%, #070b22 100%);
}
.industry-scene__canvas:has(.industry-scene__art)::before,
.industry-scene__canvas:has(.industry-scene__art)::after {
  display: none;
}
.industry-scene__art {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.scene-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(168,175,196,0.14);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.scene-ring--outer {
  width: 72%;
  aspect-ratio: 1;
  border-color: color-mix(in srgb, var(--scene-accent, #f26c1f) 40%, transparent);
}
.scene-ring--inner {
  width: 40%;
  aspect-ratio: 1;
  border-style: dashed;
}
.scene-core {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 50%;
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  border: 1px solid rgba(245,241,234,0.42);
  border-radius: 24px;
  color: var(--paper);
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(245,241,234,0.16), transparent 55%),
    rgba(7,9,27,0.92);
  box-shadow:
    0 0 58px rgba(242,108,31,0.26),
    0 0 78px rgba(91,141,239,0.18);
  transform: translate(-50%, -50%);
}
.scene-thread {
  position: absolute;
  z-index: 1;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--scene-accent, rgba(242,108,31,0.7)), transparent);
  opacity: 0.65;
  transform-origin: left center;
}
.scene-thread--one {
  left: 18%;
  top: 37%;
  width: 34%;
  transform: rotate(-15deg);
}
.scene-thread--two {
  left: 50%;
  top: 41%;
  width: 34%;
  transform: rotate(16deg);
}
.scene-thread--three {
  left: 26%;
  top: 67%;
  width: 46%;
  transform: rotate(-7deg);
}
.scene-shape {
  position: absolute;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(168,175,196,0.24);
  border-radius: 18px;
  background: rgba(7,9,27,0.74);
  box-shadow: 0 28px 70px -48px rgba(91,141,239,0.9);
}
.scene-shape::before,
.scene-shape::after {
  content: "";
  position: absolute;
}
.scene-shape--one {
  left: 8%;
  top: 16%;
  width: 34%;
  height: 48%;
  border-color: color-mix(in srgb, var(--scene-accent, #f26c1f) 58%, transparent);
}
.scene-shape--two {
  right: 9%;
  top: 18%;
  width: 31%;
  height: 31%;
}
.scene-shape--three {
  left: 11%;
  bottom: 13%;
  width: 30%;
  height: 24%;
}
.scene-shape--four {
  right: 11%;
  bottom: 14%;
  width: 34%;
  height: 27%;
  border-color: color-mix(in srgb, var(--scene-blue, #5b8def) 54%, transparent);
}
.industry-scene__label {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 20px 22px;
  border-top: 1px solid var(--ink-700);
  background: rgba(7,9,27,0.42);
}
.industry-scene__label span {
  color: var(--muted);
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.industry-scene__label strong {
  max-width: 28ch;
  color: var(--paper);
  font-family: var(--f-display);
  font-size: 22px;
  line-height: 1.1;
  text-align: right;
  letter-spacing: 0;
}
.industry-scene--law {
  --scene-accent: rgba(242,108,31,0.72);
  --scene-blue: rgba(91,141,239,0.62);
}
.industry-scene--law .scene-shape--one,
.industry-scene--services .scene-shape--one,
.industry-scene--finance .scene-shape--one {
  background:
    repeating-linear-gradient(180deg, transparent 0 28px, rgba(245,241,234,0.55) 29px 33px, transparent 33px 50px),
    linear-gradient(135deg, rgba(242,108,31,0.1), transparent 55%),
    rgba(7,9,27,0.78);
}
.industry-scene--law .scene-shape--one::after {
  left: 22px;
  bottom: 28px;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(245,241,234,0.24);
  border-radius: 50%;
}
.industry-scene--law .scene-shape--two {
  background:
    radial-gradient(circle at 28% 30%, rgba(245,241,234,0.66) 0 4px, transparent 5px),
    radial-gradient(circle at 54% 58%, rgba(245,241,234,0.45) 0 4px, transparent 5px),
    radial-gradient(circle at 74% 36%, rgba(91,141,239,0.5) 0 4px, transparent 5px),
    rgba(7,9,27,0.78);
}
.industry-scene--law .scene-shape--three,
.industry-scene--law .scene-shape--four {
  background:
    linear-gradient(90deg, rgba(245,241,234,0.72) 0 48%, transparent 48%),
    repeating-linear-gradient(180deg, transparent 0 18px, rgba(168,175,196,0.32) 19px 22px, transparent 22px 36px),
    rgba(7,9,27,0.76);
}
.industry-scene--healthcare {
  --scene-accent: rgba(91,141,239,0.72);
  --scene-blue: rgba(242,108,31,0.5);
}
.industry-scene--healthcare .scene-shape--one {
  background:
    radial-gradient(circle at 16% 18%, rgba(91,141,239,0.75) 0 5px, transparent 6px),
    radial-gradient(circle at 16% 44%, rgba(242,108,31,0.58) 0 5px, transparent 6px),
    radial-gradient(circle at 16% 70%, rgba(245,241,234,0.56) 0 5px, transparent 6px),
    repeating-linear-gradient(180deg, transparent 0 42px, rgba(168,175,196,0.2) 43px 44px, transparent 44px 70px),
    rgba(7,9,27,0.76);
}
.industry-scene--healthcare .scene-shape--two {
  background:
    linear-gradient(90deg, transparent 47%, rgba(245,241,234,0.72) 47% 53%, transparent 53%),
    linear-gradient(180deg, transparent 47%, rgba(245,241,234,0.72) 47% 53%, transparent 53%),
    rgba(7,9,27,0.78);
}
.industry-scene--healthcare .scene-shape--three,
.industry-scene--healthcare .scene-shape--four {
  background:
    repeating-linear-gradient(90deg, rgba(91,141,239,0.16) 0 26px, transparent 26px 50px),
    repeating-linear-gradient(180deg, transparent 0 24px, rgba(245,241,234,0.35) 25px 29px, transparent 29px 44px),
    rgba(7,9,27,0.74);
}
.industry-scene--it {
  --scene-accent: rgba(242,108,31,0.66);
  --scene-blue: rgba(91,141,239,0.72);
}
.industry-scene--it .scene-shape--one {
  background:
    linear-gradient(90deg, rgba(91,141,239,0.28) 0 22%, transparent 22%),
    repeating-linear-gradient(180deg, transparent 0 22px, rgba(245,241,234,0.52) 23px 27px, transparent 27px 42px),
    rgba(7,9,27,0.78);
}
.industry-scene--it .scene-shape--two,
.industry-scene--it .scene-shape--three,
.industry-scene--it .scene-shape--four {
  background:
    radial-gradient(circle at 24% 32%, rgba(91,141,239,0.74) 0 5px, transparent 6px),
    radial-gradient(circle at 64% 34%, rgba(245,241,234,0.58) 0 5px, transparent 6px),
    radial-gradient(circle at 42% 66%, rgba(242,108,31,0.58) 0 5px, transparent 6px),
    linear-gradient(135deg, transparent 47%, rgba(168,175,196,0.2) 48% 50%, transparent 51%),
    rgba(7,9,27,0.76);
}
.industry-scene--real-estate {
  --scene-accent: rgba(91,141,239,0.72);
  --scene-blue: rgba(242,108,31,0.58);
}
.industry-scene--real-estate .scene-shape--one,
.industry-scene--real-estate .scene-shape--two {
  border-radius: 12px;
  background:
    linear-gradient(90deg, transparent 34%, rgba(245,241,234,0.28) 34% 36%, transparent 36% 66%, rgba(245,241,234,0.22) 66% 68%, transparent 68%),
    linear-gradient(180deg, transparent 38%, rgba(245,241,234,0.24) 38% 40%, transparent 40% 70%, rgba(245,241,234,0.2) 70% 72%, transparent 72%),
    rgba(7,9,27,0.76);
}
.industry-scene--real-estate .scene-shape--three,
.industry-scene--real-estate .scene-shape--four {
  background:
    repeating-linear-gradient(90deg, rgba(91,141,239,0.2) 0 16px, transparent 16px 30px),
    linear-gradient(180deg, rgba(242,108,31,0.14), transparent),
    rgba(7,9,27,0.76);
}
.industry-scene--services {
  --scene-accent: rgba(242,108,31,0.58);
  --scene-blue: rgba(91,141,239,0.72);
}
.industry-scene--services .scene-shape--two,
.industry-scene--services .scene-shape--three,
.industry-scene--services .scene-shape--four {
  background:
    repeating-linear-gradient(180deg, rgba(168,175,196,0.18) 0 1px, transparent 1px 32px),
    repeating-linear-gradient(90deg, rgba(245,241,234,0.54) 0 18px, transparent 18px 30px),
    rgba(7,9,27,0.76);
}
.industry-scene--finance {
  --scene-accent: rgba(91,141,239,0.72);
  --scene-blue: rgba(242,108,31,0.58);
}
.industry-scene--finance .scene-shape--one {
  background:
    linear-gradient(90deg, transparent 48%, rgba(91,141,239,0.2) 48% 50%, transparent 50%),
    repeating-linear-gradient(180deg, transparent 0 24px, rgba(245,241,234,0.46) 25px 28px, transparent 28px 42px),
    rgba(7,9,27,0.76);
}
.industry-scene--finance .scene-shape--two,
.industry-scene--finance .scene-shape--three,
.industry-scene--finance .scene-shape--four {
  background:
    linear-gradient(135deg, transparent 0 42%, rgba(242,108,31,0.42) 43% 46%, transparent 47%),
    linear-gradient(90deg, rgba(245,241,234,0.56) 0 42%, transparent 42%),
    repeating-linear-gradient(180deg, transparent 0 22px, rgba(168,175,196,0.28) 23px 25px, transparent 25px 42px),
    rgba(7,9,27,0.76);
}
.industry-scene--manufacturing {
  --scene-accent: rgba(242,108,31,0.72);
  --scene-blue: rgba(91,141,239,0.62);
}
.industry-scene--manufacturing .scene-shape--one {
  background:
    repeating-linear-gradient(90deg, rgba(245,241,234,0.52) 0 6px, transparent 6px 30px),
    linear-gradient(180deg, transparent 48%, rgba(242,108,31,0.45) 48% 52%, transparent 52%),
    rgba(7,9,27,0.78);
}
.industry-scene--manufacturing .scene-shape--two,
.industry-scene--manufacturing .scene-shape--three,
.industry-scene--manufacturing .scene-shape--four {
  background:
    radial-gradient(circle at 26% 50%, rgba(242,108,31,0.68) 0 6px, transparent 7px),
    radial-gradient(circle at 50% 50%, rgba(245,241,234,0.58) 0 6px, transparent 7px),
    radial-gradient(circle at 74% 50%, rgba(91,141,239,0.68) 0 6px, transparent 7px),
    linear-gradient(180deg, transparent 49%, rgba(168,175,196,0.3) 49% 51%, transparent 51%),
    rgba(7,9,27,0.76);
}
.industry-snapshot {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  min-height: 324px;
  overflow: hidden;
}
.industry-snapshot::before {
  content: "";
  position: absolute;
  inset: 18px 10px 34px;
  opacity: 0.55;
  background-image:
    linear-gradient(to right, rgba(168,175,196,0.12) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(168,175,196,0.1) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 50% 50%, black 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, black 0%, transparent 72%);
}
.industry-snapshot::after {
  content: "";
  position: absolute;
  inset: 18% 18% 14%;
  border: 1px solid rgba(168,175,196,0.12);
  border-radius: 999px;
  opacity: 0.76;
}
.snapshot-panel,
.snapshot-strip,
.snapshot-mini {
  position: relative;
  z-index: 1;
  min-width: 0;
  border: 1px solid rgba(168,175,196,0.2);
  background: rgba(7,9,27,0.76);
  box-shadow: 0 18px 54px -38px rgba(91,141,239,0.9);
}
.snapshot-panel {
  display: grid;
  align-content: space-between;
  min-height: 184px;
  padding: 18px;
  border-radius: 18px;
}
.snapshot-panel--primary {
  grid-row: span 2;
}
.snapshot-stack {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  min-width: 0;
}
.snapshot-strip {
  display: flex;
  gap: 12px;
  align-items: center;
  min-height: 82px;
  padding: 14px;
  border-radius: 16px;
}
.snapshot-mini {
  display: grid;
  align-content: center;
  min-height: 96px;
  padding: 15px;
  border-radius: 16px;
}
.snapshot-strip > div {
  min-width: 0;
}
.snapshot-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.snapshot-title {
  display: block;
  color: var(--paper);
  font-family: var(--f-display);
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1;
  letter-spacing: 0;
  overflow-wrap: break-word;
}
.snapshot-strip .snapshot-title,
.snapshot-mini .snapshot-title {
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.08;
}
.snapshot-copy {
  margin: 7px 0 0;
  color: var(--mist);
  font-size: 13px;
  line-height: 1.35;
}
.snapshot-lines {
  display: grid;
  gap: 9px;
  margin-top: 20px;
}
.snapshot-line {
  display: block;
  width: var(--w, 100%);
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,0.88), rgba(168,175,196,0.28));
}
.snapshot-line--thin {
  height: 4px;
  background: rgba(168,175,196,0.34);
}
.snapshot-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.snapshot-tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border: 1px solid rgba(168,175,196,0.22);
  border-radius: 999px;
  color: var(--mist);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.04);
}
.snapshot-flow {
  position: relative;
  z-index: 1;
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.snapshot-flow span {
  display: grid;
  place-items: center;
  min-height: 44px;
  border: 1px solid rgba(168,175,196,0.18);
  border-radius: 999px;
  color: var(--mist);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.04);
}
.snapshot-accent {
  color: #ff8a3d;
}
.industry-snapshot--law .snapshot-panel--primary,
.industry-snapshot--it .snapshot-panel--primary,
.industry-snapshot--manufacturing .snapshot-panel--primary {
  border-color: rgba(242,108,31,0.5);
}
.industry-snapshot--healthcare .snapshot-panel--primary,
.industry-snapshot--real-estate .snapshot-panel--primary,
.industry-snapshot--finance .snapshot-panel--primary,
.industry-snapshot--services .snapshot-panel--primary {
  border-color: rgba(91,141,239,0.5);
}
.industry-snapshot--law .snapshot-panel--primary {
  background:
    linear-gradient(135deg, rgba(242,108,31,0.14), transparent 52%),
    rgba(7,9,27,0.78);
}
.industry-snapshot--healthcare .snapshot-panel--primary {
  background:
    radial-gradient(circle at 75% 20%, rgba(91,141,239,0.2), transparent 36%),
    rgba(7,9,27,0.78);
}
.industry-snapshot--it .snapshot-panel--primary {
  background:
    linear-gradient(135deg, rgba(91,141,239,0.16), transparent 54%),
    rgba(7,9,27,0.78);
}
.industry-snapshot--real-estate .snapshot-panel--primary {
  background:
    linear-gradient(160deg, rgba(91,141,239,0.16), transparent 48%),
    rgba(7,9,27,0.78);
}
.industry-snapshot--services .snapshot-panel--primary {
  background:
    radial-gradient(circle at 78% 70%, rgba(242,108,31,0.12), transparent 34%),
    rgba(7,9,27,0.78);
}
.industry-snapshot--finance .snapshot-panel--primary {
  background:
    linear-gradient(135deg, rgba(91,141,239,0.15), transparent 45%),
    rgba(7,9,27,0.78);
}
.industry-snapshot--manufacturing .snapshot-panel--primary {
  background:
    linear-gradient(135deg, rgba(242,108,31,0.16), transparent 44%),
    rgba(7,9,27,0.78);
}
.detail-grid {
  stroke: rgba(168,175,196,0.12);
  stroke-width: 1;
}
.detail-link {
  fill: none;
  stroke: url(#detailStroke);
  stroke-width: 3;
  stroke-linecap: round;
}
.detail-rail {
  fill: none;
  stroke: rgba(168,175,196,0.18);
  stroke-width: 1.4;
  stroke-dasharray: 7 9;
}
.detail-node rect,
.detail-node circle {
  fill: rgba(7,9,27,0.82);
  stroke: rgba(168,175,196,0.34);
  stroke-width: 1.5;
}
.detail-node--accent rect,
.detail-node--accent circle {
  stroke: rgba(242,108,31,0.76);
}
.detail-node--blue rect,
.detail-node--blue circle {
  stroke: rgba(91,141,239,0.78);
}
.detail-icon {
  fill: none;
  stroke: var(--paper);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.detail-label {
  fill: var(--paper);
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}
.detail-small {
  fill: var(--mist);
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.detail-core {
  fill: rgba(10,15,44,0.92);
  stroke: rgba(242,108,31,0.78);
  stroke-width: 2;
}
.detail-core-text {
  fill: var(--paper);
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0;
  text-anchor: middle;
}
.industry-detail-visual__notes {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--ink-700);
  background: rgba(7,9,27,0.36);
}
.industry-detail-visual__note {
  min-height: 106px;
  padding: 18px 20px;
  border-right: 1px solid rgba(168,175,196,0.14);
}
.industry-detail-visual__note:nth-child(2n) {
  border-right: 0;
}
.industry-detail-visual__note:nth-child(n+3) {
  border-top: 1px solid rgba(168,175,196,0.14);
}
.industry-detail-visual__note strong {
  display: block;
  margin-top: 10px;
  color: var(--paper);
  font-family: var(--f-display);
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0;
}
.industry-detail-visual--healthcare::before {
  background:
    radial-gradient(circle at 50% 42%, rgba(91,141,239,0.16), transparent 36%),
    radial-gradient(circle at 74% 24%, rgba(242,108,31,0.1), transparent 28%);
}
.industry-detail-visual--it::before,
.industry-detail-visual--manufacturing::before {
  background:
    radial-gradient(circle at 48% 42%, rgba(91,141,239,0.16), transparent 36%),
    radial-gradient(circle at 22% 26%, rgba(242,108,31,0.12), transparent 32%);
}
@media (max-width: 1040px) {
  .industry-detail-hero__inner {
    grid-template-columns: 1fr;
  }
  .industry-detail-visual {
    max-width: 680px;
  }
}
@media (max-width: 600px) {
  .detail-label {
    display: none;
  }
  .industry-detail-visual__header {
    align-items: flex-start;
    flex-direction: column;
  }
  .industry-scene {
    grid-template-rows: minmax(330px, 1fr) auto;
    min-height: 430px;
  }
  .industry-scene__canvas::after,
  .scene-ring--outer {
    width: 82%;
  }
  .scene-ring--inner {
    width: 48%;
  }
  .scene-core {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    font-size: 24px;
  }
  .scene-shape--one {
    left: 6%;
    top: 16%;
    width: 38%;
    height: 42%;
  }
  .scene-shape--two {
    right: 6%;
    top: 18%;
    width: 35%;
    height: 28%;
  }
  .scene-shape--three {
    left: 7%;
    bottom: 12%;
    width: 36%;
    height: 22%;
  }
  .scene-shape--four {
    right: 7%;
    bottom: 12%;
    width: 38%;
    height: 23%;
  }
  .industry-scene__label {
    align-items: flex-start;
    flex-direction: column;
  }
  .industry-scene__label strong {
    text-align: left;
  }
  .industry-snapshot {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .industry-snapshot::after {
    inset: 10% 4% 8%;
  }
  .snapshot-panel {
    min-height: 178px;
  }
  .snapshot-panel--primary {
    grid-row: auto;
  }
  .snapshot-flow {
    grid-template-columns: 1fr;
  }
  .industry-detail-visual__notes {
    grid-template-columns: 1fr;
  }
  .industry-detail-visual__note,
  .industry-detail-visual__note:nth-child(2n) {
    border-right: 0;
  }
  .industry-detail-visual__note:nth-child(n+2) {
    border-top: 1px solid rgba(168,175,196,0.14);
  }
}
@media (max-width: 480px) {
  .hero__ctas .btn,
  .page-hero__ctas .btn {
    width: 100%;
  }
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}
@media (max-width: 960px) {
  .content-grid { grid-template-columns: 1fr; }
}
.content-flow {
  display: grid;
  gap: 28px;
}
.content-flow p {
  color: var(--mist);
  font-size: 17px;
  line-height: 1.65;
  max-width: 72ch;
}
.content-flow h2,
.content-flow h3 {
  font-family: var(--f-display);
  color: var(--paper);
  letter-spacing: 0;
  line-height: 1.15;
}
.content-flow h2 { font-size: 40px; }
.content-flow h3 { font-size: 28px; }
@media (max-width: 900px) {
  .content-flow h2 { font-size: 34px; }
}
@media (max-width: 600px) {
  .content-flow h2 { font-size: 30px; }
  .content-flow h3 { font-size: 24px; }
}

.side-panel {
  border: 1px solid var(--ink-700);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--ink-800) 0%, var(--ink-850) 100%);
  padding: clamp(24px, 3vw, 32px);
}
.side-panel h2,
.side-panel h3 {
  font-family: var(--f-display);
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: 0;
  margin-bottom: 18px;
}
@media (max-width: 600px) {
  .side-panel h2,
  .side-panel h3 { font-size: 23px; }
}
.plain-list {
  display: grid;
  gap: 12px;
  color: var(--mist);
}
.plain-list li {
  position: relative;
  padding-left: 18px;
  line-height: 1.55;
}
.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}
.industry-detail-page .content-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
}
.industry-detail-page .content-flow {
  gap: 30px;
}
.industry-detail-page .service-list {
  border: 1px solid var(--ink-700);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(19,26,61,0.62), rgba(10,15,44,0.28));
}
.industry-detail-page .service-list a {
  padding: 20px 22px;
  border-top: 0;
  border-bottom: 1px solid rgba(168,175,196,0.14);
}
.industry-detail-page .service-list a:last-child {
  border-bottom: 0;
}
.industry-detail-page .side-panel {
  position: sticky;
  top: 112px;
  overflow: hidden;
}
.industry-detail-page .side-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--gradient);
}
.industry-detail-page .side-panel h2,
.industry-detail-page .side-panel h3,
.industry-detail-page .side-panel ul {
  position: relative;
  z-index: 1;
}
.industry-detail-page .answer-grid {
  gap: 0;
  border: 1px solid var(--ink-700);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(19,26,61,0.52), rgba(10,15,44,0.22));
  overflow: hidden;
}
.industry-detail-page .answer {
  position: relative;
  min-height: 220px;
  padding: clamp(24px, 3vw, 34px);
  border-top: 0;
  border-right: 1px solid rgba(168,175,196,0.14);
  border-bottom: 1px solid rgba(168,175,196,0.14);
  background:
    radial-gradient(circle at 88% 14%, rgba(91,141,239,0.08), transparent 34%),
    rgba(7,9,27,0.14);
}
.industry-detail-page .answer:nth-child(2n) {
  border-right: 0;
}
.industry-detail-page .answer:nth-last-child(-n+2) {
  border-bottom: 0;
}
.industry-detail-page .answer::before {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: var(--gradient);
}
.industry-detail-page .content-flow.reveal,
.industry-detail-page .side-panel.reveal,
.industry-detail-page .answer.reveal,
.industry-detail-page .cta-band.reveal {
  opacity: 1;
  transform: none;
}
@media (max-width: 960px) {
  .industry-detail-page .content-grid {
    grid-template-columns: 1fr;
  }
  .industry-detail-page .side-panel {
    position: relative;
    top: auto;
  }
}
@media (max-width: 760px) {
  .industry-detail-page .answer,
  .industry-detail-page .answer:nth-child(2n),
  .industry-detail-page .answer:nth-last-child(-n+2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(168,175,196,0.14);
  }
  .industry-detail-page .answer:last-child {
    border-bottom: 0;
  }
}

.answer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
@media (max-width: 760px) {
  .answer-grid { grid-template-columns: 1fr; }
}
.answer {
  border-top: 1px solid var(--ink-700);
  padding-top: 22px;
}
.answer h3 {
  font-family: var(--f-display);
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 0;
  color: var(--paper);
  margin-bottom: 10px;
}
@media (max-width: 600px) {
  .answer h3 { font-size: 21px; }
}
.answer p {
  color: var(--mist);
  line-height: 1.6;
  max-width: 64ch;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding-block: 32px;
  border-block: 1px solid var(--ink-700);
}
.bento + .cta-band,
.answer-grid + .cta-band,
.content-grid + .container .cta-band,
.work-card__body .cta-band {
  margin-top: clamp(32px, 5vw, 56px);
}
.cta-band__copy {
  max-width: 660px;
}
.cta-band__eyebrow {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--orange);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.cta-band h2,
.cta-band h3 {
  font-family: var(--f-display);
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: 0;
  color: var(--paper);
  margin-bottom: 10px;
}
.cta-band p:not(.cta-band__eyebrow) {
  color: var(--mist);
  line-height: 1.6;
}
.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}
@media (max-width: 820px) {
  .cta-band {
    grid-template-columns: 1fr;
  }
  .cta-band__actions {
    justify-content: flex-start;
  }
}
@media (max-width: 480px) {
  .cta-band h2,
  .cta-band h3 {
    font-size: 26px;
  }
  .cta-band__actions .btn {
    width: 100%;
  }
}

.text-link {
  color: var(--paper);
  border-bottom: 1px solid rgba(242,108,31,0.65);
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.text-link:hover {
  color: var(--orange-soft);
  border-bottom-color: var(--orange-soft);
}

.service-list {
  display: grid;
  gap: 18px;
}
.service-list a {
  display: block;
  padding: 18px 0;
  border-top: 1px solid var(--ink-700);
}
.service-list a:last-child { border-bottom: 1px solid var(--ink-700); }
.service-list strong {
  display: block;
  font-family: var(--f-display);
  font-size: 20px;
  line-height: 1.2;
  color: var(--paper);
  margin-bottom: 6px;
}
.service-list span {
  display: block;
  color: var(--mist);
  line-height: 1.55;
}

/* =============================================================
   Industry hub
   ============================================================= */
.industry-hero {
  position: relative;
  padding-block: clamp(112px, 14vh, 168px) clamp(48px, 7vw, 92px);
  overflow: hidden;
  isolation: isolate;
}
.industry-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(10,15,44,0.9) 0%, rgba(7,9,27,0.97) 100%),
    linear-gradient(115deg, rgba(242,108,31,0.12) 0%, rgba(91,141,239,0.08) 48%, transparent 72%);
}
.industry-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.3;
  background-image:
    linear-gradient(to right, rgba(168,175,196,0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(168,175,196,0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, black 0%, transparent 82%);
  -webkit-mask-image: linear-gradient(180deg, black 0%, transparent 82%);
}
.industry-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
  min-height: auto;
  padding-block: 0;
}
.industry-hero__copy {
  max-width: 880px;
}
.industry-map {
  border: 1px solid var(--ink-700);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(31,40,81,0.72) 0%, rgba(14,20,47,0.86) 100%);
  box-shadow: 0 28px 80px -54px rgba(91,141,239,0.85);
  overflow: hidden;
}
.industry-map__header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 20px 22px;
  border-bottom: 1px solid var(--ink-700);
}
.industry-map__header p,
.industry-map__header span,
.industry-card__num,
.industry-card__kicker,
.industry-thread-grid span {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.industry-map__header p { color: var(--paper); }
.industry-map__header span { color: var(--muted); }
.industry-map__rows {
  display: grid;
}
.industry-map__rows a {
  display: grid;
  grid-template-columns: minmax(92px, 0.42fr) minmax(0, 0.58fr);
  gap: 18px;
  align-items: center;
  padding: 16px 22px;
  border-bottom: 1px solid rgba(31,40,81,0.85);
  transition: background-color .25s var(--ease), color .25s var(--ease);
}
.industry-map__rows a:last-child { border-bottom: 0; }
.industry-map__rows a:hover {
  background: rgba(255,255,255,0.04);
}
.industry-map__rows span {
  color: var(--muted);
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.industry-map__rows strong {
  color: var(--paper);
  font-family: var(--f-display);
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: 0;
  font-weight: 600;
}
.industry-atlas {
  position: relative;
  border: 1px solid var(--ink-700);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 34%, rgba(91,141,239,0.16) 0%, transparent 44%),
    linear-gradient(180deg, rgba(31,40,81,0.72) 0%, rgba(14,20,47,0.9) 100%);
  box-shadow:
    0 28px 80px -54px rgba(91,141,239,0.9),
    0 1px 0 rgba(255,255,255,0.08) inset;
  overflow: hidden;
}
.industry-atlas::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(168,175,196,0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(168,175,196,0.05) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at 50% 46%, black 0%, transparent 76%);
  -webkit-mask-image: radial-gradient(circle at 50% 46%, black 0%, transparent 76%);
  pointer-events: none;
}
.industry-atlas--operating {
  background:
    radial-gradient(circle at 50% 38%, rgba(242,108,31,0.13) 0%, transparent 30%),
    radial-gradient(circle at 70% 25%, rgba(91,141,239,0.16) 0%, transparent 34%),
    linear-gradient(180deg, rgba(31,40,81,0.76) 0%, rgba(10,15,44,0.94) 100%);
}
.industry-atlas__top {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 20px 22px;
  border-bottom: 1px solid var(--ink-700);
  background: rgba(7,9,27,0.32);
}
.industry-atlas__top span,
.industry-atlas__ribbon a {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.industry-atlas__top span {
  color: var(--muted);
}
.industry-atlas__top strong {
  color: var(--paper);
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
}
.industry-atlas--operating .industry-atlas__svg {
  padding: 18px 18px 8px;
}
.industry-atlas__orbit,
.industry-atlas__axis {
  fill: none;
  stroke: rgba(168,175,196,0.18);
  stroke-width: 1.1;
}
.industry-atlas__orbit {
  stroke: url(#atlasStroke);
  stroke-width: 1.3;
  opacity: 0.42;
}
.industry-atlas__orbit--inner {
  opacity: 0.26;
  stroke-dasharray: 6 8;
}
.industry-atlas__axis {
  stroke-dasharray: 4 10;
}
.industry-atlas__hub rect {
  fill: rgba(7,9,27,0.9);
  stroke: url(#atlasStroke);
  stroke-width: 1.8;
}
.industry-atlas__lens rect {
  fill: rgba(7,9,27,0.72);
  stroke: rgba(168,175,196,0.22);
  stroke-width: 1.2;
}
.industry-atlas__lens--strategy rect,
.industry-atlas__lens--eval rect {
  stroke: rgba(242,108,31,0.48);
}
.industry-atlas__lens--rag rect,
.industry-atlas__lens--agents rect {
  stroke: rgba(91,141,239,0.44);
}
.industry-atlas__lens path {
  fill: none;
  stroke: var(--paper);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.86;
}
.industry-atlas--operating .industry-atlas__label {
  font-size: 17px;
  text-anchor: middle;
}
.industry-atlas--operating .industry-atlas__detail {
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: 0.06em;
  text-anchor: middle;
  text-transform: uppercase;
}
.industry-atlas__ribbon {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  border-top: 1px solid var(--ink-700);
  background: rgba(168,175,196,0.12);
}
.industry-atlas__ribbon a {
  display: flex;
  min-height: 48px;
  align-items: center;
  padding: 12px 14px;
  color: var(--mist);
  background: rgba(7,9,27,0.72);
  transition: color .2s var(--ease), background-color .2s var(--ease);
}
.industry-atlas__ribbon a:hover {
  color: var(--paper);
  background: rgba(31,40,81,0.82);
}
.industry-atlas__ribbon a:last-child {
  grid-column: 1 / -1;
}
.industry-atlas__chrome {
  display: flex;
  gap: 8px;
  padding: 18px 20px 0;
}
.industry-atlas__chrome span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--ink-600);
}
.industry-atlas__chrome span:first-child { background: var(--orange); }
.industry-atlas__chrome span:last-child { background: var(--blue); }
.industry-atlas__svg {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  padding: 8px 20px 0;
}
.industry-atlas__backdrop path {
  fill: none;
  stroke: url(#atlasStroke);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.48;
}
.industry-atlas__core {
  fill: rgba(10,15,44,0.92);
  stroke: url(#atlasStroke);
  stroke-width: 2;
}
.industry-atlas__card rect {
  fill: rgba(7,9,27,0.78);
  stroke: rgba(168,175,196,0.24);
  stroke-width: 1.2;
}
.industry-atlas__card circle {
  fill: rgba(31,40,81,0.78);
  stroke: rgba(168,175,196,0.36);
  stroke-width: 1.2;
}
.industry-atlas__card path {
  fill: none;
  stroke: var(--paper);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.88;
}
.industry-atlas__card:hover rect {
  stroke: rgba(245,241,234,0.5);
}
.industry-atlas__card:hover circle {
  stroke: var(--orange-soft);
}
.industry-atlas__card--wide rect {
  stroke: rgba(91,141,239,0.42);
}
.industry-atlas__core-label {
  fill: var(--paper);
  font-family: var(--f-display);
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 0;
  text-anchor: middle;
}
.industry-atlas__core-sub,
.industry-atlas__label,
.industry-atlas__detail {
  font-family: var(--f-display);
  letter-spacing: 0;
}
.industry-atlas__core-sub {
  fill: var(--mist);
  font-size: 14px;
  font-weight: 600;
  text-anchor: middle;
}
.industry-atlas__label {
  fill: var(--paper);
  font-size: 15px;
  font-weight: 700;
}
.industry-atlas__detail {
  fill: var(--mist);
  font-size: 12px;
  font-weight: 500;
}
.industry-atlas__caption {
  position: relative;
  z-index: 1;
  padding: 20px 24px 24px;
  border-top: 1px solid var(--ink-700);
  background: rgba(7,9,27,0.46);
}
.industry-atlas__caption p {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  color: var(--paper);
  margin-bottom: 8px;
}
.industry-atlas__caption span {
  display: block;
  color: var(--mist);
  line-height: 1.55;
}
.industry-card-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}
.industry-card {
  position: relative;
  display: flex;
  min-height: 330px;
  grid-column: span 4;
  flex-direction: column;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--ink-700);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(19,26,61,0.95) 0%, rgba(14,20,47,0.96) 100%);
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s var(--ease), background-color .35s var(--ease);
}
.industry-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--gradient);
  opacity: 0.72;
}
.industry-card::after {
  content: "Read page";
  position: absolute;
  right: 24px;
  bottom: 24px;
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-soft);
}
.industry-card:hover {
  transform: translateY(-3px);
  border-color: var(--ink-600);
  background: linear-gradient(180deg, rgba(31,40,81,0.92) 0%, rgba(14,20,47,0.98) 100%);
}
.industry-card--featured {
  grid-column: span 6;
  min-height: 360px;
}
.industry-card--wide {
  grid-column: span 8;
  min-height: 280px;
}
.industry-card__num {
  position: relative;
  z-index: 1;
  color: var(--orange);
  margin-bottom: 28px;
}
.industry-card__icon {
  position: absolute;
  top: clamp(22px, 3vw, 32px);
  right: clamp(22px, 3vw, 32px);
  width: 62px;
  height: 62px;
  border: 1px solid rgba(168,175,196,0.22);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 35% 25%, rgba(245,241,234,0.16), rgba(91,141,239,0.08) 48%, rgba(10,15,44,0.3) 100%);
  color: var(--paper);
}
.industry-card__icon svg {
  width: 34px;
  height: 34px;
}
.industry-card__icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.industry-card__kicker {
  position: relative;
  z-index: 1;
  color: var(--muted);
  margin-bottom: 12px;
}
.industry-card strong {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 15ch;
  font-family: var(--f-display);
  font-size: clamp(25px, 2.2vw, 34px);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--paper);
  margin-bottom: 16px;
}
.industry-card:not(.industry-card--featured) strong {
  font-size: 25px;
}
.industry-card__body {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--mist);
  line-height: 1.6;
  max-width: 50ch;
  margin-bottom: 28px;
}
.industry-card__tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-right: 90px;
}
.industry-card__tags span {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--mist);
  padding: 6px 10px;
  border: 1px solid var(--ink-700);
  border-radius: 999px;
  background: rgba(255,255,255,0.02);
}
.industry-card:nth-child(1) {
  background:
    radial-gradient(circle at 88% 14%, rgba(242,108,31,0.18) 0%, transparent 32%),
    linear-gradient(180deg, rgba(19,26,61,0.95) 0%, rgba(14,20,47,0.96) 100%);
}
.industry-card:nth-child(2) {
  background:
    radial-gradient(circle at 88% 14%, rgba(91,141,239,0.2) 0%, transparent 34%),
    linear-gradient(180deg, rgba(19,26,61,0.95) 0%, rgba(14,20,47,0.96) 100%);
}
.industry-card:nth-child(7)::after {
  bottom: 32px;
}
.industry-proof__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}
.industry-thread-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.industry-thread-grid div {
  min-height: 150px;
  padding: 22px;
  border-top: 1px solid var(--ink-700);
  background: linear-gradient(180deg, rgba(19,26,61,0.62) 0%, rgba(10,15,44,0.18) 100%);
}
.industry-thread-grid div:last-child {
  grid-column: 1 / -1;
  min-height: 120px;
}
.industry-thread-grid span {
  display: block;
  color: var(--orange);
  margin-bottom: 18px;
}
.industry-thread-grid p {
  color: var(--paper);
  font-family: var(--f-display);
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: 0;
}
.industry-atlas.reveal,
.industry-hero .reveal,
.industry-card.reveal,
.industry-proof .content-flow.reveal,
.industry-thread-grid.reveal {
  opacity: 1;
  transform: none;
}
@media (max-width: 1040px) {
  .industry-hero__inner,
  .industry-proof__inner {
    grid-template-columns: 1fr;
  }
  .industry-map,
  .industry-atlas {
    max-width: 680px;
  }
  .industry-card,
  .industry-card--featured,
  .industry-card--wide {
    grid-column: span 6;
  }
}
@media (max-width: 720px) {
  .industry-card-grid,
  .industry-thread-grid {
    grid-template-columns: 1fr;
  }
  .industry-card,
  .industry-card--featured,
  .industry-card--wide {
    grid-column: 1;
    min-height: 0;
  }
  .industry-card strong,
  .industry-card:not(.industry-card--featured) strong {
    max-width: none;
    font-size: 25px;
  }
  .industry-card__tags {
    padding-right: 0;
    padding-bottom: 34px;
  }
  .industry-card__icon {
    position: static;
    margin-bottom: 22px;
  }
  .industry-thread-grid div:last-child {
    grid-column: 1;
  }
  .industry-atlas__top {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
  .industry-atlas__ribbon {
    grid-template-columns: 1fr;
  }
  .industry-atlas__ribbon a:last-child {
    grid-column: 1;
  }
}
@media (max-width: 480px) {
  .industry-map__rows a {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .industry-atlas__svg {
    padding-inline: 8px;
  }
  .industry-thread-grid div {
    min-height: 0;
  }
}

.work-stack {
  display: grid;
  gap: clamp(56px, 7vw, 88px);
}
.work-band {
  display: grid;
  gap: 24px;
}
.work-band__head {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 0.65fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  padding-top: 28px;
  border-top: 1px solid var(--ink-700);
}
.work-band__kicker {
  grid-column: 1;
  grid-row: 1 / span 2;
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--orange);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.work-band__head h3 {
  grid-column: 2;
  font-family: var(--f-display);
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: 0;
  color: var(--paper);
  margin-bottom: 12px;
}
.work-band__head p:not(.work-band__kicker) {
  grid-column: 2;
  color: var(--mist);
  font-size: 17px;
  line-height: 1.6;
  max-width: 62ch;
}
.work-band--closing {
  max-width: 880px;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.work-card {
  background: linear-gradient(180deg, var(--ink-800) 0%, var(--ink-850) 100%);
  border: 1px solid var(--ink-700);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.work-card--wide {
  grid-column: 1 / -1;
}
.work-card__visual {
  display: block;
  background: var(--ink-900);
  border-bottom: 1px solid var(--ink-700);
}
.work-card__visual img {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
}
.work-card__body {
  padding: clamp(24px, 3vw, 34px);
}
.work-card__num {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--orange);
  letter-spacing: 0.04em;
  margin-bottom: 18px;
  text-transform: none;
}
.work-card__title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: 0;
  color: var(--paper);
  margin-bottom: 16px;
}
.work-card__text {
  color: var(--mist);
  font-size: 16px;
  line-height: 1.6;
  max-width: 70ch;
}
.work-card__details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--ink-700);
}
.work-card__details h4,
.work-card__details h5 {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.work-card__details p {
  color: var(--mist);
  line-height: 1.55;
}
.work-card .tile__bullets {
  margin-top: 22px;
}
.work-band.reveal,
.work-band .reveal {
  opacity: 1;
  transform: none;
}
.section__head.reveal {
  opacity: 1;
  transform: none;
}
@media (max-width: 960px) {
  .work-band__head { grid-template-columns: 1fr; gap: 12px; }
  .work-band__kicker,
  .work-band__head h3,
  .work-band__head p:not(.work-band__kicker) {
    grid-column: 1;
    grid-row: auto;
  }
  .work-grid { grid-template-columns: 1fr; }
  .work-card--wide { grid-column: auto; }
}
@media (max-width: 600px) {
  .work-stack { gap: 48px; }
  .work-band__head h3 { font-size: 28px; }
  .work-card__title { font-size: 25px; }
  .work-card__details { grid-template-columns: 1fr; }
}

/* =============================================================
   Approach
   ============================================================= */
.pullquote {
  margin-block: clamp(40px, 5vw, 64px);
  padding: clamp(32px, 5vw, 64px) 0;
  border-block: 1px solid var(--ink-700);
  text-align: center;
}
.pullquote p {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 40px;
  letter-spacing: 0;
  line-height: 1.15;
  color: var(--paper);
  text-wrap: balance;
}
@media (max-width: 900px) {
  .pullquote p { font-size: 34px; }
}
@media (max-width: 600px) {
  .pullquote p { font-size: 28px; }
}
.pullquote cite {
  display: block;
  margin-top: 24px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-style: normal;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 880px) {
  .pillars { grid-template-columns: 1fr; }
}
.pillar {
  padding: 32px 0;
  border-top: 1px solid var(--ink-700);
}
.pillar__num {
  font-family: var(--f-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--orange);
  margin-bottom: 18px;
}
.pillar__title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: 0;
  color: var(--paper);
  margin-bottom: 12px;
}
.pillar__body {
  color: var(--mist);
  font-size: 16px;
  line-height: 1.6;
  max-width: 36ch;
}

/* =============================================================
   Founder / About
   ============================================================= */
.founder {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
@media (max-width: 960px) { .founder { grid-template-columns: 1fr; } }

.founder__head { padding-top: 8px; }
.founder__body p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--mist);
  max-width: 56ch;
}
@media (max-width: 600px) {
  .founder__body p { font-size: 17px; }
}
.founder__body p + p { margin-top: 20px; }
.founder__body p .word-grad { font-style: normal; }

.founder__creds {
  margin-top: 36px;
  border-top: 1px solid var(--ink-700);
}
.founder__creds li {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--ink-700);
  font-size: 16px;
  color: var(--paper);
}
.founder__creds .meta-label { min-width: 140px; }
@media (max-width: 600px) {
  .founder__creds li {
    flex-direction: column;
    gap: 6px;
  }
  .founder__creds .meta-label { min-width: 0; }
}

/* =============================================================
   Trust band
   ============================================================= */
.trust {
  border-block: 1px solid var(--ink-700);
  background: var(--ink-900);
  padding-block: 28px;
}
.trust__inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px 40px;
  align-items: center;
}
@media (max-width: 880px) {
  .trust__inner { grid-template-columns: 1fr; gap: 16px; }
}
.trust__label {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.trust__value {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0;
  color: var(--paper);
}
.trust__value strong {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
}

/* =============================================================
   Contact
   ============================================================= */
.contact {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
@media (max-width: 960px) { .contact { grid-template-columns: 1fr; } }

.contact__direct {
  margin-top: 36px;
  border-top: 1px solid var(--ink-700);
}
.contact__direct li {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--ink-700);
}
.contact__direct .meta-label { min-width: 88px; }
.contact__direct a {
  color: var(--paper);
  border-bottom: 1px solid transparent;
  transition: border-color .2s var(--ease);
}
.contact__direct a:hover { border-bottom-color: var(--orange); }
@media (max-width: 600px) {
  .contact__direct li {
    flex-direction: column;
    gap: 6px;
  }
  .contact__direct .meta-label { min-width: 0; }
}

.fit-panel {
  margin-top: 32px;
  border: 1px solid var(--ink-700);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(20,29,76,0.72) 0%, rgba(12,17,48,0.72) 100%);
  padding: 24px;
}
.fit-panel__eyebrow {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--orange);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.fit-panel ul {
  display: grid;
  gap: 16px;
}
.fit-panel li {
  padding-top: 16px;
  border-top: 1px solid var(--ink-700);
}
.fit-panel li:first-child {
  padding-top: 0;
  border-top: 0;
}
.fit-panel span {
  display: block;
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--paper);
  margin-bottom: 6px;
}
.fit-panel p {
  color: var(--mist);
  line-height: 1.55;
}

.contact__form {
  background: var(--ink-800);
  border: 1px solid var(--ink-700);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 34px);
  display: grid;
  gap: 16px;
}
@media (min-width: 1120px) {
  .contact__form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .form__span {
    grid-column: 1 / -1;
  }
}
.form__intro {
  border-bottom: 1px solid var(--ink-700);
  padding-bottom: 16px;
}
.form__intro p:not(.form__eyebrow) {
  color: var(--mist);
  line-height: 1.6;
}
.form__eyebrow {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--orange);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.field { display: grid; gap: 8px; }
.field label {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--mist);
  text-transform: uppercase;
}
.field .opt {
  font-weight: 400;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
}
.field input, .field textarea, .field select {
  width: 100%;
  background: var(--ink-900);
  border: 1px solid var(--ink-700);
  border-radius: 10px;
  color: var(--paper);
  padding: 14px 16px;
  font-family: var(--f-body);
  /* 16px minimum prevents iOS Safari from auto-zooming on focus */
  font-size: 16px;
  line-height: 1.5;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--mist) 50%),
    linear-gradient(135deg, var(--mist) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 50%,
    calc(100% - 14px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 44px;
}
.field input:hover, .field textarea:hover, .field select:hover { border-color: var(--ink-600); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(242, 108, 31, 0.18);
}
.field textarea { resize: vertical; min-height: 108px; }

.turnstile {
  display: flex;
  justify-content: center;
  min-height: 65px;
  overflow: hidden;
}

.turnstile .cf-turnstile {
  width: 100%;
  max-width: 420px;
}

.form__note {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-align: center;
}

/* Honeypot — visually hidden but accessible to spam bots that parse the DOM */
.hp {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* =============================================================
   Footer
   ============================================================= */
.footer {
  position: relative;
  background: var(--ink-900);
  padding-block: 60px 36px;
  border-top: 1px solid var(--ink-700);
}
.footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: var(--gradient);
  opacity: 0.55;
}
.footer__inner {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) minmax(160px, 0.7fr) minmax(220px, 0.9fr) minmax(190px, 0.75fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
}
@media (max-width: 1100px) {
  .footer__inner { grid-template-columns: 1.2fr 1fr; }
}
@media (max-width: 720px) {
  .footer__inner { grid-template-columns: 1fr; }
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer__wordmark {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0;
  color: var(--paper);
  line-height: 1;
}
.footer__tagline {
  margin-top: 6px;
  font-size: 14px;
  color: var(--mist);
}
.footer__motto {
  margin-top: 5px;
  max-width: 320px;
  font-family: var(--f-mono);
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}
.footer__links a {
  color: var(--mist);
  width: fit-content;
  border-bottom: 1px solid transparent;
}
.footer__links a:hover { color: var(--paper); border-bottom-color: var(--ink-600); }
.footer__links .footer__column-title {
  color: var(--paper);
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
}
.footer__industries {
  gap: 10px;
}
.footer__industries a:not(.footer__column-title) {
  font-size: 13.5px;
  line-height: 1.35;
}

.footer__meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: var(--mist);
}
.footer__meta a { color: var(--paper); }
.footer__meta a:hover { color: var(--orange); }
.footer__meta p {
  margin-top: 12px;
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--muted);
}

/* =============================================================
   Reveal-on-scroll
   ============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.hero .reveal,
.page-hero .reveal,
.industry-hero .reveal,
.industry-detail-hero .reveal {
  opacity: 1;
  transform: none;
}

/* =============================================================
   Reduced motion
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
  .eyebrow__dot { animation: none; }
}

/* =============================================================
   Articles — header, hero, body, figures, TL;DR, FAQ, author bio,
   related cards, article index. Additive only.
   ============================================================= */

.article-header {
  padding-bottom: clamp(40px, 6vw, 72px);
}
.article-header .content-flow {
  max-width: 880px;
}
.article-meta {
  margin-top: 18px;
  color: var(--mist);
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
}
.article-meta span[aria-hidden="true"] { color: var(--ink-600); }

.article-hero {
  margin-top: clamp(28px, 4vw, 48px);
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink-900);
  border: 1px solid var(--ink-700);
}
.article-hero img {
  width: 100%;
  height: auto;
  max-height: clamp(360px, 50vw, 560px);
  object-fit: cover;
  display: block;
}
.article-hero figcaption {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 10px 16px;
  border-top: 1px solid var(--ink-700);
  background: var(--ink-900);
}

.article-body-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 48px;
}
.article-body {
  max-width: 720px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.7;
  color: var(--paper);
}
.article-body > * + * { margin-top: 1.1em; }
.article-body h2 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(24px, 2.4vw, 30px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-top: 2em;
  color: var(--paper);
}
.article-body h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(20px, 2vw, 22px);
  line-height: 1.3;
  margin-top: 1.6em;
  color: var(--paper);
}
.article-body p { color: var(--paper); opacity: 0.92; }
.article-body a { color: var(--blue-soft); border-bottom: 1px solid currentColor; padding-bottom: 1px; transition: color 160ms var(--ease); }
.article-body a:hover { color: var(--orange-soft); }
.article-body ul, .article-body ol {
  padding-left: 22px;
  list-style: disc;
  color: var(--paper);
  opacity: 0.92;
}
.article-body ol { list-style: decimal; }
.article-body li + li { margin-top: 0.4em; }
.article-body li::marker { color: var(--mist); }
.article-body strong { color: var(--paper); font-weight: 600; }
.article-body code {
  font-family: var(--f-mono);
  font-size: 0.9em;
  background: var(--ink-800);
  border: 1px solid var(--ink-700);
  padding: 1px 6px;
  border-radius: 4px;
}
.article-body pre {
  background: var(--ink-900);
  border: 1px solid var(--ink-700);
  border-radius: var(--radius);
  padding: 18px 20px;
  overflow-x: auto;
  font-size: 14px;
  line-height: 1.55;
}
.article-body pre code { background: none; border: 0; padding: 0; font-size: inherit; }
.article-body blockquote {
  border-left: 3px solid var(--orange);
  padding: 4px 0 4px 18px;
  color: var(--mist);
  font-style: italic;
}

.article-figure {
  margin: 2em auto;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink-900);
  border: 1px solid var(--ink-700);
}
.article-figure img {
  width: 100%;
  height: auto;
  display: block;
}
.article-figure figcaption {
  padding: 10px 16px;
  border-top: 1px solid var(--ink-700);
  font-size: 14px;
  color: var(--mist);
}
.article-figure__credit {
  font-size: 12px;
  color: var(--muted);
  margin-left: 8px;
}
.article-figure--wide {
  max-width: min(100%, 1040px);
  margin-left: calc(50% - min(50vw, 520px) - 0px);
  margin-right: auto;
}
@media (max-width: 980px) {
  .article-figure--wide { margin-left: auto; margin-right: auto; }
}
.article-figure--inset {
  max-width: 540px;
}

.article-tldr {
  background: var(--gradient-soft);
  border: 1px solid var(--ink-700);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-bottom: 2em;
}
.article-tldr__label {
  font-family: var(--f-mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: var(--orange-soft);
  margin-bottom: 10px;
}
.article-tldr ul {
  display: grid;
  gap: 8px;
  list-style: disc;
  padding-left: 22px;
}
.article-tldr li { color: var(--paper); }
.article-tldr li::marker { color: var(--blue-soft); }

.article-faq { margin-top: 24px; }

.author-bio {
  margin-top: 3em;
  padding: 24px;
  background: var(--ink-900);
  border: 1px solid var(--ink-700);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  align-items: start;
}
.author-bio__image {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--ink-800);
  border: 1px solid var(--ink-700);
}
.author-bio__eyebrow {
  font-family: var(--f-mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 4px;
}
.author-bio__name {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--paper);
}
.author-bio__role {
  font-size: 14px;
  color: var(--mist);
  margin-top: 2px;
}
.author-bio__text {
  font-size: 15px;
  color: var(--paper);
  opacity: 0.9;
  margin-top: 10px;
  line-height: 1.6;
}
@media (max-width: 600px) {
  .author-bio { grid-template-columns: 1fr; }
}

.related-cards {
  margin-top: 2.5em;
  padding-top: 28px;
  border-top: 1px solid var(--ink-700);
}
.related-cards__eyebrow {
  font-family: var(--f-mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 14px;
}
.related-cards__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.related-card {
  display: block;
  padding: 16px 18px;
  background: var(--ink-900);
  border: 1px solid var(--ink-700);
  border-radius: var(--radius);
  transition: border-color 160ms var(--ease), transform 160ms var(--ease);
}
.related-card:hover {
  border-color: var(--orange);
  transform: translateY(-1px);
}
.related-card__kicker {
  font-family: var(--f-mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 6px;
}
.related-card__title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--paper);
  margin-bottom: 4px;
}
.related-card__blurb {
  font-size: 14px;
  color: var(--mist);
  line-height: 1.5;
}
