/* ════════════════════════════════════════
   GLOBAL UTILITIES & BACKGROUND
════════════════════════════════════════ */
#starCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ════════════════════════════════════════
   STARFIELD CANVASES (Multiple dark sections)
════════════════════════════════════════ */
.starfield-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Section wrappers need relative positioning for starfield */
.hero-section,
.features-dark,
.protocol-wrapper,
.services-section,
.approach-section,
.sectors-section {
  position: relative;
}

/* Ensure content stays above starfield */
.hero-content,
.hero-eclipse-wrapper,
.features-header,
.features-grid,
.protocol-header,
.protocol-card,
.approach-header,
.approach-grid,
.sectors-inner {
  position: relative;
  z-index: 1;
}

#top-sentinel {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
  z-index: -1;
}

/* ════════════════════════════════════════
   NAVBAR — Glass Pill
════════════════════════════════════════ */
.navbar-pill {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  max-width: 1200px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.25rem 0 1rem;
  border-radius: var(--radius-full);
  z-index: 1000;
  transition: all 0.5s var(--ease-out);
  border: 1px solid transparent;
  color: white;
}

.navbar-pill.scrolled {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-color: var(--color-border);
  color: var(--color-dark);
  top: 1rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}

/* Navbar Logo ─────────────────────────── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

/* Both logo images sit in the same space */
.logo-img {
  height: 34px;
  width: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

/* DEFAULT state (over dark hero): show light logo, hide dark */
.logo-light {
  display: block;
}

.logo-dark {
  display: none;
}

/* SCROLLED state (frosted glass): show dark logo, hide light */
.navbar-pill.scrolled .logo-light {
  display: none;
}

.navbar-pill.scrolled .logo-dark {
  display: block;
}

/* Desktop-only wordmark next to logo */
.nav-wordmark {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  /* white when over hero */
  transition: color 0.5s var(--ease-out);
  white-space: nowrap;
}

/* When scrolled, wordmark goes dark */
.navbar-pill.scrolled .nav-wordmark {
  color: var(--color-dark);
}

/* Hide wordmark on mobile — logo alone is enough */
@media (max-width: 860px) {
  .nav-wordmark {
    display: none;
  }
}

/* Nav Links */
.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-family: var(--font-main);
  font-size: 0.88rem;
  font-weight: 500;
  color: inherit;
  transition: color 0.2s ease, transform 0.2s ease;
  opacity: 0.85;
}

.nav-links a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: inherit;
}

.hamburger {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.25s ease;
}

.hamburger::before {
  top: -7px;
}

.hamburger::after {
  top: 7px;
}

.navbar-pill.mobile-open .hamburger {
  background: transparent;
}

.navbar-pill.mobile-open .hamburger::before {
  transform: translateY(7px) rotate(45deg);
}

.navbar-pill.mobile-open .hamburger::after {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 2rem);
    max-width: 400px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    color: var(--color-dark);
    border-radius: var(--radius-lg);
    padding: 1rem 1.25rem;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--color-border);
    flex-direction: column;
    gap: 0;
  }

  .nav-links a {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-dark);
    opacity: 1;
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .navbar-pill.mobile-open .nav-links {
    display: flex;
  }

  .btn-primary-pill {
    display: none;
  }
}

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero-section {
  height: 100dvh;
  min-height: 680px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  align-items: center;
  padding: clamp(3rem, 6vw, 6rem) var(--site-padding);
  background: radial-gradient(circle at 10% 0%, rgba(233, 152, 24, 0.14), transparent 55%),
    radial-gradient(circle at 90% 100%, rgba(233, 152, 24, 0.18), transparent 55%),
    #020308;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 640px;
  grid-column: 1;
  /* Move to the left column */
  text-align: left;
  margin-right: auto;
  /* Push to the left edge of the column */
}

.hero-eclipse-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-column: 2;
  /* Move to the right column */
  grid-row: 1;
}

.hero-eclipse {
  position: relative;
  width: 260px;
  height: 260px;
}

/* Eclipse Glow Components */
.glow-far {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle,
      transparent 38%,
      rgba(255, 200, 80, 0.08) 48%,
      rgba(233, 152, 24, 0.05) 60%,
      rgba(200, 100, 10, 0.025) 73%,
      transparent 84%);
  opacity: 0;
  z-index: 2;
  pointer-events: none;
}

