@font-face {
  font-family: "Khand";
  src: url("fonts/khand-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Khand";
  src: url("fonts/khand-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Khand";
  src: url("fonts/khand-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Khand";
  src: url("fonts/khand-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto Condensed";
  src: url("fonts/roboto-condensed-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto Condensed";
  src: url("fonts/roboto-condensed-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto Condensed";
  src: url("fonts/roboto-condensed-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Layout tokens */
  --max: 1120px;
  --pad: 20px;
  --gap: 16px;
  --radius: 12px;

  /* ULTRAX Brand Palette */
  --ultrax-orange: #EE7653;     /* consequence */
  --ultrax-steel: #4D5866;      /* authority */
  --ultrax-sand: #CAAF94;       /* context */
  --ultrax-light-sand: #E5D7CB; /* breathing room */
  --ultrax-fatigues: #8A8B69;   /* ops */
  --ultrax-dirt: #6E6566;       /* de-emphasis */
  --ultrax-gunmetal: #999393;   /* structure */

  /* Core neutrals */
  --bg: #ffffff;
  --bg-alt: #F6F1EC;            /* warmer, more intentional than gray */
  --text: #121417;
  --muted: var(--ultrax-steel);
  --border: rgba(18, 20, 23, 0.12);

  /* Interactive system */
  --accent: var(--ultrax-steel);      /* default interactive */
  --accent-dark: #2F3A46;             /* deeper steel */
  --accent-soft: rgba(77, 88, 102, 0.08);

  /* Consequence */
  --consequence: var(--ultrax-orange);
  --consequence-soft: rgba(238, 118, 83, 0.10);
  --consequence-dark: #E06241;

  /* Utility */
  --success: #2f855a;

  /* Back-compat aliases */
  --ink: var(--text);
  --panel: var(--bg-alt);
  --line: var(--border);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Roboto Condensed","Aptos Narrow","Arial Narrow","Segoe UI",Roboto,Arial,sans-serif;
  line-height: 1.45;
}

a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(238, 118, 83, 0.45);
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
a:hover {
  text-decoration-color: rgba(238, 118, 83, 0.78);
}

p { margin: 0 0 14px 0; }
small { color: var(--muted); }
.lede-note {
  font-size: 15px;
  font-style: italic;
}

hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 18px 0;
}

.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }

.band { padding: 68px 0; }
.band.alt { background: var(--bg-alt); }

/* Typography — impact via weight/contrast (not color) */
.kicker {
  color: var(--ultrax-steel);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 12px;
}
.kicker-lg { font-size: 13.2px; }

h1 {
  font-family: "Khand","Bahnschrift SemiCondensed","Roboto Condensed","Arial Narrow","Segoe UI",sans-serif;
  font-size: 52px;
  letter-spacing: -0.01em;
  line-height: 0.98;
  margin: 0 0 16px 0;
  font-weight: 600;
  text-transform: uppercase;
}

h2 { font-size: 20px; color: var(--muted); font-weight: 500; margin: 0; }

h3 {
  font-family: "Roboto Condensed","Bahnschrift SemiCondensed","Arial Narrow","Segoe UI",sans-serif;
  font-size: 22px;
  margin: 0 0 10px 0;
  font-weight: 780;
  letter-spacing: -0.01em;
}

h4 {
  font-family: "Roboto Condensed","Bahnschrift SemiCondensed","Arial Narrow","Segoe UI",sans-serif;
  font-size: 16px;
  margin: 0 0 8px 0;
  color: var(--muted);
  font-weight: 650;
}

.lede { max-width: 820px; }

.breadcrumb { color: var(--muted); font-size: 13px; margin-bottom: 14px; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--text); }

/* NAV */
.navbar {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  z-index: 10;
}

.navinner {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 18px;
  row-gap: 6px;
  padding: 14px 0;
}
.brand { font-weight: 900; letter-spacing: 0.06em; }
.brand-logo {
  display: block;
  height: 62px;
  width: auto;
  max-height: 80px;
}

.navlinks {
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  gap: 14px;
  font-size: 14px;
  font-family: "Roboto Condensed","Arial Narrow","Segoe UI",sans-serif;
  letter-spacing: 0.03em;
  justify-content: flex-end;
  grid-column: 2;
  grid-row: 1;
}

.navlinks a {
  color: var(--muted);
  padding: 6px 8px;
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
}

.navlinks a:hover { color: var(--text); }

.navlinks a.active {
  color: var(--text);
  font-weight: 750;
  border-bottom: 2px solid rgba(18, 20, 23, 0.18);
  padding-bottom: 6px;
  text-decoration: none;
}

.navcta {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  grid-column: 2;
  grid-row: 2;
}

.brand {
  grid-column: 1;
  grid-row: 1;
}

/* BUTTONS
   CTA = Steel button with Orange consequence cue (B)
*/
.btn {
  display: inline-block;
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid rgba(18, 20, 23, 0.16);
  background: #fff;
  color: var(--text);
  font-weight: 700;
  font-family: "Roboto Condensed","Arial Narrow","Segoe UI",sans-serif;
  letter-spacing: 0.02em;
  text-decoration: none;
  position: relative;
}
.pill,
.card > a,
.insight-tile,
.hero-visual-card a {
  text-decoration: none;
}

.btn:hover {
  border-color: rgba(18, 20, 23, 0.22);
  color: var(--accent-dark);
  text-decoration: none;
}

/* Primary CTA: steel fill + orange underline cue */
.btn.primary {
  background: var(--ultrax-steel);
  color: #fff;
  border: 1px solid rgba(77, 88, 102, 0.55);
  box-shadow: 0 6px 18px rgba(18, 20, 23, 0.10);
}

.btn.primary::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 7px;
  height: 2px;
  border-radius: 2px;
  background: var(--consequence);
  opacity: 0.95;
}
.btn {
  text-align: center;
}

.btn.primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
  box-shadow: 0 10px 26px rgba(18, 20, 23, 0.14);
}

.btn.primary:hover::after {
  background: var(--consequence-dark);
}

/* Ghost: quiet, supportive */
.btn.ghost {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(18, 20, 23, 0.16);
  color: var(--muted);
}

.btn.ghost:hover {
  color: var(--accent-dark);
  border-color: rgba(18, 20, 23, 0.14);
}

/* GRID */
.grid { display: grid; gap: var(--gap); }
.grid.two { grid-template-columns: 1.2fr .8fr; }
.solutions-tree .grid.two { grid-template-columns: 1fr 1fr; }
.grid.three { grid-template-columns: repeat(3,1fr); }
.grid.four { grid-template-columns: repeat(4,1fr); }
.grid.two.portfolio-grid { grid-template-columns: 1fr 1fr; }
.grid.two.principles-grid { grid-template-columns: 1fr 1fr; }

.principles-grid .card {
  height: 100%;
}

.hero-grid {
  align-items: center;
  column-gap: 100px;
}

@media (max-width: 900px) {
  h1 { font-size: 36px; }
  .grid.two, .grid.three, .grid.four { grid-template-columns: 1fr; }
  .navinner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    row-gap: 10px;
    padding: 10px 0 8px;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .brand-logo {
    height: 48px;
    max-height: 56px;
  }

  .navlinks {
    display: flex;
    grid-column: 1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 2px 4px;
    gap: 10px;
  }

  .navlinks::-webkit-scrollbar {
    display: none;
  }

  .navlinks a {
    flex: 0 0 auto;
    padding: 6px 6px;
  }

  .navcta {
    display: none;
  }
}

/* CARDS */
.card {
  background: #fff;
  border: 1px solid rgba(18, 20, 23, 0.11);
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 10px 24px rgba(18,20,23,0.05), inset 0 1px 0 rgba(255,255,255,0.65);
}

.card:hover { box-shadow: 0 14px 32px rgba(18,20,23,0.08), inset 0 1px 0 rgba(255,255,255,0.72); }

/* Ensure the expert engagement card fits its full copy */
.expert-card {
  height: auto;
  min-height: 320px;
}

/* Add gentle “spotlight” feel to CTA clusters without new HTML */
.card p:last-child + p,
.card .btn,
.card a.btn {
  /* no-op selector stability; intentional spacing handled in markup */
}

/* CBI BLOCK */
.cbi {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  align-items: stretch;
}

.cbi .step {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: #fff;
}

/* Outcomes gets the consequence cue (subtle) */
.cbi .step.outcomes {
  border-color: rgba(238, 118, 83, 0.55);
}

/* SECTION HEADER */
.sectionhead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.sectionhead .title { max-width: 760px; }
.sectionhead .right { color: var(--ultrax-gunmetal); font-size: 14px; }

/* Micro-pattern: short underline under select headings (sectionhead h3) */
.sectionhead h3 {
  position: relative;
  padding-bottom: 6px;
}

.sectionhead h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 54px;
  height: 2px;
  border-radius: 2px;
  background: rgba(77, 88, 102, 0.45); /* steel underline by default */
}

.sectionhead:hover h3::after {
  background: var(--consequence);       /* consequence appears as drift cue */
}

/* NET GAINS BLOCK */
.netgains {
  max-width: 680px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  background: #fff;
}

.netgains .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.netgains .row:last-child { border-bottom: none; }
.netgains .row strong { letter-spacing: 0.02em; }
.netgains .row.total strong { font-size: 16px; }
.netgains .row.net { padding-top: 14px; }
.netgains .row.net { justify-content: flex-end; }
.netgains .row.net strong { font-size: 18px; }
.netgains .label { color: var(--muted); }
.netgains .val { color: var(--muted); }

/* TABLES */
table { font-size: 15px; }

table th, table td {
  padding: 10px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

thead th {
  color: var(--text);
  font-weight: 650;
  border-bottom: 1px solid var(--border);
}

/* Zebra striping in light sand (quiet) */
tbody tr:nth-child(even) { background: rgba(229, 215, 203, 0.35); }

/* FOOTER */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
}

.footer .grid { align-items: start; }
.footer a { color: var(--muted); }
.footer a:hover { color: var(--text); }

/* Text-only LKA–CBI mark used in hero visual treatments. */

/* Button label centering (safe: preserves existing padding + underline cue) */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
}

