/* ============================================================
   IMX Funds — imxfundmanagement.com
   Design system per Brand Audit 2026-06-21 (source of truth)
   Newsreader (editorial serif, display + section titles) + Inter (body)
   Palette: blue #1E4DD8, navy, ink, bone, slate. No periwinkle/lime/pastel.
   ============================================================ */

:root {
  --blue: #1E4DD8;
  --navy: #1F3864;
  --ink: #10182B;
  --bone: #F7F5F0;
  --white: #FFFFFF;
  --panel: #F7F8FA;
  --slate: #51607A;
  --hairline: #E2E5EC;
  --hairline-light: rgba(247, 245, 240, 0.16);
  /* legacy names remapped to brand-safe values — periwinkle, lime and pale-blue mist are banned */
  --peri: #F7F5F0;
  --lime: #1E4DD8;
  --mist: #F7F5F0;
  --body: #51607A;
  --max: 1320px;
  --text-max: 720px;
  --pad-section: clamp(60px, 6vw, 104px);
  --font-display: "Tiempos Headline", "Newsreader", Georgia, serif;
  --font-body: "Inter", Arial, sans-serif;
}

/* Tiempos Headline — licensed display serif, self-hosted, roman only (no italics/bold/black) */
@font-face {
  font-family: "Tiempos Headline";
  src: url("assets/fonts/tiempos-headline-regular.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Tiempos Headline";
  src: url("assets/fonts/tiempos-headline-medium.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Tiempos Headline";
  src: url("assets/fonts/tiempos-headline-semibold.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
}

img, svg, video { display: block; max-width: 100%; }

a { color: var(--blue); text-decoration: none; }

/* Link underline grows on hover, IMX Blue */
.link-arrow,
.body-link {
  position: relative;
  font-weight: 600;
  color: var(--blue);
}
.link-arrow::after,
.body-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 2px;
  background: var(--blue);
  transition: width 0.35s ease;
}
.link-arrow:hover::after,
.body-link:hover::after { width: 100%; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
}

/* ---------- Typography ---------- */

h1, h2, h3, .display {
  font-family: var(--font-display);
  line-height: 1.12;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.display {
  font-weight: 400;
  font-size: clamp(46px, 5.8vw, 82px);
  color: var(--ink);
}

h1 {
  font-weight: 500;
  font-size: clamp(36px, 4.2vw, 60px);
  color: var(--navy);
}

h2 {
  font-weight: 500;
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: 1.08;
  color: var(--navy);
}

h3 {
  font-weight: 600;
  font-size: clamp(19px, 1.6vw, 23px);
  color: var(--blue);
  line-height: 1.3;
}

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 28px;
}

.lede {
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.65;
  max-width: var(--text-max);
}

p { max-width: var(--text-max); }
p + p { margin-top: 1.2em; }

.text-white { color: var(--white); }
.nowrap { white-space: nowrap; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  padding: 16px 34px;
  border: 1px solid var(--blue);
  background: var(--blue);
  color: var(--white);
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.btn:hover { background: var(--navy); border-color: var(--navy); }
.btn:focus-visible, a:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--hairline);
}
.btn--ghost:hover { background: transparent; color: var(--blue); border-color: var(--blue); }

.section--ink .btn--ghost {
  color: var(--white);
  border-color: var(--hairline-light);
}
.section--ink .btn--ghost:hover { color: #fff; border-color: #fff; background: transparent; }

/* ---------- Navigation ---------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: box-shadow 0.4s ease;
}

/* Blur lives on a pseudo-element: backdrop-filter on .nav itself would make
   it the containing block for the fixed-position mobile menu */
.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  opacity: 1;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.nav.is-solid::before { opacity: 1; }
.nav.is-solid { box-shadow: 0 1px 0 var(--hairline); }

.nav__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.nav__logo img { height: 34px; width: auto; min-width: 150px; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 44px;
}

.nav__menu a {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  position: relative;
}
.nav__menu a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--blue);
  transition: width 0.35s ease;
}
.nav__menu a:hover::after,
.nav__menu a.is-active::after { width: 100%; }
.nav__menu a.is-active { color: var(--blue); }

