/* ═══════════════════════════════════════
   NORTHGRID AI DATACENTER
   Design: Refined Dark Industrial
   Fonts: Syne (headers) + DM Sans (body)
   Palette: Deep navy · Electric teal · Pure white · Gold accent
═══════════════════════════════════════ */

:root {
  --navy:      #0B1629;
  --navy-mid:  #112240;
  --navy-card: #162033;
  --teal:      #00C2D1;
  --teal-dk:   #009DAA;
  --teal-lt:   #A8EFF4;
  --gold:      #C9A84C;
  --white:     #FFFFFF;
  --off-white: #F0F6FF;
  --gray:      #64748B;
  --gray-lt:   #CBD5E1;
  --green:     #10B981;
  --text:      #1E293B;
  --font-head: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius:    12px;
  --radius-sm: 6px;
  --shadow:    0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.2);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.2rem; font-weight: 600; }
em { font-style: italic; color: var(--teal); }

p { line-height: 1.75; color: var(--gray); }

a { text-decoration: none; color: inherit; }

/* ── Layout ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.page { display: none; }
.page.active { display: block; }

/* ── Navigation ── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(11, 22, 41, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,194,209,0.15);
  transition: box-shadow 0.3s;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.logo-mark {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dk));
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  letter-spacing: -0.01em;
}
.logo-text em { font-style: normal; color: var(--teal); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  cursor: pointer;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-links a.nav-cta {
  background: var(--teal);
  color: var(--navy);
  font-weight: 600;
  margin-left: 0.5rem;
}
.nav-links a.nav-cta:hover { background: var(--teal-lt); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.nav-mobile a {
  padding: 1rem 2rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-mobile a:hover { color: var(--teal); background: rgba(0,194,209,0.06); }
.nav-mobile.open { display: flex; }

/* ── Buttons ── */
.btn-primary {
  background: var(--teal);
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.75rem 1.75rem;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.02em;
}
.btn-primary:hover { background: var(--teal-lt); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.75rem 1.75rem;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }

.btn-ghost-light {
  background: transparent;
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.75rem 1.75rem;
  border: 1.5px solid var(--navy-mid);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.2s;
}
.btn-ghost-light:hover { border-color: var(--teal); color: var(--teal); }

.btn-full { width: 100%; }

/* ── Section Labels ── */
.section-label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.section-title { margin-bottom: 2.5rem; }
.section-intro { color: var(--gray); max-width: 640px; margin-bottom: 2rem; }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 2rem 60px;
  position: relative;
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,194,209,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,194,209,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,194,209,0.18), transparent);
  top: -200px; right: -100px;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.12), transparent);
  bottom: -100px; left: 5%;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-family: var(--font-head);
}

.dot {
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.hero-title em { color: var(--teal); display: block; }

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero-stats {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 1.5rem 2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(0,194,209,0.2);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
}

.stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.stat-val {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1;
}
.stat-val small { font-size: 1rem; color: var(--teal); margin-left: 2px; }

.stat-lbl {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
}

/* ═══════════════════════════════════════
   SECTIONS
═══════════════════════════════════════ */
.section-dark {
  background: var(--navy);
  padding: 5rem 2rem;
  color: var(--white);
}
.section-dark .section-label { color: var(--teal); }
.section-dark h2 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.6); }

.section-light {
  background: var(--off-white);
  padding: 5rem 2rem;
}

/* ── Page mini heroes ── */
.page-hero-mini {
  background: var(--navy);
  padding: 120px 2rem 80px;
  color: var(--white);
}
.page-hero-mini h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero-mini p { color: rgba(255,255,255,0.65); max-width: 580px; font-size: 1.1rem; }

