/* ========================
   SYNE VENTURES — style.css
   Cyan-toned theme
======================== */

:root {
  /* ---- Cyan-integrated palette ---- */
  /* Page backgrounds: very light cyan tints instead of warm cream */
  --bg-base:    #F0F9FC;   /* lightest cyan wash — main page bg */
  --bg-surface: #FAFEFF;   /* near-white with cyan undertone — cards, nav */
  --bg-raised:  #E4F4F9;   /* slightly deeper cyan tint — alternating sections */
  --bg-deep:    #0D2A35;   /* deep cyan-navy — dark sections (approach, contact, footer) */
  --bg-mid:     #0E3D4F;   /* mid cyan-dark — incubator teaser bg */

  /* Borders & dividers — cyan-tinted */
  --border:     #C5E8F2;   /* light cyan border */
  --border-mid: #A8D8E8;   /* medium cyan border */

  /* Brand cyan — used for active accents */
  --brand:       #16C0EF;
  --brand-dark:  #0E9DC7;
  --brand-deeper:#0A7FA3;

  /* Text — dark cyan-navy tones instead of warm brown */
  --ink:         #0B2030;  /* near-black with cyan hue */
  --ink-soft:    #234559;  /* medium cyan-dark */
  --ink-muted:   #4E7A8E;  /* muted cyan-grey */
  --ink-faint:   #9BBFCC;  /* faint cyan */

  /* Light text on dark backgrounds */
  --on-dark:     #E8F7FC;
  --on-dark-soft:rgba(232,247,252,0.72);
  --on-dark-mute:rgba(232,247,252,0.4);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Hind', sans-serif;

  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;
  --r-xl: 24px;
  --max-w: 1240px;
  --nav-h: 68px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg-base);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---- Section labels ---- */
.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-dark);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--brand-dark);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 3rem;
  color: var(--ink);
}
.section-title em { font-style: italic; color: var(--brand-dark); }

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--brand-dark);
  color: var(--bg-surface);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.8rem 1.75rem;
  border-radius: var(--r-sm);
  letter-spacing: 0.02em;
  transition: background var(--transition), transform var(--transition);
}
.btn-primary:hover { background: var(--brand-deeper); transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.8rem 0;
  border-bottom: 1.5px solid var(--ink-soft);
  letter-spacing: 0.02em;
  transition: color var(--transition), border-color var(--transition);
}
.btn-ghost:hover { color: var(--brand-dark); border-color: var(--brand-dark); }

/* ========================
   NAV
======================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(240, 249, 252, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(11,32,48,0.1); }

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-wrap { display: flex; align-items: center; text-decoration: none; }
.nav-logo-img { height: 36px; width: auto; display: block; object-fit: contain; }
.logo-fallback { display: none; align-items: center; gap: 0.5rem; }
.logo-mark { font-size: 1.4rem; color: var(--brand-dark); line-height: 1; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-sub {
  font-size: 0.5rem;
  font-family: var(--font-body);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 400;
}

.nav-links { list-style: none; display: flex; align-items: center; gap: 1.75rem; }
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
  transition: color var(--transition);
  position: relative;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1.5px;
  background: var(--brand-dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after,
.nav-links a.nav-active::after { transform: scaleX(1); }
.nav-links a.nav-active { color: var(--brand-dark); }

.nav-cta {
  background: var(--brand-dark) !important;
  color: var(--bg-surface) !important;
  padding: 0.45rem 1.1rem !important;
  border-radius: var(--r-sm);
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--brand-deeper) !important; }
.nav-cta::after { display: none !important; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform var(--transition), opacity var(--transition);
}

/* ========================
   HERO
======================== */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-surface);
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--border) 1px, transparent 1px),
    linear-gradient(to bottom, var(--border) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.6;
  pointer-events: none;
}
.hero-grid-lines::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 60% 40%, transparent 30%, var(--bg-surface) 100%);
}
.hero-content { position: relative; z-index: 1; padding: 4rem 0 2rem; }
.hero-tag {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-dark);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 1.75rem;
  max-width: 860px;
  opacity: 0;
  animation: fadeUp 0.8s 0.35s forwards;
}
.hero-headline em { font-style: italic; color: var(--brand-dark); }
.hero-sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 580px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.65s forwards;
}
.hero-stat-bar {
  position: relative;
  z-index: 1;
  margin-top: 3rem;
  border-top: 1px solid var(--border);
  opacity: 0;
  animation: fadeUp 0.8s 0.85s forwards;
}
.hero-stat-inner { display: flex; align-items: stretch; }
.stat {
  flex: 1;
  padding: 1.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
}
.stat-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.stat-divider {
  width: 1px;
  background: var(--border);
  margin: 1.5rem 2rem;
  flex-shrink: 0;
}

