:root{
  /* ==============================================
     COLOR PALETTE - Edit these to change the theme
     ============================================== */
  
  /* Base colors */
  --paper-1: rgb(250, 250, 253);      /* lightest background */
  --paper-2: rgb(244, 244, 252);      /* secondary background */
  --ink: rgb(35, 32, 48);             /* primary text */
  --muted: rgb(108, 104, 128);        /* secondary text */
  
  /* Accent colors */
  --accent: rgb(218, 218, 230);       /* light accent */
  --accent-2: rgb(158, 155, 175);     /* medium accent */
  --accent-strong: rgb(100, 90, 140); /* strong accent (buttons, highlights) */
  --accent-dark: rgb(75, 68, 115);    /* dark accent */
  
  /* Special colors */
  --star: rgb(130, 110, 170);         /* star icon */
  --link: rgb(90, 85, 115);           /* link text */
  --link-hover: rgb(70, 65, 95);      /* link hover */
  
  /* Background gradients (subtle tints) */
  --gradient-1: rgba(100, 90, 140, 0.08);   /* top-right glow */
  --gradient-2: rgba(80, 100, 150, 0.08);   /* top-left glow */
  
  /* Derived colors (opacity variants) - auto-calculated from base */
  --ink-90: rgba(35, 32, 48, 0.90);
  --ink-88: rgba(35, 32, 48, 0.88);
  --ink-86: rgba(35, 32, 48, 0.86);
  --ink-78: rgba(35, 32, 48, 0.78);
  --ink-70: rgba(35, 32, 48, 0.70);
  --ink-50: rgba(35, 32, 48, 0.50);
  --ink-30: rgba(35, 32, 48, 0.30);
  --ink-14: rgba(35, 32, 48, 0.14);
  --ink-12: rgba(35, 32, 48, 0.12);
  --ink-10: rgba(35, 32, 48, 0.10);
  --ink-08: rgba(35, 32, 48, 0.08);
  --ink-06: rgba(35, 32, 48, 0.06);
  --ink-04: rgba(35, 32, 48, 0.04);
  --ink-03: rgba(35, 32, 48, 0.03);
  --ink-02: rgba(35, 32, 48, 0.02);
  
  --paper-98: rgba(250, 250, 253, 0.98);
  --paper-96: rgba(250, 250, 253, 0.96);
  --paper-90: rgba(250, 250, 253, 0.90);
  --paper-88: rgba(250, 250, 253, 0.88);
  --paper-75: rgba(250, 250, 253, 0.75);
  --paper-70: rgba(250, 250, 253, 0.70);
  --paper-65: rgba(250, 250, 253, 0.65);
  --paper-55: rgba(250, 250, 253, 0.55);
  
  /* Semantic tokens */
  --line: var(--ink-10);
  --shadow: 0 18px 55px var(--ink-10);
  --shadow-sm: 0 10px 30px var(--ink-08);
  --shadow-md: 0 10px 35px var(--ink-08);
  --shadow-lg: 0 12px 40px var(--ink-12);

  /* Layout */
  --radius: 18px;
  --container: 1120px;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--ink);
  background:
    radial-gradient(900px 500px at 70% -10%, var(--gradient-1), transparent 60%),
    radial-gradient(800px 450px at 20% 0%, var(--gradient-2), transparent 60%),
    linear-gradient(180deg, var(--paper-1), var(--paper-2));
}

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

.container{
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden;
  clip: rect(0,0,0,0); white-space:nowrap; border:0;
}

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper-88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner{
  height: 70px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
}
.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 750;
  letter-spacing: .2px;
}
.brand small{
  display:block;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .2px;
}
.nav{
  display:flex;
  align-items:center;
  gap: 8px;
}
.nav > a, .nav button{
  color: var(--ink-88);
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 650;
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
}
.nav > a,
.nav > button,
.nav .btn {
  font-size: 15px;
  font-weight: 650;
  line-height: 1;
}
.nav > a:hover, .nav button:hover{
  background: var(--ink-04);
  border-color: var(--ink-06);
}

.nav-toggle{
  display:none;
  border: 1px solid var(--line);
  background: var(--ink-03);
  border-radius: 12px;
  padding: 10px 12px;
}
.hamburger{
  display:block;
  width: 18px;
  height: 2px;
  background: currentColor;
  position: relative;
}
.hamburger::before, .hamburger::after{
  content:"";
  position:absolute;
  left:0;
  width: 18px;
  height: 2px;
  background: currentColor;
}
.hamburger::before{ top:-6px; }
.hamburger::after{ top:6px; }

/* Dropdown */
.dropdown{ position: relative; }
.dropdown-menu{
  position:absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 260px;
  padding: 8px;
  border-radius: 16px;
  background: var(--paper-98);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display:none;
}
.dropdown-menu a{
  display:block;
  padding: 10px 10px;
  border-radius: 12px;
  font-weight: 650;
  color: var(--ink-90);
}
.dropdown-menu a:hover{
  background: var(--ink-04);
}
.dropdown-menu .disabled{
  opacity: .45;
  cursor: not-allowed;
}
.dropdown.is-open .dropdown-menu{ display:block; }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--ink-10);
  background: var(--paper-75);
  color: var(--accent-dark);
  font-weight: 750;
}

