/*
 * ChiefAI homepage — page-specific decorative CSS.
 *
 * Loaded conditionally on page 3171 (home) via functions.php.
 * Tokens + shared component classes (.aaas-eyebrow, .aaas-problem-card,
 * .aaas-quote, .aaas-section-num, .aaas-btn family, .reveal) come from
 * chiefai-design-system.css (site-wide).
 *
 * This file covers the visual treatments unique to the homepage:
 *   - Hero layout + sonar SVG + mock tool card + floating badge
 *   - Metrics strip (compressed dark band directly under hero)
 *   - Tension section (sticky pull quote, 2-col)
 *   - Compact product teaser (dark navy "what it is" block)
 *   - Industries 2x2 grid with outline letter marks
 *   - Tools section (near-black "experience AI" block with Perfect Prompt preview)
 *   - Choice manifesto (radial orange glow + grid overlay)
 *   - Founder (quote + headshot placeholder)
 *   - AI Readiness sample score card
 *   - Final CTA (cream warm close)
 */

/* ============================================================
   HERO — homepage CONSUMES canonical .aaas-hero (chiefai-design-system.css).
   Hero v1 spec (padding, eyebrow gap, H1 weight/size/16ch/em-orange-800,
   lede 44ch, button gap) lives there. This file keeps ONLY homepage-unique
   stuff: 2-column grid (text + tool mock), sonar rings, mock cards, metric strip.
   ============================================================ */
.chiefai-home .hero {
  overflow: hidden;
}
.chiefai-home .hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (min-width: 1000px) {
  .chiefai-home .hero-grid { grid-template-columns: 1.15fr 1fr; gap: 80px; }
}
.chiefai-home ul.hero-pills,
.chiefai-home .hero-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-family: var(--cai-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cai-slate);
  list-style: none;
  padding-left: 0;
  margin: 0;
}
/* Force visible breathing room between hero CTA stack and the proof pills.
   Higher-specificity + !important to beat Gutenberg's wp-block-list reset. */
.chiefai-home .hero-grid .hero-copy ul.hero-pills,
.chiefai-home .hero-grid .hero-copy .hero-pills {
  margin-top: 48px !important;
}
.chiefai-home .hero-pills > li,
.chiefai-home .hero-pills > span {
  padding: 6px 12px;
  border: 1px solid var(--cai-rule);
  border-radius: 2px;
  background: #fff;
  list-style: none;
}

/* Sonar rings — positioned in the gap between the two hero columns,
   with the central pulsing dot sitting roughly between the text and image. */
.chiefai-home .hero { overflow: visible; }
.chiefai-home .hero-grid { position: relative; }
.chiefai-home .hero-grid > .wp-block-column {
  position: relative;
  z-index: 2;
}
.chiefai-home .hero-sonar {
  position: absolute !important;
  top: 50%;
  left: 48%;  /* slightly left of the column seam so the orb reads as the gap, not overlapping the image */
  transform: translate(-50%, -50%);
  width: 620px;
  height: 620px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.7;
}
@media (max-width: 999px) {
  .chiefai-home .hero-sonar {
    top: auto;
    bottom: -20px;
    left: 50%;
    width: 380px;
    height: 380px;
    opacity: 0.35;
  }
}
.chiefai-home .hero-sonar svg { width: 100%; height: 100%; display: block; }
.chiefai-home .hero-sonar .ring {
  fill: none;
  stroke: var(--cai-orange);
  stroke-width: 1;
  transform-origin: center;
  animation: cai-hero-pulse-ring 3.5s cubic-bezier(.1,.8,.3,1) infinite;
  opacity: 0;
}
.chiefai-home .hero-sonar .ring:nth-of-type(2) { animation-delay: 0.7s; }
.chiefai-home .hero-sonar .ring:nth-of-type(3) { animation-delay: 1.4s; }
.chiefai-home .hero-sonar .ring:nth-of-type(4) { animation-delay: 2.1s; }
@keyframes cai-hero-pulse-ring {
  /* GPU-composited: only transform + opacity. */
  0%   { transform: scale(0.2); opacity: 0; }
  15%  { opacity: 0.85; }
  80%  { opacity: 0.15; }
  100% { transform: scale(1.2); opacity: 0; }
}

/* Hero visual: HTML composite of two AI tool mocks layered together.
   Front: Salesforce Org Health Report with findings rows. Back: Resume-to-JD
   Matcher peeking out from behind-right. Both feel like real product screens.
   Plus a small mono caption beneath. */
