  .ci-scores-wrap  { grid-template-columns:1fr; }
  .ci-scores-grid  { grid-template-columns:1fr 1fr; }
  .ci-pillars      { grid-template-columns:1fr; }
}

/* ============================================================
   SHARED LAYOUT VARIABLES (used by ra-* and guar-* sections)
   These must be defined here because they are not in style.css
   ============================================================ */
:root {
  --section-py: 140px;
  --section-px: 24px;
  --mw:         1160px;
  --bg:         #000;
  --bg2:        #0c0c0c;
}

/* ============================================================
   CAMPAIGN INTELLIGENCE FEATURE (Foundry OS section)
   ============================================================ */

.ci-feature {
  background: #0a0a0a;
  border: 1px solid rgba(255,99,0,.18);
  border-radius: 16px;
  padding: 64px 56px;
  position: relative;
  overflow: hidden;
}
.ci-feature::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 500px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255,99,0,.07) 0%, transparent 65%);
  pointer-events: none;
}

.ci-badge {
  display: inline-block;
  background: rgba(255,99,0,.12);
  border: 1px solid rgba(255,99,0,.3);
  color: var(--or);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.ci-feature-title {
  font-size: clamp(26px,3vw,40px);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--wh);
  margin: 0 0 16px;
}
.ci-feature-sub {
  color: var(--gr2);
  font-size: 16px;
  line-height: 1.7;
  max-width: 680px;
  margin: 0 0 52px;
}

/* Score layout */
.ci-scores-wrap {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  margin-bottom: 52px;
  align-items: start;
}
.ci-score-hero {
  background: var(--or);
  border-radius: 12px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 180px;
}
.ci-score-hero .ci-score-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-bottom: 10px;
}
.ci-score-big {
  font-size: 72px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -.03em;
}
.ci-score-big span {
  font-size: 22px;
  font-weight: 400;
  opacity: .7;
  margin-left: 4px;
}
.ci-score-hero .ci-score-sub {
  font-size: 12px;
  color: rgba(255,255,255,.65);
  margin-top: 12px;
  line-height: 1.5;
}

.ci-scores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.ci-score-item {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 10px;
  padding: 18px 16px;
  transition: border-color .2s;
}
.ci-score-item:hover { border-color: rgba(255,99,0,.3); }
.ci-score-high {
  border-color: rgba(255,99,0,.2);
  background: rgba(255,99,0,.04);
}
.ci-score-name {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gr2);
  margin-bottom: 6px;
}
.ci-score-val {
  font-size: 28px;
  font-weight: 800;
  color: var(--wh);
  letter-spacing: -.02em;
  line-height: 1;
}
.ci-score-high .ci-score-val { color: var(--or); }
.ci-score-region {
  font-size: 10px;
  color: rgba(255,255,255,.3);
  margin: 4px 0 10px;
}
.ci-score-bar {
  height: 2px;
  background: rgba(255,255,255,.08);
  border-radius: 2px;
  overflow: hidden;
}
.ci-score-fill {
  height: 100%;
  background: var(--or);
  border-radius: 2px;
}
.ci-score-fill-mid {
  background: rgba(255,255,255,.25);
}

/* Pillars */
.ci-pillars {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
  margin-bottom: 36px;
}
.ci-pillar {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.ci-pillar-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(255,99,0,.1);
  border: 1px solid rgba(255,99,0,.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ci-pillar-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--wh);
  margin-bottom: 6px;
}
.ci-pillar-text p {
  font-size: 13px;
  color: var(--gr2);
  line-height: 1.6;
  margin: 0;
}

.ci-powered-note {
  font-size: 10px;
  color: rgba(255,255,255,.2);
  letter-spacing: .06em;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.06);
}

@media (max-width: 900px) {
  .ci-feature        { padding: 40px 28px; }
  .ci-scores-wrap    { grid-template-columns: 1fr; }
  .ci-scores-grid    { grid-template-columns: 1fr 1fr; }
  .ci-pillars        { grid-template-columns: 1fr; }
}


/* ============================================================
   PAGE: FOUNDRY OS® — page-foundry-os.php
   ============================================================ */

/* Shared layout helpers */
.fos-section-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.fos-section-header {
  text-align: center;
  margin-bottom: 72px;
}
.fos-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gr);
  margin-bottom: 18px;
}
.fos-eyebrow-or { color: var(--or); }
.fos-section-title {
  font-size: clamp(32px,4.5vw,60px);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--wh);
  line-height: 1.1;
  margin: 0 0 20px;
}
.fos-section-sub {
  font-size: 17px;
  line-height: 1.75;
  color: var(--gr2);
  max-width: 640px;
  margin: 0 auto;
}

/* ── HERO ── */
.fos-page-hero {
  position: relative;
  background: #000;
  padding: 160px 24px 120px;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid var(--bd);
}
.fos-page-hero-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(255,99,0,.12) 0%, transparent 65%);
  pointer-events: none;
}
.fos-page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
}
.fos-page-eyebrow {
  display: inline-block;
  background: rgba(255,99,0,.1);
  border: 1px solid rgba(255,99,0,.25);
  color: var(--or);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.fos-page-h1 {
  font-size: clamp(40px,6vw,80px);
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--wh);
  line-height: 1.05;
  margin: 0 0 24px;
}
.fos-page-h1 em {
  font-style: italic;
  color: var(--or);
}
.fos-page-sub {
  font-size: 18px;
  line-height: 1.75;
  color: var(--gr2);
  max-width: 660px;
  margin: 0 auto 52px;
}
.fos-page-hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: 48px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--bd);
  border-radius: 14px;
  padding: 28px 32px;
}
.fos-hero-stat {
  padding: 0 36px;
  text-align: center;
}
.fos-hero-stat-num {
  font-size: 40px;
  font-weight: 900;
  color: var(--or);
  letter-spacing: -.03em;
  line-height: 1;
}
.fos-hero-stat-num span {
  font-size: 22px;
  font-weight: 600;
}
.fos-hero-stat-label {
  font-size: 12px;
  color: var(--gr);
  margin-top: 6px;
  letter-spacing: .02em;
}
.fos-hero-divider {
  width: 1px;
  height: 48px;
  background: var(--bd);
}
.fos-page-cta-btn {
  display: inline-block;
  background: var(--or);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .02em;
  padding: 16px 36px;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity .2s, transform .2s;
}
.fos-page-cta-btn:hover { opacity: .88; transform: translateY(-1px); }