.btn:hover{
  background: var(--ink-03);
}

.btn-primary{
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--ink);
  border-color: var(--ink-12);
}
.btn-primary:hover{
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  filter: brightness(0.97);
  color: var(--ink);
}

.btn-muted{
  background: var(--ink-03);
  color: var(--ink);
}


/* Hero */
.hero{
  padding: 56px 0 24px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 26px;
  align-items:center;
}
.kicker{
  color: var(--muted);
  font-weight: 700;
  letter-spacing: .25px;
  margin: 0 0 10px;
  text-transform: uppercase;
  font-size: 12px;
}
h1{
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.02;
  margin: 0 0 12px;
}
.hero-title-line{
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.hero-title-icon{
  width: 0.8em;
  height: 0.8em;
  vertical-align: middle;
}
.hero-tagline{
  display: block;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 500;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.35;
}
.lede{
  color: var(--ink-78);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 18px;
  max-width: 60ch;
}
.lede a{
  color: var(--link);
  text-decoration: underline;
  text-decoration-color: var(--ink-14);
  text-underline-offset: 2px;
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}
.lede a:hover{
  color: var(--accent-strong);
  text-decoration-color: var(--accent-strong);
}
.paper-link{
  margin-top: 16px;
  margin-bottom: 0;
}
.paper-link a{
  color: var(--link);
  font-weight: 650;
  font-size: 18px;
  text-decoration: none;
  border-bottom: 1px solid var(--ink-14);
  padding-bottom: 2px;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.paper-link a:hover{
  color: var(--accent-strong);
  border-color: var(--accent-strong);
}
.hero-card{
  border: 1px solid var(--line);
  background: var(--paper-65);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hero-video{
  width: 100%;
  height: 420px;
  object-fit: cover;
  display:block;
  background: var(--ink-06);
}
.hero-meta{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 14px;
  border-top: 1px solid var(--line);
}
.pill{
  border: 1px solid var(--ink-10);
  background: var(--ink-02);
  color: var(--ink-86);
  border-radius: 999px;
  padding: 8px 10px;
  font-weight: 700;
  font-size: 12px;
}

/* Sections */
.section{ padding: 56px 0; }
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.section-head h2{
  margin:0;
  font-size: 28px;
  letter-spacing: .2px;
}
.muted{ color: var(--muted); }
.small{ font-size: 13px; color: var(--muted); }

/* Video gallery */
.video-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.video-tile{
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper-65);
  box-shadow: 0 10px 30px var(--ink-08);
  overflow:hidden;
}
.video-tile video, .video-tile iframe{
  width: 100%;
  height: 220px;
  display:block;
  border: 0;
  background: var(--ink-06);
}
.video-tile .caption{
  padding: 12px 12px 14px;
}
.video-tile .caption strong{ display:block; margin-bottom: 4px; }
.video-tile .caption span{ color: var(--muted); font-size: 13px; }

/* Globe + Stats Grid */
.globe-stats-grid{
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 20px;
  align-items: stretch;
}
.globe-container{
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  background: radial-gradient(ellipse at center, rgb(25, 30, 50) 0%, rgb(10, 12, 20) 100%);
  box-shadow: var(--shadow);
}
#globe{
  width: 100%;
  height: 100%;
  cursor: grab;
}
#globe:active{
  cursor: grabbing;
}
#globe canvas{
  outline: none;
}
.globe-tooltip{
  position: absolute;
  display: none;
  padding: 8px 12px;
  background: rgba(250, 250, 253, 0.95);
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  pointer-events: none;
  z-index: 10;
  white-space: nowrap;
}
.stats-panel{
  background: var(--paper-65);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.stats-panel h3{
  margin: 0 0 16px;
  font-size: 18px;
}
.stats-vertical{
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.stat-row{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--ink-02);
  border-radius: 10px;
  border: 1px solid var(--ink-04);
}
.stat-num{
  font-weight: 850;
  font-size: 20px;
  color: var(--ink);
}
.stat-label{
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  text-align: right;
}

/* Stats */
.stats{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.stat{
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper-70);
  padding: 14px;
}
.stat .num{
  font-weight: 850;
  font-size: 18px;
}
.stat .label{
  margin-top: 6px;
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}

/* Cards */
.grid-3{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 12px; align-items: start; }
.card{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-65);
  box-shadow: 0 10px 35px var(--ink-08);
  padding: 18px;
}
.card h3{ margin: 0; }

