/* =====================================================================
   Robinhood Ventures — Premium Dark / Gold Design System
   ===================================================================== */

/* ---- Brand fonts (Montserrat + Athelas) ---- */
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Athelas';
  src: url('../fonts/Athelas-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Athelas';
  src: url('../fonts/Athelas-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Athelas';
  src: url('../fonts/Athelas-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Athelas';
  src: url('../fonts/Athelas-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

:root {
  /* Brand colors */
  --navy-900: #050B16;
  --navy-800: #0A1428;
  --navy-700: #0E1A33;
  --navy-600: #122545;
  --navy-500: #003663;       /* brand primary */
  --navy-400: #1B4A7A;
  --navy-300: #325F8C;

  --gold-100: #FFF6E1;
  --gold-200: #FAD292;       /* brand light gold */
  --gold-300: #E8BE7B;
  --gold-400: #C9A35E;       /* brand mid gold (accent) */
  --gold-500: #A98341;
  --gold-600: #8A6630;

  --cream: #F5F1EA;
  --bone: #EFE9DD;
  --white: #FFFFFF;

  --ink-900: #0B1426;
  --ink-700: #2A3550;
  --ink-500: #56627A;
  --ink-400: #8590A8;
  --ink-300: #B8C0D2;
  --ink-200: #D6DCE6;
  --ink-100: #ECEFF5;

  /* Surfaces */
  --bg: var(--navy-900);
  --surface: var(--navy-800);
  --surface-2: var(--navy-700);
  --surface-3: var(--navy-600);
  --hairline: rgba(250, 210, 146, 0.14);
  --hairline-strong: rgba(250, 210, 146, 0.28);

  /* Typography — Robinhood brand fonts */
  --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Athelas', 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  /* Scale (fluid) */
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.25rem;
  --fs-xl: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  --fs-2xl: clamp(1.65rem, 1.4rem + 1.2vw, 2.25rem);
  --fs-3xl: clamp(1.875rem, 1.55rem + 1.5vw, 2.875rem);
  --fs-4xl: clamp(2.5rem, 2rem + 2.5vw, 4.25rem);

  /* Spacing */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;
  --sp-9: 96px;
  --sp-10: 128px;

  /* Radius */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-2xl: 40px;
  --r-full: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.2);
  --shadow-md: 0 8px 24px rgba(0, 22, 50, 0.35);
  --shadow-lg: 0 30px 80px rgba(0, 18, 40, 0.55);
  --shadow-glow: 0 0 0 1px rgba(250, 210, 146, 0.20), 0 24px 60px rgba(201, 163, 94, 0.18);

  /* Motion */
  --ease: cubic-bezier(.2,.7,.2,1);
  --t-fast: 180ms;
  --t-med: 320ms;
  --t-slow: 600ms;

  --container: 1240px;
  --container-sm: 960px;
  --nav-h: 120px;
}

@media (max-width: 1180px) { :root { --nav-h: 104px; } }
@media (max-width: 980px) { :root { --nav-h: 84px; } }
@media (max-width: 600px) { :root { --nav-h: 76px; } }
@media (max-width: 420px) { :root { --nav-h: 68px; } }

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; scroll-padding-top: calc(var(--nav-h) + 12px); }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--ink-100);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast) var(--ease); }
a:hover { color: var(--gold-200); }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 600; line-height: 1.15; letter-spacing: -0.01em; }

/* ----- Typography helpers ----- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-300);
  padding: 6px 14px;
  border: 1px solid var(--hairline-strong);
  border-radius: var(--r-full);
  background: rgba(250, 210, 146, 0.04);
}
.h-display {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--fs-4xl);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.h-1 { font-family: var(--font-display); font-size: var(--fs-3xl); font-weight: 400; letter-spacing: -0.02em; line-height: 1.1; }
.h-2 { font-size: var(--fs-2xl); font-weight: 600; letter-spacing: -0.015em; }
.h-3 { font-size: var(--fs-xl); font-weight: 600; letter-spacing: -0.01em; }
.h-4 { font-size: var(--fs-lg); font-weight: 600; }
.h-5 { font-size: var(--fs-md); font-weight: 600; }
.lead { font-size: var(--fs-md); color: var(--ink-200); line-height: 1.65; max-width: 60ch; }
.muted { color: var(--ink-300); }
.gold-text { color: var(--gold-300); }
.serif { font-family: var(--font-display); font-style: italic; }

.text-grad {
  background: linear-gradient(135deg, #FFF6E1 0%, #FAD292 35%, #E8BE7B 65%, #C9A35E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ----- Layout ----- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
}
.container.narrow { max-width: var(--container-sm); }
.section { padding-block: clamp(28px, 3.4vw, 52px); }
.section-tight { padding-block: clamp(18px, 2.2vw, 36px); }
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hairline-strong), transparent);
  border: 0;
  margin: 0;
}

.grid { display: grid; gap: var(--sp-5); }
.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 900px) {
  .cols-3, .cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; }
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
  padding: 0 24px;
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: var(--fs-sm);
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: transform var(--t-fast) var(--ease), background var(--t-fast) var(--ease), color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, #FFE8B7 0%, #FAD292 50%, #C9A35E 100%);
  color: var(--navy-900);
  box-shadow: 0 10px 30px rgba(201, 163, 94, 0.25);
}
.btn-primary:hover { box-shadow: 0 14px 40px rgba(201, 163, 94, 0.4); color: var(--navy-900); }
.btn-ghost {
  background: transparent;
  color: var(--ink-100);
  border-color: rgba(250, 210, 146, 0.30);
}
.btn-ghost:hover { background: rgba(250, 210, 146, 0.08); color: var(--gold-200); border-color: var(--gold-300); }
.btn-dark {
  background: rgba(255,255,255,0.04);
  color: var(--ink-100);
  border-color: var(--hairline);
}
.btn-dark:hover { background: rgba(255,255,255,0.08); }
.btn .arrow { transition: transform var(--t-fast) var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ----- Navigation ----- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: linear-gradient(180deg, rgba(5, 11, 22, 0.85) 0%, rgba(5, 11, 22, 0.55) 100%);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--hairline);
  transition: background var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
}
.nav.scrolled {
  background: rgba(5, 11, 22, 0.92);
  border-bottom-color: var(--hairline-strong);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
  gap: 20px;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  position: relative;
  flex-shrink: 0;
  margin-right: clamp(12px, 3vw, 36px);
  transition: transform var(--t-fast) var(--ease), filter var(--t-med) var(--ease);
}
.nav-logo img {
  height: 96px;
  width: auto;
  max-width: 100%;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
  transition: filter var(--t-med) var(--ease);
}
.nav-logo:hover {
  transform: translateY(-1px);
}
.nav-logo:hover img {
  filter: drop-shadow(0 2px 22px rgba(250, 210, 146, 0.40));
}
@media (max-width: 1180px) { .nav-logo img { height: 80px; } }
@media (max-width: 980px) { .nav-logo img { height: 60px; } }
@media (max-width: 600px) { .nav-logo img { height: 52px; } }
@media (max-width: 420px) { .nav-logo img { height: 44px; } }
@media (max-width: 980px) { .nav-logo { margin-right: 8px; } }

/* On mobile: keep language switcher visible, hide app-dropdown
   (Get the App is reachable via the mobile drawer / Robinhood Club page) */
@media (max-width: 700px) {
  .app-dropdown { display: none !important; }
  /* Compact lang pill on phones */
  .lang-dropdown .lang-current {
    padding: 7px 10px;
    font-size: 11px;
    gap: 6px;
  }
  .lang-dropdown .lang-current .chev { width: 8px; height: 8px; }
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1 1 auto;
  justify-content: center;
  min-width: 0;
}
.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: var(--r-full);
  font-size: var(--fs-sm);
  color: var(--ink-200);
  font-weight: 400;
}
.nav-link:hover { color: var(--gold-200); background: rgba(250, 210, 146, 0.05); }
.nav-link.active { color: var(--gold-200); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.lang-dropdown { position: relative; }
.lang-dropdown .lang-current {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px 7px 12px;
  border: 1px solid var(--hairline-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--ink-200);
  font-size: 12px;
  letter-spacing: 0.06em;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: border-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.lang-dropdown .lang-current:hover { border-color: var(--gold-400); color: var(--gold-200); }
.lang-dropdown .lang-current .globe { width: 14px; height: 14px; }
.lang-dropdown .lang-current .chev { width: 9px; height: 9px; opacity: 0.7; }
.lang-dropdown .lang-menu {
  position: absolute;
  top: 100%;
  right: 0;
  left: auto;
  min-width: 160px;
  padding: 18px 8px 8px;
  background: linear-gradient(180deg, rgba(14, 26, 51, 0.96), rgba(8, 17, 36, 0.96));
  border: 1px solid var(--hairline-strong);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 120ms var(--ease), transform 160ms var(--ease);
  transition-delay: 120ms;
  z-index: 50;
}
.lang-dropdown::before {
  content: '';
  position: absolute;
  top: 100%;
  right: 0;
  width: 100%;
  height: 14px;
}
.lang-dropdown:hover .lang-menu,
.lang-dropdown:focus-within .lang-menu,
.lang-dropdown .lang-menu:hover {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0ms;
}
.lang-dropdown .lang-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--ink-200);
  font-size: var(--fs-sm);
  text-decoration: none;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.lang-dropdown .lang-menu a:hover { background: rgba(250, 210, 146, 0.08); color: var(--gold-200); }
.lang-dropdown .lang-menu a.active {
  background: rgba(250, 210, 146, 0.10);
  color: var(--gold-200);
  font-weight: 500;
}
.lang-dropdown .lang-menu a .lang-sub {
  display: block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-300);
  margin-top: 2px;
}