.glow-mid {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle,
      transparent 40%,
      rgba(255, 240, 160, 0.16) 46%,
      rgba(255, 200, 80, 0.11) 53%,
      rgba(233, 152, 24, 0.07) 62%,
      rgba(200, 100, 10, 0.03) 73%,
      transparent 82%);
  opacity: 0;
  z-index: 3;
  pointer-events: none;
}

.glow-inner {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle,
      transparent 46%,
      rgba(255, 255, 220, 0.22) 50%,
      rgba(255, 220, 100, 0.15) 55%,
      rgba(233, 152, 24, 0.08) 62%,
      transparent 72%);
  opacity: 0;
  z-index: 4;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.glow-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  opacity: 0;
  z-index: 5;
  pointer-events: none;
}

.chromo {
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  z-index: 6;
  pointer-events: none;
  transition: box-shadow 0.8s ease;
}

#sunCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  z-index: 4;
  pointer-events: none;
}

.moon {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 46% 44%,
      #080a0d 0%,
      #050608 55%,
      #020304 100%);
  z-index: 10;
  will-change: transform;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 4.2rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin: 1.25rem 0 1.5rem;
  color: white;
}

.title-line-1 {
  display: block;
  color: white;
}

.title-line-2 {
  display: block;
  background: linear-gradient(135deg, #e99818 0%, #f5c05a 60%, #e99818 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.label-mono {
  display: block;
  text-align: left;
}

.hero-subline {
  color: rgba(255, 255, 255, 0.65);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  margin-right: auto;
  /* Ensure it stays on the left */
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  /* Align buttons to the left */
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  right: var(--site-padding);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 240, 200, 0.85);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(233, 152, 24, 0.7), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}

/* ════════════════════════════════════════
   STATS STRIP
════════════════════════════════════════ */
.stats-strip {
  padding: 0;
  background: var(--color-primary);
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  max-width: 960px;
  margin: 0 auto;
  padding: 3.5rem var(--site-padding);
}

.stat-item {
  text-align: center;
  flex: 0 0 auto;
}

.stat-number {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--color-dark);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.stat-suffix {
  font-family: var(--font-head);
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 800;
  color: var(--color-dark);
  opacity: 0.8;
}

.stat-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(12, 12, 14, 0.6);
  margin-top: 0.35rem;
  max-width: 180px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(12, 12, 14, 0.15);
  flex-shrink: 0;
}

/* ════════════════════════════════════════
   SERVICES
════════════════════════════════════════ */
.services-section {
  background: radial-gradient(circle at 10% 0%, rgba(233, 152, 24, 0.14), transparent 55%),
    radial-gradient(circle at 90% 100%, rgba(233, 152, 24, 0.18), transparent 55%),
    #020308;
  position: relative;
  overflow: hidden;
}

.services-section .starfield-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.services-section .section-intro {
  position: relative;
  z-index: 1;
}

.services-section .label-mono {
  color: rgba(255, 255, 255, 0.7);
}

.services-section .section-title {
  color: white;
}

.services-section .section-subtext {
  color: rgba(255, 255, 255, 0.65);
}

.services-section .services-grid {
  position: relative;
  z-index: 1;
}

.services-intro-align {
  max-width: 1200px;
  margin: 0 auto var(--space-lg);
  padding: 0 var(--site-padding);
  text-align: left;
}

.services-groups {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.services-group-title {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 1rem;
  padding: 0 var(--site-padding);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--site-padding);
}

.services-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  grid-column: 1 / -1;
}

.services-row .services-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.services-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.services-column .service-card {
  height: auto;
  min-height: min-content;
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-row {
    grid-template-columns: 1fr;
  }

  .services-column {
    gap: 1.5rem;
  }
}

.service-card {
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  cursor: default;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(12, 12, 14, 0.12);
  border-color: var(--color-primary-dim);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.service-num {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  flex-shrink: 0;
  min-width: 36px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.service-card:hover .service-num {
  transform: scale(1.1);
  color: var(--color-dark);
}

.service-card-header h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.3;
  transition: color 0.3s ease;
}

.service-card:hover .service-card-header h3 {
  color: var(--color-primary);
}

.service-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.service-bullets li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--color-muted);
}

.service-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 5px;
  height: 5px;
  background: var(--color-primary);
  border-radius: 50%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover .service-bullets li::before {
  transform: scale(1.3);
  box-shadow: 0 0 6px rgba(233, 152, 24, 0.5);
}

.service-bullets li strong {
  color: var(--color-dark);
  font-weight: 600;
}

.card-arrow {
  display: block;
  margin-top: 1.5rem;
  color: var(--color-primary);
  font-size: 1.1rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity var(--transition), transform var(--transition);
}