/* ── WHAT IS FOUNDRY OS ── */
.fos-what-section {
  background: #060606;
  padding: 140px 0;
  border-top: 1px solid var(--bd);
}
.fos-diagram-wrap {
  max-width: 700px;
  margin: 0 auto 80px;
  background: rgba(255,255,255,.02);
  border: 1px solid var(--bd);
  border-radius: 16px;
  padding: 32px;
}
.fos-svg { width: 100%; height: auto; }
.fos-mod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.fos-mod-card {
  background: rgba(255,255,255,.02);
  border: 1px solid var(--bd);
  border-radius: 14px;
  padding: 32px 28px;
  transition: border-color .25s;
}
.fos-mod-card:hover { border-color: rgba(255,99,0,.3); }
.fos-mod-card-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--or);
  margin-bottom: 10px;
}
.fos-mod-card-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--wh);
  margin: 0 0 10px;
}
.fos-mod-card-desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--gr2);
  margin-bottom: 18px;
}
.fos-mod-card-list {
  list-style: none;
  padding: 0;
  border-top: 1px solid var(--bd);
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fos-mod-card-list li {
  font-size: 12px;
  color: var(--gr);
  padding-left: 14px;
  position: relative;
}
.fos-mod-card-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--or);
}

/* ── AI STACK ── */
.fos-stack-section {
  background: #030303;
  padding: 140px 0;
  border-top: 1px solid var(--bd);
}

/* Workflow pipeline */
.fos-workflow {
  display: flex;
  gap: 0;
  align-items: stretch;
  background: rgba(255,255,255,.02);
  border: 1px solid var(--bd);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 64px;
}
.fos-wf-stage {
  flex: 1;
  padding: 32px 24px;
  border-right: 1px solid var(--bd);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.fos-wf-stage:last-child { border-right: none; }
.fos-wf-stage-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gr);
  margin-bottom: 4px;
}
.fos-wf-tools {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fos-wf-tool {
  display: flex;
  align-items: center;
  gap: 10px;
}
.fos-wf-tool-icon {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fos-wf-tool-icon svg { width: 16px; height: 16px; }
.fos-wf-icon-anthropic { background: #1a1a2e; border: 1px solid rgba(255,99,0,.3); }
.fos-wf-icon-openai    { background: #1a2e1a; border: 1px solid rgba(100,200,100,.2); }
.fos-wf-icon-google    { background: #1a1a1a; border: 1px solid rgba(255,255,255,.1); }
.fos-wf-icon-notion    { background: #2a2a2a; border: 1px solid rgba(255,255,255,.15); }
.fos-wf-icon-seedance  { background: #1a1a2e; border: 1px solid rgba(100,120,255,.3); }
.fos-wf-icon-kling     { background: #2e1a1a; border: 1px solid rgba(255,120,80,.3); }
.fos-wf-icon-veo       { background: #1a2e2e; border: 1px solid rgba(80,200,200,.2); }
.fos-wf-icon-banana    { background: #2e2a1a; border: 1px solid rgba(255,200,60,.2); }
.fos-wf-tool-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--wh);
}
.fos-wf-tool-role {
  font-size: 10px;
  color: var(--gr);
  display: none;
}
.fos-wf-arrow {
  font-size: 20px;
  color: rgba(255,99,0,.4);
  text-align: center;
  margin-top: auto;
}
.fos-wf-stage-ci {
  background: rgba(255,99,0,.04);
  border-color: rgba(255,99,0,.2);
}
.fos-wf-ci-card {
  background: #0a0a0a;
  border: 1px solid rgba(255,99,0,.2);
  border-radius: 10px;
  padding: 16px;
  flex: 1;
}
.fos-wf-ci-badge {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--or);
  display: block;
  margin-bottom: 8px;
}
.fos-wf-ci-score {
  font-size: 36px;
  font-weight: 900;
  color: var(--or);
  letter-spacing: -.03em;
  line-height: 1;
}
.fos-wf-ci-score span { font-size: 16px; font-weight: 400; opacity: .6; }
.fos-wf-ci-label {
  font-size: 9px;
  color: var(--gr);
  margin: 4px 0 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.fos-wf-ci-bars { display: flex; flex-direction: column; gap: 6px; }
.fos-wf-ci-bar-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  color: var(--gr);
}
.fos-wf-ci-bar-val { font-weight: 700; width: 28px; text-align: right; flex-shrink: 0; }
.fos-ci-hi { color: var(--or); }
.fos-wf-ci-bar-track {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,.07);
  border-radius: 2px;
  overflow: hidden;
}
.fos-wf-ci-bar-fill {
  height: 100%;
  background: var(--or);
  border-radius: 2px;
}
.fos-wf-ci-foot {
  font-size: 7px;
  color: rgba(255,255,255,.2);
  margin-top: 10px;
  letter-spacing: .05em;
}
.fos-wf-stage-last {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.fos-wf-outcome-num {
  font-size: 30px;
  font-weight: 900;
  color: var(--or);
  letter-spacing: -.03em;
  line-height: 1;
}
.fos-wf-outcome-num span { font-size: 16px; font-weight: 600; }
.fos-wf-outcome-label {
  font-size: 10px;
  color: var(--gr);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Stack detail grid */
.fos-stack-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.fos-stack-card {
  background: rgba(255,255,255,.02);
  border: 1px solid var(--bd);
  border-radius: 12px;
  padding: 24px 20px;
  transition: border-color .25s, transform .25s;
}
.fos-stack-card:hover {
  border-color: rgba(255,99,0,.25);
  transform: translateY(-2px);
}
.fos-stack-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.fos-stack-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.fos-dot-anthropic { background: var(--or); }
.fos-dot-openai    { background: #74aa9c; }
.fos-dot-seedance  { background: #6080ff; }
.fos-dot-kling     { background: #ff7050; }
.fos-dot-veo       { background: #50c8c8; }
.fos-dot-banana    { background: #ffc840; }
.fos-dot-notion    { background: #aaa; }
.fos-dot-google    { background: #4285F4; }
.fos-stack-card-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--wh);
}
.fos-stack-card-role {
  font-size: 12px;
  line-height: 1.6;
  color: var(--gr2);
  margin-bottom: 12px;
}
.fos-stack-card-tag {
  font-size: 10px;
  color: var(--or);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ── CAMPAIGN INTELLIGENCE ── */
.fos-ci-section {
  background: #000;
  padding: 140px 0;
  border-top: 1px solid var(--bd);
}
.fos-ci-explainer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,99,0,.15);
  border-radius: 16px;
  padding: 48px;
  margin-bottom: 64px;
}
.fos-ci-explainer-text h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--wh);
  margin-bottom: 14px;
}
.fos-ci-explainer-text p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--gr2);
}
.fos-ci-formats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.fos-ci-formats span {
  background: rgba(255,99,0,.08);
  border: 1px solid rgba(255,99,0,.2);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 12px;
  color: var(--or);
  font-weight: 600;
}
.fos-ci-brain-chart {
  background: #0a0a0a;
  border: 1px solid rgba(255,99,0,.15);
  border-radius: 12px;
  padding: 20px 20px 12px;
}
.fos-ci-chart-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 8px;
}
.fos-ci-brain-chart svg { width: 100%; height: auto; }
.fos-ci-chart-foot {
  font-size: 9px;
  color: rgba(255,255,255,.2);
  margin-top: 8px;
  letter-spacing: .05em;
}
.fos-ci-metrics-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gr);
  margin-bottom: 20px;
}
.fos-ci-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}
.fos-ci-metric {
  background: rgba(255,255,255,.02);
  border: 1px solid var(--bd);
  border-radius: 12px;
  padding: 24px 20px;
  transition: border-color .25s;
}
.fos-ci-metric:hover { border-color: rgba(255,255,255,.15); }
.fos-ci-metric-hi {
  border-color: rgba(255,99,0,.2);
  background: rgba(255,99,0,.03);
}
.fos-ci-metric-score {
  font-size: 36px;
  font-weight: 900;
  color: var(--or);
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.fos-ci-score-mid { color: rgba(255,255,255,.5); }
.fos-ci-metric-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--wh);
  margin-bottom: 4px;
}
.fos-ci-metric-region {
  font-size: 10px;
  color: var(--gr);
  margin-bottom: 10px;
}
.fos-ci-metric-desc {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,.4);
  margin-bottom: 14px;
}
.fos-ci-metric-bar {
  height: 3px;
  background: rgba(255,255,255,.07);
  border-radius: 3px;
  overflow: hidden;
}
.fos-ci-metric-bar div {
  height: 100%;
  background: var(--or);
  border-radius: 3px;
}
.fos-ci-bar-mid { background: rgba(255,255,255,.25) !important; }
.fos-ci-attr {
  font-size: 10px;
  color: rgba(255,255,255,.2);
  letter-spacing: .06em;
  text-transform: uppercase;
  text-align: center;
}

/* ── ROI SECTION ── */
.fos-roi-section {
  background: #060606;
  padding: 140px 0;
  border-top: 1px solid var(--bd);
}
.fos-roi-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
.fos-roi-col {
  background: rgba(255,255,255,.02);
  border: 1px solid var(--bd);
  border-radius: 16px;
  padding: 48px 40px;
}
.fos-roi-make {
  border-color: rgba(255,99,0,.2);
  background: rgba(255,99,0,.03);
}
.fos-roi-col-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gr);
  border: 1px solid var(--bd);
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 20px;
}
.fos-roi-col-tag-or {
  color: var(--or);
  border-color: rgba(255,99,0,.3);
}
.fos-roi-col-title {
  font-size: clamp(22px,2.5vw,32px);
  font-weight: 800;
  color: var(--wh);
  letter-spacing: -.02em;
  line-height: 1.2;
  margin: 0 0 14px;
}
.fos-roi-col-intro {
  font-size: 14px;
  color: var(--gr2);
  line-height: 1.7;
  margin-bottom: 32px;
}
.fos-roi-items { display: flex; flex-direction: column; gap: 24px; margin-bottom: 28px; }
.fos-roi-item { border-top: 1px solid var(--bd); padding-top: 18px; }
.fos-roi-item-or { border-color: rgba(255,99,0,.15); }
.fos-roi-item-num {
  font-size: 36px;
  font-weight: 900;
  color: rgba(255,255,255,.5);
  letter-spacing: -.03em;
  line-height: 1;
}
.fos-roi-item-num span { font-size: 20px; font-weight: 600; }
.fos-roi-item-label {
  font-size: 13px;
  color: var(--gr2);
  margin-top: 4px;
  line-height: 1.5;
}
.fos-roi-callout {
  background: rgba(255,255,255,.04);
  border-left: 3px solid rgba(255,255,255,.15);
  padding: 16px 18px;
  border-radius: 0 8px 8px 0;
  font-size: 13px;
  color: var(--gr2);
  line-height: 1.6;
}
.fos-roi-callout strong { color: var(--wh); }
.fos-roi-callout-or {
  border-left-color: var(--or);
  background: rgba(255,99,0,.05);
}

