/* ============================================================
   Unboxable — Website (Homepage) page styles
   Relies on design-system tokens via ../../styles.css
   ============================================================ */

:root {
  --nav-h: 76px;
  --gutter: clamp(20px, 5vw, 64px);
}

html { scroll-behavior: smooth; }
body { overflow-x: hidden; }

.wrap {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--narrow { max-width: 920px; }

img { display: block; max-width: 100%; }

/* ----------------------------------------------------------------
   Buttons
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  padding: 14px 26px;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-out),
              background var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              color var(--dur-base) var(--ease-out);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.btn svg, .btn img { width: 18px; height: 18px; }
.btn--primary {
  background: var(--accent);
  color: var(--text-inverse);
  box-shadow: var(--shadow-accent);
}
.btn--primary:hover { background: var(--accent-hover); color: var(--text-inverse); transform: translateY(-2px); }
.btn--primary:active { background: var(--accent-pressed); transform: translateY(0); }

/* Large button size for hero / CTA */
.btn--lg {
  font-size: 1rem;
  padding: 17px 32px;
}

.btn--ghost-light {
  background: transparent;
  color: var(--text-inverse);
  border-color: rgba(255,255,255,0.35);
}
.btn--ghost-light:hover { background: rgba(255,255,255,0.10); color: var(--text-inverse); border-color: rgba(255,255,255,0.6); }

.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-strong);
}
.btn--outline:hover { border-color: var(--navy-800); color: var(--navy-800); transform: translateY(-2px); }

.btn--dark {
  background: var(--navy-800);
  color: #fff;
}
.btn--dark:hover { background: var(--navy-700); color: #fff; transform: translateY(-2px); }

.btn .arr { transition: transform var(--dur-base) var(--ease-out); }
.btn:hover .arr { transform: translateX(4px); }

/* ----------------------------------------------------------------
   Eyebrow / shared
   ---------------------------------------------------------------- */
.eyebrow {
  font-family: var(--font-body);
  font-weight: var(--fw-bold);
  font-size: 0.8125rem;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--accent);
  display: inline-block;
}
.eyebrow--center { justify-content: center; }
.band-navy .eyebrow { color: rgba(255,255,255,0.7); }
.dot { color: var(--accent); }

section { position: relative; }
.band-light { background: var(--surface-page); }
.band-sand { background: var(--surface-sand); }
.band-white { background: var(--surface-card); }
.band-navy { background: var(--surface-navy); color: var(--text-inverse); }
.band-navy h1, .band-navy h2, .band-navy h3 { color: var(--text-inverse); }

.sec-pad { padding-block: clamp(52px, 7vw, 96px); }

/* ----------------------------------------------------------------
   Header / Nav
   ---------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface-navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo img { height: 22px; width: auto; }
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.6vw, 26px);
  list-style: none;
  margin: 0; padding: 0;
}
.nav__links a {
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.80);
  padding: 8px 2px;
  position: relative;
  white-space: nowrap;
  transition: color var(--dur-base) var(--ease-out);
}
.nav__links a:hover { color: #fff; }
.nav__links a.is-active { color: #fff; }
.nav__links a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__cta .btn--primary { padding: 9px 20px; }

/* Hamburger toggle (injected by nav.js; shown ≤720px) */
.nav__burger {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: transparent; border: 0; padding: 0; cursor: pointer;
  flex: none;
}
.nav__burger span,
.nav__burger span::before,
.nav__burger span::after {
  content: "";
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--dur-base) var(--ease-out),
              opacity var(--dur-base) var(--ease-out);
}
.nav__burger span { position: relative; }
.nav__burger span::before { position: absolute; left: 0; top: -7px; }
.nav__burger span::after { position: absolute; left: 0; top: 7px; }
.site-header[data-nav-open] .nav__burger span { background: transparent; }
.site-header[data-nav-open] .nav__burger span::before { top: 0; transform: rotate(45deg); }
.site-header[data-nav-open] .nav__burger span::after { top: 0; transform: rotate(-45deg); }

