/* ==========================================================================
   Emergent Energy — main.css
   All site styles in a single file.
   Brand Guide v2 Color Palette:
     Institutional Navy  #0C2859  (primary anchor)
     Slate Grey          #F0F0F0  (neutral backgrounds)
     Orange              #FF931E  (CTAs, hover states, highlights)
     Green               #66A53D  (sustainability, status, accents)
   Typography: Roc Grotesk (headings/nav), Inter (body/UI)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

@font-face {
  font-family: 'Roc Grotesk';
  src: url('../fonts/Roc Grotesk Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Roc Grotesk';
  src: url('../fonts/Roc Grotesk Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Roc Grotesk';
  src: url('../fonts/Roc Grotesk Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Roc Grotesk';
  src: url('../fonts/Roc Grotesk ExtraBold.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* --------------------------------------------------------------------------
   1. CSS CUSTOM PROPERTIES
   -------------------------------------------------------------------------- */
:root {
  --color-navy:       #0C2859;
  --color-navy-mid:   #162f68;
  --color-navy-light: #1e3a7a;
  --color-teal:       #66A53D;
  --color-teal-light: #b3d99a;
  --color-teal-dark:  #4e8a28;
  --color-orange:     #FF931E;
  --color-orange-dark:#e07a00;
  --color-white:      #FFFFFF;
  --color-bg:         #F0F0F0;
  --color-bg-alt:     #E2E2E2;
  --color-slate:      #4A4F55;
  --color-slate-dark: #343A40;
  --color-slate-light:#ADB5BD;
  --color-text:       #162f68;
  --color-success:    #66A53D;
  --color-danger:     #DC3545;

  --font-stack:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading:  'Roc Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;

  --nav-height: 72px;
  --section-pad: 5rem;
  --section-pad-sm: 3rem;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;

  --shadow-sm:  0 1px 4px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.18);

  --transition: 0.25s ease;
}

/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-stack);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

img, video, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-teal);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover, a:focus {
  color: var(--color-teal-dark);
  text-decoration: underline;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}

button {
  cursor: pointer;
  font-family: var(--font-stack);
  border: none;
  background: none;
}

input, textarea, select {
  font-family: var(--font-stack);
  font-size: 1rem;
}