/* Math block */
.fos-roi-math {
  background: rgba(255,255,255,.02);
  border: 1px solid var(--bd);
  border-radius: 16px;
  padding: 48px 40px;
}
.fos-roi-math-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gr);
  margin-bottom: 28px;
  text-align: center;
}
.fos-roi-math-grid {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 20px;
}
.fos-roi-math-item {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--bd);
  border-radius: 12px;
  padding: 28px;
}
.fos-roi-math-item-win {
  border-color: rgba(255,99,0,.3);
  background: rgba(255,99,0,.04);
}
.fos-roi-math-scenario {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gr);
  margin-bottom: 16px;
}
.fos-roi-math-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--gr2);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.fos-roi-math-total {
  font-weight: 700;
  color: var(--wh);
  border-bottom: none;
  margin-top: 4px;
  font-size: 16px;
}
.fos-math-neg { color: rgba(255,80,80,.7); }
.fos-roi-math-vs {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--gr);
  letter-spacing: .08em;
}
.fos-roi-math-delta {
  margin-top: 12px;
  background: var(--or);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  padding: 8px;
  border-radius: 6px;
}
.fos-roi-math-note {
  font-size: 11px;
  color: rgba(255,255,255,.25);
  text-align: center;
  line-height: 1.6;
}

/* ── COMPETITIVE ADVANTAGE ── */
.fos-advantage-section {
  background: #030303;
  padding: 140px 0;
  border-top: 1px solid var(--bd);
}
.fos-adv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.fos-adv-col {
  border-radius: 14px;
  padding: 40px 36px;
}
.fos-adv-them {
  background: rgba(255,255,255,.02);
  border: 1px solid var(--bd);
}
.fos-adv-us {
  background: rgba(255,99,0,.04);
  border: 1px solid rgba(255,99,0,.2);
}
.fos-adv-col-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gr);
  margin-bottom: 24px;
}
.fos-adv-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.fos-adv-list li {
  font-size: 14px;
  color: var(--gr2);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.fos-adv-no::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: rgba(255,80,80,.5);
  font-size: 11px;
  top: 2px;
}
.fos-adv-yes::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--or);
  font-weight: 700;
  font-size: 11px;
  top: 2px;
}
.fos-adv-us .fos-adv-list li { color: rgba(255,255,255,.75); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .fos-stack-grid       { grid-template-columns: repeat(2, 1fr); }
  .fos-ci-metrics-grid  { grid-template-columns: repeat(2, 1fr); }
  .fos-workflow         { flex-direction: column; }
  .fos-wf-stage         { border-right: none; border-bottom: 1px solid var(--bd); }
  .fos-wf-stage:last-child { border-bottom: none; }
  .fos-wf-arrow         { display: none; }
}
@media (max-width: 900px) {
  .fos-page-hero        { padding: 120px 24px 80px; }
  .fos-page-hero-stats  { gap: 0; padding: 20px; }
  .fos-hero-stat        { padding: 0 18px; }
  .fos-hero-stat-num    { font-size: 28px; }
  .fos-hero-divider     { height: 36px; }
  .fos-mod-grid         { grid-template-columns: 1fr 1fr; }
  .fos-roi-split        { grid-template-columns: 1fr; }
  .fos-roi-math-grid    { grid-template-columns: 1fr; }
  .fos-roi-math-vs      { display: none; }
  .fos-adv-grid         { grid-template-columns: 1fr; }
  .fos-ci-explainer     { grid-template-columns: 1fr; }
  .fos-ci-metrics-grid  { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .fos-mod-grid         { grid-template-columns: 1fr; }
  .fos-stack-grid       { grid-template-columns: 1fr; }
  .fos-ci-metrics-grid  { grid-template-columns: 1fr; }
  .fos-page-hero-stats  { flex-direction: column; gap: 16px; }
  .fos-hero-divider     { width: 48px; height: 1px; }
}

/* ============================================================
   PENALTY-PROOF PROMISE SECTION  (#guarantee)
   ============================================================ */

#guarantee {
  padding: var(--section-py, 140px) var(--section-px, 24px);
  background: var(--s1);
  border-top: 1px solid var(--bd);
  border-bottom: 1px solid var(--bd);
}