.service-card:hover .card-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ════════════════════════════════════════
   SERVICES — Numbered List Layout
════════════════════════════════════════ */
.services-list {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.service-item {
  display: flex;
  gap: 2rem;
  padding: 2.5rem;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--color-primary);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s var(--ease-out);
}

.service-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(12, 12, 14, 0.12);
  border-color: var(--color-primary-dim);
}

.service-item:hover::before {
  transform: scaleY(1);
}

.service-number {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.service-item:hover .service-number {
  transform: scale(1.1) translateX(4px);
  color: var(--color-dark);
}

.service-content {
  flex: 1;
}

.service-title {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}

.service-item:hover .service-title {
  color: var(--color-primary);
}

.service-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-bullets li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-muted);
  transition: transform 0.3s ease, color 0.3s ease;
}

.service-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  background: var(--color-primary);
  border-radius: 50%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover .service-bullets li::before {
  transform: scale(1.3);
  box-shadow: 0 0 8px rgba(233, 152, 24, 0.5);
}

.service-bullets li strong {
  color: var(--color-dark);
  font-weight: 600;
  transition: color 0.3s ease;
}

/* Stagger animation for bullets on hover */
.service-item:hover .service-bullets li:nth-child(1) {
  transition-delay: 0ms;
}

.service-item:hover .service-bullets li:nth-child(2) {
  transition-delay: 50ms;
}

.service-item:hover .service-bullets li:nth-child(3) {
  transition-delay: 100ms;
}

.service-item:hover .service-bullets li:nth-child(4) {
  transition-delay: 150ms;
}

.service-item:hover .service-bullets li:nth-child(5) {
  transition-delay: 200ms;
}

@media (max-width: 768px) {
  .service-item {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }

  .service-number {
    font-size: 2rem;
  }

}

/* ════════════════════════════════════════
   ABOUT / WHY ECLIPSE
════════════════════════════════════════ */
.about-section {
  background: var(--color-background);
  padding: var(--space-xl) var(--site-padding);
}

.about-row {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
  min-height: 480px;
}

/* Left: logo visual panel - equal height */
.about-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.about-logo-panel {
  width: 100%;
  height: 100%;
  min-height: 480px;
  max-width: 480px;
  background: var(--color-dark);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.about-logo-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(233, 152, 24, 0.12) 0%, transparent 70%);
}

.about-logo-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(233, 152, 24, 0.08) 0%, transparent 50%);
}

.about-logo-img {
  width: 70%;
  max-width: 280px;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Right: copy - vertically centered */
.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 620px;
}

.about-copy .section-title {
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.about-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 0 0 1rem 0;
  color: var(--color-muted);
}

.about-lead:last-child {
  margin-bottom: 0;
}

.about-lead strong {
  color: var(--color-dark);
  font-weight: 600;
}

/* ════════════════════════════════════════
   OUR DIFFERENTIATED APPROACH
════════════════════════════════════════ */
.approach-section {
  background: radial-gradient(circle at 10% 0%, rgba(233, 152, 24, 0.14), transparent 55%),
    radial-gradient(circle at 90% 100%, rgba(233, 152, 24, 0.18), transparent 55%),
    #020308;
  padding: var(--space-xl) var(--site-padding);
  position: relative;
  overflow: hidden;
}

.approach-section .starfield-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.approach-section .section-intro {
  position: relative;
  z-index: 1;
}

.approach-section .label-mono {
  color: rgba(255, 255, 255, 0.7);
}

.approach-section .section-title {
  color: white;
}

.approach-section .section-subtext {
  color: rgba(255, 255, 255, 0.65);
}

.approach-section .approach-grid {
  position: relative;
  z-index: 1;
}

.approach-header {
  max-width: 1100px;
  margin: 0 auto 3rem;
  text-align: left;
}

.approach-header .section-subtext {
  max-width: 500px;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.65);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.approach-card {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.approach-card::before {
  content: attr(data-index);
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.approach-card-inner {
  padding: 2rem;
  z-index: 1;
}

.approach-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(12, 12, 14, 0.12);
  border-color: rgba(233, 152, 24, 0.3);
}

.approach-card:hover::before {
  opacity: 1;
}

.approach-icon {
  width: 64px;
  height: 64px;
  background: var(--color-primary-dim);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-spring), background 0.3s ease;
}