/* Nav dropdown (Platform) */
.nav__item--has-menu { position: relative; }
.nav__caret { font-size: 9px; margin-left: 6px; opacity: 0.55; display: inline-block; transition: transform 0.25s ease; }
.nav__item--has-menu:hover .nav__caret,
.nav__item--has-menu:focus-within .nav__caret { transform: rotate(180deg); }
.nav__sub {
  position: absolute;
  top: 100%;
  left: 50%;
  margin-top: 22px;
  transform: translateX(-50%) translateY(8px);
  min-width: 232px;
  background: rgba(255, 255, 255, 0.98);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid var(--hairline);
  box-shadow: 0 18px 44px rgba(16, 24, 43, 0.14);
  padding: 8px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0.22s;
  z-index: 105;
}
.nav__sub::before { content: ""; position: absolute; top: -30px; left: -20px; right: -20px; height: 30px; }
.nav__item--has-menu:hover .nav__sub,
.nav__item--has-menu:focus-within .nav__sub {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.nav__sub a { padding: 11px 16px; font-size: 14.5px; font-weight: 500; color: var(--ink); white-space: nowrap; }
.nav__sub a::after { display: none; }
.nav__sub a:hover { color: var(--blue); background: var(--mist); }

.nav__toggle {
  display: none;
  background: none;
  border: none;
  width: 40px; height: 40px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  z-index: 102;
}
.nav__toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--ink);
  margin: 0 auto;
  transition: transform 0.3s ease;
}

/* ---------- Hero (Home) ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--white);
}

.hero__art {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(640px 640px at 84% 18%, rgba(30, 77, 216, 0.07), transparent 64%),
    radial-gradient(560px 560px at 70% 78%, rgba(30, 77, 216, 0.05), transparent 60%),
    radial-gradient(420px 420px at 12% 88%, rgba(31, 56, 100, 0.05), transparent 62%);
}

.hero__art::before {
  content: "";
  position: absolute;
  top: -10%;
  right: 18%;
  width: 1px;
  height: 120%;
  background: linear-gradient(to bottom, transparent, rgba(30, 77, 216, 0.32), transparent);
  transform: rotate(24deg);
  transform-origin: center;
}

.hero__content { position: relative; max-width: 880px; }

.hero__sub {
  margin-top: 36px;
  font-size: clamp(18px, 1.5vw, 21px);
  color: var(--body);
  max-width: 620px;
}

.hero__scroll {
  position: absolute;
  bottom: 48px;
  left: 40px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--navy);
  text-transform: uppercase;
}
.hero__scroll::after {
  content: "";
  display: block;
  width: 1px; height: 44px;
  background: var(--blue);
  margin: 14px 0 0 2px;
}

/* Hero film — full-bleed, fills the viewport */
.hero-film {
  position: relative;
  width: 100%;
  height: calc(100vh - 84px);
  height: calc(100svh - 84px);
  min-height: 440px;
  max-height: 900px;
  overflow: hidden;
  background: var(--ink);
}
.hero-film video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-film__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(16, 24, 43, 0.66) 0%, rgba(16, 24, 43, 0.28) 46%, rgba(16, 24, 43, 0.04) 100%),
    linear-gradient(to top, rgba(16, 24, 43, 0.34) 0%, rgba(16, 24, 43, 0) 42%);
}
.hero-film__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding-top: 84px;
}
.hero-film__content .eyebrow { color: var(--peri); }
.hero-film__content .display {
  color: #fff;
  max-width: 15em;
  text-shadow: 0 2px 28px rgba(16, 24, 43, 0.45);
}
.hero-film__sub {
  margin-top: 24px;
  max-width: 560px;
  font-size: clamp(17px, 1.5vw, 21px);
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 16px rgba(16, 24, 43, 0.5);
}
.hero-statement { padding-top: clamp(40px, 5vw, 68px); }
/* Branded promo with text baked into the lower-left: anchor the crop there so logo/tagline never clip */
.hero-film--brand video { object-position: left bottom; }

/* Sub-page headers */
.page-head {
  position: relative;
  padding: calc(84px + clamp(52px, 6vw, 92px)) 0 var(--pad-section);
  overflow: hidden;
}
.page-head--art::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(640px 480px at 92% -12%, rgba(30, 77, 216, 0.06), transparent 60%);
}
.page-head .container { position: relative; }

/* ---------- Sections ---------- */

.section { padding: var(--pad-section) 0; }

/* Pale sections become CONTAINED bone panels, not full-bleed flat bands */
.section--mist, .section--peri {
  background: transparent;
  padding-top: clamp(24px, 3.5vw, 52px);
  padding-bottom: clamp(24px, 3.5vw, 52px);
  padding-left: clamp(16px, 4vw, 40px);
  padding-right: clamp(16px, 4vw, 40px);
}
.section--mist > .container,
.section--peri > .container {
  background: var(--bone);
  border: 1px solid var(--hairline);
  border-radius: 22px;
  padding: var(--pad-section) clamp(26px, 4vw, 76px);
}

.section--ink {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
}
.section--ink h2, .section--ink .display { color: var(--white); }
.section--ink .eyebrow { color: var(--peri); }

.rule { border: 0; border-top: 1px solid var(--hairline); }

/* Split section: eyebrow/heading left, prose right */
.split {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.split__title h2 { max-width: 560px; font-size: clamp(26px, 2.9vw, 42px); line-height: 1.18; }

/* Three-column capability grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 4vw, 64px);
}
.cap {
  border-top: 1px solid var(--hairline);
  padding-top: 28px;
}
.cap__num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--blue);
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 14px;
}
.cap h3 { margin-bottom: 14px; }
.cap p { font-size: 16px; }

/* Four-item beliefs grid */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(36px, 4vw, 56px) clamp(40px, 5vw, 80px);
}

