/* ============================================================
   POINT BREAK PARTNERS — Website Stylesheet
   Design references: KKR, Blackstone, Pollen Street Capital
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy-deep:    #07101F;
  --navy-mid:     #0C1A2E;
  --navy-surface: #111F35;
  --navy-card:    #162540;
  --gold:         #C9A96E;
  --gold-light:   #DFC08A;
  --teal:         #007C91;
  --teal-light:   #1A94A8;
  --teal-muted:   rgba(0, 124, 145, 0.12);
  --teal-border:  rgba(0, 124, 145, 0.3);
  --white:        #FFFFFF;
  --text-primary: #F0F4F8;
  --text-secondary: #94A3B8;
  --text-muted:   #64748B;
  --border:       rgba(201, 169, 110, 0.18);
  --border-subtle: rgba(255, 255, 255, 0.07);
  --transition:   0.3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--navy-deep);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Keyboard accessibility — visible focus on interactive elements */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
img { max-width: 100%; height: auto; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--white);
}

h1 { font-size: clamp(2.8rem, 5.5vw, 5.2rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 3.5vw, 3.4rem); font-weight: 500; }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); font-weight: 500; }
h4 { font-size: 1.1rem; font-weight: 600; font-family: 'Inter', sans-serif; letter-spacing: 0.02em; }

p { color: var(--text-secondary); line-height: 1.8; }

.label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* --- Layout --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.container--narrow { max-width: 860px; margin: 0 auto; padding: 0 40px; }

section { padding: 120px 0; }

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy-deep);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 36px;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 15px 35px;
  border: 1px solid rgba(255,255,255,0.3);
  text-decoration: none;
  transition: border-color var(--transition), color var(--transition);
}
.btn-secondary:hover { border-color: var(--teal); color: var(--teal-light); }

/* --- Gold Line Divider --- */
.gold-line {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 32px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

#nav.scrolled {
  background: rgba(7, 16, 31, 0.97);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  padding: 16px 0;
  box-shadow: 0 1px 0 var(--border-subtle), inset 0 2px 0 var(--teal);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1;
}

.nav-logo-sub {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--teal-light); }

.nav-cta {
  background: transparent;
  color: var(--gold) !important;
  border: 1px solid var(--border);
  padding: 10px 24px;
  font-size: 0.75rem !important;
  letter-spacing: 0.1em !important;
  transition: background var(--transition), border-color var(--transition) !important;
}
.nav-cta:hover { background: rgba(201,169,110,0.08) !important; border-color: var(--gold) !important; }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--navy-deep);
  overflow: hidden;
  padding: 0;
  padding-bottom: 80px;
}

/* --- Hero Video Background --- */
.hero-video-container {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(7, 16, 31, 0.85) 0%,
    rgba(7, 16, 31, 0.7) 40%,
    rgba(7, 16, 31, 0.6) 100%
  );
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(13,26,52,0.4) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(201,169,110,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 40px 0;
  flex: 1;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--teal);
}

.hero-headline {
  max-width: 900px;
  margin-bottom: 32px;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  max-width: 640px;
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 52px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-stats {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 60px;
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid var(--border-subtle);
  width: 100%;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================================
   THE GAP
   ============================================================ */
#gap {
  background: var(--navy-mid);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.gap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.gap-content h2 { margin-bottom: 28px; }
.gap-content p { margin-bottom: 20px; }

.gap-pull-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  font-style: italic;
  color: var(--white);
  border-left: 2px solid var(--teal);
  padding-left: 28px;
  margin-top: 40px;
  line-height: 1.5;
}

.gap-pull-quote-attribution {
  display: block;
  margin-top: 18px;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.5;
}

.gap-pull-quote-name {
  display: block;
  color: var(--white);
  font-weight: 600;
}

.gap-pull-quote-role {
  display: block;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 2px;
}

.gap-stats {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.gap-stat-card {
  background: var(--navy-card);
  border: 1px solid var(--border-subtle);
  padding: 36px 40px;
  transition: border-color var(--transition);
}
.gap-stat-card:hover { border-color: var(--border); }

.gap-stat-card:first-child { border-top: 2px solid var(--gold); }

.gap-stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.8rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.gap-stat-number.gold { color: var(--gold); }

.gap-stat-desc {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
}

/* ============================================================
   THE PROBLEM (ENEMY)
   ============================================================ */
#problem {
  background: var(--navy-deep);
}

.problem-inner { text-align: center; max-width: 800px; margin: 0 auto; }
.problem-inner .gold-line { margin: 0 auto 32px; }
.problem-inner h2 { margin-bottom: 28px; }
.problem-inner > p { font-size: 1.05rem; margin-bottom: 20px; }

.problem-pull {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 500;
  font-style: italic;
  color: var(--gold);
  margin: 60px auto 0;
  max-width: 700px;
  line-height: 1.4;
}

.problem-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 72px;
  background: var(--border-subtle);
}

.problem-item {
  background: var(--navy-mid);
  padding: 40px 36px;
  text-align: left;
}

.problem-item-icon {
  width: 40px;
  height: 2px;
  background: var(--teal);
  margin-bottom: 24px;
}

.problem-item h4 { margin-bottom: 12px; color: var(--white); }
.problem-item p { font-size: 0.9rem; }

/* ============================================================
   THE MODEL
   ============================================================ */
#model {
  background: var(--navy-mid);
  border-top: 1px solid var(--border-subtle);
}

.model-header { margin-bottom: 72px; }
.model-header h2 { margin-bottom: 20px; }
.model-header p { max-width: 600px; font-size: 1.05rem; }