.dark-hero { background: var(--navy-mid); }
.green-hero { background: linear-gradient(135deg, #0A2E1A, var(--navy)); }

/* ── Cards ── */
.cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.cards-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.card-dark {
  background: var(--navy-card);
  border: 1px solid rgba(0,194,209,0.12);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color 0.2s, transform 0.2s;
}
.card-dark:hover { border-color: rgba(0,194,209,0.35); transform: translateY(-2px); }
.card-dark .card-icon { font-size: 1.75rem; margin-bottom: 1rem; }
.card-dark h3 { color: var(--white); margin-bottom: 0.75rem; font-size: 1.05rem; }
.card-dark p { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.55); }

/* ── Partners strip ── */
.partners-strip {
  background: var(--navy-mid);
  padding: 2.5rem 2rem;
  border-top: 1px solid rgba(0,194,209,0.12);
  border-bottom: 1px solid rgba(0,194,209,0.12);
}

.partners-label {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  text-align: center;
  margin-bottom: 1.25rem;
}

.partners-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0 2.5rem;
}

.partner-name {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}
.partner-role { font-size: 0.78rem; color: rgba(255,255,255,0.4); }

.partner-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
}

/* ── Location section ── */
.location-section { padding: 5rem 2rem; background: var(--white); }
.location-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.location-text h2 { margin-bottom: 1rem; }
.location-text p { margin-bottom: 1.5rem; }

.location-list {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.location-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text);
}
.check {
  color: var(--green);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.map-card {
  background: var(--navy);
  border-radius: var(--radius);
  overflow: hidden;
  height: 360px;
  position: relative;
  border: 1px solid rgba(0,194,209,0.2);
}

.map-pin-area {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}

.map-bg-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,194,209,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,194,209,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}

.map-marker {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.map-pin { font-size: 2.5rem; }

.map-pin-pulse {
  position: absolute;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(0,194,209,0.15);
  animation: mapPulse 2s infinite;
}
@keyframes mapPulse {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2); opacity: 0; }
}

.map-label-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(0,194,209,0.25);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  z-index: 1;
  backdrop-filter: blur(8px);
}
.map-label-card strong { color: var(--white); font-family: var(--font-head); font-size: 0.9rem; }
.map-label-card span { color: var(--teal-lt); font-size: 0.78rem; }

/* ── CTA section ── */
.cta-section { padding: 5rem 2rem; background: var(--teal); }
.cta-inner { text-align: center; }
.cta-inner h2 { color: var(--navy); font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 1rem; }
.cta-inner p { color: rgba(11,22,41,0.7); max-width: 500px; margin: 0 auto 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-section .btn-primary {
  background: var(--navy);
  color: var(--white);
}
.cta-section .btn-primary:hover { background: var(--navy-mid); }

/* ═══════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4rem;
  align-items: start;
}
.about-text h2 { margin-bottom: 1.25rem; }
.about-text p { margin-bottom: 1rem; }

.about-stats-col { display: flex; flex-direction: column; gap: 1rem; }
.about-stat-card {
  background: var(--white);
  border: 1px solid var(--gray-lt);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--teal);
}
.big-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.big-lbl { font-size: 0.8rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 500; }

/* ═══════════════════════════════════════
   INFRASTRUCTURE PAGE
═══════════════════════════════════════ */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.spec-block {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-lt);
}

.spec-category {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-dk);
  border-bottom: 2px solid var(--teal);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--off-white);
  font-size: 0.9rem;
}
.spec-row span { color: var(--gray); }
.spec-row strong { color: var(--text); font-weight: 600; }

/* ── Phases timeline ── */
.phases-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.phases-timeline::before {
  content: '';
  position: absolute;
  top: 28px; left: 60px; right: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), rgba(0,194,209,0.2));
  z-index: 0;
}