/* ----------------------------------------------------------------
   Hero — full-bleed navy
   ---------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--surface-navy);
  color: var(--text-inverse);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  background-position: center top;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 60%, transparent 100%);
          mask-image: linear-gradient(180deg, #000 0%, #000 60%, transparent 100%);
}
/* Brand circle motif lives in main content sections only (not the hero) */
.hero__inner {
  padding-block: clamp(44px, 6.5vw, 92px);
  max-width: 1000px;
}
.hero__title {
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  line-height: 1.04;
  letter-spacing: -0.032em;
  margin: 0 0 30px;
  color: #fff;
}
.hero__title .ln2 { display: inline-block; white-space: nowrap; }
.hero__title .amber { color: var(--amber-500); }
.hero__title .dot { color: var(--accent); }
.hero__lead {
  font-size: clamp(1.125rem, 1.7vw, 1.5rem);
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
  max-width: 46em;
  margin: 0 0 40px;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 16px; }

/* ----------------------------------------------------------------
   Narrative panel — sand box with stat circles
   ---------------------------------------------------------------- */
.narr__panel {
  background: #fff;
  border: 3px solid var(--navy-800);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 44px);
  box-shadow: 0 18px 44px rgba(28,15,93,0.08);
  display: flex;
  flex-direction: column;
}
.narr__stats { display: flex; flex-direction: column; flex: 1; justify-content: center; gap: 0; }
.ns { display: flex; gap: 22px; align-items: center; padding-block: clamp(22px, 2.5vw, 30px); }
.ns:first-child { padding-top: 0; }
.ns:last-child { padding-bottom: 0; }
.ns + .ns { border-top: 1px solid var(--border); }
.ns__circle {
  flex: none;
  width: clamp(92px, 8vw, 112px);
  height: clamp(92px, 8vw, 112px);
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: clamp(1.5rem, 1.9vw, 1.95rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
  padding: 6px;
}
.ns__circle--red { background: var(--accent); }
.ns__circle--amber { background: var(--amber-500); }
.ns__circle--green { background: var(--green-500); }
.ns__txt {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--navy-800);
  margin: 0;
}

/* ----------------------------------------------------------------
   Evidence / stats band
   ---------------------------------------------------------------- */
.evidence__head { max-width: none; margin: 0 0 clamp(22px, 2.2vw, 30px); }
.evidence__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-weight: var(--fw-bold);
  font-size: 0.8125rem;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin: 0 0 14px;
}
.evidence__eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--accent);
  display: inline-block;
}
.evidence__intro {
  font-size: clamp(1.1rem, 1.7vw, 1.4rem);
  line-height: 1.45;
  font-weight: var(--fw-medium);
  color: var(--navy-800);
  margin: 14px 0 0;
}
.evidence__box {
  background: #fff;
  border: 3px solid var(--navy-800);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 2.4vw, 36px) clamp(28px, 3vw, 44px);
  box-shadow: 0 18px 44px rgba(28,15,93,0.08);
}
.evidence__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 2.6vw, 40px);
}
.estat { display: flex; flex-direction: column; align-items: center; text-align: center; }
.estat .ns__circle {
  width: clamp(76px, 6vw, 92px);
  height: clamp(76px, 6vw, 92px);
  font-size: clamp(1.3rem, 1.5vw, 1.6rem);
  margin: 0 0 16px;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s var(--ease-out);
}
.estat .ns__circle:hover { transform: scale(1.06); }
.estat .ns__circle.pop { animation: statpop 0.55s cubic-bezier(0.34,1.56,0.64,1); }
@keyframes statpop {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,73,0,0); }
  35% { transform: scale(1.24); box-shadow: 0 12px 30px rgba(28,15,93,0.28); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,73,0,0); }
}
.estat p { font-size: 1rem; line-height: 1.55; color: var(--navy-800); margin: 0; max-width: 30ch; }
@media (min-width: 761px) {
  .estat + .estat { border-left: 1px solid var(--border); padding-left: clamp(24px, 2.6vw, 40px); }
}
.evidence__source { margin: clamp(20px, 2.4vw, 30px) 0 0; font-size: 0.75rem; font-style: italic; color: var(--text-secondary); }
@media (max-width: 760px) {
  .evidence__stats { grid-template-columns: 1fr; gap: 28px; }
  .estat { flex-direction: row; align-items: center; text-align: left; gap: 20px; }
  .estat .ns__circle { margin: 0; }
  .estat p { max-width: none; }
}