/* --------------------------------------------------------------------------
   3. ACCESSIBILITY
   -------------------------------------------------------------------------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 9999;
  background: var(--color-orange);
  color: var(--color-navy);
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  border-radius: 0 0 var(--radius-md) 0;
  transition: top var(--transition);
}
.skip-link:focus {
  top: 0;
}

:focus-visible {
  outline: 2px solid var(--color-orange);
  outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   4. TYPOGRAPHY
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-navy);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  color: var(--color-slate-dark);
}
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--color-slate-dark);
}

.text-muted { color: var(--color-slate); }
.text-navy  { color: var(--color-navy); }
.text-teal  { color: var(--color-teal); }
.text-white { color: var(--color-white); }
.text-center { text-align: center; }
.text-left   { text-align: left; }

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 0.75rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-slate);
  max-width: 640px;
  margin-bottom: 0;
}
.centered .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

strong { font-weight: 700; }
em { font-style: italic; }

/* --------------------------------------------------------------------------
   5. LAYOUT UTILITIES
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.container--narrow {
  max-width: 840px;
}

.section {
  padding: var(--section-pad) 0;
}

.section--alt {
  background-color: var(--color-bg-alt);
}

.section--dark {
  background-color: var(--color-navy);
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--color-white);
}
.section--dark p,
.section--dark .lead {
  color: var(--color-teal-light);
}
.section--dark .section-label {
  color: var(--color-teal);
}

.centered {
  text-align: center;
  margin-bottom: 3.5rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}

.grid--2 { grid-template-columns: 1fr 1fr; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.flex {
  display: flex;
}
.flex--center {
  align-items: center;
  justify-content: center;
}
.flex--gap {
  gap: 1rem;
}
.flex--wrap {
  flex-wrap: wrap;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

/* --------------------------------------------------------------------------
   6. NAVIGATION
   -------------------------------------------------------------------------- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background-color: var(--color-navy);
  border-bottom: 1px solid rgba(255,147,30,0.2);
  transition: box-shadow var(--transition), background-color var(--transition);
}

.site-nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.35);
  background-color: rgba(12,40,89,0.97);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  height: 32px;
  width: auto;
  display: block;
}

.nav-logo-mark {
  width: 36px;
  height: 36px;
  background: var(--color-orange);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--color-navy);
  letter-spacing: -0.05em;
  flex-shrink: 0;
}

.nav-logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.01em;
}
.nav-logo-text span {
  color: var(--color-orange);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  display: block;
  padding: 0.5rem 0.875rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background-color var(--transition);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a:focus {
  color: var(--color-orange);
  background-color: rgba(255,147,30,0.1);
  text-decoration: none;
}
.nav-links a.active {
  color: var(--color-orange);
  font-weight: 700;
  background-color: rgba(255,147,30,0.1);
  border-radius: var(--radius-sm);
}
.nav-links a.active:hover,
.nav-links a.active:focus {
  color: var(--color-orange);
  background-color: rgba(255,147,30,0.15);
}

.nav-links a.nav-investors {
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.875rem;
  font-weight: 700;
}
.nav-links a.nav-investors:hover,
.nav-links a.nav-investors:focus {
  background-color: rgba(255,147,30,0.2);
  color: var(--color-orange);
  text-decoration: none;
}
.nav-links a.nav-investors.active {
  background-color: rgba(255,147,30,0.12);
  border: 1px solid rgba(255,147,30,0.35);
  color: var(--color-orange);
}

/* Dropdown nav items */
.nav-has-dropdown {
  position: relative;
}
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem 0.875rem;
  font-family: var(--font-heading);
  font-size: 0.925rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background-color var(--transition);
  white-space: nowrap;
}
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus {
  color: var(--color-orange);
  background-color: rgba(255,147,30,0.1);
  outline: none;
  text-decoration: none;
}
.nav-dropdown-toggle.active {
  color: var(--color-orange);
  font-weight: 700;
  background-color: rgba(255,147,30,0.1);
}
.nav-chevron {
  width: 10px;
  height: 6px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.nav-dropdown-toggle[aria-expanded="true"] .nav-chevron {
  transform: rotate(180deg);
}
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 200px;
  background: rgba(12,40,89,0.98);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  padding: 0.4rem 0;
  list-style: none;
  z-index: 200;
}
.nav-dropdown.open {
  display: block;
}

/* Hover open on desktop pointer devices */
@media (min-width: 769px) {
  /* Invisible bridge fills the gap between the button and the dropdown panel
     so the hover state doesn't break as the mouse crosses the gap */
  .nav-has-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 10px;
  }
  .nav-has-dropdown:hover .nav-dropdown {
    display: block;
  }
  .nav-has-dropdown:hover .nav-dropdown-toggle .nav-chevron {
    transform: rotate(180deg);
  }
}

.nav-dropdown li a {
  display: block;
  padding: 0.5rem 1.1rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color var(--transition), background-color var(--transition);
  white-space: nowrap;
  border-radius: 0;
}
.nav-dropdown li a:hover,
.nav-dropdown li a:focus {
  color: var(--color-orange);
  background-color: rgba(255,147,30,0.12);
  text-decoration: none;
}
.nav-dropdown li a.active {
  color: var(--color-orange);
  font-weight: 700;
}
.nav-dropdown li:first-child a {
  font-weight: 700;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 0.6rem;
  margin-bottom: 0.2rem;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0;
}

.nav-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--color-white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}

.nav-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Body padding for fixed nav */
body {
  padding-top: var(--nav-height);
}