/* LKA–CBI mark */
.cbi-mark{
  display:flex;
  align-items:center;
  gap:18px;

  /* subdued schematic tone */
  opacity: .92;
  user-select:none;

  padding:14px;
  border:1px solid var(--border);
  border-radius:12px;
  background: rgba(229, 215, 203, 0.22); /* light sand whisper */
  backdrop-filter:blur(6px);
}

.cbi-mark-left{ line-height:.92; }

.cbi-word{
  font-family:"Roboto Condensed", system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight:850;
  letter-spacing:.01em;
  font-size:52px;
  text-transform:uppercase;
  margin:0;
  display:flex;
  align-items:baseline;
  gap:6px;
}

.cbi-word .dot{
  font-weight:900;
  transform:translateY(-1px);
}

/* Hierarchy tuned to your palette */
.cbi-word.listen{ color: rgba(238, 118, 83, 0.78); }           /* consequence, subdued */
.cbi-word.know  { color: rgba(77, 88, 102, 0.78); }            /* steel, subdued */
.cbi-word.act   { color: rgba(18, 20, 23, 0.78); }             /* text, softened */

.cbi-mark-rule{
  width:1px;
  height:116px;
  background: var(--border);
}

.cbi-mark-right{
  font-family:"Roboto Condensed", system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
  text-transform:uppercase;
  letter-spacing:.08em;
  color: rgba(18, 20, 23, 0.70);
}