/* ========================
   THESIS
======================== */
.thesis { padding: 7rem 0; background: var(--bg-base); }
.thesis-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 6rem; align-items: start; }
.thesis-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--ink);
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}
.thesis-right p { font-size: 1rem; color: var(--ink-soft); margin-bottom: 1.25rem; line-height: 1.8; }
.thesis-right strong { color: var(--ink); font-weight: 600; }
.thesis-pillars { margin-top: 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.pillar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: border-color var(--transition), background var(--transition);
}
.pillar:hover { border-color: var(--brand-dark); background: var(--bg-raised); }
.pillar-icon { color: var(--brand-dark); font-size: 0.85rem; flex-shrink: 0; }
.pillar-text { font-size: 0.85rem; font-weight: 500; color: var(--ink); }

/* ========================
   SECTORS
======================== */
.sectors { padding: 7rem 0; background: var(--bg-surface); border-top: 1px solid var(--border); }
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.sector-card {
  background: var(--bg-surface);
  padding: 2.5rem 2rem;
  position: relative;
  transition: background var(--transition);
  cursor: default;
}
.sector-card:hover { background: var(--bg-raised); }
.sector-icon {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  display: block;
  color: var(--brand-dark);
  line-height: 1;
  transition: transform var(--transition);
}
.sector-card:hover .sector-icon { transform: scale(1.12); }
.sector-num {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--ink-faint);
  position: absolute;
  top: 1.5rem; right: 1.75rem;
}
.sector-card h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 400; color: var(--ink); margin-bottom: 0.65rem; }
.sector-card p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.7; }

/* ========================
   PORTFOLIO
======================== */
.portfolio { padding: 7rem 0; background: var(--bg-base); border-top: 1px solid var(--border); }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.portfolio-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.portfolio-card:hover {
  box-shadow: 0 8px 36px rgba(14,157,199,0.14);
  transform: translateY(-3px);
  border-color: var(--brand-dark);
}
.port-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-dark);
  margin-bottom: 1.25rem;
}
.port-logo-wrap { margin-bottom: 1.25rem; }
.port-logo-img {
  width: 60px; height: 60px;
  object-fit: contain;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  background: var(--bg-raised);
  display: block;
}
.port-logo-placeholder {
  width: 60px; height: 60px;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  display: none;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink-muted);
}
.port-name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; color: var(--ink); margin-bottom: 0.65rem; }
.port-desc { font-size: 0.875rem; color: var(--ink-soft); line-height: 1.75; flex: 1; margin-bottom: 1.25rem; }
.port-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.port-stage { font-size: 0.65rem; font-weight: 500; color: var(--ink-muted); letter-spacing: 0.06em; }
.port-sector { font-size: 0.7rem; font-weight: 600; color: var(--brand-dark); letter-spacing: 0.04em; }

/* ========================
   INCUBATOR TEASER (home)
======================== */
.incubator-teaser { padding: 7rem 0; background: var(--bg-mid); }
.inc-teaser-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.incubator-teaser .section-label { color: var(--on-dark-mute); }
.incubator-teaser .section-label::before { background: var(--on-dark-mute); }
.inc-teaser-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--on-dark);
  margin-bottom: 1.5rem;
}
.inc-teaser-headline em { font-style: italic; color: var(--brand); }
.inc-teaser-left p { font-size: 0.95rem; color: var(--on-dark-soft); line-height: 1.8; margin-bottom: 1rem; }
.inc-teaser-cta {
  margin-top: 1.25rem;
  display: inline-flex;
  background: var(--brand);
  color: var(--ink) !important;
  font-weight: 700;
}
.inc-teaser-cta:hover { background: var(--brand-dark); color: var(--bg-surface) !important; transform: translateY(-1px); }
.inc-teaser-services {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(22,192,239,0.2);
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: 1.25rem;
  background: rgba(22,192,239,0.05);
}
.inc-teaser-service {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(22,192,239,0.12);
  transition: background var(--transition);
}
.inc-teaser-service:last-child { border-bottom: none; }
.inc-teaser-service:hover { background: rgba(22,192,239,0.08); }
.inc-teaser-service-icon { font-size: 1rem; color: var(--brand); width: 22px; text-align: center; flex-shrink: 0; line-height: 1; }
.inc-teaser-service strong { display: block; font-size: 0.88rem; font-weight: 600; color: var(--on-dark); margin-bottom: 0.12rem; }
.inc-teaser-service span { font-size: 0.78rem; color: var(--on-dark-mute); line-height: 1.4; }
.inc-teaser-location {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.5rem;
  border: 1px solid rgba(22,192,239,0.25);
  border-radius: var(--r-lg);
  background: rgba(22,192,239,0.07);
}
.inc-teaser-loc-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brand);
  flex-shrink: 0;
  animation: pulse-dot 2.5s ease-in-out infinite;
}
.inc-teaser-location strong { display: block; font-size: 0.88rem; font-weight: 600; color: var(--on-dark); margin-bottom: 0.12rem; }
.inc-teaser-location span { font-size: 0.75rem; color: var(--on-dark-mute); }