.guar-wrap {
  max-width: var(--mw);
  margin: 0 auto;
}

/* Section head — centered, same rhythm as #process / #work */
.guar-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 28px;
}

/* Make em orange + upright (matches sc-title em on homepage) */
#guarantee .section-title em {
  color: var(--or);
  font-style: normal;
}

.guar-intro {
  max-width: 660px;
  margin: 0 auto 72px;
  text-align: center;
}

.guar-intro p {
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.78;
  color: var(--gr2);
  margin: 0 0 16px;
}

.guar-intro p:last-child {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,.72);
  margin: 0;
}

/* 2×2 card grid — tight 2px gap matches .services-grid */
.guar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-bottom: 2px;
  border-radius: var(--r);
  overflow: hidden;
}

/* Cards match .svc style exactly */
.guar-card {
  background: var(--s2);
  border: 1px solid var(--bd);
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  transition: background .3s, border-color .35s, transform .35s var(--ease);
  position: relative;
  overflow: hidden;
}

.guar-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at var(--mx, 30%) var(--my, 30%),
    rgba(255,99,0,.07) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity .3s;
}

.guar-card:hover::before { opacity: 1; }
.guar-card:hover {
  border-color: var(--or-border);
  transform: translateY(-4px);
  z-index: 1;
}

/* X badge — styled like .svc-icon */
.guar-card-x {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255,60,60,.08);
  border: 1px solid rgba(255,60,60,.22);
  color: rgba(255,80,80,.75);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  font-weight: 800;
  flex-shrink: 0;
  transition: background .3s;
}

.guar-card:hover .guar-card-x {
  background: rgba(255,60,60,.15);
}

.guar-card-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--wh);
  margin: 0 0 14px;
  letter-spacing: -.02em;
}

.guar-card-desc {
  font-size: 14px;
  line-height: 1.78;
  color: var(--gr2);
  margin: 0;
}

/* Promise + stats bar */
.guar-proof {
  background: linear-gradient(135deg, rgba(255,99,0,.07) 0%, rgba(255,99,0,.02) 100%);
  border: 1px solid rgba(255,99,0,.2);
  border-radius: var(--r);
  padding: 40px 48px;
  display: flex;
  gap: 56px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 2px;
}

.guar-promise {
  flex: 1 1 340px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.guar-promise-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: rgba(255,99,0,.12);
  border: 1px solid rgba(255,99,0,.28);
  border-radius: 12px;
  color: var(--or);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.guar-promise p {
  font-size: 15px;
  line-height: 1.72;
  color: rgba(255,255,255,.78);
  margin: 0 0 14px;
}

.guar-audit-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 700;
  color: var(--or);
  text-decoration: none;
  letter-spacing: -.01em;
  transition: gap .2s;
}
.guar-audit-link:hover { gap: 9px; }

.guar-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.guar-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}

.guar-stat-num {
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 900;
  color: var(--or);
  letter-spacing: -.03em;
  line-height: 1;
}

.guar-stat-plus {
  font-size: .7em;
  vertical-align: super;
}

.guar-stat-lbl {
  font-size: 11px;
  color: var(--gr);
  text-transform: uppercase;
  letter-spacing: .09em;
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 900px) {
  .guar-grid  { grid-template-columns: 1fr; border-radius: var(--r); }
  .guar-proof { flex-direction: column; gap: 36px; padding: 36px 32px; }
  .guar-stats { justify-content: center; gap: 36px; }
}

@media (max-width: 600px) {
  .guar-card  { padding: 32px 28px; }
  .guar-stats { gap: 24px; }
}


/* ============================================================
   HERO — Campaign Intelligence stat bar + badge
   ============================================================ */

.hero-ci-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 40px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,99,0,.15);
  border-radius: 12px;
  padding: 18px 28px;
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}
.hero-ci-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
  text-align: center;
}
.hero-ci-num {
  font-size: 22px;
  font-weight: 900;
  color: var(--or);
  letter-spacing: -.02em;
  line-height: 1;
}
.hero-ci-num small {
  font-size: 14px;
  font-weight: 600;
}
.hero-ci-lbl {
  font-size: 10px;
  color: rgba(255,255,255,.35);
  margin-top: 3px;
  letter-spacing: .04em;
  white-space: nowrap;
}
.hero-ci-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,.08);
}
.hero-ci-link {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,99,0,.6);
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.05);
  transition: color .2s;
}
.hero-ci-link:hover { color: var(--or); }

@media (max-width: 600px) {
  .hero-ci-bar    { padding: 16px; gap: 8px; }
  .hero-ci-stat   { padding: 0 12px; }
  .hero-ci-num    { font-size: 18px; }
  .hero-ci-divider { height: 24px; }
}

/* ============================================================
   SERVICES — Campaign Intelligence banner + card updates
   ============================================================ */