.cbi-right-line{
  font-size:20px;
  font-weight:350;
  line-height:1.05;
  margin:0 0 6px 0;
}

.cbi-right-line:last-child{ margin-bottom:0; }

.cbi-mark-right .tm{
  font-weight:450;
  letter-spacing:0;
  margin-left:2px;
}

/* Responsive */
@media (max-width:900px){
  .cbi-mark{ width:100%; justify-content:center; }
  .cbi-word{ font-size:44px; }
  .cbi-mark-rule{ height:98px; }
  .cbi-right-line{ font-size:18px; }
}

@media (max-width:520px){
  .cbi-mark{ gap:14px; padding:12px; }
  .cbi-word{ font-size:38px; }
  .cbi-right-line{ font-size:16px; }
}

/* SOLUTIONS REBOOT */
.solutions-page .band { padding: 76px 0; }
.solutions-page .solutions-hero { padding: 92px 0 40px; }
.solutions-page .solutions-hero .lede {
  font-size: 20px;
  max-width: 720px;
}
.solutions-page .hero-visual-frame img {
  object-position: center 52%;
  filter: brightness(1.04) saturate(0.95) contrast(1.01);
}

.hero-visual-ribbon {
  height: 42px;
  overflow: hidden;
  border-top: 1px solid rgba(77, 88, 102, 0.08);
  border-bottom: 1px solid rgba(77, 88, 102, 0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(246,241,236,0.70));
}