/* --------------------------------------------------------------------------
   7. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background-color var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn:focus-visible {
  outline: 2px solid var(--color-orange);
  outline-offset: 3px;
}
.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background-color: var(--color-orange);
  color: var(--color-navy);
  border-color: var(--color-orange);
}
.btn--primary:hover, .btn--primary:focus {
  background-color: var(--color-orange-dark);
  border-color: var(--color-orange-dark);
  color: var(--color-navy);
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(255,147,30,0.4);
}

.btn--outline {
  background-color: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.5);
}
.btn--outline:hover, .btn--outline:focus {
  background-color: rgba(255,255,255,0.08);
  border-color: var(--color-white);
  color: var(--color-white);
  text-decoration: none;
}

.btn--outline-teal {
  background-color: transparent;
  color: var(--color-orange);
  border-color: var(--color-orange);
}
.btn--outline-teal:hover, .btn--outline-teal:focus {
  background-color: var(--color-orange);
  color: var(--color-navy);
  text-decoration: none;
}

.btn--outline-navy {
  background-color: transparent;
  color: var(--color-navy);
  border-color: var(--color-navy);
}
.btn--outline-navy:hover, .btn--outline-navy:focus {
  background-color: var(--color-navy);
  color: var(--color-white);
  text-decoration: none;
}

.btn--lg {
  padding: 1.125rem 2.25rem;
  font-size: 1.0625rem;
}

.btn--sm {
  padding: 0.5rem 1.125rem;
  font-size: 0.875rem;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* --------------------------------------------------------------------------
   8. HERO SECTION
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: min(85vh, 820px);
  background-color: var(--color-navy);
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(12,40,89,0.90) 0%, rgba(12,40,89,0.60) 55%, rgba(12,40,89,0.40) 100%),
    radial-gradient(ellipse 70% 60% at 75% 50%, rgba(102,165,61,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-orange), rgba(255,147,30,0.2));
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.25rem 4rem;
  width: 100%;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: 1.25rem;
  padding: 0.35rem 0.875rem;
  border: 1px solid rgba(255,147,30,0.3);
  border-radius: 100px;
}

.hero-title {
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 820px;
  margin-bottom: 1.5rem;
}

.hero-title .accent {
  color: var(--color-teal);
}

/* "Energy Without Limits." tagline — Emergent Green on deep navy: ~4.96:1 contrast (WCAG AA) */
.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--color-teal);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.72);
  max-width: 600px;
  line-height: 1.65;
  margin-bottom: 2.5rem;
}

/* rgba(255,255,255,0.60) on #0B2A44 navy = ~7:1 contrast (WCAG AA) */
.hero-credibility {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.60);
  margin-bottom: 2rem;
}

/* Page heroes (non-homepage) */
.page-hero {
  background-color: var(--color-navy);
  background-size: cover;
  background-position: center center;
  padding: 4rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(12,40,89,0.88) 0%, rgba(12,40,89,0.65) 60%, rgba(12,40,89,0.50) 100%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-orange), rgba(255,147,30,0.15));
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.page-hero .lead {
  color: rgba(255,255,255,0.7);
  max-width: 640px;
}

/* Split layout for about page: 60% copy, 40% image */
.page-hero--split .page-hero-inner {
  display: grid;
  grid-template-columns: 60fr 40fr;
  gap: 3rem;
  align-items: center;
}
.page-hero--split .page-hero .lead {
  max-width: 100%;
}
.page-hero-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  display: block;
}
@media (max-width: 768px) {
  .page-hero--split .page-hero-inner {
    grid-template-columns: 1fr;
  }
  .page-hero-img {
    height: 240px;
    order: -1;
  }
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}
.breadcrumb a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}
.breadcrumb a:hover { color: var(--color-orange); }
.breadcrumb span { color: rgba(255,255,255,0.3); }
.breadcrumb .current { color: var(--color-teal-light); }

/* --------------------------------------------------------------------------
   9. STATS BAR
   -------------------------------------------------------------------------- */
.stats-bar {
  background-color: var(--color-navy-mid);
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255,147,30,0.12);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}

.stat-item {
  padding: 1rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--color-teal);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.stat-note {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
  margin-top: 0.2rem;
}

/* --------------------------------------------------------------------------
   10. CARDS
   -------------------------------------------------------------------------- */
.card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow var(--transition), transform var(--transition);
  text-align: left;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card--dark {
  background-color: var(--color-navy-mid);
  border-color: rgba(255,255,255,0.06);
}
.card--dark h3, .card--dark h4 {
  color: var(--color-white);
}
.card--dark p {
  color: rgba(255,255,255,0.65);
}

