/* ========================================================================
   Xyra Group — Design System
   Palette derived from the Introductory Memorandum: deep purple + gold.
   ======================================================================== */

:root {
  /* Brand */
  --purple-deep:   #2A0F4F;   /* primary brand — IM cover */
  --purple:        #3B1865;   /* primary */
  --purple-soft:   #5B2A8C;   /* surfaces, secondary */
  --purple-haze:   #8B6BB8;   /* tints */
  --gold:          #C9892A;   /* accent */
  --gold-soft:     #E0AE5B;   /* hover/highlight */
  --gold-faint:    #F2DDB5;   /* tinted backgrounds */

  /* Neutrals */
  --cream:         #F8F4EC;   /* warm body bg */
  --ivory:         #FCFAF5;   /* surface */
  --paper:         #FFFFFF;
  --ink:           #171018;   /* primary text */
  --ink-soft:      #3D3140;
  --mute:          #6B5E70;
  --rule:          #E5DDD2;
  --rule-strong:   #C9BFAF;

  /* Semantic */
  --bg:            var(--cream);
  --surface:       var(--ivory);
  --text:          var(--ink);
  --text-mute:     var(--mute);
  --primary:       var(--purple);
  --primary-strong:var(--purple-deep);
  --accent:        var(--gold);

  /* Type */
  --font-display: "Cormorant Garamond", "Garamond", "EB Garamond", Georgia, serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, Menlo, monospace;

  /* Scale */
  --step--1: clamp(0.78rem, 0.76rem + 0.10vw, 0.86rem);
  --step-0:  clamp(0.95rem, 0.90rem + 0.20vw, 1.05rem);
  --step-1:  clamp(1.10rem, 1.00rem + 0.40vw, 1.25rem);
  --step-2:  clamp(1.35rem, 1.20rem + 0.70vw, 1.65rem);
  --step-3:  clamp(1.75rem, 1.50rem + 1.20vw, 2.30rem);
  --step-4:  clamp(2.30rem, 1.85rem + 2.10vw, 3.50rem);
  --step-5:  clamp(3.00rem, 2.30rem + 3.20vw, 5.20rem);

  /* Layout */
  --container: 1240px;
  --gutter: clamp(1rem, 2.5vw, 2rem);
  --section-y: clamp(4rem, 8vw, 7rem);

  /* Effects */
  --shadow-1: 0 1px 2px rgba(23,16,24,0.04), 0 4px 12px rgba(23,16,24,0.06);
  --shadow-2: 0 8px 24px rgba(42,15,79,0.10), 0 24px 60px rgba(42,15,79,0.08);
  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 14px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ====================================================================== */
/* Reset & base                                                            */
/* ====================================================================== */

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }

::selection { background: var(--purple); color: var(--gold-faint); }

/* ====================================================================== */
/* Typography                                                              */
/* ====================================================================== */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
}
h1 { font-size: var(--step-5); font-weight: 500; letter-spacing: -0.02em; }
h2 { font-size: var(--step-4); font-weight: 500; }
h3 { font-size: var(--step-3); }
h4 { font-size: var(--step-2); }

p { font-size: var(--step-0); line-height: 1.65; max-width: 70ch; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
}
.eyebrow.on-dark { color: var(--gold-soft); }

.lead {
  font-family: var(--font-display);
  font-size: var(--step-2);
  line-height: 1.35;
  font-style: italic;
  color: var(--ink-soft);
  font-weight: 400;
  max-width: 36ch;
}

/* ====================================================================== */
/* Layout primitives                                                       */
/* ====================================================================== */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.section { padding-top: var(--section-y); padding-bottom: var(--section-y); }
.section--tight { padding-top: clamp(2rem,5vw,4rem); padding-bottom: clamp(2rem,5vw,4rem); }
.section--purple {
  background: var(--purple-deep);
  color: var(--cream);
}
.section--purple h1, .section--purple h2, .section--purple h3, .section--purple h4 {
  color: var(--cream);
}
.section--purple p { color: rgba(248,244,236,0.80); }

.section--gold-edge {
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}
@media (min-width: 880px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--text-2 > *:first-child { order: 2; }
}

.stack > * + * { margin-top: 1rem; }
.stack-lg > * + * { margin-top: 1.5rem; }

/* ====================================================================== */
/* Buttons & links                                                         */
/* ====================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all 0.25s var(--ease);
  border: 1px solid transparent;
  cursor: pointer;
  line-height: 1;
}
.btn--primary {
  background: var(--gold);
  color: var(--purple-deep);
}
.btn--primary:hover { background: var(--gold-soft); transform: translateY(-1px); box-shadow: var(--shadow-1); }
.btn--ghost {
  background: transparent;
  color: currentColor;
  border-color: currentColor;
}
.btn--ghost:hover { background: var(--purple); color: var(--gold); border-color: var(--purple); }
.btn--ghost.on-dark:hover { background: var(--gold); color: var(--purple-deep); border-color: var(--gold); }
.btn .arrow { transition: transform 0.25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--purple);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  transition: all 0.25s var(--ease);
}
.link-arrow:hover { color: var(--gold); border-color: var(--purple); }
.link-arrow .arrow { transition: transform 0.25s var(--ease); }
.link-arrow:hover .arrow { transform: translateX(4px); }

/* ====================================================================== */
/* Header / navigation                                                     */
/* ====================================================================== */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 244, 236, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--purple-deep);
}
.brand__mark { width: 36px; height: 36px; flex-shrink: 0; }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav { display: flex; align-items: center; gap: 2rem; }
.nav__link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  transition: color 0.2s var(--ease);
  padding: 6px 0;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav__link:hover, .nav__link.is-active { color: var(--purple-deep); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }
.nav__cta { margin-left: 0.5rem; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--purple-deep);
  position: relative;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 22px; height: 2px;
  background: var(--purple-deep);
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after  { top:  7px; }

@media (max-width: 880px) {
  .nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--rule);
    padding: 1rem var(--gutter) 1.5rem;
    gap: 0;
  }
  .nav.is-open .nav__link {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--rule);
  }
  .nav.is-open .nav__cta { margin: 1rem 0 0; align-self: flex-start; }
}

/* ====================================================================== */
/* Hero                                                                    */
/* ====================================================================== */

.hero {
  background: var(--purple-deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(201,137,42,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(91,42,140,0.40) 0%, transparent 60%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
  position: relative;
  z-index: 1;
}
@media (min-width: 880px) {
  .hero__inner { grid-template-columns: 1.15fr 1fr; }
}
.hero h1 {
  color: var(--cream);
  font-size: clamp(2.4rem, 1.8rem + 3.4vw, 5rem);
  line-height: 1.05;
}
.hero h1 .accent {
  background: linear-gradient(120deg, var(--gold) 0%, var(--gold-soft) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  font-style: italic;
}
.hero p { color: rgba(248,244,236,0.86); font-size: var(--step-1); max-width: 50ch; }
.hero__cta { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 1rem; }

.hero__visual {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--purple-soft) 0%, var(--purple-deep) 100%);
  border-radius: var(--radius);
  border: 1px solid rgba(201,137,42,0.30);
  box-shadow: var(--shadow-2);
  overflow: hidden;
}
.hero__visual::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(42,15,79,0.40) 100%);
}
.hero__visual img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: luminosity; opacity: 0.72; }
.hero__seal {
  position: absolute;
  bottom: 1.4rem; left: 1.4rem;
  width: 88px; height: 88px;
  z-index: 2;
}

/* Page hero (smaller — non-home pages) */
.page-hero {
  background: var(--purple-deep);
  color: var(--cream);
  text-align: center;
  padding: clamp(4rem,8vw,6rem) var(--gutter) clamp(3rem,6vw,4.5rem);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at top, rgba(201,137,42,0.10) 0%, transparent 60%),
    radial-gradient(ellipse at bottom, rgba(91,42,140,0.50) 0%, transparent 70%);
}
.page-hero__inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.page-hero h1 { color: var(--cream); margin-top: 0.6rem; }
.page-hero p { color: rgba(248,244,236,0.80); margin: 1rem auto 0; font-size: var(--step-1); }

/* ====================================================================== */
/* Stats                                                                   */
/* ====================================================================== */

.stats {
  background: var(--ivory);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem,3vw,2.5rem);
  padding: clamp(2.5rem,5vw,4rem) 0;
}
@media (min-width: 720px) { .stats__grid { grid-template-columns: repeat(4, 1fr); } }
.stat { text-align: left; padding: 0 0.5rem; border-left: 2px solid var(--gold); padding-left: 1.25rem; }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.4rem + 2.4vw, 3.4rem);
  font-weight: 500;
  color: var(--purple-deep);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat__num small { font-size: 0.55em; color: var(--gold); margin-left: 0.1em; vertical-align: super; }
.stat__label {
  margin-top: 0.7rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
}

/* ====================================================================== */
/* Cards / committees / pillars                                            */
/* ====================================================================== */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1rem, 2vw, 1.75rem);
}
.card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute; top: 0; left: 0;
  width: 4px; height: 0;
  background: var(--gold);
  transition: height 0.4s var(--ease);
}
.card:hover { transform: translateY(-3px); border-color: var(--purple-soft); box-shadow: var(--shadow-1); }
.card:hover::before { height: 100%; }
.card__num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.7rem;
  font-weight: 500;
}
.card h3, .card h4 { color: var(--purple-deep); margin-bottom: 0.7rem; }
.card p { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.6; }

.card--purple {
  background: var(--purple-deep);
  color: var(--cream);
  border-color: var(--purple-soft);
}
.card--purple h3, .card--purple h4 { color: var(--cream); }
.card--purple p { color: rgba(248,244,236,0.78); }
.card--purple .card__num { color: var(--gold); }
.card--purple::before { display: none !important; }

/* ====================================================================== */
/* Founder block                                                           */
/* ====================================================================== */

.founder {
  background: var(--ivory);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.founder__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem,4vw,3rem);
  padding: clamp(3rem,7vw,5.5rem) 0;
  align-items: start;
}
@media (min-width: 920px) {
  .founder__inner { grid-template-columns: 380px 1fr; }
}
.founder__portrait {
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--purple-soft), var(--purple-deep));
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--rule-strong);
}
.founder__portrait img { width: 100%; height: 100%; object-fit: cover; }
.founder__portrait::after {
  content: "";
  position: absolute; inset: auto 0 0 0;
  height: 40%;
  background: linear-gradient(180deg, transparent, rgba(42,15,79,0.35));
}
.founder__quote { font-family: var(--font-display); font-size: var(--step-2); line-height: 1.4; font-style: italic; color: var(--ink-soft); }
.founder__signature {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 0.2rem;
}
.founder__signature strong { font-family: var(--font-display); font-size: 1.4rem; font-weight: 500; color: var(--purple-deep); }
.founder__signature span { font-size: 0.85rem; color: var(--mute); letter-spacing: 0.10em; text-transform: uppercase; }

