/* ================================================================
   CAL6IX — SHARED STYLESHEET
   Single accent: #0e8a6d
   Font: Inter only
   Layout: Asymmetric/Swiss
   ================================================================ */

:root {
  --ink:      #0a0a0a;
  --ink-2:    #333333;
  --ink-3:    #555555;
  --ink-4:    #888888;
  --ink-5:    #aaaaaa;
  --border:   #e0e0e0;
  --surface:  #f5f5f5;
  --white:    #ffffff;
  --accent:   #1a365d;
  --accent-dark: #142a4a;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--ink-2);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}


/* ================================================================
   NAV
   ================================================================ */

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-mark {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-mark .six { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links > a,
.nav-dropdown > a {
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-4);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links > a:hover,
.nav-dropdown > a:hover { color: var(--ink); }
.nav-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--white) !important;
  background: var(--accent);
  padding: 8px 22px;
  border-radius: 6px;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--accent-dark); }

/* Nav Dropdowns — shared */
.nav-dropdown {
  position: static;
  display: flex;
  align-items: center;
  height: 64px;
}
.nav-dropdown > a {
  cursor: pointer;
}
/* Insights dropdown needs relative positioning for its menu */
.nav-dropdown--rel {
  position: relative;
}

/* Mega Menu (Divisions) */
.nav-mega {
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
  z-index: 200;
}
.nav-dropdown:hover .nav-mega {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  max-width: 1400px;
  margin: 0 auto;
}
.nav-mega-card {
  display: block;
  text-decoration: none;
  background: var(--white);
  padding: 32px 28px;
  transition: background 0.15s;
  cursor: pointer;
}
.nav-mega-card:hover {
  background: var(--surface);
}
.nav-mega-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.nav-mega-verb {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 14px;
}
.nav-mega-card:hover .nav-mega-verb { color: var(--accent); }
.nav-mega-audience {
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-2);
  line-height: 1.5;
  margin-bottom: 8px;
}
.nav-mega-mission {
  font-size: 12px;
  font-weight: 300;
  color: var(--ink-4);
  line-height: 1.6;
}
.nav-mega-arrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  margin-top: 14px;
}

/* Insights Mega Menu */
.nav-mega--insights {
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
  z-index: 200;
}
.nav-dropdown:hover .nav-mega--insights {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-mega--insights .nav-mega-grid {
  grid-template-columns: repeat(3, 1fr);
}
.nav-insight-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: var(--white);
  padding: 28px 24px;
  transition: background 0.15s;
  cursor: pointer;
}
.nav-insight-card:hover {
  background: var(--surface);
}
.nav-insight-industry {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.nav-insight-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.nav-insight-card:hover .nav-insight-title { color: var(--accent); }
.nav-insight-stat {
  font-size: 12px;
  font-weight: 300;
  color: var(--ink-4);
  line-height: 1.45;
  flex-grow: 1;
}
.nav-insight-arrow {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  margin-top: 14px;
}

/* Legacy simple dropdown (unused, kept for fallback) */
.nav-dropdown-menu {
  position: absolute;
  top: 64px;
  left: 50%;
  min-width: 220px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(4px);
  transition: opacity 0.15s ease, transform 0.15s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 8px 24px;
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-3) !important;
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover {
  color: var(--ink) !important;
  background: var(--surface);
}


/* ================================================================
   LAYOUT SPINE
   ================================================================ */

.frame {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}
.frame--inset-left {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px 0 140px;
}
.frame--inset-right {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 140px 0 48px;
}


/* ================================================================
   HERO
   ================================================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 64px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.78);
  z-index: 1;
}
.hero > .frame {
  position: relative;
  z-index: 2;
}
.hero-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 120px;
  width: 100%;
}
.hero-left {
  flex: 0 0 auto;
  max-width: 620px;
}
.hero-right {
  flex: 0 1 380px;
  padding-bottom: 8px;
}
.hero-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeIn 0.8s ease 0.2s forwards;
}
.hero-h1 {
  font-size: clamp(52px, 7.5vw, 96px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.045em;
  color: var(--ink);
  opacity: 0;
  animation: fadeUp 0.9s ease 0.3s forwards;
}
.hero-sub {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink-3);
  opacity: 0;
  animation: fadeUp 0.9s ease 0.5s forwards;
}
.hero-sub strong {
  color: var(--ink);
  font-weight: 500;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }


/* ================================================================
   SECTIONS
   ================================================================ */

.section {
  padding: 140px 0;
  border-bottom: 1px solid var(--border);
}
.section-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 40px;
}
.section-heading {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--ink);
  max-width: 700px;
  margin-bottom: 24px;
}