.phase-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.phase-num {
  width: 56px; height: 56px;
  background: var(--teal);
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.phase-content h3 { color: var(--white); margin-bottom: 0.35rem; font-size: 1rem; }
.phase-time {
  font-size: 0.78rem;
  color: var(--teal);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}
.phase-content p { font-size: 0.88rem; color: rgba(255,255,255,0.5); }

/* ── Colo cards ── */
.colo-card {
  background: var(--white);
  border: 1px solid var(--gray-lt);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.colo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.colo-featured { border-color: var(--teal); border-width: 2px; position: relative; }
.colo-featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--teal);
  color: var(--navy);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 3px 12px;
  border-radius: 20px;
  font-family: var(--font-head);
}
.colo-tier {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-dk);
  margin-bottom: 0.5rem;
}
.colo-price {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.colo-price span { font-size: 0.85rem; color: var(--gray); font-weight: 400; }
.colo-card ul { list-style: none; margin-bottom: 1.75rem; display: flex; flex-direction: column; gap: 0.6rem; }
.colo-card li { font-size: 0.9rem; color: var(--gray); padding-left: 1.2rem; position: relative; }
.colo-card li::before { content: '→'; position: absolute; left: 0; color: var(--teal); font-weight: 700; }

/* ═══════════════════════════════════════
   SUSTAINABILITY PAGE
═══════════════════════════════════════ */
.esg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.esg-card {
  background: var(--white);
  border: 1px solid var(--gray-lt);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--green);
  transition: transform 0.2s;
}
.esg-card:hover { transform: translateY(-2px); }
.esg-icon { font-size: 2rem; margin-bottom: 1rem; }
.esg-card h3 { color: var(--navy); margin-bottom: 0.5rem; }
.esg-badge {
  display: inline-block;
  background: #DCFCE7;
  color: #15803D;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 2px 8px;
  border-radius: 20px;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}
.esg-card p { font-size: 0.9rem; }

.esg-statement { text-align: center; max-width: 700px; margin: 0 auto; }
.esg-statement h2 { color: var(--white); margin-bottom: 1rem; }

.esg-metrics {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.esg-metric { display: flex; flex-direction: column; align-items: center; gap: 0.25rem; }
.esg-metric span {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green);
}
.esg-metric label { font-size: 0.78rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.05em; }

/* ═══════════════════════════════════════
   TEAM PAGE
═══════════════════════════════════════ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--gray-lt);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: border-color 0.2s, transform 0.2s;
}
.team-card:hover { border-color: var(--teal); transform: translateY(-2px); }

.featured-member {
  grid-column: 1 / -1;
  border-color: var(--teal);
  border-width: 1.5px;
  background: linear-gradient(135deg, #F0FEFF, #FFFFFF);
}

.member-avatar {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dk));
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  flex-shrink: 0;
}

.tbd-card { opacity: 0.6; }
.tbd-avatar { background: var(--gray-lt); color: var(--gray); }

.member-badges { margin-bottom: 0.4rem; }
.badge-founder {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-dk);
  background: #E0FAFE;
  padding: 2px 8px;
  border-radius: 20px;
  border: 1px solid var(--teal-lt);
}
.member-info h3 { font-size: 1rem; color: var(--navy); margin-bottom: 0.2rem; }
.member-role { font-size: 0.82rem; color: var(--teal-dk); font-weight: 500; margin-bottom: 0.6rem; }
.member-info p { font-size: 0.88rem; color: var(--gray); line-height: 1.65; }

/* ── Board grid ── */
.board-grid {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.board-card {
  background: var(--navy-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  min-width: 140px;
  text-align: center;
  flex: 1;
  min-width: 130px;
  max-width: 180px;
}

.board-type {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 0.6rem;
}
.board-type.management { background: rgba(0,194,209,0.15); color: var(--teal); }
.board-type.investor { background: rgba(201,168,76,0.2); color: var(--gold); }
.board-type.independent { background: rgba(124,58,237,0.2); color: #A78BFA; }
.board-type.tbd { background: rgba(100,116,139,0.2); color: var(--gray); }

.board-name { font-family: var(--font-head); font-weight: 700; color: var(--white); font-size: 0.9rem; margin-bottom: 0.2rem; }
.board-role { font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.board-note { text-align: center; color: rgba(255,255,255,0.4); font-size: 0.85rem; font-style: italic; }

/* ═══════════════════════════════════════
   INVESTORS PAGE
═══════════════════════════════════════ */
.capital-stack { display: flex; flex-direction: column; gap: 1.25rem; }

.capital-layer {
  background: var(--navy-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  border-left: 4px solid rgba(0,194,209,0.3);
}
.featured-layer { border-left-color: var(--teal); background: rgba(0,194,209,0.06); }

.capital-label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.35rem;
}
.capital-amount {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.capital-desc { font-size: 0.9rem; color: rgba(255,255,255,0.55); max-width: 700px; margin-bottom: 1rem; }
.capital-bar { height: 3px; background: var(--teal); border-radius: 2px; opacity: 0.4; }
.featured-layer .capital-bar { opacity: 1; }

/* ── Projections table ── */
.projections-table {
  border: 1px solid var(--gray-lt);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
}

.proj-header, .proj-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.2fr 1fr 1fr;
  padding: 0.9rem 1.5rem;
  gap: 1rem;
}

.proj-header {
  background: var(--navy);
  color: var(--teal);
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proj-row {
  background: var(--white);
  border-bottom: 1px solid var(--off-white);
  font-size: 0.95rem;
  color: var(--text);
  align-items: center;
  transition: background 0.15s;
}
.proj-row:hover { background: #F8FBFF; }

.proj-year { font-family: var(--font-head); font-weight: 700; color: var(--navy); }
.proj-dscr { color: var(--green); font-weight: 700; }

.highlight-row { background: #F0FFFE !important; border-bottom: 2px solid var(--teal) !important; }

.proj-note { font-size: 0.8rem; color: var(--gray); font-style: italic; }

.investor-cta { text-align: center; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); }
.investor-cta p { margin-bottom: 1.25rem; }

/* ═══════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════ */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
}

.contact-form-area h2, .contact-info-area h2 { margin-bottom: 1.75rem; }

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--gray-lt);
  border-radius: var(--radius-sm);
  padding: 0.7rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--teal); }
.form-group textarea { resize: vertical; }

.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
  background: #F0FFFE;
  border: 1px solid var(--teal);
  border-radius: var(--radius);
}
.form-success.show { display: block; }
.success-icon {
  width: 56px; height: 56px;
  background: var(--teal);
  color: var(--navy);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
}
.form-success h3 { color: var(--navy); margin-bottom: 0.5rem; }

.contact-info-block { margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--off-white); }
.contact-info-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--teal-dk); margin-bottom: 0.25rem; }
.contact-info-val { font-size: 0.95rem; color: var(--text); line-height: 1.6; }