.model-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border-subtle);
  margin-bottom: 80px;
}
.model-pillars--four {
  grid-template-columns: repeat(4, 1fr);
}

.pillar {
  background: var(--navy-card);
  padding: 48px 32px;
  position: relative;
  transition: background var(--transition);
}
.pillar:hover { background: var(--navy-surface); }

.pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.pillar:hover::before { transform: scaleX(1); }

.pillar-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  display: block;
}
.pillar-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.pillar-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.pillar h3 { margin-bottom: 14px; color: var(--white); font-size: 1.35rem; }
.pillar p { font-size: 0.85rem; line-height: 1.65; }

.model-description {
  max-width: 800px;
}
.model-description p { font-size: 1.05rem; margin-bottom: 20px; }

/* ============================================================
   MISSION
   ============================================================ */
#mission {
  background: var(--navy-deep);
  border-top: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}

.mission-bg-text {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 18rem;
  font-weight: 700;
  color: rgba(255,255,255,0.015);
  pointer-events: none;
  white-space: nowrap;
  line-height: 1;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.mission-content .gold-line { margin-bottom: 32px; }
.mission-content h2 { margin-bottom: 28px; }
.mission-content p { margin-bottom: 20px; font-size: 1.05rem; }

.mission-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 500;
  font-style: italic;
  color: var(--gold);
  margin-top: 40px;
  line-height: 1.15;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mission-tagline-line { display: block; }

.mission-pillars {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mission-pillar {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: var(--navy-surface);
  border: 1px solid var(--border-subtle);
  padding: 28px 32px;
  transition: border-color var(--transition);
}
.mission-pillar:hover { border-color: var(--border); }

.mission-pillar-bullet {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}

.mission-pillar-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  margin-top: 2px;
}
.mission-pillar-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.mission-pillar h4 { margin-bottom: 6px; font-size: 0.95rem; letter-spacing: 0.04em; color: var(--white); }
.mission-pillar p { font-size: 0.85rem; }

/* ============================================================
   STRATEGIES
   ============================================================ */
#strategies {
  background: var(--navy-mid);
  border-top: 1px solid var(--border-subtle);
}

.strategies-header { margin-bottom: 64px; }
.strategies-header h2 { margin-bottom: 16px; }
.strategies-header p { max-width: 560px; }

.strategies-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  background: var(--border-subtle);
}

.strategy-card {
  background: var(--navy-card);
  padding: 44px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
  text-decoration: none;
  color: inherit;
}
.strategy-card:hover { background: var(--navy-surface); }

.strategy-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
  transition: color var(--transition);
}
.strategy-card:hover .strategy-link { color: var(--gold-light); }

.strategy-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.35s ease;
}
.strategy-card:hover::after { transform: scaleX(1); }

.strategy-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 4px;
}
.strategy-card-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.strategy-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  font-weight: 500;
  line-height: 1;
}

.strategy-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}

.strategy-card p { font-size: 0.84rem; line-height: 1.7; flex: 1; }

.strategy-target {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

/* ============================================================
   TEAM
   ============================================================ */
#team {
  background: var(--navy-deep);
  border-top: 1px solid var(--border-subtle);
}

.team-header { text-align: center; max-width: 700px; margin: 0 auto 80px; }
.team-header .gold-line { margin: 0 auto 32px; }
.team-header h2 { margin-bottom: 20px; }

.team-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border-subtle);
  margin-bottom: 80px;
}

.team-stat {
  background: var(--navy-surface);
  padding: 48px 36px;
  text-align: center;
}

.team-stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.4rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
}

.team-stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.team-alumni {
  text-align: center;
  margin-bottom: 72px;
}

.team-alumni p {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.alumni-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px 36px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.alumni-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.05em;
  transition: color var(--transition);
}
.alumni-name:hover { color: rgba(255,255,255,0.55); }

.team-leadership { max-width: 900px; margin: 0 auto; }
.team-leadership h3,
.leadership-heading {
  text-align: center;
  margin-bottom: 48px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--gold);
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border-subtle);
}

.leader-card {
  background: var(--navy-surface);
  overflow: hidden;
  transition: background var(--transition);
  display: flex;
  flex-direction: column;
}
.leader-card:hover { background: var(--navy-card); }

.leader-photo {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--navy-card);
  position: relative;
}

.leader-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.5s ease;
}

.leader-card:hover .leader-photo img {
  transform: scale(1.04);
}