.chiefai-home .hero-tool-wrap {
  position: relative;
  margin: 0;
}
.chiefai-home .hero-tools-mock {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 520px;
  margin: 0 auto 24px;
}
.chiefai-home .hero-mock-card {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--cai-rule);
  padding: 22px 24px 20px;
  font-family: var(--cai-body);
  font-size: 14px;
  color: var(--cai-charcoal);
  display: flex;
  flex-direction: column;
  transition: transform .6s cubic-bezier(.2,.8,.2,1), box-shadow .6s;
}
.chiefai-home .hero-mock-card.front {
  bottom: 0;
  left: 0;
  width: 92%;
  z-index: 2;
  transform: rotate(-1.5deg);
  box-shadow: 0 40px 80px -30px rgba(15,42,71,0.35),
              0 10px 32px rgba(15,42,71,0.12),
              0 1px 0 rgba(15,42,71,0.04);
}
.chiefai-home .hero-mock-card.back {
  top: 0;
  right: 0;
  width: 84%;
  z-index: 1;
  opacity: 0.82;
  transform: rotate(3deg) scale(0.95);
  box-shadow: 0 20px 40px -20px rgba(15,42,71,0.22);
}
.chiefai-home .hero-tool-wrap:hover .hero-mock-card.front {
  transform: rotate(-1.5deg) translateY(-4px);
  box-shadow: 0 50px 100px -30px rgba(15,42,71,0.42),
              0 16px 40px rgba(15,42,71,0.14);
}
.chiefai-home .hero-tool-wrap:hover .hero-mock-card.back {
  transform: rotate(3deg) scale(0.95) translate(6px, -6px);
}

.chiefai-home .hero-mock-card .mock-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--cai-rule);
}
.chiefai-home .hero-mock-card .mock-meta {
  font-family: var(--cai-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cai-slate-label);
  margin-bottom: 4px;
}
.chiefai-home .hero-mock-card .mock-title {
  font-family: var(--cai-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--cai-navy);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.chiefai-home .hero-mock-card .mock-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.22);
  border-radius: 100px;
  font-family: var(--cai-mono);
  font-size: 8.5px;
  font-weight: 700;
  color: #0f8a43;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.chiefai-home .hero-mock-card .mock-live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16,185,129,0.5);
  animation: cai-pulse-dot 1.8s ease-in-out infinite;
}

.chiefai-home .hero-mock-card .mock-rows {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.chiefai-home .hero-mock-card .mock-row {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--cai-rule);
  font-size: 12.5px;
}
.chiefai-home .hero-mock-card .mock-row:last-child { border-bottom: none; }
.chiefai-home .hero-mock-card .mock-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cai-navy-soft);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--cai-mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.chiefai-home .hero-mock-card .mock-avatar.alt {
  background: rgba(245,130,32,0.14);
  color: var(--cai-orange);
  border: 1px solid rgba(245,130,32,0.3);
}
.chiefai-home .hero-mock-card .mock-label {
  font-weight: 500;
  color: var(--cai-charcoal);
  font-size: 12.5px;
  line-height: 1.35;
}
.chiefai-home .hero-mock-card .mock-label em {
  font-style: normal;
  font-family: var(--cai-mono);
  font-size: 9.5px;
  color: var(--cai-slate);
  display: block;
  margin-top: 2px;
  letter-spacing: 0.06em;
}
.chiefai-home .hero-mock-card .mock-score {
  font-family: var(--cai-mono);
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
  background: rgba(15,42,71,0.08);
  color: var(--cai-navy);
  letter-spacing: 0.04em;
}
.chiefai-home .hero-mock-card .mock-score-high { background: rgba(245,130,32,0.12); color: var(--cai-orange); }
.chiefai-home .hero-mock-card .mock-score-med { background: rgba(15,42,71,0.08); color: var(--cai-navy); }
.chiefai-home .hero-mock-card .mock-foot {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--cai-rule);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--cai-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cai-slate);
}
.chiefai-home .hero-mock-card .mock-foot .mock-count {
  color: var(--cai-navy);
  font-weight: 700;
}

/* Caption beneath the mock */
.chiefai-home .hero-image-caption {
  font-family: var(--cai-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cai-slate);
  text-align: center;
  margin: 0;
}
.chiefai-home .hero-image-caption strong {
  color: var(--cai-orange);
  font-weight: 700;
}

/* Keyframe (green pulse dot) — mirror the one used in metrics and perfect-prompt sections */
@keyframes cai-pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.5); }
  50%      { box-shadow: 0 0 0 7px rgba(16,185,129,0); }
}