/* ================================================================
   MISSION EXPANDED
   ================================================================ */

.mission-heading {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 64px;
  max-width: 900px;
}
.mission-body {
  display: flex;
  justify-content: flex-end;
}
.mission-body-inner {
  max-width: 520px;
}
.mission-text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--ink-3);
  margin-bottom: 24px;
}
.mission-body--with-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  justify-content: unset;
}
.mission-body--with-mosaic .mission-body-inner {
  max-width: 100%;
}
.mission-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  margin-top: 32px;
}
.mission-mosaic-cell {
  overflow: hidden;
  position: relative;
  aspect-ratio: 3 / 2;
}
.mission-mosaic-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(30%);
  transition: filter 0.5s ease, transform 0.5s ease;
}
.mission-mosaic-cell:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* override default reveal on mosaic — cells handle their own animation */
.mission-mosaic.reveal {
  opacity: 1;
  transform: none;
}

/* staggered reveal */
.mission-mosaic.visible .mission-mosaic-cell {
  animation: mosaic-in 0.6s ease both;
}
.mission-mosaic.visible .mission-mosaic-cell:nth-child(1) { animation-delay: 0s; }
.mission-mosaic.visible .mission-mosaic-cell:nth-child(2) { animation-delay: 0.12s; }
.mission-mosaic.visible .mission-mosaic-cell:nth-child(3) { animation-delay: 0.24s; }
.mission-mosaic.visible .mission-mosaic-cell:nth-child(4) { animation-delay: 0.36s; }

.mission-mosaic .mission-mosaic-cell {
  opacity: 0;
  transform: translateY(20px);
}

@keyframes mosaic-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .mission-body--with-mosaic {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .mission-mosaic {
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  .mission-mosaic {
    grid-template-columns: 1fr 1fr;
  }
}

.mission-anchor {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--ink);
  margin-top: 40px;
}


/* ================================================================
   DIVISIONS (3×2 card grid)
   ================================================================ */

.divisions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 64px;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.d-card {
  background: var(--white);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  text-decoration: none;
  transition: background 0.2s;
}
.d-card:hover { background: var(--surface); }
.d-name {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-4);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.d-verb {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 20px;
}
.d-audience {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  line-height: 1.55;
  margin-bottom: 12px;
}
.d-mission {
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-4);
  line-height: 1.65;
  flex-grow: 1;
}
.d-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  margin-top: 24px;
  transition: color 0.2s;
}
.d-card:hover .d-link { color: var(--accent-dark); }


/* ================================================================
   PROOF (staggered layout)
   ================================================================ */

.proof-layout {
  margin-top: 64px;
}
.proof-full {
  padding: 56px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.proof-full-inner {
  max-width: 800px;
}
.proof-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.proof-pair-item {
  padding: 56px 48px 56px 0;
  border-bottom: 1px solid var(--border);
}
.proof-pair-item:last-child {
  padding: 56px 0 56px 48px;
  border-left: 1px solid var(--border);
}
.proof-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.proof-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.proof-body {
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-4);
  line-height: 1.7;
  max-width: 480px;
}
.proof-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 24px;
}
.proof-city {
  font-size: 12px;
  font-weight: 300;
  color: var(--ink-4);
  letter-spacing: 0.01em;
  line-height: 1;
  padding: 10px 0;
  border-top: 1px solid var(--border);
  flex: 0 0 25%;
}
.proof-city strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 3px;
}

@media (max-width: 768px) {
  .proof-city { flex: 0 0 50%; }
}