.leader-info {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.leader-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.leader-role {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.leader-bg {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.leader-contact {
  display: flex;
  gap: 14px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--border-subtle);
}
.leader-contact a {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  transition: border-color var(--transition), background var(--transition);
}
.leader-contact a:hover {
  border-color: var(--gold);
  background: rgba(201,169,110,0.08);
}
.leader-contact img {
  width: 14px;
  height: 14px;
  display: block;
  pointer-events: none;
}

/* ============================================================
   FOUNDATION
   ============================================================ */
#foundation {
  background: var(--navy-mid);
  border-top: 1px solid var(--border-subtle);
}

.foundation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.foundation-content .gold-line { margin-bottom: 32px; }
.foundation-content h2 { margin-bottom: 24px; }
.foundation-content p { margin-bottom: 20px; font-size: 1rem; }

.foundation-allocation {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.alloc-item {
  background: var(--navy-card);
  border: 1px solid var(--border-subtle);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: border-color var(--transition);
}
.alloc-item:hover { border-color: var(--border); }

.alloc-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.alloc-icon img { width: 100%; height: 100%; display: block; }

.alloc-pct {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  width: 70px;
}

.alloc-desc h4 { font-size: 0.9rem; margin-bottom: 4px; font-family: 'Inter', sans-serif; }
.alloc-desc p { font-size: 0.82rem; }

/* ============================================================
   CONTACT
   ============================================================ */
#contact {
  background: var(--navy-deep);
  border-top: 1px solid var(--border-subtle);
}

.contact-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.contact-inner .gold-line { margin: 0 auto 32px; }
.contact-inner h2 { margin-bottom: 24px; }
.contact-inner > p { font-size: 1.05rem; margin-bottom: 56px; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--navy-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  padding: 14px 18px;
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-group textarea { resize: vertical; min-height: 120px; }

.form-group select option { background: var(--navy-card); }

.form-submit { margin-top: 8px; }
.form-submit .btn-primary { width: 100%; justify-content: center; }

.contact-note {
  margin-top: 24px;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #050B16;
  border-top: 1px solid var(--border-subtle);
  padding: 64px 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 40px;
}

.footer-brand-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 16px;
  display: block;
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-brand-sub {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-brand-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h5 {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }

.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--teal-light); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal { font-size: 0.75rem; color: var(--text-muted); line-height: 1.6; }
.footer-legal a { color: var(--text-muted); text-decoration: none; }
.footer-legal a:hover { color: var(--white); }

/* ============================================================
   IMPORTANT INFORMATION BAND (regulatory notice)
   ============================================================ */
.important-info-band {
  background: var(--navy-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 48px 0;
}
.important-info-inner {
  max-width: 980px;
  margin: 0 auto;
}
.important-info-inner .label { color: var(--gold); }
.important-info-inner p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-top: 14px;
}
.important-info-inner a { color: var(--gold); text-decoration: underline; }
.important-info-inner a:hover { color: var(--gold-light); }
@media (max-width: 768px) {
  .important-info-band { padding: 36px 0; }
  .important-info-inner p { font-size: 0.88rem; }
}

/* ============================================================
   VALIDATION BAND
   ============================================================ */
#validation-band {
  background: var(--navy-surface);
  border-top: 1px solid var(--teal-border);
  border-bottom: 1px solid var(--border-subtle);
  padding: 20px 0;
  overflow: hidden;
}

.validation-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.validation-label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}

.validation-names {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.validation-names span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0 16px;
  border-right: 1px solid var(--border-subtle);
  white-space: nowrap;
}
.validation-names span:last-child { border-right: none; }

.validation-note {
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  white-space: nowrap;
  margin-left: auto;
}

/* ============================================================
   GAP STAT SOURCE
   ============================================================ */
.gap-stat-source {
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-top: 8px;
  font-style: italic;
}

/* ============================================================
   FOUNDER STATEMENT
   ============================================================ */
#founder {
  background: var(--navy-mid);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.founder-inner { position: relative; }

.founder-quote {
  margin: 28px 0 48px;
  border: none;
  padding: 0;
}

.founder-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.85;
  margin-bottom: 24px;
}

.founder-quote p:last-child { margin-bottom: 0; }

.founder-attribution {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 40px;
  border-top: 1px solid var(--border-subtle);
}

.founder-attribution-line {
  width: 40px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.founder-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 3px;
}

.founder-title {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.founder-prev {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
  margin-top: 72px;
  background: var(--navy-deep);
  border: 1px solid var(--border-subtle);
}

.trust-item {
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.trust-item-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.trust-item-value {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.4;
}

.trust-divider {
  width: 1px;
  height: 48px;
  background: var(--border-subtle);
}

/* ============================================================
   CONTACT ACTIONS (replaces form)
   ============================================================ */
.contact-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 32px;
}

.contact-cta-primary,
.contact-cta-secondary {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 36px 40px;
  text-decoration: none;
  text-align: left;
  transition: background var(--transition);
  font-family: inherit;
  color: inherit;
  cursor: pointer;
  width: 100%;
}

.contact-cta-primary {
  background: var(--navy-surface);
  border: 1px solid var(--border);
}
.contact-cta-primary:hover { background: var(--navy-card); }

.contact-cta-secondary {
  background: var(--navy-surface);
  border: 1px solid var(--border-subtle);
}
.contact-cta-secondary:hover { background: var(--navy-card); border-color: var(--border); }

.contact-cta-icon {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
}

.contact-cta-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
}

.contact-cta-sub {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* ============================================================
   HAMBURGER MENU
   ============================================================ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy-deep);
  z-index: 999;
  flex-direction: column;
  /* Stack from the top so the first link (Opportunity) never falls
     behind the fixed main nav header (which sits at z:1000). */
  justify-content: flex-start;
  align-items: center;
  gap: 26px;
  padding: 110px 40px 40px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--gold); }