/* Mobile: stack the cards vertically, drop rotations */
@media (max-width: 899px) {
  .chiefai-home .hero-tools-mock {
    aspect-ratio: auto;
    max-width: 420px;
  }
  .chiefai-home .hero-mock-card { position: relative; width: 100%; }
  .chiefai-home .hero-mock-card.front { transform: none; margin-top: 16px; }
  .chiefai-home .hero-mock-card.back { transform: none; opacity: 1; }
}

/* ============================================================
   METRICS STRIP (compressed band under hero)
   ============================================================ */
.chiefai-home .metrics-strip {
  background: var(--cai-navy);
  color: var(--cai-cream);
  padding: 34px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.chiefai-home .metrics-grid.wp-block-columns,
.chiefai-home .metrics-grid {
  gap: 24px;
  margin: 0;
}
.chiefai-home .metric {
  display: flex !important;
  align-items: baseline;
  gap: 16px;
  margin: 0;
  flex-basis: 0;
  flex-grow: 1;
}
@media (min-width: 700px) {
  .chiefai-home .metric {
    padding-left: 28px;
    border-left: 1px solid rgba(255,255,255,0.12);
  }
  .chiefai-home .metric:first-child { border-left: none; padding-left: 0; }
}
.chiefai-home .metric .value {
  font-family: var(--cai-heading);
  font-weight: 800;
  font-size: clamp(28px, 3vw, 38px);
  color: var(--cai-orange);
  letter-spacing: -0.03em;
  line-height: 1;
  white-space: nowrap;
  margin: 0;
}
.chiefai-home .metric .label {
  font-family: var(--cai-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  margin: 0;
  color: rgba(250,250,250,0.6);
  text-transform: uppercase;
}

/* ============================================================
   TENSION
   ============================================================ */
.chiefai-home .tension-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: start;
}
@media (min-width: 900px) {
  .chiefai-home .tension-grid { grid-template-columns: 1fr 1fr; gap: 100px; }
  .chiefai-home .tension-grid .tension-quote-wrap { position: sticky; top: 80px; }
}
.chiefai-home .tension-quote {
  font-family: var(--cai-heading);
  font-weight: 300;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--cai-navy);
  margin: 0;
  max-width: 20ch;
}
.chiefai-home .tension-quote em {
  font-style: normal;
  color: var(--cai-orange);
  font-weight: 800;
}
.chiefai-home .tension-body p + p { margin-top: 24px; }

/* ============================================================
   PROBLEMS (after-link under grid)
   ============================================================ */
.chiefai-home .problems-after {
  margin-top: 48px;
  font-family: var(--cai-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--cai-navy);
  text-align: center;
}
.chiefai-home .problems-after a {
  color: var(--cai-orange);
  margin-left: 10px;
  border-bottom: 1px solid rgba(245,130,32,0.4);
  padding-bottom: 2px;
  transition: border-color .2s;
}
.chiefai-home .problems-after a:hover { border-bottom-color: var(--cai-orange); }

/* ============================================================
   COMPACT PRODUCT TEASER (replaces old timeline)
   ============================================================ */
.chiefai-home .product-compact {
  padding: clamp(90px, 11vw, 140px) 0;
  background: var(--cai-navy);
  color: var(--cai-cream);
}
.chiefai-home .product-compact .aaas-section-num {
  -webkit-text-stroke-color: rgba(255,255,255,0.22);
  font-size: clamp(80px, 10vw, 140px);
  margin-bottom: 28px;
  line-height: 0.8;
}
/* Dark-bg section: lede + heading colors lifted for legibility on navy */
.chiefai-home .product-compact .aaas-section-head .aaas-section-head-title,
.chiefai-home .product-compact .aaas-display { color: var(--cai-cream); }
.chiefai-home .product-compact .aaas-section-head .aaas-lede,
.chiefai-home .product-compact .aaas-section-head-lede { color: rgba(250,250,250,0.88); }
.chiefai-home .product-compact .aaas-eyebrow { color: var(--cai-orange); }
.chiefai-home .product-compact .aaas-display { color: var(--cai-cream); }
.chiefai-home .product-compact .aaas-display em { font-style: normal; color: var(--cai-orange); font-weight: 500; }
.chiefai-home .product-compact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}
@media (min-width: 900px) {
  .chiefai-home .product-compact-grid { grid-template-columns: 1fr 0.9fr; gap: 100px; }
}
.chiefai-home .pc-beats {
  list-style: none !important;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.chiefai-home .pc-beats li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  align-items: baseline;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  list-style: none;
}
.chiefai-home .pc-beats li::before { content: none !important; }
.chiefai-home .pc-beats li:first-child { border-top: none; }
.chiefai-home .pc-beats .pc-beat-label {
  font-family: var(--cai-mono);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cai-orange);
  font-weight: 600;
}
.chiefai-home .pc-beats .pc-beat-text {
  color: rgba(250,250,250,0.92);
  font-size: 17px;
  line-height: 1.55;
}
.chiefai-home .pc-beats .pc-beat-text strong {
  color: var(--cai-cream);
  font-weight: 600;
}

