/* =====================================================================
   claude-agency.css
   Extra styles for the sections unique to claude-agency.html.
   Loads AFTER style.css + responsive.css. Shared primitives (section,
   container, section-block, eyebrow, title-*, lead, btn, btn-secondary,
   card-grid, logo-wall, accordion.faq, nav, site-footer) all come from
   style.css and are not redefined here.

   Reuses style.css tokens: --sc-green, --sc-ink, --sc-dark, --sc-dark-800,
   --sc-beige, --sc-sand, --sc-olive, --sc-head, --sc-body, --sc-ease.

   Section order matches the page:
     hero → stat band → problem → comparison → success stories →
     capabilities → Slate advantage → four phases → testimonials →
     team stats → FAQ → animation layer → responsive
   ===================================================================== */

#ca-page {
  /* surfaces measured off the Figma frames for this page */
  --ca-band: #1b1b1b;        /* stat band                             */
  --ca-pcard: #343434;       /* problem card                          */
  --ca-compare-bg: #181818;  /* comparison section                    */
  --ca-compare-col: #252525; /* comparison side-column data cell      */
  --ca-compare-head: #1f1f1f;/* comparison header row (all 3 columns) */
  --ca-success: #272727;     /* success-stories section               */
  --ca-shell: #282828;       /* Slate advantage outer shell           */
  --ca-panel: #3c3c3c;       /* Slate advantage inner panels          */
  --ca-faq-head: #504f43;    /* FAQ question row                      */
  --ca-faq-body: #575648;    /* FAQ answer row                        */
  --ca-quote-card: #424135;  /* testimonial card on lime              */

  --ca-hair: rgba(255, 255, 255, 0.1);
  --ca-hair-soft: rgba(255, 255, 255, 0.06);
}

/* =====================================================================
   HERO — left-aligned variant of the shared striped hero
   ===================================================================== */

.ca-hero .section-block-heading-content.hero-content {
  gap: var(--space-24);
}

.ca-hero__title {
  max-width: 940px;
}

.ca-hero .lead {
  max-width: 780px;
}

.ca-hero .section-block-heading {
  gap: var(--space-32);
}

/* =====================================================================
   STAT BAND — dark band, lime figures, vertical hairlines
   ===================================================================== */

.ca-statband {
  background: var(--ca-band);
}

.ca-statband__inner {
  padding-block: 56px;
}

.ca-statband__label {
  margin: 0 0 40px;
  font-family: var(--sc-head);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.28px;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
}

.ca-statband__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.ca-stat {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-inline: 32px;
  border-left: 1px solid rgba(129, 128, 110, 0.2);
  text-align: center;
}

.ca-stat:first-child {
  border-left: 0;
}

.ca-stat__num {
  display: block;
  font-family: var(--sc-head);
  font-size: 54px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -1.08px;
  color: var(--sc-green);
  font-variant-numeric: tabular-nums;
}

.ca-stat__star {
  font-size: 0.86em;
  line-height: 1;
}

.ca-stat__label {
  margin: 0;
  max-width: 230px;
  margin-inline: auto;
  font-size: 16px;
  line-height: 1.4;
  color: rgba(244, 244, 237, 0.72);
}

/* =====================================================================
   PROBLEM DEFINED — sand section, 2×2 dark cards with a ghost numeral
   ===================================================================== */

.ca-problem {
  background: var(--sc-sand);
}

.ca-problem__title {
  max-width: 760px;
}

.ca-problem__grid {
  display: grid;
  gap: var(--space-20);
  grid-template-columns: 1fr;
}

.ca-pcard {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 80px;
  min-height: 300px;
  padding: 24px;
  background: var(--ca-pcard);
  border-radius: 0;
  box-shadow: 0 18px 34px -26px rgba(0, 0, 0, 0.55);
  transition: transform var(--sc-ease), box-shadow var(--sc-ease);
}

.ca-pcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 52px -26px rgba(0, 0, 0, 0.62);
}

/* oversized numeral sunk into the card, clipped by the right edge */
.ca-pcard__ghost {
  position: absolute;
  right: -14px;
  bottom: -58px;
  font-family: var(--sc-head);
  font-weight: 700;
  font-size: 200px;
  line-height: 1;
  letter-spacing: -4px;
  color: rgba(0, 0, 0, 0.09);
  pointer-events: none;
  user-select: none;
}