/* ====================================================================== */
/* Board                                                                   */
/* ====================================================================== */

.board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: clamp(1rem, 2.5vw, 2rem);
}
.board-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.board-card:hover { transform: translateY(-4px); border-color: var(--purple-soft); box-shadow: var(--shadow-2); }
.board-card__photo {
  aspect-ratio: 1/1.15;
  background: linear-gradient(160deg, var(--purple-soft), var(--purple-deep));
  position: relative; overflow: hidden;
}
.board-card__photo::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 50%;
  background: linear-gradient(180deg, transparent, rgba(42,15,79,0.55));
}
.board-card__photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.board-card:hover .board-card__photo img { transform: scale(1.05); }
.board-card__body { padding: 1.2rem 1.2rem 1.4rem; }
.board-card__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--purple-deep);
  line-height: 1.2;
  margin-bottom: 0.2rem;
}
.board-card__role {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.board-card__bio { font-size: 0.88rem; line-height: 1.55; color: var(--ink-soft); margin-bottom: 1rem; }
.board-card__linkedin {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.78rem; color: var(--purple); font-weight: 600;
  border-bottom: 1px solid transparent; padding-bottom: 2px;
  transition: all 0.2s var(--ease);
}
.board-card__linkedin:hover { color: var(--gold); border-color: var(--gold); }

/* ====================================================================== */
/* Sectors / verticals                                                     */
/* ====================================================================== */

.sectors {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}
.sector {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 1.8rem 1.5rem;
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
  position: relative;
}
.sector:hover {
  background: var(--purple-deep);
  color: var(--cream);
  border-color: var(--purple);
  transform: translateY(-3px);
}
.sector:hover .sector__num,
.sector:hover h4 { color: var(--gold-soft); }
.sector:hover p { color: rgba(248,244,236,0.85); }
.sector__num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.20em;
  margin-bottom: 0.8rem;
  display: block;
  transition: color 0.3s var(--ease);
}
.sector h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--purple-deep);
  transition: color 0.3s var(--ease);
}
.sector p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ink-soft);
  transition: color 0.3s var(--ease);
}

/* ====================================================================== */
/* Founders CTA box (yellow/gold call-to-action)                           */
/* ====================================================================== */

.cta-box {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  border: 1px solid rgba(42,15,79,0.10);
  position: relative;
  overflow: hidden;
}
@media (min-width: 720px) {
  .cta-box {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
  .cta-box__text { flex: 1 1 60%; min-width: 0; }
  .cta-box .btn { flex: 0 0 auto; }
}
.cta-box__text { min-width: 0; }
.cta-box::before {
  content: "";
  position: absolute;
  top: -40%; right: -10%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(42,15,79,0.10), transparent 70%);
  pointer-events: none;
}
.cta-box h3 {
  color: var(--purple-deep);
  font-size: var(--step-2);
  font-style: italic;
  position: relative;
  z-index: 1;
}
.cta-box p {
  color: rgba(42,15,79,0.85);
  margin-top: 0.5rem;
  position: relative;
  z-index: 1;
}
.cta-box .btn {
  background: var(--purple-deep);
  color: var(--gold-soft);
  position: relative;
  z-index: 1;
}
.cta-box .btn:hover { background: var(--ink); color: var(--gold); }

.cta-box--purple {
  background: linear-gradient(135deg, var(--purple-deep) 0%, var(--purple) 100%);
  color: var(--cream);
}
.cta-box--purple h3 { color: var(--cream); }
.cta-box--purple p { color: rgba(248,244,236,0.85); }
.cta-box--purple .btn { background: var(--gold); color: var(--purple-deep); }
.cta-box--purple .btn:hover { background: var(--gold-soft); }

/* ====================================================================== */
/* Advisers / partners strip                                               */
/* ====================================================================== */

.partners {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
}
@media (min-width: 720px) { .partners { grid-template-columns: repeat(4, 1fr); } }
.partner {
  height: 100px;
  display: flex; align-items: center; justify-content: center;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  transition: all 0.3s var(--ease);
}
.partner:hover { border-color: var(--purple-soft); box-shadow: var(--shadow-1); }
.partner__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--purple-deep);
  text-align: center;
  letter-spacing: 0.02em;
}
.partner__sub { display: block; font-family: var(--font-body); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.20em; text-transform: uppercase; color: var(--mute); margin-top: 0.3rem; }

/* ====================================================================== */
/* Forms                                                                   */
/* ====================================================================== */

.form { display: grid; gap: 1.2rem; }
.field { display: grid; gap: 0.4rem; }
.field label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--paper);
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--ink);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(91,42,140,0.10);
}
.field textarea { min-height: 140px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 720px) { .field-row { grid-template-columns: 1fr 1fr; } }

/* ====================================================================== */
/* Footer                                                                  */
/* ====================================================================== */

.footer {
  background: var(--purple-deep);
  color: rgba(248,244,236,0.75);
  padding: clamp(3rem, 5vw, 4.5rem) 0 1.5rem;
}
.footer h4 {
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.footer__top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(248,244,236,0.12);
}
.footer__col p, .footer__col a, .footer__col li {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(248,244,236,0.78);
}
.footer__col ul { list-style: none; }
.footer__col a { transition: color 0.2s var(--ease); }
.footer__col a:hover { color: var(--gold); }
.footer__brand {
  grid-column: 1 / -1;
}
@media (min-width: 720px) {
  .footer__brand { grid-column: span 2; }
}
.footer__brand .brand { color: var(--cream); margin-bottom: 1rem; }
.footer__brand p { max-width: 38ch; }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  font-size: 0.78rem;
  color: rgba(248,244,236,0.55);
}
.footer__legal { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.footer__legal a { color: rgba(248,244,236,0.65); }
.footer__legal a:hover { color: var(--gold); }

.socials { display: flex; gap: 0.7rem; margin-top: 0.5rem; }
.socials a {
  width: 36px; height: 36px;
  border: 1px solid rgba(248,244,236,0.20);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.25s var(--ease);
  color: rgba(248,244,236,0.75);
}
.socials a:hover { background: var(--gold); color: var(--purple-deep); border-color: var(--gold); transform: translateY(-2px); }
.socials svg { width: 16px; height: 16px; fill: currentColor; }

/* ====================================================================== */
/* Disclosure / regulatory notice block                                    */
/* ====================================================================== */

.disclosure {
  background: var(--purple-deep);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  color: rgba(248,244,236,0.78);
  padding: 2.5rem 0;
}
.disclosure h4 {
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.disclosure p { font-size: 0.84rem; line-height: 1.7; max-width: none; color: rgba(248,244,236,0.72); }
.disclosure p + p { margin-top: 0.8rem; }

/* ====================================================================== */
/* Cookie banner                                                           */
/* ====================================================================== */

.cookie-banner {
  position: fixed;
  bottom: clamp(1rem, 2.4vw, 1.6rem);
  left: clamp(1rem, 2.4vw, 1.6rem);
  right: clamp(1rem, 2.4vw, 1.6rem);
  z-index: 200;
  max-width: 560px;
  background: var(--purple-deep);
  color: var(--cream);
  padding: 1.6rem 1.7rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.55), 0 8px 20px -10px rgba(42,15,79,0.45);
  border: 1px solid rgba(201,137,42,0.55);
  display: none;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
  backdrop-filter: blur(2px);
}
.cookie-banner::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(201,137,42,0.2));
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
}
.cookie-banner.is-visible {
  display: block;
  animation: cookieRise 0.5s var(--ease) forwards;
}
@keyframes cookieRise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-banner__eyebrow {
  font-family: var(--font-mono, monospace);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}
.cookie-banner h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.55rem;
  letter-spacing: -0.005em;
}
.cookie-banner p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(248,244,236,0.82);
  margin-bottom: 1.15rem;
  max-width: 52ch;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}
.cookie-banner .btn {
  padding: 0.7rem 1.25rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}
.cookie-banner__policy {
  margin-left: auto;
  font-size: 0.74rem;
  color: rgba(248,244,236,0.7);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s var(--ease);
}
.cookie-banner__policy:hover { color: var(--gold); }
@media (max-width: 540px) {
  .cookie-banner__policy { margin-left: 0; margin-top: 0.4rem; flex-basis: 100%; }
}

/* ====================================================================== */
/* Policy / legal pages                                                    */
/* ====================================================================== */

.policy {
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4.5rem) var(--gutter);
}
.policy h1 { font-size: var(--step-4); margin-bottom: 0.5rem; color: var(--purple-deep); }
.policy h2 { font-size: var(--step-2); margin: 2.5rem 0 0.8rem; color: var(--purple-deep); }
.policy h3 { font-size: var(--step-1); margin: 1.6rem 0 0.6rem; color: var(--purple); }
.policy p, .policy li { font-size: 0.98rem; line-height: 1.75; color: var(--ink-soft); margin-bottom: 1rem; max-width: none; }
.policy ul, .policy ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.policy li { margin-bottom: 0.4rem; }
.policy strong { color: var(--ink); }
.policy__meta {
  font-size: 0.85rem;
  color: var(--mute);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--rule);
}

/* ====================================================================== */
/* Helpers                                                                 */
/* ====================================================================== */

.text-center { text-align: center; }
.muted { color: var(--mute); }
.purple { color: var(--purple); }
.gold { color: var(--gold); }
.divider { width: 60px; height: 2px; background: var(--gold); border: 0; margin: 1.2rem 0; }
.divider--center { margin: 1.2rem auto; }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0s !important; transition-duration: 0s !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* Print */
@media print {
  .header, .footer, .cookie-banner, .hero__visual, .nav, video, iframe { display: none !important; }
}

/* ============================================================
   VIDEO SECTIONS
   ============================================================ */
.video-section { background: var(--cream); }
.video-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}
@media (min-width: 900px) {
  .video-row { grid-template-columns: 1.05fr 1fr; }
  .video-row--reverse { grid-template-columns: 1fr 1.05fr; }
  .video-row--reverse > .video-frame { order: 2; }
}
.video-frame {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 24px 60px -28px rgba(23,16,24,0.35), 0 8px 22px -10px rgba(42,15,79,0.20);
  background: var(--ink);
  border: 1px solid rgba(42,15,79,0.10);
}
.video-frame__inner {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}
.video-frame__inner iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  display: block;
}
.video-section .video-row > div:not(.video-frame) p {
  max-width: 58ch;
}