/* Centered horizontal CTA pair in the What It Is section
   (restructured 2026-05-04 — old 2-col layout used a full-width column
   stack; new layout is centered side-by-side at content width) */
.chiefai-home .product-compact .wp-block-buttons {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.chiefai-home .product-compact .wp-block-buttons .wp-block-button {
  width: auto;
}
.chiefai-home .product-compact .wp-block-buttons .wp-block-button__link {
  width: auto;
  padding-left: 28px;
  padding-right: 28px;
  justify-content: center;
  text-align: center;
}
@media (max-width: 599px) {
  .chiefai-home .product-compact .wp-block-buttons { flex-direction: column; align-items: stretch; }
  .chiefai-home .product-compact .wp-block-buttons .wp-block-button,
  .chiefai-home .product-compact .wp-block-buttons .wp-block-button__link { width: 100%; }
}

/* ============================================================
   INDUSTRIES — 2x2 grid with outline letter marks
   ============================================================ */
.chiefai-home .industries-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 900px) {
  .chiefai-home .industries-grid { grid-template-columns: 1fr 1fr; }
}
.chiefai-home .industry-card {
  position: relative;
  background: #fff;
  padding: 48px 44px 52px;
  border: 1px solid var(--cai-rule);
  border-radius: 10px;
  overflow: hidden;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s, border-color .4s;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.chiefai-home .industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 80px -30px rgba(15,42,71,0.22);
  border-color: var(--cai-navy);
}
.chiefai-home .industry-card .mark {
  position: absolute;
  top: -24px;
  right: -8px;
  font-family: var(--cai-heading);
  font-weight: 900;
  font-size: 280px;
  line-height: 1;
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 1px var(--cai-rule);
  pointer-events: none;
  transition: -webkit-text-stroke-color .5s;
  user-select: none;
}
.chiefai-home .industry-card:hover .mark {
  -webkit-text-stroke-color: rgba(245,130,32,0.3);
}
.chiefai-home .industry-card .head { position: relative; z-index: 2; margin-bottom: 24px; }
.chiefai-home .industry-card .mono-label {
  font-family: var(--cai-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cai-orange);
  font-weight: 700;
  display: block;
  margin-bottom: 20px;
}
.chiefai-home .industry-card .head h3 {
  font-family: var(--cai-heading);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  color: var(--cai-navy);
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.chiefai-home .industry-card .head p {
  color: var(--cai-charcoal);
  font-size: 16px;
  line-height: 1.6;
  max-width: 42ch;
  margin: 0;
}
.chiefai-home .industry-card .tools {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding-top: 32px;
  border-top: 1px solid var(--cai-rule);
}
.chiefai-home .industry-card .tools-label {
  font-family: var(--cai-mono);
  font-size: 9.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cai-slate);
  margin-bottom: 14px;
}
.chiefai-home .industry-card .tools-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none !important;
}
.chiefai-home .industry-card .tools-list li {
  font-family: var(--cai-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--cai-navy);
  padding: 6px 12px;
  border: 1px solid var(--cai-rule);
  border-radius: 3px;
  background: var(--cai-cream-warm);
  transition: background .3s, border-color .3s;
  list-style: none;
}
.chiefai-home .industry-card .tools-list li::before { content: none !important; }
.chiefai-home .industry-card:hover .tools-list li {
  border-color: rgba(245,130,32,0.3);
  background: rgba(245,130,32,0.05);
}
.chiefai-home .industry-card .link {
  font-family: var(--cai-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cai-orange);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 2;
}
.chiefai-home .industry-card .link::after {
  content: "\2192";
  transition: transform .3s;
}
.chiefai-home .industry-card:hover .link::after { transform: translateX(6px); }

/* ============================================================
   TOOLS / EXPERIENCE AI — near-black with terminal aesthetic
   ============================================================ */