/* ----------------------------------------------------------------
   Trusted by — logo strip
   ---------------------------------------------------------------- */
.trusted {
  background: var(--surface-card);
  padding-block: clamp(40px, 5vw, 64px);
  overflow: hidden;
}
.trusted__label {
  text-align: center;
  font-family: var(--font-display);
  font-weight: var(--fw-extra);
  font-size: 0.8125rem;
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--navy-800);
  margin: 0 0 34px;
}
.trusted__marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.trusted__track {
  display: flex;
  align-items: center;
  gap: clamp(44px, 6vw, 88px);
  width: max-content;
  animation: marquee 34s linear infinite;
}
.trusted__marquee:hover .trusted__track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.tlogo {
  flex: none;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: var(--fw-extra);
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  color: var(--navy-800);
  opacity: 0.55;
  line-height: 1.05;
  text-align: center;
  transition: opacity var(--dur-base) var(--ease-out);
}
.tlogo small {
  display: block;
  font-weight: var(--fw-medium);
  font-size: 0.6rem;
  letter-spacing: 0.04em;
}
.tlogo:hover { opacity: 1; }
.tlogo img {
  display: block;
  height: clamp(30px, 3.4vw, 44px);
  width: auto;
  max-width: 168px;
  object-fit: contain;
}
.tlogo--lesmills { font-style: italic; letter-spacing: -0.02em; }
@media (prefers-reduced-motion: reduce) {
  .trusted__track { animation: none; flex-wrap: wrap; justify-content: center; width: auto; }
}

/* ----------------------------------------------------------------
   Stats
   ---------------------------------------------------------------- */
.stats {
  background: var(--surface-page);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 56px);
  padding-block: clamp(48px, 6vw, 84px);
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.stat__circle {
  width: clamp(150px, 15vw, 196px);
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  background: var(--accent);
  box-shadow: 0 18px 40px rgba(255,73,0,0.22);
}
.stat:nth-child(2) .stat__circle { background: var(--amber-500); box-shadow: 0 18px 40px rgba(255,169,0,0.24); }
.stat:nth-child(3) .stat__circle { background: var(--green-500); box-shadow: 0 18px 40px rgba(76,175,80,0.22); }
.stat__num {
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  font-size: clamp(2.25rem, 3.6vw, 3.25rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
}
.stat__txt {
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0;
  max-width: 22em;
}

/* ----------------------------------------------------------------
   Narrative — both / and
   ---------------------------------------------------------------- */
.narr h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.15rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  max-width: none;
  margin: 0 0 clamp(34px, 4vw, 48px);
}
.narr__cols {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(32px, 5vw, 68px);
  align-items: start;
}
.narr__left { display: flex; flex-direction: column; align-items: flex-start; }
.narr__left .narr__tag { margin-top: clamp(20px, 2.4vw, 30px); }
.narr__matters {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 30px;
}
.narr__matters .m {
  font-family: var(--font-display);
  font-weight: var(--fw-extra);
  font-size: clamp(1.3rem, 1.7vw, 1.55rem);
  color: var(--navy-800);
  display: flex;
  align-items: center;
  gap: 14px;
}
.narr__matters .m::before {
  content: "";
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  flex: none;
}
.narr__matters .m:nth-child(2)::before { background: var(--amber-500); }
.narr__matters .m:nth-child(3)::before { background: var(--green-500); }
.narr__matters .m:nth-child(4)::before { background: var(--navy-600); }
.narr__matters .m-cap {
  font-family: var(--font-display);
  font-weight: var(--fw-extra);
  font-size: clamp(1.3rem, 1.7vw, 1.55rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--amber-500);
  margin-top: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.16);
}
.narr__matters--box {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--navy-800);
  border-radius: var(--radius-xl);
  padding: clamp(46px, 5vw, 62px) clamp(26px, 2.8vw, 38px) clamp(28px, 3vw, 38px);
  gap: 12px;
}
.narr__matters--box::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(circle at 85% 0%, #000, transparent 72%);
          mask-image: radial-gradient(circle at 85% 0%, #000, transparent 72%);
}
.narr__matters--box .m { color: #fff; display: block; }
.narr__matters--box .m::before { display: none; }
.narr__matters--box .mk--amber { color: var(--amber-500); }
.narr__matters--box .mk--orange { color: var(--accent); }
.narr__matters--box .mk--green { color: var(--green-500); }
.narr__matters--box .m-cap { color: #fff; }

/* Three brand circles, top-right of the box (define__dots also styled in pages.css for interior pages) */
.narr__matters--box .define__dots { position: absolute; top: clamp(20px, 2.4vw, 30px); right: clamp(22px, 2.6vw, 34px); display: flex; gap: 10px; z-index: 1; }
.narr__matters--box .define__dots i { flex: none; width: 14px; height: 14px; border-radius: 50%; display: block; }
.narr__matters--box .define__dots i:nth-child(1) { background: var(--accent); }
.narr__matters--box .define__dots i:nth-child(2) { background: var(--amber-500); }
.narr__matters--box .define__dots i:nth-child(3) { background: var(--green-500); }
.narr__body p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0 0 18px;
}
.pull {
  font-family: var(--font-display);
  font-weight: var(--fw-extra);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--navy-800);
  margin: 6px 0 24px;
}
.pull .hl { color: var(--navy-800); }
a.narr__tag { text-decoration: none; transition: color var(--dur-base) var(--ease-out); }
a.narr__tag:hover { color: var(--accent); }
.narr__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: 0.95rem;
  color: var(--navy-800);
}
.narr__tag::before { content: "→"; color: var(--accent); font-size: 1.2em; }