.mobile-nav .mobile-nav-cta {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 16px 36px;
  margin-top: 16px;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE — 1024px (Tablet)
   ============================================================ */
@media (max-width: 1024px) {
  /* Strategy grid: 2 cols + 1 centred on last row */
  .strategies-grid { grid-template-columns: repeat(2, 1fr); }
  .strategy-card:last-child { grid-column: 1 / -1; max-width: 100%; }

  /* Team stats: 3 cards stay on single row but at smaller padding */
  .team-stat { padding: 36px 20px; }
  .team-stat-number { font-size: 2.6rem; }

  /* Trust strip: 2x2 */
  .trust-strip {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .trust-divider { display: none; }
  .trust-item { border-bottom: 1px solid var(--border-subtle); }
  .trust-item:nth-child(odd) { border-right: 1px solid var(--border-subtle); }
  .trust-item:nth-last-child(-n+2) { border-bottom: none; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .leadership-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   RESPONSIVE — 768px (Mobile)
   ============================================================ */
@media (max-width: 768px) {
  /* v3: tightened section padding for shorter mobile scroll */
  section { padding: 56px 0; }
  .container, .container--narrow { padding: 0 20px; }

  /* Nav */
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  /* Typography */
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }
  h3 { font-size: 1.25rem; }
  p { line-height: 1.65; }

  /* Hero */
  .hero-content { padding: 110px 20px 0; }
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    padding: 0 20px;
    margin-top: 40px;
    padding-top: 28px;
  }
  .hero-stat-item { min-width: 0; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary { width: 100%; justify-content: center; }

  /* Validation band */
  .validation-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .validation-names { flex-wrap: wrap; gap: 0; }
  .validation-names span { white-space: normal; }
  .validation-note { margin-left: 0; white-space: normal; }

  /* Grids → single column (tighter gap on v3) */
  .gap-grid,
  .mission-grid,
  .foundation-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Model pillars: stack */
  .model-pillars { grid-template-columns: 1fr; }

  /* Trust strip: single column */
  .trust-strip { grid-template-columns: 1fr; }
  .trust-item { border-right: none !important; border-bottom: 1px solid var(--border-subtle); }
  .trust-item:last-child { border-bottom: none; }

  /* Problem items */
  .problem-items { grid-template-columns: 1fr; }

  /* Strategies */
  .strategies-grid { grid-template-columns: 1fr; }
  .strategy-card:last-child { grid-column: auto; max-width: 100%; }

  /* Team */
  .team-stats-row { grid-template-columns: 1fr; }
  .leadership-grid { grid-template-columns: repeat(2, 1fr); }
  .alumni-logos { gap: 18px 24px; }
  .alumni-name { font-size: 0.92rem; }

  /* Mission tagline scales down on mobile */
  .mission-tagline { font-size: 1.65rem; margin-top: 24px; }

  /* Contact */
  .contact-actions { grid-template-columns: 1fr; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 18px; }
  .footer-bottom > div { gap: 14px; }
  .footer-legal a, .footer-bottom a { padding: 6px 0; display: inline-block; }
  .footer-col li { padding: 6px 0; }
}

/* ============================================================
   RESPONSIVE — 480px (Small Mobile)
   ============================================================ */
@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  .team-stats-row { grid-template-columns: 1fr; }
  .hero-stat-item { min-width: 100%; }
  .leadership-grid { grid-template-columns: 1fr; }
  .mission-tagline { font-size: 1.55rem; }
}

/* ============================================================
   STRATEGY PAGES
   ============================================================ */
.strategy-page-hero {
  position: relative;
  padding: 200px 0 100px;
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  border-bottom: 1px solid var(--border-subtle);
}
.strategy-page-hero .container { max-width: 1100px; }
.strategy-page-hero .label {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  display: inline-block;
}
.strategy-page-hero .label .strategy-num-big {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0;
  vertical-align: -0.05em;
  margin-right: 4px;
}
.strategy-page-hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  margin: 20px 0 28px;
  max-width: 820px;
}
.strategy-page-hero .strategy-tagline {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-primary);
  max-width: 760px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}
.strategy-breadcrumb {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.strategy-breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}
.strategy-breadcrumb a:hover { color: var(--gold); }
.strategy-breadcrumb span { color: var(--gold); margin: 0 10px; }

.strategy-section { padding: 100px 0; border-bottom: 1px solid var(--border-subtle); }
.strategy-section:last-of-type { border-bottom: none; }
.strategy-section .container { max-width: 1100px; }
.strategy-section-header { margin-bottom: 56px; max-width: 760px; }
.strategy-section-header .gold-line { width: 40px; height: 2px; background: var(--gold); margin-bottom: 24px; }
.strategy-section-header h2 { margin: 16px 0 18px; }
.strategy-section-header p { font-size: 1rem; }

/* Why-Now overview grid (2-column: text + image, stacks on mobile) */
.why-now-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 16px;
}
.why-now-content .gold-line { margin-bottom: 20px; }
.why-now-content .label { display: inline-block; }
.why-now-content h2 { margin: 16px 0 20px; }
.why-now-content p { font-size: 1rem; line-height: 1.7; color: var(--text-secondary); margin: 0; }
.why-now-image {
  position: relative;
  overflow: hidden;
  background: var(--navy-card);
  aspect-ratio: 4 / 3;
}
.why-now-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Strategy snapshot grid (legacy — kept for any remaining references) */
.strategy-snapshot {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border-subtle);
  margin-top: 48px;
}
.snapshot-item {
  background: var(--navy-card);
  padding: 36px 28px;
}
.snapshot-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.snapshot-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
}
.snapshot-sub {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 6px;
}

/* Sub-strategy table */
.substrategy-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
  font-family: 'Inter', sans-serif;
}
.substrategy-table th,
.substrategy-table td {
  padding: 20px 18px;
  text-align: left;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border-subtle);
}
.substrategy-table th {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--navy-mid);
}
.substrategy-table td { color: var(--text-secondary); }
.substrategy-table tr:hover td { background: rgba(255,255,255,0.02); }
.substrategy-table .substrategy-name {
  color: var(--white);
  font-weight: 600;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  white-space: nowrap;
}
.substrategy-table th:first-child,
.substrategy-table td:first-child { width: 30%; padding-right: 32px; }