/* ----- Get the App dropdown (download menu) ----- */
.app-dropdown { position: relative; flex-shrink: 0; }
.app-dropdown .app-current {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 12px;
  border: 1px solid var(--gold-500);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-300, #FAD292) 0%, var(--gold-500, #CFA15F) 100%);
  color: var(--navy-900, #050B16);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: filter var(--t-fast) var(--ease), transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
  box-shadow: 0 1px 4px rgba(207, 161, 95, 0.20);
}
.app-dropdown .app-current .lbl { white-space: nowrap; }
.lang-dropdown { flex-shrink: 0; }
.nav-cta { flex-shrink: 0; gap: 12px; }
.app-dropdown .app-current:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(207, 161, 95, 0.28);
}
.app-dropdown .app-current .dl-icon { width: 14px; height: 14px; }
.app-dropdown .app-current .chev { width: 9px; height: 9px; opacity: 0.8; margin-left: 2px; }

.app-dropdown .app-menu {
  position: absolute;
  top: 100%;
  right: 0;
  left: auto;
  min-width: 240px;
  padding: 14px 8px 10px;
  background: linear-gradient(180deg, rgba(14, 26, 51, 0.97), rgba(8, 17, 36, 0.97));
  border: 1px solid var(--hairline-strong);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 120ms var(--ease), transform 160ms var(--ease);
  transition-delay: 120ms;
  z-index: 50;
}
.app-dropdown::before {
  content: '';
  position: absolute;
  top: 100%;
  right: 0;
  width: 100%;
  height: 14px;
}
.app-dropdown:hover .app-menu,
.app-dropdown:focus-within .app-menu,
.app-dropdown .app-menu:hover {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0ms;
}
.app-dropdown .app-menu a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--ink-100);
  text-decoration: none;
  transition: background var(--t-fast) var(--ease);
}
.app-dropdown .app-menu a:hover {
  background: rgba(250, 210, 146, 0.08);
}
.app-dropdown .app-menu .pf-icon {
  width: 22px; height: 22px;
  flex-shrink: 0;
  color: var(--gold-300);
}
.app-dropdown .app-menu .pf-text { display: block; }
.app-dropdown .app-menu .pf-name {
  display: block;
  font-weight: 600;
  color: var(--white);
  font-size: var(--fs-sm);
  line-height: 1.2;
}
.app-dropdown .app-menu .pf-sub {
  display: block;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-300);
  margin-top: 3px;
}
.app-dropdown .app-menu a:hover .pf-name { color: var(--gold-200); }

/* Compact mode on small phones — show icon only */
@media (max-width: 700px) {
  .app-dropdown .app-current .lbl { display: none; }
  .app-dropdown .app-current { padding: 8px 10px; gap: 6px; }
  .app-dropdown .app-current .chev { display: none; }
  .app-dropdown .app-menu { min-width: 220px; }
}
@media (max-width: 700px) {
  .lang-dropdown .lang-current { padding: 7px 10px; font-size: 11px; }
}
@media (max-width: 980px) {
  .nav-cta { gap: 10px !important; }
  .nav-inner { padding-inline: 16px 18px !important; gap: 10px !important; }
}
@media (max-width: 600px) {
  .nav-cta { gap: 8px !important; }
  .nav-inner { padding-inline: 14px 16px !important; }
}
@media (max-width: 420px) {
  .nav-cta { gap: 6px !important; }
  .nav-inner { padding-inline: 12px 14px !important; }
}

.nav-dropdown { position: relative; }
.nav-dropdown > .nav-link { padding-bottom: 18px; margin-bottom: -10px; }
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  padding: 18px 10px 10px;
  background: linear-gradient(180deg, rgba(14, 26, 51, 0.96), rgba(8, 17, 36, 0.96));
  border: 1px solid var(--hairline-strong);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 120ms var(--ease), transform 160ms var(--ease);
  transition-delay: 120ms;
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 14px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown-menu:hover {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0ms;
}
.nav-dropdown-link {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--ink-200);
  font-size: var(--fs-sm);
}
.nav-dropdown-link:hover { background: rgba(250, 210, 146, 0.08); color: var(--gold-200); }

/* ----- Mega menu (wide multi-column dropdown) ----- */
.nav-dropdown.mega .nav-dropdown-menu {
  display: grid;
  /* 3 cols while IIFLE column is hidden; restore to repeat(4, ...) and min-width: 760px when re-enabled */
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px 14px;
  min-width: 580px;
  padding: 22px 18px 16px;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
}
.nav-dropdown.mega:hover .nav-dropdown-menu,
.nav-dropdown.mega:focus-within .nav-dropdown-menu,
.nav-dropdown.mega .nav-dropdown-menu:hover {
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown.mega .mega-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 6px;
  border-right: 1px solid rgba(250, 210, 146, 0.10);
}
.nav-dropdown.mega .mega-col:last-child { border-right: 0; }
.nav-dropdown.mega .mega-eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-300);
  font-weight: 600;
  padding: 6px 12px 4px;
  margin-bottom: 4px;
}
.nav-dropdown.mega .mega-head {
  display: block;
  padding: 6px 12px 10px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  border-bottom: 1px solid rgba(250, 210, 146, 0.08);
  margin-bottom: 8px;
  text-decoration: none;
  transition: color var(--t-fast) var(--ease);
}
.nav-dropdown.mega .mega-head:hover { color: var(--gold-200); }
.nav-dropdown.mega .mega-link {
  display: block;
  padding: 7px 12px;
  border-radius: 6px;
  color: var(--ink-300);
  font-size: 13px;
  text-decoration: none;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.nav-dropdown.mega .mega-link:hover { color: var(--gold-200); background: rgba(250, 210, 146, 0.06); }
.nav-dropdown.mega .mega-link.muted { color: var(--ink-400, #6F7D96); font-size: 12px; }

@media (max-width: 1180px) {
  .nav-dropdown.mega .nav-dropdown-menu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-width: 480px;
  }
  .nav-dropdown.mega .mega-col:nth-child(2) { border-right: 0; }
  .nav-dropdown.mega .mega-col:nth-child(-n+2) { border-bottom: 1px solid rgba(250, 210, 146, 0.10); padding-bottom: 10px; margin-bottom: 6px; }
}
@media (max-width: 980px) {
  /* On mobile drawer the mega-menu collapses to single column */
  .nav-dropdown.mega .nav-dropdown-menu {
    display: block !important;
    grid-template-columns: 1fr !important;
    min-width: 0 !important;
    transform: none !important;
    left: 0 !important;
    padding: 0 0 8px 16px !important;
  }
  .nav-dropdown.mega .mega-col {
    border-right: 0 !important;
    border-bottom: 0 !important;
    padding: 6px 0 !important;
    margin-bottom: 0 !important;
  }
  .nav-dropdown.mega .mega-eyebrow {
    padding: 8px 12px 2px;
    font-size: 11px;
  }
  .nav-dropdown.mega .mega-head {
    border-bottom: 0;
    padding: 6px 12px 4px;
    margin-bottom: 0;
  }
}

.nav-menu .mobile-show { display: none; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--hairline-strong);
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.04);
  color: var(--gold-200);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.nav-toggle:hover { border-color: var(--gold-400); background: rgba(250, 210, 146, 0.06); }
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: ''; display: block; width: 18px; height: 2px; background: currentColor; border-radius: 2px; transition: transform var(--t-fast) var(--ease), opacity var(--t-fast) var(--ease);
}
.nav-toggle[aria-expanded="true"]::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span { opacity: 0; }
.nav-toggle[aria-expanded="true"]::after { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav-toggle { display: inline-flex !important; }

  /* Mobile drawer — every property locked with !important so nothing can override */
  .nav-menu {
    display: none !important;
    position: fixed !important;
    top: var(--nav-h) !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: calc(100vh - var(--nav-h)) !important;
    height: calc(100dvh - var(--nav-h)) !important;
    z-index: 999 !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    padding: 20px 24px 40px !important;
    gap: 4px !important;
    background: #050B16 !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    margin: 0 !important;
  }
  /* Open state — overrides display:none above */
  .nav-menu.open {
    display: flex !important;
  }
  /* Make absolutely sure ALL direct children of the open drawer are visible */
  .nav-menu.open > * {
    display: block !important;
    width: 100% !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  .nav-menu.open > a.nav-link {
    display: flex !important;
  }
  .nav-link {
    padding: 14px 16px !important;
    font-size: var(--fs-md);
    color: var(--ink-100);
  }
  .nav-dropdown { width: 100% !important; }
  .nav-dropdown > .nav-link { padding-bottom: 10px !important; margin-bottom: 0 !important; }
  .nav-dropdown-menu {
    display: block !important;
    position: static !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
    box-shadow: none !important;
    border: 0 !important;
    background: transparent !important;
    padding: 0 0 8px 16px !important;
    min-width: 0 !important;
    width: 100% !important;
  }
  .nav-dropdown-link {
    display: block !important;
    padding: 10px 12px !important;
  }
  .nav-cta .btn { display: none; }
  .nav-menu .mobile-show { display: inline-flex; }
}

/* ----- Hero ----- */
.hero {
  position: relative;
  min-height: clamp(460px, 64vh, 620px);
  padding-top: var(--nav-h);
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  isolation: isolate;
}
.hero-video, .hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-video video, .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Anchor near top of video so the Petronas Twin Towers spires are
     never clipped on short/wide hero containers. */
  object-position: center top;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(80% 60% at 50% 20%, rgba(0, 54, 99, 0.20), transparent 70%),
    linear-gradient(180deg, rgba(5, 11, 22, 0.55) 0%, rgba(5, 11, 22, 0.85) 100%);
}
.hero-content {
  width: 100%;
  max-width: 880px;
  padding-block: 36px;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--fs-4xl);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 18px;
}
.hero-title em { font-style: italic; color: var(--gold-200); }
.hero-title .line { display: block; }
.hero-sub {
  font-size: var(--fs-md);
  color: var(--ink-200);
  max-width: 60ch;
  margin-bottom: 28px;
  line-height: 1.6;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-stats {
  margin-top: 40px;
  display: flex;
  gap: clamp(20px, 4vw, 48px);
  flex-wrap: wrap;
}
.hero-stat .num {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  color: var(--gold-200);
  font-weight: 400;
  letter-spacing: -0.01em;
}
.hero-stat .lbl {
  font-size: var(--fs-xs);
  color: var(--ink-300);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 6px;
}
.hero-stat + .hero-stat { padding-left: clamp(20px, 4vw, 56px); border-left: 1px solid var(--hairline); }

/* ----- Page header (non-home) ----- */
.page-header {
  position: relative;
  padding-top: calc(var(--nav-h) + 48px);
  padding-bottom: 56px;
  background:
    radial-gradient(60% 80% at 80% 0%, rgba(0, 54, 99, 0.55), transparent 70%),
    radial-gradient(60% 80% at 0% 100%, rgba(201, 163, 94, 0.10), transparent 70%),
    linear-gradient(180deg, var(--navy-900), var(--navy-800));
  overflow: hidden;
  border-bottom: 1px solid var(--hairline);
}
.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--hairline) 1px, transparent 1px),
    linear-gradient(90deg, var(--hairline) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.35;
  pointer-events: none;
  mask-image: radial-gradient(50% 60% at 50% 40%, black 0%, transparent 80%);
}
.page-header-media {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.page-header-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  filter: saturate(0.95) brightness(0.78);
}
.page-header-media::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 11, 22, 0.55) 0%, rgba(5, 11, 22, 0.78) 70%, rgba(5, 11, 22, 0.92) 100%),
    linear-gradient(90deg, rgba(0, 54, 99, 0.50) 0%, rgba(0, 54, 99, 0.10) 60%, transparent 100%);
}
.page-header.has-media::after { display: none; }
.page-header-inner { position: relative; z-index: 1; max-width: 760px; }
.page-header h1 {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  font-weight: 400;
  line-height: 1.06;
  margin: 16px 0;
  color: var(--white);
}
.page-header p { color: var(--ink-200); font-size: var(--fs-md); max-width: 60ch; }