.svc-ci-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  background: rgba(255,99,0,.05);
  border: 1px solid rgba(255,99,0,.25);
  border-radius: 16px;
  padding: 48px 52px;
  margin: 0 40px 32px;
}
.svc-ci-banner-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--or);
  background: rgba(255,99,0,.1);
  border: 1px solid rgba(255,99,0,.25);
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.svc-ci-banner-title {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  color: var(--wh);
  letter-spacing: -.02em;
  margin: 0 0 12px;
}
.svc-ci-banner-desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--gr2);
  max-width: 520px;
  margin-bottom: 24px;
}
.svc-ci-banner-btn {
  display: inline-block;
  background: var(--or);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 28px;
  border-radius: 7px;
  text-decoration: none;
  transition: opacity .2s, transform .2s;
}
.svc-ci-banner-btn:hover { opacity: .88; transform: translateY(-1px); }

.svc-ci-banner-scores {
  text-align: center;
  flex-shrink: 0;
}
.svc-ci-banner-main {
  background: var(--or);
  border-radius: 12px;
  padding: 20px 28px;
  margin-bottom: 12px;
}
.svc-ci-banner-main-num {
  font-size: 56px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -.04em;
  line-height: 1;
}
.svc-ci-banner-main-lbl {
  font-size: 11px;
  color: rgba(255,255,255,.75);
  margin-top: 4px;
  line-height: 1.4;
}
.svc-ci-banner-main-lbl span {
  opacity: .6;
}
.svc-ci-banner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 10px;
}
.svc-ci-mini {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 8px;
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.svc-ci-mini-val {
  font-size: 18px;
  font-weight: 800;
  color: rgba(255,255,255,.5);
  letter-spacing: -.02em;
}
.svc-ci-hi { color: var(--or) !important; }
.svc-ci-mini-lbl {
  font-size: 9px;
  color: var(--gr);
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
}
.svc-ci-banner-attr {
  font-size: 9px;
  color: rgba(255,255,255,.2);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.svc-link-ci {
  display: inline-block;
  background: rgba(255,99,0,.1);
  color: var(--or) !important;
  border: 1px solid rgba(255,99,0,.25);
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 11px !important;
  font-weight: 700;
  letter-spacing: .05em;
}

@media (max-width: 900px) {
  .svc-ci-banner {
    grid-template-columns: 1fr;
    margin: 0 0 32px;
    padding: 36px 28px;
  }
  .svc-ci-banner-scores { text-align: left; }
  .svc-ci-banner-grid   { max-width: 300px; }
}

/* ============================================================
   CI — 7 Dimensions grid (replaces score strip)
   ============================================================ */
.ci-dims-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 52px;
}
.ci-dim-card {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--bd);
  border-radius: 12px;
  padding: 22px 18px;
  transition: border-color .25s, transform .2s;
}
.ci-dim-card:hover {
  border-color: rgba(255,99,0,.3);
  transform: translateY(-2px);
}
.ci-dim-icon {
  margin-bottom: 12px;
}
.ci-dim-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--wh);
  margin-bottom: 8px;
}
.ci-dim-desc {
  font-size: 12px;
  line-height: 1.6;
  color: var(--gr2);
  margin-bottom: 10px;
}
.ci-dim-brain {
  font-size: 10px;
  color: rgba(255,99,0,.6);
  letter-spacing: .04em;
  font-weight: 600;
}

/* Services CI banner — dimension list variant */
.svc-ci-banner-dims {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.svc-ci-dim {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--wh);
}
.svc-ci-dim-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--or);
  flex-shrink: 0;
}

@media (max-width: 1100px) {
  .ci-dims-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .ci-dims-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FOUNDRY OS® LOGO PLACEMENTS
   ============================================================ */

/* Hero logo on /foundry-os page */
.fos-page-hero-logo {
  width: 260px;
  max-width: 70%;
  height: auto;
  margin-bottom: 32px;
  opacity: .95;
}

/* CI feature block logo + badge row */
.ci-feature-logo-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.ci-feature-logo {
  width: 160px;
  height: auto;
  opacity: .85;
  flex-shrink: 0;
}
.ci-feature-title em {
  font-style: italic;
  color: var(--or);
}

/* CI powered-note row (front page) */
.ci-powered-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.06);
  margin-top: 0;
}
.ci-powered-logo {
  width: 90px;
  height: auto;
  opacity: .35;
  flex-shrink: 0;
}
.ci-powered-note span {
  font-size: 10px;
  color: rgba(255,255,255,.2);
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* CI attr row (foundry-os page) */
.fos-ci-attr {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 10px;
  color: rgba(255,255,255,.2);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.fos-ci-attr-logo {
  width: 80px;
  height: auto;
  opacity: .3;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .fos-page-hero-logo  { width: 200px; }
  .ci-feature-logo     { width: 120px; }
  .ci-feature-logo-wrap { gap: 10px; }
}


/* ============================================================
   CI FEATURE — stat bar (below powered-note)
   ============================================================ */
.ci-stat-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 28px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,99,0,.12);
  border-radius: 12px;
  padding: 20px 32px;
}
.ci-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
  text-align: center;
}
.ci-stat-num {
  font-size: 24px;
  font-weight: 900;
  color: var(--or);
  letter-spacing: -.02em;
  line-height: 1;
}
.ci-stat-num small { font-size: 15px; font-weight: 600; }
.ci-stat-lbl {
  font-size: 10px;
  color: rgba(255,255,255,.35);
  margin-top: 4px;
  letter-spacing: .04em;
  white-space: nowrap;
}
.ci-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.07);
}
.ci-stat-link {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,99,0,.5);
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.05);
  transition: color .2s;
}
.ci-stat-link:hover { color: var(--or); }

@media (max-width: 600px) {
  .ci-stat-bar  { padding: 16px; }
  .ci-stat-item { padding: 0 14px; }
  .ci-stat-num  { font-size: 20px; }
  .ci-stat-divider { height: 28px; }
}

/* ============================================================
   RAPID AUDIT LANDING PAGE  (page-rapid-audit.php)
   ============================================================ */

/* ── Shared inner wrapper ── */
.ra-section-inner {
  max-width: var(--mw, 1160px);
  margin: 0 auto;
  padding: 0 var(--section-px, 24px);
}

/* ── HERO ── */
.ra-hero {
  position: relative;
  padding: 160px var(--section-px, 24px) 120px;
  background: var(--bg, #000);
  border-bottom: 1px solid var(--bd);
  overflow: hidden;
  text-align: center;
}

.ra-hero-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(255,99,0,.14) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.ra-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.ra-hero-badges {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.ra-badge {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 40px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.65);
}

.ra-badge-or {
  background: rgba(255,99,0,.12);
  border-color: rgba(255,99,0,.4);
  color: var(--or);
}

.ra-hero-h1 {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--wh);
  margin: 0 0 28px;
}

