/* ============================================================
   AI ENABLEMENT (Services) — page-specific styles
   Figma node 2192:44139. Self-contained: scoped to .iae-page with
   the .iae-* prefix. Shared atoms (tokens, buttons, breadcrumb)
   come from intone-design-system.css; nothing here is global and
   no other page's specific classes are used.
   ============================================================ */

.iae-page {
  --gutter: clamp(20px, 4vw, 50px);
  --content: 1352px;
  --gold: var(--ds-gold, #f6b43f);
  --navy: var(--ds-navy, #1e2e4c);
  --ink:  var(--ds-dark-900, #141414);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  background: var(--t-bg);
  overflow-x: clip;
}

@media (scripting: enabled) {
  .iae-page .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s var(--ease-out);
  }
}
.iae-page .reveal.in { opacity: 1; transform: none; }

.iae-page a:focus-visible,
.iae-btn:focus-visible,
.iae-cta__btn:focus-visible,
.iae-svc-card:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* ── shared atoms ── */
.iae-kicker {
  font-family: var(--ds-font-heading);
  font-size: clamp(13px, 1.1vw, 16px);
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--t-text-muted, #5b6472);
  margin: 0 0 clamp(20px, 2.4vw, 36px);
}
.iae-h2 {
  font-family: var(--ds-font-heading);
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 700;
  line-height: 1.16;
  text-transform: uppercase;
  color: var(--t-text);
  margin: 0;
}
.iae-h2--italic { font-style: italic; }
.iae-lead {
  font-family: var(--ds-font-heading);
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--t-text);
  margin: clamp(20px, 2.4vw, 32px) 0 0;
  max-width: 70ch;
}
.iae-ghost {
  font-family: var(--ds-font-heading);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 300;
  line-height: 1.36;
  text-transform: uppercase;
  color: #a3abb6;
  margin: 0;
}
.iae-btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: #fff;
  border: 2px solid var(--ink);
  padding: 16px 32px;
  font-family: var(--ds-font-heading);
  font-size: clamp(16px, 1.5vw, 26px);
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.iae-btn:hover { background: var(--gold); border-color: var(--gold); color: #141414; }
.iae-caret { width: auto; height: 1em; vertical-align: -0.1em; }


/* ════ 1. HERO ════ */
.iae-hero {
  background: var(--t-bg);
  padding: clamp(80px, 12vw, 100px) var(--gutter) clamp(40px, 5vw, 72px);
}
.iae-hero__inner {  margin: 0 auto; }


.iae-hero__rule {
  display: block; height: 1px;
  margin-bottom: clamp(28px, 4vw, 56px);
}
.iae-hero .iae-kicker { margin-bottom: clamp(18px, 2vw, 28px); }
.iae-hero__title {
  font-family: var(--ds-font-heading);
  font-size: clamp(40px, 7vw, 96px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0;
  max-width: 16ch;
  color: var(--t-text);
}
.iae-hero__title.is-clip-text {
  filter: brightness(0.65);
  background-color: var(--t-text);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center top;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.iae-hero__band {
  /* max-width: var(--content); */
  margin: clamp(32px, 5vw, 60px) auto 0;
  height: clamp(150px, 20vw, 280px);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}


/* ════ 2. INTRO ════ */
.iae-intro { background: var(--t-bg); padding: clamp(40px, 5vw, 72px) var(--gutter); }
.iae-intro__inner {
  /* max-width: var(--content); */
  margin: 0 auto;
  display: flex; flex-direction: column; gap: clamp(36px, 4vw, 64px);
}
.iae-intro__head { display: flex; flex-direction: column; gap: clamp(28px, 3vw, 44px); }
.iae-intro__lead {
  font-family: var(--ds-font-heading);
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 400; line-height: 1.4; color: var(--t-text);
  margin: 0; max-width: 1100px;
}
.iae-intro__media { overflow: hidden; aspect-ratio: 1280 / 436; }
.iae-intro__media img { width: 100%; height: 100%; object-fit: cover; display: block; }


/* ════ shared section head ════ */
/* .iae-section-head { max-width: var(--content); } */
.iae-split-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 3vw, 48px);
  align-items: start;
  margin-bottom: clamp(36px, 5vw, 72px);
}
.iae-split-head__label {
  font-family: var(--ds-font-heading);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 700; line-height: 1.15; text-transform: uppercase;
  color: var(--t-text); margin: 0;
}
.iae-split-head__label--big { font-size: clamp(24px, 3.2vw, 42px); }
.iae-split-head__lead {
  font-family: var(--ds-font-heading);
  font-size: clamp(16px, 1.6vw, 18px);
  font-weight: 600; line-height: 1.3; color: var(--t-text); margin: 0;
  justify-self: end;      /* sit at the right edge of its column */
  text-align: right;
  max-width: 32ch;
}


/* ════ 3. PROBLEM ════ */
.iae-problem { padding: clamp(40px, 5vw, 80px) var(--gutter); background: var(--t-bg); }
.iae-problem__inner { /* max-width: var(--content); */ margin: 0 auto; }
.iae-row {
  margin-top: clamp(36px, 4vw, 64px);
  display: grid;
  grid-template-columns: minmax(0, 0.4fr) minmax(0, 1.15fr);
  gap: clamp(20px, 3vw, 48px);
  align-items: stretch;
}
.iae-row__media { overflow: hidden; min-height: 280px; }
.iae-row__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.iae-row__panel {
  background: var(--t-surface);
  padding: clamp(28px, 3vw, 48px);
  display: flex; flex-direction: column;
}
.iae-row__title {
  font-family: var(--ds-font-heading);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700; line-height: 1.2; color: var(--t-text); margin: 0 0 16px;
}
.iae-row__body, .iae-row__foot {
  font-family: var(--ds-font-heading);
  font-size: clamp(15px, 1.5vw, 18px); font-weight: 400; line-height: 1.5;
  color: var(--t-text); margin: 0;
}
.iae-row__foot { margin-top: auto; padding-top: 20px; font-weight: 600; }
.iae-checklist {
  list-style: none; margin: 20px 0; padding: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.iae-checklist li {
  position: relative; padding-left: 26px;
  font-family: var(--ds-font-heading);
  font-size: clamp(15px, 1.5vw, 18px); line-height: 1.4; color: var(--t-text);
}
.iae-checklist li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 4px; height: 4px; border-radius: 2px; background: var(--t-text);
}


/* ════ 4. HOW INTONE HELPS ════ */
.iae-help { padding: clamp(40px, 5vw, 80px) var(--gutter); background: var(--t-bg); }
.iae-help__inner {
  max-width: var(--content); margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 1.1fr) clamp(280px, 28vw, 420px);
  gap: clamp(24px, 4vw, 56px); align-items: stretch;
}
.iae-help__text { display: flex; flex-direction: column; }
.iae-help__text .iae-h2 { margin-bottom: clamp(24px, 3vw, 44px); }
.iae-callout {
  background: var(--t-surface);
  border-left: 10px solid var(--gold);
  padding: clamp(24px, 2.6vw, 40px) clamp(20px, 2.4vw, 36px);
}
.iae-callout__heading {
  font-family: var(--ds-font-heading);
  font-size: clamp(18px, 1.9vw, 26px); font-weight: 700; line-height: 1.25;
  color: var(--t-text); margin: 0 0 20px;
}
.iae-callout__list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.iae-callout__list li {
  position: relative; padding-left: 22px;
  font-family: var(--ds-font-heading);
  font-size: clamp(15px, 1.5vw, 18px); line-height: 1.4; color: var(--t-text);
}
.iae-callout__list li::before {
  content: ""; position: absolute; left: 0; top: 0.6em;
  width: 4px; height: 4px; border-radius: 2px; background: var(--t-text-muted);
}
.iae-help__note {
  font-family: var(--ds-font-heading);
  font-size: clamp(14px, 1.4vw, 16px); line-height: 1.5; color: var(--t-text-muted, #5b6472);
  margin: clamp(24px, 3vw, 40px) 0 clamp(20px, 3vw, 32px);
}
.iae-help .iae-ghost { margin-top: auto; }
.iae-help__media { overflow: hidden; min-height: 280px; }
.iae-help__media img { width: 100%; height: 100%; object-fit: cover; display: block; }


/* ════ 5. AUDIENCE ════ */
.iae-audience { padding: clamp(40px, 5vw, 80px) var(--gutter); background: var(--t-bg); }
.iae-audience__inner { /* max-width: var(--content); */ margin: 0 auto; }
.iae-audience__grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(12px, 1.4vw, 20px);
}
.iae-aud-card {
  background: var(--t-surface);
  padding: clamp(24px, 2vw, 40px) clamp(18px, 1.4vw, 24px);
  min-height: clamp(360px, 36vw, 520px);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease;
}
.iae-aud-card:hover { transform: translateY(-6px); box-shadow: var(--t-shadow, 0 18px 48px rgba(9,16,29,0.12)); }
.iae-aud-card__title {
  font-family: var(--ds-font-heading);
  font-size: clamp(20px, 1.9vw, 24px); font-weight: 700; line-height: 1.2;
  text-transform: uppercase; color: var(--t-text); margin: 0 0 18px;
}
.iae-aud-card__body {
  font-family: var(--ds-font-heading);
  font-size: clamp(14px, 1.4vw, 16px); line-height: 1.45; color: var(--t-text); margin: 0;
}


/* ════ 6. DELIVER (gold-bar cards) ════ */
.iae-deliver { padding: clamp(40px, 5vw, 80px) var(--gutter); background: var(--t-bg); }
.iae-deliver__inner { /* max-width: var(--content); */ margin: 0 auto; }
.iae-deliver .iae-lead { margin: 0 0 clamp(32px, 4vw, 56px); }
.iae-deliver__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 28px);
}
.iae-svc-card {
  display: flex; flex-direction: column;
  background: var(--t-surface);
  border-left: 6px solid var(--gold);
  padding: clamp(24px, 2.2vw, 36px);
  text-decoration: none;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease, border-left-width 0.3s ease;
}
.iae-svc-card:hover {
  box-shadow: var(--t-shadow, 0 18px 48px rgba(9,16,29,0.12));
  border-left-width: 12px;
}
.iae-svc-card__kicker {
  font-family: var(--ds-font-heading);
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--t-text-muted, #5b6472); margin-bottom: 14px;
}
.iae-svc-card__title {
  font-family: var(--ds-font-heading);
  font-size: clamp(18px, 1.7vw, 20px); font-weight: 600; line-height: 1.25;
  color: var(--t-text); margin: 0 0 14px;
}
/* Sub-page link — clean gold underline (no background — the gold highlight
   was removed 2026-07-13 as it hurt readability). */