/* Statement (ink) panel */
.statement { text-align: left; }
.statement .display { font-size: clamp(36px, 4.4vw, 64px); max-width: 900px; }
.statement__actions { margin-top: 56px; display: flex; gap: 20px; flex-wrap: wrap; }

/* Forward links */
.forward {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 3.5vw, 56px);
}
.forward a {
  display: block;
  border-top: 1px solid var(--hairline);
  padding-top: 26px;
  color: var(--ink);
  transition: color 0.3s ease;
}
.forward a:hover { color: var(--blue); }
.forward h3 { color: inherit; margin-bottom: 10px; font-family: var(--font-display); }
.forward p { font-size: 16px; color: var(--body); }

/* Download / CTA band — bone card, hairline + soft shadow, shared blue primary button */
.callout {
  background: var(--bone);
  border: 1px solid var(--hairline);
  box-shadow: 0 12px 32px rgba(16, 24, 43, 0.07);
  padding: clamp(32px, 4vw, 52px) clamp(32px, 5vw, 60px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.callout h3 { color: var(--navy); font-family: var(--font-display); font-weight: 600; font-size: clamp(22px, 2.2vw, 30px); margin-bottom: 8px; }
.callout p { color: var(--slate); font-size: 15.5px; max-width: 58ch; }
.callout .btn { white-space: nowrap; }

/* Video feature */
.video-feature .container { max-width: 1140px; }
.video-feature video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--ink);
}

/* Numbered phase steps */
.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(40px, 4vw, 64px) clamp(40px, 5vw, 88px);
  counter-reset: step;
}
.step {
  border-top: 1px solid var(--hairline);
  padding-top: 26px;
}
.step__num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--blue);
  display: block;
  margin-bottom: 12px;
  letter-spacing: 0.08em;
}
.step h3 { margin-bottom: 12px; }
.step p { font-size: 16px; margin-bottom: 16px; }
.step ul { list-style: none; }
.step li {
  font-size: 15px;
  padding: 7px 0 7px 0;
  border-bottom: 1px solid var(--hairline);
  color: var(--body);
}
.step li::before { content: "·"; color: var(--blue); margin-right: 10px; }
.step li:last-child { border-bottom: 0; }

/* Capability list (Phase 2, mist) */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 3vw, 48px) clamp(32px, 4vw, 64px);
}
.cap-grid .cap h3 { font-size: 18px; }
.cap-grid .cap p { font-size: 15px; }

/* Two-column responsibilities */
.duo {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(40px, 5vw, 96px);
}
.duo__col h3 { font-family: var(--font-display); font-weight: 600; font-size: 22px; margin-bottom: 22px; }
.duo__col ul { list-style: none; }
.duo__col li {
  padding: 12px 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 16px;
}
.duo__col li::before { content: "·"; color: var(--blue); margin-right: 12px; }

/* Platform structure diagram */
.diagram {
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
}
.diagram__box {
  border: 1px solid var(--hairline);
  background: var(--white);
  padding: 26px 32px;
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--navy);
}
.diagram__box--lead {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}
.diagram__box--ink {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}
.diagram__link {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  padding: 14px 0;
}
.diagram__link::before { content: "↓"; display: block; font-size: 16px; margin-bottom: 4px; }
.diagram__note {
  margin: 36px auto 0;
  font-size: 15px;
  color: var(--body);
  max-width: 560px;
}

/* Spec table */
.spec {
  width: 100%;
  max-width: 760px;
  border-collapse: collapse;
}
.spec th, .spec td {
  text-align: left;
  padding: 11px 0;
  border-bottom: 1px solid var(--hairline);
  vertical-align: baseline;
}
.spec th {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  width: 46%;
  padding-right: 24px;
}
.spec td {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--navy);
}

/* Tags */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 880px;
}
.tag {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--navy);
  border: 1px solid var(--hairline);
  padding: 10px 20px;
  background: var(--white);
}
.tag--lime { background: var(--blue); border-color: var(--blue); color: #fff; }

.tags-note { margin-top: 24px; font-size: 15px; color: var(--body); }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(48px, 6vw, 110px);
  align-items: start;
}
.contact-block { margin-bottom: 40px; }
.contact-block .eyebrow { margin-bottom: 12px; }
.contact-block p { font-size: 17px; }
.contact-block a { font-weight: 600; }

/* Form card */
.card {
  border: 1px solid var(--hairline);
  background: var(--white);
  padding: clamp(32px, 4vw, 56px);
}
.card h3 { font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: 22px; margin-bottom: 28px; }
a.card { transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease; }
a.card:hover { background: var(--bone); border-color: var(--hairline); box-shadow: 0 14px 34px rgba(16, 24, 43, 0.06); }

