@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --color-dark: #0a140d;
  --color-mid: #112617;
  --color-forest: #1c3823;
  --color-amber: #e68a00;
  --color-blue: #0077ff;
  --color-light: #f8f7f2;
  --color-white: #ffffff;
  --color-text-green: #2a4531;
  --color-border: rgba(255, 255, 255, 0.1);
  --color-border-dark: rgba(0, 0, 0, 0.1);

  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  --nav-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  color: var(--color-text-green);
  background-color: var(--color-white);
  line-height: 1.6;
}

body {
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

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

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

ul {
  list-style: none;
}

/* Base Classes */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center { text-align: center; }
.bg-dark { background-color: var(--color-dark); color: var(--color-white); }
.bg-mid { background-color: var(--color-mid); color: var(--color-white); }
.bg-light { background-color: var(--color-light); color: var(--color-text-green); }
.bg-white { background-color: var(--color-white); color: var(--color-text-green); }

.text-amber { color: var(--color-amber); }
.text-blue { color: var(--color-blue); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-family: var(--font-display);
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--color-amber);
  color: var(--color-dark);
}
.btn-primary:hover {
  background-color: #ff9d00;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-white);
}
.btn-outline:hover {
  background-color: var(--color-white);
  color: var(--color-dark);
}

.btn-dark {
  background-color: var(--color-dark);
  color: var(--color-white);
}
.btn-dark:hover {
  background-color: var(--color-forest);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  z-index: 1000;
  transition: all 0.3s ease;
  background-color: transparent;
  color: var(--color-white);
}

.navbar.scrolled, .navbar.bg-solid {
  background-color: rgba(10, 20, 13, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}

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

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

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-amber);
  transition: width 0.2s ease;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
}
.mobile-toggle svg {
  width: 28px;
  height: 28px;
}

/* Hero Pages */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background-color: var(--color-dark);
  padding-top: var(--nav-height);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--color-dark) 0%, transparent 100%);
  z-index: 1;
}

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

.hero-badge {
  display: inline-block;
  padding: 0.25rem 1rem;
  border-radius: 50px;
  background-color: rgba(230, 138, 0, 0.1);
  color: var(--color-amber);
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid rgba(230, 138, 0, 0.2);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 4rem;
  color: var(--color-white);
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

.page-hero {
  padding: 180px 0 100px;
  background-color: var(--color-dark);
  color: var(--color-white);
  text-align: center;
}
.page-hero h1 {
  font-size: 3.5rem;
}
.page-hero p {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.7);
  max-width: 700px;
  margin: 0 auto;
}

/* Sections */
.section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}
.section-header h2 {
  font-size: 2.5rem;
}
.section-header p {
  font-size: 1.125rem;
  color: inherit;
  opacity: 0.8;
}

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

/* Stat Strip */
.stat-strip {
  background-color: var(--color-forest);
  padding: 3rem 0;
  border-top: 1px solid var(--color-border);
}
.stat-item {
  text-align: center;
}
.stat-value {
  font-size: 2.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-amber);
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
}

/* Cards */
.card {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--color-border-dark);
  transition: all 0.3s ease;
}
.card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transform: translateY(-5px);
}

.bg-dark .card {
  background-color: rgba(255,255,255,0.03);
  border-color: var(--color-border);
  color: var(--color-white);
}

.card-top-accent {
  border-top: 4px solid var(--color-amber);
}

.feature-card {
  height: 100%;
}
.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

/* Process Timeline */
.timeline {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  width: 2px;
  background-color: var(--color-border-dark);
}
.timeline-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: 3rem;
}
.timeline-item:last-child {
  margin-bottom: 0;
}
.timeline-num {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background-color: var(--color-mid);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-display);
  z-index: 1;
}

/* Connectors */
.solution-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 1rem;
}
.solution-steps::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 50px;
  right: 50px;
  height: 2px;
  background: var(--color-border);
  z-index: 0;
}
.solution-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}
.solution-icon {
  width: 60px;
  height: 60px;
  background: var(--color-forest);
  border: 2px solid var(--color-amber);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.5rem;
  font-weight: bold;
}

/* Tables */
.data-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.data-table th, .data-table td {
  padding: 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border-dark);
}
.data-table th {
  background-color: var(--color-light);
  font-family: var(--font-display);
  font-weight: 600;
}

/* Team Grid */
.team-card {
  text-align: center;
}
.team-img-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1.5rem;
  aspect-ratio: 1;
}
.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.4s ease, transform 0.4s ease;
}
.team-card:hover .team-img-wrap img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}
.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: rgba(255,255,255,0.05);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-white);
  font-family: inherit;
}
.form-control:focus {
  outline: none;
  border-color: var(--color-amber);
  background-color: rgba(255,255,255,0.1);
}
textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Badges */
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}
.badge-planned { background-color: rgba(255,255,255,0.1); color: var(--color-white); }
.badge-active { background-color: rgba(0,119,255,0.2); color: var(--color-blue); }

