:root {
  --black: #080808;
  --bg1: #0e0e0e;
  --bg2: #141414;
  --bg3: #1a1a1a;
  --bg4: #222222;
  --bg5: #2a2a2a;
  --text: #f0f0f0;
  --text2: #b5bec9;
  --text3: #ffffff;
  --gold: #c8a84a;
  --success: #67d487;
  --success-dim: rgba(103, 212, 135, 0.22);
  --danger: #ef6b6b;
  --danger-dim: rgba(239, 107, 107, 0.2);
  --warn: #e0bc56;
  --border: rgba(255, 255, 255, 0.07);
  --border2: rgba(255, 255, 255, 0.04);
  --rule: rgba(255, 255, 255, 0.1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  background: var(--black);
  color: var(--text);
  font-family:
    "DM Sans",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-size: 16px;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-kerning: normal;
  font-feature-settings:
    "kern" 1,
    "liga" 1;
  overflow-wrap: break-word;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(8, 8, 8, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border2);
  padding: 0 48px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text2);
}

.nav-logo-link {
  color: inherit;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  color: var(--text3);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text2);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 80px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 40% 60% at 20% 80%,
      rgba(200, 168, 74, 0.04) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 60% 40% at 80% 20%,
      rgba(255, 255, 255, 0.02) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 80% 50% at 50% 10%,
      rgba(255, 255, 255, 0.015) 0%,
      transparent 70%
    ),
    url("/assets/images/network.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  background-blend-mode: overlay;
  opacity: 0.2; /* on .hero-bg */
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  animation: heroSubFade 0.7s ease 0.05s forwards;
  opacity: 0;
}

.hero-eyebrow::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--text3);
}

.hero h1 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(44px, 6.6vw, 96px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text);
  max-width: 900px;
  margin-bottom: 32px;
  text-rendering: optimizeLegibility;
  font-variation-settings: "wdth" 100;
}

.hero h1 span {
  color: var(--text3);
  font-weight: 300;
}

.hero-title-secondary {
  font-weight: 500;
}

.hero-sub {
  font-size: 17px;
  color: var(--text2);
  font-weight: 400;
  letter-spacing: -0.005em;
  max-width: 540px;
  margin-bottom: 56px;
  line-height: 1.65;
  opacity: 0;
  animation: heroSubFade 0.9s ease 1.6s forwards;
}

.hero-statement {
  max-width: 680px;
  margin: -18px 0 38px;
  padding: 18px 20px 16px;
  border: 1px solid var(--border);
  border-left: 2px solid var(--gold);
  border-radius: 8px;
  background:
    radial-gradient(
      700px 220px at 0% 0%,
      rgba(0, 0, 0, 0.468),
      transparent 62%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(61, 58, 58, 0.01));
  opacity: 0;
  animation: heroSubFade 0.8s ease 1.75s forwards;
}

.hero-statement-quote {
  font-size: 18px;
  line-height: 1.45;
  color: var(--text);
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  max-width: 100%;
}

.hero-statement-attr {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-proof-chip {
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--border2);
  background: rgba(255, 255, 255, 0.03);
  font-size: 11px;
  color: var(--text2);
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.hero-proof-chip strong {
  color: var(--text);
}

.hero-divider {
  animation: heroSubFade 0.7s ease 1.8s forwards;
  opacity: 0;
}

.hero-meta {
  display: flex;
  gap: 56px;
  animation: heroSubFade 0.7s ease 2s forwards;
  opacity: 0;
}

@keyframes heroSubFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-meta-item label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text3);
  display: block;
  margin-bottom: 5px;
}

.hero-meta-item span {
  font-size: 13px;
  color: var(--text2);
  font-weight: 500;
}

/* LAYOUT */
.sw {
  max-width: 1080px;
  margin: 0 auto;
  padding: 100px 80px;
}

.sw--first {
  padding-top: 80px;
}

.section-tag {
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-tag::before {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background: var(--text3);
}

h2 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.16;
  color: var(--text);
  margin-bottom: 28px;
  text-rendering: optimizeLegibility;
}

h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.003em;
}

p {
  color: var(--text2);
  margin-bottom: 20px;
  max-width: 680px;
  font-weight: 400;
}

p strong {
  color: var(--text);
  font-weight: 600;
}

p:last-child {
  margin-bottom: 0;
}

.div-full {
  width: calc(100% - 160px);
  max-width: 920px;
  height: 1px;
  background: var(--border2);
  margin: 0 auto;
}

/* DEFINITION BOX */
.definition-box {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-left: 2px solid var(--gold);
  border-radius: 6px;
  padding: 32px 36px;
  margin: 44px 0;
}

.def-label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.def-term {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.025em;
}

.def-body {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.75;
  max-width: 100%;
  margin: 0;
}

.def-body strong {
  color: var(--text);
}

/* OPENING BLOCK */
.opening-block {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 48px;
  margin-bottom: 40px;
}

.opening-block p {
  max-width: 100%;
  font-size: 17px;
  line-height: 1.8;
}

/* PULL QUOTE */
.pq {
  padding: 4px 0 4px 32px;
  border-left: 1px solid var(--rule);
  margin: 44px 0;
}

.pq p {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.55;
  max-width: 620px;
  margin: 0;
}

/* EXPERT QUOTE */
.expert-quote {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-left: 2px solid var(--gold);
  border-radius: 6px;
  padding: 32px 36px;
  margin: 44px 0;
}

.expert-quote p {
  font-size: 17px;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1.65;
  max-width: 100%;
  margin-bottom: 16px;
}

.expert-quote-attr {
  font-size: 12px;
  color: var(--text3);
  letter-spacing: 0.06em;
}

.expert-quote-attr strong {
  color: var(--text2);
  font-weight: 500;
}

.founding-statement {
  background:
    radial-gradient(
      900px 320px at 0% 0%,
      rgba(200, 168, 74, 0.08),
      transparent 60%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.02),
      rgba(255, 255, 255, 0.01)
    );
}

.fs-label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.fs-subline {
  font-size: 13px;
  color: var(--text3);
  margin-top: 8px;
  margin-bottom: 0;
  line-height: 1.6;
  max-width: 100%;
}

.founding-statement .expert-quote-attr {
  margin-top: 0;
  margin-bottom: 0;
  display: block;
}

/* ICEBERG VISUAL */
.ki-iceberg,
.ki-iceberg * {
  font-family:
    Inter,
    "DM Sans",
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    sans-serif;
}

.ki-iceberg {
  margin: 40px 0 44px;
}

.ki-iceberg-header {
  margin-bottom: 14px;
}

.ki-iceberg-kicker {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(200, 168, 74, 0.92);
  margin-bottom: 6px;
}

.ki-iceberg-title {
  margin: 0 0 8px;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.14;
  letter-spacing: -0.015em;
  color: var(--text);
}

.ki-iceberg-subtitle {
  margin: 0;
  font-size: 14px;
  line-height: 1.62;
  color: var(--text2);
  max-width: 860px;
}

.ki-iceberg-stage {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.32);
}

.iceberg-svg {
  display: block;
  width: 100%;
  height: auto;
}

.iceberg-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 14px 18px;
  pointer-events: none;
}

.iceberg-lane {
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lane-tacit {
  align-self: end;
  justify-self: start;
  margin-bottom: 16px;
}

.lane-explicit {
  align-self: start;
  justify-self: end;
  margin-top: 12px;
}

.ice-callout {
  pointer-events: auto;
  width: min(38vw, 280px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  background: rgba(6, 14, 24, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.38);
  padding: 11px 13px 12px;
  text-align: left;
  color: var(--text);
  cursor: default;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
  position: relative;
}

.ice-callout.tacit {
  border-left: 2px solid rgba(85, 214, 255, 0.55);
}

.ice-callout.explicit {
  border-right: 2px solid rgba(200, 168, 74, 0.55);
}

.ice-callout:hover,
.ice-callout:focus-visible,
.ice-callout.is-active {
  border-color: rgba(85, 214, 255, 0.5);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(85, 214, 255, 0.15);
  background: rgba(8, 18, 32, 0.9);
  outline: none;
}

.ice-callout.explicit:hover,
.ice-callout.explicit:focus-visible,
.ice-callout.explicit.is-active {
  border-color: rgba(200, 168, 74, 0.5);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(200, 168, 74, 0.14);
}

.ice-callout .chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 9px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 6px;
}

.ice-callout.tacit .chip {
  color: #a8e4f5;
  border: 1px solid rgba(85, 214, 255, 0.3);
  background: rgba(85, 214, 255, 0.12);
}

.ice-callout.explicit .chip {
  color: #e8cc80;
  border: 1px solid rgba(200, 168, 74, 0.3);
  background: rgba(200, 168, 74, 0.12);
}

.ice-callout .title {
  display: block;
  font-size: 13px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #f0f6ff;
  font-weight: 600;
  margin-bottom: 4px;
}

.ice-callout .desc {
  display: block;
  font-size: 11.5px;
  line-height: 1.5;
  color: rgba(180, 200, 225, 0.82);
}

.ice-callout .pin {
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c8f0ff;
  border: 1.5px solid rgba(6, 14, 24, 0.9);
  transform: translateY(-50%);
  box-shadow:
    0 0 0 3px rgba(85, 214, 255, 0.2),
    0 0 8px rgba(85, 214, 255, 0.3);
}

.ice-callout.tacit .pin {
  right: -5px;
}

.ice-callout.explicit .pin {
  left: -5px;
}

@media (max-width: 980px) {
  .ice-callout {
    width: min(46vw, 250px);
  }
}

@media (max-width: 740px) {
  .iceberg-overlay {
    padding: 10px;
    gap: 8px;
  }

  .ice-callout {
    width: min(46vw, 200px);
    padding: 8px 10px 9px;
  }

  .ice-callout .title {
    font-size: 11.5px;
  }

  .ice-callout .desc {
    font-size: 10px;
    line-height: 1.45;
  }
}

.evidence-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 26px 0 18px;
}

.evidence-card {
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: 8px;
  padding: 20px 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.evidence-stat {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
}

.evidence-stat span {
  font-size: 20px;
  color: var(--gold);
  font-weight: 600;
}

.evidence-copy {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.55;
  margin: 0;
  max-width: 100%;
}

.evidence-source {
  font-size: 11px;
  color: var(--text3);
  letter-spacing: 0.04em;
  margin-top: 10px;
}

.volatility-block {
  margin: 22px 0 8px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--border2);
  border-radius: 8px;
}