/* Case study cards */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.case-card {
  background: var(--navy-card);
  padding: 36px 30px;
  border-top: 2px solid var(--gold);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.case-card .case-tag {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.case-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
}
.case-card p { font-size: 0.85rem; line-height: 1.65; }
.case-card .case-outcome {
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  padding-top: 14px;
  margin-top: auto;
  border-top: 1px solid var(--border-subtle);
}

/* Strategy team grid */
.strategy-team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.strategy-partner {
  background: var(--navy-card);
  padding: 32px 30px;
  border-left: 2px solid var(--gold);
}
.strategy-partner h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.strategy-partner .partner-role {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.strategy-partner ul { list-style: none; padding: 0; }
.strategy-partner ul li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 6px 0;
  position: relative;
  padding-left: 16px;
  line-height: 1.55;
}
.strategy-partner ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* LP value props list */
.lp-value {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  margin-top: 32px;
}
.lp-value-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.lp-value-item p { font-size: 0.92rem; line-height: 1.7; }

/* Strategy CTA */
.strategy-cta {
  background: var(--navy-mid);
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid var(--border-subtle);
}
.strategy-cta h2 { margin-bottom: 18px; }
.strategy-cta p { max-width: 600px; margin: 0 auto 32px; font-size: 1rem; }

/* ============================================================
   STRATEGY HERO VIDEO BACKGROUND
   ============================================================ */
.strategy-page-hero { overflow: hidden; }
.strategy-hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.strategy-hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.strategy-hero-video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,16,31,0.78) 0%, rgba(7,16,31,0.86) 50%, rgba(12,26,46,0.95) 100%);
}
.strategy-page-hero .container {
  position: relative;
  z-index: 1;
}

/* ============================================================
   STRATEGY SWITCHER (top-of-page pill nav)
   ============================================================ */
.strategy-switcher {
  background: var(--navy-mid);
  border-bottom: 1px solid var(--border-subtle);
  border-top: 1px solid var(--border-subtle);
}
.strategy-switcher-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.strategy-switcher-inner::-webkit-scrollbar { display: none; }
.strategy-switcher-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  padding: 18px 24px 18px 0;
  border-right: 1px solid var(--border-subtle);
  margin-right: 8px;
  white-space: nowrap;
  flex-shrink: 0;
}
.strategy-switcher-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 18px 22px;
  position: relative;
  white-space: nowrap;
  transition: color var(--transition);
}
.strategy-switcher-link:hover { color: var(--white); }
.strategy-switcher-link.active { color: var(--gold); }
.strategy-switcher-link.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 22px;
  right: 22px;
  height: 2px;
  background: var(--gold);
}
.strategy-switcher-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.72rem;
  color: var(--gold);
  margin-right: 8px;
  letter-spacing: 0.05em;
}

/* ============================================================
   STRATEGY PREV / NEXT FOOTER
   ============================================================ */
.strategy-prevnext {
  background: var(--navy-deep);
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0;
}
.strategy-prevnext .container {
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border-subtle);
}
.prevnext-card {
  background: var(--navy-mid);
  padding: 40px 36px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background var(--transition);
  position: relative;
  overflow: hidden;
}
.prevnext-card:hover { background: var(--navy-surface); }
.prevnext-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}
.prevnext-card.next::after { transform-origin: right; }
.prevnext-card:hover::after { transform: scaleX(1); }
.prevnext-direction {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.prevnext-card.next { text-align: right; }
.prevnext-card.next .prevnext-direction { justify-content: flex-end; }
.prevnext-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-top: 6px;
}
.prevnext-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-top: 4px;
}
.prevnext-tagline {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-top: 6px;
  max-width: 360px;
}
.prevnext-card.next .prevnext-tagline { margin-left: auto; }
.strategy-all-link {
  text-align: center;
  margin-top: 36px;
  padding: 0 20px;
}
.strategy-all-link a {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}
.strategy-all-link a:hover { color: var(--gold-light); }

/* Strategy responsive */
@media (max-width: 1024px) {
  .strategy-snapshot { grid-template-columns: repeat(2, 1fr); }
  .case-grid { grid-template-columns: 1fr; }
  .strategy-team-grid { grid-template-columns: 1fr; }
  .why-now-grid { gap: 40px; }
}
@media (max-width: 768px) {
  .strategy-page-hero { padding: 140px 0 70px; }
  .strategy-section { padding: 64px 0; }
  .strategy-snapshot { grid-template-columns: 1fr; }
  .why-now-grid { grid-template-columns: 1fr; gap: 32px; }
  .why-now-image { aspect-ratio: 16 / 10; }
  .lp-value { grid-template-columns: 1fr; gap: 24px; }
  /* Substrategy table — allow theme names to wrap on mobile so they stay readable */
  .substrategy-table th, .substrategy-table td { padding: 14px 14px; font-size: 0.88rem; }
  .substrategy-table th:first-child, .substrategy-table td:first-child { width: 38%; padding-right: 10px; }
  .substrategy-table .substrategy-name { white-space: normal; line-height: 1.25; font-size: 0.95rem; }
  .strategy-switcher-inner { padding: 0 20px; }
  .strategy-switcher-label { padding: 14px 16px 14px 0; font-size: 0.65rem; }
  .strategy-switcher-link { padding: 16px 14px; font-size: 0.72rem; }
  .strategy-prevnext .container { grid-template-columns: 1fr; padding: 0 20px; }
  .prevnext-card { padding: 32px 24px; }
  .prevnext-card.next { text-align: left; }
  .prevnext-card.next .prevnext-direction { justify-content: flex-start; }
  .prevnext-card.next .prevnext-tagline { margin-left: 0; }
  .prevnext-title { font-size: 1.5rem; }
}

