/* ====================================================================
   settr — Intelligence page styles
   Builds on hero.css / sections.css tokens. Page-specific layouts only.
   Shares vocabulary with Managed Service page where it makes sense.
   ==================================================================== */

/* ====================================================================
   Common: section heads (same shape used across most sections here)
   ==================================================================== */
.int-head{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
}
.int-head .left{ display: flex; flex-direction: column; gap: 16px; }
.int-head .right{ display: flex; flex-direction: column; gap: 14px; padding-bottom: 6px; }
.int-headline{
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(40px, 4.4vw, 60px);
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin: 0;
  color: var(--fg);
}
.int-headline .em{ font: inherit; color: inherit; }
.int-lede{
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 52ch;
  margin: 0;
}
.int-lede strong{ color: var(--fg); font-weight: 500; }
.int-meta{
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--faint);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px;
}
.int-meta::before{
  content:""; width: 18px; height: 1px; background: var(--ghost);
}

/* dark-section overrides for the shared heads */
.dark-slab .int-headline{ color: #FAFAF8; }
.dark-slab .int-lede{ color: rgba(250,250,248,0.66); }
.dark-slab .int-lede strong{ color: #FAFAF8; }
.dark-slab .int-meta{ color: rgba(250,250,248,0.62); }
.dark-slab .int-meta::before{ background: rgba(250,250,248,0.24); }
.dark-slab .eyebrow .eb-num,
.dark-slab .eyebrow .eb-label,
.dark-slab .eyebrow .eb-arr{ color: rgba(250,250,248,0.62); }
.dark-slab .eyebrow .eb-num{ color: #FAFAF8; }

/* ====================================================================
   SECTION 1 — HERO (full-width editorial; no side visual)
   ==================================================================== */
.int-hero{
  padding: 64px 0 72px;
  border-bottom: 1px solid var(--line);
}

.int-hero-top{
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 44px;
}
.int-hero-top .headline{
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(52px, 6.2vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.028em;
  margin: 0;
  color: var(--fg);
  text-wrap: balance;
  max-width: none;
}
.int-hero-top .headline .em{ font: inherit; color: inherit; }

.int-hero-body{
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 1fr);
  gap: 40px 56px;
  align-items: start;
}
.int-hero .subhead{
  font-size: 17px;
  line-height: 1.58;
  color: var(--muted);
  max-width: 38ch;
  margin: 0;
  padding-top: 4px;
}
.int-hero .subhead strong{ color: var(--fg); font-weight: 500; }

.int-hero-pillars{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  overflow: hidden;
  background: var(--surface);
}
.int-hero-pillar{
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 24px 24px;
  border-right: 1px solid var(--line);
  min-width: 0;
}
.int-hero-pillar.last{ border-right: 0; }
.int-hero-pillar .pillar-num{
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--faint);
  letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
}
.int-hero-pillar .pillar-k{
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--state-pos);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.int-hero-pillar .pillar-t{
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.014em;
  color: var(--fg);
  line-height: 1.2;
}
.int-hero-pillar .pillar-c{
  margin: 4px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}
.int-hero-pillar .pillar-c strong{ color: var(--fg); font-weight: 500; }

.int-hero-foot{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px 32px;
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.int-hero-foot .cta-row{ margin: 0; }
.int-hero-stamp{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}
.int-hero-stamp .stamp-dot{
  width: 8px;
  height: 8px;
  border-radius: 1px;
  background: var(--state-pos);
  flex-shrink: 0;
}

/* ====================================================================
   SECTION 2 — COMPARE (Reporting vs Intelligence)
   ==================================================================== */
.cmp-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  background: var(--surface);
  overflow: hidden;
}
.cmp-col{
  padding: 30px 30px 32px;
  display: flex; flex-direction: column;
  gap: 18px;
  min-width: 0;
  border-right: 1px solid var(--line);
  position: relative;
}
.cmp-col:last-child{ border-right: 0; }
.cmp-col.dark{
  background: #161614;
  color: #FAFAF8;
}
.cmp-tag{
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
}
.cmp-col.dark .cmp-tag{ color: rgba(250,250,248,0.62); }
.cmp-tag .id{
  background: var(--canvas-tint);
  color: var(--muted);
  padding: 2px 7px;
  border-radius: var(--r-badge);
  letter-spacing: 0.04em;
}
.cmp-col.dark .cmp-tag .id{ background: rgba(250,250,248,0.10); color: #FAFAF8; }

.cmp-q{
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 26px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--fg);
  margin: 0;
  text-wrap: balance;
}
.cmp-col.dark .cmp-q{ color: #FAFAF8; }

.cmp-list{
  list-style: none; padding: 0; margin: 10px 0 0;
  display: flex; flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.cmp-col.dark .cmp-list{ border-top-color: rgba(250,250,248,0.10); }
.cmp-list li{
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 14px;
  padding: 12px 0;
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  font-size: 13.5px;
  color: var(--fg-2);
}
.cmp-col.dark .cmp-list li{
  border-bottom-color: rgba(250,250,248,0.10);
  color: rgba(250,250,248,0.86);
}
.cmp-list li:last-child{ border-bottom: 0; }
.cmp-list li .n{
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--faint);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.cmp-col.dark .cmp-list li .n{ color: rgba(250,250,248,0.5); }
.cmp-list li .t{ font-weight: 400; }
.cmp-list li .t strong{ color: var(--fg); font-weight: 500; }
.cmp-col.dark .cmp-list li .t strong{ color: #FAFAF8; }
.cmp-list li .v{
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--faint);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.cmp-col.dark .cmp-list li .v{ color: rgba(250,250,248,0.5); }

.cmp-foot{
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex; gap: 16px; align-items: baseline; flex-wrap: wrap;
}
.cmp-col.dark .cmp-foot{ border-top-color: rgba(250,250,248,0.10); color: rgba(250,250,248,0.62); }
.cmp-foot .dot{
  width: 6px; height: 6px; border-radius: 1px;
  background: var(--muted-2); display: inline-block; margin-right: 8px; vertical-align: middle;
}
.cmp-col.dark .cmp-foot .dot{ background: var(--state-pos); }

/* ====================================================================
   SECTION 3 — SCORING MATRIX
   ==================================================================== */
.scm-frame{
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  background: var(--surface);
  overflow: hidden;
}
.scm-head{
  display: grid;
  grid-template-columns: 40px minmax(0, 1.05fr) minmax(0, 1.1fr) 120px 84px;
  gap: 16px;
  padding: 12px 22px;
  border-bottom: 1px solid var(--line);
  background: var(--canvas-tint);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.scm-row{
  display: grid;
  grid-template-columns: 40px minmax(0, 1.05fr) minmax(0, 1.1fr) 120px 84px;
  gap: 16px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.scm-row:last-child{ border-bottom: 0; }
.scm-num{
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--faint);
  letter-spacing: 0.06em;
  padding-top: 2px;
}
.scm-name{
  display: flex; flex-direction: column; gap: 4px;
}
.scm-name .t{
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.012em;
  color: var(--fg);
  line-height: 1.2;
}
.scm-name .q{
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.45;
  font-style: normal;
}
.scm-copy{
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
  max-width: 40ch;
}
.scm-copy strong{ color: var(--fg); font-weight: 500; }
.scm-bar{
  display: flex; flex-direction: column; gap: 4px;
  padding-top: 4px;
}
.scm-bar .bar{
  height: 6px;
  background: var(--canvas-tint);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.scm-bar .bar i{
  position: absolute; top: 0; bottom: 0; left: 0;
  background: var(--fg);
  display: block;
  border-radius: 2px;
}
.scm-bar.high .bar i{ background: var(--state-pos); }
.scm-bar .k{
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--faint);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex; justify-content: space-between;
}
.scm-bar .k strong{ color: var(--fg); font-weight: 500; font-variant-numeric: tabular-nums; }
.scm-action{
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--muted);
  letter-spacing: 0.04em;
  padding-top: 4px;
  text-align: right;
}
.scm-action strong{ color: var(--fg); font-weight: 500; }
.scm-foot{
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 22px;
  border-top: 1px solid var(--line);
  background: var(--canvas-tint);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.scm-foot strong{ color: var(--fg); font-weight: 500; }

/* ====================================================================
   SECTION 4 — DECISION CARDS (signal → action → why)
   ==================================================================== */
.dec-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  background: var(--surface);
  overflow: hidden;
}
.dec-card{
  padding: 26px 26px 28px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column;
  gap: 18px;
  min-width: 0;
  position: relative;
}
.dec-card:last-child{ border-right: 0; }
.dec-head{
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--faint);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.dec-head .num{ color: var(--fg-2); }
.dec-head .id{
  background: var(--canvas-tint);
  border: 1px solid var(--line);
  padding: 2px 7px;
  border-radius: var(--r-badge);
}
.dec-signals{
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 6px;
}
.dec-signals li{
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 10px;
  align-items: baseline;
  font-size: 12.5px;
  color: var(--muted);
  padding: 6px 0;
  border-bottom: 1px dashed var(--line);
}
.dec-signals li:last-child{ border-bottom: 0; }
.dec-signals li .k{
  font-size: 12px;
  color: var(--fg-2);
}
.dec-signals li .bar{
  height: 4px; background: var(--canvas-tint); border-radius: 2px; overflow: hidden;
}
.dec-signals li .bar i{ display: block; height: 100%; background: var(--fg); border-radius: 2px; }
.dec-signals li.hi .bar i{ background: var(--state-pos); }
.dec-signals li .v{
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--muted);
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}
.dec-signals li.hi .v{ color: var(--state-pos); }
.dec-arrow{
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--faint);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.dec-arrow .line{ flex: 1; height: 1px; background: var(--ghost); }
.dec-action{
  display: flex; flex-direction: column; gap: 4px;
}
.dec-action .k{
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--faint);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.dec-action .t{
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.015em;
  color: var(--fg);
  line-height: 1.2;
}
.dec-why{
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.dec-why strong{ color: var(--fg); font-weight: 500; }

/* ====================================================================
   SECTION 5 — AUDIENCE CONFIDENCE LADDER
   ==================================================================== */
.s-confidence{ background: var(--canvas-tint); }

.conf-ladder{
  display: flex; flex-direction: column;
  gap: 4px;
}
.conf-tier{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px 26px;
  display: grid;
  grid-template-columns: 60px minmax(0, 1.2fr) minmax(0, 1.4fr) 160px;
  gap: 24px;
  align-items: center;
}
.conf-tier .rank{
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 40px;
  letter-spacing: -0.025em;
  color: var(--fg);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.conf-tier .body{
  display: flex; flex-direction: column; gap: 4px;
}
.conf-tier .t{
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.012em;
  color: var(--fg);
  line-height: 1.2;
}
.conf-tier .k{
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--faint);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.conf-tier .c{
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}
.conf-meter{
  display: flex; flex-direction: column; gap: 6px;
  align-items: stretch;
}
.conf-meter .label{
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--faint);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex; justify-content: space-between;
}
.conf-meter .label strong{ color: var(--fg); font-weight: 500; }
.conf-meter .bar{
  height: 6px;
  background: var(--canvas-tint);
  border-radius: 2px;
  overflow: hidden;
}
.conf-meter .bar i{
  display: block; height: 100%;
  background: var(--state-pos);
  border-radius: 2px;
}
.conf-tier.t2 .conf-meter .bar i{ background: var(--fg); }
.conf-tier.t3 .conf-meter .bar i{ background: var(--muted-2); }
.conf-tier.t4 .conf-meter .bar i{ background: var(--ghost); }
.conf-tier.t4{ opacity: 0.78; }
.conf-tier.t4 .rank{ color: var(--muted-2); }
.conf-tier.t4 .t{ color: var(--muted); }

.conf-foot{
  margin-top: 24px;
  font-size: 14px;
  color: var(--muted);
  display: flex; gap: 24px; flex-wrap: wrap;
  align-items: baseline;
}
.conf-foot strong{ color: var(--fg); font-weight: 500; }
.conf-foot .tag{
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--faint);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ====================================================================
   SECTION 6 — AFFILIATE SPLIT (measured vs cadence)
   ==================================================================== */
.aff-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.aff-card{
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  background: var(--surface);
  padding: 28px 28px 30px;
  display: flex; flex-direction: column;
  gap: 18px;
  min-width: 0;
  position: relative;
}
.aff-card.cadence{
  background: var(--canvas-tint);
}
.aff-card .label{
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
}
.aff-card .label .id{
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 2px 7px;
  border-radius: var(--r-badge);
  color: var(--muted);
  letter-spacing: 0.04em;
}
.aff-card.cadence .label .id{ background: var(--bg); }
.aff-card .name{
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--fg);
  line-height: 1.1;
  margin: 0;
}
.aff-card .lede{
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}
.aff-card .lede strong{ color: var(--fg); font-weight: 500; }

.aff-metrics{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.aff-metric{
  padding: 16px 14px 16px 0;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 4px;
  min-width: 0;
}
.aff-metric:nth-child(3n){ border-right: 0; padding-right: 0; }
.aff-metric .k{
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--faint);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.aff-metric .v{
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--fg);
  font-variant-numeric: tabular-nums;
}
.aff-metric .d{
  font-size: 11.5px;
  color: var(--muted);
}

.aff-tags{
  display: flex; flex-wrap: wrap;
  gap: 6px;
}
.aff-tag{
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  color: var(--fg-2);
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 4px 10px;
}
.aff-tag.hi{
  background: var(--fg);
  color: #FAFAF8;
  border-color: var(--fg);
}

.aff-foot{
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--fg-2);
  display: flex; gap: 14px; align-items: baseline;
}
.aff-foot .arr{ flex: 0 0 auto; color: var(--state-pos); }
.aff-foot strong{ color: var(--fg); font-weight: 500; }

/* ====================================================================
   SECTION 7 — PAID FEEDBACK CHAIN (dark slab)
   ==================================================================== */
.s-feedback{
  background: #161614;
  color: #FAFAF8;
}
.fb-frame{
  border: 1px solid rgba(250,250,248,0.10);
  border-radius: var(--r-card);
  overflow: hidden;
  background: rgba(250,250,248,0.02);
}
.fb-head{
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 22px;
  border-bottom: 1px solid rgba(250,250,248,0.10);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(250,250,248,0.62);
}
.fb-head .l{ display: inline-flex; align-items: center; gap: 10px; color: #FAFAF8; }
.fb-head .sq{ width: 8px; height: 8px; background: var(--state-pos); display: inline-block; border-radius: 1px; }

.fb-chain{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
}
.fb-node{
  padding: 22px 22px 26px;
  border-right: 1px solid rgba(250,250,248,0.10);
  display: flex; flex-direction: column;
  gap: 10px;
  min-width: 0;
  position: relative;
}
.fb-node:last-child{ border-right: 0; }
.fb-node .step{
  display: flex; align-items: baseline; gap: 10px;
}
.fb-node .num{
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: rgba(250,250,248,0.5);
  letter-spacing: 0.06em;
}
.fb-node .arr{
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(250,250,248,0.36);
  letter-spacing: 0;
}
.fb-node .t{
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.012em;
  color: #FAFAF8;
  line-height: 1.2;
  margin: 0;
}
.fb-node .c{
  font-size: 12.5px;
  color: rgba(250,250,248,0.72);
  line-height: 1.5;
  margin: 0;
}
.fb-node .stamp{
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(250,250,248,0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding-top: 8px;
}

.fb-metrics{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid rgba(250,250,248,0.10);
}
.fb-metric{
  padding: 16px 18px;
  border-right: 1px solid rgba(250,250,248,0.10);
  display: flex; flex-direction: column; gap: 4px;
  min-width: 0;
}
.fb-metric:last-child{ border-right: 0; }
.fb-metric .k{
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(250,250,248,0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.fb-metric .v{
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: #FAFAF8;
  font-variant-numeric: tabular-nums;
}

.fb-loop{
  display: flex; align-items: center; gap: 14px;
  padding: 16px 22px;
  border-top: 1px solid rgba(250,250,248,0.10);
  font-size: 13px;
  color: rgba(250,250,248,0.78);
}
.fb-loop .arc{ color: var(--state-pos); flex: 0 0 auto; }
.fb-loop strong{ color: #FAFAF8; font-weight: 500; }

/* ====================================================================
   SECTION 8 — BRAND-SPECIFIC LEARNING
   ==================================================================== */
.brn-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  background: var(--surface);
  overflow: hidden;
}
.brn-card{
  padding: 26px 26px 28px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column;
  gap: 14px;
  min-width: 0;
}
.brn-card:last-child{ border-right: 0; }
.brn-card .kind{
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--faint);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.brn-card .name{
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--fg);
  line-height: 1.15;
  margin: 0;
}
.brn-card .name .sub{
  display: block;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: 0;
  margin-top: 4px;
}
.brn-rows{
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.brn-rows li{
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr) 40px;
  gap: 10px;
  align-items: center;
  font-size: 12.5px;
  color: var(--muted);
}
.brn-rows li .k{ color: var(--fg-2); }
.brn-rows li .bar{
  height: 5px;
  background: var(--canvas-tint);
  border-radius: 2px;
  overflow: hidden;
}
.brn-rows li .bar i{ display: block; height: 100%; background: var(--ghost); border-radius: 2px; }
.brn-rows li.hi .bar i{ background: var(--state-pos); }
.brn-rows li.hi .k{ color: var(--fg); font-weight: 500; }
.brn-rows li .v{
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--faint);
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
  text-align: right;
}
.brn-rows li.hi .v{ color: var(--state-pos); }
.brn-card .foot{
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.55;
}
.brn-card .foot strong{ color: var(--fg); font-weight: 500; }

/* ====================================================================
   SECTION 9 — NEXT CREATOR LIST
   ==================================================================== */
.s-nextlist{ background: var(--canvas-tint); }
.nl-frame{
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  background: var(--surface);
  overflow: hidden;
}
.nl-head{
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 16px 22px;
  border-bottom: 1px solid var(--line);
  background: var(--canvas-tint);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.nl-head .l{ display: inline-flex; align-items: center; gap: 10px; color: var(--fg); }
.nl-head .sq{ width: 8px; height: 8px; background: var(--state-pos); display: inline-block; border-radius: 1px; }

.nl-cats{
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 14px 22px;
  border-bottom: 1px solid var(--line);
}
.nl-cat{
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  color: var(--muted);
  background: var(--canvas-tint);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 11px;
  display: inline-flex; align-items: baseline; gap: 8px;
  cursor: default;
}
.nl-cat .n{
  color: var(--faint);
  font-variant-numeric: tabular-nums;
}
.nl-cat.active{
  background: var(--fg);
  color: #FAFAF8;
  border-color: var(--fg);
}
.nl-cat.active .n{ color: rgba(250,250,248,0.7); }

.nl-row{
  display: grid;
  grid-template-columns: 40px 36px minmax(0, 1.1fr) minmax(0, 2fr) 200px;
  gap: 18px;
  padding: 14px 22px;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.nl-row:last-of-type{ border-bottom: 0; }
.nl-row .num{
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--faint);
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}
.nl-row .avatar{
  width: 30px; height: 30px;
  border-radius: 999px;
  background: var(--canvas-tint);
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg);
  letter-spacing: 0.04em;
}
.nl-row .handle{
  display: flex; flex-direction: column; gap: 2px;
  min-width: 0;
}
.nl-row .handle .h{
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: -0.012em;
  color: var(--fg);
}
.nl-row .handle .meta{
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--faint);
  letter-spacing: 0.04em;
}
.nl-row .reason{
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5;
}
.nl-row .reason strong{ color: var(--fg); font-weight: 500; }
.nl-row .action{
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--fg);
  letter-spacing: 0.04em;
  text-align: right;
  background: var(--canvas-tint);
  border: 1px solid var(--line);
  border-radius: var(--r-badge);
  padding: 4px 10px;
  justify-self: end;
}
.nl-row .action.slate{ color: #3b5870; }
.nl-row .action.amber{ color: #a05a14; }

.nl-foot{
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 22px;
  background: var(--canvas-tint);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.nl-foot strong{ color: var(--fg); font-weight: 500; }

/* ====================================================================
   SECTION 10 — MANAGED PLUG
   ==================================================================== */
.s-managed-plug{
  background: var(--canvas-tint);
}
.mgp-card{
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  background: var(--surface);
  padding: 44px 48px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}
.mgp-card .left{
  display: flex; flex-direction: column; gap: 14px;
}
.mgp-card .head{
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--fg);
  margin: 0;
}
.mgp-card .head .em{ font: inherit; color: inherit; }
.mgp-card .lede{
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 52ch;
  margin: 0;
}
.mgp-card .lede strong{ color: var(--fg); font-weight: 500; }
.mgp-card .row{ display: flex; gap: 12px; flex-wrap: wrap; padding-top: 8px; }

.mgp-card .right{
  border-left: 1px solid var(--line);
  padding-left: 48px;
  display: flex; flex-direction: column; gap: 16px;
}
.mgp-card .right .tag{
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--faint);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.mgp-list{
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
}
.mgp-list li{
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  font-size: 13px;
  color: var(--fg-2);
  align-items: baseline;
}
.mgp-list li .k{
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--faint);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ====================================================================
   SECTION 11 — uses the existing .s-cta from sections.css (Section10CTA)
   ==================================================================== */

/* ====================================================================
   Responsive
   ==================================================================== */
@media (max-width: 1180px){
  .scm-head{ display: none; }
  .scm-row{
    grid-template-columns: 40px 1fr 120px;
    grid-template-rows: auto auto;
    row-gap: 12px;
  }
  .scm-row .scm-copy{ grid-column: 2 / -1; }
  .scm-row .scm-action{ grid-column: 2 / -1; text-align: left; }

  .conf-tier{ grid-template-columns: 50px 1fr 160px; gap: 20px; }
  .conf-tier .c-mid{ grid-column: 2 / -1; }
  .conf-tier .body{ grid-column: 2 / 3; grid-row: 1; }

  .fb-chain{ grid-template-columns: repeat(5, 1fr); }
  .fb-metrics{ grid-template-columns: repeat(3, 1fr); }
  .fb-metric{ border-right: 1px solid rgba(250,250,248,0.10); }
  .fb-metric:nth-child(3n){ border-right: 0; }
  .fb-metric:nth-child(-n+3){ border-bottom: 1px solid rgba(250,250,248,0.10); }

  .nl-row{ grid-template-columns: 36px 30px 1fr 1.2fr 160px; gap: 14px; }
}
@media (max-width: 900px){
  .int-hero-top{ max-width: none; margin-bottom: 32px; }
  .int-hero-body{ grid-template-columns: 1fr; gap: 28px; }
  .int-hero-pillars{ grid-template-columns: 1fr; }
  .int-hero-pillar{
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .int-hero-pillar.last{ border-bottom: 0; }
  .int-hero-foot{ flex-direction: column; align-items: flex-start; }
  .int-head{ grid-template-columns: 1fr; gap: 18px; align-items: start; }
  .cmp-grid{ grid-template-columns: 1fr; }
  .cmp-col{ border-right: 0; border-bottom: 1px solid var(--line); }
  .cmp-col:last-child{ border-bottom: 0; }
  .dec-grid{ grid-template-columns: 1fr; }
  .dec-card{ border-right: 0; border-bottom: 1px solid var(--line); }
  .dec-card:last-child{ border-bottom: 0; }
  .aff-grid{ grid-template-columns: 1fr; }
  .scm-row{ grid-template-columns: 36px 1fr; }
  .scm-row .scm-copy{ grid-column: 2 / -1; }
  .scm-row .scm-bar{ grid-column: 2 / -1; }
  .scm-row .scm-action{ grid-column: 2 / -1; }
  .conf-tier{ grid-template-columns: 40px 1fr; gap: 14px; row-gap: 12px; }
  .conf-tier .c-mid{ grid-column: 2 / -1; }
  .conf-tier .conf-meter{ grid-column: 2 / -1; }
  .fb-chain{ grid-template-columns: 1fr; }
  .fb-node{ border-right: 0; border-bottom: 1px solid rgba(250,250,248,0.10); }
  .fb-node:last-child{ border-bottom: 0; }
  .fb-metrics{ grid-template-columns: repeat(2, 1fr); }
  .fb-metric{ border-right: 1px solid rgba(250,250,248,0.10); border-bottom: 1px solid rgba(250,250,248,0.10); }
  .fb-metric:nth-child(2n){ border-right: 0; }
  .brn-grid{ grid-template-columns: 1fr; }
  .brn-card{ border-right: 0; border-bottom: 1px solid var(--line); }
  .brn-card:last-child{ border-bottom: 0; }
  .nl-row{ grid-template-columns: 30px 1fr 120px; row-gap: 8px; }
  .nl-row .num{ display: none; }
  .nl-row .reason{ grid-column: 2 / -1; }
  .mgp-card{ grid-template-columns: 1fr; padding: 32px; }
  .mgp-card .right{ border-left: 0; padding-left: 0; border-top: 1px solid var(--line); padding-top: 24px; }
  .mgp-list{ grid-template-columns: 1fr; }
}