.ra-hero-h1 em {
  color: var(--or);
  font-style: normal;
}

.ra-hero-sub {
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.72;
  color: var(--gr2);
  max-width: 780px;
  margin: 0 auto 40px;
}

.ra-hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.ra-cta-btn {
  font-size: 18px;
  padding: 18px 40px;
}

.ra-fine-print {
  font-size: 13px;
  color: var(--gr);
  margin: 0;
}

/* ── COMPARISON ── */
.ra-compare-section {
  padding: var(--section-py, 140px) 0;
  background: #060606;
  border-bottom: 1px solid var(--bd);
}

.ra-compare-head {
  text-align: center;
  margin-bottom: 72px;
}

.ra-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 var(--section-px, 24px);
}

.ra-compare-col {
  border-radius: var(--r);
  padding: 52px 48px;
  border: 1px solid var(--bd);
}

.ra-compare-bad {
  background: rgba(255,255,255,.02);
}

.ra-compare-good {
  background: linear-gradient(160deg, rgba(255,99,0,.09) 0%, rgba(255,99,0,.03) 100%);
  border-color: rgba(255,99,0,.25);
}

.ra-compare-col-header {
  margin-bottom: 28px;
}

.ra-compare-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.ra-label-bad {
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.45);
}

.ra-label-good {
  background: rgba(255,99,0,.15);
  color: var(--or);
}

.ra-compare-tagline {
  font-size: 13px;
  color: var(--gr);
  margin: 0;
}

.ra-compare-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ra-compare-list li {
  font-size: 15px;
  line-height: 1.65;
  padding-left: 28px;
  position: relative;
  color: var(--gr2);
}

.ra-item-no::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: rgba(255,80,80,.5);
  font-size: 12px;
  top: 2px;
}

.ra-item-yes::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--or);
  font-weight: 700;
  font-size: 12px;
  top: 2px;
}

.ra-item-yes { color: rgba(255,255,255,.82); }

.ra-compare-cta {
  display: inline-block;
  background: var(--or);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity .2s;
  letter-spacing: -.01em;
}

.ra-compare-cta:hover { opacity: .88; }

/* ── WHAT'S INSIDE ── */
.ra-inside-section {
  padding: var(--section-py, 140px) 0;
  background: var(--bg, #000);
  border-bottom: 1px solid var(--bd);
}

.ra-section-head {
  text-align: center;
  margin-bottom: 72px;
}

.ra-inside-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.ra-inside-card {
  background: var(--bg2);
  border: 1px solid var(--bd);
  border-radius: var(--r);
  padding: 52px 48px;
  transition: border-color .25s;
}

.ra-inside-card:hover { border-color: rgba(255,99,0,.22); }

.ra-inside-num {
  font-size: 56px;
  font-weight: 900;
  color: rgba(255,99,0,.18);
  line-height: 1;
  letter-spacing: -.04em;
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}

.ra-inside-title {
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 700;
  color: var(--wh);
  margin: 0 0 14px;
  letter-spacing: -.01em;
}

.ra-inside-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--gr2);
  margin: 0 0 20px;
}

.ra-inside-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* ── PROOF STRIP ── */
.ra-proof-section {
  padding: 120px 0;
  background: #060606;
  border-bottom: 1px solid var(--bd);
  text-align: center;
}

.ra-proof-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gr);
  margin: 0 0 64px;
}

.ra-proof-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.ra-proof-stat {
  padding: 0 72px;
}

.ra-proof-divider {
  width: 1px;
  height: 80px;
  background: var(--bd);
  flex-shrink: 0;
}

.ra-proof-num {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  color: var(--or);
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 8px;
}

.ra-proof-num span {
  font-size: .65em;
  vertical-align: super;
}

.ra-proof-lbl {
  font-size: 13px;
  color: var(--gr2);
  letter-spacing: .02em;
}

.ra-proof-disclaimer {
  font-size: 12px;
  color: var(--gr);
  margin: 48px auto 0;
  max-width: 440px;
}

/* ── FINAL CTA ── */
.ra-cta-section {
  padding: var(--section-py, 140px) var(--section-px, 24px);
  background: var(--bg, #000);
  text-align: center;
}

.ra-cta-box {
  max-width: 760px;
  margin: 0 auto;
}

.ra-cta-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--or);
  margin: 0 0 20px;
}

.ra-cta-title {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--wh);
  margin: 0 0 20px;
}

.ra-cta-title em {
  color: var(--or);
  font-style: normal;
}

.ra-cta-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.7;
  color: var(--gr2);
  max-width: 560px;
  margin: 0 auto 36px;
}

.ra-cta-btn-lg {
  font-size: 20px;
  padding: 20px 48px;
  display: inline-block;
  margin-bottom: 18px;
}

.ra-cta-fine {
  font-size: 13px;
  color: var(--gr);
  margin: 0 0 32px;
}

.ra-cta-promise {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,99,0,.07);
  border: 1px solid rgba(255,99,0,.2);
  border-radius: 8px;
  padding: 14px 20px;
  font-size: 13px;
  color: rgba(255,255,255,.65);
  max-width: 560px;
  text-align: left;
}

.ra-cta-promise-icon {
  color: var(--or);
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
}

.ra-cta-promise a {
  color: var(--or);
  text-decoration: none;
}

.ra-cta-promise a:hover { text-decoration: underline; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .ra-proof-stat    { padding: 0 40px; }
}

@media (max-width: 900px) {
  .ra-compare-grid  { grid-template-columns: 1fr; gap: 24px; }
  .ra-inside-grid   { grid-template-columns: 1fr; gap: 24px; }
  .ra-proof-divider { display: none; }
  .ra-proof-stats   { gap: 48px; }
  .ra-proof-stat    { padding: 0; }
  .ra-compare-col   { padding: 40px 36px; }
  .ra-inside-card   { padding: 40px 36px; }
}

@media (max-width: 600px) {
  :root { --section-py: 80px; }
  .ra-hero           { padding: 120px 20px 80px; }
  .ra-hero-h1        { font-size: 32px; }
  .ra-cta-btn        { font-size: 16px; padding: 15px 28px; }
  .ra-compare-col    { padding: 28px 24px; }
  .ra-inside-card    { padding: 28px 24px; }
  .ra-inside-num     { font-size: 40px; }
  .ra-cta-btn-lg     { font-size: 17px; padding: 17px 32px; }
  .ra-proof-section  { padding: 80px 0; }
}