.iae-svc-card__title a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--gold, #f6b43f);
  text-underline-offset: 2px;
  transition: text-decoration-thickness 0.2s ease, color 0.2s ease;
}
.iae-svc-card__title a:hover { color: var(--gold-dark); text-decoration-thickness: 3px; }
.iae-svc-card__title a::after {
  content: '';
  display: inline-block;
  width: 0.8em;
  height: 0.8em;
  margin-left: 3px;
  vertical-align: -0.08em;
  background-color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 8h10M10 5l3 3-3 3' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 8h10M10 5l3 3-3 3' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}
.iae-svc-card__body {
  font-family: var(--ds-font-heading);
  font-size: clamp(14px, 1.4vw, 16px); line-height: 1.5; color: var(--t-text-muted, #5b6472);
  margin: 0 0 20px;
}
/* expandable region */
.iae-svc-card__more {
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height 0.5s var(--ease-out), opacity 0.4s ease, margin 0.4s ease;
}
.iae-svc-card.is-rm-open .iae-svc-card__more { max-height: 520px; opacity: 1; margin-bottom: 20px; }
.iae-svc-card__more-label {
  font-family: var(--ds-font-heading); font-size: 12px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--t-text); margin: 0 0 10px;
}
.iae-svc-card__more-list {
  list-style: none; margin: 0 0 14px; padding: 0; display: flex; flex-direction: column; gap: 8px;
}
.iae-svc-card__more-list li {
  position: relative; padding-left: 18px;
  font-family: var(--ds-font-heading); font-size: clamp(14px, 1.4vw, 16px); line-height: 1.4; color: var(--t-text);
}
.iae-svc-card__more-list li::before {
  content: ""; position: absolute; left: 0; top: 0.55em; width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
}
.iae-svc-card__outcome {
  font-family: var(--ds-font-heading); font-size: clamp(14px, 1.4vw, 16px); line-height: 1.45; color: var(--t-text); margin: 0;
}
.iae-svc-card__outcome span { font-weight: 700; }
/* toggle button */
.iae-svc-card__btn {
  margin-top: auto; align-self: flex-start;
  display: inline-flex; align-items: center; gap: 8px;
  background: none; border: 0; padding: 0; cursor: pointer;
  font-family: var(--ds-font-heading);
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--t-text);
}
.iae-svc-card__btn .iae-caret {
  filter: var(--iae-caret-filter, invert(1)); height: 0.85em;
  transition: transform 0.3s ease;
}
.iae-svc-card.is-rm-open .iae-svc-card__btn .iae-caret { transform: rotate(90deg); }