.card--feature {
  border-top: 3px solid var(--color-teal);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(47,168,79,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}

.card-icon--dark {
  background: rgba(47,168,79,0.15);
}

.card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.card p {
  font-size: 0.95rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 1.25rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-orange);
  text-decoration: none;
  transition: gap var(--transition);
}
.card-link:hover {
  gap: 0.625rem;
  color: var(--color-orange-dark);
  text-decoration: none;
}

.card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
  display: block;
}

/* Solution cards grid */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

/* --------------------------------------------------------------------------
   11. AUDIENCE ROUTING SECTION
   -------------------------------------------------------------------------- */
.routing-section {
  background-color: var(--color-navy);
  padding: var(--section-pad) 0;
}

.routing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  align-items: stretch;
}

.routing-panel {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
  height: 100%;
}

.routing-panel--investor {
  background-color: var(--color-navy-mid);
  border-right: 1px solid rgba(255,147,30,0.15);
}

.routing-panel--commercial {
  background-color: var(--color-navy-light);
}

.routing-panel-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-teal);
  background: rgba(47,168,79,0.1);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  width: fit-content;
}

.routing-panel h3 {
  color: var(--color-white);
  font-size: 1.5rem;
}

.routing-panel p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
}

.routing-panel ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.routing-panel ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

.routing-panel ul li::before {
  content: '•';
  color: var(--color-teal);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05em;
}

/* --------------------------------------------------------------------------
   12. STAGE INDICATOR (Pilot Pipeline)
   -------------------------------------------------------------------------- */
.stage-track {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 1rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
}

.stage-step {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
}

.stage-step-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-shrink: 0;
  gap: 0.35rem;
}

.stage-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--color-slate-light);
  background: transparent;
  flex-shrink: 0;
}

.stage-dot.completed {
  background: var(--color-teal);
  border-color: var(--color-teal);
}

.stage-dot.current {
  background: transparent;
  border-color: var(--color-teal);
  box-shadow: 0 0 0 3px rgba(47,168,79,0.25);
}

.stage-name {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-slate);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.stage-name.active {
  color: var(--color-teal);
}

.stage-line {
  flex: 1;
  height: 2px;
  background: var(--color-bg-alt);
  margin: 0 0.35rem;
  min-width: 24px;
}
.stage-line.filled {
  background: var(--color-teal);
}

/* Pilot site table/cards */
.pilot-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.pilot-table th {
  background: var(--color-navy);
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.75rem 1rem;
  text-align: left;
}

.pilot-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--color-bg-alt);
  color: var(--color-text);
  vertical-align: middle;
}

.pilot-table tr:last-child td {
  border-bottom: none;
}

.pilot-table tr:hover td {
  background-color: rgba(47,168,79,0.03);
}

.stage-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.stage-badge--identified,
.stage-badge--feasibility,
.stage-badge--site-assessment,
.stage-badge--engineering,
.stage-badge--permitting,
.stage-badge--interconnect-queue,
.stage-badge--operational {
  background: rgba(74, 79, 85, 0.10);
  color: var(--color-slate-dark);
  border: 1px solid rgba(74,79,85,0.2);
}

/* Legacy alias — keep for backward compat */
.stage-badge--interconnect {
  background: rgba(74, 79, 85, 0.10);
  color: var(--color-slate-dark);
  border: 1px solid rgba(74,79,85,0.2);
}

/* --------------------------------------------------------------------------
   13. FORMS
   -------------------------------------------------------------------------- */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: 1.25rem;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

.form-label .required {
  color: var(--color-danger);
  margin-left: 0.25rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  color: var(--color-text);
  background-color: var(--color-white);
  border: 1.5px solid #CDD3DA;
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-orange);
  box-shadow: 0 0 0 3px rgba(255,147,30,0.15);
}

.form-control::placeholder {
  color: var(--color-slate-light);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236C757D' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-hint {
  font-size: 0.8rem;
  color: var(--color-slate);
  margin-top: 0.25rem;
}