/* ----------------------------------------------------------------
   Capabilities
   ---------------------------------------------------------------- */
.caps { padding-block: clamp(44px, 5.5vw, 76px); }
.caps__head {
  text-align: left;
  max-width: none;
  margin: 0 0 clamp(34px, 4.5vw, 50px);
}
.caps__chip {
  display: inline-flex;
  align-items: center;
  background: var(--amber-500);
  color: #fff;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: 0.8rem;
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 22px;
}
.caps__intro {
  font-family: var(--font-display);
  font-weight: var(--fw-extra);
  font-size: clamp(1.7rem, 2.7vw, 2.3rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 20px;
}
.caps__intro .amber { color: var(--amber-500); }
.caps__statement {
  font-family: var(--font-body);
  font-weight: var(--fw-bold);
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  line-height: 1.55;
  color: #fff;
  margin: 0 0 18px;
  max-width: none;
}
.caps__sub {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  line-height: 1.6;
  color: rgba(255,255,255,0.74);
  margin: 0;
  max-width: none;
}
.caps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
.cap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(28px, 3vw, 40px) clamp(20px, 2vw, 30px);
  background: rgba(255,255,255,0.035);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: background var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
}
.cap:hover { border-color: rgba(255,255,255,0.30); transform: translateY(-3px); }
.cap:focus-visible { outline: 2px solid var(--amber-500); outline-offset: 3px; }
.cap.is-active {
  background: rgba(255,73,0,0.12);
  border-color: var(--accent);
}
.cap.is-linked {
  background: rgba(255,73,0,0.12);
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 16px 34px rgba(255,73,0,0.28);
}
.cap.is-linked .cap__ico { background: var(--accent); }
.cap__ico {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: transparent;
  display: grid; place-items: center;
  margin-bottom: 18px;
  transition: background var(--dur-base) var(--ease-out);
}
.cap__ico img { width: 22px; height: 22px; filter: brightness(0) invert(1); }
.cap.is-active .cap__ico { background: var(--accent); }
.cap__kicker {
  font-family: var(--font-display);
  font-weight: var(--fw-extra);
  font-size: 1.375rem;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 0 10px;
}
.cap__lead {
  font-family: var(--font-body);
  font-weight: var(--fw-semibold);
  font-size: 1rem;
  color: var(--amber-500);
  margin: 0 0 12px;
  line-height: 1.35;
}
.cap__txt {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  margin: 0;
  max-width: 26em;
}