.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  padding: 13px 14px;
  border: 1px solid var(--hairline);
  background: var(--white);
  outline: none;
  transition: border-color 0.3s ease;
  border-radius: 0;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); }
.field textarea { min-height: 130px; resize: vertical; }

.form-note { font-size: 13.5px; color: var(--body); opacity: 0.75; margin-top: 16px; }

/* Compliance layout */
.legal {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: clamp(48px, 5vw, 96px);
  align-items: start;
}
.legal__toc {
  position: sticky;
  top: 120px;
  list-style: none;
}
.legal__toc a {
  display: block;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--body);
  padding: 9px 0;
  border-bottom: 1px solid var(--hairline);
}
.legal__toc a:hover { color: var(--blue); }
.legal__section { margin-bottom: clamp(56px, 6vw, 88px); scroll-margin-top: 120px; }
.legal__section h2 { font-size: clamp(23px, 2.2vw, 30px); margin-bottom: 24px; }
.legal__section h3 { color: var(--navy); font-family: var(--font-body); font-weight: 600; font-size: 17px; margin: 28px 0 10px; }
.legal__section p, .legal__section li { font-size: 15.5px; }
.legal__section ul { list-style: none; max-width: var(--text-max); }
.legal__section li { padding: 6px 0; }
.legal__section li::before { content: "·"; color: var(--blue); margin-right: 10px; }

/* ---------- Footer ---------- */

.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  padding: clamp(56px, 5vw, 84px) 0 40px;
  font-size: 15px;
}
.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 3fr) minmax(0, 4fr);
  gap: clamp(40px, 5vw, 88px);
  padding-bottom: 64px;
  border-bottom: 1px solid var(--hairline-light);
}
.footer__brand img { height: 24px; width: auto; margin-bottom: 28px; }
.footer__brand p { max-width: 320px; }
.footer__label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--peri);
  margin-bottom: 20px;
}
.footer__nav { list-style: none; }
.footer__nav li { margin-bottom: 12px; }
.footer__nav a { color: rgba(255, 255, 255, 0.72); transition: color 0.3s ease; }
.footer__nav a:hover { color: var(--white); }
.footer address { font-style: normal; line-height: 1.9; }
.footer address a { color: var(--white); font-weight: 500; }
.footer__reg { margin-top: 22px; font-size: 13.5px; opacity: 0.65; }
.footer__legal {
  padding-top: 28px;
  font-size: 12.5px;
  line-height: 1.8;
  opacity: 0.55;
  max-width: 100%;
}
/* Horizontal footer (one line across the page) */
.footer__top { display: flex; align-items: center; justify-content: space-between; gap: 28px 40px; flex-wrap: wrap; padding-bottom: 26px; border-bottom: 1px solid var(--hairline-light); }
.footer__logo img { height: 26px; width: auto; }
.footer__links { display: flex; flex-wrap: wrap; gap: 12px 26px; justify-content: flex-end; }
.footer__links a { color: rgba(255, 255, 255, 0.72); font-size: 14.5px; font-weight: 500; transition: color 0.3s ease; }
.footer__links a:hover { color: var(--white); }
.footer__meta { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 6px 40px; padding-top: 22px; font-size: 13.5px; }
.footer__meta address { font-style: normal; opacity: 0.78; }
.footer__meta address a { color: var(--white); font-weight: 500; }
.footer__meta .footer__reg { margin: 0; opacity: 0.6; }
@media (max-width: 720px) {
  .footer__top { flex-direction: column; align-items: flex-start; }
  .footer__links { justify-content: flex-start; }
}

/* ---------- Reveals ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s ease 0.08s, transform 1s ease 0.08s;
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--blue);
  color: var(--white);
  padding: 12px 20px;
  z-index: 200;
}
.skip-link:focus { left: 0; }

/* ---------- 404 ---------- */

.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--ink);
  color: var(--white);
}
.error-page img { height: 56px; margin-bottom: 40px; }
.error-page .display { color: var(--white); font-size: clamp(40px, 5vw, 68px); }
.error-page p { color: rgba(255,255,255,0.72); margin-top: 18px; }
.error-page .btn { margin-top: 40px; }

/* ---------- Team ---------- */

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(36px, 4vw, 60px) clamp(32px, 4vw, 64px);
}
.person {
  border-top: 1px solid var(--hairline);
  padding-top: 24px;
}
.person h3 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  font-size: 21px;
  margin-bottom: 6px;
}
.person__role { font-weight: 600; color: var(--blue); font-size: 15px; }
.person__creds { font-size: 14.5px; color: var(--body); margin-top: 4px; }