/* Tab switcher for contact forms */
.form-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 2.5rem;
  border-radius: var(--radius-md);
  background: var(--color-bg-alt);
  padding: 4px;
  overflow-x: auto;
}

.form-tab-btn {
  flex: 1;
  min-width: 140px;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-slate);
  background: transparent;
  border: none;
  border-radius: calc(var(--radius-md) - 2px);
  cursor: pointer;
  transition: background-color var(--transition), color var(--transition);
  white-space: nowrap;
  text-align: center;
}

.form-tab-btn.active {
  background: var(--color-white);
  color: var(--color-navy);
  box-shadow: var(--shadow-sm);
}

.form-panel {
  display: none;
}
.form-panel.active {
  display: block;
}

/* --------------------------------------------------------------------------
   14. PARTNERS SECTION
   -------------------------------------------------------------------------- */

/* Agingo featured block */
.partner-featured {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}
.partner-featured-inner {
  text-align: center;
  background: var(--color-white);
  border: 2px solid var(--color-orange);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  max-width: 420px;
  width: 100%;
}
.partner-featured-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-teal-dark);
  background: rgba(0, 180, 216, 0.1);
  border: 1px solid rgba(0, 180, 216, 0.3);
  border-radius: 100px;
  padding: 0.3rem 0.9rem;
  margin-bottom: 1.25rem;
}
.partner-featured-logo {
  max-height: 56px;
  max-width: 200px;
  width: auto;
  display: block;
  margin: 0 auto 1rem;
  object-fit: contain;
}
.partner-featured-desc {
  font-size: 0.875rem;
  color: var(--color-slate);
  margin: 0;
  line-height: 1.6;
}

/* Partner logo grid */
.partner-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
  align-items: center;
}
.partner-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.25rem 1.75rem;
  width: 180px;
  height: 100px;
  transition: box-shadow 0.2s, border-color 0.2s;
  text-decoration: none;
}
.partner-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-orange);
}
.partner-card img {
  max-width: 130px;
  max-height: 64px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* --------------------------------------------------------------------------
   15. SECTION DIVIDERS & DECORATIVE
   -------------------------------------------------------------------------- */
.divider {
  width: 60px;
  height: 3px;
  background: var(--color-teal);
  border-radius: 2px;
  margin: 1rem 0 1.75rem;
}
.centered .divider {
  margin-left: auto;
  margin-right: auto;
}

/* --------------------------------------------------------------------------
   15. CTA BAND
   -------------------------------------------------------------------------- */
.cta-band {
  background-color: var(--color-navy);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 120% at 50% 0%, rgba(255,147,30,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.cta-band-inner {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  color: var(--color-white);
  margin-bottom: 1rem;
}

.cta-band p {
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
}

/* --------------------------------------------------------------------------
   16. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--color-navy);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-tagline {
  font-weight: 700;
  color: var(--color-teal-light);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  margin-top: 1rem;
  max-width: 280px;
  line-height: 1.7;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-brand-logo .mark {
  width: 32px;
  height: 32px;
  background: var(--color-orange);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
  color: var(--color-navy);
}
.footer-brand-logo .name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-col ul li a:hover {
  color: var(--color-orange);
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-bottom-links a:hover {
  color: var(--color-orange);
}

/* --------------------------------------------------------------------------
   17. SCROLL ANIMATIONS
   -------------------------------------------------------------------------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* --------------------------------------------------------------------------
   18. PAGE-SPECIFIC: ABOUT
   -------------------------------------------------------------------------- */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.leadership-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow var(--transition), transform var(--transition);
}
.leadership-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.leadership-photo {
  width: 100%;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-mid) 100%);
  position: relative;
}

.leadership-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.leadership-photo-initials {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-teal);
  letter-spacing: -0.04em;
  opacity: 0.6;
}

.leadership-info {
  padding: 1.5rem;
}

.leadership-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.25rem;
}

.leadership-founder {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-navy);
}

.leadership-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-teal);
  margin-bottom: 0.875rem;
}

.leadership-bio {
  font-size: 0.9rem;
  color: var(--color-slate);
  line-height: 1.65;
}

/* Mission/Vision cards */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
  align-items: stretch;
}