/* ============================================================
   NAV — Rapid Audit pill link
   ============================================================ */
.nav-audit-link {
  display: inline-block;
  padding: 5px 13px;
  border: 1px solid rgba(255, 99, 0, 0.45);
  border-radius: 20px;
  color: var(--or) !important;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  transition: background .2s, border-color .2s;
  white-space: nowrap;
}
.nav-audit-link:hover {
  background: rgba(255, 99, 0, 0.1);
  border-color: var(--or);
}

/* ============================================================
   SERVICE CARD PROOF LINES  (.svc-proof)
   ============================================================ */
.svc-proof {
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255, 99, 0, 0.75);
  letter-spacing: .01em;
  margin: 10px 0 0;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 99, 0, 0.15);
}

/* ============================================================
   AEO/GEO — CITATION MATRIX BLOCK  (.aeo-matrix-*)
   ============================================================ */
.aeo-matrix-block {
  background: rgba(255, 99, 0, 0.04);
  border: 1px solid rgba(255, 99, 0, 0.18);
  border-radius: 16px;
  padding: 52px 56px;
  margin-bottom: 80px;
}
.aeo-matrix-intro {
  font-size: 17px;
  line-height: 1.72;
  color: var(--gr2);
  margin: 0 0 36px;
  max-width: 780px;
}
.aeo-matrix-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 99, 0, 0.7);
  margin: 0 0 16px;
}
.aeo-matrix-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.aeo-matrix-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.aeo-matrix-table th {
  text-align: left;
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gr2);
  border-bottom: 1px solid rgba(255,255,255,.1);
  white-space: nowrap;
}
.aeo-matrix-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  color: var(--gr2);
  font-size: 14px;
}
.aeo-matrix-table tr:last-child td { border-bottom: none; }
.aeo-matrix-table td:first-child { color: var(--wh); font-weight: 500; }
.aeo-engine-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
}
.aeo-dot-gpt { background: #10a37f; }
.aeo-dot-gem { background: #4285f4; }
.aeo-dot-prp { background: #25a9e0; }
.aeo-cell-yes    { color: #4caf50; font-weight: 600; }
.aeo-cell-no     { color: rgba(255,255,255,.25); }
.aeo-cell-change { color: #ff9940; font-weight: 600; }
.aeo-matrix-note {
  font-size: 12px;
  color: var(--gr);
  margin: 16px 0 0;
  font-style: italic;
}
@media (max-width: 768px) {
  .aeo-matrix-block { padding: 36px 28px; }
  .aeo-matrix-intro { font-size: 15px; }
}

/* ============================================================
   FOUNDRY METRICS™ MODULE  (.fm-*)
   ============================================================ */
.fm-section {
  background: #030303;
  padding: var(--section-py, 140px) var(--section-px, 24px);
  border-top: 1px solid var(--bd);
  border-bottom: 1px solid var(--bd);
}
.fm-featured-card {
  background: linear-gradient(135deg, rgba(255,99,0,.07) 0%, rgba(255,99,0,.02) 60%, transparent 100%);
  border: 1px solid rgba(255, 99, 0, 0.28);
  border-radius: 20px;
  padding: 64px 72px;
  position: relative;
  overflow: hidden;
}
.fm-featured-card::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(ellipse, rgba(255,99,0,.1) 0%, transparent 70%);
  pointer-events: none;
}
.fm-badge-row {
  margin-bottom: 36px;
}
.fm-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--or);
  background: rgba(255, 99, 0, 0.1);
  border: 1px solid rgba(255, 99, 0, 0.35);
  border-radius: 40px;
  padding: 6px 16px;
}
.fm-card-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}
.fm-title {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900;
  letter-spacing: -.03em;
  color: var(--wh);
  margin: 0 0 12px;
}
.fm-tagline {
  font-size: 18px;
  font-weight: 600;
  color: var(--or);
  margin: 0 0 24px;
}
.fm-desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--gr2);
  margin: 0 0 16px;
}
.fm-desc-bold {
  color: var(--wh);
  font-weight: 600;
  font-size: 17px;
}
.fm-watch-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.fm-watch-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.fm-watch-icon {
  color: var(--or);
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}
.fm-watch-label {
  color: var(--wh);
  font-weight: 700;
}
.fm-watch-detail {
  color: var(--gr2);
  font-size: 14px;
}
.fm-ownership-block {
  background: rgba(0,0,0,.4);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.fm-ownership-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,99,0,.12);
  border: 1px solid rgba(255,99,0,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--or);
  flex-shrink: 0;
  line-height: 44px;
  text-align: center;
}
.fm-ownership-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gr2);
  margin: 0;
}
.fm-cta-btn {
  display: inline-block;
  background: var(--or);
  color: var(--wh);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 100px;
  transition: opacity .2s, transform .15s;
  white-space: nowrap;
}
.fm-cta-btn:hover { opacity: .88; transform: scale(.97); }
@media (max-width: 1024px) {
  .fm-card-inner { grid-template-columns: 1fr; gap: 40px; }
  .fm-featured-card { padding: 48px 44px; }
}
@media (max-width: 600px) {
  .fm-featured-card { padding: 36px 28px; }
  .fm-ownership-block { padding: 28px 24px; }
}

/* ============================================================
   RAPID AUDIT — Foundry Metrics™ cards (.ra-inside-card-fm)
   ============================================================ */
.ra-inside-card-fm {
  border-color: rgba(255, 99, 0, 0.25);
  background: rgba(255, 99, 0, 0.04);
}
.ra-inside-card-fm:hover {
  border-color: rgba(255, 99, 0, 0.45);
}
.ra-inside-num-fm {
  color: var(--or) !important;
}
.ra-fm-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--or);
  background: rgba(255, 99, 0, 0.1);
  border: 1px solid rgba(255, 99, 0, 0.3);
  border-radius: 40px;
  padding: 4px 12px;
  margin-bottom: 16px;
}

/* ============================================================
   CASE STUDY PAGES (v1.7)
   page-ecommerce-revenue-growth.php
   page-cannabis-dispensary-brooklyn.php
   ============================================================ */