/* ========================
   APPROACH
======================== */
.approach { padding: 7rem 0; background: var(--bg-deep); }
.approach .section-label { color: var(--on-dark-mute); }
.approach .section-label::before { background: var(--on-dark-mute); }
.approach-intro { margin-bottom: 4rem; }
.approach-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--on-dark);
  margin-bottom: 1rem;
}
.approach-intro p { font-size: 1rem; color: var(--on-dark-soft); max-width: 520px; line-height: 1.75; }
.approach-steps { display: flex; flex-direction: column; }
.step {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 2rem;
  padding: 2.25rem 0;
  border-top: 1px solid rgba(22,192,239,0.12);
}
.step:last-child { border-bottom: 1px solid rgba(22,192,239,0.12); }
.step-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: rgba(22,192,239,0.3);
  font-style: italic;
  padding-top: 0.15rem;
}
.step-content h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 400; color: var(--on-dark); margin-bottom: 0.5rem; }
.step-content p { font-size: 0.9rem; color: var(--on-dark-soft); line-height: 1.75; max-width: 640px; }

/* ========================
   TEAM
======================== */
.team { padding: 7rem 0; background: var(--bg-surface); border-top: 1px solid var(--border); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 1rem; }
.team-card { display: flex; flex-direction: column; gap: 1.25rem; }
.team-avatar {
  width: 100%; aspect-ratio: 4/3;
  background: var(--bg-raised);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
}
.avatar-placeholder {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--border-mid);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem; color: var(--ink-muted);
}
.team-info h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 400; color: var(--ink); margin-bottom: 0.2rem; }
.team-role { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brand-dark); margin-bottom: 0.65rem; }
.team-info p { font-size: 0.875rem; color: var(--ink-soft); line-height: 1.75; margin-bottom: 0.65rem; }
.team-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.team-tags span {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--brand-deeper);
  background: rgba(10,127,163,0.1);
  padding: 0.25rem 0.6rem; border-radius: 100px;
}

/* Advisors */
.advisors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.advisor-card {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: border-color var(--transition);
}
.advisor-card:hover { border-color: var(--brand-dark); }
.advisor-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--border-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700; color: var(--ink-soft);
  flex-shrink: 0;
}
.advisor-info h4 { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--brand-dark); margin-bottom: 0.25rem; }
.advisor-domain { font-family: var(--font-display); font-size: 0.95rem; color: var(--ink); margin-bottom: 0.45rem; line-height: 1.25; }
.advisor-info p { font-size: 0.8rem; color: var(--ink-muted); line-height: 1.65; }

/* ========================
   STREAMS
======================== */
.streams { padding: 7rem 0; background: var(--bg-base); border-top: 1px solid var(--border); }
.streams-intro { font-size: 1rem; color: var(--ink-soft); max-width: 700px; line-height: 1.8; margin-bottom: 3rem; }
.streams-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.stream-card {
  padding: 2.5rem 2rem; border-radius: var(--r-xl);
  border: 1px solid var(--border); background: var(--bg-surface);
  transition: transform var(--transition), box-shadow var(--transition);
}
.stream-card:hover { transform: translateY(-4px); box-shadow: 0 10px 40px rgba(14,157,199,0.12); }
.stream-icon { font-size: 1.8rem; margin-bottom: 1.25rem; display: block; color: var(--brand-dark); }
.stream-card h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 400; color: var(--ink); margin-bottom: 0.65rem; }
.stream-card p { font-size: 0.875rem; color: var(--ink-soft); line-height: 1.75; margin-bottom: 1.25rem; }
.stream-note { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brand-dark); }
.stream-women      { border-top: 3px solid var(--brand); }
.stream-poc        { border-top: 3px solid var(--brand-dark); }
.stream-indigenous { border-top: 3px solid var(--brand-deeper); }