/* ---------- Stats band / track record ---------- */

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 64px);
  margin: 48px 0;
}
.stat__n {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 4.5vw, 64px);
  color: var(--white);
  line-height: 1;
  display: block;
}
.stat__l {
  display: block;
  margin-top: 12px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--peri);
}
.cases {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(32px, 4vw, 64px);
  margin-top: 24px;
}
.case {
  border-top: 1px solid var(--hairline-light);
  padding-top: 24px;
}
.case h3 { color: var(--white); font-family: var(--font-display); font-weight: 600; font-size: 20px; }
.case__period { font-size: 13.5px; color: var(--peri); margin-top: 4px; }
.case p { font-size: 15.5px; margin-top: 10px; }
.case__metrics { display: flex; gap: 28px; margin-top: 18px; flex-wrap: wrap; }
.case__metrics span { font-family: var(--font-display); font-weight: 600; color: var(--bone); font-size: 18px; }
.case__metrics small { display: block; font-family: var(--font-body); font-weight: 600; font-size: 11px; letter-spacing: 0.12em; color: rgba(255,255,255,0.6); margin-top: 2px; }
.footnote { font-size: 13px; line-height: 1.7; opacity: 0.6; max-width: 860px; margin-top: 40px; }

/* ---------- Insights ---------- */

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 3.5vw, 56px);
}
.insight-card {
  display: block;
  border-top: 1px solid var(--hairline);
  padding-top: 26px;
  color: var(--ink);
}
.insight-card:hover h3 { color: var(--blue); }
.insight-card__kind {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  display: block;
  margin-bottom: 14px;
}
.insight-card h3 { font-family: var(--font-display); color: var(--ink); transition: color 0.3s ease; margin-bottom: 12px; }
.insight-card p { font-size: 15.5px; color: var(--body); }

.article { max-width: 760px; }
.article h2 { font-size: clamp(24px, 2.2vw, 32px); margin: 48px 0 20px; }
.article p { margin-top: 1.1em; }
.article ul { list-style: none; max-width: var(--text-max); margin-top: 1.1em; }
.article li { padding: 8px 0; border-bottom: 1px solid var(--hairline); font-size: 16px; }
.article li::before { content: "·"; color: var(--blue); margin-right: 12px; }

/* ---------- Form status ---------- */

.form-msg { display: none; margin-top: 18px; font-size: 15px; padding: 14px 16px; }
.form-msg.is-ok { display: block; background: var(--mist); color: var(--navy); border-left: 3px solid var(--blue); }
.form-msg.is-err { display: block; background: #FBEAEA; color: #7A1F1F; border-left: 3px solid #B43F3F; }

/* Newsletter inline form */
.newsletter { display: flex; gap: 12px; max-width: 560px; }
.newsletter input { flex: 1; }

/* ---------- Draft banner (staging Arabic) ---------- */

.draft-banner {
  background: var(--blue);
  color: #fff;
  text-align: center;
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 16px;
  position: relative;
  z-index: 110;
}

/* ---------- RTL ---------- */

[dir="rtl"] .hero__scroll { left: auto; right: 40px; }
[dir="rtl"] .hero__scroll::after { margin: 14px 2px 0 0; }
[dir="rtl"] .step li::before,
[dir="rtl"] .duo__col li::before,
[dir="rtl"] .article li::before,
[dir="rtl"] .legal__section li::before { margin-right: 0; margin-left: 12px; }
[dir="rtl"] .callout .btn { white-space: normal; }
[dir="rtl"] .hero-film__scrim {
  background:
    linear-gradient(to left, rgba(16, 24, 43, 0.74) 0%, rgba(16, 24, 43, 0.40) 46%, rgba(16, 24, 43, 0.06) 100%),
    linear-gradient(to top, rgba(16, 24, 43, 0.45) 0%, rgba(16, 24, 43, 0) 42%);
}

/* 47X operating-partner callout */
.x47 {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
  padding: clamp(40px, 5vw, 72px);
  border-radius: 22px;
  display: grid;
  grid-template-columns: 1fr minmax(150px, 0.42fr);
  column-gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.x47__logo {
  grid-column: 2;
  grid-row: 1 / 99;
  align-self: center;
  justify-self: center;
  width: 100%;
  max-width: 230px;
  height: auto;
  margin: 0;
  filter: brightness(0) invert(1);
  opacity: 0.96;
}
.x47__label, .x47 h3, .x47 p, .x47__actions { grid-column: 1; }
.x47__label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 18px;
}
.x47 h3 {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 32px);
  margin-bottom: 16px;
  max-width: 18em;
}
.x47 p { max-width: 62ch; margin-bottom: 30px; }
.x47__actions { display: flex; gap: 16px; flex-wrap: wrap; }
@media (max-width: 767px) {
  .x47 { grid-template-columns: 1fr; }
  .x47__logo { grid-column: 1; grid-row: auto; justify-self: start; max-width: 168px; margin-bottom: 28px; }
}

