/* ═══════════════════════════════════════════
   DESIGN SYSTEM
═══════════════════════════════════════════ */
:root {
  --deep-green: #064e3b;
  --mid-green: #065f46;
  --light-green: #059669;
  --teal: #0d9488;
  --teal-light: #14b8a6;
  --cream: #f8f6f1;
  --ash: #e8e6e1;
  --ash-dark: #c8c5be;
  --white: #fafaf9;
  --charcoal: #1a1a1a;
  --gray: #6b7280;
  --gray-light: #9ca3af;
  --gradient: linear-gradient(135deg, #064e3b 0%, #0d9488 100%);
  --gradient-soft: linear-gradient(135deg, #065f46 0%, #14b8a6 100%);
  --gradient-radial: radial-gradient(ellipse at top, #0f4c35 0%, #031e18 100%);
  --font-display: "Cormorant Garamond", serif;
  --font-body: "Outfit", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
  --nav-h: 120px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(6, 78, 59, 0.12);
  --shadow-lg: 0 16px 64px rgba(6, 78, 59, 0.2);
  --transition: all 0.28s 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 {
  font-family: var(--font-body);
  background: var(--charcoal);
  color: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page {
  display: block;
  animation: pageIn 0.4s ease;
  min-height: 100vh;
}

@keyframes pageIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  background: rgba(10, 20, 16, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(20, 184, 166, 0.12);
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 0 5%;
  gap: 2rem;
}

.logo-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  padding: 4px;
  position: relative;
  overflow: visible;
  flex-shrink: 0;
  z-index: 1100;
}

.logo-circle:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
}

.logo-circle img {
  max-width: 100%;
  max-height: 100%;
  height: auto !important;
  width: auto;
  object-fit: contain;
}

.nav-logo {
  text-decoration: none;
  z-index: 10;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  flex: 1;
  justify-content: center;
}

.nav-link {
  padding: 6px 12px;
  border-radius: 6px;
  color: rgba(248, 246, 241, 0.72);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--teal-light);
  background: rgba(20, 184, 166, 0.08);
}

.nav-cta {
  background: var(--gradient);
  color: #fff;
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.3);
}

.nav-mobile-btn {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(6, 20, 15, 0.97);
  backdrop-filter: blur(20px);
  padding: 1.5rem;
  z-index: 999;
  border-bottom: 1px solid rgba(20, 184, 166, 0.15);
}

.mobile-menu.open {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-menu .nav-link {
  font-size: 1rem;
  padding: 10px 12px;
}

/* ═══════════════════════════════════════════
   UTILITIES
═══════════════════════════════════════════ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.container-wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 5%;
}

.section {
  padding: 100px 0;
}

.section-sm {
  padding: 60px 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-light);
  padding: 5px 14px;
  border-radius: 100px;
  border: 1px solid rgba(20, 184, 166, 0.3);
  background: rgba(20, 184, 166, 0.06);
  margin-bottom: 1.5rem;
}

.tag::before {
  content: "GHB";
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.72rem;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  line-height: 1.1;
  font-weight: 700;
}

.display-xl {
  font-size: clamp(1rem, 8vw, 4rem);
  letter-spacing: -0.02em;
  line-height: 1.02;
}

.display-lg {
  font-size: clamp(1.8rem, 6vw, 4rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.display-md {
  font-size: clamp(1.6rem, 5vw, 2.8rem);
  letter-spacing: -0.015em;
}

.lead {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.7;
  color: rgba(248, 246, 241, 0.7);
  font-weight: 400;
}

.text-gradient {
  background: linear-gradient(135deg, #34d399, #14b8a6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border: none;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 20px rgba(6, 94, 59, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(13, 148, 136, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--teal-light);
  border: 1px solid rgba(20, 184, 166, 0.35);
}

.btn-outline:hover {
  background: rgba(20, 184, 166, 0.08);
  border-color: var(--teal-light);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--cream);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(20, 184, 166, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(20, 184, 166, 0.3),
    transparent
  );
}

.divider {
  width: 60px;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
  margin: 1.5rem 0;
}

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

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* ═══════════════════════════════════════════
   MOLECULAR BACKGROUND
═══════════════════════════════════════════ */
.molecular-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.mol-dot {
  position: absolute;
  border-radius: 50%;
  background: var(--teal-light);
  opacity: 0.15;
  animation: molFloat var(--dur, 8s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.mol-line {
  position: absolute;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(20, 184, 166, 0.15),
    transparent
  );
  height: 1px;
  transform-origin: left center;
  animation: molPulse 4s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

@keyframes molFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.1;
  }

  50% {
    transform: translate(var(--tx, 10px), var(--ty, -15px)) scale(1.1);
    opacity: 0.2;
  }
}

@keyframes molPulse {
  0%,
  100% {
    opacity: 0.08;
  }

  50% {
    opacity: 0.18;
  }
}

.hex-grid {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      60deg,
      rgba(20, 184, 166, 0.03) 0,
      rgba(20, 184, 166, 0.03) 1px,
      transparent 1px,
      transparent 30px
    ),
    repeating-linear-gradient(
      120deg,
      rgba(20, 184, 166, 0.03) 0,
      rgba(20, 184, 166, 0.03) 1px,
      transparent 1px,
      transparent 30px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(20, 184, 166, 0.03) 0,
      rgba(20, 184, 166, 0.03) 1px,
      transparent 1px,
      transparent 30px
    );
}

/* ═══════════════════════════════════════════
   HOME — HERO
═══════════════════════════════════════════ */
.hero {
  min-height: 85vh;
  background: var(--gradient-radial);
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-light);
  padding: 7px 16px;
  border-radius: 100px;
  background: rgba(20, 184, 166, 0.1);
  border: 1px solid rgba(20, 184, 166, 0.25);
  margin-bottom: 2rem;
  animation: fadeUp 0.6s ease both;
}