.chiefai-home .tools-section {
  background: var(--cai-ink);
  color: var(--cai-cream);
  padding: clamp(100px, 13vw, 180px) 0;
  position: relative;
  overflow: hidden;
}
.chiefai-home .tools-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(245,130,32,0.08), transparent 55%),
    radial-gradient(ellipse at 85% 80%, rgba(15,42,71,0.5), transparent 60%);
  pointer-events: none;
}
.chiefai-home .tools-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.8;
  pointer-events: none;
}
.chiefai-home .tools-section .aaas-wrap,
.chiefai-home .tools-section > .wp-block-group__inner-container { position: relative; z-index: 2; }
.chiefai-home .tools-section .aaas-display { color: var(--cai-cream); }
.chiefai-home .tools-section .aaas-display em { font-style: normal; color: var(--cai-orange); font-weight: 500; }
.chiefai-home .tools-section .aaas-section-num { -webkit-text-stroke-color: rgba(255,255,255,0.2); }
.chiefai-home .tools-intro {
  color: rgba(250,250,250,0.78);
  font-size: 18px;
  line-height: 1.65;
  max-width: 56ch;
}
.chiefai-home .tools-tiles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 80px;
}
@media (min-width: 900px) {
  .chiefai-home .tools-tiles { grid-template-columns: 1.3fr 1fr; gap: 32px; }
}
.chiefai-home .tool-tile {
  position: relative;
  padding: 36px 34px 36px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color .4s, background .4s;
  display: block;
}
.chiefai-home .tool-tile:hover {
  border-color: rgba(245,130,32,0.35);
  background: rgba(245,130,32,0.02);
}
.chiefai-home .tool-tile .tile-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 28px;
}
.chiefai-home .tool-tile .tile-head .left {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--cai-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cai-orange);
  font-weight: 700;
}
.chiefai-home .tool-tile .tile-head .left::before {
  content: "";
  display: inline-block;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--cai-orange);
  animation: cai-pulse-dot-orange 1.8s ease-in-out infinite;
  /* GPU-composited: transform + opacity only (replaced box-shadow halo).
     Slight scale-and-fade on the dot itself instead of a radial halo —
     visually similar pulse rhythm without the non-composited animation. */
  will-change: transform, opacity;
}
@keyframes cai-pulse-dot-orange {
  0%, 100% { transform: scale(1);   opacity: 1; }
  50%      { transform: scale(1.5); opacity: 0.55; }
}
.chiefai-home .tool-tile .tile-head .left.muted { color: rgba(250,250,250,0.55); }
.chiefai-home .tool-tile .tile-head .left.muted::before { background: rgba(250,250,250,0.4); animation: none; box-shadow: none; }
.chiefai-home .tool-tile .status-chip {
  font-family: var(--cai-mono);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,250,250,0.5);
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px;
}
.chiefai-home .tool-tile .status-chip.live { color: var(--cai-orange); border-color: rgba(245,130,32,0.35); }
.chiefai-home .tool-tile h3 {
  font-family: var(--cai-heading);
  font-weight: 700;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--cai-cream);
  margin: 0 0 16px;
}
.chiefai-home .tool-tile p.tile-body {
  color: rgba(250,250,250,0.72);
  font-size: 15.5px;
  line-height: 1.7;
  margin: 0 0 28px;
  max-width: 52ch;
}
.chiefai-home .pp-preview {
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 16px 18px;
  font-family: var(--cai-mono);
  font-size: 13px;
  line-height: 1.55;
  color: rgba(250,250,250,0.88);
  margin-bottom: 24px;
}
.chiefai-home .pp-preview .pp-step {
  display: flex;
  gap: 10px;
  padding: 6px 0;
}
.chiefai-home .pp-preview .pp-step .tag {
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cai-slate-label);
  font-weight: 700;
  width: 62px;
  flex-shrink: 0;
  padding-top: 2px;
}
.chiefai-home .pp-preview .pp-step.out .tag { color: var(--cai-orange); }
.chiefai-home .pp-preview .pp-step .text { color: rgba(250,250,250,0.86); flex: 1; }
.chiefai-home .pp-preview .pp-step.in .text { color: rgba(250,250,250,0.6); }
.chiefai-home .pp-preview .pp-step.out .text .accent { color: var(--cai-orange); font-weight: 700; }
.chiefai-home .pp-preview .pp-caret {
  display: inline-block;
  width: 7px;
  height: 14px;
  background: var(--cai-orange);
  margin-left: 2px;
  vertical-align: middle;
  animation: cai-caret-blink 1.1s steps(2) infinite;
}
@keyframes cai-caret-blink { 0%, 50% { opacity: 1; } 50.01%, 100% { opacity: 0; } }
.chiefai-home .tool-tile .tile-cta {
  font-family: var(--cai-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cai-orange);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.chiefai-home .tool-tile .tile-cta::after {
  content: "\2192";
  transition: transform .3s;
}
.chiefai-home .tool-tile:hover .tile-cta::after { transform: translateX(6px); }
.chiefai-home .pipeline-list {
  list-style: none !important;
  padding: 0;
  margin: 24px 0 28px;
}
.chiefai-home .pipeline-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  list-style: none;
}
.chiefai-home .pipeline-list li::before { content: none !important; }
.chiefai-home .pipeline-list li:last-child { border-bottom: none; }
.chiefai-home .pipeline-list .name {
  font-family: var(--cai-mono);
  font-size: 13px;
  color: rgba(250,250,250,0.88);
  font-weight: 500;
}
.chiefai-home .pipeline-list .name em {
  font-style: normal;
  display: block;
  font-size: 11px;
  color: rgba(250,250,250,0.5);
  font-weight: 400;
  margin-top: 2px;
  letter-spacing: 0.04em;
}
.chiefai-home .pipeline-list .s {
  font-family: var(--cai-mono);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,250,250,0.45);
  padding: 3px 8px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  align-self: center;
  white-space: nowrap;
}
.chiefai-home .pipeline-list .s.build { color: var(--cai-orange); border-color: rgba(245,130,32,0.35); }