/* ============================================================
   PARTNERS — LOGO VARIANT
   ============================================================ */
.partners--logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  align-items: stretch;
}
@media (min-width: 720px) {
  .partners--logos { grid-template-columns: repeat(4, 1fr); }
}
.partners--logos .partner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.6rem 1.25rem;
  min-height: 180px;
  background: var(--ivory);
  border: 1px solid rgba(42,15,79,0.10);
  border-radius: 4px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.partners--logos .partner:hover {
  border-color: var(--gold);
  box-shadow: 0 14px 32px -16px rgba(42,15,79,0.25);
  transform: translateY(-3px);
}
.partners--logos .partner img {
  max-width: 100%;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(0.15);
  opacity: 0.92;
  transition: filter 0.3s var(--ease), opacity 0.3s var(--ease);
  flex: 0 0 auto;
}
.partners--logos .partner:hover img {
  filter: none;
  opacity: 1;
}
.partners--logos .partner .partner__sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  line-height: 1.55;
  text-align: center;
  margin: 0;
  max-width: 24ch;
}

/* ============================================================
   COMPETITIVE ADVANTAGE (split layout on purple)
   ============================================================ */
.advantage {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.8rem, 4vw, 3.4rem);
  align-items: center;
}
@media (min-width: 880px) {
  .advantage { grid-template-columns: 1fr 1fr; }
}
.advantage__media img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 28px 70px -34px rgba(0,0,0,0.6);
  display: block;
}
.advantage__body p { margin-top: 1rem; }

/* ============================================================
   WHY-NOW (two-column with media)
   ============================================================ */
.why-now {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3.6rem);
  align-items: center;
}
@media (min-width: 900px) {
  .why-now { grid-template-columns: 1.05fr 1fr; }
}
.why-now__media img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 24px 60px -32px rgba(42,15,79,0.45);
  display: block;
}
.why-now__body p { margin-top: 1rem; }

/* ============================================================
   INTEGRATION DIAGRAM — horizontal chips above, core node, vertical layers below
   ============================================================ */
.integration {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  max-width: 1080px;
  margin: 0 auto;
}
.integration__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 0.7rem;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.integration__row--vertical { gap: 0.8rem 1rem; }
.integration__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.integration__chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -14px rgba(42,15,79,0.35);
}
.integration__chip--layer {
  background: var(--purple-deep);
  color: var(--cream);
  border-color: var(--purple-deep);
  padding: 0.7rem 1.4rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.integration__connector {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
}
.integration__core {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 1.1rem 2.2rem;
  border: 2px solid var(--gold);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: 0 30px 60px -36px rgba(42,15,79,0.4);
}
.integration__core-label {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 0.9rem + 1.1vw, 1.6rem);
  color: var(--ink);
  line-height: 1.1;
}
.integration__core-sub {
  margin-top: 0.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   CAREERS GAP REDUCTION
   ============================================================ */
.section.section--snug { padding-top: 2.4rem; padding-bottom: 2.4rem; }
.section.section--snug-top { padding-top: 2.4rem; }
.section.section--snug-bottom { padding-bottom: 2.4rem; }

/* ============================================================
   WHY XYRA — LARGER TREATMENT (Investor page)
   ============================================================ */
.why-xyra-large h2 {
  font-size: clamp(2.6rem, 1.6rem + 3.6vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.012em;
}
.why-xyra-large .eyebrow { font-size: 0.9rem; letter-spacing: 0.14em; }
.why-xyra-large .card h3 {
  font-size: clamp(1.3rem, 0.95rem + 1vw, 1.65rem);
  line-height: 1.2;
}
.why-xyra-large .card p {
  font-size: 1.05rem;
  line-height: 1.65;
}

/* ============================================================
   WHY-NOW — 12-vertical pill list inside body
   ============================================================ */
.why-now__verticals {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.6rem;
}
.why-now__verticals li {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.95rem;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  color: var(--ink);
}

/* ============================================================
   CONTACT FORM — remove stray purple rule below form
   ============================================================ */
.section--purple .form,
.section--purple .form + * {
  border-bottom: none !important;
}
.section--purple .form {
  padding-bottom: 0;
  margin-bottom: 0;
}

/* Stats — accommodate word values like "Centuries" / "Billions" */
.stat__num {
  word-break: keep-all;
}
.stat__num.is-word {
  font-size: clamp(1.6rem, 1rem + 1.8vw, 2.4rem);
  letter-spacing: 0;
  font-style: italic;
}

/* Make stat children block-level so label sits below number */
.stat__num, .stat__label { display: block; }

/* ====================================================================== */
/* Brand wordmark (orange Xyra logo + "Group/Holdings" lockup)            */
/* ====================================================================== */
.brand__wordmark {
  height: 32px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.brand__lockup {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--purple-deep);
  display: inline-flex;
  align-items: baseline;
  gap: 0.35em;
}
.brand__lockup small {
  font-family: var(--font-display);
  font-size: 0.78em;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.02em;
  color: var(--gold);
}
.brand--on-dark .brand__lockup { color: var(--cream); }
.brand--on-dark .brand__lockup small { color: var(--gold); }

/* ====================================================================== */
/* Hero — airy variant + photo on right                                    */
/* ====================================================================== */
.hero--airy .hero__inner { gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero--airy .hero__copy h1 { line-height: 1.08; margin-bottom: 1.4rem; }
.hero--airy .hero__copy p {
  line-height: 1.85;
  font-size: clamp(1.05rem, 0.95rem + 0.4vw, 1.18rem);
  letter-spacing: 0.005em;
  margin-bottom: 2rem;
  max-width: 56ch;
}
.hero__visual.hero__visual--photo {
  display: block;
  width: 100%;
  height: auto;
  background: transparent;
  aspect-ratio: auto;
  border: none;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}
.hero__visual.hero__visual--photo::after { content: none; }
.hero__visual.hero__visual--photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  object-fit: cover;
  mix-blend-mode: normal;
  opacity: 1;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.55);
}

/* ====================================================================== */
/* Stats — dark navy band, gold serif numerals                             */
/* ====================================================================== */
.stats--dark {
  background: #0E1A2E;
  border-top: none;
  border-bottom: none;
  color: var(--cream);
}
.stats--dark .stat {
  border-left: none;
  padding-left: 0.5rem;
  text-align: center;
}
@media (min-width: 720px) {
  .stats--dark .stat { text-align: left; padding-left: 1.25rem; }
  .stats--dark .stat + .stat { border-left: 1px solid rgba(201,137,42,0.25); }
}
.stats--dark .stat__num {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--gold);
  font-size: clamp(2.2rem, 1.4rem + 2.6vw, 3.6rem);
  letter-spacing: -0.01em;
}
.stats--dark .stat__num small { color: var(--gold); font-size: 0.6em; }
.stats--dark .stat__label {
  color: rgba(252,250,245,0.85);
  letter-spacing: 0.18em;
  font-weight: 600;
}

/* ====================================================================== */
/* Split with image                                                        */
/* ====================================================================== */
.split--with-image {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.8rem, 4vw, 3.2rem);
  align-items: center;
}
@media (min-width: 860px) {
  .split--with-image { grid-template-columns: 1fr 1fr; gap: clamp(2.4rem, 4vw, 4rem); }
}
.split__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  box-shadow: 0 24px 50px -28px rgba(0,0,0,0.45);
}

/* ====================================================================== */
/* Section — navy variant                                                  */
/* ====================================================================== */
.section--navy {
  background: #0E1A2E;
  color: var(--cream);
}
.section--navy h2,
.section--navy .on-dark { color: var(--cream); }
.section--navy p.on-dark { color: rgba(252,250,245,0.88); }
.section--navy .eyebrow.on-dark { color: var(--gold); }

/* ====================================================================== */
/* Section--purple p.on-dark consistency                                   */
/* ====================================================================== */
.section--purple h2.on-dark { color: var(--cream); }
.section--purple p.on-dark { color: rgba(252,250,245,0.92); }

/* ====================================================================== */
/* Bio modal (board cards)                                                 */
/* ====================================================================== */
.bio-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(15, 10, 25, 0.78);
  backdrop-filter: blur(4px);
}
.bio-modal.is-open { display: flex; }
.bio-modal__panel {
  background: var(--cream);
  color: var(--ink);
  max-width: 720px;
  width: 100%;
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
  border-radius: 8px;
  padding: clamp(1.6rem, 3vw, 2.4rem) clamp(1.4rem, 3vw, 2.6rem);
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.bio-modal__close {
  position: absolute;
  top: 0.8rem;
  right: 1rem;
  background: transparent;
  border: 0;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ink-soft);
  padding: 0.4rem 0.6rem;
}
.bio-modal__close:hover { color: var(--purple-deep); }
.bio-modal__head {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  margin-bottom: 1.4rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--rule);
}
.bio-modal__photo {
  width: 96px;
  height: 96px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
  background: var(--ivory);
}
.bio-modal__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bio-modal__name { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; color: var(--purple-deep); margin: 0 0 0.2rem; }
.bio-modal__role { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin: 0 0 0.6rem; font-weight: 600; }
.bio-modal__linkedin { font-size: 0.85rem; color: var(--purple-deep); text-decoration: none; border-bottom: 1px solid currentColor; }
.bio-modal__linkedin:hover { color: var(--gold); }
.bio-modal__body p { font-size: 0.96rem; line-height: 1.75; margin-bottom: 0.9rem; color: var(--ink); }

.board-card { cursor: pointer; transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.board-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -22px rgba(0,0,0,0.35); }
.board-card:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

body.modal-open { overflow: hidden; }

/* ====================================================================== */
/* v2 — Hero gradient (top-down purple)                                    */
/* ====================================================================== */
.hero.hero--gradient {
  background: linear-gradient(180deg, var(--purple-soft) 0%, var(--purple) 45%, var(--purple-deep) 100%);
}
.hero.hero--gradient::before { display: none; }

/* ====================================================================== */
/* v2 — Stats: purple variant (matches hero gradient terminus)             */
/* ====================================================================== */
.stats--purple {
  background: var(--purple-deep);
  color: var(--cream);
  border-top: none;
  border-bottom: none;
}
.stats--purple .stat {
  border-left: none;
  padding-left: 0.5rem;
  text-align: center;
}
@media (min-width: 720px) {
  .stats--purple .stat { text-align: left; padding-left: 1.25rem; }
  .stats--purple .stat + .stat { border-left: 1px solid rgba(201,137,42,0.28); }
}
.stats--purple .stat__num {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--gold);
  font-size: clamp(2.2rem, 1.4rem + 2.6vw, 3.6rem);
  letter-spacing: -0.01em;
}
.stats--purple .stat__num small { color: var(--gold); font-size: 0.6em; }
.stats--purple .stat__label {
  color: rgba(252,250,245,0.85);
  letter-spacing: 0.18em;
  font-weight: 600;
}