.contact-leadership h3 { font-size: 1rem; margin-bottom: 1rem; }
.leader-contact { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 0.85rem; }
.leader-avatar {
  width: 40px; height: 40px;
  background: var(--navy);
  color: var(--teal);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  flex-shrink: 0;
}
.leader-contact div { display: flex; flex-direction: column; gap: 0.1rem; }
.leader-contact strong { font-size: 0.9rem; color: var(--text); }
.leader-contact span { font-size: 0.8rem; color: var(--gray); }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.site-footer {
  background: var(--navy);
  padding: 4rem 2rem 2rem;
  border-top: 1px solid rgba(0,194,209,0.15);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-brand .logo-mark { width: 40px; height: 40px; font-size: 1.2rem; }
.footer-brand .logo-text { font-size: 1.05rem; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.4); max-width: 260px; margin-top: 0.5rem; }

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links-col strong {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.25rem;
}
.footer-links-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: color 0.2s;
}
.footer-links-col a:hover { color: var(--teal); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ═══════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.page.active .hero-content,
.page.active .hero-stats {
  animation: fadeInUp 0.6s ease both;
}
.page.active .hero-stats { animation-delay: 0.15s; }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .cards-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .phases-timeline { grid-template-columns: repeat(2, 1fr); }
  .phases-timeline::before { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .specs-grid { grid-template-columns: 1fr; }
  .esg-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-member { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero { padding: 100px 1.5rem 50px; }
  .hero-title { font-size: 2.6rem; }
  .hero-stats { flex-wrap: wrap; gap: 1rem; }
  .stat-divider { display: none; }
  .stat { flex: 0 0 45%; }

  .cards-grid-3, .cards-grid-2 { grid-template-columns: 1fr; }
  .phases-timeline { grid-template-columns: 1fr; }
  .location-split, .about-split, .contact-split { grid-template-columns: 1fr; }
  .esg-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .featured-member { flex-direction: column; }
  .projections-table { overflow-x: auto; }
  .proj-header, .proj-row { min-width: 500px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; }
  .contact-split { grid-template-columns: 1fr; }
  .partners-row { gap: 1.5rem; }
  .partner-sep { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .capital-amount { font-size: 1.5rem; }
  .cta-section h2 { font-size: 1.6rem; }
}