/* ============================================================
   WAVE BACKGROUND DECORATION (subtle, on Strategies / Team / Foundation)
   ============================================================ */
#strategies,
#team,
#foundation {
  position: relative;
  overflow: hidden;
}
#strategies::before,
#team::before,
#foundation::before {
  content: '';
  position: absolute;
  pointer-events: none;
  background-image: url('assets/wave-icon.svg');
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.025;
  z-index: 0;
}
#strategies::before {
  top: 8%;
  right: -8%;
  width: 560px;
  height: 560px;
}
#team::before {
  top: 14%;
  left: -10%;
  width: 620px;
  height: 620px;
}
#foundation::before {
  bottom: -8%;
  right: -8%;
  width: 480px;
  height: 480px;
}
/* Make sure content sits above the wave */
#strategies > .container,
#team > .container,
#foundation > .container {
  position: relative;
  z-index: 1;
}

/* ============================================================
   WHY INVEST IN POINT BREAK PARTNERS (homepage summary)
   ============================================================ */
.why-invest {
  margin-top: 96px;
  padding-top: 80px;
  border-top: 1px solid var(--border-subtle);
}
.why-invest-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.why-invest-header .gold-line { margin: 0 auto 24px; }
.why-invest-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  font-weight: 500;
  color: var(--white);
  margin-top: 16px;
  line-height: 1.25;
}
.why-invest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border-subtle);
}
.why-invest-item {
  background: var(--navy-card);
  padding: 36px 32px;
}
.why-invest-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.why-invest-item p {
  font-size: 0.85rem;
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .why-invest-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .why-invest-grid { grid-template-columns: 1fr; }
  .why-invest { margin-top: 64px; padding-top: 56px; }
}

/* Model pillars responsive — 4 across down to 2 then 1 */
@media (max-width: 1024px) {
  .model-pillars--four { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .model-pillars--four { grid-template-columns: 1fr; }
}

/* ============================================================
   CULTURE — The 6 P's
   ============================================================ */
#culture {
  background: var(--navy-deep);
  border-top: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}
#culture::before {
  content: '';
  position: absolute;
  pointer-events: none;
  background-image: url('assets/wave-icon.svg');
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.025;
  top: 8%;
  left: -8%;
  width: 540px;
  height: 540px;
  z-index: 0;
}
#culture > .container { position: relative; z-index: 1; }

.culture-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 72px;
}
.culture-header .gold-line { margin: 0 auto 32px; }
.culture-header h2 { margin-bottom: 24px; }
.culture-header p {
  font-size: 1.05rem;
  line-height: 1.7;
}

.culture-graphic {
  max-width: 780px;
  margin: -16px auto 80px;
  padding: 0 20px;
}
.culture-graphic svg {
  width: 100%;
  height: auto;
  display: block;
}

.culture-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border-subtle);
  margin-bottom: 80px;
}
.culture-card {
  background: var(--navy-card);
  padding: 48px 36px;
  text-align: left;
  position: relative;
  transition: background var(--transition);
}
.culture-card:hover { background: var(--navy-surface); }
.culture-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.culture-card:hover::before { transform: scaleX(1); }

.culture-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
}
.culture-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.culture-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.005em;
}
.culture-card p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.culture-quote {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}
.culture-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 500;
  font-style: italic;
  color: var(--gold);
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .culture-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .culture-grid { grid-template-columns: 1fr; }
  .culture-header { margin-bottom: 56px; }
  .culture-card { padding: 36px 28px; }
  .culture-graphic { margin: 0 auto 56px; padding: 0 8px; }
}

/* ============================================================
   MISSION — stack at tablet portrait (keeps iPad landscape 2-col)
   ============================================================ */
@media (max-width: 900px) {
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}

/* ============================================================
   RESEARCH PAGE
   ============================================================ */
.research-page-hero {
  padding: 200px 0 70px;
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  border-bottom: 1px solid var(--border-subtle);
}
.research-page-hero .container { max-width: 1100px; }
.research-page-hero .label { color: var(--gold); font-size: 0.95rem; letter-spacing: 0.14em; display: inline-block; }
.research-page-hero h1 { margin: 18px 0 22px; }
.research-page-hero .research-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text-secondary);
  max-width: 760px;
  line-height: 1.5;
}

/* Featured slot (single, large) */
.research-featured {
  padding: 80px 0;
  background: var(--navy-mid);
  border-bottom: 1px solid var(--border-subtle);
}
.research-featured .container { max-width: 1100px; }
.research-featured-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}
.research-featured-content .gold-line { margin-bottom: 20px; }
.research-featured-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(201,169,110,0.12);
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 16px;
  margin-bottom: 18px;
}
.research-featured-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  line-height: 1.15;
  margin: 0 0 18px;
  color: var(--white);
}
.research-featured-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0 0 28px;
  max-width: 520px;
}
.research-featured-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: not-allowed;
}
/* Book-styled Featured cover.
   .research-featured-cover provides 3D perspective.
   .research-featured-book is the book itself: spine on the left,
   page edges on the right, depth shadow underneath, rotateY on hover. */