.hero-visual-ribbon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: none;
  opacity: 1;
}
.solutions-page .solutions-intro {
  background:
    linear-gradient(180deg, rgba(229, 215, 203, 0.68), rgba(246, 241, 236, 0.96)),
    linear-gradient(90deg, rgba(77,88,102,0.07), rgba(77,88,102,0) 36%);
}
.solutions-page .solutions-intro .container,
.solutions-page .solutions-architecture .container,
.solutions-page .solution-category .container {
  position: relative;
}
.solutions-page .solutions-intro .container::after,
.solutions-page .solutions-architecture .container::before,
.solutions-page .solution-category .container::before {
  content: "";
  display: block;
  width: 88px;
  height: 1px;
  background: rgba(77, 88, 102, 0.24);
  margin-bottom: 22px;
}
.solutions-page .solutions-intro .container::after {
  margin-top: 24px;
  margin-bottom: 0;
}
.solutions-page .solutions-architecture {
  background: linear-gradient(180deg, rgba(255,255,255,1), rgba(229,215,203,0.18));
  padding-top: 46px;
  padding-bottom: 46px;
}
.solutions-page .solutions-architecture .sectionhead {
  margin-bottom: 0;
}
.solutions-page .proof-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.solutions-page .proof-row-note {
  color: var(--muted);
  margin: 18px 0 12px 0;
}
.solutions-page .platform-entry-note {
  color: var(--muted);
  margin: 16px 0 0 0;
  max-width: 720px;
}
.solutions-page .solution-category {
  scroll-margin-top: 112px;
}
.solutions-page .solution-category .sectionhead .right {
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ultrax-dirt);
}
.solutions-page .feature-row {
  grid-template-columns: 1.16fr 0.84fr;
  align-items: start;
}
.solutions-page .context-row {
  grid-template-columns: 1fr 1fr;
}
.solution-feature-card,
.solution-support-card,
.solution-context-card {
  height: 100%;
}
.solution-feature-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,1), rgba(246,241,236,0.42));
  border-color: rgba(77, 88, 102, 0.26);
  padding: 0;
  overflow: hidden;
}
.solution-feature-card.product-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,1), rgba(77,88,102,0.06));
  border-color: rgba(77, 88, 102, 0.34);
}
.solution-feature-card.service-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,1), rgba(202,175,148,0.18));
  border-color: rgba(138, 139, 105, 0.28);
}
.solution-feature-card .solution-copy {
  padding: 22px 22px 22px;
}
.solution-feature-card h4,
.solution-support-card h4,
.solution-context-card h4 {
  color: var(--text);
  font-size: 18px;
  margin-bottom: 10px;
}
.solution-support-card {
  background: rgba(255,255,255,0.86);
  border-color: rgba(153, 147, 147, 0.22);
  align-self: start;
  height: auto;
}
.solution-support-card--compact {
  min-height: 0;
}
.solution-context-card {
  background: rgba(255,255,255,0.82);
  border-color: rgba(153, 147, 147, 0.18);
}
.solution-support-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.75;
}
.solution-visual {
  position: relative;
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(18, 20, 23, 0.08);
  background:
    linear-gradient(140deg, rgba(77, 88, 102, 0.10), rgba(202, 175, 148, 0.20)),
    linear-gradient(180deg, rgba(255,255,255,0.82), rgba(229,215,203,0.54));
}
.solution-visual::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255,255,255,0.56);
  border-radius: 12px;
  pointer-events: none;
}
.solution-visual img {
  width: auto;
  height: auto;
  max-width: 54%;
  max-height: 68%;
  object-fit: contain;
  display: block;
}
.solutions-page .product-card .solution-visual img {
  filter: brightness(0.98) saturate(0.96) contrast(1.03);
}
.solutions-page .service-card .solution-visual img {
  max-width: 46%;
  max-height: 62%;
  filter: brightness(0.99) saturate(0.94) contrast(1.01);
}
.solution-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(77, 88, 102, 0.08);
  color: var(--ultrax-steel);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  font-family: "Roboto Condensed","Arial Narrow","Segoe UI",sans-serif;
  margin-bottom: 12px;
}
.solution-label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--consequence);
  box-shadow: 0 0 0 4px rgba(238, 118, 83, 0.10);
}
.solution-link {
  color: var(--ultrax-steel);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(238, 118, 83, 0.6);
  text-underline-offset: 3px;
}
.solution-link:hover {
  color: var(--accent-dark);
  text-decoration-color: var(--consequence-dark);
}
.solutions-page .platform-routing-band {
  background:
    linear-gradient(180deg, rgba(255,255,255,1), rgba(77,88,102,0.04));
}
.solutions-page .delivery-band {
  background:
    linear-gradient(180deg, rgba(229,215,203,0.24), rgba(246,241,236,0.82));
}
.solutions-page .delivery-model-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,1), rgba(229,215,203,0.42));
  border-color: rgba(77, 88, 102, 0.18);
}
.solutions-page .solution-start-card {
  max-width: 980px;
  margin-bottom: 12px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(246,241,236,0.72));
  border-color: rgba(202, 175, 148, 0.24);
}

.solutions-page .solution-start-card .pill {
  text-decoration: underline;
  text-decoration-color: rgba(238, 118, 83, 0.55);
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.solutions-page .solution-start-card .pill:hover {
  text-decoration-color: rgba(238, 118, 83, 0.82);
}
.solutions-page .solution-start-card .home-tldr-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.solutions-page .solution-start-card .home-tldr-links .pill {
  display: inline;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  color: var(--text);
  font-family: "Roboto Condensed","Arial Narrow","Segoe UI",sans-serif;
  font-weight: 500;
  letter-spacing: 0;
  box-shadow: none;
  text-decoration: underline;
  text-decoration-color: rgba(238, 118, 83, 0.55);
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.solutions-page .solution-start-card .home-tldr-links .pill:hover {
  color: var(--text);
  border-color: transparent;
  text-decoration-color: rgba(238, 118, 83, 0.82);
}
.solutions-page .solution-start-card .home-tldr-links .pill::before {
  display: none;
}
.solutions-page .delivery-copy-card {
  max-width: 880px;
  background:
    linear-gradient(180deg, rgba(255,255,255,1), rgba(246,241,236,0.52));
}
.solutions-page .closing-cta-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,1), rgba(77,88,102,0.05));
  border-color: rgba(77, 88, 102, 0.18);
}
.solutions-page .pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.solutions-page .pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid rgba(77, 88, 102, 0.18);
  background: rgba(255,255,255,0.86);
  color: var(--ultrax-steel);
  font-family: "Roboto Condensed","Arial Narrow","Segoe UI",sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}
.solutions-page .pill:hover {
  color: var(--accent-dark);
  border-color: rgba(238, 118, 83, 0.42);
  text-decoration: none;
}
.solutions-page .pill::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 999px;
  background: rgba(238, 118, 83, 0.88);
  box-shadow: 0 0 0 4px rgba(238,118,83,0.10);
}
.solutions-page .section-intro-card {
  max-width: 900px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(246,241,236,0.72));
  border-color: rgba(202, 175, 148, 0.24);
}