.hero-tag .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal-light);
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.hero h1 {
  animation: fadeUp 0.6s ease 0.1s both;
  margin-bottom: 1.5rem;
}

.hero .lead {
  animation: fadeUp 0.6s ease 0.2s both;
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  animation: fadeUp 0.6s ease 0.3s both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  animation: fadeUp 0.6s ease 0.4s both;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--teal-light);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(248, 246, 241, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* DNA helix visual */
.helix-visual {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  height: 500px;
  opacity: 0.12;
}

.helix-visual svg {
  width: 100%;
  height: 100%;
}

/* ═══════════════════════════════════════════
   HOME — SNAPSHOT CARDS
═══════════════════════════════════════════ */
.snapshot-section {
  background: #0a1410;
  padding: 80px 0;
}

.snap-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.snap-card:hover {
  background: rgba(6, 94, 59, 0.12);
  border-color: rgba(20, 184, 166, 0.25);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(6, 78, 59, 0.3);
}

.snap-icon {
  width: 52px;
  height: 52px;
  background: rgba(20, 184, 166, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(20, 184, 166, 0.2);
  transition: var(--transition);
}

.snap-card:hover .snap-icon {
  background: rgba(20, 184, 166, 0.18);
  transform: scale(1.08);
}

.snap-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.snap-card p {
  font-size: 0.88rem;
  color: rgba(248, 246, 241, 0.55);
  line-height: 1.6;
}

.snap-badge {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  padding: 3px 10px;
  border-radius: 4px;
  background: rgba(20, 184, 166, 0.1);
  color: var(--teal-light);
  border: 1px solid rgba(20, 184, 166, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ═══════════════════════════════════════════
   HOME — PROBLEM / SOLUTION
═══════════════════════════════════════════ */
.prob-sol {
  background: linear-gradient(180deg, #0a1410 0%, #031e18 100%);
  padding: 100px 0;
}

.prob-box {
  background: rgba(255, 60, 60, 0.04);
  border: 1px solid rgba(255, 80, 80, 0.12);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.sol-box {
  background: rgba(6, 94, 59, 0.08);
  border: 1px solid rgba(20, 184, 166, 0.15);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.prob-item,
.sol-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.prob-item:last-child,
.sol-item:last-child {
  border-bottom: none;
}

.prob-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 1.2rem;
}

.prob-item h4,
.sol-item h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.prob-item p,
.sol-item p {
  font-size: 0.82rem;
  color: rgba(248, 246, 241, 0.5);
}

/* ═══════════════════════════════════════════
   HOME — TECH PREVIEW
═══════════════════════════════════════════ */
.tech-preview {
  background: #031e18;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.tech-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.tech-card:hover {
  border-color: rgba(20, 184, 166, 0.25);
  background: rgba(20, 184, 166, 0.04);
  transform: translateY(-4px);
}

.tech-num {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: rgba(20, 184, 166, 0.5);
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

/* ═══════════════════════════════════════════
   HOME — PIPELINE PREVIEW
═══════════════════════════════════════════ */
.pipeline-preview {
  background: linear-gradient(180deg, #031e18 0%, #0a1410 100%);
  padding: 100px 0;
}

.phase-track {
  display: flex;
  gap: 0;
  overflow-x: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.phase-item {
  flex: 1;
  min-width: 160px;
  padding: 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  transition: var(--transition);
}

.phase-item:last-child {
  border-right: none;
}

.phase-item.active {
  background: rgba(6, 94, 59, 0.15);
  border-top: 2px solid var(--teal-light);
}

.phase-num {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--teal-light);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.phase-label {
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.phase-sub {
  font-size: 0.75rem;
  color: rgba(248, 246, 241, 0.45);
}

.phase-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
}

.phase-item.active .phase-dot {
  background: var(--teal-light);
}

/* ═══════════════════════════════════════════
   HOME — IMPACT BANNER
═══════════════════════════════════════════ */
.impact-banner {
  background: var(--gradient-radial);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.impact-banner h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: -0.025em;
  line-height: 1.05;
}

/* ═══════════════════════════════════════════
   HOME — INVESTOR SECTION
═══════════════════════════════════════════ */
.investor-home {
  background: #0a1410;
  padding: 100px 0;
}

.market-pill {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.market-pill:hover {
  border-color: rgba(20, 184, 166, 0.2);
  background: rgba(20, 184, 166, 0.04);
}

.market-val {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--teal-light);
  min-width: 100px;
}

.market-label {
  font-size: 0.85rem;
  color: rgba(248, 246, 241, 0.6);
}

/* ═══════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════ */
.page-hero {
  background: var(--gradient-radial);
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}

.leadership-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.leadership-card:hover {
  border-color: rgba(20, 184, 166, 0.2);
  transform: translateY(-4px);
}

.leader-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #064e3b 0%, #0d9488 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.leader-info {
  padding: 1.5rem;
}

.leader-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.leader-title {
  font-size: 0.82rem;
  color: var(--teal-light);
}

.leader-bio {
  font-size: 0.83rem;
  color: rgba(248, 246, 241, 0.55);
  margin-top: 0.75rem;
  line-height: 1.6;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.value-num {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--teal-light);
  min-width: 32px;
  padding-top: 4px;
}

/* ═══════════════════════════════════════════
   TECHNOLOGY PAGE
═══════════════════════════════════════════ */
.tab-nav {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding-bottom: 1px;
}

.tab-btn {
  padding: 10px 20px;
  border-radius: 8px 8px 0 0;
  background: none;
  border: none;
  color: rgba(248, 246, 241, 0.5);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}

.tab-btn.active {
  color: var(--teal-light);
  border-bottom-color: var(--teal-light);
}

.tab-btn:hover {
  color: var(--cream);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: pageIn 0.3s ease;
}

.tech-diagram {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  position: relative;
}

.diagram-flow {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.flow-step {
  background: rgba(20, 184, 166, 0.08);
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  min-width: 140px;
  text-align: center;
  position: relative;
}

.flow-arrow {
  color: var(--teal-light);
  font-size: 1.2rem;
  opacity: 0.6;
}

.flow-num {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--teal-light);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.flow-label {
  font-size: 0.85rem;
  font-weight: 600;
}

/* ═══════════════════════════════════════════
   PIPELINE PAGE
═══════════════════════════════════════════ */
.timeline {
  position: relative;
  padding-left: 3rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    180deg,
    var(--teal-light),
    rgba(20, 184, 166, 0.1)
  );
}

.tl-item {
  position: relative;
  padding-bottom: 3rem;
}

.tl-dot {
  position: absolute;
  left: -3.4rem;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--teal-light);
  border: 3px solid #031e18;
  box-shadow: 0 0 16px rgba(20, 184, 166, 0.5);
}

.tl-item.pending .tl-dot {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: none;
}

.tl-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--teal-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.tl-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.tl-desc {
  font-size: 0.88rem;
  color: rgba(248, 246, 241, 0.6);
  line-height: 1.6;
  max-width: 620px;
}

.tl-milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.milestone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: rgba(248, 246, 241, 0.6);
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.milestone.done {
  color: var(--teal-light);
}

.milestone.done::before {
  content: "\\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--teal-light);
}

.milestone:not(.done)::before {
  content: "\\f111";
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
  color: rgba(255, 255, 255, 0.3);
}

.progress-bar-wrap {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 100px;
  height: 6px;
  margin-top: 1.5rem;
  overflow: hidden;
  max-width: 400px;
}

.progress-bar {
  height: 100%;
  border-radius: 100px;
  background: var(--gradient-soft);
  transition: width 1s ease;
}

/* ═══════════════════════════════════════════
   IMPACT PAGE
═══════════════════════════════════════════ */
.impact-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.impact-stat {
  background: #0a1410;
  padding: 3rem 2rem;
  text-align: center;
}

.impact-stat-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--teal-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.impact-stat-label {
  font-size: 0.88rem;
  color: rgba(248, 246, 241, 0.55);
}

.sdg-badge {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  font-family: var(--font-body);
}

/* ═══════════════════════════════════════════
   INVESTOR PAGE
═══════════════════════════════════════════ */
.fund-use-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.fund-pct {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--teal-light);
  min-width: 70px;
}

.fund-bar-wrap {
  flex: 1;
  height: 4px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.fund-bar {
  height: 100%;
  background: var(--gradient-soft);
  border-radius: 100px;
}

.risk-item {
  display: flex;
  gap: 1.2rem;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  margin-bottom: 0.75rem;
  transition: var(--transition);
}

.risk-item:hover {
  border-color: rgba(20, 184, 166, 0.15);
}

.risk-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   PARTNERS PAGE
═══════════════════════════════════════════ */
.partner-cat {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.partner-cat:hover {
  border-color: rgba(20, 184, 166, 0.15);
}

.partner-cat-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal-light);
  font-family: var(--font-mono);
  margin-bottom: 1rem;
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.partner-logo {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(248, 246, 241, 0.7);
  transition: var(--transition);
}

.partner-logo:hover {
  border-color: rgba(20, 184, 166, 0.25);
  color: var(--cream);
}

/* ═══════════════════════════════════════════
   NEWS PAGE
═══════════════════════════════════════════ */
.news-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  border-color: rgba(20, 184, 166, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.news-img {
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.news-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-cat {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal-light);
  margin-bottom: 0.75rem;
}

.news-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.news-excerpt {
  font-size: 0.83rem;
  color: rgba(248, 246, 241, 0.55);
  line-height: 1.6;
  flex: 1;
}

.news-date {
  font-size: 0.75rem;
  color: rgba(248, 246, 241, 0.35);
  margin-top: 1rem;
}

/* ═══════════════════════════════════════════
   CAREERS PAGE
═══════════════════════════════════════════ */
.job-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: var(--transition);
  margin-bottom: 0.75rem;
}

.job-card:hover {
  border-color: rgba(20, 184, 166, 0.2);
  background: rgba(20, 184, 166, 0.03);
  transform: translateX(4px);
}

.job-icon {
  width: 44px;
  height: 44px;
  background: rgba(20, 184, 166, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.job-info {
  flex: 1;
}

.job-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.job-meta {
  font-size: 0.78rem;
  color: rgba(248, 246, 241, 0.45);
}

.job-type {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(20, 184, 166, 0.25);
  color: var(--teal-light);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════ */
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  transition: var(--transition);
  appearance: none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: rgba(20, 184, 166, 0.4);
  background: rgba(20, 184, 166, 0.04);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.08);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(248, 246, 241, 0.3);
}

.contact-form select option {
  background: #0a1410;
}

.contact-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(248, 246, 241, 0.65);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

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

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.contact-info-item:hover {
  border-color: rgba(20, 184, 166, 0.15);
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(20, 184, 166, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
  background: #020e0a;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 60px 0 30px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.85rem;
  color: rgba(248, 246, 241, 0.4);
  max-width: 280px;
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(248, 246, 241, 0.4);
  margin-bottom: 1.2rem;
  font-weight: 600;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a,
.footer-links span {
  font-size: 0.85rem;
  color: rgba(248, 246, 241, 0.55);
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
}

.footer-links a:hover,
.footer-links span:hover {
  color: var(--teal-light);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(248, 246, 241, 0.3);
}

.footer-badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--teal-light);
  letter-spacing: 0.1em;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav-links {
    gap: 0rem;
  }

  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* ═══════════════════════════════════════════
   RESPONSIVE OVERRIDES
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav-links {
    gap: 0rem;
  }

  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 900px) {
  .site-nav {
    padding: 0 5%;
    gap: 1rem;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-mobile-btn {
    display: block;
  }

  .logo-circle {
    width: 64px !important;
    height: 64px !important;
    padding: 6px !important;
  }

  .logo-circle img {
    height: auto !important;
    width: 90% !important;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: calc(var(--nav-h) + 30px);
    padding-bottom: 60px;
    min-height: auto;
    text-align: center;
  }

  .hero-content {
    margin: 0 auto;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding-top: 2rem;
  }

  .impact-stat-grid {
    grid-template-columns: 1fr;
  }

  .phase-track {
    flex-direction: column;
  }

  .diagram-flow {
    flex-direction: column;
  }

  .flow-arrow {
    transform: rotate(90deg);
    margin: 0.5rem 0;
  }

  .helix-visual {
    display: none;
  }

  .leadership-card {
    max-width: 400px;
    margin: 0 auto;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 600px) {
  :root {
    --nav-h: 80px;
  }

  .logo-circle {
    width: 58px !important;
    height: 58px !important;
  }

  .section {
    padding: 60px 0;
  }

  .hero {
    padding-top: calc(var(--nav-h) + 20px);
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
  }

  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }

  .nav-mobile-btn svg {
    width: 24px;
    height: 24px;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
  }

  .card,
  .snap-card,
  .prob-box,
  .sol-box,
  .tech-card {
    padding: 1.5rem;
  }

  .job-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .job-type {
    align-self: flex-start;
  }
}

/* Glow effects */
.glow-teal {
  text-shadow: 0 0 40px rgba(20, 184, 166, 0.3);
}

.section-header {
  max-width: 640px;
  margin-bottom: 4rem;
}

.section-header-center {
  text-align: center;
  margin: 0 auto 4rem;
}

/* ═══════════════════════════════════════════
   IMPLEMENTATION JOURNEY
   Modern horizontal scroll for the 13 steps
═══════════════════════════════════════════ */
.journey-section {
  padding: 100px 0;
  background: #031e18;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.journey-wrapper {
  position: relative;
  width: 100%;
}

.journey-track {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding: 40px 0 60px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none; /* Hide scrollbar IE/Edge */
  scrollbar-width: none; /* Hide scrollbar Firefox */
}

.journey-track::-webkit-scrollbar {
  display: none; /* Hide scrollbar Chrome/Safari */
}

.journey-card {
  flex: 0 0 320px;
  scroll-snap-align: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  overflow: hidden;
}

.journey-card:hover {
  background: rgba(20, 184, 166, 0.05);
  border-color: rgba(20, 184, 166, 0.25);
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
}

.journey-step-num {
  position: absolute;
  top: -10px;
  right: 15px;
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 700;
  color: rgba(20, 184, 166, 0.05);
  line-height: 1;
  pointer-events: none;
}

.journey-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #000;
}

.journey-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: grayscale(0.2) brightness(0.9);
}

.journey-card:hover .journey-img-wrap img {
  transform: scale(1.1);
  filter: grayscale(0) brightness(1);
}

.journey-info h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.journey-info p {
  font-size: 0.85rem;
  color: rgba(248, 246, 241, 0.5);
  line-height: 1.6;
}

.journey-nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.journey-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.journey-nav-btn:hover {
  background: var(--teal);
  border-color: var(--teal-light);
  transform: scale(1.1);
}

/* ═══════════════════════════════════════════
   TEAM CAROUSEL
═══════════════════════════════════════════ */
.team-wrapper {
  position: relative;
  width: 100%;
}

.team-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 20px 0 40px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.team-track::-webkit-scrollbar {
  display: none;
}

.team-card {
  flex: 0 0 340px;
  scroll-snap-align: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.team-card:hover {
  background: rgba(20, 184, 166, 0.05);
  border-color: rgba(20, 184, 166, 0.25);
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.team-img-box {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
  background: #000;
}

.team-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0, 0.2, 1);
  filter: grayscale(0.15) contrast(1.1);
}

.team-card:hover .team-img-box img {
  transform: scale(1.1);
  filter: grayscale(0) contrast(1);
}

.team-social {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  gap: 0.5rem;
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition);
}

.team-card:hover .team-social {
  transform: translateY(0);
  opacity: 1;
}

.team-social-link {
  width: 36px;
  height: 36px;
  background: var(--teal);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition);
}

.team-social-link:hover {
  background: var(--teal-light);
  transform: scale(1.1);
}

.team-info {
  padding: 1.5rem;
  flex: 1;
}

.team-name {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.team-role {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--teal-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.team-bio {
  font-size: 0.83rem;
  color: rgba(248, 246, 241, 0.5);
  line-height: 1.6;
}

.team-nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.team-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.2rem;
}

.team-nav-btn:hover {
  background: var(--teal);
  border-color: var(--teal-light);
  transform: scale(1.1);
}

/* ═══════════════════════════════════════════
   AWARDS SECTION
═══════════════════════════════════════════ */
.awards-section {
  padding: 100px 0;
  background: #031e18;
  position: relative;
  overflow: hidden;
}

.awards-section::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -10%;
  width: 40%;
  height: 40%;
  background: radial-gradient(
    circle,
    rgba(20, 184, 166, 0.08) 0%,
    transparent 70%
  );
  z-index: 1;
}

.awards-track {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding: 40px 0 60px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.awards-track::-webkit-scrollbar {
  display: none;
}

.award-card {
  flex: 0 0 320px;
  scroll-snap-align: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  z-index: 2;
}

.award-card:hover {
  background: rgba(20, 184, 166, 0.05);
  border-color: rgba(20, 184, 166, 0.3);
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.award-badge {
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.badge-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(
    circle,
    rgba(20, 184, 166, 0.2) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: -1;
}

.badge-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  border: 4px solid rgba(255, 255, 255, 0.1);
}

.award-card:nth-child(2) .badge-circle {
  background: linear-gradient(135deg, #f59e0b 0%, #b45309 100%);
}

.award-card:nth-child(3) .badge-circle {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.award-card:nth-child(4) .badge-circle {
  background: linear-gradient(135deg, #10b981 0%, #047857 100%);
}

.badge-circle i {
  font-size: 2.5rem;
  color: #fff;
}

.award-year {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--teal-light);
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.award-card h4 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 1rem;
}

.award-org {
  font-size: 0.85rem;
  color: rgba(248, 246, 241, 0.5);
}