/* ====================================================================== */
/* v2 — Split media right (text left, image right on desktop)              */
/* On mobile, image stacks above text for visual rhythm.                   */
/* ====================================================================== */
@media (min-width: 860px) {
  .split--with-image.split--media-right > .split__copy { order: 1; }
  .split--with-image.split--media-right > .split__media { order: 2; }
}

/* ====================================================================== */
/* v2 — Brand wordmark on dark backgrounds                                 */
/* The new logo-xyra.png is dark on transparent. On dark surfaces (footer) */
/* invert luminance to render light, then preserve original orange hue.    */
/* ====================================================================== */
.brand__wordmark { height: 44px; }
.brand__wordmark--invert {
  filter: invert(1) brightness(1.15);
}

/* v2 — hide the legacy "Group/Holdings" text lockup; the new image already
   contains the Group wordmark.                                            */
.brand__lockup { display: none !important; }

/* v2 — soften any padding-top on the Advisors section when preceded by a
   tight-padded section, to reduce blank space.                            */
.section--tight + .section { padding-top: clamp(2.4rem, 5vw, 4rem); }

/* v2 — ESG page: scroll-reveal images with subtle fade + rise            */
.esg-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: opacity, transform;
}
.esg-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.esg-figure {
  margin: clamp(2.4rem, 5vw, 4rem) 0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 24px 60px -32px rgba(42,15,79,0.45);
}
.esg-figure img { width: 100%; height: auto; display: block; }
.esg-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 3vw, 1.6rem);
  margin: clamp(2rem, 5vw, 3.4rem) 0;
}
@media (min-width: 720px) {
  .esg-grid { grid-template-columns: 1fr 1fr; }
}

/* ====================================================================== */
/* v3 — Section spacing helpers                                            */
/* ====================================================================== */
.section--tight-bottom { padding-bottom: clamp(2rem, 4vw, 3rem) !important; }
.section--tight-top    { padding-top:    clamp(2rem, 4vw, 3rem) !important; }

/* ====================================================================== */
/* v3 — Seven theatres: centre the trailing 3 cards on the second row     */
/* Desktop: 4 cards top row, 3 centred on bottom row.                     */
/* Mobile: stack normally (auto-fit fallback inherited).                  */
/* ====================================================================== */
@media (min-width: 960px) {
  .sectors--centered-tail {
    grid-template-columns: repeat(12, 1fr);
  }
  .sectors--centered-tail > .sector { grid-column: span 3; }
  .sectors--centered-tail > .sector:nth-child(5) { grid-column: 2 / span 3; }
  .sectors--centered-tail > .sector:nth-child(6) { grid-column: span 3; }
  .sectors--centered-tail > .sector:nth-child(7) { grid-column: span 3; }
}

/* ====================================================================== */
/* v3 — Three-up cards (careers disciplines)                              */
/* ====================================================================== */
@media (min-width: 860px) {
  .cards--three { grid-template-columns: repeat(3, 1fr) !important; }
}

/* ====================================================================== */
/* v3 — ESG accordion (collapsible sections I/II/III)                     */
/* ====================================================================== */
.esg-accordion {
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--paper);
  margin: 0 0 1.25rem;
  overflow: hidden;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.esg-accordion + .esg-accordion { margin-top: 1.25rem; }
.esg-accordion[open] {
  border-color: var(--purple-soft);
  box-shadow: var(--shadow-1);
}
.esg-accordion > summary,
.esg-accordion__summary {
  list-style: none;
  list-style-type: none;
  cursor: pointer;
  padding: clamp(1.4rem, 1.1rem + 1vw, 1.9rem) clamp(1.6rem, 1.2rem + 1.4vw, 2.2rem);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 0.95rem + 0.7vw, 1.5rem);
  font-weight: 500;
  color: var(--purple-deep);
  letter-spacing: -0.005em;
  transition: background-color 0.2s var(--ease);
}
.esg-accordion > summary::-webkit-details-marker,
.esg-accordion > summary::marker,
.esg-accordion__summary::-webkit-details-marker,
.esg-accordion__summary::marker { display: none; content: ""; }
.esg-accordion > summary:hover,
.esg-accordion__summary:hover { background: rgba(42,15,79,0.04); }
.esg-accordion > summary:focus-visible,
.esg-accordion__summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}
.esg-accordion__title {
  font-family: var(--font-display);
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  letter-spacing: inherit;
}
.esg-accordion__title { flex: 1; }
.esg-accordion__chev {
  font-family: var(--font-display);
  font-size: 1.9rem;
  line-height: 1;
  color: var(--gold);
  transition: transform 0.3s var(--ease);
  display: inline-block;
  font-weight: 300;
  flex-shrink: 0;
}
.esg-accordion[open] .esg-accordion__chev {
  transform: rotate(45deg);
}
.esg-accordion__body {
  padding: clamp(1.4rem, 1rem + 1vw, 1.9rem) clamp(1.6rem, 1.2rem + 1.4vw, 2.2rem) clamp(1.8rem, 1.2rem + 1.4vw, 2.4rem);
  border-top: 1px solid var(--rule);
  color: var(--ink-soft);
  line-height: 1.75;
  font-size: clamp(0.95rem, 0.9rem + 0.2vw, 1.02rem);
}
.esg-accordion__body p + p { margin-top: 1.1rem; }
.esg-accordion__body h3,
.esg-accordion__body h4 {
  color: var(--purple-deep);
  font-family: var(--font-display);
  font-weight: 500;
  margin: 1.6rem 0 0.7rem;
  letter-spacing: -0.005em;
}
.esg-accordion__body ul, .esg-accordion__body ol { margin: 0.8rem 0 0.8rem 1.4rem; }
.esg-accordion__body li { margin-bottom: 0.55rem; }

/* ====================================================================== */
/* v3 — Footer socials breathing room                                     */
/* ====================================================================== */
.footer .socials { margin-top: 1.6rem; }

/* ====================================================================== */
/* v3 — Board-card LinkedIn glyph (replaces "LinkedIn ↗" text)            */
/* ====================================================================== */
.board-card__linkedin {
  width: 36px; height: 36px;
  padding: 0;
  border: 1px solid var(--rule);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--paper);
  color: var(--purple-deep);
  transition: all 0.25s var(--ease);
  border-bottom: 1px solid var(--rule);
}
.board-card__linkedin svg {
  width: 18px; height: 18px;
  fill: currentColor;
  display: block;
}
.board-card__linkedin:hover {
  background: var(--purple-deep);
  color: var(--cream);
  border-color: var(--purple-deep);
  transform: translateY(-1px);
}

/* Read more button on board cards */
.board-card__actions { display: flex; align-items: center; gap: 0.7rem; margin-top: 0.6rem; flex-wrap: wrap; }
.board-card__readmore {
  appearance: none;
  border: 1px solid var(--rule);
  background: var(--paper);
  color: var(--purple-deep);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.board-card__readmore:hover { background: var(--purple-deep); color: var(--cream); border-color: var(--purple-deep); }
.board-card__readmore .arrow { margin-left: 0.3rem; color: var(--gold); }
.board-card__readmore:hover .arrow { color: var(--cream); }

/* sr-only — visually hidden but accessible to screen readers */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* ====================================================================== */
/* v3 — Founder section reverse layout (CEO message — image on right)     */
/* Markup order: text first, then portrait. Grid swaps column ratio.      */
/* ====================================================================== */
@media (min-width: 920px) {
  .founder--reverse .founder__inner {
    grid-template-columns: 1fr 380px;
  }
}

/* ====================================================================== */
/* v5 — Investment Thesis page                                            */
/* Bespoke diagrams, roadmap timeline, conviction pillars                 */
/* Palette anchors: --purple-deep, --gold, --cream                        */
/* ====================================================================== */

/* Lead intro band */
.thesis-lead {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 1.6vw + 1rem, 1.95rem);
  line-height: 1.45;
  font-weight: 500;
  color: var(--ink);
  max-width: 60ch;
}
.thesis-lead .accent { color: var(--gold); font-style: italic; }

/* Section eyebrow + heading rhythm specific to this page */
.thesis-section h2 { margin-top: 0.6rem; }
.thesis-section .lead { max-width: 64ch; }