.approach-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(233, 152, 24, 0.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.approach-card:hover .approach-icon {
  transform: scale(1.08) rotate(3deg);
  background: var(--color-primary);
}

.approach-card:hover .approach-icon::before {
  opacity: 1;
}

.approach-icon i[data-lucide] {
  width: 28px;
  height: 28px;
  stroke: var(--color-dark);
  position: relative;
  z-index: 1;
  transition: stroke 0.3s ease, transform 0.4s var(--ease-spring);
}

.approach-card:hover .approach-icon i[data-lucide] {
  stroke: var(--color-dark);
  transform: scale(1.1);
}

.approach-content h3 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
}

.approach-card:hover .approach-content h3 {
  color: var(--color-primary);
}

.approach-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-muted);
  margin: 0;
}

.approach-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), rgba(233, 152, 24, 0.5));
  transition: width 0.5s var(--ease-out);
}

.approach-card:hover .approach-line {
  width: 100%;
}

/* Staggered animation delays */
.approach-card:nth-child(1) {
  transition-delay: 0ms;
}

.approach-card:nth-child(2) {
  transition-delay: 50ms;
}

.approach-card:nth-child(3) {
  transition-delay: 100ms;
}

.approach-card:nth-child(4) {
  transition-delay: 150ms;
}

.approach-card:nth-child(5) {
  transition-delay: 200ms;
}

@media (max-width: 768px) {
  .approach-grid {
    grid-template-columns: 1fr;
  }

  .approach-card-inner {
    padding: 1.5rem;
  }
}

/* ════════════════════════════════════════
   VISION & MISSION
   Two-column card layout for core company focus
════════════════════════════════════════ */
.vision-section {
  background: var(--color-background);
  padding: var(--space-xl) var(--site-padding);
}

/* Align PURPOSE & DIRECTION intro with content column on desktop */
@media (min-width: 900px) {
  .vision-section .section-intro {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 3rem auto 0;
}

.vision-card {
  background: var(--color-white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.vision-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(12, 12, 14, 0.12);
  border-color: var(--color-primary-dim);
}

.vision-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.vision-card:hover::before {
  transform: scaleX(1);
}

.vision-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at top right, var(--color-primary-dim), transparent 70%);
  opacity: 0.5;
}

.vision-card-icon {
  width: 56px;
  height: 56px;
  background: #0d0f16;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.vision-card:hover .vision-card-icon {
  transform: scale(1.1);
  background: var(--color-primary);
  box-shadow: 0 8px 24px rgba(233, 152, 24, 0.3);
}

.vision-card-icon svg {
  width: 26px;
  height: 26px;
  display: block;
  stroke: var(--color-primary);
  transition: stroke 0.3s ease;
}

.vision-card:hover .vision-card-icon svg {
  stroke: var(--color-dark);
}

.vision-card h3 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--color-dark);
  letter-spacing: -0.02em;
}

.vision-card p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--color-muted);
}

@media (max-width: 768px) {
  .vision-grid {
    grid-template-columns: 1fr;
  }

  .vision-card {
    padding: 2.5rem;
  }
}

/* ════════════════════════════════════════
   FEATURES — DARK
════════════════════════════════════════ */
.features-dark {
  background: var(--color-dark);
  padding: clamp(5rem, 8vw, 9rem) 5vw;
}

.features-header {
  max-width: 600px;
  margin: 0 var(--space-lg) var(--space-lg) 0;
  text-align: left;
}

.features-header .section-title {
  color: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Artifact cards */
.artifact-card {
  background: var(--color-dark-2);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-dark);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}

.artifact-card:hover {
  border-color: rgba(233, 152, 24, 0.2);
  transform: translateY(-4px);
}

/* Terminal chrome bar */
.artifact-chrome {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--color-border-dark);
  background: var(--color-dark-3);
}

.chrome-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.chrome-dot:first-child {
  background: #FF5F57;
}

.chrome-dot:nth-child(2) {
  background: #FEBC2E;
}

.chrome-dot:nth-child(3) {
  background: #28C840;
}

.chrome-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.3);
  margin-left: auto;
}

.artifact-ui {
  padding: 1.25rem;
  min-height: 180px;
}

.artifact-content {
  padding: 1.25rem 1.5rem 1.5rem;
  border-top: 1px solid var(--color-border-dark);
}

.artifact-content h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}

.artifact-content p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  margin: 0;
}