.volatility-head {
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.volatility-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.vol-card {
  padding: 12px 14px;
  border-radius: 6px;
  background: var(--bg3);
  border: 1px solid var(--border2);
}

.vol-card h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text);
  margin: 0 0 4px;
  font-family: "DM Sans", sans-serif;
}

.vol-card p {
  font-size: 12px;
  color: var(--text3);
  line-height: 1.5;
  margin: 0;
  max-width: 100%;
}

/* ASSET GRID */
.asset-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border2);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border2);
  margin: 44px 0;
}

.asset-col {
  background: var(--bg2);
  padding: 40px 36px;
}

.asset-col.explicit {
  background: var(--bg3);
}

.asset-col-label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.asset-col-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.asset-col h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.asset-col > p {
  font-size: 14px;
  max-width: 100%;
  margin-bottom: 28px;
  line-height: 1.65;
}

.asset-type {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 4px;
  margin-bottom: 8px;
  border-left: 2px solid var(--bg5);
}

.asset-type:last-child {
  margin-bottom: 0;
}

.asset-type-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 3px;
}

.asset-type-desc {
  font-size: 12px;
  color: var(--text3);
  line-height: 1.5;
}

.asset-col.explicit .asset-type {
  border-left-color: var(--text3);
}

/* STAT CARDS - citation evidence */
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 44px 0;
}

.stat-card {
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: 8px;
  padding: 28px 24px;
}

.stat-num {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-desc {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.55;
  margin-bottom: 10px;
}

.stat-source {
  font-size: 11px;
  color: var(--text3);
  letter-spacing: 0.04em;
}

.section-measurement > p {
  max-width: 760px;
}

.section-measurement .mp-subhead {
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 28px 0 12px;
  padding-top: 2px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.section-measurement .stat-row {
  margin: 0 0 22px;
}

.section-measurement .viz-decay {
  margin-top: 0;
  margin-bottom: 22px;
}

.section-measurement .expert-quote.founding-statement {
  margin: 0 0 18px;
}

.section-measurement .evidence-strip {
  margin: 0 0 18px;
}

.section-measurement .volatility-block {
  margin: 0 0 18px;
}

.section-measurement .challenge-helix {
  margin-top: 0;
  margin-bottom: 18px;
}

.section-measurement .viz-heatmap--measurement {
  margin-top: 0;
}

.section-measurement .expert-quote--measurement {
  margin-top: 0;
  margin-bottom: 0;
}

.section-measurement .mp-closing {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.75;
  margin: 20px 0 0;
  max-width: 100%;
}

/* INLINE CITATION */
.cite {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--text3);
  letter-spacing: 0.06em;
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 1px 6px;
  margin-left: 4px;
  vertical-align: middle;
  white-space: nowrap;
}

/* NUMBERED CHALLENGE LIST */
.challenge-list {
  margin: 44px 0;
}

.c-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border2);
  align-items: start;
}

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

.c-num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text3);
  padding-top: 3px;
}

.c-item h3 {
  font-size: 15px;
  margin-bottom: 6px;
}

.c-item p {
  font-size: 14px;
  margin: 0;
  max-width: 100%;
}

/* CHALLENGE HELIX */
.challenge-helix {
  --spine-x: 50%;
  --node: 64px;
  --gap: 28px;
  --card-w: min(520px, calc(50vw - 120px));
  --line: rgba(255, 255, 255, 0.08);
  --panel: rgba(255, 255, 255, 0.03);
  --panel2: rgba(255, 255, 255, 0.02);
  position: relative;
  padding: 28px 0 6px;
  margin-top: 12px;
}

.challenge-helix::before {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: var(--spine-x);
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.06),
    transparent
  );
  transform: translateX(-0.5px);
}

.challenge-helix .c-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr var(--node) 1fr;
  column-gap: var(--gap);
  align-items: center;
  padding: 18px 0;
  margin: 0;
  border-bottom: 0;
}

.challenge-helix .c-item > div:last-child {
  grid-column: 1;
  justify-self: end;
  width: var(--card-w);
  background: linear-gradient(180deg, var(--panel), var(--panel2));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(6px);
}

.challenge-helix .c-item:nth-child(even) > div:last-child {
  grid-column: 3;
  justify-self: start;
}

.challenge-helix .c-num {
  grid-column: 2;
  justify-self: center;
  width: var(--node);
  height: var(--node);
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.92);
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.02) 55%,
    rgba(0, 0, 0, 0.2) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  position: relative;
  z-index: 2;
  padding-top: 0;
}

.challenge-helix .c-num::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 999px;
  border: 4px solid transparent;
  background: conic-gradient(
    from 210deg,
    transparent 0deg,
    rgba(212, 175, 55, 0) 35deg,
    rgba(212, 175, 55, 0.85) 75deg,
    rgba(212, 175, 55, 0.25) 110deg,
    transparent 160deg,
    transparent 360deg
  );
  -webkit-mask: radial-gradient(circle, transparent 58%, #000 60%);
  mask: radial-gradient(circle, transparent 58%, #000 60%);
  filter: drop-shadow(0 6px 16px rgba(212, 175, 55, 0.14));
  opacity: 0.9;
}

.challenge-helix .c-item:nth-child(even) .c-num::before {
  transform: rotate(180deg);
  opacity: 0.85;
}

.challenge-helix .c-item::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(var(--spine-x) - (50% - (var(--node) / 2) - var(--gap)));
  height: 1px;
  width: calc(50% - (var(--node) / 2) - var(--gap));
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.03)
  );
  transform: translateY(-0.5px);
  pointer-events: none;
}

.challenge-helix .c-item:nth-child(even)::after {
  left: calc(var(--spine-x) + (var(--node) / 2) + var(--gap));
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.03)
  );
}

.challenge-helix .c-item h3 {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.25;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.92);
}

.challenge-helix .c-item p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

.challenge-helix .c-item:hover .c-num {
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.38);
}

.challenge-helix .c-item:hover > div:last-child {
  border-color: rgba(212, 175, 55, 0.2);
}

@media (prefers-reduced-motion: no-preference) {
  .challenge-helix .c-num::before {
    animation: helixArc 5.5s ease-in-out infinite;
  }

  .challenge-helix .c-item:nth-child(even) .c-num::before {
    animation-duration: 6.3s;
  }

  @keyframes helixArc {
    0%,
    100% {
      filter: drop-shadow(0 6px 16px rgba(212, 175, 55, 0.14));
      opacity: 0.85;
    }

    50% {
      filter: drop-shadow(0 10px 22px rgba(212, 175, 55, 0.22));
      opacity: 0.95;
    }
  }
}

@media (max-width: 860px) {
  .challenge-helix {
    --spine-x: 28px;
    --node: 56px;
    --card-w: 1fr;
    padding-left: 0;
  }

  .challenge-helix::before {
    left: var(--spine-x);
  }

  .challenge-helix .c-item {
    grid-template-columns: var(--node) 1fr;
    column-gap: 16px;
  }

  .challenge-helix .c-num {
    grid-column: 1;
  }

  .challenge-helix .c-item > div:last-child,
  .challenge-helix .c-item:nth-child(even) > div:last-child {
    grid-column: 2;
    justify-self: stretch;
    width: auto;
  }

  .challenge-helix .c-item::after {
    display: none;
  }
}

/* WHY NOW JOURNEY MAP */
.challenge-journey {
  margin: 46px 0 34px;
  padding: 0;
  border: 0;
  position: relative;
}

.journey-map {
  position: relative;
  height: clamp(236px, 28vw, 306px);
  border-radius: 22px;
  background:
    radial-gradient(
      circle at 18% 28%,
      rgba(255, 152, 66, 0.11),
      transparent 44%
    ),
    radial-gradient(
      circle at 78% 56%,
      rgba(96, 128, 255, 0.12),
      transparent 46%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
  border: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.journey-map::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.014) 0 1px,
      transparent 1px 100%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.014) 0 1px,
      transparent 1px 100%
    );
  background-size: 26px 26px;
  opacity: 0.2;
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    #000 25%,
    #000 75%,
    transparent 100%
  );
}

.journey-map::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255, 170, 86, 0.14) 31%,
    rgba(255, 94, 92, 0.12) 52%,
    rgba(109, 135, 255, 0.14) 72%,
    transparent 100%
  );
  transform: translateX(-45%);
  opacity: 0;
}