/* Intersections — slim white boxes */
.caps__inter-label {
  text-align: center;
  font-family: var(--font-display);
  font-weight: var(--fw-extra);
  font-size: 0.8125rem;
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: #fff;
  margin: clamp(30px, 3.5vw, 44px) 0 18px;
}
.caps__inter {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.6vw, 20px);
  margin-bottom: 0;
}
.inter {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 22px 20px;
  box-shadow: 0 10px 26px rgba(8,4,30,0.22);
  cursor: pointer;
  transition: box-shadow var(--dur-base) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
}
.inter:hover { transform: translateY(-2px); }
.inter.is-active { box-shadow: 0 0 0 2px var(--accent), 0 16px 34px rgba(255,73,0,0.30); }
.inter__dot { flex: none; width: 11px; height: 11px; border-radius: 50%; margin-top: 6px; }
.inter__dot--navy { background: var(--navy-800); }
.inter__dot--orange { background: var(--accent); }
.inter__dot--amber { background: var(--amber-500); }
.inter b {
  display: block;
  font-family: var(--font-display);
  font-weight: var(--fw-extra);
  font-size: 1.0625rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--navy-800);
  margin-bottom: 5px;
}
.inter p {
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin: 0;
}
.caps__cta { text-align: center; }

/* ----------------------------------------------------------------
   AI section — amber box
   ---------------------------------------------------------------- */
.ai { background: var(--amber-500); padding-block: clamp(44px, 5.5vw, 76px); }
.ai__head { margin-bottom: clamp(36px, 5vw, 58px); }
.ai__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.ai__chip {
  display: inline-flex;
  align-items: center;
  background: var(--navy-800);
  color: #fff;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: 0.8rem;
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}
.ai__title {
  font-family: var(--font-display);
  font-weight: var(--fw-extra);
  font-size: clamp(1.7rem, 2.7vw, 2.3rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 24px;
}
.ai__title-2 { color: var(--navy-800); }
.ai__lead {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--navy-800);
  max-width: 56em;
  margin: 0;
}
.ai__feats { list-style: none; margin: 0 0 34px; padding: 0; display: flex; flex-direction: column; gap: 22px; }
.ai__main { display: flex; flex-direction: column; align-items: flex-start; }
.ai__feat { display: flex; gap: 18px; align-items: flex-start; }
.ai__feat-ico {
  flex: none;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--navy-800);
  display: grid; place-items: center;
}
.ai__feat-ico img { width: 24px; height: 24px; filter: brightness(0) invert(1); }
.ai__feat h3 {
  font-family: var(--font-display);
  font-weight: var(--fw-extra);
  font-size: 1.1875rem;
  color: var(--navy-800);
  margin: 2px 0 6px;
}
.ai__feat p {
  font-size: 0.9688rem;
  line-height: 1.55;
  color: var(--navy-700);
  margin: 0;
  max-width: 30em;
}

/* AI focus card */
.ai__card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(28px, 3vw, 44px);
  box-shadow: 0 30px 60px rgba(19,10,63,0.18);
}
.ai__card-label {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: 0.8125rem;
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 26px;
}
.bars { display: flex; flex-direction: column; gap: 20px; }
.bar__head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 9px; }
.bar__head span {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: 0.9375rem;
  color: var(--navy-800);
}
.bar__head b {
  font-family: var(--font-display);
  font-weight: var(--fw-extra);
  font-size: 0.9375rem;
  color: var(--amber-600);
}
.bar__track {
  height: 7px;
  background: var(--grey-100);
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.bar__track span {
  display: block;
  height: 100%;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--navy-800), var(--accent));
}
.ai__card-src { display: none; }

/* ----------------------------------------------------------------
   Footer CTA
   ---------------------------------------------------------------- */