/* ----- Cards ----- */
.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 24px;
  transition: transform var(--t-med) var(--ease), border-color var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease), background var(--t-med) var(--ease);
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--hairline-strong);
  box-shadow: var(--shadow-md);
  background: linear-gradient(180deg, rgba(250, 210, 146, 0.04), rgba(255,255,255,0.01));
}
.card .num {
  font-family: var(--font-display);
  color: var(--gold-300);
  font-size: var(--fs-lg);
  font-weight: 400;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.card .num::after { content: ''; flex: 1; height: 1px; background: var(--hairline); }
.card h3 { color: var(--white); margin-bottom: 10px; font-size: var(--fs-lg); }
.card p { color: var(--ink-300); font-size: var(--fs-sm); line-height: 1.65; margin: 0; }

.card-link {
  display: block;
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--hairline);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  transition: border-color var(--t-med) var(--ease), transform var(--t-med) var(--ease);
}
.card-link:hover { border-color: var(--gold-400); transform: translateY(-4px); }
.card-link .pic {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--surface-2);
  position: relative;
}
.card-link .pic::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,11,22,0) 50%, rgba(5,11,22,0.7) 100%);
}
.card-link .pic img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
.card-link:hover .pic img { transform: scale(1.06); }
.card-link .body {
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.card-link .body .label {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  color: var(--white);
  font-weight: 400;
}
.card-link .body .arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(250, 210, 146, 0.10);
  border: 1px solid var(--hairline-strong);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold-200);
  transition: background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.card-link:hover .body .arrow {
  background: var(--gold-400); color: var(--navy-900); transform: translateX(4px);
}

/* ----- Section header ----- */
.s-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.s-head .left { max-width: 720px; }
.s-head h2 {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  font-weight: 400;
  margin: 10px 0 10px;
  color: var(--white);
  letter-spacing: -0.02em;
}
.s-head p { color: var(--ink-300); font-size: var(--fs-md); max-width: 60ch; }
.s-head .right { display: flex; gap: 12px; align-items: center; }

/* Surfaces */
.surface-light {
  background: linear-gradient(180deg, var(--cream) 0%, var(--bone) 100%);
  color: var(--navy-900);
}
.surface-light .h-1, .surface-light .h-2, .surface-light h2, .surface-light h3 { color: var(--navy-900); }
.surface-light p, .surface-light .lead { color: var(--ink-700); }
.surface-light .eyebrow { color: var(--navy-500); border-color: rgba(0, 54, 99, 0.18); background: rgba(0,54,99,0.04); }
.surface-light .card {
  background: white;
  border-color: rgba(0, 54, 99, 0.10);
  box-shadow: 0 1px 3px rgba(0, 22, 50, 0.04);
}
.surface-light .card:hover { border-color: var(--gold-400); box-shadow: 0 24px 60px rgba(0, 22, 50, 0.10); background: white; }
.surface-light .card h3 { color: var(--navy-900); }
.surface-light .card p { color: var(--ink-700); }
.surface-light .card .num { color: var(--gold-500); }
.surface-light .card .num::after { background: rgba(0, 54, 99, 0.15); }
.surface-light .s-head h2 { color: var(--navy-900); }

/* ----- About strip (home) ----- */
.about-strip {
  display: grid;
  gap: clamp(28px, 4vw, 56px);
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
}
@media (max-width: 900px) { .about-strip { grid-template-columns: 1fr; } }
.about-strip .visual {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  border: 1px solid var(--hairline);
  aspect-ratio: 1/1;
  background: linear-gradient(160deg, var(--navy-700), var(--navy-900));
}
.about-strip .visual img { width: 100%; height: 100%; object-fit: contain; padding: 48px; }
.about-strip .visual::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 70% 30%, rgba(250, 210, 146, 0.18), transparent 60%);
}

/* ----- Pillars (home) ----- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
  position: relative;
  padding: 36px 32px 32px;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--hairline);
  overflow: hidden;
  transition: border-color var(--t-med) var(--ease), transform var(--t-med) var(--ease), background var(--t-med) var(--ease);
}
.pillar::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-300), transparent);
  opacity: 0;
  transition: opacity var(--t-med) var(--ease);
}
.pillar:hover { border-color: var(--hairline-strong); transform: translateY(-4px); background: linear-gradient(180deg, rgba(250, 210, 146, 0.05), rgba(255,255,255,0.01)); }
.pillar:hover::before { opacity: 1; }
.pillar .ix {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  color: var(--gold-300);
}
.pillar h3 {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  color: var(--white);
  margin: 8px 0 14px;
  font-weight: 400;
}
.pillar p { color: var(--ink-300); font-size: var(--fs-sm); line-height: 1.65; }
.pillar .more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--gold-200);
  font-size: var(--fs-sm);
  font-weight: 600;
}
.pillar .more svg { transition: transform var(--t-fast) var(--ease); }
.pillar:hover .more svg { transform: translateX(4px); }

/* ----- Events / News ----- */
.event-list { display: flex; flex-direction: column; gap: 24px; }
.event {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(20px, 4vw, 60px);
  align-items: center;
  padding: 28px;
  border: 1px solid var(--hairline);
  border-radius: var(--r-xl);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  transition: border-color var(--t-med) var(--ease), transform var(--t-med) var(--ease), background var(--t-med) var(--ease);
}
.event:hover { border-color: var(--hairline-strong); transform: translateY(-2px); }
.event:nth-child(even) { grid-template-columns: 1fr 1.1fr; }
.event:nth-child(even) .event-pic { order: 2; }
.event:nth-child(even) .event-body { order: 1; }
@media (max-width: 800px) {
  .event, .event:nth-child(even) { grid-template-columns: 1fr; }
  .event:nth-child(even) .event-pic, .event:nth-child(even) .event-body { order: initial; }
}
.event-pic {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
}
.event-pic img { width: 100%; height: 100%; object-fit: cover; }
.event-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 14px;
}
.event-tag::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-300);
  box-shadow: 0 0 12px var(--gold-300);
}
.event h3 {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.event p { color: var(--ink-300); font-size: var(--fs-sm); line-height: 1.7; max-width: 60ch; }
.event-meta {
  display: flex; align-items: center; gap: 16px; margin-top: 18px;
  color: var(--ink-400); font-size: var(--fs-xs);
  letter-spacing: 0.12em; text-transform: uppercase;
}
.event-meta::before {
  content: ''; width: 24px; height: 1px; background: var(--gold-400);
}

/* News list (newsroom) */
.news-list { display: flex; flex-direction: column; }
.news-row {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: clamp(20px, 4vw, 48px);
  padding: 28px 0;
  border-top: 1px solid var(--hairline);
  align-items: start;
  transition: background var(--t-fast) var(--ease);
}
.news-row:last-child { border-bottom: 1px solid var(--hairline); }
.news-row:hover { background: rgba(250, 210, 146, 0.02); }
.news-date { font-family: var(--font-display); font-size: var(--fs-md); color: var(--gold-300); }
.news-body h3 { font-family: var(--font-display); font-size: var(--fs-xl); font-weight: 400; color: var(--white); margin-bottom: 10px; max-width: 60ch; }
.news-body p { color: var(--ink-300); font-size: var(--fs-sm); line-height: 1.7; max-width: 75ch; margin: 0; }
.news-tag {
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-400);
  border: 1px solid var(--hairline);
  padding: 6px 12px;
  border-radius: var(--r-full);
  align-self: start;
  white-space: nowrap;
}
@media (max-width: 700px) {
  .news-row { grid-template-columns: 1fr; }
  .news-tag { justify-self: start; }
}