.journey-track {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.jt-channel {
  fill: none;
  stroke: rgba(21, 27, 40, 0.88);
  stroke-width: 11;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.jt-base {
  fill: none;
  stroke: rgba(255, 255, 255, 0.2);
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.7;
}

.jt-progress {
  fill: none;
  stroke: var(--seg-color, #ffac3f);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: var(--seg-length, 430);
  stroke-dashoffset: var(--seg-length, 430);
  filter: drop-shadow(
    0 0 14px color-mix(in srgb, var(--seg-color, #ffac3f) 48%, transparent)
  );
}

.journey-markers {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.journey-marker {
  position: absolute;
  transform: translateX(-50%);
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
  white-space: nowrap;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.42);
}

.journey-marker.m1 {
  left: 11%;
  top: 14%;
}

.journey-marker.m2 {
  left: 50%;
  top: 10%;
}

.journey-marker.m3 {
  left: 89%;
  top: 14%;
}

.journey-node {
  --node: 122px;
  position: absolute;
  width: var(--node);
  height: var(--node);
  margin-left: calc(var(--node) / -2);
  margin-top: calc(var(--node) / -2);
  border-radius: 999px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(
      circle at 50% 42%,
      rgba(255, 255, 255, 0.15),
      rgba(255, 255, 255, 0.03) 58%,
      rgba(0, 0, 0, 0.46) 100%
    ),
    #111620;
  border: 1px solid rgba(255, 255, 255, 0.19);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 14px 32px rgba(0, 0, 0, 0.45);
  overflow: visible;
  opacity: 0.44;
  transform: translateY(10px) scale(0.95);
  z-index: 3;
}

.journey-node::before {
  content: "";
  position: absolute;
  inset: 11px;
  border-radius: 999px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  opacity: 0.62;
}

.journey-node::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 999px;
  border: 3px solid transparent;
  border-top-color: color-mix(in srgb, var(--accent, #ff9c3a) 85%, #fff);
  border-right-color: color-mix(
    in srgb,
    var(--accent, #ff9c3a) 65%,
    transparent
  );
  opacity: 0.22;
  transform: rotate(-35deg);
  filter: drop-shadow(
    0 0 7px color-mix(in srgb, var(--accent, #ff9c3a) 48%, transparent)
  );
}

.journey-core {
  width: 72px;
  height: 72px;
  position: relative;
  display: grid;
  place-items: center;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 10px 20px rgba(0, 0, 0, 0.36);
}

.journey-node .journey-icon,
.journey-node .lucide {
  width: 36px;
  height: 36px;
  color: #eaf2ff;
  z-index: 4;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
  stroke-width: 2.3;
}

.journey-node[data-step="01"] {
  left: 11%;
  top: 63%;
  --accent: #ffad3f;
}

.journey-node[data-step="01"] .journey-core {
  border-radius: 18px;
  clip-path: polygon(
    16% 0%,
    84% 0%,
    100% 18%,
    100% 82%,
    84% 100%,
    16% 100%,
    0% 82%,
    0% 18%
  );
  background: linear-gradient(
    158deg,
    rgba(255, 190, 86, 0.55),
    rgba(255, 123, 68, 0.22)
  );
}

.journey-node[data-step="01"] .journey-icon {
  color: #ffe09a;
}

.journey-node[data-step="02"] {
  left: 50%;
  top: 46%;
  --accent: #ff6352;
}

.journey-node[data-step="02"] .journey-core {
  border-radius: 20px;
  background: linear-gradient(
    180deg,
    rgba(255, 104, 92, 0.5),
    rgba(103, 52, 140, 0.2)
  );
}

.journey-node[data-step="02"] .journey-icon {
  color: #ffd1cd;
  stroke-width: 2.45;
}

.journey-node[data-step="03"] {
  left: 89%;
  top: 63%;
  --accent: #6d8fff;
}

.journey-node[data-step="03"] .journey-core {
  border-radius: 999px;
  background: radial-gradient(
    circle at 35% 24%,
    rgba(132, 176, 255, 0.56),
    rgba(71, 102, 199, 0.2)
  );
}

.journey-node[data-step="03"] .journey-icon {
  color: #cce0ff;
  stroke-width: 2.25;
}

.journey-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2vw, 28px);
  margin-top: 22px;
}

.journey-card {
  padding: 12px 4px 0;
  text-align: center;
}

.journey-kicker {
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 10px;
  font-weight: 700;
}

.journey-card h3 {
  font-size: clamp(30px, 2vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.028em;
  margin: 0 auto 12px;
  max-width: 12ch;
  color: rgba(253, 253, 253, 0.97);
}

.journey-card p {
  font-size: 15px;
  line-height: 1.74;
  color: rgba(194, 204, 218, 0.94);
  margin: 0 auto;
  max-width: 35ch;
}

@media (prefers-reduced-motion: no-preference) {
  .challenge-journey.visible .journey-map::after {
    animation: mapSweep 2.6s ease-out 0.26s forwards;
  }

  .challenge-journey.visible .jt-progress.seg-a {
    animation: journeyTraceA 0.92s ease-out 0.38s forwards;
  }

  .challenge-journey.visible .jt-progress.seg-b {
    animation: journeyTraceB 0.92s ease-out 1.44s forwards;
  }

  .challenge-journey.visible .journey-node[data-step="01"] {
    animation: nodeActivate 0.56s ease-out 0.08s forwards;
  }

  .challenge-journey.visible .journey-node[data-step="02"] {
    animation: nodeActivate 0.56s ease-out 1.05s forwards;
  }

  .challenge-journey.visible .journey-node[data-step="03"] {
    animation: nodeActivate 0.56s ease-out 2.01s forwards;
  }

  .challenge-journey.visible .journey-node[data-step="01"]::after {
    animation: nodeSweep 0.92s ease-out 0.12s forwards;
  }

  .challenge-journey.visible .journey-node[data-step="02"]::after {
    animation: nodeSweep 0.92s ease-out 1.08s forwards;
  }

  .challenge-journey.visible .journey-node[data-step="03"]::after {
    animation: nodeSweep 0.92s ease-out 2.02s forwards;
  }

  .challenge-journey.visible .journey-card {
    animation: journeyRise 0.66s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  }

  .challenge-journey.visible .journey-card:nth-child(1) {
    animation-delay: 2.1s;
  }

  .challenge-journey.visible .journey-card:nth-child(2) {
    animation-delay: 2.2s;
  }

  .challenge-journey.visible .journey-card:nth-child(3) {
    animation-delay: 2.3s;
  }

  @keyframes journeyTraceA {
    from {
      stroke-dashoffset: 430;
    }

    to {
      stroke-dashoffset: 0;
    }
  }

  @keyframes journeyTraceB {
    from {
      stroke-dashoffset: 430;
    }

    to {
      stroke-dashoffset: 0;
    }
  }

  @keyframes nodeActivate {
    from {
      opacity: 0.44;
      transform: translateY(10px) scale(0.95);
      filter: saturate(0.8);
    }

    to {
      opacity: 1;
      transform: translateY(0) scale(1);
      filter: saturate(1);
    }
  }

  @keyframes nodeSweep {
    from {
      opacity: 0.2;
      transform: rotate(-35deg);
    }

    to {
      opacity: 0.84;
      transform: rotate(180deg);
    }
  }

  @keyframes mapSweep {
    0% {
      transform: translateX(-45%);
      opacity: 0;
    }

    20% {
      opacity: 0.82;
    }

    100% {
      transform: translateX(24%);
      opacity: 0.26;
    }
  }

  @keyframes journeyRise {
    from {
      opacity: 0;
      transform: translateY(14px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

@media (max-width: 980px) {
  .journey-map {
    height: auto;
    border: none;
    background: transparent;
    padding: 0 0 0 20px;
  }

  .journey-map::before,
  .journey-map::after,
  .journey-track,
  .journey-markers {
    display: none;
  }

  .journey-node {
    position: relative;
    width: 92px;
    height: 92px;
    margin: 0;
    opacity: 1;
    transform: none;
  }

  .journey-node[data-step] {
    left: auto;
    top: auto;
  }

  .journey-core {
    width: 56px;
    height: 56px;
  }

  .journey-node .journey-icon,
  .journey-node .lucide {
    width: 30px;
    height: 30px;
  }

  .journey-nodes {
    display: grid;
    gap: 20px;
    position: relative;
  }

  .journey-nodes::before {
    content: "";
    position: absolute;
    left: 46px;
    top: 16px;
    bottom: 16px;
    width: 2px;
    background: linear-gradient(180deg, #ffad3f 0%, #ff6352 52%, #6d8fff 100%);
    opacity: 0.62;
  }

  .journey-cards {
    grid-template-columns: 1fr;
    margin-top: 22px;
    gap: 24px;
  }

  .journey-card {
    text-align: left;
    padding: 0;
  }

  .journey-card h3,
  .journey-card p {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }

  .journey-card h3 {
    font-size: clamp(28px, 7.2vw, 34px);
  }
}

/* COMPARE TABLE */
.compare-wrap {
  margin: 44px 0;
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  min-width: 680px;
  border-collapse: separate;
  border-spacing: 0 10px;
}

.compare-table thead th {
  padding: 0 18px 2px;
  text-align: left;
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  background: transparent;
}

.compare-table th:first-child {
  color: var(--text3);
  width: 160px;
}

.compare-table th:nth-child(2) {
  color: var(--text2);
}

.compare-table th:nth-child(3) {
  color: var(--text);
}

.compare-table td {
  padding: 14px 18px;
  font-size: 14px;
  color: var(--text2);
  vertical-align: top;
  line-height: 1.6;
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
}

.compare-table td:first-child {
  color: var(--text3);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  background: var(--bg3);
  border-left: 1px solid var(--border2);
  border-radius: 6px 0 0 6px;
  font-family: "Space Grotesk", sans-serif;
}

.compare-table td:nth-child(2) {
  background: rgba(255, 255, 255, 0.015);
}

.compare-table td:nth-child(3) {
  background: rgba(200, 168, 74, 0.06);
  color: var(--text);
  border-right: 1px solid var(--border2);
  border-radius: 0 6px 6px 0;
  box-shadow: inset 3px 0 0 rgba(200, 168, 74, 0.35);
}

/* AI PANEL - 3-col grid, no formula widget */
.ai-panel {
  margin: 44px 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.01)
  );
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.34);
}

.ai-panel-header {
  padding: 32px 36px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(0, 0, 0, 0.06)
  );
  border-bottom: 1px solid var(--border);
}

.ai-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.ai-panel-header h3 {
  font-size: 20px;
  margin: 0 0 10px;
}

.ai-panel-header > p {
  font-size: 15px;
  max-width: 100%;
  margin: 0;
  line-height: 1.7;
}

.ai-working-model {
  margin: 20px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--text2);
  letter-spacing: 0.04em;
}

.ai-working-model span {
  color: var(--gold);
}

.ai-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border2);
}

.ai-cell {
  background: var(--bg2);
  padding: 26px 24px;
}

.ai-cell.impact {
  background: linear-gradient(
    180deg,
    rgba(239, 107, 107, 0.08),
    rgba(239, 107, 107, 0.04)
  );
  border-left: 1px solid rgba(239, 107, 107, 0.22);
}

.ai-kicker {
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ai-kicker::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border2);
}

.ai-cell.impact .ai-kicker {
  color: var(--danger);
}

.ai-bullets {
  margin: 0;
  padding-left: 18px;
}

.ai-bullets li {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.6;
  margin-bottom: 8px;
}

.ai-cell.impact .ai-bullets li {
  color: rgba(255, 212, 212, 0.86);
}

.ai-bullets li:last-child {
  margin-bottom: 0;
}

.ai-foot {
  padding: 20px 28px;
  background: var(--bg3);
  border-top: 1px solid var(--border2);
  font-size: 13px;
  color: var(--text2);
  line-height: 1.65;
}

.ai-foot strong {
  color: var(--text);
  font-weight: 600;
}

/* PLATFORM COMPARISON - existing stack vs Content Intelligence */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border2);
  border-radius: 10px;
  overflow: hidden;
  margin: 44px 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.32);
}

.pc {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.005)
  );
  padding: 28px;
}

.pc.ki-side {
  background: linear-gradient(
    180deg,
    rgba(200, 168, 74, 0.12),
    rgba(200, 168, 74, 0.04)
  );
  border-top: 2px solid rgba(200, 168, 74, 0.5);
}