.btn--lime { background: var(--blue); border-color: var(--blue); color: #fff; }
.btn--lime:hover { background: var(--navy); border-color: var(--navy); }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.4); }
.btn--ghost-light:hover { background: rgba(255, 255, 255, 0.06); border-color: #fff; color: #fff; }

/* Film modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(16, 24, 43, 0.93);
}
.modal.is-open { display: flex; }
.modal__inner { width: min(1100px, 100%); }
.modal__inner video { width: 100%; height: auto; max-height: 84vh; background: #000; display: block; }
.modal__close {
  position: absolute;
  top: 20px; right: 28px;
  width: 44px; height: 44px;
  background: none; border: 0;
  color: #fff; font-size: 30px; line-height: 1;
  cursor: pointer;
}

/* Tier-1 IYC sector cards */
.sectors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 34px);
}
.sector { border-top: 2px solid var(--blue); padding-top: 20px; }
.sector__tier {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}
.sector__tier--1a { color: #fff; background: var(--blue); padding: 3px 9px; }
.sector h3 { font-size: 18px; margin: 12px 0 8px; color: var(--navy); font-family: var(--font-display); font-weight: 600; }
.sector__mkt { font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: 23px; line-height: 1; }
.sector__mkt small { display: block; font-family: var(--font-body); font-weight: 600; font-size: 10px; letter-spacing: 0.14em; color: var(--body); text-transform: uppercase; margin-top: 4px; }
.sector p { font-size: 14px; margin-top: 14px; color: var(--body); }

/* IYC thesis characteristics */
.char-list { list-style: none; max-width: var(--text-max); }
.char-list li { padding: 14px 0; border-bottom: 1px solid var(--hairline); font-size: 16px; }
.char-list li:last-child { border-bottom: 0; }
.char-list li strong { color: var(--navy); font-family: var(--font-display); }
.char-list li::before { content: "·"; color: var(--blue); margin-right: 12px; }

/* ---------- Homepage doors ---------- */
.doors { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 30px; max-width: 560px; }
.door { display: block; padding: 17px 20px; background: rgba(16, 24, 43, 0.32); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.16); border-radius: 16px; color: #fff; transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease; }
.door:hover { background: rgba(16, 24, 43, 0.44); transform: translateY(-3px); box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28); }
.door:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.door__k { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.14em; line-height: 1.35; text-transform: uppercase; color: rgba(255, 255, 255, 0.82); min-height: 2.7em; }
.door strong { display: block; font-family: var(--font-display); font-weight: 600; font-size: clamp(15px, 1.35vw, 18px); margin: 6px 0 9px; line-height: 1.15; min-height: 2.3em; }
@media (max-width: 478px) { .door__k, .door strong { min-height: 0; } }
.door__a { font-size: 13.5px; font-weight: 600; }

/* Proof + service-stack logo wall */
.logowall { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: clamp(28px, 5vw, 72px); }
.logowall img { height: clamp(24px, 2.6vw, 38px); width: auto; }

/* IYC pillar */
.pillar { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); gap: clamp(32px, 5vw, 72px); align-items: center; }

/* Case cards (light, with logo) */
.casecards { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(24px, 3vw, 40px); }
.casecard { border: 1px solid var(--hairline); background: var(--white); padding: clamp(28px, 3vw, 40px); display: flex; flex-direction: column; }
.casecard__logo { height: 30px; width: auto; align-self: flex-start; object-fit: contain; margin-bottom: 20px; }
/* Fixed-height logo slot keeps card titles aligned while each mark reads at the same optical size */
.casecard__logobox { height: 42px; display: inline-flex; align-items: center; align-self: flex-start; margin-bottom: 22px; }
.casecard__logobox img { display: block; width: auto; }
.casecard h3 { font-family: var(--font-display); color: var(--navy); font-weight: 600; font-size: 22px; }
.casecard__period { font-size: 13px; color: var(--slate); margin-top: 3px; }
.casecard p { font-size: 15px; color: var(--slate); margin-top: 12px; }
.casecard__metrics { display: flex; gap: 28px; margin-top: auto; padding-top: 22px; flex-wrap: wrap; }
.casecard__metrics span { font-family: var(--font-display); font-weight: 600; color: var(--blue); font-size: 22px; line-height: 1; }
.casecard__metrics small { display: block; font-family: var(--font-body); font-weight: 600; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--slate); margin-top: 3px; }