@media (max-width: 900px) {
  .solutions-page .band { padding: 62px 0; }
  .solutions-page .solutions-hero { padding: 68px 0 38px; }
  .hero-visual-ribbon { height: 33px; }
  .solutions-page .feature-row,
  .solutions-page .context-row { grid-template-columns: 1fr; }
  .solutions-page .pill-grid { gap: 10px; }
  .solution-visual img {
    max-width: 60%;
    max-height: 70%;
  }
  .solutions-page .service-card .solution-visual img {
    max-width: 52%;
    max-height: 64%;
  }
  h1 { font-size: 40px; }
}

/* PAGE SYSTEM EXTENSIONS */
.platform-page .band,
.product-page .band {
  padding: 72px 0;
}

.platform-page .page-hero,
.product-page .page-hero {
  padding: 86px 0 42px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 28px;
  align-items: center;
}

.page-hero-grid--copy-only,
.story-hero-grid--copy-only,
.insights-hero-grid--copy-only {
  grid-template-columns: minmax(0, 1fr);
  max-width: 920px;
}

.page-hero-copy .lede {
  max-width: 760px;
}

.hero-support-line {
  color: var(--muted);
  margin: 0 0 10px 0;
}

.hero-visual-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,1), rgba(246,241,236,0.46));
  border: 1px solid rgba(77, 88, 102, 0.18);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(18,20,23,0.08), inset 0 1px 0 rgba(255,255,255,0.7);
}

.hero-visual-frame {
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(140deg, rgba(77,88,102,0.10), rgba(202,175,148,0.18)),
    linear-gradient(180deg, rgba(255,255,255,0.86), rgba(229,215,203,0.52));
}

.hero-visual-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-logo-frame {
  background: var(--accent-dark);
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-frame img {
  object-fit: contain;
  object-position: center;
  filter: none;
}

.hero-visual-copy {
  padding: 18px 20px 20px;
}

.hero-visual-copy p {
  color: var(--muted);
  margin: 0;
}

.intro-surface {
  background:
    linear-gradient(180deg, rgba(229,215,203,0.62), rgba(246,241,236,0.94)),
    linear-gradient(90deg, rgba(77,88,102,0.06), rgba(77,88,102,0) 40%);
}

.intro-frame {
  position: relative;
}

.intro-frame::before {
  content: "";
  display: block;
  width: 88px;
  height: 1px;
  background: rgba(77, 88, 102, 0.24);
  margin-bottom: 22px;
}

.intro-panel {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(246,241,236,0.72));
  border: 1px solid rgba(202, 175, 148, 0.24);
}

.challenge-grid .card,
.application-grid .card {
  height: 100%;
}

.challenge-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,1), rgba(246,241,236,0.44));
  border-color: rgba(77, 88, 102, 0.18);
}

.challenge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--ultrax-steel);
  font-size: 12px;
  font-family: "Roboto Condensed","Arial Narrow","Segoe UI",sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.challenge-tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--consequence);
  box-shadow: 0 0 0 4px rgba(238,118,83,0.10);
}

.solution-path-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,1), rgba(229,215,203,0.40));
  border-color: rgba(77, 88, 102, 0.20);
}

.route-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.route-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid rgba(77, 88, 102, 0.18);
  background: rgba(255,255,255,0.88);
  color: var(--ultrax-steel);
  font-family: "Roboto Condensed","Arial Narrow","Segoe UI",sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}

.route-link:hover {
  color: var(--accent-dark);
  border-color: rgba(238, 118, 83, 0.42);
  text-decoration: none;
}

.route-link::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 999px;
  background: rgba(238, 118, 83, 0.88);
  box-shadow: 0 0 0 4px rgba(238,118,83,0.10);
}

.closing-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,1), rgba(77,88,102,0.05));
  border-color: rgba(77, 88, 102, 0.18);
}

.product-intro-grid {
  grid-template-columns: 1.08fr 0.92fr;
  align-items: stretch;
}

.product-primary-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,1), rgba(246,241,236,0.40));
  border-color: rgba(77, 88, 102, 0.24);
}

.product-secondary-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(77,88,102,0.05));
  border-color: rgba(77, 88, 102, 0.16);
}

.blsk-page .product-intro-grid,
.blsk-page .grid.two.blsk-two-col-grid {
  grid-template-columns: 1fr 1fr;
}

.product-family-grid {
  align-items: stretch;
}

.product-family-card {
  display: grid;
  grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255,255,255,1), rgba(246,241,236,0.40));
  border-color: rgba(77, 88, 102, 0.18);
}

.product-family-card--legacy {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(229,215,203,0.46));
  border-color: rgba(202, 175, 148, 0.28);
}

.product-family-image {
  border: 1px solid rgba(77, 88, 102, 0.14);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,241,236,0.72));
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}

.product-family-image img {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
  display: block;
}

.product-family-copy h4 {
  margin-bottom: 10px;
}

.application-grid .card {
  background:
    linear-gradient(180deg, rgba(255,255,255,1), rgba(246,241,236,0.34));
  border-color: rgba(153, 147, 147, 0.18);
}

.uxvalidator-application-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap);
}

.application-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.application-card-image {
  border: 1px solid rgba(77, 88, 102, 0.14);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,241,236,0.66));
  padding: 14px;
  min-height: 168px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.application-card-image img {
  width: 100%;
  max-height: 160px;
  object-fit: contain;
  display: block;
}