.mv-card {
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-teal);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.mv-card-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 0.875rem;
}

.mv-card blockquote {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.65;
  border: none;
  padding: 0;
  margin: 0;
}

/* --------------------------------------------------------------------------
   19. PAGE-SPECIFIC: INVESTORS
   -------------------------------------------------------------------------- */

/* REMOVED - data room deprecated */
/*
.data-room-box {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  border: 1px solid rgba(47,168,79,0.25);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.data-room-box h3 {
  color: var(--color-white);
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.data-room-box p {
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  margin: 0 auto 2rem;
}
*/

/* REMOVED - data room deprecated */
/*
.data-room-icon {
  width: 64px;
  height: 64px;
  background: rgba(47,168,79,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
}
*/

.ir-contact-section {
  background: var(--color-navy);
  padding: 4rem 0;
  text-align: center;
}
.ir-contact-section h2 {
  color: var(--color-white);
  margin-bottom: 1rem;
}
.ir-contact-section p {
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto 2rem;
}
.ir-email-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.ir-email-list a {
  color: var(--color-teal-light);
  font-size: 0.95rem;
  text-decoration: none;
}
.ir-email-list a:hover {
  color: var(--color-teal);
  text-decoration: underline;
}

.pull-quote {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--color-navy);
  border-left: 4px solid var(--color-teal);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: rgba(47,168,79,0.06);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  line-height: 1.4;
}

.hero-tagline-line {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-teal-light);
  margin: -0.5rem 0 1rem;
  letter-spacing: 0.02em;
}

.thesis-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.thesis-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
}

.thesis-item-number {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--color-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--color-teal);
}

.thesis-item-content h4 {
  font-size: 1rem;
  margin-bottom: 0.375rem;
}

.thesis-item-content p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   20. PAGE-SPECIFIC: NEWS
   -------------------------------------------------------------------------- */
.news-empty {
  text-align: center;
  padding: 5rem 2rem;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 2px dashed var(--color-bg-alt);
}

.news-empty-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  opacity: 0.4;
}

.news-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.news-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--color-slate);
}

.news-card-tag {
  background: rgba(47,168,79,0.1);
  color: var(--color-teal-dark);
  padding: 0.2rem 0.625rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --------------------------------------------------------------------------
   21. PAGE-SPECIFIC: 404
   -------------------------------------------------------------------------- */
.error-page {
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--color-navy);
  padding: 4rem 1.25rem;
}

.error-code {
  font-size: clamp(6rem, 20vw, 12rem);
  font-weight: 900;
  color: var(--color-teal);
  line-height: 1;
  opacity: 0.15;
  letter-spacing: -0.05em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  pointer-events: none;
  user-select: none;
}

.error-content {
  position: relative;
  z-index: 1;
}

.error-content h1 {
  color: var(--color-white);
  margin-bottom: 1rem;
}

.error-content p {
  color: rgba(255,255,255,0.6);
  max-width: 420px;
  margin: 0 auto 2.5rem;
}

/* --------------------------------------------------------------------------
   22. PRIVACY PAGE
   -------------------------------------------------------------------------- */
.prose {
  max-width: 780px;
  margin: 0 auto;
}

.prose h2 {
  font-size: 1.4rem;
  margin-top: 2.5rem;
  margin-bottom: 0.875rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-bg-alt);
}
.prose h2:first-child {
  margin-top: 0;
  border-top: none;
  padding-top: 0;
}

.prose h3 {
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.625rem;
}