/* ============================================================
   THE CHOICE — full-bleed dark + radial glow + grid overlay
   ============================================================ */
.chiefai-home .choice-section {
  background: var(--cai-navy-deep);
  color: var(--cai-cream);
  padding: clamp(120px, 15vw, 200px) 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.chiefai-home .choice-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(245,130,32,0.22), transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(245,130,32,0.08), transparent 55%);
  pointer-events: none;
}
.chiefai-home .choice-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.6;
  pointer-events: none;
}
.chiefai-home .choice-section > .wp-block-group__inner-container,
.chiefai-home .choice-section .aaas-wrap { position: relative; z-index: 2; }
.chiefai-home .choice-section h2 {
  font-family: var(--cai-heading);
  font-weight: 800;
  font-size: clamp(40px, 7vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--cai-cream);
  max-width: 18ch;
  margin: 0 auto 40px;
}
.chiefai-home .choice-section h2 em {
  font-style: normal;
  color: var(--cai-orange);
  font-weight: 800;
}
.chiefai-home .choice-section p {
  font-size: 18.5px;
  line-height: 1.55;
  color: rgba(250,250,250,0.82);
  max-width: 54ch;
  margin: 0 auto 56px;
}

/* ============================================================
   FOUNDER
   ============================================================ */
.chiefai-home .founder-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 800px) {
  .chiefai-home .founder-grid { grid-template-columns: 260px 1fr; gap: 72px; }
}
.chiefai-home .founder-photo {
  width: 240px;
  height: 240px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 24px 48px -20px rgba(15,42,71,0.3);
}
.chiefai-home .founder-photo img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
@media (min-width: 800px) { .chiefai-home .founder-photo { margin: 0; } }
.chiefai-home .founder-quote blockquote {
  font-family: var(--cai-heading);
  font-weight: 300;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--cai-navy);
  margin: 0 0 40px;
  padding-left: 24px;
  border-left: 3px solid var(--cai-orange);
  max-width: 24ch;
}
.chiefai-home .founder-quote blockquote em {
  font-style: normal;
  font-weight: 800;
  color: var(--cai-orange);
}
.chiefai-home .founder-bio-line {
  font-family: var(--cai-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--cai-slate);
  line-height: 1.9;
  max-width: 46ch;
  margin: 0;
}
.chiefai-home .founder-bio-name,
.chiefai-home .founder-bio strong {
  color: var(--cai-navy);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.12em;
  margin: 0 0 4px;
  text-transform: uppercase;
  font-family: var(--cai-mono);
}
.chiefai-home .founder-bio-name strong { font-weight: 600; }
.chiefai-home .founder-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  font-family: var(--cai-mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cai-orange);
  font-weight: 700;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(245,130,32,0.4);
}
.chiefai-home .founder-link::after { content: "\2192"; transition: transform .3s; }
.chiefai-home .founder-link:hover::after { transform: translateX(6px); }

/* ============================================================
   AI READINESS — sample score card
   ============================================================ */