/* ════ 7. PROCESS ════ */
.iae-process { padding: clamp(40px, 5vw, 80px) var(--gutter); background: var(--t-bg); }
.iae-process__inner { max-width: var(--content); margin: 0 auto; }
.iae-process__head { margin-bottom: clamp(40px, 5vw, 72px); }
.iae-process__head .iae-h2 { font-size: clamp(34px, 5.5vw, 72px); font-weight: 700; }
.iae-steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(12px, 1.5vw, 24px);
  position: relative;
}
.iae-steps::before {
  content: ""; position: absolute; top: clamp(24px, 3vw, 32px);
  left: 10%; right: 10%; height: 1px; background: var(--gold);
}
.iae-step { display: flex; flex-direction: column; align-items: center; text-align: center; }
.iae-step__num {
  width: clamp(48px, 6vw, 64px); height: clamp(48px, 6vw, 64px);
  display: grid; place-items: center;
  border-radius: 50%; border: 1px solid var(--gold);
  background: var(--t-bg);
  font-family: var(--ds-font-heading); font-size: clamp(16px, 1.8vw, 22px); font-weight: 700;
  color: var(--t-text); position: relative; z-index: 1;
  margin-bottom: clamp(16px, 2vw, 28px);
}
.iae-step__title {
  font-family: var(--ds-font-heading);
  font-size: clamp(16px, 1.8vw, 22px); font-weight: 700; text-transform: uppercase;
  color: var(--t-text); margin-bottom: 12px;
}
.iae-step__desc {
  font-family: var(--ds-font-heading);
  font-size: clamp(13px, 1.3vw, 16px); line-height: 1.4; color: var(--t-text-muted, #5b6472);
  max-width: 22ch;
}
.iae-process__note {
  margin: clamp(40px, 5vw, 64px) 0 0;
  font-family: var(--ds-font-heading);
  font-size: clamp(16px, 1.6vw, 20px); line-height: 1.5; color: var(--t-text); max-width: 60ch;
}


/* ════ 8. EXPECT ════ */
.iae-expect { padding: clamp(40px, 5vw, 80px) var(--gutter); background: var(--t-bg); }
.iae-expect__inner {
  /* max-width: var(--content); */
  margin: 0 auto;
  display: grid; grid-template-columns: clamp(280px, 30vw, 440px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 56px); align-items: stretch;
}
.iae-expect__media { overflow: hidden; min-height: 320px; }
.iae-expect__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.iae-expect__text { display: flex; flex-direction: column; justify-content: center; }
.iae-expect__text .iae-h2 { margin-bottom: clamp(24px, 3vw, 40px); }
.iae-expect__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.iae-expect__list li {
  position: relative;
  background: var(--t-surface);
  border-left: 6px solid var(--gold);
  padding: 18px 20px 18px 26px;
  font-family: var(--ds-font-heading);
  font-size: clamp(15px, 1.5vw, 18px); font-weight: 500; line-height: 1.4; color: var(--t-text);
  transition: transform 0.3s ease, border-left-width 0.3s ease;
}
.iae-expect__list li:hover { transform: translateX(6px); border-left-width: 12px; }


/* ════ 9. CREDENTIALS MARQUEE (auto-scroll within its container) ════ */
.iae-creds {
  background: var(--t-surface);
  padding: clamp(20px, 3vw, 40px) 0;
  overflow: hidden;
}
.iae-creds__viewport { overflow: hidden; width: 100%; }
.iae-creds__track {
  display: inline-flex; white-space: nowrap; will-change: transform;
  animation: iae-marquee 28s linear infinite;
}
.iae-creds:hover .iae-creds__track { animation-play-state: paused; }
.iae-creds__track span {
  font-family: var(--ds-font-heading);
  font-size: clamp(20px, 2.6vw, 34px); font-weight: 700; line-height: 1;
  text-transform: uppercase; color: var(--t-text);
  padding-right: 0;
}
@keyframes iae-marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}


