/* ===== DOSSIER — MATCHES MAIN SITE AESTHETIC ===== */
/* Black & white institutional. Syncopate + Inter. Clean, minimal, premium. */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #F5F5F0;
  color: #1A1A1A;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}

@media (hover: none) {
  body { cursor: auto; }
  .custom-cursor { display: none !important; }
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; cursor: none; }

/* ===== CUSTOM CURSOR ===== */
.custom-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 1px solid #1A1A1A;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              height 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease;
  will-change: transform;
}
.custom-cursor.hovering {
  width: 48px; height: 48px;
  border-color: rgba(255,255,255,0.5);
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background-color: transparent;
  backdrop-filter: none;
  transition: background-color 0.5s ease, backdrop-filter 0.5s ease;
}
.nav.scrolled {
  background-color: rgba(245, 245, 240, 0.95);
  backdrop-filter: blur(12px);
}
.nav__brand {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #1A1A1A;
  transition: color 0.5s ease;
}
.nav__links {
  display: flex;
  gap: 32px;
  align-items: center;
  list-style: none;
}
.nav__links a {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #1A1A1A;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.nav__links a:hover { opacity: 1; }

/* ===== TYPOGRAPHY ===== */
.eyebrow {
  font-family: 'Syncopate', sans-serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8C7B6B;
  margin-bottom: 24px;
}
.heading {
  font-family: 'Syncopate', sans-serif;
  font-size: clamp(15px, 2.2vw, 34px);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.35;
  color: #1A1A1A;
  margin-bottom: 40px;
  text-transform: uppercase;
  word-wrap: break-word;
}
.heading--light { color: #F5F5F0; }
.heading--center { text-align: center; }

.body-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.6;
  color: #4A4A4A;
  max-width: 700px;
  margin-bottom: 24px;
}

/* ===== DOSSIER HEADER ===== */
.dossier-header {
  text-align: center;
  padding: 16vh 40px 10vh;
  max-width: 900px;
  margin: 0 auto;
}
.dossier-title {
  font-family: 'Syncopate', sans-serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #8C7B6B;
  margin-bottom: 20px;
}
.dossier-subtitle {
  font-family: 'Syncopate', sans-serif;
  font-size: clamp(22px, 3.2vw, 44px);
  font-weight: 700;
  color: #1A1A1A;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  line-height: 1.2;
}
.dossier-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #4A4A4A;
  line-height: 1.6;
  margin-bottom: 32px;
}
.dossier-meta {
  display: flex;
  justify-content: center;
  gap: 40px;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: #8C7B6B;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  flex-wrap: wrap;
}

/* ===== NAV TABS ===== */
.nav-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 8vh;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(140, 123, 107, 0.2);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px;
}
.nav-tab {
  padding: 16px 24px;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: #8C7B6B;
  font-family: 'Syncopate', sans-serif;
  font-size: 9px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: none;
  transition: all 0.35s ease;
  position: relative;
}
.nav-tab:hover {
  color: #1A1A1A;
}
.nav-tab.active {
  color: #1A1A1A;
  border-bottom-color: #1A1A1A;
}

/* ===== CONTENT SECTIONS ===== */
.content-section {
  display: none;
  animation: fadeIn 0.5s ease;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 16vh;
}
.content-section.active { display: block; }

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