/* Scroll Animation
   Elements are VISIBLE by default (no JS = content always readable).
   The .js-ready class (added synchronously in <head>) enables hiding + animation. */
.reveal-up {
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.js-ready .reveal-up {
  opacity: 0;
  transform: translateY(30px);
}
.js-ready .reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.js-ready .reveal-up.delay-100 { transition-delay: 100ms; }
.js-ready .reveal-up.delay-200 { transition-delay: 200ms; }
.js-ready .reveal-up.delay-300 { transition-delay: 300ms; }
.js-ready .reveal-up.delay-400 { transition-delay: 400ms; }

/* Infrastructure specific */
.infra-card {
  display: flex;
  flex-direction: column;
}
.infra-icon {
  margin-bottom: 1.5rem;
}

/* Footer */
.footer {
  background-color: var(--color-mid);
  color: var(--color-white);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--color-border);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--color-border);
}

.footer-tagline {
  opacity: 0.65;
  font-size: 0.9rem;
  max-width: 260px;
  line-height: 1.7;
  margin-bottom: 0;
}

.footer-heading {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--color-amber);
  margin-bottom: 1.25rem;
  font-family: var(--font-display);
  font-weight: 700;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
}

.footer-nav a {
  font-size: 0.9rem;
  opacity: 0.72;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.footer-nav a:hover {
  opacity: 1;
  color: var(--color-amber);
}

.footer-socials {
  display: flex;
  gap: 0.65rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.social-icon:hover {
  border-color: var(--color-amber);
  color: var(--color-amber);
  background-color: rgba(230,138,0,0.08);
}

.social-icon-light {
  color: rgba(30,50,35,0.45);
  border-color: rgba(30,50,35,0.15);
}
.social-icon-light:hover {
  color: var(--color-amber);
  border-color: var(--color-amber);
  background-color: rgba(230,138,0,0.08);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  opacity: 0.6;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a:hover {
  color: var(--color-amber);
  opacity: 1;
}

/* Download button */
.footer-download {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.75rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  background: transparent;
  color: rgba(255,255,255,0.55);
  font-family: var(--font-display);
  font-size: 0.825rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.4px;
}

.btn-download:hover {
  border-color: var(--color-amber);
  color: var(--color-amber);
  background-color: rgba(230,138,0,0.05);
}

.btn-download:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Profile social icons (under team cards) */
.profile-socials {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.team-card-large .profile-socials {
  justify-content: flex-start;
}

/* Image banner (full-width with overlay text) */
.img-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 360px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.img-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,20,13,0.90) 0%, rgba(10,20,13,0.55) 100%);
}
.img-banner-content {
  position: relative;
  z-index: 1;
  color: white;
  max-width: 760px;
  padding: 4rem 0;
}
.img-banner-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--color-amber);
  font-weight: 700;
  margin-bottom: 1rem;
}
.img-banner h2 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.15;
}
.img-banner p {
  color: rgba(255,255,255,0.78);
  font-size: 1.1rem;
  max-width: 560px;
  margin-bottom: 0;
}

/* Tech stack tags */
.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.5rem;
}
.tech-tag {
  font-size: 0.7rem;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 0.25rem 0.65rem;
  border-radius: 3px;
  background: rgba(230,138,0,0.12);
  color: var(--color-amber);
  border: 1px solid rgba(230,138,0,0.25);
}

/* Key capability blocks */
.capability-block {
  padding: 2.5rem;
  border-left: 4px solid var(--color-amber);
  background: var(--color-white);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: 2rem;
}
.capability-block:last-child { margin-bottom: 0; }
.capability-block h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--color-text-green);
}
.capability-block p {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-bottom: 0;
  line-height: 1.7;
}