.pc .plat-label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 12px;
}

.pc.ki-side .plat-label {
  color: var(--gold);
}

.pc h3 {
  font-size: 15px;
  margin-bottom: 8px;
}

.pc p {
  font-size: 14px;
  margin: 0;
  max-width: 100%;
  line-height: 1.6;
}

.pc .dimension-rows {
  margin-top: 20px;
}

.dim-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--border2);
  font-size: 13px;
}

.dim-label {
  color: #9eabc0;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.dim-val {
  color: #c3ccd6;
  line-height: 1.55;
}

.pc.ki-side .dim-val {
  color: var(--text);
}

/* TACIT METHODS */
.tacit-methods {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border2);
  border-radius: 6px;
  overflow: hidden;
  margin: 32px 0;
}

.tm-item {
  background: var(--bg2);
  padding: 28px 22px;
}

.tm-num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text3);
  margin-bottom: 12px;
}

.tm-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.tm-desc {
  font-size: 12px;
  color: var(--text3);
  line-height: 1.55;
}

/* KHS SHOWCASE */
.khs-showcase {
  margin: 32px 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.008)
  );
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
}

.khs-showcase-head {
  padding: 24px 26px 20px;
  border-bottom: 1px solid var(--border2);
  background:
    radial-gradient(
      800px 220px at 0% 0%,
      rgba(103, 212, 135, 0.08),
      transparent 62%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.015),
      rgba(255, 255, 255, 0.004)
    );
}

.khs-side-label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 10px;
}

.khs-score-name {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 10px;
}

.khs-showcase-copy {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.65;
  max-width: 100%;
  margin: 0;
}

.khs-showcase-body {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.9fr);
  gap: 1px;
  background: var(--border2);
}

.khs-dim-grid {
  background: var(--bg2);
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.khs-dim-card {
  padding: 14px 14px 13px;
  border: 1px solid var(--border2);
  border-radius: 8px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.005)
  );
}

.khs-dim-card-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 7px;
}

.khs-dim-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.khs-dim-card.confidence .khs-dim-dot {
  background: #72d995;
}

.khs-dim-card.currency .khs-dim-dot {
  background: #82b9ff;
}

.khs-dim-card.usage .khs-dim-dot {
  background: #c8a84a;
}

.khs-dim-card.concentration .khs-dim-dot {
  background: #ef6b6b;
}

.khs-dim-card.alignment .khs-dim-dot {
  background: #87d9cf;
}

.khs-dim-card-name {
  font-size: 14px;
  font-weight: 650;
  color: var(--text);
  letter-spacing: 0.01em;
  margin: 0;
}

.khs-dim-card-desc {
  font-size: 12px;
  color: var(--text2);
  line-height: 1.55;
  margin: 0;
  max-width: 100%;
}

.khs-output {
  background: var(--bg3);
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
}

.khs-states {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.khs-state {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 7px;
  border: 1px solid transparent;
  font-family: "Space Grotesk", sans-serif;
}

.khs-state span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.khs-state small {
  font-size: 11px;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.72);
  text-align: right;
}

.khs-state.trust {
  background: linear-gradient(
    90deg,
    rgba(103, 212, 135, 0.28),
    rgba(103, 212, 135, 0.12)
  );
  border-color: rgba(103, 212, 135, 0.34);
  color: var(--success);
}

.khs-state.review {
  background: linear-gradient(
    90deg,
    rgba(200, 168, 74, 0.24),
    rgba(200, 168, 74, 0.1)
  );
  border-color: rgba(200, 168, 74, 0.3);
  color: var(--gold);
}

.khs-state.retire {
  background: linear-gradient(
    90deg,
    rgba(239, 107, 107, 0.3),
    rgba(239, 107, 107, 0.12)
  );
  border-color: rgba(239, 107, 107, 0.35);
  color: var(--danger);
}

.khs-output-desc {
  font-size: 12px;
  color: var(--text2);
  line-height: 1.6;
  margin: 2px 0 0;
  max-width: 100%;
}

/* STANDARD BOX - CKA three columns */
.standard-box {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  margin: 36px 0 44px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.006)
  );
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.35);
}

.standard-header {
  background:
    radial-gradient(
      900px 280px at 0% 0%,
      rgba(120, 180, 230, 0.12),
      transparent 62%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.02),
      rgba(255, 255, 255, 0.008)
    );
  padding: 34px 36px 26px;
  border-bottom: 1px solid var(--border2);
}

.standard-header h3 {
  font-size: 38px;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  font-family: "Bricolage Grotesque", sans-serif;
}

.standard-header p {
  font-size: 15px;
  max-width: 100%;
  margin: 0 0 16px;
  line-height: 1.75;
  color: var(--text2);
}

.standard-key {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.standard-key span {
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--border2);
  font-size: 11px;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text2);
  background: rgba(255, 255, 255, 0.03);
}

.standard-body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border2);
}

.std-col {
  background: var(--bg2);
  padding: 24px 22px;
  position: relative;
}

.std-col::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--col, rgba(255, 255, 255, 0.35)),
    rgba(255, 255, 255, 0)
  );
  opacity: 0.9;
}

.std-col--classification {
  --col: rgba(120, 180, 230, 0.95);
}

.std-col--measurement {
  --col: rgba(200, 168, 74, 0.95);
}

.std-col--governance {
  --col: rgba(103, 212, 135, 0.95);
}

.std-col-label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 14px;
}

.std-col--classification .std-col-label {
  color: rgba(170, 215, 255, 0.95);
}

.std-col--measurement .std-col-label {
  color: var(--gold);
}

.std-col--governance .std-col-label {
  color: var(--success);
}

.std-row {
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.std-row:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.std-row-name {
  font-size: 14px;
  font-weight: 650;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: 0.01em;
}

.std-row-desc {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.56;
}

.standard-footer {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.01),
    rgba(255, 255, 255, 0.004)
  );
  padding: 18px 26px;
  border-top: 1px solid var(--border2);
  font-size: 13px;
  color: var(--text2);
  line-height: 1.7;
}

/* KNOWLEDGE LIFECYCLE */
.lifecycle {
  margin: 44px 0;
}

.lc-track {
  display: flex;
  align-items: stretch;
  gap: 2px;
}

.lc-stage {
  flex: 1;
  background: var(--bg2);
  padding: 24px 18px;
}

.lc-stage:first-child {
  border-radius: 6px 0 0 6px;
}

.lc-stage:last-child {
  border-radius: 0 6px 6px 0;
}

.lc-stage.active {
  background: var(--bg4);
}

.lc-stage.terminal {
  background: var(--bg3);
}

.lc-num {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--bg5);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 10px;
}

.lc-stage.active .lc-num {
  color: rgba(200, 168, 74, 0.5);
}

.lc-stage-label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 6px;
}

.lc-stage-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.lc-stage-desc {
  font-size: 12px;
  color: var(--text3);
  line-height: 1.5;
}

.lc-connector {
  display: flex;
  align-items: center;
  padding: 0 4px;
  color: var(--text3);
  font-size: 14px;
  flex-shrink: 0;
  align-self: center;
}

.lc-footer {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: 0 0 6px 6px;
  padding: 16px 20px;
  font-size: 13px;
  color: var(--text2);
  margin-top: 2px;
}

/* CONFIDENCE TIERS */
.conf-tiers {
  margin: 44px 0;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.36);
}

.ct-header {
  display: grid;
  grid-template-columns: 160px 1fr 220px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--border);
}

.ct-header div {
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text3);
}

.ct-tier {
  display: grid;
  grid-template-columns: 160px 1fr 220px;
  align-items: center;
  border-bottom: 1px solid var(--border2);
}

.ct-tier:last-of-type {
  border-bottom: none;
}

.ct-left {
  background: var(--bg3);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--border2);
}

.ct-threshold {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 3px;
}

.ct-high .ct-threshold {
  color: var(--success);
}

.ct-med .ct-threshold {
  color: var(--gold);
}

.ct-low .ct-threshold {
  color: var(--danger);
}

.ct-level {
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text3);
}

.ct-bar-col {
  background: var(--bg2);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.ct-bar-track {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
  overflow: hidden;
}

.ct-bar {
  height: 100%;
  border-radius: 2px;
}

.ct-high .ct-bar {
  background: var(--success);
  width: 95%;
}

.ct-med .ct-bar {
  background: var(--gold);
  width: 72%;
}

.ct-low .ct-bar {
  background: var(--danger);
  width: 32%;
}

.ct-pct {
  font-size: 11px;
  color: var(--text3);
  width: 32px;
  text-align: right;
  flex-shrink: 0;
}

.ct-right {
  background: var(--bg3);
  padding: 22px 20px;
  border-left: 1px solid var(--border2);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ct-badge {
  display: inline-block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 6px;
}

.ct-badge-high {
  background: var(--success-dim);
  color: var(--success);
}

.ct-badge-med {
  background: rgba(200, 168, 74, 0.12);
  color: var(--gold);
}

.ct-badge-low {
  background: var(--danger-dim);
  color: var(--danger);
}

.ct-action-desc {
  font-size: 12px;
  color: var(--text3);
  line-height: 1.5;
}

.ct-note {
  padding: 14px 22px;
  font-size: 11px;
  color: var(--text3);
  background: var(--bg2);
  border-top: 1px solid var(--border2);
  font-style: italic;
}

/* CASES GRID - decision cases & barriers */
.cases-grid {
  margin: 44px 0;
  display: grid;
  gap: 14px;
}

.cases-grid--decisions,
.cases-grid--barriers {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cases-grid--decisions .case-item:last-child {
  grid-column: 1 / -1;
}

.cases-grid--failures {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.case-item {
  --case-accent: rgba(200, 168, 74, 0.8);
  position: relative;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(
      620px 180px at -10% -10%,
      rgba(255, 255, 255, 0.04),
      transparent 64%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.03),
      rgba(255, 255, 255, 0.01)
    );
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 26px 28px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease;
}

.case-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--case-accent);
  opacity: 0.92;
  z-index: 0;
}

.case-item::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -100px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--case-accent) 0%, transparent 68%);
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

.case-item > * {
  position: relative;
  z-index: 1;
}

.case-item:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.34);
}

.case-item--opportunity {
  --case-accent: rgba(103, 212, 135, 0.86);
}

.case-item--signal {
  --case-accent: rgba(107, 184, 204, 0.88);
}

.case-item--warning {
  --case-accent: rgba(224, 188, 86, 0.9);
}