/* ================================================================
   PHILOSOPHY (dark section)
   ================================================================ */

.philosophy {
  padding: 140px 0;
  background: var(--ink);
  color: var(--white);
  position: relative;
}
.philosophy--photo {
  background: url('../philosophy.jpg') center / cover no-repeat;
}
.philosophy--photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.88);
}
.philosophy--photo > .frame {
  position: relative;
  z-index: 1;
}
.philosophy .section-tag { color: rgba(255,255,255,0.6); }
.philosophy-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.philosophy-heading {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: var(--white);
  max-width: 700px;
  margin-bottom: 56px;
}
.philosophy-body {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255,255,255,0.45);
  max-width: 620px;
  margin-bottom: 24px;
}
.philosophy-body strong {
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}
.philosophy-close {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  max-width: 620px;
  margin-top: 48px;
  line-height: 1.4;
  letter-spacing: -0.02em;
}


/* ================================================================
   STATS
   ================================================================ */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  margin-top: 80px;
  width: 100%;
  overflow: hidden;
}
.stat {
  background: var(--ink);
  padding: 40px 32px;
  text-align: left;
}
.stat-num {
  font-size: 40px;
  font-weight: 800;
  color: rgba(255,255,255,0.6);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 10px;
}
.stat-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  line-height: 1.55;
}


/* ================================================================
   FOOTER CTA
   ================================================================ */

.f-cta {
  padding: 120px 0;
  border-bottom: 1px solid var(--border);
}
.f-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.f-cta-heading {
  font-size: 36px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
}
.f-cta-btn {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  background: var(--accent);
  padding: 14px 36px;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
}
.f-cta-btn:hover { background: var(--accent-dark); transform: translateY(-1px); }


/* ================================================================
   FOOTER
   ================================================================ */

.footer {
  padding: 72px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer-mark {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}
.footer-mark .six { color: var(--accent); }
.footer-tagline {
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-4);
  line-height: 1.6;
}
.footer-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-5);
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-3);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.footer-copy { font-size: 13px; color: var(--ink-5); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  font-size: 13px;
  color: var(--ink-5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--ink-3); }


/* ================================================================
   PAGE HERO (text-only hero for inner pages)
   ================================================================ */

.page-hero {
  padding: 200px 0 80px;
  border-bottom: 1px solid var(--border);
}
.page-hero-heading {
  margin-bottom: 16px;
}
.page-hero-sub {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink-3);
  max-width: 600px;
}


/* ================================================================
   DIVISION PAGE HERO (with background image)
   ================================================================ */

.page-hero--photo {
  position: relative;
  overflow: hidden;
}
.page-hero--photo .page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero--photo .page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero--photo .page-hero-bg img.obj-top {
  object-position: center 32%;
}
.page-hero--photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.65);
  z-index: 1;
}
.page-hero--photo > .frame {
  position: relative;
  z-index: 2;
}
.page-hero--photo .section-tag {
  color: rgba(255,255,255,0.6);
}
.page-hero--photo .page-hero-heading {
  color: var(--white);
}
.page-hero--photo .page-hero-sub {
  color: rgba(255,255,255,0.7);
}


/* ================================================================
   INSIGHT HERO IMAGE
   ================================================================ */

.insight-hero-image {
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.insight-hero-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  filter: grayscale(20%);
}

@media (max-width: 768px) {
  .insight-hero-image img {
    height: 240px;
  }
}


/* ================================================================
   GLOBAL PRESENCE (dark background with map)
   ================================================================ */

/* ================================================================
   HEADQUARTERS (philosophy page)
   ================================================================ */

.hq-section {
  position: relative;
  overflow: hidden;
}
.hq-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hq-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hq-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.65);
  z-index: 1;
}
.hq-section > .frame {
  position: relative;
  z-index: 2;
}
.hq-section .section-tag {
  color: rgba(255,255,255,0.6);
}
.hq-section .section-heading {
  color: var(--white);
}
.hq-section .mission-text {
  color: rgba(255,255,255,0.7);
}