.chiefai-home .readiness-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}
@media (min-width: 900px) { .chiefai-home .readiness-grid { grid-template-columns: 1fr 1.1fr; gap: 80px; } }
.chiefai-home .readiness-grid .readiness-copy p.small {
  font-family: var(--cai-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cai-slate);
  margin: 28px 0 40px;
}
.chiefai-home .score-card {
  position: relative;
  background: var(--cai-navy);
  color: var(--cai-cream);
  padding: 48px 40px;
  border-radius: 12px;
  box-shadow: 0 40px 80px -30px rgba(15,42,71,0.35);
}
.chiefai-home .score-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 15% 20%, rgba(245,130,32,0.15), transparent 55%);
  border-radius: 12px;
  pointer-events: none;
}
.chiefai-home .score-card > * { position: relative; z-index: 2; }
.chiefai-home .score-card p { margin: 0; }
.chiefai-home .score-card .card-label {
  font-family: var(--cai-mono);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cai-orange);
  font-weight: 700;
  margin: 0 0 20px !important;
}
.chiefai-home .score-card .card-headline {
  font-family: var(--cai-heading);
  font-weight: 300;
  font-size: 22px;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--cai-cream);
  margin: 0 0 28px !important;
  max-width: 22ch;
}
.chiefai-home .score-card .score-main {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 28px;
}
.chiefai-home .score-card .score-numeral {
  font-family: var(--cai-heading);
  font-weight: 800;
  font-size: 96px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--cai-orange);
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.chiefai-home .score-card .score-numeral .denom {
  font-size: 0.3em;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  font-style: normal;
}
.chiefai-home .score-card .score-verdict {
  font-family: var(--cai-heading);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.35;
  color: rgba(250,250,250,0.85);
  max-width: 22ch;
}
.chiefai-home .score-card .score-verdict em {
  font-style: normal;
  color: var(--cai-orange);
  font-weight: 600;
}
.chiefai-home .score-card .score-bars { display: flex; flex-direction: column; gap: 16px; }
.chiefai-home .score-card .score-bar .bar-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 8px;
}
.chiefai-home .score-card .score-bar .dim-name {
  font-family: var(--cai-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: rgba(250,250,250,0.7);
  text-transform: uppercase;
}
.chiefai-home .score-card .score-bar .dim-score {
  font-family: var(--cai-mono);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--cai-cream);
}
.chiefai-home .score-card .score-bar .bar {
  position: relative;
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 100px;
  overflow: hidden;
}
.chiefai-home .score-card .score-bar .fill {
  position: absolute;
  inset: 0 auto 0 0;
  background: linear-gradient(90deg, var(--cai-orange), rgba(245,130,32,0.5));
  border-radius: 100px;
  transform-origin: left;
  animation: cai-bar-fill 1.4s cubic-bezier(.2,.8,.2,1) both;
}
@keyframes cai-bar-fill {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
.chiefai-home .score-card .score-bar:nth-child(2) .fill { animation-delay: .15s; }
.chiefai-home .score-card .score-bar:nth-child(3) .fill { animation-delay: .3s; }
.chiefai-home .score-card .score-bar:nth-child(4) .fill { animation-delay: .45s; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.chiefai-home .final-cta { background: var(--cai-cream); padding: clamp(100px, 13vw, 180px) 0; }
.chiefai-home .final-cta .final-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.chiefai-home .final-cta h2 {
  font-family: var(--cai-heading);
  font-weight: 800;
  font-size: clamp(40px, 6.5vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--cai-navy);
  max-width: 16ch;
  margin: 0 auto 32px;
}
.chiefai-home .final-cta h2 em {
  font-style: normal;
  color: var(--cai-orange);
  font-weight: 800;
}
.chiefai-home .final-cta .final-ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.chiefai-home .final-cta .final-meta {
  font-family: var(--cai-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cai-slate);
}

/* ============================================================
   Typography classes for block-attr-free content
   (avoids Gutenberg recovery on multi-property inline styles)
   ============================================================ */
.chiefai-home .hero-sub {
  color: #1F2937;
  font-size: 19px;
  line-height: 1.55;
}
.chiefai-home .tension-body { font-size: 17.5px; line-height: 1.7; }
.chiefai-home .product-compact .aaas-display,
.chiefai-home .product-compact h2.aaas-display { color: var(--cai-cream); margin-top: 24px; }
.chiefai-home .pc-lede {
  color: rgba(250,250,250,0.88);
  margin-top: 32px;
  font-size: 19px;
  line-height: 1.55;
}
.chiefai-home .pc-more-link {
  margin-top: 24px;
  font-family: var(--cai-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,250,250,0.55);
}
.chiefai-home .pc-more-link a {
  color: var(--cai-orange);
  border-bottom: 1px solid rgba(245,130,32,0.4);
  padding-bottom: 2px;
  text-decoration: none;
}
.chiefai-home .tools-section .aaas-display { color: var(--cai-cream); }
.chiefai-home .choice-section .aaas-display,
.chiefai-home .choice-section h2.choice-title { color: var(--cai-cream); line-height: 0.98; }
.chiefai-home .choice-section .choice-lede {
  color: rgba(250,250,250,0.82);
  font-size: 18.5px;
  line-height: 1.55;
}
.chiefai-home .readiness-body { font-size: 17.5px; line-height: 1.7; }

/* CTA pair: stack vertically with equal full widths in narrow column
   contexts (readiness sample card left col, explicit cta-pair-stacked).
   Honors editor-set wp-block-button__width-100 too.
   Choice section is intentionally NOT in this list — it uses its natural
   flex+center layout (buttons sized to content, centered side-by-side). */
.chiefai-home .cta-pair-stacked.wp-block-buttons,
.chiefai-home .readiness-copy .wp-block-buttons {
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  width: 100%;
}
.chiefai-home .cta-pair-stacked .wp-block-button,
.chiefai-home .cta-pair-stacked .wp-block-button__link,
.chiefai-home .readiness-copy .wp-block-button,
.chiefai-home .readiness-copy .wp-block-button__link,
.chiefai-home .wp-block-button__width-100.wp-block-button,
.chiefai-home .wp-block-button__width-100 .wp-block-button__link {
  width: 100%;
}

/* Choice section: keep buttons inline + centered (natural flex layout).
   Override Kadence/WP block defaults that may inject width:100% on
   wp:buttons inside dark sections. */
.chiefai-home .choice-section .wp-block-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  width: auto;
}
.chiefai-home .choice-section .wp-block-button {
  width: auto;
  flex: 0 0 auto;
}
.chiefai-home .final-cta h2.final-title { color: var(--cai-navy); line-height: 0.98; }
.chiefai-home .final-cta .final-lede {
  color: #1F2937;
  font-size: 19px;
  line-height: 1.6;
}

/* ============================================================
   "Where do you want to start?" CTA at end of stuck-in-three-ways
   ============================================================ */
.chiefai-home .problems-cta-title {
  text-align: center;
  margin: 64px auto 16px;
  color: var(--cai-navy);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
}
.chiefai-home .problems-cta-helper {
  max-width: 640px;
  margin: 0 auto 28px;
  color: var(--cai-slate);
  font-size: 15px;
  line-height: 1.55;
}
.chiefai-home .problems-cta-buttons {
  justify-content: center;
  gap: 14px;
  /* margin-top inherits from --cai-stack-lede-cta (design-system.css) */
}

/* ============================================================
   Product section §05 — restructured to standard section-head
   + horizontal beats row + centered CTA stack
   ============================================================ */
.chiefai-home .product-compact .product-beats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 24px 0 0;          /* button-top var(--cai-stack-lede-cta) provides the gap below */
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.18);
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
.chiefai-home .product-compact .product-beats .beat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.chiefai-home .product-compact .product-beats .beat-label {
  font-family: var(--cai-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cai-orange);
}
.chiefai-home .product-compact .product-beats .beat-text {
  color: rgba(250,250,250,0.92);
  font-size: 16px;
  line-height: 1.5;
}
.chiefai-home .product-compact .product-actions {
  justify-content: center;
  gap: 14px;
}
.chiefai-home .product-compact .product-more-link {
  text-align: center;
  margin-top: 24px;
}
.chiefai-home .product-compact .product-more-link a {
  font-family: var(--cai-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250,250,250,0.7);
  text-decoration: none;
  border-bottom: 1px solid rgba(250,250,250,0.3);
  padding-bottom: 2px;
}
.chiefai-home .product-compact .product-more-link a:hover {
  color: var(--cai-orange);
  border-bottom-color: var(--cai-orange);
}

/* ============================================================
   Mobile refinements
   ============================================================ */
@media (max-width: 899px) {
  .chiefai-home .industry-card .mark { font-size: 200px; top: -12px; right: -18px; }
  .chiefai-home .hero-tool-badge { right: 10px; bottom: -16px; padding: 12px 16px; max-width: 200px; }
  .chiefai-home .pp-preview .pp-step { flex-direction: column; gap: 4px; }
  .chiefai-home .pp-preview .pp-step .tag { width: auto; }
  .chiefai-home .pc-beats li { grid-template-columns: 1fr; gap: 4px; }
  .chiefai-home .product-compact .product-beats { grid-template-columns: 1fr; gap: 20px; padding: 20px 0; }
}