.case-item--risk {
  --case-accent: rgba(239, 107, 107, 0.92);
}

.case-item--governance {
  --case-accent: rgba(127, 143, 205, 0.9);
}

.case-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.cn {
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.12em;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--case-accent);
  border-radius: 999px;
  padding: 4px 10px;
  line-height: 1.3;
  flex-shrink: 0;
}

.ctag {
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--case-accent);
}

.case-body h3 {
  font-size: 20px;
  line-height: 1.26;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: var(--text);
}

.case-body p {
  font-size: 14px;
  margin: 0;
  max-width: 100%;
  line-height: 1.68;
  color: var(--text2);
}

.case-out {
  margin-top: 18px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  font-size: 13px;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 2px solid var(--case-accent);
  line-height: 1.5;
}

/* KPI TIERS */
.kpi-tiers {
  margin: 44px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.kpi-tier {
  --tier-accent: var(--gold);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.008)
  );
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0 0 16px;
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
}

.kpi-tier--ops {
  --tier-accent: var(--success);
}

.kpi-tier--finance {
  --tier-accent: #6bb8cc;
}

.kpi-tier--health {
  --tier-accent: var(--danger);
}

.kpi-tier-header {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(
      520px 120px at 0% 0%,
      rgba(255, 255, 255, 0.03),
      transparent 66%
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.015),
      rgba(255, 255, 255, 0.005)
    );
}

.kpi-tier-header::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--tier-accent);
}

.kpi-tier-num {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: var(--tier-accent);
  opacity: 0.6;
  line-height: 1;
  flex-shrink: 0;
  letter-spacing: -0.03em;
}

.kpi-tier-name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.kpi-tier-q {
  font-size: 14px;
  color: var(--text2);
  letter-spacing: -0.005em;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  padding: 16px 16px 0;
}

.kpi-card {
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.022),
    rgba(255, 255, 255, 0.006)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 280px;
  overflow: hidden;
}

.kpi-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--tier-accent), transparent 85%);
}

.kpi-name {
  font-size: 16px;
  font-weight: 680;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1.3;
}

.kpi-desc {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.68;
  flex: 1;
}

.kpi-signal {
  margin-top: auto;
  padding: 12px 12px 11px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.012);
}

.kpi-signal--good {
  border-color: rgba(103, 212, 135, 0.34);
  background: linear-gradient(
    180deg,
    rgba(103, 212, 135, 0.16),
    rgba(103, 212, 135, 0.05)
  );
}

.kpi-signal--warn {
  border-color: rgba(224, 188, 86, 0.34);
  background: linear-gradient(
    180deg,
    rgba(224, 188, 86, 0.15),
    rgba(224, 188, 86, 0.05)
  );
}

.kpi-signal--risk {
  border-color: rgba(239, 107, 107, 0.34);
  background: linear-gradient(
    180deg,
    rgba(239, 107, 107, 0.16),
    rgba(239, 107, 107, 0.05)
  );
}

.kpi-signal-label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 6px;
}

.kpi-signal-val {
  font-size: 12px;
  color: var(--text2);
  line-height: 1.58;
}

.kpi-signal--good .kpi-signal-label {
  color: #8fe3a6;
}

.kpi-signal--warn .kpi-signal-label {
  color: #e6c86c;
}

.kpi-signal--risk .kpi-signal-label {
  color: #f19393;
}

.kpi-principle {
  margin: 34px 0 0;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  background:
    radial-gradient(
      560px 180px at 0% 0%,
      rgba(200, 168, 74, 0.15),
      transparent 68%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.02),
      rgba(255, 255, 255, 0.008)
    );
  border: 1px solid rgba(200, 168, 74, 0.28);
  border-radius: 10px;
  padding: 28px 30px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.26);
}

.kpi-principle-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(200, 168, 74, 0.48);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 12px;
  line-height: 1;
}

.kpi-principle-head {
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.kpi-principle p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.72;
  max-width: 100%;
  margin-bottom: 10px;
}

.kpi-principle p:last-child {
  margin-bottom: 0;
}

/* LEADERSHIP SHIFT CARDS */
.req-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 44px 0;
}

.req-card {
  --req-accent: var(--gold);
  position: relative;
  background:
    radial-gradient(
      620px 160px at -10% -20%,
      rgba(255, 255, 255, 0.04),
      transparent 64%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.025),
      rgba(255, 255, 255, 0.008)
    );
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px 22px;
  overflow: hidden;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
}

.req-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--req-accent), transparent 76%);
}

.req-card--asset {
  --req-accent: #6bb8cc;
}

.req-card--confidence {
  --req-accent: var(--success);
}

.req-card--trajectory {
  --req-accent: var(--gold);
}

.req-from {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 2px 8px;
  margin-bottom: 8px;
}

.req-old {
  font-size: 14px;
  color: #9ca8b8;
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

.req-arrow {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--req-accent);
  margin: 8px 0;
  line-height: 1;
}

.req-new {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.req-card p {
  font-size: 13px;
  color: var(--text2);
  max-width: 100%;
  margin: 0;
  line-height: 1.67;
}

/* CLOSING */
.closing {
  position: relative;
  background:
    radial-gradient(
      680px 230px at 0% 0%,
      rgba(200, 168, 74, 0.14),
      transparent 62%
    ),
    radial-gradient(
      620px 200px at 100% 100%,
      rgba(107, 184, 204, 0.08),
      transparent 64%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.02),
      rgba(255, 255, 255, 0.008)
    );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 66px 60px 52px;
  text-align: left;
  margin: 44px 0;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.3);
}

.section-tag--center {
  justify-content: center;
  margin-bottom: 24px;
}

.closing h2 {
  max-width: 820px;
  margin: 0 0 24px;
}

.closing p {
  max-width: 840px;
  margin: 0 0 16px;
  color: var(--text2);
  font-size: 15px;
  line-height: 1.75;
}

.closing-line {
  font-size: 19px;
  font-weight: 450;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-top: 30px;
  max-width: 840px !important;
  line-height: 1.58;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.kore-early-access {
  margin-top: 30px;
  max-width: 840px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 24px;
  background:
    radial-gradient(
      120% 140% at 0% 0%,
      rgba(37, 189, 255, 0.12),
      transparent 64%
    ),
    linear-gradient(
      140deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.02)
    );
  display: grid;
  grid-template-columns: minmax(190px, 230px) 1fr;
  gap: 18px 24px;
  align-items: center;
}

.kore-early-brand img {
  width: 100%;
  max-width: 220px;
  height: auto;
  display: block;
}

.kore-early-copy h3 {
  margin: 0 0 8px;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--text);
}

.kore-early-copy p {
  margin: 0;
  color: var(--text2);
  max-width: none;
  font-size: 14px;
  line-height: 1.65;
}

.kore-early-form {
  grid-column: 1 / -1;
  margin-top: 2px;
}

.kore-early-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 700;
}

.kore-early-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.kore-early-row input {
  flex: 1 1 260px;
  min-height: 42px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.26);
  color: var(--text2);
  padding: 10px 12px;
  font-size: 14px;
}

.kore-early-row button {
  min-height: 42px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 10px 16px;
  cursor: not-allowed;
  opacity: 0.78;
}

.kore-early-note {
  margin: 10px 0 0;
  font-size: 12px;
  color: var(--muted);
}

/* CITATION LIST */
.citation-list {
  margin-top: 44px;
  padding-top: 34px;
  border-top: 1px solid var(--border2);
}

.citation-list h3 {
  font-size: 12px;
  margin-bottom: 14px;
  color: var(--gold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.citation-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  margin-bottom: 0;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.citation-item:last-child {
  border-bottom: 0;
}

.citation-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 10px;
  color: var(--text);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200, 168, 74, 0.38);
  background: rgba(200, 168, 74, 0.12);
  margin-top: 1px;
}

.citation-text {
  font-size: 12px;
  color: var(--text2);
  line-height: 1.62;
}

.citation-text em {
  font-style: italic;
  color: #d6dfeb;
}

/* FOOTER */
footer {
  border-top: 1px solid var(--border2);
  padding: 28px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--text3);
  letter-spacing: 0.04em;
}