/* ===== CARD GRID ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}
.card {
  background: #FFFFFF;
  border: 1px solid rgba(140, 123, 107, 0.15);
  overflow: hidden;
  position: relative;
  transition: all 0.35s ease;
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #8C7B6B, rgba(140,123,107,0.3), transparent);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  border-color: rgba(140, 123, 107, 0.3);
}
.card-header {
  padding: 28px 28px 20px;
  border-bottom: 1px solid rgba(140, 123, 107, 0.1);
}
.card-title {
  font-family: 'Syncopate', sans-serif;
  font-size: 9px;
  font-weight: 400;
  color: #8C7B6B;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
}
.card-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1A1A1A;
  line-height: 1.3;
}
.card-body {
  padding: 24px 28px;
}
.card-body p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: #4A4A4A;
  margin-bottom: 14px;
}
.card-body p:last-child { margin-bottom: 0; }
.card-body ul {
  margin: 14px 0;
  padding-left: 18px;
}
.card-body li {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: #4A4A4A;
  margin-bottom: 8px;
}

/* ===== INTEL SECTIONS ===== */
.intel-section { margin-bottom: 20px; }
.intel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  background: #FFFFFF;
  border: 1px solid rgba(140, 123, 107, 0.15);
  cursor: none;
  transition: all 0.3s ease;
}
.intel-header:hover {
  background: rgba(140, 123, 107, 0.04);
  border-color: rgba(140, 123, 107, 0.3);
}
.intel-title {
  font-family: 'Syncopate', sans-serif;
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #1A1A1A;
}
.intel-toggle {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #8C7B6B;
  transition: transform 0.3s ease;
}
.intel-section.open .intel-toggle {
  transform: rotate(45deg);
}
.intel-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  background: #FFFFFF;
  border: 1px solid rgba(140, 123, 107, 0.15);
  border-top: none;
}
.intel-section.open .intel-content {
  max-height: 3000px;
}
.intel-inner { padding: 28px; }
.intel-inner p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: #4A4A4A;
  margin-bottom: 18px;
}

/* ===== HIGHLIGHTS ===== */
.book-highlight {
  background: rgba(140, 123, 107, 0.06);
  border-left: 3px solid #8C7B6B;
  padding: 16px 20px;
  margin: 16px 0;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: #4A4A4A;
  font-style: italic;
}
.book-highlight .book-title {
  font-style: normal;
  font-weight: 600;
  color: #1A1A1A;
}
.achievement-highlight {
  background: rgba(140, 123, 107, 0.06);
  border: 1px solid rgba(140, 123, 107, 0.15);
  padding: 16px 20px;
  margin: 16px 0;
}
.achievement-highlight p {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: #4A4A4A;
}
.achievement-highlight strong { font-weight: 600; color: #1A1A1A; }

/* ===== SUBJECT PROFILES ===== */
.subject-profile {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
.subject-sidebar {
  background: #FFFFFF;
  border: 1px solid rgba(140, 123, 107, 0.15);
  padding: 32px 24px;
  text-align: center;
  height: fit-content;
}
.subject-avatar {
  width: 140px;
  height: 140px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(140, 123, 107, 0.2);
  transition: all 0.35s ease;
}
.subject-avatar:hover {
  border-color: #8C7B6B;
  transform: scale(1.03);
}
.subject-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.35s ease;
}
.subject-avatar:hover img {
  filter: grayscale(0%);
}
.subject-name {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 6px;
}
.subject-role {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: #8C7B6B;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  line-height: 1.5;
}
.subject-meta {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: #4A4A4A;
  line-height: 1.8;
  text-align: left;
}
.subject-meta div {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(140, 123, 107, 0.1);
}
.subject-meta span:first-child {
  color: #8C7B6B;
  font-weight: 500;
}
.subject-main {
  background: #FFFFFF;
  border: 1px solid rgba(140, 123, 107, 0.15);
  overflow: hidden;
}

/* ===== CAPABILITY MATRIX ===== */
.matrix-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.matrix-table th {
  background: #1A1A1A;
  color: #F5F5F0;
  padding: 18px;
  text-align: left;
  font-family: 'Syncopate', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 9px;
  font-weight: 400;
}
.matrix-table td {
  padding: 18px;
  border-bottom: 1px solid rgba(140, 123, 107, 0.15);
  vertical-align: top;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #4A4A4A;
}
.matrix-table tr:nth-child(even) {
  background: rgba(140, 123, 107, 0.03);
}
.matrix-table tr:hover {
  background: rgba(140, 123, 107, 0.06);
}
.function-primary {
  font-weight: 600;
  color: #1A1A1A;
}

/* ===== RELATIONSHIP WEB ===== */
.relationship-web {
  position: relative;
  height: 500px;
  background: #0A0A0A;
  overflow: hidden;
  margin-bottom: 24px;
}
.web-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
}
.web-node {
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 8px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  cursor: none;
  transition: all 0.35s ease;
  z-index: 10;
  background-size: cover;
  background-position: center;
  border: 2px solid rgba(140, 123, 107, 0.4);
}
.web-node::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.05), rgba(0,0,0,0.5));
}
.web-node:hover {
  transform: scale(1.12);
  z-index: 20;
  border-color: #F5F5F0;
}
.web-node.core {
  width: 120px;
  height: 120px;
  border: 2px solid #F5F5F0;
  box-shadow: 0 0 30px rgba(245, 245, 240, 0.15);
}
.web-label {
  position: relative;
  z-index: 2;
  color: #fff;
  margin-bottom: 8px;
  font-size: 7px;
  max-width: 80px;
  line-height: 1.4;
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}