/* ----- Horizontal × Vertical integration diagram ---------------------- */
.thesis-integration {
  position: relative;
  display: grid;
  gap: 2rem;
  align-items: center;
  margin-top: 1.5rem;
}
@media (min-width: 980px) {
  .thesis-integration { grid-template-columns: 1.05fr 1fr; gap: 3.5rem; }
}
.thesis-integration__svg {
  width: 100%;
  height: auto;
  max-width: 560px;
  margin: 0 auto;
  display: block;
}
.thesis-integration__svg .axis-line {
  stroke: var(--gold);
  stroke-width: 1.4;
  stroke-dasharray: 360;
  stroke-dashoffset: 360;
  fill: none;
  transition: stroke-dashoffset 1.6s var(--ease) 0.15s;
}
.thesis-integration__svg .pillar-line {
  stroke: var(--purple-soft);
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 240;
  stroke-dashoffset: 240;
  transition: stroke-dashoffset 1.6s var(--ease) 0.35s;
}
.thesis-integration__svg .node {
  fill: var(--gold);
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  transform: scale(0);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.thesis-integration__svg .node-label {
  font-family: var(--font-mono, "Inter", sans-serif);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  fill: var(--ink);
  opacity: 0;
  transition: opacity 0.5s var(--ease) 0.6s;
}
.thesis-integration__svg .axis-label {
  font-family: var(--font-mono, "Inter", sans-serif);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  fill: var(--ink-soft);
  opacity: 0;
  transition: opacity 0.6s var(--ease) 0.8s;
}
.thesis-integration.is-in .axis-line { stroke-dashoffset: 0; }
.thesis-integration.is-in .pillar-line { stroke-dashoffset: 0; }
.thesis-integration.is-in .node { opacity: 1; transform: scale(1); }
.thesis-integration.is-in .node:nth-child(odd) { transition-delay: 0.7s; }
.thesis-integration.is-in .node:nth-child(even) { transition-delay: 0.9s; }
.thesis-integration.is-in .node-label,
.thesis-integration.is-in .axis-label { opacity: 1; }

.thesis-integration__copy h3 { margin: 0 0 0.6rem; font-size: clamp(1.4rem, 1.2vw + 1rem, 1.8rem); }
.thesis-integration__copy p { max-width: 56ch; }

/* ----- Acquisition mandate verticals (six cards) ---------------------- */
.thesis-verticals {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 720px) { .thesis-verticals { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .thesis-verticals { grid-template-columns: repeat(3, 1fr); } }
.vertical-card {
  background: var(--paper, #fff);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem 1.7rem;
  position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.vertical-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
  border-color: rgba(201, 137, 42, 0.45);
}
.vertical-card__num {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.16em;
  color: var(--gold);
  display: block;
  margin: 0 0 0.4rem;
  padding-top: 0;
}
.vertical-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.2rem;
  line-height: 1.3;
}
.vertical-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.6;
  font-size: 0.96rem;
}

/* ----- Three economies (value-creation model) ------------------------- */
.thesis-economies {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 820px) { .thesis-economies { grid-template-columns: repeat(3, 1fr); } }
.economy-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(252, 250, 245, 0.18);
  border-radius: var(--radius);
  padding: 1.7rem 1.6rem 1.8rem;
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.economy-card__roman {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.3rem;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 0.7rem;
}
.economy-card h3 {
  margin: 0 0 0.6rem;
  color: var(--cream);
  font-size: 1.25rem;
}
.economy-card p {
  margin: 0;
  color: rgba(252, 250, 245, 0.82);
  line-height: 1.65;
  font-size: 0.96rem;
}

/* ----- Roadmap timeline (three phases) -------------------------------- */
.thesis-roadmap {
  position: relative;
  margin-top: 2rem;
}
.thesis-roadmap__rail {
  position: absolute;
  left: 0; right: 0;
  top: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold) 100%);
  opacity: 0.25;
  border-radius: 2px;
  display: none;
}
@media (min-width: 900px) { .thesis-roadmap__rail { display: block; } }
.thesis-roadmap__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
  position: relative;
}
@media (min-width: 900px) {
  .thesis-roadmap__grid { grid-template-columns: repeat(3, 1fr); gap: 2.2rem; }
}
.phase {
  position: relative;
  padding-top: 64px;
}
.phase__dot {
  position: absolute;
  top: 18px;
  left: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 1px var(--rule);
  z-index: 2;
}
@media (min-width: 900px) {
  .phase__dot { left: 50%; transform: translateX(-50%); }
}
.phase__num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}
.phase h3 {
  margin: 0 0 0.7rem;
  font-size: 1.3rem;
  line-height: 1.3;
}
.phase p { color: var(--ink-soft); line-height: 1.7; margin: 0 0 0.8rem; }
.phase p:last-child { margin-bottom: 0; }
.phase__milestone {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.35rem 0.8rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-mono, "Inter", sans-serif);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
}

/* ----- Five convictions (pillars) ------------------------------------- */
.thesis-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  counter-reset: conviction;
}
@media (min-width: 720px) { .thesis-pillars { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .thesis-pillars { grid-template-columns: repeat(5, 1fr); } }
.pillar {
  background: var(--paper, #fff);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 1.7rem 1.3rem 1.5rem;
  position: relative;
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.pillar:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-2);
}
.pillar__roman {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 1.6rem;
  line-height: 1;
  display: block;
  margin-bottom: 0.7rem;
}
.pillar h4 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  line-height: 1.3;
  color: var(--ink);
}
.pillar p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ----- Audience CTA cards --------------------------------------------- */
.thesis-cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 820px) { .thesis-cta-grid { grid-template-columns: repeat(3, 1fr); } }
.cta-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(252,250,245,0.18);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem 1.9rem;
  color: var(--cream);
  display: flex;
  flex-direction: column;
}
.cta-card__eyebrow {
  font-family: var(--font-mono, "Inter", sans-serif);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.cta-card h3 {
  margin: 0 0 0.7rem;
  color: var(--cream);
  font-size: 1.15rem;
  line-height: 1.35;
}
.cta-card p {
  margin: 0 0 1.4rem;
  color: rgba(252,250,245,0.82);
  font-size: 0.96rem;
  line-height: 1.65;
  flex: 1;
}
.cta-card .btn { align-self: flex-start; }

/* ============================================================
   PODCAST SECTION (McKinsey-style)
   ============================================================ */
.podcast {
  background: var(--purple-deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(4rem, 8vw, 7rem);
}
.podcast::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(201,137,42,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(91,42,140,0.40) 0%, transparent 60%);
  pointer-events: none;
}
.podcast .container { position: relative; z-index: 1; }
.podcast__hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
  padding-bottom: clamp(2.4rem, 5.5vw, 4rem);
  align-items: center;
}
@media (min-width: 900px) {
  .podcast__hero { grid-template-columns: 1fr auto; gap: 2.4rem; }
}
.podcast__hero h2 { color: var(--cream); margin: 0 0 1rem; font-size: clamp(2rem, 4.4vw, 3.2rem); line-height: 1.05; }
.podcast__hero p { color: rgba(252,250,245,0.86); max-width: 60ch; line-height: 1.65; margin: 0 0 1.2rem; }
.podcast__platforms { display: flex; gap: 0.8rem; margin-top: 0.4rem; }
.podcast__platforms a {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--cream);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--purple-deep);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}
.podcast__platforms a:hover { transform: translateY(-2px); background: var(--gold); color: var(--cream); }
.podcast__platforms svg { width: 18px; height: 18px; }
.podcast__listen .btn {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(252,250,245,0.55);
  padding: 0.85rem 1.6rem;
}
.podcast__listen .btn:hover { background: var(--gold); border-color: var(--gold); color: var(--cream); }
.podcast__card {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--cream);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 28px 70px -32px rgba(0,0,0,0.45);
}
@media (min-width: 900px) {
  .podcast__card { grid-template-columns: 1fr 1.15fr; }
}
.podcast__card-body { padding: clamp(1.6rem, 3vw, 2.4rem); display: flex; flex-direction: column; justify-content: center; }
.podcast__date { font-family: var(--font-mono); font-size: 0.85rem; color: var(--ink-soft); margin: 0 0 0.8rem; letter-spacing: 0.02em; }
.podcast__card-body h3 { margin: 0 0 0.9rem; font-size: clamp(1.3rem, 2.4vw, 1.7rem); color: var(--purple-deep); line-height: 1.2; }
.podcast__card-body h3 a { color: inherit; text-decoration: none; }
.podcast__card-body h3 a:hover { color: var(--gold); }
.podcast__card-body h3 .arrow { color: var(--gold); margin-left: 0.3rem; }
.podcast__card-body p { margin: 0; color: var(--ink-soft); line-height: 1.65; max-width: 50ch; }
.podcast__media { position: relative; aspect-ratio: 16/9; background: var(--ink); }
.podcast__media iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.podcast__spacer { height: 80px; background: var(--cream); display: none; }
.podcast__outro {
  margin: clamp(1.5rem, 3vw, 2.5rem) auto clamp(2.4rem, 5vw, 4rem);
  max-width: 760px;
  text-align: center;
}
.podcast__outro p {
  color: rgba(252,250,245,0.86);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 0 0 1rem;
}
.podcast__outro p:last-child { margin-bottom: 0; }

/* ============================================================
   v3 INSTITUTIONAL COMPONENTS
   ============================================================ */