/* ----- Partners / Logos ----- */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border: 1px solid var(--hairline);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
}
.partners-grid > div {
  aspect-ratio: 3/2;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 20px;
  filter: grayscale(1) brightness(1.3) contrast(0.85);
  opacity: 0.75;
  transition: filter var(--t-med) var(--ease), opacity var(--t-med) var(--ease), background var(--t-med) var(--ease);
}
.partners-grid > div:hover {
  filter: none;
  opacity: 1;
  background: rgba(250, 210, 146, 0.04);
}
.partners-grid > div img { max-width: 70%; max-height: 60%; }
@media (max-width: 900px) { .partners-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .partners-grid { grid-template-columns: repeat(2, 1fr); } }

.partner-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 1100px) { .partner-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px)  { .partner-cards { grid-template-columns: 1fr; } }
.partner-card {
  padding: 28px;
  border-radius: var(--r-lg);
  border: 1px solid var(--hairline);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
}
.partner-card .role {
  display: inline-block;
  font-size: var(--fs-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 18px;
}
.partner-card blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--fs-md);
  font-style: italic;
  color: var(--ink-100);
  line-height: 1.55;
}
.partner-card .who {
  margin-top: 22px;
  display: flex; align-items: center; gap: 14px;
  border-top: 1px solid var(--hairline);
  padding-top: 18px;
}
.partner-card .who img {
  width: 44px; height: 44px; object-fit: contain;
  background: white; border-radius: 50%; padding: 6px;
}
.partner-card .who div { color: var(--ink-200); font-size: var(--fs-sm); }
.partner-card .who div strong { color: var(--white); display: block; }

/* ----- Stats band ----- */
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--hairline);
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, rgba(0, 54, 99, 0.20), rgba(201, 163, 94, 0.04));
  overflow: hidden;
}
.stats-band > div {
  padding: 32px 28px;
  border-right: 1px solid var(--hairline);
}
.stats-band > div:last-child { border-right: 0; }
.stats-band .num {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 400;
  color: var(--gold-200);
  letter-spacing: -0.01em;
}
.stats-band .lbl { color: var(--ink-300); font-size: var(--fs-sm); margin-top: 6px; }
@media (max-width: 800px) {
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .stats-band > div:nth-child(2) { border-right: 0; }
  .stats-band > div:nth-child(-n+2) { border-bottom: 1px solid var(--hairline); }
}
/* 3-stat band: three across on desktop, stacked on mobile (no overflow) */
.stats-band.stats-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 800px) {
  .stats-band.stats-3 { grid-template-columns: 1fr; }
  .stats-band.stats-3 > div { border-right: 0; border-bottom: 1px solid var(--hairline); padding: 22px 24px; }
  .stats-band.stats-3 > div:last-child { border-bottom: 0; }
}
/* Phones: let long buttons wrap instead of overflowing the screen (keep icon-only share button intact) */
@media (max-width: 600px) {
  .btn:not(.film-share) {
    max-width: 100%;
    white-space: normal;
    height: auto;
    min-height: 48px;
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 1.3;
    text-align: center;
  }
}

/* ----- Service list (used on ecosystem pages) ----- */
.services { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 800px) { .services { grid-template-columns: 1fr; } }

/* ----- 3-up service grid (e.g. investment thesis pillars) ----- */
.services--3up { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 980px) {
  .services--3up { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  /* Last card spans both columns when 3 cards in a 2-col grid */
  .services--3up > :last-child:nth-child(3) { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .services--3up { grid-template-columns: 1fr !important; }
  .services--3up > :last-child:nth-child(3) { grid-column: auto; }
}

/* ----- Process flow (numbered steps) — responsive 5→3→2→1 col with mobile vertical-timeline ----- */
.process-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  position: relative;
}
@media (max-width: 1180px) { .process-flow { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 800px) { .process-flow { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; } }
@media (max-width: 540px) {
  .process-flow {
    grid-template-columns: 1fr;
    gap: 0;
    position: relative;
  }
  /* Connecting vertical line on mobile */
  .process-flow::before {
    content: "";
    position: absolute;
    left: 28px;
    top: 28px;
    bottom: 28px;
    width: 1px;
    background: linear-gradient(180deg, var(--gold-500), rgba(250, 210, 146, 0.15));
    opacity: 0.45;
  }
  /* Mobile step card — horizontal layout: number badge on left, content on right */
  .process-flow .service {
    display: grid !important;
    grid-template-columns: 56px 1fr !important;
    grid-template-rows: auto auto !important;
    grid-template-areas:
      "ic    title"
      "ic    desc" !important;
    column-gap: 18px !important;
    row-gap: 4px !important;
    align-items: start !important;
    padding: 22px 20px 22px 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    position: relative;
  }
  .process-flow .service:hover { transform: none !important; background: transparent !important; }
  .process-flow .service .ic {
    grid-area: ic !important;
    align-self: start !important;
    width: 56px !important; height: 56px !important;
    border-radius: 14px !important;
    background: var(--navy-900) !important;
    border: 1px solid var(--gold-500) !important;
    color: var(--gold-300) !important;
    margin-bottom: 0 !important;
    flex-shrink: 0;
    z-index: 1;
    font-size: 20px !important;
  }
  .process-flow .service h3 {
    grid-area: title !important;
    margin: 6px 0 0 !important;
    font-size: 1.1rem;
    line-height: 1.3;
  }
  .process-flow .service p {
    grid-area: desc !important;
    /* Reset any vertical text quirks */
    writing-mode: horizontal-tb !important;
    text-orientation: mixed !important;
    word-break: normal !important;
    overflow-wrap: anywhere;
    font-size: var(--fs-sm);
    line-height: 1.65;
    margin: 4px 0 0 !important;
  }
}
.service {
  padding: 32px;
  border-radius: var(--r-lg);
  border: 1px solid var(--hairline);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  transition: border-color var(--t-med) var(--ease), transform var(--t-med) var(--ease), background var(--t-med) var(--ease);
  position: relative; overflow: hidden;
}
.service:hover { border-color: var(--hairline-strong); transform: translateY(-3px); background: linear-gradient(180deg, rgba(250, 210, 146, 0.04), rgba(255,255,255,0.01)); }
.service .ic {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(250, 210, 146, 0.18), rgba(0, 54, 99, 0.20));
  border: 1px solid var(--hairline-strong);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold-200);
  margin-bottom: 22px;
}
.service h3 { color: var(--white); font-size: var(--fs-lg); margin-bottom: 12px; }
.service p { color: var(--ink-300); font-size: var(--fs-sm); line-height: 1.7; }

/* ----- Process / Steps timeline ----- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--hairline);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.steps > div {
  padding: 32px 28px;
  border-right: 1px solid var(--hairline);
  position: relative;
  transition: background var(--t-med) var(--ease);
}
.steps > div:hover { background: rgba(250, 210, 146, 0.04); }
.steps > div:last-child { border-right: 0; }
.steps .num {
  font-family: var(--font-display);
  color: var(--gold-300);
  font-size: var(--fs-lg);
  display: inline-flex; align-items: center; gap: 12px;
}
.steps .num::after { content: ''; flex: 1; height: 1px; background: var(--hairline); width: 40px; }
.steps h4 { color: var(--white); margin: 14px 0 10px; }
.steps p { color: var(--ink-300); font-size: var(--fs-sm); }

/* Tablet — keep all four steps in one row so each cell fills its width (avoids the sparse 2x2) */
@media (max-width: 1100px) and (min-width: 800px) {
  .steps > div { padding: 24px 18px; }
}