.ca-pcard__title,
.ca-pcard__text {
  position: relative;
  z-index: 1;
}

.ca-pcard__title {
  font-family: var(--sc-head);
  font-weight: 500;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.15px;
  color: var(--sc-beige);
}

.ca-pcard__text {
  margin: 0;
  max-width: 380px;
  font-size: 16px;
  line-height: 1.45;
  color: rgba(242, 242, 230, 0.9);
}

/* =====================================================================
   COMPARISON — three columns, ours highlighted in lime
   ===================================================================== */

.ca-compare {
  background: var(--ca-compare-bg);
}

.ca-compare__title,
.ca-compare__lead {
  margin-inline: auto;
}

.ca-compare__title {
  max-width: 720px;
}

.ca-compare__lead {
  max-width: 660px;
  color: rgba(242, 242, 230, 0.82);
}

.ca-table__scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* measured off the Figma frame: 351 / 586 / 351 within a 1288 table */
.ca-table__grid {
  display: grid;
  grid-template-columns: 1fr 1.669fr 1fr;
  min-width: 900px;
}

.ca-col {
  position: relative;
  display: flex;
  flex-direction: column;
}

.ca-col {
  border: 1px solid var(--ca-hair-soft);
}

.ca-col + .ca-col {
  border-left: 0;
}

/* the header row reads as one continuous dark band across all three
   columns; only the data cells below it carry the lime highlight */
.ca-cell--head {
  background: var(--ca-compare-head);
}

/* :not() keeps these from out-ranking .ca-cell--head above, which a plain
   descendant selector would do regardless of source order */
.ca-col--side .ca-cell:not(.ca-cell--head) {
  background: var(--ca-compare-col);
}

.ca-col--us {
  z-index: 1;
}

.ca-col--us .ca-cell:not(.ca-cell--head) {
  background: var(--sc-green);
  border-color: rgba(0, 0, 0, 0.12);
}

/* flag sits inside the top-right corner of our column, flush with the
   table's top edge (measured 119x37 at the table top) */
.ca-col__flag {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  height: 37px;
  padding: 0 14px;
  background: var(--sc-green);
  color: var(--sc-dark-800);
  font-family: var(--sc-head);
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
}

.ca-cell {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 24px;
  border-top: 1px solid var(--ca-hair-soft);
}

.ca-cell--head {
  gap: 12px;
  min-height: 112px;
  justify-content: center;
  border-top: 0;
}

.ca-col__name {
  font-family: var(--sc-head);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.24px;
  color: #fff;
}

.ca-col--us .ca-col__name {
  color: var(--sc-green);
}

.ca-col__sub {
  margin: 0;
  font-size: 15px;
  line-height: 1.4;
  color: rgba(242, 242, 230, 0.62);
}

.ca-col--us .ca-col__sub {
  color: var(--sc-green);
}

.ca-cell__k {
  font-size: 15px;
  line-height: 1.3;
  color: rgba(242, 242, 230, 0.58);
}

.ca-cell__v {
  font-size: 16px;
  line-height: 1.4;
  color: #fff;
}

.ca-col--us .ca-cell__k {
  color: rgba(26, 26, 26, 0.66);
}

.ca-col--us .ca-cell__v {
  color: var(--sc-dark-800);
}

/* =====================================================================
   SUCCESS STORIES — centred heading, hairline, three result columns
   ===================================================================== */

.ca-success {
  background: var(--ca-success);
}

.ca-eyebrow--lime {
  border-color: var(--sc-green);
}

.ca-eyebrow--lime .eyebrow__tx {
  color: var(--sc-green);
}

.ca-success__lead {
  margin-inline: auto;
  max-width: 760px;
  color: rgba(242, 242, 230, 0.82);
}

.ca-success .section-block-content {
  padding-top: var(--space-48);
  border-top: 1px solid rgba(129, 128, 110, 0.28);
}

.ca-success__grid {
  display: grid;
  gap: var(--space-40);
  grid-template-columns: 1fr;
}

.ca-result {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ca-result__num {
  font-family: var(--sc-head);
  font-weight: 700;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -1.12px;
  color: var(--sc-green);
  font-variant-numeric: tabular-nums;
}

.ca-result__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
  color: rgba(242, 242, 230, 0.86);
}

.ca-result__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: auto;
  padding-top: 24px;
}

.ca-result__logo {
  max-height: 34px;
  width: auto;
  opacity: 0.72;
  transition: opacity var(--sc-ease);
}