.global-presence {
  position: relative;
  background: var(--ink);
  color: var(--white);
  padding: 120px 0;
}
.global-presence::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/world map minimalist dark, global offices network.jpg') center / cover no-repeat;
  opacity: 0.25;
}
.global-presence > .frame {
  position: relative;
  z-index: 1;
}
.global-presence .section-tag {
  color: rgba(255,255,255,0.6);
}
.global-presence .section-heading {
  color: var(--white);
}
.global-presence .proof-city {
  border-top-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
}
.global-presence .proof-city strong {
  color: var(--white);
}


/* ================================================================
   TEAM GRID (about page — leadership)
   ================================================================ */

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 64px;
}
.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.team-photo {
  width: 33%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 24px;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-header {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}
.team-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.team-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.01em;
}
.team-bio {
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-3);
  line-height: 1.75;
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .team-photo {
    max-width: 280px;
  }
  .team-photo {
    width: 120px;
    height: 120px;
  }
}


/* ================================================================
   CONTACT FORM
   ================================================================ */

.contact-form {
  max-width: 600px;
}
.form-group {
  margin-bottom: 40px;
}
.form-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 12px;
}
.form-required {
  color: var(--accent);
}
.form-input {
  display: block;
  width: 100%;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-input:focus {
  border-bottom-color: var(--accent);
}
.form-input::placeholder {
  color: var(--ink-5);
}
.form-select {
  cursor: pointer;
  color: var(--ink-3);
}
.form-select option {
  color: var(--ink);
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.7;
}
.form-submit {
  border: none;
  cursor: pointer;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  margin-top: 8px;
}


/* ================================================================
   LEGAL PAGES (privacy, terms)
   ================================================================ */

.legal-date {
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-4);
}
.legal-body {
  padding-top: 80px;
}
.legal-prose {
  max-width: 640px;
}
.legal-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.legal-link:hover {
  color: var(--accent-dark);
}
.mission-body--left {
  justify-content: flex-start;
}


/* ================================================================
   DIVISION PAGES
   ================================================================ */

.div-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 64px;
}
.div-intro-main {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--ink-3);
}
.div-intro-main p { margin-bottom: 24px; }
.div-intro-side {
  padding-top: 8px;
}
.div-detail-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.div-detail-text {
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-3);
  line-height: 1.75;
  margin-bottom: 40px;
}
.div-activities {
  margin-top: 64px;
}
.div-activity {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  align-items: baseline;
}
.div-activity:last-child {
  border-bottom: 1px solid var(--border);
}
.div-activity-name {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.div-activity-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--ink-3);
  line-height: 1.75;
  max-width: 600px;
}
.div-highlight {
  background: var(--surface);
  padding: 64px;
  margin-top: 64px;
}
.div-highlight-heading {
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  line-height: 1.25;
}
.div-highlight-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--ink-3);
  line-height: 1.8;
  max-width: 640px;
}
.div-highlight-body p { margin-bottom: 16px; }
.div-initiatives {
  margin-top: 64px;
}
.div-initiative {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}
.div-initiative:last-child {
  border-bottom: 1px solid var(--border);
}
.div-initiative-name {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.div-initiative-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--ink-3);
  line-height: 1.75;
  max-width: 640px;
}
.div-maturity {
  margin-top: 64px;
  counter-reset: maturity;
}
.div-maturity-stage {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  align-items: baseline;
}
.div-maturity-stage:last-child {
  border-bottom: 1px solid var(--border);
}
.div-stage-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
}
.div-stage-name {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.div-stage-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--ink-3);
  line-height: 1.75;
  max-width: 600px;
}

@media (max-width: 1024px) {
  .div-intro { grid-template-columns: 1fr; gap: 48px; }
  .div-activity { grid-template-columns: 1fr; gap: 12px; }
  .div-maturity-stage { grid-template-columns: 40px 1fr; gap: 24px; }
  .div-highlight { padding: 48px 32px; }
}
@media (max-width: 768px) {
  .div-highlight { padding: 32px 20px; }
}


/* ================================================================
   INSIGHTS HUB
   ================================================================ */