.research-featured-cover {
  aspect-ratio: 4 / 5;
  position: relative;
  perspective: 1800px;
  perspective-origin: 50% 60%;
  padding: 8px 0 14px;
}
.research-featured-book {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--navy-card);
  border-radius: 3px 6px 6px 3px;
  overflow: hidden;
  transform-origin: left center;
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1),
              box-shadow 0.7s ease;
  box-shadow:
    /* spine highlight (left edge) */
    inset 14px 0 24px rgba(0,0,0,0.45),
    inset 2px 0 0 rgba(201,169,110,0.55),
    /* page block hint along bottom + right */
    inset -3px 0 0 rgba(255,255,255,0.05),
    inset 0 -3px 0 rgba(255,255,255,0.04),
    /* drop shadow grounding the book */
    0 24px 48px -12px rgba(0,0,0,0.55),
    0 14px 26px -10px rgba(0,0,0,0.45);
}
.research-featured-book img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}
/* Spine band — the gold-traced left edge of a hardcover */
.research-featured-book::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 18px;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.18) 60%, transparent 100%),
    linear-gradient(180deg, rgba(201,169,110,0.18), rgba(201,169,110,0.0) 30%, rgba(201,169,110,0.0) 70%, rgba(201,169,110,0.18));
  border-right: 1px solid rgba(0,0,0,0.4);
  pointer-events: none;
  z-index: 2;
}
/* Page-edge hint — thin vertical lines on the right edge */
.research-featured-book::after {
  content: '';
  position: absolute;
  top: 6px;
  bottom: 6px;
  right: 0;
  width: 5px;
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(255,255,255,0.06) 0px,
      rgba(255,255,255,0.06) 1px,
      transparent 1px,
      transparent 3px
    );
  border-left: 1px solid rgba(255,255,255,0.04);
  pointer-events: none;
  z-index: 2;
}
/* Image-darkening gradient so the overlay text stays legible */
.research-featured-book .research-featured-book-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,16,31,0.18) 0%, transparent 35%, rgba(7,16,31,0.6) 100%);
  pointer-events: none;
  z-index: 1;
}
.research-featured-cover-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px 32px 30px 44px;     /* extra left padding to clear the spine */
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 3;
}
.research-featured-cover-tag {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.research-featured-cover-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  line-height: 1.2;
  color: var(--white);
}
.research-featured-cover-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}
/* Hover — book lifts toward viewer with a slight Y-rotation,
   image gently zooms, shadow deepens. Reads like "pick this up". */
@media (hover: hover) {
  .research-featured-cover:hover .research-featured-book {
    transform: rotateY(-12deg) translateZ(8px);
    box-shadow:
      inset 14px 0 24px rgba(0,0,0,0.45),
      inset 2px 0 0 rgba(223,192,138,0.85),
      inset -3px 0 0 rgba(255,255,255,0.05),
      inset 0 -3px 0 rgba(255,255,255,0.04),
      0 36px 64px -16px rgba(0,0,0,0.65),
      0 22px 36px -14px rgba(0,0,0,0.55);
  }
  .research-featured-cover:hover .research-featured-book img {
    transform: scale(1.04);
  }
}
/* Reduce motion preference */
@media (prefers-reduced-motion: reduce) {
  .research-featured-book,
  .research-featured-book img { transition: none; }
  .research-featured-cover:hover .research-featured-book {
    transform: none;
  }
}

/* Programme grid (3-up) */
.research-programme {
  padding: 80px 0;
}
.research-programme .container { max-width: 1180px; }
.research-programme-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.research-programme-header .gold-line { margin: 0 auto 18px; }
.research-programme-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  margin-bottom: 14px;
  color: var(--white);
}
.research-programme-header p { color: var(--text-secondary); font-size: 1rem; line-height: 1.7; }

.research-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.research-card {
  background: var(--navy-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.research-card[data-status="live"] { cursor: pointer; }
.research-card[data-status="live"]:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.research-card[data-status="coming-soon"] { opacity: 0.96; }
.research-card-cover {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--navy-card);
  position: relative;
}
.research-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.research-card[data-status="live"]:hover .research-card-cover img { transform: scale(1.04); }
.research-card-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(7,16,31,0.45) 100%);
  pointer-events: none;
}
.research-card-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.research-card-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  padding: 4px 10px;
  background: rgba(201,169,110,0.1);
  border: 1px solid rgba(201,169,110,0.45);
  border-radius: 999px;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.research-card-tag {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: -8px;
}
.research-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  line-height: 1.22;
  color: var(--white);
  margin: 0;
}
.research-card-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0;
}
.research-card-foot {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Notify-me band */
.research-notify {
  padding: 70px 0;
  background: var(--navy-surface);
  border-top: 1px solid var(--border-subtle);
}
.research-notify .container { max-width: 880px; text-align: center; }
.research-notify .gold-line { margin: 0 auto 22px; }
.research-notify h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 16px;
}
.research-notify p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 32px;
}