/* ===== STRATEGIC FOCUS ===== */
.focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}
.focus-card {
  background: #FFFFFF;
  border: 1px solid rgba(140, 123, 107, 0.15);
  padding: 32px 28px;
  position: relative;
  transition: all 0.35s ease;
}
.focus-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #8C7B6B, rgba(140,123,107,0.3), transparent);
}
.focus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  border-color: rgba(140, 123, 107, 0.3);
}
.focus-icon {
  font-size: 10px;
  color: #8C7B6B;
  margin-bottom: 16px;
  letter-spacing: 0.1em;
}
.focus-title {
  font-family: 'Syncopate', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: #1A1A1A;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.focus-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: #4A4A4A;
}

/* ===== FOOTER ===== */
.dossier-footer {
  margin-top: 0;
  padding: 10vh 40px;
  background: #0A0A0A;
  text-align: center;
}
.footer-stamp {
  font-family: 'Syncopate', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #F5F5F0;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
}
.footer-meta {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 300;
  color: rgba(245, 245, 240, 0.4);
  line-height: 2;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.footer-notice {
  margin-top: 32px;
  padding: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid rgba(245, 245, 240, 0.1);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: rgba(245, 245, 240, 0.35);
  line-height: 1.8;
}

/* ===== DISCLAIMER ===== */
.disclaimer-box {
  background: rgba(140, 123, 107, 0.06);
  border: 1px solid rgba(140, 123, 107, 0.15);
  padding: 24px;
  margin: 40px 0;
  text-align: center;
}
.disclaimer-box p {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: #8C7B6B;
  line-height: 1.8;
  margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .subject-profile { grid-template-columns: 1fr; }
  .subject-sidebar { max-width: 400px; margin: 0 auto; }
  .relationship-web { height: 400px; }
  .web-node, .web-node.core {
    width: 70px;
    height: 70px;
  }
  .web-node.core { width: 95px; height: 95px; }
  .web-label { font-size: 6px; }
}

@media (max-width: 768px) {
  .nav { padding: 14px 20px; }
  .nav__links { gap: 12px; }
  .nav__links a { font-size: 8px; letter-spacing: 0.1em; }
  .dossier-subtitle { font-size: clamp(18px, 5vw, 28px); letter-spacing: 4px; }
  .dossier-tagline { font-size: 13px; }
  .card-grid { grid-template-columns: 1fr; }
  .focus-grid { grid-template-columns: 1fr; }
  .nav-tab { padding: 12px 16px; font-size: 8px; letter-spacing: 0.08em; }
  .dossier-meta { gap: 16px; }
  .nav-tabs { padding: 0 20px; }
  .content-section { padding: 0 20px 10vh; }
  .dossier-header { padding: 12vh 20px 8vh; }
  .matrix-table { font-size: 11px; }
  .matrix-table th, .matrix-table td { padding: 12px; }
  .subject-profile { gap: 20px; margin-bottom: 32px; }
}

@media (max-width: 480px) {
  .nav { padding: 12px 16px; flex-wrap: wrap; }
  .nav__brand { font-size: 8px; }
  .nav__links { gap: 8px; }
  .nav__links a { font-size: 7px; letter-spacing: 0.08em; }
  .dossier-subtitle { font-size: 16px; letter-spacing: 3px; }
  .nav-tab { padding: 10px 12px; font-size: 7px; letter-spacing: 0.06em; }
  .subject-avatar { width: 120px; height: 120px; }
  .relationship-web { height: 300px; }
  .dossier-footer { padding: 8vh 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