.insights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--border);
  margin-top: 64px;
}
.insight-card {
  background: var(--white);
  padding: 48px 40px;
  text-decoration: none;
  transition: background 0.2s;
  display: flex;
  flex-direction: column;
}
.insight-card:hover {
  background: var(--surface);
}
.insight-card-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.insight-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.insight-card-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-3);
  line-height: 1.7;
  margin-bottom: 24px;
  flex: 1;
}
.insight-card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
}

@media (max-width: 1024px) {
  .insights-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .insights-grid { grid-template-columns: 1fr; }
  .insight-card { padding: 32px 20px; }
}


/* ================================================================
   INSIGHT ARTICLES
   ================================================================ */

.article-body {
  max-width: 720px;
}
.article-body p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--ink-3);
  margin-bottom: 24px;
}
.article-body p strong {
  color: var(--ink);
  font-weight: 500;
}
.article-body p:last-child {
  margin-bottom: 0;
}
.article-lead {
  font-size: 18px !important;
  font-weight: 400 !important;
  color: var(--ink-2) !important;
  line-height: 1.75 !important;
  margin-bottom: 40px !important;
}
.article-h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-top: 56px;
  margin-bottom: 20px;
}
.article-h2:first-of-type {
  margin-top: 0;
}
.article-stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  margin: 48px 0;
}
.article-stat {
  background: var(--white);
  padding: 32px 24px;
}
.article-stat-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.article-stat-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--ink-4);
  line-height: 1.55;
}
.article-closing {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--ink);
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

@media (max-width: 768px) {
  .article-stat-row { grid-template-columns: 1fr 1fr; }
  .article-body { max-width: 100%; }
}


/* ================================================================
   ARTICLE PERSONAS
   ================================================================ */

.personas-section {
  padding: 0;
  border-bottom: none;
}
.personas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.persona {
  background: var(--white);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
}
.persona-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.persona-role {
  font-size: 12px;
  font-weight: 400;
  color: var(--ink-4);
  line-height: 1.5;
  margin-bottom: 24px;
}
.persona-day {
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-3);
  line-height: 1.75;
  flex-grow: 1;
  margin-bottom: 28px;
}
.persona-quote {
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  color: var(--ink-2);
  line-height: 1.65;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

@media (max-width: 1024px) {
  .personas-grid { grid-template-columns: 1fr; }
}


/* ================================================================
   SCROLL REVEAL
   ================================================================ */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ================================================================
   RESPONSIVE
   ================================================================ */

@media (max-width: 1024px) {
  .frame, .frame--inset-left, .frame--inset-right {
    padding: 0 32px;
  }
  .nav { padding: 0 32px; }
  .hero-inner {
    flex-direction: column;
    gap: 48px;
    align-items: flex-start;
  }
  .hero-right { flex: 0 0 auto; max-width: 520px; }
  .divisions-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .page-hero { padding: 160px 0 64px; }
}

@media (max-width: 768px) {
  .frame, .frame--inset-left, .frame--inset-right {
    padding: 0 20px;
  }
  .nav { padding: 0 20px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .nav-dropdown { display: none; }
  .nav-mega { padding: 0 20px; }
  .nav-mega-grid { grid-template-columns: 1fr; }
  .section { padding: 80px 0; }
  .philosophy { padding: 80px 0; }
  .hero { min-height: 85vh; }
  .hero-inner {
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
  }
  .hero-right { max-width: 100%; }
  .mission-body { justify-content: flex-start; }
  .mission-body-inner { max-width: 100%; }
  .divisions-grid { grid-template-columns: 1fr; }
  .d-card { min-height: auto; padding: 32px 24px; }
  .proof-pair { grid-template-columns: 1fr; }
  .proof-pair-item,
  .proof-pair-item:last-child {
    padding: 40px 0;
    border-left: none;
  }
  .philosophy-inner {
    align-items: flex-start;
    text-align: left;
  }
  .stats-grid { grid-template-columns: 1fr; }
  .f-cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 28px;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .page-hero { padding: 120px 0 48px; }
  .team-grid { gap: 48px; }
  .contact-form { max-width: 100%; }
}