.prose ul, .prose ol {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.prose ol { list-style: decimal; }
.prose li { margin-bottom: 0.35rem; }

.prose p { color: var(--color-slate-dark); }

/* --------------------------------------------------------------------------
   23. PARTNER CTA SECTION
   -------------------------------------------------------------------------- */
.partner-cta {
  background: linear-gradient(135deg, var(--color-navy-mid) 0%, var(--color-navy-light) 100%);
  border-radius: var(--radius-lg);
  padding: 3rem;
  border: 1px solid rgba(255,147,30,0.15);
}

.partner-cta h3 {
  color: var(--color-white);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.partner-cta p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.75rem;
}

/* --------------------------------------------------------------------------
   24. INLINE CALLOUT / NOTICE
   -------------------------------------------------------------------------- */
.notice {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.notice--info {
  background: rgba(47,168,79,0.08);
  border-left: 3px solid var(--color-teal);
  color: var(--color-navy);
}

.notice--warning {
  background: rgba(255,193,7,0.1);
  border-left: 3px solid #FFC107;
  color: #856404;
}

/* --------------------------------------------------------------------------
   25. RESPONSIVE — 768px breakpoint
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) { border-bottom: none; }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 3.5rem;
    --nav-height: 64px;
  }

  /* Nav */
  .nav-hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-navy);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 0.5rem 0 2rem;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 999;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links > li {
    width: 100%;
  }

  .nav-links a {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    border-radius: 0;
    text-align: left;
  }

  .nav-links li:last-child a {
    margin-top: 0;
    text-align: left;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    border-radius: 0;
    color: rgba(255,255,255,0.9);
  }
  .nav-chevron {
    margin-left: auto;
  }
  .nav-dropdown {
    position: static;
    background: rgba(0,0,0,0.15);
    border: none;
    border-top: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    min-width: auto;
    width: 100%;
  }
  /* Prevent desktop hover from conflicting with click-based accordion */
  .nav-has-dropdown:hover .nav-dropdown {
    display: none;
  }
  .nav-has-dropdown .nav-dropdown.open {
    display: block;
  }
  .nav-dropdown li a {
    padding: 0.75rem 1.5rem 0.75rem 2.5rem;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    border-radius: 0;
    text-align: left;
  }
  .nav-dropdown li:first-child a {
    padding-bottom: 0.75rem;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }
  .nav-has-dropdown {
    position: static;
  }

  /* Grids */
  .grid--2,
  .grid--3,
  .solutions-grid,
  .leadership-grid,
  .mv-grid {
    grid-template-columns: 1fr;
  }

  .routing-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding: 3.5rem 1.25rem;
  }

  .partner-cta {
    padding: 2rem 1.5rem;
  }

  .thesis-item {
    flex-direction: column;
    gap: 0.875rem;
  }

  .pilot-table {
    font-size: 0.82rem;
  }
  .pilot-table th, .pilot-table td {
    padding: 0.625rem 0.75rem;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .stat-item:last-child { border-bottom: none; }

  .btn-group {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-group .btn {
    justify-content: center;
  }

  .form-tabs {
    flex-direction: column;
  }

  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }

  .routing-panel {
    padding: 2rem 1.5rem;
  }
}

/* --------------------------------------------------------------------------
   26. PRINT
   -------------------------------------------------------------------------- */
@media print {
  .site-nav,
  .nav-hamburger,
  .cta-band,
  .site-footer { display: none; }

  body { padding-top: 0; }
  a { color: var(--color-navy); }
}

/* --------------------------------------------------------------------------
   HERO 2-COLUMN LAYOUT
   -------------------------------------------------------------------------- */
.hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
}
@media (min-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr 200px;
  }
}

.hero-visual {
  display: none;
}
@media (min-width: 1024px) {
  .hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.85;
  }
}

/* --------------------------------------------------------------------------
   INTEGRATED ADVANTAGE SECTION
   -------------------------------------------------------------------------- */
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .advantage-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

.advantage-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.25rem;
}

.advantage-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(47,168,79,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.advantage-item h3 {
  font-size: 1.05rem;
  color: var(--color-navy);
  margin-bottom: 0.4rem;
}

.advantage-item p {
  font-size: 0.93rem;
  color: var(--color-slate);
  line-height: 1.65;
  margin: 0;
}

/* --------------------------------------------------------------------------
   CARD STATUS BADGE
   -------------------------------------------------------------------------- */
.card-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.625rem;
  border-radius: 100px;
  margin-bottom: 0.625rem;
}
.card-badge--active {
  background: rgba(47,168,79,0.12);
  color: var(--color-teal-dark);
}
.card-badge--dev {
  background: rgba(242,140,40,0.1);
  color: #9e5b14;
}