.ca-result:hover .ca-result__logo {
  opacity: 1;
}

.ca-result__logo-tx {
  font-family: var(--sc-head);
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  color: rgba(242, 242, 230, 0.7);
}

.ca-iconbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex: none;
  border: 1px solid rgba(242, 242, 230, 0.34);
  color: rgba(242, 242, 230, 0.86);
  transition: background-color var(--sc-ease), color var(--sc-ease),
              border-color var(--sc-ease);
}

.ca-iconbtn svg {
  width: 18px;
  height: 18px;
}

.ca-iconbtn:hover {
  background: var(--sc-green);
  border-color: var(--sc-green);
  color: var(--sc-dark);
}

/* vertical rules between the three results (desktop only, below) */

/* =====================================================================
   FAINT LINE FIELD — horizontal rule pattern at the top of dark sections
   (measured off the Figma frames: ~16px pitch, fading out by ~340px)
   ===================================================================== */

.ca-lines::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 360px;
  background-image: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.085) 0 1px,
    transparent 1px 16px
  );
  -webkit-mask: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.35) 55%, transparent 100%);
  mask: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.35) 55%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.ca-lines > * {
  position: relative;
  z-index: 1;
}

/* =====================================================================
   CAPABILITIES — nine cards, lime icon chip
   ===================================================================== */

.ca-cap__lead {
  color: rgba(242, 242, 230, 0.82);
}

.ca-cap-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
  padding: 24px;
  background: var(--sc-dark-800);
  border-radius: 0;
  transition: transform var(--sc-ease), box-shadow var(--sc-ease);
}

.ca-cap-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -24px rgba(0, 0, 0, 0.6);
}

.ca-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex: none;
  background: var(--sc-green);
  color: var(--sc-dark-800);
  border-radius: 0;
}

.ca-chip svg {
  width: 20px;
  height: 20px;
}

.ca-chip--sm {
  width: 32px;
  height: 32px;
}

.ca-chip--sm svg {
  width: 16px;
  height: 16px;
}

.ca-cap-card__title {
  font-family: var(--sc-head);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.22px;
  color: #fff;
}

.ca-cap-card__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
  color: rgba(242, 242, 230, 0.78);
}

/* =====================================================================
   SLATE ADVANTAGE — sand section wrapping a dark two-column shell
   ===================================================================== */

.ca-slate {
  background: var(--sc-sand);
}

.ca-slate__title {
  max-width: 1040px;
}

.ca-slate__shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 40px;
  background: var(--ca-shell);
}

.ca-slate__col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* dashed spine between the two halves */
.ca-slate__divider {
  display: none;
  align-self: stretch;
  width: 1px;
  background-image: repeating-linear-gradient(
    to bottom,
    rgba(242, 242, 230, 0.34) 0 6px,
    transparent 6px 14px
  );
}

.ca-feat {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: var(--ca-panel);
}

.ca-feat__head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ca-feat__title {
  font-family: var(--sc-head);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.24px;
  color: #fff;
}

.ca-feat__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
  color: rgba(242, 242, 230, 0.82);
}

.ca-feat__note {
  margin: 0;
  font-family: var(--sc-head);
  font-weight: 500;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.26px;
  text-transform: uppercase;
  color: var(--sc-green);
}

/* right half — operational proof */
.ca-proof {
  display: flex;
  flex-direction: column;
  gap: 32px;
  height: 100%;
  padding: 32px;
  background: var(--ca-panel);
}

.ca-proof__label {
  margin: 0;
  font-family: var(--sc-head);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.28px;
  text-transform: uppercase;
  color: #fff;
}

.ca-proof__figure {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ca-proof__num {
  font-family: var(--sc-head);
  font-weight: 700;
  font-size: 54px;
  line-height: 1;
  letter-spacing: -1.08px;
  color: var(--sc-green);
  font-variant-numeric: tabular-nums;
}

.ca-proof__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
  color: rgba(242, 242, 230, 0.88);
}

.ca-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ca-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  line-height: 1.4;
  color: rgba(242, 242, 230, 0.9);
}

.ca-point__ic {
  width: 20px;
  height: 20px;
  flex: none;
  margin-top: 2px;
  color: rgba(242, 242, 230, 0.62);
}

.ca-point__ic svg {
  width: 100%;
  height: 100%;
}