/* Mobile — vertical timeline with bold number badges and connecting gold line */
@media (max-width: 800px) {
  .steps {
    grid-template-columns: 1fr !important;
    border: 0 !important;
    background: transparent !important;
    border-radius: 0 !important;
    overflow: visible !important;
    position: relative;
    padding-left: 4px;
  }
  /* Vertical gold connecting line spanning all steps */
  .steps::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 28px;
    bottom: 28px;
    width: 1px;
    background: linear-gradient(180deg, var(--gold-500) 0%, rgba(207, 161, 95, 0.15) 100%);
    opacity: 0.55;
    z-index: 0;
  }
  .steps > div {
    display: grid !important;
    grid-template-columns: 60px 1fr !important;
    grid-template-rows: auto auto !important;
    grid-template-areas: "num title" "num desc" !important;
    column-gap: 20px !important;
    row-gap: 4px !important;
    padding: 18px 0 !important;
    border-right: 0 !important;
    border-bottom: 0 !important;
    background: transparent !important;
    align-items: start;
    position: relative;
  }
  .steps > div:hover { background: transparent !important; }
  .steps > div:last-child { border-bottom: 0; }

  .steps .num {
    grid-area: num;
    width: 60px !important;
    height: 60px !important;
    border-radius: 16px !important;
    background: var(--navy-900) !important;
    border: 1px solid var(--gold-500) !important;
    color: var(--gold-300) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 22px !important;
    font-weight: 600;
    flex-shrink: 0;
    margin: 0 !important;
    z-index: 1;
    box-shadow: 0 2px 12px rgba(5, 11, 22, 0.12);
  }
  /* Hide the original decorative dash + any inline span used as bg ribbon */
  .steps .num::after { display: none !important; }
  .steps .num > span { display: none !important; }

  .steps h4 {
    grid-area: title;
    margin: 8px 0 0 !important;
    font-size: 1.15rem;
    line-height: 1.3;
  }
  .steps p {
    grid-area: desc;
    margin: 4px 0 0 !important;
    font-size: var(--fs-sm);
    line-height: 1.65;
  }
}

/* ----- Quote / Testimonial big ----- */
.quote-block {
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
.quote-block blockquote {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  line-height: 1.3;
  color: var(--white);
  font-style: italic;
  margin: 24px 0;
  letter-spacing: -0.01em;
}
.quote-block .src { color: var(--ink-300); font-size: var(--fs-sm); letter-spacing: 0.16em; text-transform: uppercase; }

/* ----- CTA band ----- */
.cta-band {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  border: 1px solid var(--hairline-strong);
  padding: clamp(32px, 4vw, 56px);
  background:
    radial-gradient(60% 100% at 100% 0%, rgba(201, 163, 94, 0.20), transparent 60%),
    radial-gradient(60% 100% at 0% 100%, rgba(0, 54, 99, 0.55), transparent 60%),
    linear-gradient(135deg, var(--navy-700), var(--navy-900));
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  gap: 40px;
}
@media (max-width: 800px) { .cta-band { grid-template-columns: 1fr; } }
.cta-band h2 {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  font-weight: 400;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.cta-band p { color: var(--ink-200); font-size: var(--fs-md); margin-top: 14px; max-width: 50ch; }
.cta-band .actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-end; }
@media (max-width: 800px) { .cta-band .actions { justify-content: flex-start; } }

/* ----- Forms ----- */
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: var(--fs-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-300);
  font-weight: 600;
}
.field input, .field textarea, .field select {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  color: var(--white);
  font-family: inherit;
  font-size: var(--fs-base);
  padding: 14px 16px;
  transition: border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--gold-400);
  background: rgba(255,255,255,0.05);
}
.field textarea { min-height: 140px; resize: vertical; }
.field select option { background: var(--navy-800); color: var(--white); }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }
.form-grid .full { grid-column: 1 / -1; }

/* ----- Office cards ----- */
.offices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .offices { grid-template-columns: 1fr; } }
.office {
  padding: 28px;
  border-radius: var(--r-lg);
  border: 1px solid var(--hairline);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  position: relative;
}
.office.has-photo {
  padding: 0;
  overflow: hidden;
}
.office.has-photo .office-photo {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.office.has-photo .office-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform 600ms var(--ease);
}
.office.has-photo:hover .office-photo img { transform: scale(1.04); }
.office.has-photo .office-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(5, 11, 22, 0.55) 100%);
}
.office.has-photo .office-body { padding: 24px 28px 28px; }
.office .flag {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 14px;
  display: inline-flex; align-items: center; gap: 8px;
}
.office h3 { color: var(--white); font-size: var(--fs-lg); margin-bottom: 14px; }
.office address { color: var(--ink-300); font-style: normal; font-size: var(--fs-sm); line-height: 1.7; }

/* ----- Footer ----- */
.footer {
  position: relative;
  padding-top: 64px;
  padding-bottom: 28px;
  background: linear-gradient(180deg, var(--navy-900) 0%, #02060E 100%);
  border-top: 1px solid var(--hairline);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
}
.footer-brand img { height: 72px; width: auto; margin-bottom: 24px; display: block; max-width: 100%; flex-shrink: 0; object-fit: contain; }
@media (max-width: 900px) { .footer-brand img { height: 60px; } }
@media (max-width: 600px) { .footer-brand img { height: 52px; } }
.footer-brand p { color: var(--ink-300); font-size: var(--fs-sm); max-width: 36ch; line-height: 1.7; margin: 0; }
.footer-col h4 {
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 18px;
  font-weight: 700;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--ink-200); font-size: var(--fs-sm); }
.footer-col a:hover { color: var(--gold-200); }
.footer-bottom {
  border-top: 1px solid var(--hairline);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-bottom p { color: var(--ink-400); font-size: var(--fs-xs); margin: 0; letter-spacing: 0.04em; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--hairline);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink-200);
}
.footer-social a:hover { border-color: var(--gold-400); color: var(--gold-200); }

/* ----- Long-form (legal) ----- */
.legal {
  max-width: 760px;
}
.legal h2 { font-family: var(--font-display); font-size: var(--fs-2xl); margin: 48px 0 14px; color: var(--white); font-weight: 400; }
.legal h3 { font-size: var(--fs-lg); margin: 32px 0 10px; color: var(--white); }
.legal p, .legal li { color: var(--ink-200); font-size: var(--fs-base); line-height: 1.75; }
.legal ul { padding-left: 18px; list-style: disc; margin: 0 0 16px; }
.legal a { color: var(--gold-200); text-decoration: underline; text-underline-offset: 4px; }
.legal hr { border: 0; border-top: 1px solid var(--hairline); margin: 40px 0; }

/* ----- Decorative ornament ----- */
.ornament {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-300);
  font-size: var(--fs-xs);
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.ornament::before, .ornament::after {
  content: '';
  display: block; width: 32px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-400));
}
.ornament::after { background: linear-gradient(90deg, var(--gold-400), transparent); }

/* ----- Reveal-on-scroll ----- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* ----- Floating WhatsApp button ----- */
.fab-whatsapp {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 54px;
  padding: 0 18px 0 16px;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: var(--fs-sm);
  box-shadow: 0 12px 30px rgba(18, 140, 126, 0.40);
  border: 1px solid rgba(255,255,255,0.15);
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-med) var(--ease);
}
.fab-whatsapp:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(18, 140, 126, 0.5);
}
.fab-whatsapp svg { width: 22px; height: 22px; }
@media (max-width: 600px) {
  .fab-whatsapp .label { display: none; }
  .fab-whatsapp { padding: 0 14px; }
}

/* ----- Track record (stats with bigger headlines) ----- */
.track-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: var(--r-2xl);
  overflow: hidden;
  border: 1px solid var(--hairline-strong);
  background:
    radial-gradient(60% 100% at 0% 0%, rgba(0, 54, 99, 0.45), transparent 60%),
    radial-gradient(60% 100% at 100% 100%, rgba(201, 163, 94, 0.18), transparent 60%),
    linear-gradient(135deg, var(--navy-700), var(--navy-900));
}
.track-band > div {
  padding: 36px 32px;
  border-right: 1px solid var(--hairline);
}
.track-band > div:last-child { border-right: 0; }
.track-band .num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.6rem + 1.4vw, 2.8rem);
  font-weight: 400;
  color: var(--gold-200);
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.track-band .lbl {
  color: var(--ink-200);
  font-size: var(--fs-sm);
  letter-spacing: 0.01em;
  line-height: 1.45;
  margin-top: 12px;
  max-width: 32ch;
}
@media (max-width: 800px) {
  .track-band { grid-template-columns: repeat(2, 1fr); }
  .track-band > div:nth-child(2) { border-right: 0; }
  .track-band > div:nth-child(-n+2) { border-bottom: 1px solid var(--hairline); }
  .track-band > div { padding: 24px 22px; }
  .track-band .num { font-size: clamp(1.6rem, 1.4rem + 1vw, 2.2rem); }
}
@media (max-width: 540px) {
  .track-band { grid-template-columns: 1fr; }
  .track-band > div { border-right: 0 !important; border-bottom: 1px solid var(--hairline); }
  .track-band > div:last-child { border-bottom: 0; }
}