/* Responsiveness */
@media (max-width: 1024px) {
  .hero h1 { font-size: 3rem; }
  .page-hero h1 { font-size: 3rem; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .solution-steps::before { display: none; }
  .solution-steps { flex-direction: column; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-tagline { max-width: 100%; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }

  /* Hero */
  .hero h1 { font-size: 2.25rem; }
  .hero-sub { font-size: 1rem; }
  .hero-actions { flex-wrap: wrap; }
  .hero-actions .btn { flex: 1 1 140px; }

  /* Page heroes */
  .page-hero { padding: 130px 0 60px; }
  .page-hero h1 { font-size: 2.25rem; }
  .page-hero p { font-size: 1rem; }

  /* Sections */
  .section { padding: 4rem 0; }
  .section-header h2 { font-size: 2rem; }
  .section-header { margin-bottom: 2.5rem; }

  /* Grids */
  .grid-2, .grid-3 { grid-template-columns: 1fr; }

  /* Navbar mobile */
  .mobile-toggle { display: flex; align-items: center; justify-content: center; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(10, 20, 13, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    flex-direction: column;
    padding: 1rem 1.5rem 1.75rem;
    gap: 0;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s ease;
    border-bottom: 1px solid var(--color-border);
  }
  .nav-links.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-link {
    padding: 0.75rem 0;
    font-size: 0.95rem;
    display: block;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    width: 100%;
  }
  .nav-links .btn {
    width: 100%;
    margin-top: 1rem;
    padding: 0.875rem;
    justify-content: center;
    text-align: center;
  }

  /* Stats */
  .stat-strip .grid-4 { grid-template-columns: 1fr 1fr; }
  .stat-value { font-size: 2rem; }

  /* Tables */
  .data-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 2rem; }
  .footer-brand { grid-column: auto; }
  .footer-tagline { max-width: 100%; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }

  /* Hero */
  .hero h1 { font-size: 1.875rem; line-height: 1.15; }
  .hero-sub { font-size: 0.9rem; }
  .hero-actions { gap: 0.75rem; }
  .hero-actions .btn { font-size: 0.875rem; padding: 0.75rem 1.1rem; }

  /* Page heroes */
  .page-hero { padding: 100px 0 48px; }
  .page-hero h1 { font-size: 1.875rem; }
  .page-hero p { font-size: 0.9rem; }

  /* Sections */
  .section { padding: 3rem 0; }
  .section-header h2 { font-size: 1.625rem; }
  .section-header { margin-bottom: 2rem; }

  /* Cards */
  .card { padding: 1.25rem; }

  /* Stats */
  .stat-value { font-size: 1.75rem; }
  .stat-strip { padding: 2rem 0; }

  /* Grid-4 stays 2-col at 480 */
  .grid-4 { grid-template-columns: 1fr 1fr; gap: 1rem; }

  /* Team grid: 1 col on small phones */
  .team-grid { grid-template-columns: 1fr !important; }

  /* Buttons */
  .btn { font-size: 0.875rem; }
  .hero-badge { font-size: 0.75rem; }

  /* Footer download */
  .btn-download { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════════════
   Utility & component classes (consolidated from all HTML pages)
   ═══════════════════════════════════════════════════════════════════ */

/* ── Layout ──────────────────────────────────────────────────────── */
.flex-col-center { display: flex; flex-direction: column; justify-content: center; }
.grid-narrow     { max-width: 800px; margin-left: auto; margin-right: auto; }
.gap-sm          { gap: 1rem; }
.text-left       { text-align: left; }
.table-scroll    { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ── Spacing ──────────────────────────────────────────────────────── */
.mb-0 { margin-bottom: 0; }
.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; }
.mb-6 { margin-bottom: 4rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mt-6 { margin-top: 4rem; }

/* ── Colour ───────────────────────────────────────────────────────── */
.text-muted       { opacity: 0.8; }
.text-white       { color: white; }
.text-white-muted { color: rgba(255,255,255,0.7); }
.text-white-80    { color: rgba(255,255,255,0.8); }
.text-forest      { color: var(--color-forest); }
.fw-600           { font-weight: 600; }
.fw-700           { font-weight: 700; }

/* ── Button helpers ───────────────────────────────────────────────── */
.btn-full { width: 100%; }
.btn-lg   { font-size: 1.125rem; padding: 1rem 2rem; }

/* ── Typography helpers ───────────────────────────────────────────── */
.eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-amber);
  font-weight: 700;
  margin-bottom: 1rem;
}
.h2-lg { font-size: 2.5rem; }
.h2-md { font-size: 2.25rem; }
.hero-sub-sm { font-size: 1rem; opacity: 0.9; margin-bottom: 2.5rem; }

/* ── Link variants ────────────────────────────────────────────────── */
.link-accent {
  display: inline-block;
  font-weight: 600;
  color: var(--color-forest);
  border-bottom: 2px solid var(--color-amber);
}
.link-amber { font-weight: 600; color: var(--color-amber); }

/* ── Image helpers ────────────────────────────────────────────────── */
.img-shadow      { border-radius: var(--radius-md); box-shadow: 0 20px 40px rgba(0,0,0,0.1); width: 100%; }
.img-shadow-dark { border-radius: var(--radius-md); box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.img-cover       { border-radius: var(--radius-md); object-fit: cover; height: 100%; }
.img-fill        { border-radius: var(--radius-md); box-shadow: 0 10px 30px rgba(0,0,0,0.1); width: 100%; height: 100%; object-fit: cover; }
.img-wide        { width: 100%; max-height: 400px; object-fit: cover; border-radius: var(--radius-md); }

/* ── Section variants ─────────────────────────────────────────────── */
.section-border-top { border-top: 1px solid var(--color-border); }
.bg-forest-gradient { background: linear-gradient(135deg, #1a3d1f 0%, #0d2810 100%); color: white; }

/* ── Card helpers ─────────────────────────────────────────────────── */
.card-stat-amber  { font-weight: 700; font-size: 1.5rem; margin-bottom: 1rem; }
.card-stat-value  { font-size: 1.5rem; font-weight: bold; margin: 1rem 0; }
.card-body-sm     { font-size: 0.9rem; margin-top: 1rem; }
.card-detail {
  background: rgba(0,0,0,0.03);
  padding: 1rem;
  border-radius: var(--radius-sm);
  margin-top: 1.5rem;
}
.card-glass {
  background-color: rgba(255,255,255,0.03);
  border-color: var(--color-border);
  color: white;
}
.card-center     { text-align: center; }
.card-heading-lg { font-size: 1.5rem; margin-bottom: 1.5rem; }
.card-label      { font-size: 1.25rem; }

/* ── Section-header variants ──────────────────────────────────────── */
.section-header-wide { max-width: 900px; }
.section-intro { text-align: left; opacity: 1; font-size: 1.25rem; }

/* ── Method / feature icons ───────────────────────────────────────── */
.method-icon {
  width: 50px;
  height: 50px;
  background: var(--color-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--color-amber);
}

/* ── Infrastructure cards ─────────────────────────────────────────── */
.infra-heading { color: white; margin-bottom: 1rem; }
.infra-text    { color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.icon-amber    { color: var(--color-amber); }
.icon-nvidia   { color: #76b900; }

/* ── AI detail groups ─────────────────────────────────────────────── */
.ai-detail { margin-bottom: 2rem; }

/* ── Step descriptions (solution/architecture flows) ─────────────── */
.step-desc { font-size: 0.9rem; opacity: 0.8; margin-top: 1rem; }

/* ── AI stack icon ────────────────────────────────────────────────── */
.stack-icon { color: var(--color-amber); margin-bottom: 1.5rem; }

/* ── Roadmap table ────────────────────────────────────────────────── */
.table-lg            { font-size: 1.125rem; }
.col-25              { width: 25%; }
.col-50              { width: 50%; }
.phase-label         { font-size: 0.875rem; color: #666; }
.badge-active-lg     { font-size: 0.875rem; padding: 0.5rem 1rem; }
.badge-planned-amber {
  background-color: rgba(230,138,0,0.2);
  color: var(--color-amber);
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
}
.badge-planned-grey {
  background-color: #eee;
  color: #666;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
}
.table-note { font-size: 0.8rem; opacity: 0.6; margin-top: 0.75rem; text-align: right; }

/* ── Disc lists ───────────────────────────────────────────────────── */
.disc-list {
  list-style: disc;
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ── Market note (Roadmap) ────────────────────────────────────────── */
.market-note {
  margin-top: 2rem;
  padding: 1rem;
  background: rgba(0,119,255,0.1);
  border-left: 4px solid var(--color-blue);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.market-note p { margin: 0; font-weight: 600; color: var(--color-blue); }

/* ── Traction stat cards ──────────────────────────────────────────── */
.traction-stat {
  font-size: 2rem;
  font-family: var(--font-display);
  font-weight: 700;
  margin: 1rem 0;
  color: white;
}
.traction-desc { opacity: 0.8; font-size: 0.9rem; }

/* ── Why Now section ──────────────────────────────────────────────── */
.why-now-text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--color-text-green);
}

/* ── Team page ────────────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}
.team-card-large { text-align: left; }
.team-card-large .team-img-wrap { aspect-ratio: 4/5; margin-bottom: 1.5rem; }
.team-bio {
  font-size: 0.95rem;
  opacity: 0.85;
  line-height: 1.6;
  margin-top: 1rem;
}
.team-role    { font-weight: 600; margin-bottom: 0.5rem; }
.team-role-lg { font-weight: 600; font-size: 1.125rem; }
.team-bio-sm  { font-size: 0.9rem; opacity: 0.8; }
.linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-blue);
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 1rem;
}
.linkedin-link:hover { text-decoration: underline; }
.hiring-card {
  background: var(--color-white);
  border: 1px dashed var(--color-border-dark);
  padding: 2rem;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}
.hiring-card:hover { border-color: var(--color-amber); transform: translateY(-5px); }
.hiring-heading { font-size: 1.25rem; }
.hiring-desc    { opacity: 0.8; font-size: 0.9rem; margin-top: 0.5rem; margin-bottom: 1.5rem; }

/* ── Footer logo wrapper ──────────────────────────────────────────── */
.footer-logo-wrap { margin-bottom: 1rem; }