/* FADE-IN */
.fade-in {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

h1,
h2,
h3 {
  text-wrap: normal;
}

p,
li,
td,
th,
.citation-text,
.asset-type-desc,
.kpi-desc,
.kpi-signal-val,
.ct-action-desc,
.case-out {
  text-wrap: pretty;
}

.citation-text,
.case-body p,
.kpi-desc,
.kpi-signal-val,
.asset-col > p,
.asset-type-desc,
.compare-table td,
.ai-bullets li {
  overflow-wrap: anywhere;
  word-break: normal;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero,
  .sw {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero {
    padding-bottom: 48px;
  }

  .asset-grid,
  .standard-body,
  .stat-row,
  .kpi-grid,
  .conv-stats,
  .evidence-strip,
  .volatility-grid {
    grid-template-columns: 1fr;
  }

  .ai-grid,
  .tacit-methods,
  .req-grid {
    grid-template-columns: 1fr;
  }

  .lc-track {
    flex-direction: column;
  }

  .lc-stage:first-child {
    border-radius: 6px 6px 0 0;
  }

  .lc-stage:last-child {
    border-radius: 0 0 6px 6px;
  }

  .lc-connector {
    display: none;
  }

  .case-item {
    padding: 20px 22px;
  }

  .cases-grid--decisions,
  .cases-grid--barriers,
  .cases-grid--failures {
    grid-template-columns: 1fr;
  }

  .cases-grid--decisions .case-item:last-child {
    grid-column: auto;
  }

  .khs-showcase-body,
  .khs-radar-card {
    grid-template-columns: 1fr;
  }

  .khs-dim-grid {
    grid-template-columns: 1fr;
  }

  .closing {
    padding: 40px 24px;
  }

  .kore-early-access {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .kore-early-brand img {
    max-width: 200px;
  }

  .kore-early-row button {
    width: 100%;
  }

  .kpi-card {
    min-height: 0;
  }

  .kpi-principle {
    flex-direction: column;
    gap: 14px;
    padding: 24px;
  }

  .req-new {
    font-size: 19px;
  }

  .div-full {
    width: calc(100% - 48px);
  }

  footer {
    flex-direction: column;
    gap: 12px;
    padding: 24px;
  }

  .ct-tier {
    grid-template-columns: 1fr;
  }

  .ct-header {
    display: none;
  }

  nav {
    padding: 0 24px;
  }

  .nav-links {
    display: none;
  }

  .platform-grid {
    grid-template-columns: 1fr;
  }

  .hero-statement {
    margin: 0 0 28px;
  }
}

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

  .hero-meta {
    flex-direction: column;
    gap: 20px;
  }

  .khs-radar-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fade-in {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

/* ── ANIMATED SECTION DIVIDERS ──────────────────────────────── */
.div-full {
  position: relative;
  overflow: hidden;
  width: calc(100% - 160px);
  max-width: 920px;
  height: 1px;
  background: var(--border2);
  margin: 0 auto;
}

.div-full::after {
  content: "";
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--gold) 50%,
    transparent 100%
  );
  opacity: 0;
  transition: none;
}

.div-full.pulse-active::after {
  animation: divPulse 1.1s ease forwards;
}

@keyframes divPulse {
  0% {
    left: -100%;
    opacity: 0;
  }

  20% {
    opacity: 0.7;
  }

  100% {
    left: 100%;
    opacity: 0;
  }
}

/* ── HERO TITLE CHARACTER REVEAL ────────────────────────────── */
.hero-title-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.hero-title-word span {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  animation: charReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes charReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── AI FORMULA BLOCK ───────────────────────────────────────── */
.ai-formula {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0 0;
  padding: 20px 24px;
  background: rgba(0, 0, 0, 0.32);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.af-term {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 16px;
  border-radius: 4px;
  border: 1px solid var(--border2);
  background: var(--bg2);
  font-family: "Space Grotesk", sans-serif;
}

.af-term.known {
  border-color: var(--success-dim);
  background: rgba(103, 212, 135, 0.08);
}

.af-term.missing {
  border-color: var(--danger-dim);
  background: rgba(239, 107, 107, 0.09);
}

.af-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text3);
}

.af-term.known .af-label {
  color: var(--success);
}

.af-term.missing .af-label {
  color: var(--danger);
}

.af-value {
  font-size: 13px;
  font-weight: 700;
  color: var(--text2);
  line-height: 1.3;
  text-align: center;
}

.af-term.known .af-value {
  color: #d9f3e2;
}

.af-term.missing .af-value {
  color: #ffd8d8;
}

.af-op {
  font-size: 18px;
  color: var(--text3);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 300;
}

.af-eq {
  font-size: 18px;
  color: var(--gold);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

/* ── KNOWLEDGE DECAY CURVE ──────────────────────────────────── */
.viz-decay {
  margin: 44px 0;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}

.viz-decay-header {
  padding: 20px 28px 16px;
  border-bottom: 1px solid var(--border2);
}

.viz-label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.viz-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.viz-decay svg {
  display: block;
  width: 100%;
  height: 200px;
}

.decay-path {
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  transition: stroke-dashoffset 1.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.decay-path.animated {
  stroke-dashoffset: 0;
}

.viz-decay-footer {
  padding: 12px 28px;
  font-size: 12px;
  color: var(--text3);
  border-top: 1px solid var(--border2);
  font-style: italic;
}

/* ── TACIT RISK HEAT MAP ────────────────────────────────────── */
.viz-heatmap {
  margin: 44px 0;
}

.viz-heatmap-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.hm-grid {
  display: grid;
  grid-template-columns: 80px repeat(5, 1fr);
  gap: 3px;
}

.hm-cell {
  height: 48px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
  transform: scale(0.85);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.hm-cell.visible {
  opacity: 1;
  transform: scale(1);
}

.hm-axis-label {
  display: flex;
  align-items: center;
  font-size: 10px;
  color: var(--text3);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  justify-content: flex-end;
  padding-right: 8px;
  text-align: right;
  line-height: 1.3;
}

.hm-col-header {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  font-size: 10px;
  color: var(--text3);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
}

.hm-low {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text3);
}

.hm-med {
  background: rgba(200, 168, 74, 0.15);
  color: var(--gold);
}

.hm-high {
  background: rgba(200, 168, 74, 0.42);
  color: #fff;
}

.hm-crit {
  background: rgba(200, 80, 60, 0.45);
  color: #ffccc4;
}

.hm-legend {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}

.hm-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text3);
}

.hm-legend-swatch {
  width: 12px;
  height: 12px;
  border-radius: 2px;
}

/* ── LESSONS-LEARNED FAILURE DIAGRAM ───────────────────────── */
.viz-lessons {
  margin: 32px 0;
  background:
    radial-gradient(
      560px 160px at 0% 0%,
      rgba(239, 107, 107, 0.08),
      transparent 68%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.022),
      rgba(255, 255, 255, 0.007)
    );
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.28);
}

.viz-lessons--spaced {
  margin-top: 44px;
}

.viz-lessons-head {
  padding: 20px 28px 16px;
  border-bottom: 1px solid var(--border2);
}

.viz-lessons-head .viz-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.viz-lessons-body {
  display: flex;
  align-items: center;
  padding: 30px 30px;
  gap: 12px;
}

.ll-step {
  flex: 1;
  text-align: left;
  padding: 16px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.028),
    rgba(255, 255, 255, 0.01)
  );
}

.ll-step.broken {
  border-color: rgba(239, 107, 107, 0.44);
  background: linear-gradient(
    180deg,
    rgba(239, 107, 107, 0.16),
    rgba(239, 107, 107, 0.05)
  );
}

.ll-step-num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--text2);
  letter-spacing: 0.12em;
  line-height: 1;
  margin-bottom: 7px;
}

.ll-step.broken .ll-step-num {
  color: rgba(255, 177, 177, 0.85);
}

.ll-step-name {
  font-size: 16px;
  font-weight: 640;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.ll-step.broken .ll-step-name {
  color: #ffd4d4;
}

.ll-step-desc {
  font-size: 12px;
  color: var(--text2);
  line-height: 1.55;
}

.ll-arrow {
  width: 44px;
  flex-shrink: 0;
  text-align: center;
  position: relative;
}

.ll-arrow svg {
  display: block;
  margin: 0 auto;
}

.ll-arrow.broken-link svg .link-line {
  stroke: rgba(200, 80, 60, 0.6);
  stroke-dasharray: 5 4;
}

.viz-lessons-footer {
  padding: 14px 24px;
  font-size: 12px;
  color: #f0b1b1;
  border-top: 1px solid rgba(239, 107, 107, 0.24);
  font-style: italic;
  background: rgba(239, 107, 107, 0.08);
  line-height: 1.55;
}

/* ── KHS RADAR CHART ────────────────────────────────────────── */
.khs-radar-card {
  display: grid;
  grid-template-columns: minmax(0, 380px) minmax(0, 1fr);
  gap: 1px;
  margin: 12px 0 44px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  overflow: hidden;
  background: var(--border2);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
}

.khs-radar-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 10px 16px;
  background: var(--bg2);
}

.khs-radar-svg {
  display: block;
  width: 100%;
  max-width: 360px;
  height: auto;
}

.khs-radar-meta {
  background: var(--bg3);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.khs-radar-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.khs-radar-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 10px;
  border: 1px solid var(--border2);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.03);
  gap: 10px;
}

.khs-radar-item span {
  font-size: 11px;
  color: var(--text2);
  letter-spacing: 0.02em;
}

.khs-radar-item strong {
  font-size: 12px;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.khs-radar-note {
  font-size: 12px;
  color: var(--text2);
  line-height: 1.6;
  margin: 2px 0 0;
  max-width: 100%;
}

.radar-polygon {
  transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── CKA ATTRIBUTE WHEEL ────────────────────────────────────── */
.cka-wheel-wrap {
  display: grid;
  grid-template-columns: minmax(0, 460px) minmax(0, 1fr);
  gap: 18px;
  margin: 44px 0 18px;
  align-items: stretch;
}

.cka-wheel-svg-container {
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  background:
    radial-gradient(
      700px 260px at 0% 0%,
      rgba(200, 168, 74, 0.1),
      transparent 62%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.02),
      rgba(255, 255, 255, 0.006)
    );
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
  padding: 16px 16px 14px;
}

.cka-viz-label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

#ckaWheel {
  width: 100%;
  height: auto;
  display: block;
}

#ckaWheel .cka-seg {
  transition:
    stroke 0.22s ease,
    filter 0.22s ease;
  filter: url(#wheelGlow);
}

#ckaWheel .cka-axis-guide {
  stroke: rgba(255, 255, 255, 0.2);
  stroke-width: 1;
}

#ckaWheel .cka-axis-label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  fill: rgba(205, 216, 232, 0.82);
}

#ckaWheel .cka-core-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  fill: rgba(200, 168, 74, 0.92);
}

#ckaWheel .cka-core-sub {
  font-family: "Space Grotesk", sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  fill: rgba(255, 255, 255, 0.42);
}

.cka-viz-note {
  font-size: 12px;
  color: var(--text2);
  line-height: 1.55;
  margin: 4px 4px 2px;
  max-width: 100%;
}

.cka-wheel-legend {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  align-content: start;
}

.cka-legend-item {
  --seg: rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 8px;
  border: 1px solid var(--border2);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.005)
  );
  cursor: default;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
  position: relative;
  overflow: hidden;
}

.cka-legend-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--seg);
  opacity: 0.8;
}

.cka-legend-item:hover,
.cka-legend-item.is-active {
  transform: translateX(2px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.32);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.01)
  );
}

.cka-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--seg);
}

.cka-legend-name {
  font-size: 13px;
  font-weight: 650;
  color: var(--text);
  margin-bottom: 2px;
  letter-spacing: 0.01em;
}

.cka-legend-desc {
  font-size: 12px;
  color: var(--text2);
  line-height: 1.5;
}

/* ── KPI TIER HOVER PULSE ───────────────────────────────────── */
.kpi-tier-header {
  transition: background 0.3s ease;
}

.kpi-tier:hover .kpi-tier-header::before {
  animation: tierPulse 1s ease infinite;
}

@keyframes tierPulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

/* ── COMPARE TABLE DIRECTION INDICATOR ──────────────────────── */
.compare-table .ki-col-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
}

.compare-table thead th:nth-child(3) {
  color: var(--gold);
}

/* ── DECISION CASES ARC CONNECTOR ───────────────────────────── */
.cases-grid {
  position: relative;
}