/* ════ 10. WHY INTONE ════ */
.iae-why { padding: clamp(40px, 5vw, 80px) var(--gutter); background: var(--t-bg); }
.iae-why__inner { /* max-width: var(--content); */ margin: 0 auto; }
.iae-why__layout {
  display: grid; grid-template-columns: minmax(0, 1fr) clamp(280px, 28vw, 380px);
  gap: clamp(24px, 4vw, 56px); align-items: stretch;
}
.iae-why-left-content { display: flex; flex-direction: column;}
.iae-why__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px, 2vw, 24px); }
.iae-why-card {
  background: var(--t-surface);
  padding: clamp(24px, 2.4vw, 40px);
  display: flex; align-items: center;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease;
}
.iae-why-card:hover { transform: translateY(-6px); box-shadow: var(--t-shadow, 0 18px 48px rgba(9,16,29,0.12)); }
.iae-why-card p {
  font-family: var(--ds-font-heading);
  font-size: clamp(16px, 1.7vw, 20px); font-weight: 600; line-height: 1.3; color: var(--t-text); margin: 0;
}
.iae-why__media { overflow: hidden; min-height: 280px; }
.iae-why__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.iae-ghost--wide { margin-top: clamp(28px, 4vw, 56px); font-size: clamp(22px, 3vw, 40px); border-left: 11px solid #e3e9f2;
  padding-left: clamp(20px, 2.4vw, 36px); }