/* Three-Layer Architecture (G42-style pillar grid) */
.layers {
  display: grid;
  gap: clamp(1.4rem, 2.5vw, 2rem);
  grid-template-columns: 1fr;
  margin-top: clamp(2rem, 4vw, 3rem);
}
@media (min-width: 920px) {
  .layers { grid-template-columns: repeat(3, 1fr); }
}
.layer {
  position: relative;
  background: var(--paper, #FCFAF5);
  border: 1px solid var(--rule, rgba(42,15,79,0.12));
  border-top: 3px solid var(--gold, #C9892A);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  transition: transform 0.5s cubic-bezier(.22,.61,.36,1), box-shadow 0.5s ease;
}
.layer:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px -36px rgba(42,15,79,0.35);
}
.layer__roman {
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  color: var(--gold, #C9892A);
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.layer__eyebrow {
  font-family: var(--font-mono, 'Inter', sans-serif);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft, rgba(0,0,0,0.55));
}
.layer__title {
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  color: var(--purple-deep, #2A0F4F);
  margin: 0;
  line-height: 1.18;
  font-weight: 500;
}
.layer__desc {
  color: var(--ink-soft, rgba(0,0,0,0.62));
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}
.layer__list {
  list-style: none;
  padding: 0;
  margin: 0.6rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 0.92rem;
  color: var(--ink, #1a1a1a);
  border-top: 1px solid var(--rule, rgba(42,15,79,0.1));
  padding-top: 1rem;
}
.layer__list li {
  position: relative;
  padding-left: 1.1rem;
  line-height: 1.5;
}
.layer__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px; height: 6px;
  background: var(--gold, #C9892A);
}

/* Purple variant for layers on dark sections */
.section--purple .layer {
  background: rgba(252,250,245,0.04);
  border: 1px solid rgba(201,137,42,0.25);
  border-top: 3px solid var(--gold, #C9892A);
}
.section--purple .layer__title { color: var(--cream, #FCFAF5); }
.section--purple .layer__desc { color: rgba(252,250,245,0.75); }
.section--purple .layer__list { color: rgba(252,250,245,0.9); border-top-color: rgba(201,137,42,0.2); }
.section--purple .layer__eyebrow { color: rgba(252,250,245,0.6); }

/* Strategic Arc / Phase Timeline */
.arc {
  display: grid;
  gap: clamp(1.4rem, 2.5vw, 2rem);
  grid-template-columns: 1fr;
  margin-top: clamp(2rem, 4vw, 3rem);
  position: relative;
}
@media (min-width: 920px) {
  .arc { grid-template-columns: repeat(3, 1fr); }
  .arc::before {
    content: "";
    position: absolute;
    top: 38px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold, #C9892A) 20%, var(--gold, #C9892A) 80%, transparent);
    opacity: 0.4;
    z-index: 0;
  }
}
.arc__phase {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: clamp(1.4rem, 3vw, 2rem);
}
.arc__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--purple-deep, #2A0F4F);
  color: var(--gold, #C9892A);
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  border: 1px solid var(--gold, #C9892A);
}
.section--purple .arc__num {
  background: var(--cream, #FCFAF5);
  color: var(--purple-deep, #2A0F4F);
  border-color: var(--cream, #FCFAF5);
}
.arc__eyebrow {
  font-family: var(--font-mono, 'Inter', sans-serif);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold, #C9892A);
}
.arc__title {
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  color: var(--purple-deep, #2A0F4F);
  margin: 0;
  font-weight: 500;
  line-height: 1.15;
}
.section--purple .arc__title { color: var(--cream, #FCFAF5); }
.arc__years {
  font-family: var(--font-mono, 'Inter', sans-serif);
  font-size: 0.88rem;
  color: var(--ink-soft, rgba(0,0,0,0.55));
  margin: 0;
  letter-spacing: 0.05em;
}
.section--purple .arc__years { color: rgba(252,250,245,0.7); }
.arc__list {
  list-style: none;
  padding: 0;
  margin: 0.6rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 0.92rem;
  line-height: 1.55;
  border-top: 1px solid var(--rule, rgba(42,15,79,0.1));
  padding-top: 1rem;
  color: var(--ink, #1a1a1a);
}
.section--purple .arc__list {
  color: rgba(252,250,245,0.88);
  border-top-color: rgba(201,137,42,0.2);
}
.arc__list li {
  position: relative;
  padding-left: 1.1rem;
}
.arc__list li::before {
  content: "■";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold, #C9892A);
  font-size: 0.7rem;
  line-height: 1.6;
}

/* Acquisition Sector Chips */
.mandate-chips {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  margin-top: clamp(1.6rem, 3vw, 2.4rem);
}
@media (min-width: 640px) { .mandate-chips { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px) { .mandate-chips { grid-template-columns: repeat(4, 1fr); } }
.mandate-chip {
  background: rgba(252,250,245,0.04);
  border: 1px solid rgba(201,137,42,0.3);
  padding: 1rem 1.1rem;
  color: var(--cream, #FCFAF5);
  font-family: var(--font-mono, 'Inter', sans-serif);
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  line-height: 1.3;
  display: flex;
  align-items: center;
  min-height: 64px;
  transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}
.mandate-chip:hover {
  transform: translateY(-2px);
  background: rgba(201,137,42,0.1);
  border-color: var(--gold, #C9892A);
}
.mandate-chip__num {
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  color: var(--gold, #C9892A);
  font-size: 1.2rem;
  margin-right: 0.7rem;
  font-weight: 500;
}

/* Light-section variant */
.section:not(.section--purple) .mandate-chip {
  background: var(--paper, #FCFAF5);
  border-color: var(--rule, rgba(42,15,79,0.15));
  color: var(--ink, #1a1a1a);
}
.section:not(.section--purple) .mandate-chip:hover {
  background: rgba(201,137,42,0.06);
  border-color: var(--gold, #C9892A);
}

/* Big Quiet Hero (SpaceX-inspired) */
.hero-quiet {
  background: linear-gradient(180deg, var(--purple-deep, #2A0F4F) 0%, #1d0a3a 100%);
  color: var(--cream, #FCFAF5);
  padding: clamp(6rem, 14vh, 11rem) 0 clamp(5rem, 12vh, 9rem);
  position: relative;
  overflow: hidden;
}
.hero-quiet::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 10%, rgba(201,137,42,0.18), transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(110, 50, 180, 0.25), transparent 55%);
  pointer-events: none;
}
.hero-quiet__inner {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 clamp(1.4rem, 4vw, 2.4rem);
  text-align: center;
}
.hero-quiet__eyebrow {
  font-family: var(--font-mono, 'Inter', sans-serif);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold, #C9892A);
  margin: 0 0 1.5rem;
}
.hero-quiet__rule {
  width: 60px;
  height: 1px;
  background: var(--gold, #C9892A);
  margin: 0 auto 2rem;
  opacity: 0.7;
}
.hero-quiet__headline {
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.005em;
  margin: 0 0 2rem;
  color: var(--cream, #FCFAF5);
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}
.hero-quiet__headline em {
  font-style: italic;
  color: var(--gold, #C9892A);
}
.hero-quiet__sub {
  font-family: var(--font-mono, 'Inter', sans-serif);
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  letter-spacing: 0.04em;
  color: rgba(252,250,245,0.78);
  max-width: 56ch;
  margin: 0 auto;
  line-height: 1.6;
}
.hero-quiet__cta {
  margin-top: clamp(2.4rem, 5vw, 3.2rem);
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-quiet__meta {
  margin-top: clamp(3rem, 7vw, 4.5rem);
  padding-top: 2rem;
  border-top: 1px solid rgba(201,137,42,0.2);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
@media (min-width: 760px) { .hero-quiet__meta { grid-template-columns: repeat(4, 1fr); } }
.hero-quiet__meta-item span {
  display: block;
  font-family: var(--font-mono, 'Inter', sans-serif);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(252,250,245,0.55);
  margin-bottom: 0.4rem;
}
.hero-quiet__meta-item strong {
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  color: var(--cream, #FCFAF5);
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* Long-form narrative section (Microsoft About-inspired) */
.narrative {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}
.narrative__inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 clamp(1.4rem, 4vw, 2.4rem);
}
.narrative__eyebrow {
  font-family: var(--font-mono, 'Inter', sans-serif);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold, #C9892A);
  margin: 0 0 1.4rem;
}
.narrative__h {
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  font-weight: 500;
  color: var(--purple-deep, #2A0F4F);
  margin: 0 0 2rem;
  letter-spacing: -0.005em;
}
.narrative__body p {
  font-size: clamp(1rem, 1.4vw, 1.13rem);
  line-height: 1.75;
  color: var(--ink, #1a1a1a);
  margin: 0 0 1.4rem;
}
.narrative__body p:last-child { margin-bottom: 0; }
.narrative__body strong { color: var(--purple-deep, #2A0F4F); }
.section--purple .narrative__h { color: var(--cream, #FCFAF5); }
.section--purple .narrative__body p { color: rgba(252,250,245,0.85); }
.section--purple .narrative__body strong { color: var(--gold, #C9892A); }

/* Confidential ribbon (institutional touch) */
.confidential-bar {
  background: var(--purple-deep, #2A0F4F);
  color: var(--cream, #FCFAF5);
  padding: 0.5rem 0;
  font-family: var(--font-mono, 'Inter', sans-serif);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-align: center;
  border-bottom: 1px solid var(--gold, #C9892A);
}

/* ============================================================
   REFERENCE-SITE LIFTS — Round 2 (May 2026)
   ============================================================ */

/* --- At-a-glance stats band (Aramco-style large numerals) --- */
.stats-band {
  background: var(--cream, #FCFAF5);
  border-top: 1px solid var(--rule, rgba(42,15,79,0.12));
  border-bottom: 1px solid var(--rule, rgba(42,15,79,0.12));
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}
.stats-band__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}
.stats-band__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.4rem 0;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 clamp(1.4rem, 4vw, 2.4rem);
}
@media (min-width: 720px) {
  .stats-band__grid { grid-template-columns: repeat(2, 1fr); gap: 3rem 2rem; }
}
@media (min-width: 980px) {
  .stats-band__grid { grid-template-columns: repeat(4, 1fr); }
}
.stats-band__item {
  text-align: center;
  position: relative;
}
@media (min-width: 980px) {
  .stats-band__item + .stats-band__item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: var(--rule, rgba(42,15,79,0.12));
  }
}
.stats-band__num {
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: clamp(3rem, 2rem + 4vw, 5.2rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink, #1a1a1a);
  display: block;
}
.stats-band__num--word {
  font-style: italic;
  color: var(--purple-deep, #2A0F4F);
  font-size: clamp(2.2rem, 1.5rem + 2.6vw, 3.8rem);
}
.stats-band__label {
  display: block;
  margin-top: 0.8rem;
  font-family: var(--font-mono, 'Inter', sans-serif);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted, #6b6b6b);
}
.stats-band__qualifier {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.75rem;
  color: var(--muted, #6b6b6b);
  font-style: italic;
}

/* --- Quick Access band (Broadcom-style flat tiles, on purple) --- */
.quick-access {
  background: var(--purple-deep, #2A0F4F);
  padding: clamp(2.8rem, 5vw, 4rem) 0;
  position: relative;
}
.quick-access__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1.4rem, 4vw, 2.4rem);
}
.quick-access__head {
  text-align: center;
  margin-bottom: clamp(1.8rem, 3vw, 2.4rem);
}
.quick-access__head h3 {
  color: var(--cream, #FCFAF5);
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.2rem);
  font-weight: 400;
  margin: 0;
}
.quick-access__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .quick-access__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .quick-access__grid { grid-template-columns: repeat(4, 1fr); } }
.quick-access__tile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.6rem 1.4rem;
  background: rgba(252,250,245,0.04);
  border: 1px solid rgba(252,250,245,0.14);
  color: var(--cream, #FCFAF5);
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  min-height: 140px;
}
.quick-access__tile:hover {
  background: rgba(201,137,42,0.10);
  border-color: var(--gold, #C9892A);
  transform: translateY(-2px);
}
.quick-access__tile-eyebrow, .quick-access__num {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold, #C9892A);
}
.quick-access__tile-title, .quick-access__tile h3 {
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: clamp(1.25rem, 1rem + 0.6vw, 1.55rem);
  line-height: 1.18;
  font-weight: 500;
  color: var(--cream, #FCFAF5);
  margin: 0;
  letter-spacing: 0;
  text-transform: none;
}
.quick-access__tile p {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(252,250,245,0.78);
  margin: 0;
  flex-grow: 1;
}
.quick-access__tile-arrow, .quick-access__arrow {
  margin-top: auto;
  font-size: 1.1rem;
  color: var(--gold, #C9892A);
  align-self: flex-end;
}

/* --- "What we believe" editorial band + conviction tiles (Aramco) --- */
.believe-band {
  background: var(--purple-deep, #2A0F4F);
  color: var(--cream, #FCFAF5);
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  position: relative;
  overflow: hidden;
}
.believe-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 85% 15%, rgba(201,137,42,0.16), transparent 55%),
    radial-gradient(ellipse at 5% 95%, rgba(110, 50, 180, 0.22), transparent 55%);
  pointer-events: none;
}
.believe-band__inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1.4rem, 4vw, 2.4rem);
}
.believe-band__head {
  max-width: 760px;
  margin: 0 auto clamp(2.6rem, 5vw, 4rem);
  text-align: center;
}
.believe-band__statement {
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: clamp(2.2rem, 1.4rem + 2.8vw, 3.6rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--cream, #FCFAF5);
  margin: 0.8rem 0 0;
}
.believe-band__statement em {
  font-style: italic;
  color: var(--gold, #C9892A);
}
.believe-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}
@media (min-width: 720px) { .believe-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .believe-grid { grid-template-columns: repeat(5, 1fr); } }
.believe-tile {
  background: rgba(252,250,245,0.05);
  border: 1px solid rgba(252,250,245,0.12);
  border-radius: 4px;
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.believe-tile:hover {
  background: rgba(201,137,42,0.08);
  border-color: rgba(201,137,42,0.42);
}
.believe-tile__num {
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: 1.4rem;
  color: var(--gold, #C9892A);
  font-style: italic;
}
.believe-tile__h, .believe-tile h3 {
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--cream, #FCFAF5);
  margin: 0;
  letter-spacing: 0;
  text-transform: none;
}
.believe-tile__body, .believe-tile p {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(252,250,245,0.78);
  margin: 0;
}

/* --- Key documents block (Aramco financial reports) --- */
.documents {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 920px;
  margin: 0 auto;
}
.documents__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem 1.4rem;
  padding: 1.4rem 1.6rem;
  background: var(--cream, #FCFAF5);
  border: 1px solid var(--rule, rgba(42,15,79,0.12));
  border-radius: 4px;
  align-items: center;
  transition: border-color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
  color: var(--ink, #1a1a1a);
}
@media (min-width: 720px) {
  .documents__item { grid-template-columns: 1fr auto auto auto; }
}
.documents__item:hover {
  border-color: var(--gold, #C9892A);
  transform: translateY(-2px);
}
.documents__item--ondemand {
  background: rgba(42,15,79,0.04);
}
.documents__title {
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: 1.18rem;
  font-weight: 400;
  line-height: 1.25;
}
.documents__title small {
  display: block;
  font-family: var(--font-mono, 'Inter', sans-serif);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted, #6b6b6b);
  margin-top: 0.3rem;
}
.documents__meta { display: block; }
.documents__meta h3 {
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: 1.32rem;
  font-weight: 500;
  line-height: 1.25;
  margin: 0 0 0.4rem 0;
  color: var(--ink, #1a1a1a);
  letter-spacing: 0;
  text-transform: none;
}
.documents__meta p {
  font-family: 'Inter', sans-serif;
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--muted, #6b6b6b);
  margin: 0;
  letter-spacing: 0;
  text-transform: none;
}
.documents__icon {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold, #C9892A);
  border: 1px solid var(--gold, #C9892A);
  padding: 0.32rem 0.55rem;
  border-radius: 2px;
}
.documents__cta {
  font-family: var(--font-mono, 'Inter', sans-serif);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold, #C9892A);
  border-bottom: 1px solid var(--gold, #C9892A);
  padding-bottom: 2px;
  white-space: nowrap;
}

/* --- Portfolio-in-Formation rail (Meta tech-style nav rail, hidden by default) --- */
:root {
  --portfolio-rail-visible: none; /* set to 'block' (or 'flex') once acquisitions close */
}
.portfolio-rail {
  display: var(--portfolio-rail-visible);
  background: var(--cream, #FCFAF5);
  border-bottom: 1px solid var(--rule, rgba(42,15,79,0.12));
  padding: 0.9rem 0;
}
.portfolio-rail.is-enabled { display: block !important; }
.portfolio-rail__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1.4rem, 4vw, 2.4rem);
  display: flex;
  gap: 2.2rem;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
}
.portfolio-rail__inner::-webkit-scrollbar { display: none; }
.portfolio-rail__eyebrow {
  font-family: var(--font-mono, 'Inter', sans-serif);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted, #6b6b6b);
  white-space: nowrap;
  padding-right: 1.4rem;
  border-right: 1px solid var(--rule, rgba(42,15,79,0.12));
}
.portfolio-rail__link {
  font-family: var(--font-mono, 'Inter', sans-serif);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--ink, #1a1a1a);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.25s ease;
}
.portfolio-rail__link:hover { color: var(--gold, #C9892A); }
.portfolio-rail__link--placeholder { color: var(--muted, #6b6b6b); font-style: italic; cursor: default; }

/* ============================================================
   ROUND 3 (24 May 2026) — additions
   ============================================================ */

/* Hero — two-column on desktop */
@media (min-width: 920px) {
  .hero-quiet__split { grid-template-columns: 1.15fr 1fr !important; }
}

/* Side-by-side scene + text block (Home Mandate, Home Counterparties intro, About Mandate, Careers lede, Thesis principals) */
.scene-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.6rem, 3.4vw, 2.8rem);
  align-items: center;
  max-width: 1140px;
  margin: 0 auto;
}
@media (min-width: 880px) {
  .scene-split { grid-template-columns: 1fr 1fr; }
  .scene-split--media-left .scene-split__media { order: 0; }
  .scene-split--media-left .scene-split__body { order: 1; }
}
.scene-split__media img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 28px 70px -32px rgba(42,15,79,0.45);
  display: block;
}
.section--purple .scene-split__media img {
  box-shadow: 0 28px 70px -32px rgba(0,0,0,0.55);
}

/* Visual separator (Thesis §3 / Investor §2) */
.section-divider {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(42,15,79,0.18), transparent);
  margin: clamp(2.4rem, 5vw, 3.6rem) auto;
  max-width: 720px;
}

/* Tightened founder/CEO section padding */
.founder--tight { padding-top: clamp(2.2rem, 4vw, 3rem); padding-bottom: clamp(2.2rem, 4vw, 3rem); }

/* ============================================================
   ROUND 4 (06 Jun 2026) — additions
   ============================================================ */

/* Wider hero inner for r4 hero (matches live xyragroup.com structure) */
.hero-quiet__inner--wide {
  max-width: 1240px;
  text-align: left;
}

/* Two-column split for r4 hero */
.hero-quiet__split--r4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3.4rem);
  align-items: center;
  text-align: left;
}
@media (min-width: 960px) {
  .hero-quiet__split--r4 {
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.4rem, 5vw, 4rem);
  }
}

/* Hero headline (r4) — smaller, two-stack, with gold italic accent line */
.hero-quiet__headline--r4 {
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  line-height: 1.08;
  max-width: 14ch;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}
.hero-quiet__headline--r4 em {
  display: block;
  margin-top: 0.4rem;
  font-style: italic;
  color: var(--gold, #C9892A);
}

/* Hero sub (r4) — left-aligned, narrower column */
.hero-quiet__sub--r4 {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: 48ch;
  margin-top: 1.6rem;
}

/* Hero figure (r4) — full-bleed image, larger presence */
.hero-quiet__figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  box-shadow: 0 32px 80px -28px rgba(0,0,0,0.6);
  object-fit: cover;
  aspect-ratio: 5 / 6;
}
@media (min-width: 960px) {
  .hero-quiet__figure img {
    aspect-ratio: 4 / 5;
    min-height: 520px;
  }
}

/* Centred CTA band below hero split */
.hero-quiet__cta--centred {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: clamp(2.4rem, 5vw, 3.4rem);
  padding-top: clamp(1.6rem, 3vw, 2.4rem);
  border-top: 1px solid rgba(201,137,42,0.18);
}

/* About mandate — emphasised media, airy text */
.scene-split--media-emphasised {
  max-width: 1240px;
}
@media (min-width: 880px) {
  .scene-split--media-emphasised { grid-template-columns: 1.15fr 1fr; }
}
.scene-split--airy .scene-split__body p { margin-bottom: 0; }
.scene-split--airy .scene-split__body { padding: clamp(0.5rem, 2vw, 1.2rem) 0; }

/* Tight-top utility (Investor IM section, used to reduce gap above) */
.section--tight-top { padding-top: clamp(2rem, 4vw, 3rem) !important; }

/* ============================================================
   ROUND 5 (06 Jun 2026, evening) — additions
   ============================================================ */

/* Hero r5: slightly larger text, reduced vertical padding (≈65vh feel),
   and inline CTA directly under the body paragraph (no centred band). */
.hero-quiet--r5 {
  padding: clamp(4.4rem, 9vh, 7rem) 0 clamp(3.6rem, 8vh, 6rem);
}
.hero-quiet__headline--r5 {
  font-size: clamp(2.6rem, 5.2vw, 4.4rem);
  line-height: 1.06;
  max-width: 16ch;
}
.hero-quiet__sub--r5 {
  font-size: clamp(1.02rem, 1.7vw, 1.18rem);
  line-height: 1.62;
  max-width: 52ch;
}
.hero-quiet__cta--inline {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: clamp(1.6rem, 3.2vw, 2.2rem);
  padding-top: 0;
  border-top: 0;
  justify-content: flex-start;
}

/* Home Board preview — full roster, compact photo + name + role + Read more */
.home-board-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.2vw, 1.6rem);
  margin-top: clamp(1.6rem, 3vw, 2.4rem);
}
@media (min-width: 640px) { .home-board-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 960px) { .home-board-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (min-width: 1200px) { .home-board-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); } }

.home-board-card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1rem 1rem 1.1rem;
  background: var(--cream, #FCFAF5);
  border: 1px solid rgba(42,15,79,0.10);
  border-radius: 6px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.home-board-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px -22px rgba(42,15,79,0.35);
  border-color: rgba(201,137,42,0.5);
}
.home-board-card__photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  background: #efe9dc;
}
.home-board-card__name {
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: 1.05rem;
  line-height: 1.2;
  margin: 0;
  color: var(--purple-deep, #2A0F4F);
}
.home-board-card__role {
  font-family: var(--font-mono, 'Inter', sans-serif);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(42,15,79,0.62);
  margin: 0;
  line-height: 1.4;
}
.home-board-card__cta {
  font-family: var(--font-mono, 'Inter', sans-serif);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold, #C9892A);
  margin-top: auto;
  padding-top: 0.4rem;
}

/* Mandate scene-split — chips flow within body column */
.scene-split--mandate .scene-split__body { padding-right: 0; }
.scene-split--mandate .sectors-grid,
.scene-split--mandate .mandate-chips {
  margin-top: clamp(1.4rem, 2.8vw, 1.8rem);
}

/* Thesis narrative with media: text-left, image-right side-by-side */
.narrative--with-media { padding: clamp(3rem, 6vw, 5rem) 0; }
.narrative__split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3.4rem);
  align-items: start;
}
@media (min-width: 960px) {
  .narrative__split {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
  }
}
.narrative__col .narrative__body { margin-top: 1.4rem; }
.narrative__media {
  margin: 0;
}
.narrative__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  box-shadow: 0 28px 70px -32px rgba(42,15,79,0.45);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

/* About — What We Believe lede band: text-LEFT, image-RIGHT */
.believe-lede {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.6rem, 3.4vw, 2.8rem);
  align-items: center;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  max-width: 1180px;
}
@media (min-width: 880px) {
  .believe-lede { grid-template-columns: 1.05fr 0.95fr; }
}
.believe-lede__copy .eyebrow { display: block; margin-bottom: 0.8rem; }
.believe-lede__media {
  margin: 0;
}
.believe-lede__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  box-shadow: 0 28px 70px -34px rgba(42,15,79,0.45);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.believe-band__statement--compact {
  font-size: clamp(1.1rem, 1.7vw, 1.35rem) !important;
  line-height: 1.5 !important;
  margin: 0 !important;
}

/* Section padding utilities used in Round 5 */
.section--snug-bottom { padding-bottom: clamp(2rem, 4vw, 3rem) !important; }
.section--airy { padding-top: clamp(4rem, 7vw, 6rem); padding-bottom: clamp(4rem, 7vw, 6rem); }

/* ============================================================
   ROUND 6 (07 Jun 2026) — additions
   ============================================================ */

/* Home Board Roster — refined sophistication, LinkedIn affordance.
   Re-uses .home-board-grid from Round 5 but overrides card chrome. */
.home-board-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--ivory, #FCFAF5);
  border: 1px solid rgba(42,15,79,0.10);
  border-radius: 4px;
  padding: 0;
  overflow: hidden;
  transition: transform 0.32s var(--ease, ease), box-shadow 0.32s var(--ease, ease), border-color 0.32s var(--ease, ease);
  isolation: isolate;
}
.home-board-card::after {
  content: "";
  position: absolute; inset: auto 0 0 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold, #C9892A), transparent);
  opacity: 0;
  transition: opacity 0.32s var(--ease, ease);
}
.home-board-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,137,42,0.45);
  box-shadow: 0 22px 44px -26px rgba(42,15,79,0.40);
}
.home-board-card:hover::after { opacity: 1; }

.home-board-card__link {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  text-decoration: none;
  color: inherit;
  flex: 1 1 auto;
}
.home-board-card__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: linear-gradient(180deg, #EFE9DC 0%, #E5DECB 100%);
}
.home-board-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s var(--ease, ease);
}
.home-board-card:hover .home-board-card__photo img { transform: scale(1.035); }

.home-board-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 1rem 1.1rem;
  flex: 1 1 auto;
}
.home-board-card__name {
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: 1.08rem;
  line-height: 1.18;
  margin: 0;
  color: var(--purple-deep, #2A0F4F);
}
.home-board-card__role {
  font-family: var(--font-mono, 'Inter', sans-serif);
  font-size: 0.70rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(42,15,79,0.62);
  margin: 0;
  line-height: 1.45;
  min-height: 2.1em; /* equalise card heights when role wraps to 2 lines */
}
.home-board-card__cta {
  font-family: var(--font-mono, 'Inter', sans-serif);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold, #C9892A);
  margin-top: 0.6rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(42,15,79,0.08);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.25s var(--ease, ease), letter-spacing 0.25s var(--ease, ease);
}
.home-board-card__cta .arrow {
  transition: transform 0.3s var(--ease, ease);
  display: inline-block;
}
.home-board-card:hover .home-board-card__cta { color: var(--purple-deep, #2A0F4F); }
.home-board-card:hover .home-board-card__cta .arrow { transform: translateX(4px); }

.home-board-card__linkedin {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(252, 250, 245, 0.92);
  color: var(--purple-deep, #2A0F4F);
  border: 1px solid rgba(42,15,79,0.18);
  border-radius: 50%;
  z-index: 2;
  text-decoration: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.25s var(--ease, ease), color 0.25s var(--ease, ease), border-color 0.25s var(--ease, ease), transform 0.25s var(--ease, ease);
}
.home-board-card__linkedin svg {
  width: 15px; height: 15px;
  fill: currentColor;
}
.home-board-card__linkedin:hover {
  background: var(--gold, #C9892A);
  color: #FCFAF5;
  border-color: var(--gold, #C9892A);
  transform: scale(1.06);
}

/* Believe band — matched-height statement (Round 6) */
.believe-band__statement--matched {
  font-size: clamp(1.35rem, 2.05vw, 1.75rem) !important;
  line-height: 1.42 !important;
  margin: 0 !important;
}
/* Reframe the believe image so both individuals (Manvedeep right, Graham centre) are visible.
   Use the photo's native aspect ratio with contain so nobody is cropped. */
.believe-lede__media img {
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center center !important;
  max-height: 460px;
  background: transparent;
}
@media (min-width: 880px) {
  .believe-lede__media img { max-height: 520px; }
}

/* ============================================================
   ROUND 7 — UNIVERSAL RESPONSIVE PASS (07 Jun 2026)
   Mobile-first safeguards applied across every page & breakpoint.
   ============================================================ */

/* 1. Hard prevention of horizontal page-overflow */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

/* 2. Universal media containment */
img, svg, video, iframe, picture, figure {
  max-width: 100%;
  height: auto;
}

/* 3. Prevent unbreakable words from blowing out columns */
body, p, h1, h2, h3, h4, h5, h6, li, a, span, dd, dt, blockquote, figcaption {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* 4. Grid blow-out defence — children of any grid must not push parent wider */
.scene-split > *,
.scene-split__body,
.scene-split__media,
.split > *,
.split--with-image > *,
.narrative__split > *,
.believe-lede > *,
.believe-grid > *,
.home-board-grid > *,
.mandate-chips > *,
.mandate-chip,
.layers > *,
.partners > *,
.partners--logos > *,
.partner,
.cards--three > *,
.cards--four > *,
.thesis-verticals > *,
.thesis-economies > *,
.thesis-roadmap__grid > *,
.thesis-pillars > *,
.thesis-cta-grid > *,
.documents__list > *,
.documents__item,
.documents__item > *,
.quick-access__grid > *,
.stats-band__grid > *,
.stats__grid > *,
.field-row > *,
.esg-grid > *,
.video-row > *,
.podcast__hero > *,
.podcast__card > *,
.hero-quiet__split > *,
.hero-quiet__meta > *,
.arc > *,
.three-phase > *,
.why-now > *,
.advantage > *,
.cta-box > *,
.footer > *,
.hero__inner > * {
  min-width: 0;
  max-width: 100%;
}

/* 5. Container padding — uniform breathing room across viewports */
.container {
  padding-inline: clamp(1rem, 5vw, 2.4rem);
}

/* 6. Mandate chips — force minmax(0) so long words like
       "Telecommunications" / "Satellite Communications" cannot
       blow out the 2-column mobile grid */
.mandate-chips {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}
@media (min-width: 640px) {
  .mandate-chips { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
}
@media (min-width: 960px) {
  .mandate-chips { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
}

/* 7. Home Board grid — minmax(0) on every breakpoint */
.home-board-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
@media (min-width: 640px)  { .home-board-grid { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; } }
@media (min-width: 960px)  { .home-board-grid { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; } }
@media (min-width: 1200px) { .home-board-grid { grid-template-columns: repeat(5, minmax(0, 1fr)) !important; } }

/* 8. Mobile-specific (≤ 600px) — single-column collapses & comfortable typography */
@media (max-width: 600px) {
  /* Reduce hero typography for narrow screens */
  .hero h1, .page-hero h1 {
    font-size: clamp(2rem, 8.5vw, 3rem) !important;
    line-height: 1.12 !important;
  }
  .hero p, .page-hero p {
    font-size: 1rem !important;
    line-height: 1.55 !important;
  }

  /* Single-column collapse where 2+ cols still risk overflow */
  .home-board-grid { grid-template-columns: 1fr !important; }
  .partners, .partners--logos { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 1.2rem !important; }
  .stats__grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .stats-band__grid { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .quick-access__grid { grid-template-columns: 1fr !important; }
  .believe-grid { grid-template-columns: 1fr !important; }
  .layers, .arc, .three-phase { grid-template-columns: 1fr !important; gap: 1.5rem !important; }
  .esg-grid { grid-template-columns: 1fr !important; }
  .thesis-cta-grid, .thesis-roadmap__grid, .thesis-economies { grid-template-columns: 1fr !important; }
  .thesis-pillars, .thesis-verticals { grid-template-columns: 1fr !important; }
  .cards--three, .cards--four { grid-template-columns: 1fr !important; }
  .hero-quiet__meta { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .hero-quiet__split { grid-template-columns: 1fr !important; }
  .video-row, .video-row--reverse { grid-template-columns: 1fr !important; }
  .podcast__hero, .podcast__card { grid-template-columns: 1fr !important; }
  .narrative__split, .scene-split, .split, .split--with-image, .believe-lede, .why-now, .advantage, .founder__inner, .thesis-integration {
    grid-template-columns: 1fr !important;
  }

  /* CTAs full-width and stacked */
  .cta-row, .hero__cta, .hero__ctas {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.8rem !important;
  }
  .cta-row .btn, .hero__cta .btn, .hero__ctas .btn,
  .btn--primary, .btn--ghost, .btn--gold {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
  }

  /* Documents list — collapse to two rows */
  .documents__item { grid-template-columns: 1fr !important; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr !important; gap: 2rem !important; }

  /* Section padding — tighter on mobile */
  .section { padding-block: clamp(2.4rem, 8vw, 3.6rem); }

  /* Mandate chips on very small — keep 2-col, smaller text */
  .mandate-chip {
    font-size: 0.78rem !important;
    padding: 0.85rem 0.9rem !important;
    min-height: 56px !important;
  }
  .mandate-chip__num { font-size: 1rem !important; margin-right: 0.4rem !important; }

  /* Tables responsive */
  table { display: block; overflow-x: auto; max-width: 100%; }

  /* Believe-lede image — reduce max-height on mobile */
  .believe-lede__media img { max-height: 340px !important; }

  /* Headline reductions */
  h1 { font-size: clamp(1.9rem, 7.5vw, 2.6rem) !important; }
  h2 { font-size: clamp(1.55rem, 6vw, 2.1rem) !important; }
  h3 { font-size: clamp(1.2rem, 5vw, 1.5rem) !important; }
}

/* 9. Tablet (601–880px) — collapse heavy 4/5-col grids to 2/3 */
@media (max-width: 880px) and (min-width: 601px) {
  .home-board-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .thesis-pillars { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .believe-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .partners--logos { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .narrative__split, .scene-split, .split, .split--with-image, .believe-lede, .why-now, .advantage, .founder__inner, .thesis-integration, .video-row, .video-row--reverse, .podcast__card, .hero-quiet__split {
    grid-template-columns: 1fr !important;
  }
  .layers, .arc, .three-phase { grid-template-columns: 1fr !important; }
}

/* 10. Navigation — ensure mobile menu items wrap & are tappable */
@media (max-width: 880px) {
  .nav__links { gap: 0.6rem !important; }
  .nav__links a { padding: 0.4rem 0.6rem !important; }
}

/* 11. Form field-row collapses on narrow */
@media (max-width: 600px) {
  .field-row { grid-template-columns: 1fr !important; }
  input, textarea, select, button { max-width: 100% !important; }
  input, textarea { font-size: 16px !important; /* prevent iOS zoom */ }
}

/* 12. Wrap any fixed pixel-width figures */
figure, .figure { max-width: 100% !important; }