.cta {
  background: var(--accent);
  color: #fff;
}
.cta__inner { padding-block: clamp(72px, 9vw, 120px); }
.cta h2 {
  color: #fff;
  font-size: clamp(1.75rem, 3.2vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  max-width: 20em;
}
.cta__accent { color: var(--amber-500); }
.cta p {
  font-size: clamp(1.125rem, 1.6vw, 1.375rem);
  line-height: 1.55;
  color: rgba(255,255,255,0.95);
  max-width: 46em;
  margin: 0 0 38px;
}
.cta__ctas { display: flex; flex-wrap: wrap; gap: 16px; }
.cta .btn--on-orange {
  background: #fff;
  color: var(--accent);
  box-shadow: 0 14px 30px rgba(19,10,63,0.22);
}
.cta .btn--on-orange:hover { background: var(--navy-800); color: #fff; transform: translateY(-2px); }
.cta .btn--ghost-light { border-color: rgba(255,255,255,0.6); color: #fff; }
.cta .btn--ghost-light:hover { background: rgba(255,255,255,0.14); border-color: #fff; }

/* ----------------------------------------------------------------
   Footer
   ---------------------------------------------------------------- */
.site-footer {
  background: var(--surface-navy);
  color: rgba(255,255,255,0.7);
  padding-block: clamp(34px, 4vw, 52px) 24px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: clamp(28px, 4vw, 52px);
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer__brand img { height: 24px; margin-bottom: 16px; }
.footer__statement {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  font-weight: 400;
  max-width: 40em;
  margin: 0;
}
.footer__col h4 {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: 0.8rem;
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--amber-500);
  margin: 0 0 14px;
}
.footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__col a {
  font-size: 0.9688rem;
  font-weight: var(--fw-bold);
  color: rgba(255,255,255,0.85);
  transition: color var(--dur-base) var(--ease-out);
}
.footer__col a:hover { color: var(--accent); }
.footer__col--connect a { display: flex; align-items: center; gap: 11px; }
.fico {
  display: inline-grid;
  place-items: center;
  width: 18px; height: 18px;
  flex: none;
  color: var(--amber-500);
}
.fico svg { width: 18px; height: 18px; display: block; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
}
.footer__bottom .credit .dot { color: var(--accent); }

/* ----------------------------------------------------------------
   Responsive
   ---------------------------------------------------------------- */
@media (max-width: 980px) {
  .hero__inner { max-width: none; }
  .narr__cols, .ai__grid { grid-template-columns: 1fr; }
  .narr__panel { order: 2; }
  .caps__grid { grid-template-columns: 1fr; gap: 16px; }
  .caps__inter { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr; gap: 36px; }
  .stat { flex-direction: row; gap: 22px; text-align: left; align-items: center; }
  .stat__circle { margin-bottom: 0; flex: none; }
  .stat__txt { max-width: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .stat { flex-direction: column; text-align: center; }
  .stat__circle { width: 150px; }
  .stat__txt { max-width: 24em; }
  .ai__feat { gap: 14px; }
  .ai__card { padding: 26px 22px; }
  .cta__ctas .btn, .hero__ctas .btn { width: 100%; justify-content: center; }
}
@media (max-width: 720px) {
  .nav { gap: 12px; }
  .nav__burger { display: inline-flex; }
  .nav__cta .btn span.full { display: none; }
  .nav__cta .btn--primary { padding: 9px 16px; }
  .footer__grid { grid-template-columns: 1fr; }

  /* Primary nav becomes a full-width dropdown panel under the header */
  .site-header nav[aria-label="Primary"] {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--surface-navy);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 44px rgba(0,0,0,0.34);
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: max-height var(--dur-base) var(--ease-out),
                visibility var(--dur-base) var(--ease-out);
  }
  .site-header[data-nav-open] nav[aria-label="Primary"] {
    max-height: calc(100vh - var(--nav-h));
    visibility: visible;
  }
  .nav__links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 6px 0 14px;
  }
  .nav__links a {
    font-size: 1.0625rem;
    padding: 16px clamp(20px, 6vw, 40px);
    color: #fff;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .nav__links a.is-active { color: var(--accent); }
  .nav__links a.is-active::after { display: none; }
}

@media (max-width: 380px) {
  .nav__cta .btn--primary { display: none; }
}