/* --- Hero --- */
.cs-hero {
  background: var(--bg, #000);
  padding: 160px var(--section-px, 24px) 80px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  position: relative;
  overflow: hidden;
}
.cs-hero::after {
  content: '';
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse at center, rgba(255,99,0,.08) 0%, transparent 70%);
  pointer-events: none;
}
.cs-hero-inner {
  max-width: 840px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cs-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.cs-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--or);
  background: rgba(255, 99, 0, 0.1);
  border: 1px solid rgba(255, 99, 0, 0.28);
  border-radius: 40px;
  padding: 5px 14px;
}
.cs-badge-neutral {
  color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.12);
}
.cs-hero-h1 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.02em;
  color: #fff;
  margin: 0 0 28px;
}
.cs-hero-h1 em { color: var(--or); font-style: normal; }
.cs-meta {
  font-size: 14px;
  color: rgba(255,255,255,.45);
  margin-bottom: 48px;
}
.cs-meta a { color: rgba(255,255,255,.55); text-decoration: none; }
.cs-stat-row {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  border: 1px solid rgba(255,99,0,.2);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,99,0,.04);
}
.cs-stat {
  flex: 1;
  min-width: 160px;
  padding: 28px 32px;
  border-right: 1px solid rgba(255,99,0,.15);
}
.cs-stat:last-child { border-right: none; }
.cs-stat-num {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--or);
  line-height: 1;
  margin-bottom: 6px;
}
.cs-stat-lbl {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* --- Shared body wrap --- */
.cs-body {
  background: var(--bg, #000);
}
.cs-section {
  padding: 72px var(--section-px, 24px);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.cs-section:last-of-type { border-bottom: none; }
.cs-section-alt {
  background: #030303;
}
.cs-inner {
  max-width: 840px;
  margin: 0 auto;
}

/* --- TL;DR Box --- */
.cs-tldr {
  border: 1px solid rgba(255,99,0,.22);
  border-left: 4px solid var(--or);
  border-radius: 0 12px 12px 0;
  background: rgba(255,99,0,.04);
  padding: 32px 40px;
  margin: 0 0 56px;
}
.cs-tldr-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--or);
  margin: 0 0 18px;
}
.cs-tldr-row {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,.82);
}
.cs-tldr-row:last-child { margin-bottom: 0; }
.cs-tldr-key {
  font-weight: 700;
  color: rgba(255,255,255,.95);
  white-space: nowrap;
  flex-shrink: 0;
}

/* --- Typography inside sections --- */
.cs-inner h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -.02em;
  margin: 0 0 24px;
  line-height: 1.2;
}
.cs-inner p {
  font-size: 17px;
  line-height: 1.72;
  color: rgba(255,255,255,.78);
  margin: 0 0 22px;
}
.cs-inner strong { color: #fff; font-weight: 600; }
.cs-inner ul, .cs-inner ol {
  padding-left: 0;
  list-style: none;
  margin: 0 0 28px;
}
.cs-inner ul li, .cs-inner ol li {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,.75);
  padding: 8px 0 8px 28px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  position: relative;
}
.cs-inner ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 18px;
  width: 8px; height: 8px;
  background: var(--or);
  border-radius: 50%;
  opacity: .7;
}
.cs-inner ol { counter-reset: cs-ol; }
.cs-inner ol li { counter-increment: cs-ol; }
.cs-inner ol li::before {
  content: counter(cs-ol);
  position: absolute;
  left: 0; top: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--or);
}
.cs-section-intro {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,.65);
  margin-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding-bottom: 40px;
}

/* --- What We Did items --- */
.cs-work-item {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.cs-work-item:last-child { border-bottom: none; }
.cs-work-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 10px;
}
.cs-work-title {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.35;
}
.cs-work-body {
  font-size: 15.5px;
  line-height: 1.68;
  color: rgba(255,255,255,.72);
  margin: 0;
}

/* --- Results Table --- */
.cs-table-wrap {
  overflow-x: auto;
  margin: 32px 0;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.09);
}
.cs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.cs-table thead tr {
  background: rgba(255,99,0,.12);
}
.cs-table thead th {
  padding: 14px 20px;
  text-align: left;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--or);
  border-bottom: 1px solid rgba(255,99,0,.25);
  white-space: nowrap;
}
.cs-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.cs-table tbody tr:last-child { border-bottom: none; }
.cs-table tbody tr:nth-child(even) { background: rgba(255,255,255,.02); }
.cs-table td {
  padding: 16px 20px;
  color: rgba(255,255,255,.78);
  vertical-align: top;
  line-height: 1.5;
}
.cs-table td strong { color: #fff; }
.cs-table td.cs-td-hi { color: var(--or); font-weight: 700; font-size: 16px; }
.cs-how {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 24px 28px;
  margin-top: 24px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,.6);
}
.cs-how strong { color: rgba(255,255,255,.85); }

/* --- What didn't work --- */
.cs-miss {
  background: rgba(255,255,255,.03);
  border-left: 3px solid rgba(255,255,255,.2);
  border-radius: 0 8px 8px 0;
  padding: 24px 28px;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,.72);
  margin: 0;
}

/* --- FAQ --- */
.cs-faq-item {
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 28px 0;
}
.cs-faq-item:last-child { border-bottom: none; }
.cs-faq-q {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
}
.cs-faq-a {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,.7);
  margin: 0;
}
.cs-faq-a a { color: var(--or); text-decoration: none; }
.cs-faq-a a:hover { opacity: .8; }

/* --- Attribution note --- */
.cs-attrib {
  font-size: 13px;
  color: rgba(255,255,255,.4);
  line-height: 1.6;
  margin: 40px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.cs-attrib a { color: rgba(255,255,255,.55); }

/* --- CTA Section --- */
.cs-cta-section {
  background: var(--bg2, #0c0c0c);
  padding: 100px var(--section-px, 24px);
  text-align: center;
  border-top: 1px solid rgba(255,99,0,.15);
}
.cs-cta-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 20px;
}
.cs-cta-h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin: 0 0 16px;
}
.cs-cta-sub {
  font-size: 17px;
  color: rgba(255,255,255,.55);
  margin: 0 0 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cs-cta-btn {
  display: inline-block;
  background: var(--or);
  color: #000;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: .01em;
  padding: 18px 44px;
  border-radius: 100px;
  text-decoration: none;
  transition: opacity .2s, transform .15s;
}
.cs-cta-btn:hover { opacity: .88; transform: scale(.97); }
.cs-cta-fine {
  font-size: 13px;
  color: rgba(255,255,255,.35);
  margin-top: 20px;
}

/* --- Responsive --- */
@media (max-width: 860px) {
  .cs-stat-row { flex-direction: column; }
  .cs-stat { border-right: none; border-bottom: 1px solid rgba(255,99,0,.15); }
  .cs-stat:last-child { border-bottom: none; }
  .cs-tldr { padding: 24px 24px; }
  .cs-hero { padding: 140px var(--section-px, 24px) 60px; }
}
@media (max-width: 600px) {
  .cs-tldr-row { flex-direction: column; gap: 2px; }
  .cs-table th, .cs-table td { padding: 12px 14px; font-size: 13px; }
}