/* CTA / statement over background film */
.cta-film { position: relative; overflow: hidden; background: var(--ink); color: rgba(255, 255, 255, 0.86); }
.cta-film > video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.6; }
.cta-film::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(16,24,43,0.40), rgba(16,24,43,0.60)); z-index: 0; }
.cta-film__inner { position: relative; z-index: 1; padding: clamp(72px, 9vw, 140px) 0; }
.cta-film h2, .cta-film .display { color: #fff; }
.cta-film .eyebrow { color: var(--peri); }
.cta-film .btn--ghost { color: #fff; border-color: rgba(255, 255, 255, 0.4); }
.cta-film .btn--ghost:hover { color: #fff; border-color: #fff; background: rgba(255, 255, 255, 0.06); }

/* ---------- Section sub-nav (Platform breadcrumb + tabs) ---------- */
.subnav { border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); background: var(--panel); margin-bottom: clamp(40px, 5vw, 72px); }
.subnav__inner { display: flex; align-items: center; gap: 26px; height: 62px; overflow-x: auto; }
.subnav__crumb { font-size: 13px; color: var(--slate); margin-right: auto; white-space: nowrap; }
.subnav__crumb a { color: var(--slate); }
.subnav__crumb a:hover { color: var(--blue); }
.subnav a.subnav__tab {
  font-size: 14px; font-weight: 600; color: var(--slate); white-space: nowrap;
  padding: 6px 0; border-bottom: 2px solid transparent;
}
.subnav a.subnav__tab:hover { color: var(--navy); }
.subnav a.subnav__tab.is-current { color: var(--blue); border-bottom-color: var(--blue); }

/* ---------- Team people grid (poster + hover/in-view video) ---------- */
.team-people {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
}
.tcard { display: flex; flex-direction: column; }
.tcard__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--hairline);
}
.tcard__media img,
.tcard__media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tcard__media video { opacity: 0; transition: opacity 0.5s ease; }
.tcard.is-playing .tcard__media video { opacity: 1; }
.tcard__name {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  font-size: 20px;
  margin-top: 18px;
}
.tcard__role { color: var(--blue); font-weight: 600; font-size: 14px; margin-top: 3px; }
.tcard__bio { color: var(--slate); font-size: 14.5px; margin-top: 10px; }
.tcard__li {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px; font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
  color: var(--blue);
}
.tcard__li::after { display: none; }
.tcard__li:hover { color: var(--navy); }

/* Founder feature (About) */
.founder { display: grid; grid-template-columns: minmax(0, 250px) minmax(0, 1fr); gap: clamp(32px, 5vw, 64px); align-items: center; }
.founder__media { position: relative; width: 100%; max-width: 250px; aspect-ratio: 4 / 5; overflow: hidden; background: var(--panel); border: 1px solid var(--hairline); border-radius: 16px; }
.founder__media img, .founder__media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.founder__media video { opacity: 0; transition: opacity 0.5s ease; }
.founder.is-playing .founder__media video, .founder__media:hover video { opacity: 1; }

/* ---------- Breakpoints ---------- */

@media (max-width: 991px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    padding: 0 44px;
    background: var(--white);
    transform: translateY(-102%);
    visibility: hidden;
    transition: transform 0.45s ease, visibility 0s linear 0.45s;
    z-index: 101;
  }
  .nav__menu.is-open {
    transform: none;
    visibility: visible;
    transition: transform 0.45s ease;
  }
  .nav__menu a { font-size: 22px; font-family: var(--font-display); font-weight: 600; }
  .nav__item--has-menu { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
  .nav__caret { display: none; }
  .nav__sub {
    position: static; transform: none; margin-top: 0;
    opacity: 1; visibility: visible;
    background: none; border: 0; box-shadow: none; -webkit-backdrop-filter: none; backdrop-filter: none;
    padding: 0; min-width: 0; gap: 16px; transition: none;
  }
  .nav__sub::before { display: none; }
  .nav__sub a { font-size: 17px; font-family: var(--font-body); font-weight: 500; color: var(--body); padding: 0; }

  .grid-3, .cap-grid, .team-grid, .insight-grid, .sectors, .team-people { grid-template-columns: repeat(2, 1fr); }
  .founder, .pillar { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(3, 1fr); }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .legal { grid-template-columns: 1fr; }
  .legal__toc { position: static; margin-bottom: 48px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 32px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 767px) {
  .container { padding: 0 24px; }
  .hero__scroll { left: 24px; }
  .grid-3, .grid-4, .cap-grid, .steps, .duo, .forward, .team-grid, .insight-grid, .cases, .sectors, .doors, .casecards { grid-template-columns: 1fr; }
  .callout { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; gap: 32px; }
  .newsletter { flex-direction: column; }
  [dir="rtl"] .hero__scroll { right: 24px; }
  .footer__grid { grid-template-columns: 1fr; }
  .legal__toc { grid-template-columns: 1fr; }
}

@media (max-width: 478px) {
  .container { padding: 0 18px; }
  .hero__scroll { left: 18px; }
  .nav__inner { height: 72px; }
  .nav__logo img { height: 22px; min-width: 110px; }
  .team-people { grid-template-columns: 1fr; }
}

/* ---------- Professional-client gate (fund materials) ---------- */
.gate {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(16, 24, 43, 0.62);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.gate.is-open { display: flex; }
.gate__card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 22px;
  max-width: 540px;
  width: 100%;
  padding: clamp(28px, 4vw, 46px);
  box-shadow: 0 30px 90px rgba(16, 24, 43, 0.3);
}
.gate__card .eyebrow { color: var(--blue); }
.gate__card h2 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.12;
  margin: 10px 0 16px;
}
.gate__card p { color: var(--slate); font-size: 15.5px; line-height: 1.6; }
.gate__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.gate__fine { font-size: 12px; color: var(--slate); margin-top: 20px; line-height: 1.5; }