/* ========================
   GEOGRAPHY
======================== */
.geography { padding: 7rem 0; background: var(--bg-surface); border-top: 1px solid var(--border); overflow: hidden; }
.geo-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.geo-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300; line-height: 1.12;
  margin-bottom: 1.5rem; color: var(--ink);
}
.geo-text h2 em { font-style: italic; color: var(--brand-dark); }
.geo-text p { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.8; margin-bottom: 1rem; max-width: 500px; }
.geo-tags { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 2rem; }
.geo-tag {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.06em;
  color: var(--ink-soft); padding: 0.45rem 0.85rem;
  background: var(--bg-raised); border: 1px solid var(--border);
  border-radius: 100px; display: inline-block; width: fit-content;
}
.geo-visual { display: flex; justify-content: center; align-items: center; }
.geo-orb { position: relative; width: 360px; height: 360px; }
.geo-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid var(--border-mid);
  animation: spin linear infinite;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.geo-ring-1 { width: 100%; height: 100%; animation-duration: 30s; border-style: dashed; }
.geo-ring-2 { width: 68%; height: 68%; animation-duration: 22s; animation-direction: reverse; }
.geo-ring-3 { width: 36%; height: 36%; animation-duration: 15s; background: rgba(22,192,239,0.08); }
.geo-dot {
  position: absolute; width: 10px; height: 10px; border-radius: 50%;
  background: var(--brand-dark); box-shadow: 0 0 0 4px rgba(14,157,199,0.25);
  cursor: pointer; transition: box-shadow var(--transition);
}
.geo-dot:hover { box-shadow: 0 0 0 8px rgba(14,157,199,0.15); }
.geo-dot span {
  position: absolute; left: 1.25rem; top: 50%; transform: translateY(-50%);
  font-size: 0.65rem; font-weight: 600; color: var(--ink-muted);
  white-space: nowrap; background: var(--bg-surface);
  padding: 0.18rem 0.4rem; border-radius: var(--r-sm);
  border: 1px solid var(--border);
}
.geo-dot-kochi  { top: 38%; left: 68%; }
.geo-dot-sydney { top: 62%; left: 74%; }

/* ========================
   CONTACT
======================== */
.contact { padding: 7rem 0; background: var(--bg-deep); }
.contact .section-label { color: var(--on-dark-mute); }
.contact .section-label::before { background: var(--on-dark-mute); }
.contact-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 300; color: var(--on-dark);
  line-height: 1.1; margin-bottom: 1.25rem;
}
.contact-inner h2 em { font-style: italic; color: var(--brand); }
.contact-inner > p {
  font-size: 1rem; color: var(--on-dark-soft);
  max-width: 540px; line-height: 1.8; margin-bottom: 2.5rem;
}
.contact-actions { margin-bottom: 3.5rem; }
.contact .btn-primary { background: var(--brand); color: var(--ink); font-size: 1rem; padding: 0.9rem 2rem; }
.contact .btn-primary:hover { background: var(--brand-dark); color: var(--bg-surface); }
.contact-offices {
  display: flex; align-items: center; gap: 3rem;
  border-top: 1px solid rgba(22,192,239,0.15); padding-top: 2.5rem;
}
.office-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--brand); margin-bottom: 0.3rem; }
.office-location { font-family: var(--font-display); font-size: 1.1rem; color: var(--on-dark); margin-bottom: 0.2rem; }
.office-since { font-size: 0.65rem; color: var(--on-dark-mute); letter-spacing: 0.08em; }
.office-divider { width: 1px; height: 56px; background: rgba(22,192,239,0.15); flex-shrink: 0; }

/* ========================
   FOOTER
======================== */
.footer { padding: 2.5rem 0; background: var(--bg-deep); border-top: 1px solid rgba(22,192,239,0.1); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.footer-logo-wrap { display: flex; align-items: center; text-decoration: none; }
.footer-logo-img { height: 30px; width: auto; display: block; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.8; }
.footer-logo-fallback { display: none; align-items: center; gap: 0.5rem; }
.footer .logo-mark { font-size: 1.2rem; color: var(--on-dark); }
.footer .logo-text { color: var(--on-dark); font-size: 1.1rem; }
.footer .logo-sub { color: var(--on-dark-mute); }
.footer-tagline { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--on-dark-mute); }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { font-size: 0.82rem; color: var(--on-dark-mute); transition: color var(--transition); }
.footer-links a:hover { color: var(--on-dark); }
.footer-copy { font-size: 0.65rem; letter-spacing: 0.08em; color: rgba(22,192,239,0.25); width: 100%; text-align: left; margin-top: 0.5rem; }