.support-reference-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(246,241,236,0.60));
  border-color: rgba(202, 175, 148, 0.24);
}

.subtle-more-link {
  margin: 16px 0 0 0;
  font-size: 14px;
  font-family: "Roboto Condensed","Arial Narrow","Segoe UI",sans-serif;
  letter-spacing: 0.02em;
}

.subtle-more-link a {
  color: var(--ultrax-steel);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

.subtle-more-link a:hover {
  color: var(--accent-dark);
}

.uxcare-page .hero-visual-frame img {
  object-position: center 58%;
  filter: brightness(0.98) saturate(0.96) contrast(1.02);
}

.uxvalidator-page .hero-visual-frame img {
  object-position: center 46%;
  filter: brightness(0.98) saturate(0.96) contrast(1.03);
}

.scats-page .hero-visual-frame img {
  object-position: center 50%;
  filter: brightness(0.98) saturate(0.94) contrast(1.02);
}

@media (max-width: 900px) {
  .platform-page .page-hero,
  .product-page .page-hero {
    padding: 70px 0 36px;
  }

  .page-hero-grid,
  .product-intro-grid,
  .product-family-card {
    grid-template-columns: 1fr;
  }

  .uxvalidator-application-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* HOME + PROOF PAGES */
.home-page .band,
.proof-page .band {
  padding: 72px 0;
}

.home-page .page-hero,
.proof-page .page-hero {
  padding: 88px 0 40px;
}

.home-page .hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 30px;
  align-items: center;
}

.home-page .hero-visual-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,1), rgba(246,241,236,0.50));
}

.home-page .hero-visual-copy {
  border-top: 1px solid rgba(77, 88, 102, 0.10);
}

.home-page .home-hero-lka-frame img {
  object-fit: contain;
  object-position: center;
  filter: brightness(0.99) saturate(0.94) contrast(1.01);
}

.home-page .home-hero-lka-frame {
  background: var(--accent-dark);
  padding: 28px;
}

.home-page .home-hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.home-page .home-hero-follow {
  margin-top: 14px;
}

.home-page .home-section-card,
.proof-page .proof-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,1), rgba(246,241,236,0.48));
  border-color: rgba(77, 88, 102, 0.16);
}

.home-page .home-cbi-band,
.proof-page .proof-intro-surface {
  background:
    linear-gradient(180deg, rgba(229,215,203,0.62), rgba(246,241,236,0.94)),
    linear-gradient(90deg, rgba(77,88,102,0.06), rgba(77,88,102,0) 40%);
}

.home-page .home-tldr-band {
  padding: 24px 0 18px;
}

.home-page .home-hierarchy-band {
  padding: 18px 0 12px;
}

.home-page .home-hierarchy-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,1), rgba(246,241,236,0.38));
  border-color: rgba(77, 88, 102, 0.16);
}

.home-page .home-hierarchy-stack {
  display: grid;
  gap: 10px;
  max-width: 980px;
  color: var(--muted);
}

.home-page .home-hierarchy-stack p {
  margin: 0;
}

.home-page .home-hierarchy-stack strong {
  color: var(--text);
}

.home-page .home-hierarchy-grid {
  align-items: stretch;
}

.home-page .home-hierarchy-step {
  background:
    linear-gradient(180deg, rgba(255,255,255,1), rgba(246,241,236,0.44));
  border-color: rgba(77, 88, 102, 0.14);
}

.home-page .home-hierarchy-step h4 {
  margin-bottom: 10px;
}

.home-page .home-hierarchy-step p {
  margin: 0;
  color: var(--muted);
}

.home-page .home-tldr-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,1), rgba(246,241,236,0.54));
  border-color: rgba(77, 88, 102, 0.16);
}

.home-page .home-tldr-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.home-page .home-tldr-links .pill {
  text-decoration: underline;
  text-decoration-color: rgba(238, 118, 83, 0.55);
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.home-page .home-tldr-links .pill:hover {
  text-decoration-color: rgba(238, 118, 83, 0.82);
}

.home-page .home-cbi-frame::before,
.proof-page .proof-frame::before {
  content: "";
  display: block;
  width: 88px;
  height: 1px;
  background: rgba(77, 88, 102, 0.24);
  margin-bottom: 22px;
}

.home-page .home-cbi-panel,
.proof-page .proof-panel {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(246,241,236,0.72));
  border: 1px solid rgba(202, 175, 148, 0.24);
}

.home-page .home-cbi-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  grid-template-areas:
    "signal media"
    "principles media";
  gap: 28px 30px;
  align-items: start;
}

.home-page .home-cbi-signal {
  grid-area: signal;
  min-width: 0;
}

.home-page .home-cbi-principles {
  grid-area: principles;
  margin-top: 2px;
}

.home-page .home-cbi-media {
  grid-area: media;
  margin: 0;
  align-self: center;
}

.home-page .home-cbi-media .hero-visual-frame {
  aspect-ratio: 4 / 5;
}