.ca-btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-top: auto;
  height: 48px;
  padding: 14px 20px;
  background: #fff;
  color: var(--sc-dark);
  font-family: var(--sc-head);
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background-color var(--sc-ease), color var(--sc-ease);
}

.ca-btn-light:hover {
  background: var(--sc-green);
  color: var(--sc-dark);
}

/* =====================================================================
   FOUR PHASES — numbered timeline sharing one continuous rule
   ===================================================================== */

.ca-phases__title,
.ca-phases__lead {
  max-width: 980px;
}

.ca-phases__lead {
  color: rgba(242, 242, 230, 0.82);
}

.ca-phase-grid {
  display: grid;
  gap: var(--space-40);
  grid-template-columns: 1fr;
}

.ca-phase {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding-top: 52px;
}

/* the rule runs out of each marker toward the next column */
.ca-phase__rule {
  position: absolute;
  top: 18px;
  left: 0;
  right: calc(-1 * var(--space-40));
  height: 1px;
  background: rgba(242, 242, 230, 0.28);
}

.ca-phase:last-child .ca-phase__rule {
  right: 0;
}

.ca-phase__num {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 37px;
  padding: 0 8px;
  background: var(--sc-green);
  box-shadow: 0 0 0 4px var(--sc-ink), 0 0 0 5px var(--sc-green);
  color: var(--sc-dark-800);
  font-family: var(--sc-head);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.ca-phase__title {
  font-family: var(--sc-head);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.28px;
  color: #fff;
  max-width: 280px;
}

.ca-phase__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
  color: rgba(242, 242, 230, 0.8);
}

.ca-phase__pill {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding: 6px 12px;
  border: 0.8px solid rgba(242, 242, 230, 0.62);
  border-radius: 160px;
  font-family: var(--sc-head);
  font-weight: 400;
  font-size: 12.8px;
  line-height: 1;
  letter-spacing: -0.26px;
  text-transform: uppercase;
  color: var(--sc-beige);
}

/* =====================================================================
   TESTIMONIALS — lime section, olive cards on a dragging track
   ===================================================================== */

.ca-quotes {
  background: var(--sc-green);
}

.ca-quotes__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: var(--space-48);
}

.ca-quotes__title {
  color: var(--sc-dark-800);
}

.ca-quotes__nav {
  display: flex;
  gap: 8px;
  flex: none;
}

/* with a single slide the pair stays in place so the header composition
   matches the design; both arrows simply render in their disabled state */
.ca-quotes__nav.is-idle .ca-navbtn {
  opacity: 0.35;
}

.ca-navbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--sc-dark-800);
  background: transparent;
  color: var(--sc-dark-800);
  cursor: pointer;
  transition: background-color var(--sc-ease), color var(--sc-ease),
              opacity var(--sc-ease);
}

.ca-navbtn svg {
  width: 20px;
  height: 20px;
}

.ca-navbtn:hover:not(:disabled) {
  background: var(--sc-dark-800);
  color: var(--sc-green);
}

.ca-navbtn:disabled {
  opacity: 0.35;
  cursor: default;
}

/* the viewport bleeds past the container to the true window edge, so the
   next card peeks in exactly as it does in the Figma frame */
.ca-quotes__viewport {
  overflow: hidden;
  margin-right: calc(50% - 50vw);
  cursor: grab;
  touch-action: pan-y;
}

.ca-quotes__viewport:active {
  cursor: grabbing;
}

.ca-quotes__viewport:focus-visible {
  outline: 2px solid var(--sc-dark-800);
  outline-offset: 4px;
}

.ca-quotes__track {
  display: flex;
  gap: 24px;
  will-change: transform;
  user-select: none;
  transition: transform 0.55s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.ca-quote__body,
.ca-quote__meta {
  -webkit-user-drag: none;
}

.ca-quote {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 0 0 100%;
  min-width: 0;
  padding: 32px;
  background: var(--ca-quote-card);
}

.ca-quote__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex: none;
  background: var(--sc-green);
  color: var(--sc-dark-800);
}

.ca-quote__mark svg {
  width: 22px;
  height: 22px;
}

.ca-quote__body {
  margin: 0;
  font-family: var(--sc-head);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.35;
  letter-spacing: -0.12px;
  color: #fff;
}

.ca-quote__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: auto;
}

.ca-quote__person {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-left: 15px;
  border-left: 1px solid rgba(242, 242, 230, 0.42);
}