/* ---------- Accordion (native details/summary) ---------- */
.acc-group { max-width: 880px; }
.acc { border-top: 1px solid var(--hairline); }
.acc:last-child { border-bottom: 1px solid var(--hairline); }
.acc > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 4px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  font-size: clamp(18px, 1.9vw, 23px);
  line-height: 1.25;
}
.acc > summary::-webkit-details-marker { display: none; }
.acc__hint { margin-left: auto; font-family: var(--font-body); font-weight: 400; font-size: 14px; color: var(--slate); }
.acc > summary::after {
  content: "+";
  flex: none;
  width: 1.1em;
  text-align: center;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 26px;
  line-height: 1;
  color: var(--blue);
  transition: transform 0.2s ease;
}
.acc[open] > summary::after { content: "−"; }
.acc > summary:hover { color: var(--blue); }
.acc > summary:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }
.acc__body { padding: 0 4px 26px; }
.acc__body > p { color: var(--body); font-size: 15.5px; margin-bottom: 14px; }
.acc__body ul { list-style: none; columns: 2; column-gap: 40px; }
.acc__body li {
  position: relative;
  padding: 8px 0 8px 22px;
  font-size: 15.5px;
  color: var(--body);
  break-inside: avoid;
}
.acc__body li::before { content: "·"; position: absolute; left: 6px; color: var(--blue); }
@media (max-width: 600px) {
  .acc__hint { display: none; }
  .acc__body ul { columns: 1; }
}

/* ---------- Shared hover-reveal selector (Who We Work With / VC / ManCo) ---------- */
.selector { max-width: 100%; }
.selector__chips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.selector__chip {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.25;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 17px 20px;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.selector__chip:hover,
.selector__chip.is-active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.selector__chip:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }
.selector__panel {
  margin-top: 22px;
  background: rgba(30, 77, 216, 0.045);
  border: 1px solid var(--hairline);
  border-top: 2px solid var(--blue);
  border-radius: 4px 4px 14px 14px;
  padding: 28px 30px;
  min-height: 136px;
  box-shadow: 0 10px 30px rgba(16, 24, 43, 0.05);
  display: flex;
  align-items: center;
}
.selector__desc {
  margin: 0;
  font-size: clamp(16px, 1.4vw, 18.5px);
  line-height: 1.6;
  color: var(--navy);
  max-width: 820px;
  transition: opacity 0.15s ease;
}
@media (max-width: 860px) { .selector__chips { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) {
  .selector__chips { grid-template-columns: 1fr; }
  .selector__panel { min-height: 0; padding: 24px; }
}

/* ---------- IYC centred pull-quote (Funds sector statement, 4.4) ---------- */
.iyc-statement { text-align: center; max-width: 760px; margin: clamp(40px, 5vw, 64px) auto 0; }
.iyc-statement hr { width: 48px; height: 2px; background: var(--blue); border: 0; margin: 0 auto 26px; }
.iyc-statement p {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--navy);
  font-size: clamp(22px, 2.5vw, 33px);
  line-height: 1.4;
  margin: 0 auto;
  max-width: 760px;
  text-wrap: balance;
}

/* ---------- Three non-negotiables, weighty gates (Funds, 4.5) ---------- */
.ngates { display: grid; gap: 16px; }
.ngate {
  border: 1px solid var(--hairline);
  border-left: 3px solid var(--blue);
  border-radius: 12px;
  padding: 22px 26px;
  background: var(--white);
}
.ngate__label {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.2;
  margin: 0;
}
.ngate__desc { color: var(--slate); font-size: 16px; margin-top: 8px; }
/* Soft red live-indicator pulse (final colour pending Xavier, spec 10) */
.pulse-dot {
  display: inline-block;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #E5484D;
  margin-right: 11px;
  vertical-align: middle;
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(229, 72, 77, 0.5); }
  50% { opacity: 0.5; box-shadow: 0 0 0 6px rgba(229, 72, 77, 0); }
}
@media (prefers-reduced-motion: reduce) { .pulse-dot { animation: none; opacity: 1; box-shadow: none; } }

/* ---------- Contact office map (8.1) ---------- */
.office-map {
  display: block;
  width: 100%;
  height: 360px;
  border: 1px solid var(--hairline);
  border-radius: 16px;
  margin-top: 8px;
}
