/* Team — page-specific styles (migrated from inline <style>) */
/* ============================================================
   DESIGN TOKENS
   ============================================================ */

/* ============================================================
   SELECTION + FOCUS
   ============================================================ */
/* Light logo on dark hero; swap to dark when nav turns white */
nav.scrolled .nav-links a:hover { color: var(--c-primary); opacity: 1; }
.nav-active {
  color: var(--c-accent) !important;
  opacity: 1 !important;
}
nav.scrolled .nav-active {
  color: var(--c-accent) !important;
  opacity: 1 !important;
}
.nav-cta {
  background: rgba(255,255,255,0.15);
  color: var(--c-white) !important;
  opacity: 1 !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 14px !important;
  font-weight: 600 !important;
  border: 1px solid rgba(255,255,255,0.3);
  transition: background .2s, border-color .2s !important;
  backdrop-filter: blur(4px);
}
.nav-cta:hover { background: rgba(255,255,255,0.25) !important; }
nav.scrolled .nav-cta {
  background: var(--c-primary) !important;
  color: white !important;
  border-color: transparent !important;
}
.mobile-nav-drawer .mobile-nav-cta {
  margin-top: 20px; background: var(--c-accent);
  color: white !important; padding: 16px 32px;
  border-radius: 100px; text-align: center; font-size: 18px !important;
}

/* ============================================================
   INNER HERO
   ============================================================ */
/* Canonical inner hero — identical across Innovation / Technology / Team / Contact */
/* inner-hero moved to components.css (single source of truth) */
/* SCROLL REVEAL — GSAP handles animation; CSS only prevents FOUC */

/* ============================================================
   SECTION SHARED STYLES
   ============================================================ */
.section-eyebrow {
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--c-text);
  opacity: .6;
  margin-bottom: 14px;
}

/* .section-heading base moved to components.css (single source of truth) */

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  background: var(--c-accent);
  color: var(--c-white);
  padding: 14px 30px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  transition: background .2s, transform .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover { background: #c05e00; transform: translateY(-1px); }

/* ============================================================
   SECTION 1: FOUNDERS
   ============================================================ */
.founders-section {
  background: var(--c-bg);
  padding: clamp(52px, 6.5vw, 84px) 0;
}

.founders-header {
  margin-bottom: 72px;
}

.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.founder-card {
  background: var(--c-white);
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 4px 32px rgba(var(--shadow-rgb),0.07), 0 1px 4px rgba(var(--shadow-rgb),0.04);
  transition: box-shadow .35s cubic-bezier(.22,1,.36,1), transform .35s cubic-bezier(.22,1,.36,1);
}
.founder-card:hover {
  box-shadow: 0 20px 64px rgba(var(--shadow-rgb),0.11), 0 2px 8px rgba(var(--shadow-rgb),0.05);
  transform: translateY(-4px);
}

.founder-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 28px;
  overflow: hidden;
  flex-shrink: 0;
  flex-shrink: 0;
}

.founder-name {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--c-primary);
  letter-spacing: -.5px;
  margin-bottom: 8px;
}

.founder-role {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.founder-divider {
  width: 100%;
  height: 1px;
  background: rgba(0,0,0,0.08);
  margin-bottom: 24px;
}

.founder-bio {
  font-size: 15px;
  color: var(--c-text);
  line-height: 1.7;
}

/* ============================================================
   SECTION 2: RESEARCH & COLLABORATION NETWORK
   ============================================================ */
.network-section {
  background: var(--c-bg3);
  padding: clamp(52px, 6.5vw, 84px) 0;
}

.network-content {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
/* center the heading underline bar under the centered heading */
.network-content .section-heading::after {
  margin-left: auto;
  margin-right: auto;
}

.network-body {
  font-size: 17px;
  color: var(--c-text);
  line-height: 1.75;
  margin-bottom: 52px;
}

.network-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.network-pill {
  padding: 12px 24px;
  border: 1.5px solid rgba(0,0,0,0.13);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-primary);
  background: var(--c-white);
  letter-spacing: .2px;
  transition: border-color .2s, background .2s, color .2s, transform .2s;
  cursor: default;
}

.network-pill:hover {
  border-color: var(--c-accent);
  background: var(--c-accent);
  color: var(--c-white);
  transform: translateY(-2px);
}

/* ============================================================
   SECTION 3: TEAM VISION
   ============================================================ */
.vision-section {
  background: var(--c-bg2);
  padding: clamp(52px, 6.5vw, 84px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vision-bg-pattern {
  display: none;
}

.vision-inner {
  position: relative;
  z-index: 1;
}

/* heading underline bar — centered, directly under the heading (matches
   .network-content + the site-wide .section-heading::after pattern) */
.vision-heading::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--c-accent);
  border-radius: 2px;
  margin: 20px auto 0;
}

.vision-eyebrow {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-text);
  opacity: .6;
  margin-bottom: 24px;
}