.ca-quote__avatar {
  width: 60px;
  height: 60px;
  flex: none;
  object-fit: cover;
}

.ca-quote__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.ca-quote__name {
  font-size: 16px;
  line-height: 1.375;
  color: var(--sc-green);
}

.ca-quote__role {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  line-height: 1.375;
  color: rgba(242, 242, 230, 0.86);
}

.ca-quote__dot {
  width: 3px;
  height: 3px;
  flex: none;
  border-radius: 50%;
  background: currentColor;
}

.ca-quote__logo {
  max-height: 54px;
  width: auto;
  flex: none;
}

/* =====================================================================
   TEAM STATS — purple section, striped field at the top
   (measured: bg #3F50EB == --sc-purple, 80px heading line-height,
   three stats each with a right-hand rule, white secondary button)
   ===================================================================== */

.ca-team {
  background: var(--sc-purple);
}

/* the striped field is an inline SVG (supplied with the design) pinned to
   the top edge; its own gradient handles the downward fade */
.ca-team__lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  pointer-events: none;
  z-index: 0;
}

/* must exclude the striped SVG: an equal-specificity `position: relative`
   here would otherwise beat its `position: absolute` on source order and
   drop it into the flow, adding ~466px of dead height to the section */
.ca-team > *:not(.ca-team__lines) {
  position: relative;
  z-index: 1;
}

.ca-team__title {
  max-width: 1280px;
  margin-inline: auto;
  font-size: 76px;
  line-height: 80px;
  letter-spacing: -1.5px;
  color: #fff;
}

.ca-team__title .ca-team__kicker {
  display: block;
}

.ca-team__lead {
  max-width: 960px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.88);
}

.ca-team__grid {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
  max-width: 760px;
  margin-inline: auto;
}

.ca-tstat {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 32px;
  text-align: center;
}

.ca-tstat__num {
  font-family: var(--sc-head);
  font-weight: 700;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -1.12px;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.ca-tstat__label {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.8);
}

.ca-team__actions {
  margin-top: var(--space-40);
}

/* the design's secondary button on purple is pure white, not the beige
   used on light sections */
.ca-team .btn-secondary {
  background: #fff;
  border-color: #fff;
  color: var(--sc-dark);
}

.ca-team .btn-secondary:hover {
  background: var(--sc-dark);
  border-color: var(--sc-dark);
  color: #fff;
}

/* =====================================================================
   FAQ — olive rows on ink, diagonal hatch field behind
   ===================================================================== */

.ca-faq::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    115deg,
    rgba(255, 255, 255, 0.05) 0 2px,
    transparent 2px 26px
  );
  pointer-events: none;
  z-index: 0;
}

.ca-faq > * {
  position: relative;
  z-index: 1;
}

.ca-faq__title {
  max-width: 900px;
}

.ca-faq__lead {
  color: rgba(242, 242, 230, 0.72);
}

/* override the shared .accordion.faq skin for this page's olive rows */
.ca-acc.accordion.faq .accordion-item {
  margin-bottom: 20px;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: hidden;
}

.ca-acc.accordion.faq .accordion-item:last-child {
  margin-bottom: 0;
}

.ca-acc.accordion.faq .accordion-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 32px;
  background: var(--ca-faq-head);
  border-radius: 0;
  box-shadow: none;
  font-family: var(--sc-head);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.12px;
  color: var(--sc-beige);
  transition: background-color var(--sc-ease);
}

.ca-acc.accordion.faq .accordion-button:not(.collapsed) {
  background: var(--ca-faq-head);
  color: #fff;
}

.ca-acc.accordion.faq .accordion-button:hover {
  background: #5a5949;
}

.ca-acc.accordion.faq .accordion-button:focus-visible {
  outline: 2px solid var(--sc-green);
  outline-offset: -2px;
}

/* the shared minus/plus mark, re-skinned into a square chip */
.ca-acc.accordion.faq .faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex: none;
  background: var(--sc-ink);
  color: var(--sc-beige);
}

.ca-acc.accordion.faq .accordion-collapse {
  background: var(--ca-faq-body);
}

.ca-acc.accordion.faq .accordion-body {
  padding: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}