/* ========================
   ANIMATIONS
======================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes spin {
  from { transform: translate(-50%,-50%) rotate(0deg); }
  to   { transform: translate(-50%,-50%) rotate(360deg); }
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 3px rgba(22,192,239,0.3); }
  50%      { box-shadow: 0 0 0 8px rgba(22,192,239,0.1); }
}
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ========================
   RESPONSIVE — 1024px
======================== */
@media (max-width: 1024px) {
  .thesis-grid { grid-template-columns: 1fr; gap: 3rem; }
  .thesis-headline { position: static; }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .geo-inner { grid-template-columns: 1fr; }
  .geo-visual { display: none; }
  .advisors-grid { grid-template-columns: repeat(2, 1fr); }
  .inc-teaser-inner { grid-template-columns: 1fr; gap: 3rem; }
}

/* ========================
   RESPONSIVE — desktop burger hide
======================== */
@media (min-width: 769px) {
  .burger { display: none !important; }
}

/* ========================
   RESPONSIVE — 768px mobile
======================== */
@media (max-width: 768px) {
  .burger {
    display: flex !important;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
    flex-shrink: 0;
  }
  .burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
  }
  .nav-inner { padding: 0 1.25rem; }
  .nav-links { display: none !important; }
  .nav-links.open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--bg-surface);
    border-bottom: 2px solid var(--brand-dark);
    padding: 1.25rem 1.5rem 1.75rem;
    gap: 0;
    box-shadow: 0 12px 32px rgba(11,32,48,0.14);
    z-index: 99;
  }
  .nav-links.open li { width: 100%; border-bottom: 1px solid var(--border); }
  .nav-links.open li:last-child { border-bottom: none; padding-top: 0.75rem; }
  .nav-links.open a { font-size: 1rem; font-weight: 500; display: block; padding: 0.9rem 0; color: var(--ink-soft); }
  .nav-links.open a::after { display: none; }
  .nav-links.open .nav-cta {
    display: inline-flex !important;
    padding: 0.7rem 1.5rem !important;
    background: var(--brand-dark) !important;
    color: var(--bg-surface) !important;
    border-radius: var(--r-sm);
    font-weight: 700 !important;
    width: auto;
  }

  .hero { min-height: auto; padding-top: calc(var(--nav-h) + 1rem); padding-bottom: 2rem; }
  .hero-content { padding: 2.5rem 0 1.5rem; }
  .hero-headline { font-size: clamp(2.4rem, 10vw, 3.5rem); }
  .hero-sub { font-size: 0.95rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .hero-stat-inner { flex-direction: column; }
  .stat-divider { width: 100%; height: 1px; margin: 0; background: var(--border); }
  .stat { padding: 1rem 0; }
  .stat-num { font-size: 1.4rem; }

  .thesis { padding: 4rem 0; }
  .thesis-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .thesis-headline { position: static; font-size: 1.75rem; }
  .thesis-pillars { grid-template-columns: 1fr; }

  .sectors { padding: 4rem 0; }
  .sectors-grid { grid-template-columns: 1fr; gap: 0; }
  .sector-card { padding: 1.75rem 1.5rem; }

  .portfolio { padding: 4rem 0; }
  .portfolio-grid { grid-template-columns: 1fr; gap: 1.25rem; }

  .incubator-teaser { padding: 4rem 0; }
  .inc-teaser-inner { grid-template-columns: 1fr; gap: 2.5rem; }

  .approach { padding: 4rem 0; }
  .approach-intro h2 { font-size: 2rem; }
  .step { grid-template-columns: 48px 1fr; gap: 1rem; padding: 1.75rem 0; }

  .team { padding: 4rem 0; }
  .team-grid { grid-template-columns: 1fr; gap: 2rem; }
  .team-avatar { aspect-ratio: 16/9; }
  .advisors-grid { grid-template-columns: 1fr; }

  .streams { padding: 4rem 0; }
  .streams-grid { grid-template-columns: 1fr; gap: 1.25rem; }

  .geography { padding: 4rem 0; }
  .geo-inner { grid-template-columns: 1fr; }
  .geo-visual { display: none; }

  .contact { padding: 4rem 0; }
  .contact-offices { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .office-divider { display: none; }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .footer-links { flex-wrap: wrap; gap: 1rem; }

  .section-title { font-size: 1.9rem; margin-bottom: 2rem; }
}

/* ========================
   RESPONSIVE — 480px
======================== */
@media (max-width: 480px) {
  .container { padding: 0 1.1rem; }
  .nav-inner { padding: 0 1.1rem; }
  .nav-links.open { padding: 1rem 1.1rem 1.5rem; }
  .hero-headline { font-size: 2.2rem; }
  .port-name { font-size: 1.3rem; }
  .stream-card { padding: 1.75rem 1.5rem; }
}