.home-page .home-cbi-media .hero-visual-frame img {
  object-position: center;
  filter: brightness(0.97) saturate(0.93) contrast(1.02);
}

.home-page .home-net-grid {
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
}

.home-page .home-audience-grid .card {
  background:
    linear-gradient(180deg, rgba(255,255,255,1), rgba(246,241,236,0.34));
  border-color: rgba(153, 147, 147, 0.18);
}

.home-page .home-closing-card,
.proof-page .proof-closing-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,1), rgba(77,88,102,0.05));
  border-color: rgba(77, 88, 102, 0.18);
}

.proof-page .proof-statements-grid .card {
  background:
    linear-gradient(180deg, rgba(255,255,255,1), rgba(246,241,236,0.36));
  border-color: rgba(153, 147, 147, 0.18);
  min-height: 104px;
  display: flex;
  align-items: center;
}

.proof-page .proof-statements-grid p {
  margin: 0;
}

.proof-page .page-hero-copy .lede,
.proof-page .proof-panel .lede {
  max-width: 920px;
}

@media (max-width: 900px) {
  .home-page .page-hero,
  .proof-page .page-hero {
    padding: 70px 0 36px;
  }

  .home-page .hero-grid,
  .home-page .home-net-grid,
  .home-page .home-cbi-layout {
    grid-template-columns: 1fr;
  }

  .home-page .home-cbi-layout {
    grid-template-areas:
      "signal"
      "media"
      "principles";
    gap: 22px;
  }

  .home-page .home-cbi-media {
    align-self: stretch;
  }

  .home-page .home-cbi-media .hero-visual-frame {
    aspect-ratio: 5 / 4;
  }

  .home-page .home-cbi-media .hero-visual-frame img {
    object-position: center 46%;
  }
}

@media (max-width: 640px) {
  .uxvalidator-application-grid {
    grid-template-columns: 1fr;
  }
}

/* EXPLANATORY PAGES */
.story-page .band {
  padding: 72px 0;
}

.story-page .page-hero {
  padding: 88px 0 40px;
}

.story-page .story-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 30px;
  align-items: center;
}

.story-page .story-intro-surface,
.story-page .story-value-surface {
  background:
    linear-gradient(180deg, rgba(229,215,203,0.62), rgba(246,241,236,0.94)),
    linear-gradient(90deg, rgba(77,88,102,0.06), rgba(77,88,102,0) 40%);
}

.story-page .story-frame::before {
  content: "";
  display: block;
  width: 88px;
  height: 1px;
  background: rgba(77, 88, 102, 0.24);
  margin-bottom: 22px;
}

.story-page .story-panel,
.story-page .story-closing-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(246,241,236,0.72));
  border: 1px solid rgba(202, 175, 148, 0.24);
}

.story-page .story-principles-grid .card,
.story-page .story-framework-grid .card {
  background:
    linear-gradient(180deg, rgba(255,255,255,1), rgba(246,241,236,0.38));
  border-color: rgba(77, 88, 102, 0.18);
  height: 100%;
}

.story-page .story-framework-grid {
  grid-template-columns: 1fr;
}

.story-page .story-framework-grid .card {
  min-height: 136px;
}

.story-page .story-support-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,1), rgba(77,88,102,0.05));
  border-color: rgba(77, 88, 102, 0.16);
}

.story-page .hero-visual-frame img {
  object-position: center 48%;
  filter: brightness(0.99) contrast(1.02);
}

.story-page .hero-logo-frame img {
  object-position: center;
  filter: none;
}

.story-page .story-value-grid {
  align-items: stretch;
}

.story-page .story-visual-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,241,236,0.58));
  border-color: rgba(202, 175, 148, 0.24);
}

.story-page .story-visual-frame {
  border-radius: 16px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.9), rgba(229,215,203,0.34));
}

.story-page .story-visual-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.story-page .story-visual-card--triangle {
  padding-top: 18px;
  padding-bottom: 18px;
}

.story-page .story-visual-frame--triangle {
  width: min(100%, 560px);
  margin: 0 auto;
  background: transparent;
  border-radius: 0;
}

@media (max-width: 900px) {
  .story-page .story-visual-frame--triangle {
    width: min(100%, 420px);
  }
}

.legal-page main {
  background: #ffffff;
}

.legal-page .legal-doc {
  max-width: 920px;
  padding-top: 56px;
  padding-bottom: 72px;
}

.legal-page .legal-doc .breadcrumb {
  margin-bottom: 16px;
}

.legal-page .legal-doc h1 {
  margin-bottom: 12px;
}

.legal-page .legal-doc h2 {
  margin: 34px 0 10px;
  font-size: 26px;
}

.legal-page .legal-doc h3 {
  margin: 22px 0 8px;
  font-size: 22px;
}

.legal-page .legal-doc p,
.legal-page .legal-doc li {
  color: var(--muted);
}

.legal-page .legal-doc ul {
  padding-left: 20px;
}

.legal-page .legal-doc .legal-lede {
  font-size: 18px;
  max-width: 72ch;
}

.legal-page .legal-doc .legal-mark {
  margin: 28px 0 30px;
  display: flex;
  justify-content: center;
}