/* Shuffler */
.shuffler-stack {
  min-height: 120px;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.status-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.mono-label {
  color: rgba(255, 255, 255, 0.5);
}

/* Virtual cursor */
.virtual-cursor {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: white;
}

.virtual-cursor i[data-lucide] {
  width: 16px;
  height: 16px;
}

/* ════════════════════════════════════════
   PROTOCOL — STICKY STACK
════════════════════════════════════════ */
.protocol-wrapper {
  background: var(--color-dark);
  padding: clamp(5rem, 8vw, 9rem) 5vw;
}

.protocol-header .section-title {
  color: white;
}

/* Protocol cards are now simple stacked rows (no sticky pinning) */
.protocol-card {
  display: flex;
  align-items: center;
  gap: clamp(3rem, 6vw, 6rem);
  color: white;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background-color var(--transition);
}

.protocol-card:first-of-type {
  border-top: none;
}

.protocol-visual {
  flex: 1;
  height: 260px;
  background: rgba(255, 255, 255, 0.025);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}

.protocol-info {
  flex: 1;
}

/* Hover state: slight lift + glow */
.protocol-card:hover .protocol-visual {
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55);
}

.protocol-card:hover .protocol-info h2 {
  color: var(--color-primary);
}

.mono-step {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-primary);
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 1.25rem;
}

.protocol-info h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.0;
  color: white;
  margin-bottom: 1rem;
}

.protocol-info p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Protocol Visual Animations */
.laser-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(233, 152, 24, 0.1) 1px, transparent 1px),
    linear-gradient(180deg, rgba(233, 152, 24, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.6;
}

.laser-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  transform: translateY(-50%);
  animation: laserScan 3s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(233, 152, 24, 0.5);
}

@keyframes laserScan {

  0%,
  100% {
    opacity: 0;
    transform: translateY(-50%) scaleX(0.3);
  }

  50% {
    opacity: 1;
    transform: translateY(-50%) scaleX(1);
  }
}

/* ════════════════════════════════════════
   CONTACT
════════════════════════════════════════ */
.contact-section {
  background: var(--color-background);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.contact-section .section-intro {
  max-width: 1100px;
  margin: 0 auto var(--space-lg);
  text-align: left;
}

.contact-lead {
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  margin-left: 0;
}

/* Trust signals */
.trust-signals {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.trust-signals li {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.trust-icon {
  width: 40px;
  height: 40px;
  background: var(--color-primary-dim);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease;
}

.trust-signals li:hover .trust-icon {
  transform: scale(1.1);
  background: var(--color-primary);
}

.trust-icon i[data-lucide] {
  width: 18px;
  height: 18px;
  color: var(--color-primary);
  transition: color 0.3s ease;
}

.trust-signals li:hover .trust-icon i[data-lucide] {
  color: var(--color-dark);
}

.trust-signals strong {
  display: block;
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-dark);
}

.trust-signals span {
  font-size: 0.82rem;
  color: var(--color-muted);
}

/* Contact heading (h3 instead of h2 in copy) */
.contact-heading {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-dark);
  margin-bottom: 1rem;
}

/* Trust signals inside contact copy */
.contact-trust-signals {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.contact-trust-signals .trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-trust-signals .trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--color-primary-dim);
  border-radius: var(--radius-md);
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease;
}

.contact-trust-signals .trust-item:hover .trust-icon {
  transform: scale(1.1);
  background: var(--color-primary);
}

.contact-trust-signals .trust-icon i[data-lucide] {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  transition: color 0.3s ease;
}

.contact-trust-signals .trust-item:hover .trust-icon i[data-lucide] {
  color: var(--color-dark);
}

.contact-trust-signals .trust-item div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-trust-signals .trust-item strong {
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-dark);
}

.contact-trust-signals .trust-item span {
  font-size: 0.85rem;
  color: var(--color-muted);
}

@media (min-width: 768px) {
  .contact-trust-signals {
    flex-direction: row;
    justify-content: space-between;
  }

  .contact-trust-signals .trust-item {
    flex: 1;
  }
}

/* Full-width trust signals block under contact form */
.trust-signals-wrapper {
  max-width: 1100px;
  margin: 3rem auto 0;
  padding: 0 var(--site-padding);
}

@media (min-width: 768px) {
  .trust-signals-wrapper .trust-signals {
    flex-direction: row;
    justify-content: space-between;
  }

  .trust-signals-wrapper .trust-signals li {
    flex: 1;
  }
}