.cases-arc-svg {
  position: absolute;
  left: 10px;
  top: 0;
  height: 100%;
  width: 24px;
  pointer-events: none;
  overflow: visible;
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .div-full {
    width: calc(100% - 48px);
  }

  .hm-grid {
    grid-template-columns: 60px repeat(5, 1fr);
  }

  .viz-lessons-body {
    flex-direction: column;
    align-items: stretch;
  }

  .ll-arrow {
    width: 100%;
    height: 28px;
    transform: rotate(90deg);
  }

  .cka-wheel-wrap {
    grid-template-columns: 1fr;
  }

  .cka-wheel-svg-container {
    max-width: 560px;
    width: 100%;
    margin: 0 auto;
  }
}

/* ═══════════════════════════════════════════════════════════════
       DESIGN UPGRADE SPRINT — visual component replacements
       ═══════════════════════════════════════════════════════════════ */

/* ── OPENING BLOCK: atmospheric grid overlay ────────────────── */
.opening-block {
  position: relative;
  overflow: hidden;
}
.opening-grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(
    ellipse 80% 70% at 50% 20%,
    #000 40%,
    transparent 100%
  );
  opacity: 0.5;
}
.opening-block > * {
  position: relative;
  z-index: 1;
}

/* ── LEADERSHIP SHIFT CARDS: icon zone + split visual ───────── */
.req-card {
  padding: 0 !important;
  display: flex;
  flex-direction: column;
}
.req-icon-zone {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 22px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.025) 0%,
    rgba(0, 0, 0, 0.18) 100%
  );
  overflow: hidden;
  flex-shrink: 0;
}
.req-icon-zone::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 110%,
    var(--req-accent-rgb, rgba(200, 168, 74, 0.18)),
    transparent 65%
  );
}
.req-icon-ring {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.req-icon-ring::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.06);
}
.req-icon {
  width: 30px;
  height: 30px;
  color: var(--req-accent);
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 10px var(--req-accent));
  opacity: 0.9;
}
.req-card--asset {
  --req-accent-rgb: rgba(107, 184, 204, 0.2);
}
.req-card--confidence {
  --req-accent-rgb: rgba(103, 212, 135, 0.18);
}
.req-card--trajectory {
  --req-accent-rgb: rgba(200, 168, 74, 0.18);
}

.req-before-zone {
  padding: 16px 22px 12px;
  background: rgba(0, 0, 0, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.req-after-zone {
  padding: 14px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.req-after-zone p {
  font-size: 13px;
  color: var(--text2);
  max-width: 100%;
  margin: 0;
  line-height: 1.67;
}
.req-arrow {
  margin: 0 22px;
  width: auto !important;
  height: auto !important;
  border-radius: 0 !important;
  border: none !important;
  font-size: 9px !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: var(--req-accent) !important;
  display: flex !important;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
}
.req-arrow::before,
.req-arrow::after {
  content: "";
  flex: 1;
  height: 1px;
}
.req-arrow::before {
  background: linear-gradient(90deg, transparent, var(--req-accent));
  opacity: 0.35;
}
.req-arrow::after {
  background: linear-gradient(90deg, var(--req-accent), transparent);
  opacity: 0.35;
}

/* ── CASE ITEMS: lucide icon in header ──────────────────────── */
.case-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  flex-shrink: 0;
  margin-left: auto;
}
.case-icon .lucide {
  width: 15px;
  height: 15px;
  color: var(--case-accent);
  opacity: 0.9;
}
.case-out-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--case-accent);
  opacity: 0.25;
  margin-right: 6px;
  flex-shrink: 0;
  vertical-align: middle;
  align-items: center;
  justify-content: center;
  position: relative;
  top: -1px;
}
.case-out-icon::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--case-accent);
  opacity: 2.5;
}

/* ── KPI SIGNAL: mini bar visualizer ────────────────────────── */
.kpi-signal-bars {
  display: flex;
  gap: 3px;
  margin-bottom: 8px;
}
.kpi-signal-bar {
  flex: 1;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.1);
  transition:
    background 0.4s ease,
    transform 0.4s ease;
  transform-origin: bottom;
}
.kpi-signal--good .kpi-signal-bar:nth-child(-n + 4) {
  background: rgba(103, 212, 135, 0.7);
}
.kpi-signal--warn .kpi-signal-bar:nth-child(-n + 3) {
  background: rgba(224, 188, 86, 0.7);
}
.kpi-signal--risk .kpi-signal-bar:nth-child(-n + 2) {
  background: rgba(239, 107, 107, 0.7);
}

/* ── FRAMEWORK STD-ROWS: attribute color badges ─────────────── */
.std-row {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 10px;
  align-items: start;
}
.std-row-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 4px;
  flex-shrink: 0;
  box-shadow: 0 0 6px currentColor;
}
.std-row-text {
  display: flex;
  flex-direction: column;
}

/* ── BARRIER CARDS: severity meter visual ───────────────────── */
.barrier-severity {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
}
.barrier-severity-pips {
  display: flex;
  gap: 3px;
}
.barrier-pip {
  width: 20px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.1);
}
.barrier-pip.lit {
  background: var(--case-accent);
  box-shadow: 0 0 4px var(--case-accent);
}
.barrier-severity-label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--case-accent);
  opacity: 0.8;
}

/* ── REQ-CARD: keep card height balanced ────────────────────── */
@media (max-width: 860px) {
  .req-icon-zone {
    padding: 22px 18px 18px;
  }
  .req-before-zone {
    padding: 14px 18px 10px;
  }
  .req-after-zone {
    padding: 12px 18px 18px;
  }
  .req-arrow {
    margin: 0 18px;
  }
}

/* ═══════════════════════════════════════════════════════════════
       STRUCTURAL REDESIGNS — Decisions + Measurement
       ═══════════════════════════════════════════════════════════════ */

/* ── DECISION CASES: horizontal sidebar rows ────────────────── */
/* Replaces the mismatched 2-column card grid with a consistent
       numbered-row layout: [sidebar: number + icon] | [content]     */