/* Collapsible cards */
.card-collapsible{
  padding: 0;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.card-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  cursor: pointer;
  user-select: none;
}
.card-header:hover{
  background: var(--ink-02);
}
.card-header h3{
  margin: 0;
}
.expand-btn{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ink-03);
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
  flex-shrink: 0;
}
.expand-btn:hover{
  background: var(--ink-06);
}
.expand-icon{
  display: block;
  line-height: 1;
  transition: transform 0.2s ease;
}
.card-collapsible.is-expanded{
  box-shadow: 0 12px 40px var(--ink-12);
  border-color: var(--ink-12);
}
.card-collapsible.is-expanded .expand-icon{
  transform: rotate(45deg);
}
.card-body{
  display: none;
  padding: 16px 18px 18px;
  border-top: 1px solid var(--line);
  animation: fadeSlideIn 0.25s ease;
}
.card-collapsible.is-expanded .card-body{
  display: block;
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Card website link */
.card-link{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  margin-bottom: 14px;
  background: linear-gradient(135deg, var(--ink-04), var(--ink-08));
  border: 1px solid var(--ink-08);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 650;
  color: var(--ink);
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.card-link:hover{
  background: linear-gradient(135deg, var(--ink-06), var(--ink-10));
  border-color: var(--ink-14);
  transform: translateY(-1px);
}
.link-icon{
  font-size: 12px;
  opacity: 0.7;
}

/* Role blocks inside cards */
.role-block{
  padding: 14px 16px;
  margin-bottom: 10px;
  background: var(--ink-02);
  border-radius: 12px;
  border: 1px solid var(--ink-04);
}
.role-block:last-child{
  margin-bottom: 0;
}
.role-title{
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--muted);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ink-06);
}
.people-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.people-list li{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--paper-90);
  border: 1px solid var(--ink-08);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  transition: background 0.15s ease, border-color 0.15s ease;
}
.people-list li:hover{
  background: var(--paper-1);
  border-color: var(--ink-12);
}
.mailto{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--ink-06);
  border-radius: 50%;
  transition: background 0.15s ease;
}
.mailto:hover{
  background: var(--ink-12);
}
.mail-icon{
  font-size: 11px;
  line-height: 1;
}
.person-link{
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px dashed var(--ink-30);
  transition: border-color 0.15s ease, color 0.15s ease;
}
.person-link:hover{
  color: var(--link-hover);
  border-bottom-color: var(--ink-50);
  border-bottom-style: solid;
}

/* Join Us CTA Card */
.join-us-card{
  margin-top: 32px;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(100, 90, 140, 0.10), rgba(130, 120, 160, 0.08));
  border: 1px solid var(--ink-14);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.join-us-content h3{
  margin: 0 0 6px;
  font-size: 20px;
  color: var(--ink);
}
.join-us-content p{
  margin: 0;
  color: var(--ink-70);
  font-size: 15px;
}
.btn-join{
  background: linear-gradient(135deg, var(--accent-strong), var(--accent-dark));
  color: white;
  border: none;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 4px 14px rgba(75, 68, 115, 0.3);
}
.btn-join:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(75, 68, 115, 0.4);
  color: var(--accent-dark);
}
.btn-join .arrow{
  font-size: 18px;
  transition: transform 0.15s ease;
}
.btn-join:hover .arrow{
  transform: translateX(3px);
}

/* Coming Soon Card */
.card-coming-soon{
  opacity: 0.7;
  position: relative;
}
.badge-coming-soon{
  display: inline-block;
  padding: 4px 10px;
  margin-bottom: 10px;
  background: linear-gradient(135deg, rgba(100, 90, 140, 0.15), rgba(130, 120, 160, 0.12));
  border: 1px solid rgba(100, 90, 140, 0.25);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--link);
}
.card p{ margin: 0 0 10px; color: var(--ink-78); line-height: 1.6; }
/* Card links, but do not affect button-like links */
.card a:not(.btn){
  color: var(--link);
  font-weight: 800;
  text-decoration: none;
}
.card a:not(.btn):hover{
  text-decoration: underline;
}

/* Footer */
.footer{
  border-top: 1px solid var(--line);
  padding: 26px 0;
  background: var(--paper-55);
}
.footer-inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-links{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--ink-70);
}
.footer-links a:hover{ text-decoration: underline; }
.contact-email{
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  color: var(--link);
  text-decoration: none;
  transition: color 0.15s ease;
}
.contact-email:hover{
  color: var(--accent-strong);
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-video{ height: 360px; }
  .video-grid{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .stats{ grid-template-columns: repeat(2, 1fr); }
  .section-head{ flex-direction: column; align-items:flex-start; }
  .globe-stats-grid{ grid-template-columns: 1fr; }
  .globe-container{ height: 350px; }
}
@media (max-width: 760px){
  .nav-toggle{ display:inline-flex; }
  .nav{
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    padding: 10px;
    border-bottom: 1px solid var(--line);
    background: var(--paper-96);
    backdrop-filter: blur(10px);
    display:none;
    flex-direction: column;
    align-items: stretch;
  }
  .nav.is-open{ display:flex; }
  .dropdown-menu{
    position: static;
    box-shadow: none;
    margin-top: 6px;
  }
}

/* Special highlighting for overall leads */
.lead-highlight{
  border-color: var(--ink-14);
  background: linear-gradient(135deg, rgba(180,178,200,.30), var(--paper-70));
}

.person-left{
  display:flex;
  align-items:center;
  gap: 10px;
}

/* Star icon for special roles */
.star-icon{
  color: var(--star);
  font-size: 1em;
  margin-right: 2px;
  vertical-align: middle;
}