/* ----- Intent cards (CTA paths) ----- */
.intent-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .intent-cards { grid-template-columns: 1fr; } }
.intent-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px;
  border-radius: var(--r-lg);
  border: 1px solid var(--hairline);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  transition: border-color var(--t-med) var(--ease), transform var(--t-med) var(--ease), background var(--t-med) var(--ease);
  position: relative;
  overflow: hidden;
}
.intent-card:hover { border-color: var(--gold-400); transform: translateY(-3px); background: linear-gradient(180deg, rgba(250, 210, 146, 0.05), rgba(255,255,255,0.01)); }
.intent-card .badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  border-radius: var(--r-full);
  border: 1px solid var(--hairline-strong);
  background: rgba(250, 210, 146, 0.05);
  color: var(--gold-300);
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  width: fit-content;
}
.intent-card h3 {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 400;
  color: var(--white);
  margin: 0;
  letter-spacing: -0.01em;
}
.intent-card p { color: var(--ink-300); font-size: var(--fs-sm); line-height: 1.65; margin: 0; flex: 1; }
.intent-card .actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ----- Manifesto block ----- */
.manifesto {
  position: relative;
  border-radius: var(--r-2xl);
  padding: clamp(40px, 5vw, 72px);
  border: 1px solid var(--hairline);
  background:
    radial-gradient(50% 80% at 100% 0%, rgba(0, 54, 99, 0.5), transparent 60%),
    radial-gradient(50% 80% at 0% 100%, rgba(201, 163, 94, 0.10), transparent 60%),
    linear-gradient(180deg, var(--navy-800), var(--navy-900));
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}
.manifesto::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--hairline) 1px, transparent 1px),
    linear-gradient(90deg, var(--hairline) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.20;
  pointer-events: none;
  mask-image: radial-gradient(60% 60% at 50% 50%, black 0%, transparent 80%);
}
@media (max-width: 800px) { .manifesto { grid-template-columns: 1fr; } }
.manifesto > * { position: relative; z-index: 1; }
.manifesto blockquote {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  line-height: 1.1;
  margin: 0;
  font-weight: 400;
  color: var(--white);
  letter-spacing: -0.02em;
}
.manifesto blockquote em { color: var(--gold-200); }
.manifesto .archer { display: flex; align-items: center; justify-content: center; }
.manifesto .archer img { max-width: 240px; width: 100%; opacity: 0.95; }

/* ----- Team grid ----- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 1180px) { .team-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
@media (max-width: 760px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .team-grid { grid-template-columns: 1fr; } }
.team-member {
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  transition: border-color var(--t-med) var(--ease), transform var(--t-med) var(--ease);
  display: flex;
  flex-direction: column;
}
.team-member:hover { border-color: var(--hairline-strong); transform: translateY(-3px); }
.team-photo {
  aspect-ratio: 1/1;
  background: linear-gradient(160deg, var(--navy-700), var(--navy-900));
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.team-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 50% 50%, rgba(250, 210, 146, 0.12), transparent 70%);
  pointer-events: none;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-photo .placeholder {
  font-family: var(--font-display);
  color: var(--gold-300);
  font-size: 2.6rem;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.team-info { padding: 16px 16px 18px; flex: 1; display: flex; flex-direction: column; }
.team-info .role {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-300);
  font-weight: 600;
  margin-bottom: 6px;
}
.team-info h3 {
  font-family: var(--font-display);
  font-size: var(--fs-md);
  color: var(--white);
  font-weight: 400;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.team-info p {
  color: var(--ink-300);
  font-size: var(--fs-xs);
  line-height: 1.55;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.team-info .creds {
  margin-top: auto;
  padding-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.team-info .cred {
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-400);
  border: 1px solid var(--hairline);
  padding: 3px 7px;
  border-radius: var(--r-full);
  white-space: nowrap;
}
/* At wider grids, the bio-clamp is intentional — the full bio reads on individual profile pages */
@media (max-width: 1180px) {
  .team-info { padding: 18px 20px 22px; }
  .team-info p { -webkit-line-clamp: 8; font-size: var(--fs-sm); }
  .team-info h3 { font-size: var(--fs-lg); }
  .team-info .role { font-size: var(--fs-xs); }
  .team-info .cred { font-size: 11px; padding: 4px 8px; }
}

/* Team card trigger (button wrapper) */
.team-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  color: inherit;
  font: inherit;
}
.team-trigger:focus-visible { outline: 2px solid var(--gold-300); outline-offset: 4px; border-radius: var(--r-lg); }
.team-member.is-active { border-color: var(--gold-400); background: linear-gradient(180deg, rgba(250, 210, 146, 0.06), rgba(255,255,255,0.01)); }
.team-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
  color: var(--gold-300);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  transition: color var(--t-fast) var(--ease);
}
.team-trigger:hover .team-more { color: var(--gold-200); }
.team-member.is-active .team-more { color: var(--gold-200); }
.team-member.is-active .team-more svg { transform: rotate(180deg); }
.team-more svg { transition: transform var(--t-med) var(--ease); }

/* Expandable detail panel */
.team-detail {
  position: relative;
  margin-top: 24px;
  padding: clamp(28px, 3.6vw, 48px);
  border-radius: var(--r-2xl);
  border: 1px solid var(--hairline-strong);
  background:
    radial-gradient(60% 100% at 100% 0%, rgba(0, 54, 99, 0.40), transparent 60%),
    radial-gradient(60% 100% at 0% 100%, rgba(201, 163, 94, 0.10), transparent 60%),
    linear-gradient(135deg, var(--navy-700), var(--navy-900));
  overflow: hidden;
  animation: tdReveal 320ms var(--ease);
}
@keyframes tdReveal {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.team-detail[hidden] { display: none; }
.team-detail-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--hairline-strong);
  background: rgba(255,255,255,0.04);
  color: var(--ink-200);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.team-detail-close:hover { background: rgba(250, 210, 146, 0.10); color: var(--gold-200); }
.team-detail-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(24px, 3vw, 48px);
  align-items: start;
}
@media (max-width: 760px) { .team-detail-inner { grid-template-columns: 1fr; } }
.td-photo {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 1/1;
  background: linear-gradient(160deg, var(--navy-600), var(--navy-900));
  border: 1px solid var(--hairline);
  display: flex; align-items: center; justify-content: center;
}
.td-photo img { width: 100%; height: 100%; object-fit: cover; }
.td-photo .placeholder {
  font-family: var(--font-display);
  color: var(--gold-300);
  font-size: 4rem;
  font-weight: 400;
}
.td-body .td-role {
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-300);
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}
.td-body h3 {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  color: var(--white);
  font-weight: 400;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.td-body .td-headline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-md);
  color: var(--gold-200);
  margin: 0 0 22px;
  line-height: 1.4;
}
.td-section { margin-bottom: 18px; }
.td-section h4 {
  font-size: var(--fs-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-300);
  font-weight: 600;
  margin: 0 0 6px;
}
.td-section p {
  color: var(--ink-200);
  font-size: var(--fs-sm);
  line-height: 1.7;
  margin: 0;
}
.td-creds {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.td-creds .cred {
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-300);
  border: 1px solid var(--hairline-strong);
  padding: 5px 10px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.03);
}
.td-link { margin: 18px 0 0; }
.td-link a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-200);
  font-size: var(--fs-sm);
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.td-link a:hover { color: var(--gold-100); }

/* ----- Case study cards ----- */
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .case-grid { grid-template-columns: 1fr; } }
.case {
  display: flex; flex-direction: column;
  padding: 28px;
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  transition: border-color var(--t-med) var(--ease), transform var(--t-med) var(--ease), background var(--t-med) var(--ease);
  position: relative;
  overflow: hidden;
}
.case:hover { border-color: var(--gold-400); transform: translateY(-3px); }
.case .meta {
  display: flex; gap: 10px; align-items: center; flex-wrap: wrap;
  font-size: var(--fs-xs); letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-300);
  margin-bottom: 16px;
}
.case .meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold-400); }
.case h3 {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 400;
  color: var(--white);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.case p { color: var(--ink-300); font-size: var(--fs-sm); line-height: 1.65; flex: 1; }
.case .outcome {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--hairline);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.case .outcome .num {
  font-family: var(--font-display);
  color: var(--gold-200);
  font-size: var(--fs-xl);
  font-weight: 400;
}
.case .outcome .lbl {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-400);
  margin-top: 4px;
}

/* ----- App showcase (Robinhood Club) ----- */
.app-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 900px) { .app-showcase { grid-template-columns: 1fr; } }
.app-mockup {
  position: relative;
  aspect-ratio: 4/5;
  background:
    radial-gradient(60% 60% at 50% 30%, rgba(250, 210, 146, 0.18), transparent 65%),
    linear-gradient(180deg, var(--navy-700), var(--navy-900));
  border: 1px solid var(--hairline);
  border-radius: var(--r-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 32px;
}
/* Phone frame wrapping the screenshot */
.phone-frame {
  position: relative;
  width: 280px;
  max-width: 80%;
  aspect-ratio: 852 / 1846;
  background: linear-gradient(180deg, #1a2538, #0a1428);
  border: 2px solid rgba(255, 255, 255, 0.10);
  border-radius: 42px;
  padding: 10px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 30px 80px rgba(0,0,0,0.6),
    inset 0 0 0 1px rgba(0,0,0,0.6);
}
.phone-frame::before {
  content: '';
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 22px;
  background: #02060E;
  border-radius: 14px;
  z-index: 2;
}
.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px;
  display: block;
}
/* Legacy placeholder phone — keep for fallback */
.app-mockup .ph {
  width: 240px;
  aspect-ratio: 9/19;
  background: linear-gradient(180deg, var(--navy-900), #02060E);
  border-radius: 36px;
  border: 1px solid var(--hairline-strong);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  position: relative;
  overflow: hidden;
}
.app-mockup .ph::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 28px;
  background: #02060E;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
}
.app-mockup .ph::after {
  content: '';
  position: absolute;
  inset: 36px 16px 16px;
  background:
    radial-gradient(60% 30% at 50% 30%, rgba(250, 210, 146, 0.20), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0));
  border-radius: 16px;
  border: 1px solid var(--hairline);
}