.cases-grid--decisions {
  grid-template-columns: 1fr !important;
  gap: 3px !important;
  margin: 44px 0;
}
.cases-grid--decisions .case-item:last-child {
  grid-column: 1 !important;
}
.cases-grid--decisions .case-item {
  display: grid !important;
  grid-template-columns: 148px 1fr;
  align-items: stretch;
  padding: 0 !important;
  border-radius: 8px;
  min-height: unset;
  overflow: hidden;
}
/* Remove the tall decorative orb — unnecessary in row layout */
.cases-grid--decisions .case-item::after {
  display: none;
}
/* Restore the left-edge accent as a 3px strip on the sidebar */
.cases-grid--decisions .case-item::before {
  top: 0;
  bottom: 0;
  width: 3px;
  height: auto;
  border-radius: 0;
}
.cases-grid--decisions .case-header {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 0;
  padding: 28px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.18);
  text-align: center;
}
.cases-grid--decisions .cn {
  font-size: 28px !important;
  font-weight: 800;
  letter-spacing: -0.03em;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
  border-radius: 0 !important;
  line-height: 1;
  color: var(--text);
}
.cases-grid--decisions .ctag {
  font-size: 9px;
  text-align: center;
  line-height: 1.4;
}
.cases-grid--decisions .case-icon {
  margin-left: 0;
  background: rgba(255, 255, 255, 0.04);
}
.cases-grid--decisions .case-body {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cases-grid--decisions .case-body h3 {
  font-size: 17px;
  margin-bottom: 8px;
}
.cases-grid--decisions .case-body p {
  font-size: 13.5px;
  line-height: 1.65;
  margin: 0 0 14px;
}
.cases-grid--decisions .case-out {
  margin-top: 0;
}

/* ── KPI GRID: 2-column, consistent height, signal badges ───── */
/* Replaces the 3-column auto-fit layout that produced mismatched
       card heights with a fixed 2-column grid + start alignment     */
.kpi-grid {
  grid-template-columns: repeat(2, 1fr) !important;
  align-items: start !important;
}
/* Force kpi-name to a consistent min-height so title wrap
       doesn't shift card content start positions */
.kpi-name {
  min-height: 2.8em;
  display: flex;
  align-items: flex-start;
}
/* Signal type badge — colored pill above the bars */
.kpi-signal {
  gap: 0;
}
.kpi-signal-type {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 8px 3px 6px;
  border-radius: 999px;
  margin-bottom: 8px;
  width: fit-content;
}
.kpi-signal-type::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.kpi-signal--good .kpi-signal-type {
  color: #8fe3a6;
  background: rgba(103, 212, 135, 0.12);
  border: 1px solid rgba(103, 212, 135, 0.25);
}
.kpi-signal--good .kpi-signal-type::before {
  background: #67d487;
}

.kpi-signal--warn .kpi-signal-type {
  color: #e6c86c;
  background: rgba(224, 188, 86, 0.12);
  border: 1px solid rgba(224, 188, 86, 0.25);
}
.kpi-signal--warn .kpi-signal-type::before {
  background: #e0bc56;
}

.kpi-signal--risk .kpi-signal-type {
  color: #f19393;
  background: rgba(239, 107, 107, 0.12);
  border: 1px solid rgba(239, 107, 107, 0.25);
}
.kpi-signal--risk .kpi-signal-type::before {
  background: #ef6b6b;
}

/* Responsive overrides */
@media (max-width: 860px) {
  .cases-grid--decisions .case-item {
    grid-template-columns: 100px 1fr;
  }
  .cases-grid--decisions .case-header {
    padding: 20px 10px;
  }
  .cases-grid--decisions .case-body {
    padding: 18px 18px;
  }
  .cases-grid--decisions .cn {
    font-size: 22px !important;
  }
}
@media (max-width: 600px) {
  .cases-grid--decisions .case-item {
    grid-template-columns: 1fr !important;
  }
  .cases-grid--decisions .case-header {
    flex-direction: row;
    justify-content: flex-start;
    padding: 14px 16px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .kpi-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Homepage chapter navigation cards */
.chapter-grid {
  margin-top: 24px;
}

.chapter-link {
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    border-color 0.15s ease;
}

.chapter-link:hover,
.chapter-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(200, 168, 74, 0.36);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
  outline: none;
}

/* Utility classes replacing legacy inline styles */
.section-heading-spaced {
  margin-top: 52px;
  margin-bottom: 16px;
}

.section-heading-tight {
  margin-top: 52px;
  margin-bottom: 14px;
}

.section-heading-tight-44 {
  margin-top: 44px;
  margin-bottom: 14px;
}

.section-heading-compact {
  margin-top: 44px;
  margin-bottom: 8px;
}

.content-intel-note {
  margin-top: 12px;
  margin-bottom: 44px;
  font-size: 13px;
  color: var(--text3);
}

.lifecycle-intro {
  margin-bottom: 24px;
}

.viz-decay-svg {
  height: 200px;
}

.decay-delay-1 {
  transition-delay: 0.9s;
}

.decay-delay-2 {
  transition-delay: 1.2s;
}

.decay-delay-3 {
  transition-delay: 1.5s;
}

.volatility-copy {
  font-size: 14px;
  line-height: 1.7;
  max-width: 100%;
  margin: 0;
}

.viz-title-compact {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.heatmap-intro {
  font-size: 13px;
  color: var(--text3);
  max-width: 100%;
  margin: 0 0 16px;
}

.hm-cell-spacer {
  height: 28px;
  background: transparent;
}

.hm-legend-swatch-critical {
  background: rgba(200, 80, 60, 0.45);
}

.hm-legend-swatch-high {
  background: rgba(200, 168, 74, 0.42);
}

.hm-legend-swatch-moderate {
  background: rgba(200, 168, 74, 0.15);
}

.hm-legend-swatch-low {
  background: rgba(255, 255, 255, 0.04);
}

.jt-progress.seg-a {
  --seg-color: #ffac3f;
  --seg-length: 430;
}

.jt-progress.seg-b {
  --seg-color: #8d85ff;
  --seg-length: 430;
}

.cka-legend-item-1 {
  --seg: #c8a84a;
}

.cka-legend-item-2 {
  --seg: #b79657;
}

.cka-legend-item-3 {
  --seg: #a4a567;
}

.cka-legend-item-4 {
  --seg: #78a079;
}

.cka-legend-item-5 {
  --seg: #67d487;
}

.cka-legend-item-6 {
  --seg: #6bb8cc;
}

.cka-legend-item-7 {
  --seg: #7f8fcd;
}

.cka-legend-item-8 {
  --seg: #d39a63;
}

.std-dot-1 {
  background: #c8a84a;
  color: #c8a84a;
}

.std-dot-2 {
  background: #b79657;
  color: #b79657;
}

.std-dot-3 {
  background: #a4a567;
  color: #a4a567;
}

.std-dot-4 {
  background: #78a079;
  color: #78a079;
}

.std-dot-5 {
  background: #67d487;
  color: #67d487;
}

.std-dot-6 {
  background: #6bb8cc;
  color: #6bb8cc;
}

.std-dot-7 {
  background: #7f8fcd;
  color: #7f8fcd;
}

.std-dot-8 {
  background: #d39a63;
  color: #d39a63;
}

/* Landing page redesign (home only) */
body.home-landing {
  --home-text: #f0f0f0;
  --home-sub: #b5bec9;
  --home-accent: #c8a84a;
  --home-line: rgba(255, 255, 255, 0.09);
  --home-line-strong: rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(900px 340px at 50% 0%, rgba(200, 168, 74, 0.08), transparent 66%),
    linear-gradient(180deg, #060606 0%, #080808 100%);
  color: var(--home-text);
}

body.home-landing nav {
  height: 60px;
  padding: 0 28px;
  background: rgba(8, 8, 8, 0.96);
  border-bottom: 1px solid var(--home-line);
  backdrop-filter: blur(12px);
}

body.home-landing .nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

body.home-landing .nav-icon {
  width: 18px;
  height: 18px;
  display: block;
  opacity: 0.95;
}

body.home-landing .home-wordmark {
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--home-text);
}

body.home-landing .nav-links {
  align-items: center;
  gap: 16px;
}

body.home-landing .nav-links a {
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  color: rgba(240, 240, 240, 0.86);
}

body.home-landing .nav-links a:hover {
  color: var(--home-text);
}

body.home-landing .nav-links .nav-cta {
  color: var(--home-text);
  border: 1px solid rgba(200, 168, 74, 0.4);
  border-radius: 8px;
  background: linear-gradient(180deg, #202020 0%, #151515 100%);
  padding: 6px 10px;
}

body.home-landing .lp-main {
  padding-top: 60px;
}

body.home-landing .lp-shell {
  width: min(980px, calc(100% - 34px));
  margin: 0 auto;
}

body.home-landing .lp-hero {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  display: grid;
  place-items: center;
  text-align: center;
  border-bottom: 1px solid var(--home-line);
  background:
    linear-gradient(
      180deg,
      rgba(6, 6, 6, 0.76) 0%,
      rgba(6, 6, 6, 0.62) 42%,
      rgba(6, 6, 6, 0.8) 100%
    ),
    url("/assets/images/iceberg.png");
  background-size: cover;
  background-position: center 34%;
  background-repeat: no-repeat;
}

body.home-landing .lp-hero .lp-shell {
  position: relative;
  z-index: 1;
}

body.home-landing .lp-hero h1 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 14px;
}

body.home-landing .lp-hero h1 span {
  color: var(--home-accent);
}

body.home-landing .lp-sub {
  font-size: 15px;
  color: var(--home-sub);
  line-height: 1.5;
  margin: 0 auto 18px;
  max-width: 640px;
}

body.home-landing .lp-actions {
  display: flex;
  justify-content: center;
}

body.home-landing .lp-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--home-text);
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  background: linear-gradient(180deg, #232323 0%, #181818 100%);
  border: 1px solid rgba(200, 168, 74, 0.45);
  border-radius: 9px;
  padding: 8px 13px;
  transition: border-color 0.2s ease, filter 0.2s ease;
}

body.home-landing .lp-button:hover {
  border-color: rgba(200, 168, 74, 0.62);
  filter: brightness(1.05);
}

body.home-landing .lp-button i {
  width: 13px;
  height: 13px;
}

body.home-landing .lp-meta {
  margin: 10px 0 0;
  font-size: 10px;
  color: rgba(181, 190, 201, 0.9);
}

body.home-landing .lp-stats {
  border-bottom: 1px solid var(--home-line);
}

body.home-landing .lp-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

body.home-landing .lp-stat {
  padding: 24px 16px 20px;
  text-align: center;
}

body.home-landing .lp-stat + .lp-stat {
  border-left: 1px solid var(--home-line);
}

body.home-landing .lp-stat-value {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(42px, 4.6vw, 62px);
  line-height: 1;
  margin-bottom: 8px;
  color: var(--home-accent);
}

body.home-landing .lp-stat p {
  margin: 0 auto;
  max-width: 360px;
  font-size: 14px;
  color: var(--home-sub);
  line-height: 1.45;
}

body.home-landing .lp-delivers {
  padding: 38px 0 34px;
  border-bottom: 1px solid var(--home-line);
}

body.home-landing .lp-delivers h2 {
  text-align: center;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(26px, 2.7vw, 36px);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

body.home-landing .lp-deliver-line {
  width: 86px;
  height: 1px;
  margin: 0 auto 24px;
  background: rgba(200, 168, 74, 0.65);
}

body.home-landing .lp-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.home-landing .lp-pillar {
  text-align: center;
  padding: 8px 24px 14px;
  position: relative;
}

body.home-landing .lp-pillar + .lp-pillar {
  border-left: 1px solid var(--home-line);
}

body.home-landing .lp-pillar i {
  color: var(--home-accent);
  width: 20px;
  height: 20px;
  margin-bottom: 9px;
}

body.home-landing .lp-pillar h3 {
  font-size: 21px;
  margin-bottom: 4px;
}

body.home-landing .lp-pillar p {
  font-size: 13px;
  margin: 0 auto;
  color: var(--home-sub);
  line-height: 1.45;
  max-width: 260px;
}

body.home-landing .lp-pillar::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 70px;
  height: 1px;
  background: rgba(200, 168, 74, 0.6);
}

body.home-landing .lp-chapters {
  padding: 28px 0 34px;
}

body.home-landing .lp-chapters h2 {
  text-align: center;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(24px, 2.4vw, 32px);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

body.home-landing .lp-chapters-sub {
  margin: 0 auto 14px;
  max-width: 680px;
  text-align: center;
  font-size: 13px;
  color: var(--home-sub);
  line-height: 1.45;
}

body.home-landing .chapter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  padding-top: 6px;
  border-top: 1px solid var(--home-line);
}

body.home-landing .chapter-chip {
  text-decoration: none;
  color: var(--home-sub);
  font-size: 12px;
  border: 1px solid var(--home-line);
  border-radius: 999px;
  padding: 6px 11px;
  transition: border-color 0.2s ease, color 0.2s ease;
}

body.home-landing .chapter-chip:hover {
  color: var(--home-text);
  border-color: rgba(200, 168, 74, 0.36);
  background: rgba(200, 168, 74, 0.06);
}

body.home-landing footer {
  border-top: 1px solid var(--home-line);
  padding: 12px 28px;
  font-size: 10px;
  color: var(--home-sub);
}

@media (max-width: 900px) {
  body.home-landing nav {
    height: auto;
    min-height: 54px;
    padding: 8px 10px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
  }

  body.home-landing .nav-links {
    gap: 8px;
  }

  body.home-landing .nav-links a {
    font-size: 10px;
  }

  body.home-landing .lp-main {
    padding-top: 74px;
  }

  body.home-landing .lp-shell {
    width: calc(100% - 20px);
  }

  body.home-landing .lp-hero {
    min-height: 360px;
  }

  body.home-landing .lp-hero h1 {
    font-size: clamp(27px, 7vw, 38px);
  }

  body.home-landing .lp-sub {
    font-size: 12px;
    max-width: 420px;
  }

  body.home-landing .lp-stats-grid,
  body.home-landing .lp-pillars {
    grid-template-columns: 1fr;
  }

  body.home-landing .lp-stat + .lp-stat,
  body.home-landing .lp-pillar + .lp-pillar {
    border-left: 0;
    border-top: 1px solid var(--home-line);
  }

  body.home-landing .lp-pillar {
    padding: 12px 12px 14px;
  }

  body.home-landing .lp-pillar h3 {
    font-size: 15px;
  }

  body.home-landing .lp-pillar p {
    font-size: 12px;
    max-width: 320px;
  }

  body.home-landing .lp-chapters h2 {
    font-size: clamp(20px, 5vw, 26px);
  }

  body.home-landing .lp-chapters-sub {
    font-size: 12px;
    max-width: 420px;
  }

  body.home-landing footer {
    padding: 10px;
    font-size: 9px;
  }
}