.ca-acc.accordion.faq .accordion-body a {
  color: var(--sc-green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ca-acc.accordion.faq .accordion-body a:hover {
  text-decoration-thickness: 2px;
}

/* =====================================================================
   ANIMATION LAYER
   Entrance reveal and the hero rise are gated behind `.js-reveal` (added
   by the page script) and prefers-reduced-motion, so a no-JS or
   reduced-motion visitor always sees fully rendered, static content.
   ===================================================================== */

@media (prefers-reduced-motion: no-preference) {
  .js-reveal .reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s cubic-bezier(0.2, 0.6, 0.2, 1),
                transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1);
    will-change: opacity, transform;
  }

  .js-reveal .reveal.is-visible {
    opacity: 1;
    transform: none;
  }

  /* hero rises on load — pure CSS, so there is no flash-then-hide */
  .ca-hero .hero-content {
    animation: ca-rise 0.75s cubic-bezier(0.2, 0.6, 0.2, 1) both;
  }

  .ca-hero .section-block-heading-actions {
    animation: ca-rise 0.75s cubic-bezier(0.2, 0.6, 0.2, 1) 0.12s both;
  }
}

@keyframes ca-rise {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* =====================================================================
   RESPONSIVE — mobile-first above, widen from here
   ===================================================================== */

@media (min-width: 576px) {
  .ca-statband__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ca-stat {
    padding-block: 24px;
  }

  .ca-stat:nth-child(3) {
    border-left: 0;
  }

  .ca-stat:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(129, 128, 110, 0.2);
    padding-bottom: 40px;
  }

  .ca-stat:nth-child(n + 3) {
    padding-top: 40px;
  }
}

@media (min-width: 768px) {
  .ca-problem__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ca-success__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ca-team__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* a rule to the right of every stat, including the last (per the frame) */
  .ca-tstat {
    border-right: 1px solid rgba(255, 255, 255, 0.28);
  }

  .ca-quote {
    flex-basis: 72%;
  }
}

@media (min-width: 992px) {
  .ca-statband__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .ca-stat {
    padding-block: 0;
  }

  .ca-stat:nth-child(3) {
    border-left: 1px solid rgba(129, 128, 110, 0.2);
  }

  .ca-stat:nth-child(-n + 2) {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .ca-stat:nth-child(n + 3) {
    padding-top: 0;
  }

  .ca-success__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .ca-result + .ca-result {
    padding-left: var(--space-40);
    border-left: 1px solid rgba(129, 128, 110, 0.3);
  }

  .ca-success__grid {
    gap: 0;
  }

  .ca-result:not(:last-child) {
    padding-right: var(--space-40);
  }

  .ca-phase-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .ca-slate__shell {
    grid-template-columns: 1fr 1px 1fr;
    gap: 32px;
  }

  .ca-slate__divider {
    display: block;
  }

  .ca-quote {
    flex-basis: 81%;
  }
}

@media (min-width: 1200px) {
  .ca-quote {
    flex-basis: 1036px;
  }
}

/* ---- narrow phones ---- */
@media (max-width: 575px) {
  .ca-statband__grid {
    grid-template-columns: 1fr;
  }

  .ca-stat {
    padding-inline: 0;
    padding-block: 28px;
    border-left: 0;
    border-bottom: 1px solid rgba(129, 128, 110, 0.2);
  }

  .ca-stat:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .ca-stat__num,
  .ca-proof__num {
    font-size: 42px;
  }

  .ca-result__num,
  .ca-tstat__num {
    font-size: 44px;
  }

  .ca-team__title {
    font-size: 34px;
    line-height: 1.08;
    letter-spacing: -0.5px;
  }

  .ca-tstat {
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  }

  .ca-tstat:last-child {
    border-bottom: 0;
  }

  .ca-pcard__ghost {
    font-size: 150px;
    bottom: -40px;
  }

  .ca-pcard {
    gap: 48px;
    min-height: 0;
  }

  .ca-pcard__title {
    font-size: 26px;
  }

  .ca-slate__shell {
    padding: 20px;
  }

  .ca-proof,
  .ca-feat {
    padding: 20px;
  }

  .ca-quote {
    padding: 20px;
  }

  .ca-quote__body {
    font-size: 19px;
  }

  .ca-quote__foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .ca-acc.accordion.faq .accordion-button {
    padding: 20px;
    font-size: 19px;
  }

  .ca-acc.accordion.faq .accordion-body {
    padding: 20px;
  }

  .ca-quotes__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .ca-cell {
    padding: 18px;
  }
}