.legal-page .legal-doc .legal-mark img {
  width: min(100%, 260px);
  height: auto;
  display: block;
}

.legal-page .legal-doc .legal-note {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(77, 88, 102, 0.18);
}

@media (max-width: 900px) {
  .story-page .page-hero {
    padding: 70px 0 36px;
  }

  .story-page .story-hero-grid {
    grid-template-columns: 1fr;
  }

  .legal-page .legal-doc {
    padding-top: 42px;
    padding-bottom: 56px;
  }
}

/* INSIGHTS PAGE */
.insights-page .band {
  padding: 72px 0;
}

.insights-page .page-hero {
  padding: 88px 0 56px;
}

.insights-page .insights-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 30px;
  align-items: center;
}

.insights-page .insights-surface {
  background:
    linear-gradient(180deg, rgba(229,215,203,0.62), rgba(246,241,236,0.94)),
    linear-gradient(90deg, rgba(77,88,102,0.06), rgba(77,88,102,0) 40%);
}

.insights-page .insights-frame::before {
  content: "";
  display: block;
  width: 88px;
  height: 1px;
  background: rgba(77, 88, 102, 0.24);
  margin-bottom: 22px;
}

.insights-page .insights-panel,
.insights-page .insights-closing-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(246,241,236,0.72));
  border: 1px solid rgba(202, 175, 148, 0.24);
}

.insights-page .insights-category-block + .insights-category-block {
  margin-top: 32px;
}

.insights-page .insight-tile,
.insights-page .insights-row .card {
  background:
    linear-gradient(180deg, rgba(255,255,255,1), rgba(246,241,236,0.36));
  border-color: rgba(77, 88, 102, 0.16);
  text-decoration: none;
}

.insights-page .insight-tile .meta,
.insights-page .insights-row .card .meta {
  color: var(--ultrax-steel);
  font-size: 12px;
  font-family: "Roboto Condensed","Arial Narrow","Segoe UI",sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.insights-page .insight-tile:hover,
.insights-page .insights-row .card:hover {
  text-decoration: none;
  border-color: rgba(238, 118, 83, 0.28);
}

@media (max-width: 900px) {
  .insights-page .page-hero {
    padding: 70px 0 36px;
  }

  .insights-page .insights-hero-grid {
    grid-template-columns: 1fr;
  }
}

/* DETAIL INSIGHTS */
.insight-detail-page .band {
  padding: 72px 0;
}

.insight-detail-page .page-hero {
  padding: 88px 0 40px;
}

.insight-detail-page .detail-surface {
  background:
    linear-gradient(180deg, rgba(229,215,203,0.62), rgba(246,241,236,0.94)),
    linear-gradient(90deg, rgba(77,88,102,0.06), rgba(77,88,102,0) 40%);
}

.insight-detail-page .detail-frame::before {
  content: "";
  display: block;
  width: 88px;
  height: 1px;
  background: rgba(77, 88, 102, 0.24);
  margin-bottom: 22px;
}

.insight-detail-page .detail-panel,
.insight-detail-page .detail-related-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(246,241,236,0.72));
  border: 1px solid rgba(202, 175, 148, 0.24);
}

.insight-detail-page .detail-related-card {
  max-width: 920px;
}

.insight-detail-page .detail-statement-grid .card {
  background:
    linear-gradient(180deg, rgba(255,255,255,1), rgba(246,241,236,0.36));
  border-color: rgba(153, 147, 147, 0.18);
  min-height: 104px;
  display: flex;
  align-items: center;
}

.insight-detail-page .detail-statement-grid p {
  margin: 0;
}

@media (max-width: 900px) {
  .insight-detail-page .page-hero {
    padding: 70px 0 36px;
  }
}

/* PRIVACY */
.privacy-banner {
  position: fixed;
  inset: auto 18px 18px 18px;
  z-index: 1000;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.privacy-banner-inner {
  width: min(960px, 100%);
  pointer-events: auto;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,241,236,0.94));
  border: 1px solid rgba(77, 88, 102, 0.16);
  border-radius: 18px;
  box-shadow: 0 22px 48px rgba(18,20,23,0.14), inset 0 1px 0 rgba(255,255,255,0.72);
  padding: 18px 20px;
}

.privacy-banner-copy {
  display: grid;
  gap: 8px;
}

.privacy-banner-copy strong {
  font-family: "Roboto Condensed","Arial Narrow","Segoe UI",sans-serif;
  font-size: 18px;
  letter-spacing: 0.01em;
  color: var(--text);
}

.privacy-banner-copy p {
  margin: 0;
  color: var(--muted);
}

.privacy-banner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.privacy-inline-link {
  color: var(--ultrax-steel);
  text-decoration: underline;
  text-decoration-color: rgba(238, 118, 83, 0.6);
  text-underline-offset: 3px;
}

.privacy-inline-link:hover {
  color: var(--accent-dark);
  text-decoration-color: var(--consequence-dark);
}

@media (max-width: 700px) {
  .privacy-banner {
    inset: auto 12px 12px 12px;
  }

  .privacy-banner-inner {
    padding: 16px;
    border-radius: 16px;
  }
}