.vision-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 56px);
  color: var(--c-primary);
  letter-spacing: -1px;
  line-height: 1.08;
  margin-bottom: 28px;
}

.vision-body {
  font-size: 18px;
  color: var(--c-text);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   SECTION 4: JOIN / COLLABORATE CTA
   ============================================================ */
.collab-section {
  background: var(--c-accent);
  padding: clamp(52px, 6.5vw, 84px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* orange CTA — white button with navy text (matches rest of site) */
.collab-actions .btn-primary { background: #FFFFFF !important; color: var(--c-primary) !important; border: none !important; }
.collab-actions .btn-primary:hover { background: #F2F4F7 !important; transform: translateY(-2px); }
.collab-heading { color: #FFFFFF !important; }
.collab-body { color: rgba(255,255,255,0.92) !important; }
.collab-eyebrow { color: rgba(255,255,255,0.78) !important; }
.collab-bg-pattern {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(206,120,46,0.10) 0%, transparent 70%),
    repeating-linear-gradient(
      -45deg,
      rgba(255,255,255,1) 0px, rgba(255,255,255,1) 1px,
      transparent 1px, transparent 28px
    );
  opacity: .04;
}

.collab-eyebrow {
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 14px;
}

.collab-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 3.5vw, 50px);
  color: #F2F4F7;
  letter-spacing: -1px;
  line-height: 1.08;
  margin-bottom: 20px;
}

.collab-body {
  font-size: 17px;
  color: rgba(255,255,255,0.62);
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto 40px;
}
/* CTA structure — left text / right actions */
.collab-section { text-align: left; }
.collab-section .wrap { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: clamp(32px,6vw,72px); flex-wrap: wrap; }
.collab-left { flex: 1 1 460px; max-width: 680px; }
.collab-left .collab-body { margin: 0; }
.collab-actions { flex: 0 0 auto; display: flex; flex-direction: column; align-items: stretch; gap: 14px; min-width: 248px; }
.collab-actions .btn-primary { width: 100%; justify-content: center; }
.collab-note { display: flex; align-items: center; justify-content: center; gap: 9px; font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.92); margin: 2px 0 0; }
.collab-note::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #9FE3B4; box-shadow: 0 0 0 3px rgba(159,227,180,0.25); flex-shrink: 0; }
@media (max-width: 760px) {
  .collab-section .wrap { flex-direction: column; align-items: flex-start; gap: 26px; }
  .collab-left { flex: 0 0 auto; width: 100%; max-width: 100%; }
  .collab-actions { width: 100%; min-width: 0; }
  .collab-note { justify-content: flex-start; }
}
footer {
  background: var(--c-primary);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 72px 0 40px;
  color: rgba(255,255,255,.6);
}

.footer-brand-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--c-accent);
  border-radius: 50%;
  animation: pulseDot 3.2s ease-in-out infinite;
}

@media (max-width: 1024px) {
  .founders-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .inner-hero-sub { font-size: 15px; }
  .founders-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .founder-card { padding: 28px 20px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .collab-buttons { flex-direction: column; align-items: center; gap: 12px; }
  .btn-white, .btn-outline-white { width: 100%; max-width: 300px; justify-content: center; }
}
@media (max-width: 480px) {
  .founders-grid { grid-template-columns: 1fr; }
  .founder-card { padding: 24px 16px; }
  .founder-avatar { width: 72px; height: 72px; }
  .section-body { font-size: 15px; }
}

/* CTA button — match site size */
.collab-actions .btn-primary { padding: 17px 38px !important; font-size: 16px !important; }

/* Eyebrows + base heading accent bar now in components.css (single source of truth) */
/* page-specific: collab CTA heading has no accent bar */
.collab-section .section-heading::after { display:none !important; }