/* Homepage Research teaser */
.research-teaser {
  padding: 110px 0;
  background: var(--navy-mid);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.research-teaser .container { max-width: 1100px; }
.research-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.research-teaser-content .gold-line { margin-bottom: 20px; }
.research-teaser-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  line-height: 1.18;
  color: var(--white);
  margin: 14px 0 18px;
}
.research-teaser-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0 0 28px;
  max-width: 520px;
}
.research-teaser-pieces {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.research-teaser-piece {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: var(--navy-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  transition: border-color var(--transition);
}
.research-teaser-piece:hover { border-color: var(--gold); }
.research-teaser-piece-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--white);
}
.research-teaser-piece-meta {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Research responsive */
@media (max-width: 1024px) {
  .research-grid { grid-template-columns: repeat(2, 1fr); }
  .research-featured-grid { gap: 40px; }
  .research-teaser-grid { gap: 40px; }
}
@media (max-width: 768px) {
  /* v3: tightened across the research surface */
  .research-page-hero { padding: 120px 0 44px; }
  .research-page-hero h1 { font-size: 1.85rem; line-height: 1.18; }
  .research-page-hero .research-tagline { font-size: 1rem; }
  .research-featured { padding: 44px 0; }
  .research-featured-grid { grid-template-columns: 1fr; gap: 28px; }
  .research-featured-content h2 { font-size: 1.7rem; }
  .research-featured-cover { aspect-ratio: 4 / 5; max-height: 420px; }
  .research-featured-cover-overlay { padding: 20px 20px 22px; }
  .research-featured-cover-title { font-size: 1.3rem; }
  .research-programme { padding: 44px 0; }
  .research-programme-header { margin-bottom: 28px; }
  .research-programme-header h2 { font-size: 1.55rem; }
  .research-grid { grid-template-columns: 1fr; gap: 14px; }
  .research-card-cover { aspect-ratio: 16 / 10; }
  .research-card-body { padding: 18px 20px 22px; gap: 10px; }
  .research-card-title { font-size: 1.2rem; }
  .research-notify { padding: 44px 0; }
  .research-notify h2 { font-size: 1.55rem; }
  .research-teaser { padding: 48px 0; }
  .research-teaser-grid { grid-template-columns: 1fr; gap: 24px; }
  .research-teaser-content h2 { font-size: 1.55rem; }
  /* Stack title + meta on small screens so neither truncates */
  .research-teaser-piece {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 18px 20px;
  }
  .research-teaser-piece-title { font-size: 1.05rem; line-height: 1.3; }
}
@media (max-width: 480px) {
  .research-page-hero h1 { font-size: 1.7rem; }
  .research-featured-content h2 { font-size: 1.65rem; }
  .research-card-title { font-size: 1.2rem; }
  .research-card-desc { font-size: 0.86rem; }
  .research-featured-cover-title { font-size: 1.25rem; }
}

/* ============================================================
   INBOUND-LEAD MODAL FORM
   ============================================================ */
.pbp-form-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.pbp-form-modal.open { display: flex; }
.pbp-form-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7,16,31,0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: pbpFade 0.25s ease;
}
.pbp-form-dialog {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 36px 36px 30px;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 30px 60px -16px rgba(0,0,0,0.7);
  animation: pbpRise 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.pbp-form-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  background: transparent;
  color: var(--text-secondary);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
}
.pbp-form-close:hover { border-color: var(--gold); color: var(--white); }
.pbp-form-head { margin-bottom: 24px; }
.pbp-form-head .gold-line { margin-bottom: 14px; }
.pbp-form-head h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  margin: 10px 0 10px;
  color: var(--white);
}
.pbp-form-head p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}
.pbp-form { display: flex; flex-direction: column; gap: 14px; }
.pbp-field { display: flex; flex-direction: column; gap: 6px; }
.pbp-field > span {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.pbp-field > span span[aria-hidden] { color: var(--gold); margin-left: 3px; }
.pbp-field > span em { font-style: normal; opacity: 0.75; text-transform: none; letter-spacing: 0; }
.pbp-field input,
.pbp-field textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  padding: 12px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-primary);
  outline: none;
  transition: border-color var(--transition), background var(--transition);
}
.pbp-field input:focus,
.pbp-field textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.06);
}
.pbp-field textarea { resize: vertical; min-height: 70px; }
.pbp-form-submit {
  margin-top: 8px;
  justify-content: center;
}
.pbp-form-submit:disabled { opacity: 0.7; cursor: progress; }
.pbp-form-status {
  font-size: 0.85rem;
  margin-top: 4px;
  min-height: 1.2em;
  text-align: center;
}
.pbp-form-status.error { color: #e57373; }
.pbp-form-status.success { color: #6ec48f; }

@keyframes pbpFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes pbpRise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
  .pbp-form-dialog { padding: 28px 22px 24px; max-height: 96vh; }
  .pbp-form-head h3 { font-size: 1.45rem; }
}

/* ============================================================
   v3 — STICKY CHAPTER NAV (mobile / tablet portrait)
   Hidden on desktop. Appears below the fixed main nav once the
   user scrolls past the hero. Horizontal-scrolling pills with
   scroll-spy active state.
   ============================================================ */
.chapter-nav { display: none; }

@media (max-width: 768px) {
  .chapter-nav {
    display: block;
    position: sticky;
    /* Tracks the live height of the fixed main nav (--main-nav-h is set
       by main.js on scroll/resize). Falls back to 80px (unscrolled height)
       so the chapter pills never sit behind the logo bar. */
    top: var(--main-nav-h, 80px);
    z-index: 90;
    background: rgba(7, 16, 31, 0.96);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .chapter-nav::-webkit-scrollbar { display: none; }

  .chapter-nav-inner {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    white-space: nowrap;
  }
  .chapter-nav-link {
    flex-shrink: 0;
    padding: 9px 14px;
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition), background var(--transition), border-color var(--transition);
    border: 1px solid transparent;
  }
  .chapter-nav-link:hover { color: var(--text-primary); }
  .chapter-nav-link.active {
    color: var(--gold);
    background: rgba(201, 169, 110, 0.1);
    border-color: rgba(201, 169, 110, 0.45);
  }

  /* Subtle gradient mask suggesting more pills off-screen right */
  .chapter-nav::after {
    content: '';
    position: sticky;
    right: 0;
    width: 40px;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(7,16,31,0.96));
    pointer-events: none;
  }

  /* Anchor jumps land below the fixed main nav + chapter nav stack */
  section[id] { scroll-margin-top: calc(var(--main-nav-h, 80px) + 56px); }
}