.app-features { display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }
.app-feature { display: flex; gap: 14px; align-items: flex-start; }
.app-feature .ic {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(250, 210, 146, 0.18), rgba(0, 54, 99, 0.20));
  border: 1px solid var(--hairline-strong);
  color: var(--gold-200);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.app-feature h4 { color: var(--white); font-size: var(--fs-base); margin: 0 0 4px; }
.app-feature p { color: var(--ink-300); font-size: var(--fs-sm); line-height: 1.55; margin: 0; }

.store-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border-radius: var(--r-md);
  border: 1px solid var(--hairline-strong);
  background: rgba(255,255,255,0.04);
  color: var(--white);
  transition: border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.store-badge:hover { border-color: var(--gold-400); background: rgba(250, 210, 146, 0.05); color: var(--white); }
.store-badge svg { width: 24px; height: 24px; flex-shrink: 0; }
.store-badge .top { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-400); }
.store-badge .bot { font-family: var(--font-display); font-size: var(--fs-md); line-height: 1.1; }

/* ----- Event posters (newsroom upcoming events) ----- */
.event-posters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 1200px) { .event-posters { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .event-posters { grid-template-columns: 1fr; } }
.event-poster {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  transition: border-color var(--t-med) var(--ease), transform var(--t-med) var(--ease);
}
.event-poster:hover {
  border-color: rgba(201, 163, 94, 0.45);
  transform: translateY(-3px);
}
.event-poster-img {
  position: relative;
  background: var(--navy-900);
  overflow: hidden;
}
.event-poster-img img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  transition: transform 600ms var(--ease);
}
.event-poster:hover .event-poster-img img { transform: scale(1.03); }
.event-poster-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

/* Typography-only event card (no poster image yet) */
.typo-card {
  background:
    radial-gradient(70% 90% at 50% 0%, rgba(201, 163, 94, 0.10), transparent 60%),
    linear-gradient(180deg, #0b1626, #050b16);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px;
}
.typo-card-inner { display: flex; flex-direction: column; align-items: center; gap: 14px; max-width: 90%; }
.tc-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-300);
  font-weight: 600;
  font-family: var(--font-sans);
}
.tc-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.7rem, 1.4rem + 1vw, 2.4rem);
  color: var(--white);
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.01em;
}
.tc-title em { color: var(--gold-200); font-style: italic; font-size: 0.78em; display: block; margin-top: 8px; }
.tc-rule {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
}
.tc-venue {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-200);
  font-size: 1.05rem;
}
.event-poster-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-300);
  font-weight: 600;
}
.event-poster-tag .dot {
  display: inline-block; width: 4px; height: 4px;
  background: var(--gold-400); border-radius: 50%;
}
.event-poster h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin: 4px 0 4px;
}
.event-poster p {
  color: var(--ink-200);
  font-size: var(--fs-sm);
  line-height: 1.6;
  margin: 0;
}
.event-poster strong { color: var(--white); font-weight: 600; }
.event-poster-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px solid var(--hairline);
}
.event-poster-meta > div { display: flex; flex-direction: column; gap: 2px; }
.evp-lbl {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-300);
}
.evp-val {
  color: var(--white);
  font-size: var(--fs-sm);
  line-height: 1.35;
}
.event-poster-cta-note {
  margin-top: 8px !important;
  font-size: var(--fs-xs) !important;
  color: var(--ink-300) !important;
  font-style: italic;
}
.event-poster-cta-note a {
  color: var(--gold-200);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ----- Article (long-form) page ----- */
.article-byline {
  margin-top: 18px;
  font-size: var(--fs-sm);
  color: var(--ink-300);
  letter-spacing: 0.04em;
}
.article-byline strong { color: var(--gold-200); font-weight: 500; }
.article-body {
  color: var(--ink-100);
  font-size: 1.06rem;
  line-height: 1.75;
  font-family: var(--font-display);
}
.article-body .lead {
  font-size: 1.25rem;
  color: var(--white);
  line-height: 1.55;
  margin: 0 0 32px;
  padding-left: 16px;
  border-left: 2px solid var(--gold-500);
}
.article-body h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 1.1rem + 1.2vw, 2rem);
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 44px 0 14px;
}
.article-body h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--white);
  margin: 28px 0 8px;
}
.article-body p {
  margin: 0 0 18px;
  color: var(--ink-100);
}
.article-body ul, .article-body ol {
  padding-left: 22px;
  margin: 0 0 22px;
  color: var(--ink-100);
}
.article-body li { margin-bottom: 8px; line-height: 1.7; }
.article-body strong { color: var(--white); font-weight: 600; }
.article-body em { color: var(--gold-200); font-style: italic; }
.article-body blockquote {
  margin: 28px 0;
  padding: 18px 22px;
  border-left: 2px solid var(--gold-400);
  background: rgba(201, 163, 94, 0.04);
  color: var(--white);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
}
.article-body hr { border: 0; border-top: 1px solid var(--hairline); margin: 36px 0; }
.article-back {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 24px;
  font-size: var(--fs-sm);
  letter-spacing: 0.06em;
  color: var(--gold-300);
}
.article-back:hover { color: var(--gold-200); }
.article-tldr {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  padding: 22px 26px;
  margin: 0 0 36px;
}
.article-tldr h4 {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin: 0 0 10px;
  font-family: var(--font-sans);
  font-weight: 600;
}
.article-tldr ul { margin: 0; padding-left: 18px; list-style: disc; }
.article-tldr li { color: var(--ink-200); font-size: var(--fs-sm); line-height: 1.6; }
.article-disclosure {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid var(--hairline);
  font-size: var(--fs-xs);
  color: var(--ink-300);
  line-height: 1.6;
}