/* ════ 11. CTA — clip-text knockout over image ════ */
.iae-cta { background: var(--t-bg); }
.iae-cta__panel {
  max-width: var(--content);
  margin: 0 auto;
  padding: clamp(48px, 6vw, 96px) var(--gutter);
  display: flex; flex-direction: column; align-items: center; text-align: center;
  background: var(--t-bg);
}
.iae-cta__title {
  font-family: var(--ds-font-heading);
  font-size: clamp(32px, 5.4vw, 64px);
  font-weight: 700; line-height: 1.1; letter-spacing: -0.01em; text-transform: uppercase;
  color: var(--t-text); margin: 0 0 clamp(24px, 3vw, 40px); max-width: 18ch;
}
.iae-cta__title.is-clip-text {
  filter: brightness(0.65);
  background-color: var(--t-text);
  background-repeat: no-repeat; background-attachment: fixed;
  background-size: cover; background-position: center;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.iae-cta__sub {
  font-family: var(--ds-font-heading);
  font-size: clamp(16px, 1.6vw, 24px); font-weight: 400; line-height: 1.3;
  color: var(--t-text); margin: 0 0 10px;
}
.iae-cta__points {
  font-family: var(--ds-font-heading);
  font-size: clamp(15px, 1.5vw, 24px); font-weight: 400; line-height: 1.4;
  color: var(--t-text); margin: 0 0 clamp(28px, 3vw, 40px);
}
.iae-cta__btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 56px; padding: 0 clamp(28px, 3vw, 44px);
  background: var(--ink); color: #fff;
  font-family: var(--ds-font-heading);
  font-size: clamp(16px, 1.5vw, 26px); font-weight: 600;
  text-transform: uppercase; text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease;
}
.iae-cta__btn:hover { background: var(--gold); color: #141414; }
.iae-cta__band {
  height: clamp(160px, 22vw, 300px);
  background-repeat: no-repeat; background-size: cover; background-position: center;
  background-attachment: fixed;
}


/* ════════════════════════════════════════════════════════════
   DARK MODE
═══════════════════════════════════════════════════════════════ */
[data-theme="dark"] .iae-ghost,
[data-theme="dark"] .iae-ghost--wide { color: rgba(255, 255, 255, 0.22); }
[data-theme="dark"] .iae-btn { background: #f4f6f9; color: #141414; border-color: #f4f6f9; }
[data-theme="dark"] .iae-btn:hover { background: var(--gold); border-color: var(--gold); color: #141414; }
[data-theme="dark"] .iae-cta__btn { background: #f4f6f9; color: #141414; }
[data-theme="dark"] .iae-cta__btn:hover { background: var(--gold); color: #141414; }
/* Read-more caret is a white SVG: invert to dark in light theme, keep white in dark. */
.iae-page { --iae-caret-filter: invert(1); }
[data-theme="dark"] .iae-page { --iae-caret-filter: none; }


/* ════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */
@media (hover: none), (max-width: 1024px) {
  .iae-hero__title.is-clip-text,
  .iae-hero__band,
  .iae-cta__title.is-clip-text,
  .iae-cta__band { background-attachment: scroll; }
}

@media (max-width: 1024px) {
  .iae-audience__grid { grid-template-columns: repeat(3, 1fr); }
  .iae-deliver__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  /* Increase top padding to clear fixed header (~64px) + absolute breadcrumb (~36px). */
  .iae-hero {
    padding-top: clamp(110px, 20vw, 130px);
  }
  .iae-hero__title.is-clip-text {
    background-image: none !important;
    background-color: transparent;
    -webkit-background-clip: unset; background-clip: unset;
    -webkit-text-fill-color: var(--t-text); color: var(--t-text);
  }
  .iae-split-head { grid-template-columns: 1fr; }
  .iae-row { grid-template-columns: 1fr; }
  .iae-row__media { min-height: 220px; aspect-ratio: 16/9; }
  .iae-help__inner { grid-template-columns: 1fr; }
  .iae-help__media { order: -1; aspect-ratio: 16/9; min-height: 0; }
  .iae-audience__grid { grid-template-columns: repeat(2, 1fr); }
  .iae-aud-card { min-height: 0; }
  .iae-deliver__grid { grid-template-columns: 1fr; }
  .iae-steps { grid-template-columns: 1fr; gap: 28px; }
  .iae-steps::before { display: none; }
  .iae-step { flex-direction: row; align-items: flex-start; text-align: left; gap: 16px; }
  .iae-step__num { margin-bottom: 0; flex: 0 0 auto; }
  .iae-step__title { margin-bottom: 6px; }
  .iae-step__desc { max-width: none; }
  .iae-step__inner { display: flex; flex-direction: column; }
  .iae-expect__inner { grid-template-columns: 1fr; }
  .iae-expect__media { order: -1; aspect-ratio: 16/9; min-height: 0; }
  .iae-why__layout { grid-template-columns: 1fr; }
  .iae-why__media { order: -1; aspect-ratio: 16/9; min-height: 0; }
}

@media (max-width: 560px) {
  .iae-audience__grid { grid-template-columns: 1fr; }
  .iae-why__grid { grid-template-columns: 1fr; }
  .iae-cta__title.is-clip-text {
    background-image: none !important;
    background-color: transparent;
    -webkit-background-clip: unset; background-clip: unset;
    -webkit-text-fill-color: var(--t-text); color: var(--t-text);
  }
}

@media (prefers-reduced-motion: reduce) {
  .iae-page .reveal { opacity: 1; transform: none; transition: none; }
  .iae-creds__track { animation: none; }
  .iae-hero__title.is-clip-text, .iae-hero__band,
  .iae-cta__title.is-clip-text, .iae-cta__band { background-attachment: scroll; }
  .iae-page *, .iae-page *::before { transition: none !important; }
}

.iae-midcta { background: var(--t-surface); padding: clamp(28px, 3.5vw, 44px) var(--gutter); }
.iae-midcta__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: clamp(16px, 2vw, 28px); }
.iae-midcta__text { font-family: var(--ds-font-heading); font-size: clamp(17px, 2.4vw, 38px); font-weight: 600; line-height: 1.3; max-width: 46ch; margin: 0; color: var(--t-text); }
@media (max-width: 860px) { .iae-midcta__inner { flex-direction: column; align-items: flex-start; } }