/* Form */
.contact-form-container {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.contact-form-container:hover {
  box-shadow: 0 8px 30px rgba(12, 12, 14, 0.08);
  border-color: var(--color-primary-dim);
}

#assessment-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Floating label fields */
.form-field {
  position: relative;
}

.form-field input,
.form-field select {
  width: 100%;
  padding: 1.15rem 1rem 0.5rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: var(--color-dark);
  transition: border-color var(--transition), background var(--transition);
  appearance: none;
}

.form-field label {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.9rem;
  color: var(--color-muted);
  pointer-events: none;
  transition: all 0.22s ease;
  font-family: var(--font-main);
}

/* Float label when input has value or is focused */
.form-field input:focus+label,
.form-field input:not(:placeholder-shown)+label,
.form-field--select label {
  top: 0.5rem;
  transform: none;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  color: var(--color-primary);
}

.form-field input:focus,
.form-field select:focus {
  border-color: var(--color-primary);
  background: white;
  outline: none;
}

/* Validation error message */
.field-error {
  display: block;
  font-size: 0.75rem;
  color: #c53030;
  margin-top: 0.3rem;
  padding-left: 0.25rem;
  font-family: var(--font-main);
}

.form-field--select label {
  top: 0.5rem;
  transform: none;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  color: var(--color-primary);
}

.form-field--select select {
  padding-top: 1.4rem;
}

/* Form success state */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  padding: 3rem 1rem;
  color: var(--color-dark);
}

.form-success i[data-lucide] {
  width: 40px;
  height: 40px;
  color: #28C840;
  margin-bottom: 0.5rem;
}

.form-success strong {
  font-family: var(--font-head);
  font-size: 1.2rem;
}

.form-success span {
  color: var(--color-muted);
}

/* Global icon sizing */
i[data-lucide] {
  display: inline-block;
  vertical-align: middle;
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.main-footer {
  background: var(--color-dark);
  color: white;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(4rem, 6vw, 6rem) var(--site-padding) 2.5rem;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 2rem;
}

/* Footer logo */
.footer-logo-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
}

.footer-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
}

.footer-logo-sub {
  font-family: var(--font-main);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.04em;
  margin-top: -2px;
}

.tagline {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.08em;
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: transform 0.3s ease;
  display: inline-flex;
}

.footer-social a:hover {
  transform: scale(1.2);
}

.footer-social i[data-lucide] {
  width: 18px;
  height: 18px;
  stroke: var(--color-primary);
  transition: stroke 0.3s ease;
}

.footer-social a:hover i[data-lucide] {
  stroke: white;
}

/* Footer responsive layout */
@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  /* Make brand span full width in 2-col layout */
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: auto;
  }
}

/* Footer nav columns */
.footer-links-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--color-primary);
  margin-bottom: 1.25rem;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 0.88rem;
  margin-bottom: 0.7rem;
  font-family: var(--font-main);
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: white;
}

/* Footer bottom */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.legal-tag {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.2);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  margin: 0;
}

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 900px) {
  .stats-grid {
    flex-wrap: wrap;
    gap: 2rem;
  }

  .stat-divider {
    display: none;
  }

  .stat-item {
    flex: 0 0 45%;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-row {
    grid-template-columns: 1fr;
    gap: 3rem;
    min-height: auto;
  }

  .about-logo-panel {
    max-width: 300px;
    min-height: 300px;
    margin: 0 auto;
  }

  .approach-grid {
    grid-template-columns: 1fr;
  }

  .about-checklist {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .trust-signals {
    flex-direction: column;
  }

  .protocol-card {
    flex-direction: column;
    gap: 2rem;
    height: auto;
    padding: 3rem 0;
  }

  .protocol-visual {
    display: none;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-links-group {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .hero-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 2.2rem;
    position: relative;
    overflow: hidden;
  }

  .hero-eclipse-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
    /* Slight fade for better text contrast if needed */
  }

  .hero-content {
    z-index: 10;
    max-width: 100%;
  }

  .hero-title {
    font-size: clamp(2.2rem, 10vw, 4rem);
    line-height: 1.0;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 1rem;
  }

  .hero-actions .btn-primary-large,
  .hero-actions .btn-ghost {
    width: 100%;
    max-width: 320px;
  }

  .hero-scroll-indicator {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .footer-links-group {
    grid-template-columns: 1fr 1fr;
  }

  .contact-form-container {
    padding: 1.5rem;
  }

  /* So the long word "Comprehensive" in the Services heading doesn't force horizontal scrolling */
  .services-section .section-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
    line-height: 1.1;
  }
}

/* Desktop alignment tweaks */
@media (min-width: 901px) {
  .trust-signals {
    flex-direction: row;
  }
}