/* ----- Insights cards (newsroom articles) ----- */
.insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .insights-grid { grid-template-columns: 1fr; } }
.insight {
  display: flex; flex-direction: column;
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  overflow: hidden;
  transition: border-color var(--t-med) var(--ease), transform var(--t-med) var(--ease);
}
a.insight:hover { border-color: var(--gold-400); transform: translateY(-3px); }
.insight.is-preview { cursor: default; }
.insight.is-preview:hover { border-color: var(--hairline-strong); transform: none; }
.insight .pic {
  aspect-ratio: 16/9;
  background: linear-gradient(160deg, var(--navy-700), var(--navy-900));
  position: relative;
  overflow: hidden;
}
.insight .pic img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform 600ms var(--ease);
}
a.insight:hover .pic img { transform: scale(1.04); }
.insight .pic::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 60%, rgba(5, 11, 22, 0.45) 100%),
    radial-gradient(60% 60% at 50% 50%, rgba(250, 210, 146, 0.06), transparent 70%);
  pointer-events: none;
}
.insight .meta .coming {
  color: var(--gold-200);
  letter-spacing: 0.18em;
}
.insight .pic-mark {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 400;
  color: rgba(250, 210, 146, 0.18);
  letter-spacing: -0.04em;
  z-index: 1;
}
.insight .body { padding: 22px 24px 26px; }
.insight .meta {
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 12px;
}
.insight h3 {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 400;
  color: var(--white);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.insight p { color: var(--ink-300); font-size: var(--fs-sm); line-height: 1.6; margin: 0; }

/* ----- Footer disclosures ----- */
.footer-disclosures {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px dashed var(--hairline);
  font-size: var(--fs-xs);
  color: var(--ink-400);
  line-height: 1.7;
  max-width: 80ch;
}

/* ----- Hit the Bell — brand lore plaque ----- */
.bell-section {
  position: relative;
  padding-block: clamp(32px, 4vw, 60px);
  background:
    radial-gradient(60% 90% at 50% 0%, rgba(201, 163, 94, 0.06), transparent 70%),
    linear-gradient(180deg, var(--navy-900), #04090f);
}
.bell-layout {
  display: grid;
  grid-template-columns: minmax(220px, 360px) 1fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.bell-plaque {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 30px 80px -28px rgba(0,0,0,0.7), 0 0 0 1px rgba(201, 163, 94, 0.20);
}
.bell-plaque img {
  display: block;
  width: 100%;
  height: auto;
  filter: saturate(1.05) brightness(0.95);
}
.bell-plaque::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(0,0,0,0.30) 100%);
  pointer-events: none;
}
@media (max-width: 880px) {
  .bell-layout { grid-template-columns: 1fr; gap: 28px; }
  .bell-plaque { max-width: 320px; margin: 0 auto; }
}
.bell-card {
  position: relative;
  padding: clamp(28px, 3.5vw, 44px) clamp(24px, 3.5vw, 44px) clamp(32px, 3.5vw, 44px);
  border: 1px solid rgba(201, 163, 94, 0.32);
  border-radius: var(--r-lg);
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(201, 163, 94, 0.08), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.18));
  text-align: left;
  box-shadow: inset 0 0 0 1px rgba(201, 163, 94, 0.08), 0 24px 60px -28px rgba(0,0,0,0.45);
}
.bell-card::before, .bell-card::after {
  content: '';
  position: absolute;
  width: 22px; height: 22px;
  border: 1px solid rgba(201, 163, 94, 0.45);
}
.bell-card::before { top: -8px; left: -8px; border-right: 0; border-bottom: 0; }
.bell-card::after { bottom: -8px; right: -8px; border-left: 0; border-top: 0; }
.bell-rune {
  display: inline-flex; align-items: center; justify-content: center;
  width: 88px; height: 88px;
  margin: 0 auto 18px;
  border-radius: 50%;
  border: 1px solid rgba(201, 163, 94, 0.40);
  color: var(--gold-200);
  background: radial-gradient(circle at 50% 30%, rgba(201, 163, 94, 0.12), transparent 70%);
}
.bell-eyebrow {
  letter-spacing: 0.32em !important;
  color: var(--gold-300) !important;
}
.bell-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.1rem, 1.6rem + 1.6vw, 3rem);
  line-height: 1.05;
  margin: 14px 0 14px;
  color: var(--white);
}
.bell-title em.serif { color: var(--gold-200); font-style: italic; }
.bell-tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-md);
  color: var(--gold-300);
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}
.bell-lore {
  text-align: left;
  max-width: 56ch;
  margin: 0 auto;
  color: var(--ink-100);
  font-family: var(--font-display);
  font-size: 1.08rem;
  line-height: 1.7;
}
.bell-lore p { margin-bottom: 16px; }
.bell-cap {
  font-size: 2.2em;
  font-family: var(--font-display);
  float: left;
  line-height: 0.9;
  margin: 6px 8px -2px 0;
  color: var(--gold-200);
}
.bell-occasions {
  list-style: none;
  padding: 18px 22px;
  margin: 14px 0 18px;
  border-left: 2px solid var(--gold-500);
  background: rgba(201, 163, 94, 0.04);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.bell-occasions li {
  display: flex; gap: 14px; align-items: baseline;
  padding: 4px 0;
  font-style: italic;
  color: var(--ink-100);
}
.bell-num {
  color: var(--gold-300);
  font-family: var(--font-display);
  font-style: italic;
  min-width: 24px;
  text-align: right;
}
.bell-sig {
  margin-top: 22px;
  font-family: var(--font-display);
  font-style: italic;
  letter-spacing: 0.04em;
  color: var(--gold-400);
  font-size: var(--fs-sm);
}
@media (max-width: 600px) {
  .bell-cap { font-size: 1.6em; }
  .bell-occasions { padding: 14px 16px; }
}

/* ----- The Corporate Doctor section (about-us.html) ----- */
.doctor-section {
  background:
    radial-gradient(60% 90% at 20% 0%, rgba(201, 163, 94, 0.05), transparent 70%),
    linear-gradient(180deg, var(--navy-900), #04090f);
}
.doctor-cn {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-300);
  font-size: 0.7em;
  margin-left: 12px;
  letter-spacing: 0.06em;
}
.doctor-journey, .doctor-disciplines, .doctor-ai {
  margin-top: clamp(40px, 5vw, 64px);
}
.dj-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.4rem, 1rem + 1.2vw, 1.95rem);
  color: var(--white);
  letter-spacing: -0.01em;
  margin: 0 0 24px;
}
.dj-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  counter-reset: dj;
}
@media (max-width: 1100px) { .dj-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .dj-list { grid-template-columns: 1fr; } }
.dj-list li {
  position: relative;
  padding: 22px 18px 22px 22px;
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(0,0,0,0.18));
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 200px;
}
.dj-num {
  font-family: var(--font-display);
  font-size: 1.85rem;
  color: var(--gold-300);
  letter-spacing: 0.02em;
  line-height: 1;
}
.dj-list h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--white);
  margin: 0 0 8px;
  line-height: 1.25;
}
.dj-list p {
  color: var(--ink-200);
  font-size: var(--fs-sm);
  line-height: 1.55;
  margin: 0;
}
.doctor-ai {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(201, 163, 94, 0.25);
  border-radius: var(--r-lg);
  background: radial-gradient(120% 80% at 50% 0%, rgba(201, 163, 94, 0.06), transparent 60%);
}
.doctor-ai h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 1.1rem + 1vw, 2rem);
  color: var(--white);
  letter-spacing: -0.01em;
  margin: 12px 0 14px;
}
.doctor-ai p {
  color: var(--ink-100);
  font-size: var(--fs-md);
  line-height: 1.65;
  margin: 0;
}

/* ----- Founder's Note (about-us.html) ----- */
.founder-note-section {
  background:
    radial-gradient(60% 90% at 80% 0%, rgba(201, 163, 94, 0.06), transparent 70%),
    linear-gradient(180deg, var(--navy-900), #04090f);
}
.founder-note {
  display: grid;
  grid-template-columns: minmax(240px, 320px) 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(32px, 4vw, 56px) clamp(28px, 4vw, 56px);
  border: 1px solid rgba(201, 163, 94, 0.32);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(0, 0, 0, 0.18));
  box-shadow: inset 0 0 0 1px rgba(201, 163, 94, 0.08), 0 24px 60px -28px rgba(0,0,0,0.45);
}
@media (max-width: 880px) {
  .founder-note { grid-template-columns: 1fr; gap: 28px; padding: 28px 22px; }
}
.founder-aside { position: sticky; top: 100px; }
@media (max-width: 880px) { .founder-aside { position: static; } }
.founder-photo {
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid rgba(201, 163, 94, 0.20);
  box-shadow: 0 20px 60px -24px rgba(0,0,0,0.6);
  margin-bottom: 22px;
}
.founder-photo img {
  display: block; width: 100%; height: auto;
}
.founder-eyebrow {
  letter-spacing: 0.32em !important;
  color: var(--gold-300) !important;
  display: block;
  margin-bottom: 10px;
}
.founder-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.55rem;
  color: var(--white);
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.founder-role {
  color: var(--gold-200);
  font-size: var(--fs-sm);
  letter-spacing: 0.01em;
  margin-bottom: 18px;
}
.founder-creds {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.founder-creds .cred {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-200);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--hairline);
  padding: 5px 9px;
  border-radius: 999px;
}
.founder-body {
  color: var(--ink-100);
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.7;
}
.founder-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.6rem, 1.2rem + 1.2vw, 2.25rem);
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 18px;
}
.founder-title em.serif { color: var(--gold-200); font-style: italic; }
.founder-lead {
  font-size: 1.18rem;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 30px;
  padding-left: 16px;
  border-left: 2px solid var(--gold-500);
}
.founder-body h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin: 28px 0 10px;
}
.founder-body p { margin: 0 0 16px; }
.founder-close {
  margin-top: 26px !important;
  font-style: italic;
  color: var(--gold-200);
}
.founder-sig {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--hairline);
}
.founder-sig-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold-200);
  letter-spacing: -0.005em;
}
.founder-sig-title {
  font-size: var(--fs-sm);
  color: var(--ink-200);
  margin-top: 4px;
  letter-spacing: 0.02em;
}

/* ----- Contact flow / "What happens next" ----- */
.contact-flow {
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01));
}
.flow-steps { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 18px; }
.flow-steps li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--hairline);
}
.flow-steps li:last-child { border-bottom: 0; }
.flow-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-300);
  line-height: 1;
  letter-spacing: 0.02em;
  padding-top: 4px;
}
.flow-steps h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--white);
  margin: 0 0 4px;
}
.flow-steps p { color: var(--ink-200); font-size: var(--fs-sm); margin: 0; line-height: 1.55; }
.response-stat {
  margin-top: 24px;
  padding: 18px 22px;
  border-radius: var(--r-md);
  background: rgba(201, 163, 94, 0.06);
  border: 1px solid rgba(201, 163, 94, 0.20);
}
.response-stat .num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold-200);
  line-height: 1;
}
.response-stat .lbl {
  margin-top: 6px;
  color: var(--ink-200);
  font-size: var(--fs-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ----- Visual band (full-width image with caption) ----- */
.visual-band {
  position: relative;
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--hairline);
}
.visual-band img {
  display: block;
  width: 100%;
  height: clamp(280px, 38vw, 460px);
  object-fit: cover;
  object-position: center;
}
.visual-band figcaption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(20px, 3vw, 36px);
  background: linear-gradient(180deg, transparent 40%, rgba(5, 11, 22, 0.85) 100%);
  color: var(--ink-100);
}
.visual-band figcaption p {
  margin: 8px 0 0;
  max-width: 60ch;
  font-size: var(--fs-md);
  color: var(--ink-100);
}

/* Print */
@media print {
  .nav, .footer, .cta-band, .fab-whatsapp { display: none !important; }
  body { background: white; color: black; }
}
