﻿:root {
  --deep-green: #162E28;
  --pcb-green: #006644;
  --carbon: #1A1A1A;
  --silver: #C0C0C0;
  --copper: #B87333;
  --copper-light: #D4965A;
  --off-white: #F4F1EC;
  --light-border: #DDD9D0;
  --muted: #6B7169;
  --white: #FFFFFF;
  --deep-green-80: rgba(22, 46, 40, 0.80);
  --deep-green-60: rgba(22, 46, 40, 0.60);
  --font-display: 'Segoe UI', 'Segoe UI Bold', system-ui, -apple-system, sans-serif;
  --font-body: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 32px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--carbon);
  line-height: 1.6;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: rgba(22, 46, 40, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(192, 192, 192, 0.12);
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-mark {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--copper) 0%, var(--copper-light) 100%);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--white);
}

.nav-wordmark {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--white);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  position: fixed;
  top: 0;
  right: 60px;
  height: 68px;
  z-index: 9999;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.01em;
  transition: color 0.2s;
  cursor: pointer;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--copper-light);
}

.nav-cta {
  background: var(--copper);
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: var(--r-sm);
  font-weight: 500 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--copper-light) !important;
}

.nav-item-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-item-dropdown>a {
  display: flex;
  align-items: center;
  gap: 4px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  background: rgba(22, 46, 40, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(192, 192, 192, 0.12);
  border-radius: var(--r-md);
  padding: 12px 0;
  min-width: 220px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(22px);
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 10px 24px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.2s;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
  background: rgba(255, 255, 255, 0.04);
  color: var(--copper-light);
  padding-left: 28px;
}

.page-content {
  padding-top: 68px;
  min-height: 100vh;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 160px 20px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 80vh;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% -20%, rgba(0, 102, 68, 0.3) 0%, transparent 60%),
    radial-gradient(circle at 50% 120%, rgba(184, 115, 51, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.04;
  pointer-events: none;
}

.hero-grid-lines::before {
  content: '';
  position: absolute;
  inset: -40px;
  background-image:
    repeating-linear-gradient(0deg, var(--silver) 0, var(--silver) 1px, transparent 1px, transparent 60px),
    repeating-linear-gradient(90deg, var(--silver) 0, var(--silver) 1px, transparent 1px, transparent 60px);
  animation: panGrid 40s linear infinite;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184, 115, 51, 0.15);
  border: 1px solid rgba(184, 115, 51, 0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  color: var(--copper-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 28px;
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--copper);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

h1,
h2,
h3,
.section-title,
.hero h1,
.map-typewriter,
.strategy-title,
.cap-title,
.stat-value,
.reach-metric-val,
.footer-wordmark,
.nav-wordmark {
  font-family: var(--font-display);
  font-weight: 700;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 84px);
  font-weight: 700;
  color: var(--deep-green);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-style: normal;
  font-weight: 700;
  background: linear-gradient(to right, var(--copper-light), var(--copper));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 20px;
  color: var(--carbon);
  margin-bottom: 48px;
  max-width: 760px;
  line-height: 1.6;
  font-weight: 300;
}

.hero-bullets {
  list-style: none;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
}

.hero-bullet-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background: rgba(0, 102, 68, 0.4);
  border: 1px solid rgba(0, 102, 68, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.hero-bullet-icon svg {
  width: 10px;
  height: 10px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: rgba(244, 241, 236, 0.82);
  max-width: 620px;
  line-height: 1.65;
  text-align: center;
  margin: 0 auto;
  text-wrap: pretty;
}
.btn-primary {
  background: linear-gradient(135deg, var(--copper) 0%, var(--copper-light) 100%);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  border-radius: var(--r-sm);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(184, 115, 51, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.25);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--copper-light) 0%, var(--copper) 100%);
  box-shadow: 0 8px 25px rgba(184, 115, 51, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
  backdrop-filter: blur(8px);
  color: var(--deep-green);
  border: 1px solid rgba(22, 46, 40, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 14px 32px;
  border-radius: var(--r-sm);
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
  display: inline-block;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-showcase {
  width: 420px;
  height: 420px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  
}

.logo-aura {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.logo-aura-1 {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(184, 115, 51, 0.18) 0%, rgba(184, 115, 51, 0.04) 55%, transparent 70%);
  animation: aura-breathe 4s ease-in-out infinite;
}

.logo-aura-2 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(0, 102, 68, 0.15) 0%, rgba(0, 102, 68, 0.02) 50%, transparent 70%);
  animation: aura-breathe 4s ease-in-out infinite 0.6s;
}

.logo-aura-3 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(22, 46, 40, 0.6) 0%, transparent 65%);
}

.logo-boundary-ring {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px dashed rgba(184, 115, 51, 0.12);
}

.logo-spin-ring {
  position: absolute;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  border: 1px solid rgba(184, 115, 51, 0.22);
  animation: orbit-spin 18s linear infinite;
}

.logo-spin-ring::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--copper);
  box-shadow: 0 0 14px 5px rgba(184, 115, 51, 0.65);
}

.logo-spin-ring::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(184, 115, 51, 0.4);
  box-shadow: 0 0 8px 2px rgba(184, 115, 51, 0.3);
}

.logo-inner-ring {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(0, 102, 68, 0.35);
  animation: orbit-spin-reverse 12s linear infinite;
}

.logo-inner-ring::before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pcb-green);
  box-shadow: 0 0 10px 3px rgba(0, 102, 68, 0.6);
}

@keyframes orbit-spin-reverse {
  to {
    transform: rotate(-360deg);
  }
}

.logo-glow-plate {
  width: 170px;
  height: 170px;
  position: relative;
  background: linear-gradient(145deg, rgba(0, 102, 68, 0.25) 0%, rgba(22, 46, 40, 0.7) 100%);
  border: 1px solid rgba(184, 115, 51, 0.25);
  border-radius: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  box-shadow:
    0 0 0 1px rgba(184, 115, 51, 0.1),
    0 20px 60px rgba(0, 0, 0, 0.5),
    inset 0 1px 1px rgba(255, 255, 255, 0.08);
  animation: levitate 6s ease-in-out infinite;
}

.logo-glow-plate::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 37px;
  background: linear-gradient(145deg, rgba(184, 115, 51, 0.3), transparent 50%, rgba(0, 102, 68, 0.2));
  pointer-events: none;
}

.logo-corner {
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: rgba(184, 115, 51, 0.45);
  border-style: solid;
}

.logo-corner-tl {
  top: 10px;
  left: 10px;
  border-width: 2px 0 0 2px;
  border-radius: 3px 0 0 0;
}

.logo-corner-tr {
  top: 10px;
  right: 10px;
  border-width: 2px 2px 0 0;
  border-radius: 0 3px 0 0;
}

.logo-corner-bl {
  bottom: 10px;
  left: 10px;
  border-width: 0 0 2px 2px;
  border-radius: 0 0 0 3px;
}

.logo-corner-br {
  bottom: 10px;
  right: 10px;
  border-width: 0 2px 2px 0;
  border-radius: 0 0 3px 0;
}

.logo-icon-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 18px rgba(184, 115, 51, 0.55)) drop-shadow(0 0 6px rgba(184, 115, 51, 0.3));
  transition: filter 0.4s ease;
}

.logo-glow-plate:hover .logo-icon-img {
  filter:
    drop-shadow(0 0 28px rgba(184, 115, 51, 0.9)) drop-shadow(0 0 10px rgba(184, 115, 51, 0.5));
}

@keyframes aura-breathe {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.06);
  }
}

.stats-bar {
  padding: 36px 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  padding: 0 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-item:first-child {
  padding-left: 0;
}

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

.stat-value {
  font-family: var(--font-display);
  font-size: 38px;
  color: var(--copper-light);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
}

.section {
  padding: 0;
  width: 100%;
}

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

.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 14px;
}

.section-eyebrow-light {
  color: var(--copper-light);
}

.page-hero {
  padding: 130px 60px 100px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 56vh;
  display: flex;
  align-items: center;
}

.page-hero-inner {
  width: 100%;
  max-width: 640px;
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 700;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.page-hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #ffe0a0, var(--copper));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-hero-body {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.85;
  max-width: 560px;
}

.page-hero-body + .btn-primary,
.page-hero-inner .btn-primary {
  margin-top: 28px;
}

@media (max-width: 700px) {
  .page-hero {
    padding: 110px 24px 72px;
    min-height: 44vh;
  }
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 18px;
  color: var(--deep-green);
}

.section-title-light {
  color: var(--deep-green);
}

.section-body {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 280px;
}

.section-body-light {
  color: rgba(255, 255, 255, 0.55);
}

.section-header {
  margin-bottom: 60px;
}

.section-header-split {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.strategy-section {
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.strategy-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(0, 102, 68, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 80%, rgba(184, 115, 51, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.strategy-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
  position: relative;
  z-index: 2;
}

.bento-card {
  background: var(--white);
  border: 1px solid var(--light-border);
  border-radius: var(--r-xl);
  padding: 40px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pcb-green), var(--copper));
  opacity: 0.7;
}

.bento-card:hover {
  border-color: rgba(184, 115, 51, 0.3);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(184, 115, 51, 0.05);
}

.bento-glow {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(184, 115, 51, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.bento-card:hover .bento-glow {
  opacity: 1;
}

.bento-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(184, 115, 51, 0.2) 0%, rgba(184, 115, 51, 0.05) 100%);
  border: 1px solid rgba(184, 115, 51, 0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--copper-light);
  margin-bottom: 30px;
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.05);
  transition: transform 0.5s ease, background 0.5s ease;
}

.bento-card:hover .bento-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, rgba(184, 115, 51, 0.3) 0%, rgba(184, 115, 51, 0.1) 100%);
}

.bento-icon svg {
  width: 28px;
  height: 28px;
}

.bento-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--deep-green);
  margin-bottom: 16px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.bento-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 1100px) {
  .strategy-bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-card:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .strategy-bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-card:last-child {
    grid-column: span 1;
  }
}

.map-banner {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.12;
  filter: saturate(0.3);
}

.map-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 100% at 50% 50%, rgba(22, 46, 40, 0.55) 0%, rgba(22, 46, 40, 0.92) 100%);
  z-index: 1;
}

.map-bg-markers {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.map-bg-markers .marker-ring {
  fill: none;
  stroke: var(--copper);
  stroke-width: 1.5;
  opacity: 0.45;
  animation: marker-pulse 3s ease-in-out infinite;
}

.map-bg-markers .marker-dot {
  fill: var(--copper);
  filter: drop-shadow(0 0 6px var(--copper));
}

.map-bg-markers line {
  animation: flow 20s linear infinite;
}

.map-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 40px;
  max-width: 900px;
}

.map-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 24px;
}

.map-typewriter {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 400;
  color: var(--deep-green);
  line-height: 1.15;
  margin-bottom: 20px;
  min-height: 1.3em;
}

.map-typewriter::after {
  content: '|';
  color: var(--copper);
  animation: blink-cursor 0.75s step-end infinite;
  margin-left: 2px;
  font-weight: 300;
}

@keyframes blink-cursor {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.map-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 36px;
  letter-spacing: 0.03em;
}

.map-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.map-pill {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(184, 115, 51, 0.25);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  animation: pill-fade-in 0.5s ease both;
}

.map-pill:hover {
  background: rgba(184, 115, 51, 0.15);
  border-color: var(--copper);
  color: var(--white);
  transform: translateY(-2px);
}

@keyframes pill-fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

.map-pill:nth-child(1) {
  animation-delay: 2.5s;
}

.map-pill:nth-child(2) {
  animation-delay: 2.8s;
}

.map-pill:nth-child(3) {
  animation-delay: 3.1s;
}

.map-pill:nth-child(4) {
  animation-delay: 3.4s;
}

.map-pill:nth-child(5) {
  animation-delay: 3.7s;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.industry-card {
  background: linear-gradient(145deg, var(--white) 0%, var(--off-white) 100%);
  border: 1px solid var(--light-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 1);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.industry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pcb-green), var(--copper));
  opacity: 0.7;
}

.industry-card:hover {
  border-color: var(--copper);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.industry-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(22, 46, 40, 0.08), rgba(0, 102, 68, 0.12));
  border: 1px solid rgba(0, 102, 68, 0.15);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 22px;
}

.industry-title {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--deep-green);
  margin-bottom: 10px;
}

.industry-body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(22, 46, 40, 0.07);
  color: var(--pcb-green);
  border: 1px solid rgba(0, 102, 68, 0.15);
  letter-spacing: 0.02em;
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-text-section {}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.value-card {
  background: rgba(22, 46, 40, 0.04);
  border: 1px solid var(--light-border);
  border-radius: var(--r-md);
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pcb-green), var(--copper));
  opacity: 0.7;
}

.value-icon {
  font-size: 22px;
  margin-bottom: 10px;
}

.value-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--deep-green);
  margin-bottom: 6px;
}

.value-body {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--light-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.2s;
}

.team-avatar {
  height: 200px;
  background: linear-gradient(160deg, var(--deep-green) 0%, var(--pcb-green) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 40px;
  color: rgba(255, 255, 255, 0.3);
  position: relative;
}

.team-avatar-initials {
  font-size: 36px;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-display);
}

.team-info {
  padding: 20px;
}

.team-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--deep-green);
  margin-bottom: 3px;
}

.team-role {
  font-size: 12px;
  color: var(--copper);
  font-weight: 500;
  margin-bottom: 8px;
}

.team-bio {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.insights-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: start;
}

.article-hero {
  background: linear-gradient(160deg, var(--deep-green) 0%, var(--pcb-green) 100%);
  border-radius: var(--r-xl);
  padding: 48px 44px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.article-hero::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.article-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper-light);
  background: rgba(184, 115, 51, 0.15);
  border: 1px solid rgba(184, 115, 51, 0.3);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.article-title {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--deep-green);
  line-height: 1.3;
  margin-bottom: 14px;
}

.article-excerpt {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.article-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.article-item {
  background: linear-gradient(145deg, var(--white) 0%, var(--off-white) 100%);
  border: 1px solid var(--light-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  border-radius: var(--r-md);
  padding: 24px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: default;
}

.article-item:hover {
  border-color: var(--copper);
  box-shadow: -4px 8px 25px rgba(0, 0, 0, 0.05);
}

.article-item-tag {
  font-size: 10px;
  font-weight: 600;
  color: var(--pcb-green);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.article-item-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--deep-green);
  margin-bottom: 8px;
  line-height: 1.4;
}

.article-item-body {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 14px;
}

.article-item-meta {
  font-size: 12px;
  color: var(--silver);
}

.sidebar {
  position: sticky;
  top: 88px;
}

.sidebar-card {
  background: var(--white);
  border: 1px solid var(--light-border);
  border-radius: var(--r-lg);
  padding: 28px;
  margin-bottom: 20px;
}

.sidebar-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--deep-green);
  margin-bottom: 16px;
}

.sidebar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sidebar-tag {
  font-size: 12px;
  color: var(--muted);
  background: var(--off-white);
  border: 1px solid var(--light-border);
  padding: 5px 12px;
  border-radius: 100px;
  cursor: default;
  transition: all 0.15s;
}

.sidebar-tag:hover {
  background: var(--deep-green);
  color: var(--white);
  border-color: var(--deep-green);
}

.contact-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info-panel {
  background: var(--deep-green);
  border-radius: var(--r-xl);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.contact-info-panel::before {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(0, 102, 68, 0.2);
}

.contact-info-title {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.contact-info-body {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}

.contact-detail-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.contact-detail-value {
  font-size: 14px;
  color: var(--white);
}

.contact-form-panel {
  background: var(--white);
  border: 1px solid var(--light-border);
  border-radius: var(--r-xl);
  padding: 48px 44px;
}

.form-title {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--deep-green);
  margin-bottom: 8px;
}

.form-sub {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 36px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--carbon);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--copper);
  background: var(--white);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02), 0 0 0 4px rgba(184, 115, 51, 0.15);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--deep-green) 0%, var(--pcb-green) 100%);
  box-shadow: 0 4px 15px rgba(0, 102, 68, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: none;
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  letter-spacing: 0.01em;
}

.form-submit:hover {
  background: linear-gradient(135deg, var(--pcb-green) 0%, var(--deep-green) 100%);
  box-shadow: 0 8px 25px rgba(0, 102, 68, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

footer {
  background: var(--carbon);
  padding: 64px 60px 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 80px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 36px;
}

.footer-brand {}

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

.footer-logo-mark {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, var(--copper) 0%, var(--copper-light) 100%);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--white);
}

.footer-wordmark {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--white);
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.65;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.15s;
}

.footer-links a:hover {
  color: var(--copper-light);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.2);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.2);
  text-decoration: none;
  cursor: pointer;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.45);
}

.copper-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--copper), var(--copper-light));
  border-radius: 2px;
  margin-bottom: 24px;
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--light-border), transparent);
}

.capabilities-section {
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.capabilities-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(0, 102, 68, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 80%, rgba(184, 115, 51, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.capabilities-header {
  margin-bottom: 36px;
}

.capabilities-header .section-title em {
  font-style: italic;
  color: var(--copper-light);
}

.cap-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--light-border);
  margin-bottom: 0;
}

.cap-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-body, inherit);
  letter-spacing: 0.01em;
  transition: color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}

.cap-tab:hover {
  color: var(--deep-green);
}

.cap-tab.active {
  color: var(--copper);
  border-bottom-color: var(--copper);
}

.cap-tab-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(184, 115, 51, 0.08);
  border: 1px solid rgba(184, 115, 51, 0.15);
  transition: background 0.25s, border-color 0.25s;
  flex-shrink: 0;
}

.cap-tab.active .cap-tab-icon {
  background: rgba(184, 115, 51, 0.18);
  border-color: rgba(184, 115, 51, 0.4);
}

.cap-panels {
  position: relative;
}

.cap-panel {
  display: none;
}

.cap-panel.active {
  display: block;
  animation: panelFadeIn 0.35s ease;
}

@keyframes panelFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.cap-panel-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--light-border);
  border-top: none;
  border-radius: 0 0 20px 20px;
  overflow: hidden;
  min-height: 340px;
}

.cap-panel-left {
  padding: 52px 52px 52px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cap-panel-badge {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(184, 115, 51, 0.15) 0%, rgba(0, 102, 68, 0.1) 100%);
  border: 1px solid rgba(184, 115, 51, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.cap-panel-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--copper);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.cap-panel-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--deep-green);
  line-height: 1.3;
  margin-bottom: 18px;
  font-family: var(--font-display, inherit);
}

.cap-panel-body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 480px;
}

.cap-panel-visual {
  background: linear-gradient(135deg, rgba(0, 102, 68, 0.06) 0%, rgba(184, 115, 51, 0.05) 100%);
  border-left: 1px solid var(--light-border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.cap-panel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.cap-panel-ghost {
  font-family: var(--font-display, inherit);
  font-size: 200px;
  font-weight: 800;
  color: rgba(0, 102, 68, 0.06);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  position: absolute;
}

@media (max-width: 900px) {
  .cap-panel-inner {
    grid-template-columns: 1fr;
  }
  .cap-panel-visual {
    display: none;
  }
  .cap-tab {
    padding: 14px 20px;
    font-size: 13px;
  }
}

@media (max-width: 600px) {
  .capabilities-section {
    padding: 60px 20px;
  }
  .cap-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .cap-tabs::-webkit-scrollbar { display: none; }
  .cap-tab {
    padding: 12px 14px;
    gap: 7px;
    font-size: 12px;
    flex-shrink: 0;
  }
  .cap-tab-icon {
    width: 28px;
    height: 28px;
  }
  .cap-panel-left {
    padding: 36px 28px;
  }
  .cap-panel-title {
    font-size: 22px;
  }
}

.feature-num {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--light-border);
  line-height: 1;
  margin-bottom: 20px;
}

.feature-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--deep-green);
  margin-bottom: 10px;
}

.feature-body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.mission-block {
  background: var(--white);
  border: 1px solid var(--light-border);
  border-radius: var(--r-xl);
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  position: relative;
  overflow: hidden;
}

.mission-block::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 102, 68, 0.3) 0%, transparent 70%);
}

.mission-block::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pcb-green), var(--copper));
  opacity: 0.7;
}

.mission-item {}

.mission-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 12px;
}

.mission-text {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--deep-green);
  line-height: 1.4;
  font-weight: 400;
}

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

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

.page-content .hero-content>* {
  animation: fadeInUp 0.6s ease both;
}

.page-content .hero-content>*:nth-child(1) {
  animation-delay: 0.05s;
}

.page-content .hero-content>*:nth-child(2) {
  animation-delay: 0.15s;
}

.page-content .hero-content>*:nth-child(3) {
  animation-delay: 0.25s;
}

.page-content .hero-content>*:nth-child(4) {
  animation-delay: 0.35s;
}

.page-content .hero-content>*:nth-child(5) {
  animation-delay: 0.42s;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.feature-block:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(184, 115, 51, 0.3);
}

.presence-card:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.05) 100%);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
}

@keyframes levitate {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  animation: shine 4s infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }

  20% {
    left: 200%;
  }

  100% {
    left: 200%;
  }
}

@keyframes panGrid {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 60px 60px;
  }
}

@keyframes orbit-spin {
  to {
    transform: rotate(360deg);
  }
}

.strategy-container {
  margin-top: 52px;
  position: relative;
}

.strategy-line {
  position: absolute;
  top: 52px;
  left: calc(12.5% - 52px);
  right: calc(12.5% - 52px);
  height: 1px;
  background: rgba(184, 115, 51, 0.12);
  z-index: 1;
}

.strategy-line-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--copper), var(--copper-light));
  box-shadow: 0 0 12px var(--copper);
  transition: width 1.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.strategy-section.active .strategy-line-fill {
  width: 100%;
}

.strategy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

.strategy-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.strategy-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 28px;
}

.strategy-icon-box {
  width: 104px;
  height: 104px;
  background: var(--white);
  border: 1px solid var(--light-border);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--copper);
  margin-bottom: 20px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  position: relative;
}

.strategy-step:hover .strategy-icon-box {
  border-color: var(--copper);
  background: linear-gradient(145deg, rgba(184, 115, 51, 0.08) 0%, var(--white) 100%);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1), 0 0 20px rgba(184, 115, 51, 0.12);
}

.strategy-icon-box svg {
  width: 42px;
  height: 42px;
}

.strategy-icon-glow {
  position: absolute;
  inset: -10px;
  background: radial-gradient(circle, rgba(184, 115, 51, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite;
}

.strategy-node {
  width: 12px;
  height: 12px;
  background: rgba(22, 46, 40, 0.9);
  border: 2px solid rgba(184, 115, 51, 0.5);
  border-radius: 50%;
  position: relative;
  z-index: 3;
  transition: all 0.4s ease;
}

.strategy-step:hover .strategy-node {
  background: var(--copper);
  border-color: var(--copper);
  box-shadow: 0 0 12px var(--copper);
  transform: scale(1.4);
}

.node-active {
  background: var(--copper) !important;
  border-color: var(--copper-light) !important;
  box-shadow: 0 0 16px var(--copper) !important;
}

.strategy-content {
  padding: 0 8px;
}

.strategy-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--deep-green);
  margin-bottom: 14px;
  line-height: 1.45;
}

.strategy-title span {
  color: var(--copper-light);
  font-weight: 700;
  display: block;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
}

.strategy-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.75;
}

@media (max-width: 992px) {
  .strategy-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }

  .strategy-line {
    display: none;
  }
}

@media (max-width: 600px) {
  .strategy-grid {
    grid-template-columns: 1fr;
  }
}

.roles-section {
  padding: 72px 0;
  color: var(--carbon);
}

.roles-header {
  text-align: center;
  margin-bottom: 40px;
}

.roles-header .section-eyebrow {
  margin-bottom: 14px;
}

.roles-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--deep-green);
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.role-card {
  background: var(--white);
  border: 1px solid var(--light-border);
  border-top: 3px solid var(--copper);
  padding: 40px 30px;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.role-card:hover {
  border-top-color: var(--copper-light);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.role-icon {
  margin-bottom: 24px;
  color: var(--pcb-green);
}

.role-icon svg {
  width: 32px;
  height: 32px;
}

.role-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--deep-green);
  margin-bottom: 16px;
  line-height: 1.3;
}

.role-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

.editorial-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 900px;
  margin: 40px auto 0;
}
.editorial-item {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  border-top: 1px solid rgba(0, 102, 68, 0.1);
  padding-top: 40px;
}
.editorial-item:first-child {
  border-top: none;
  padding-top: 0;
}
.editorial-num {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 0.8;
  color: var(--copper);
  opacity: 0.3;
  font-weight: 300;
  min-width: 100px;
}
.editorial-content {
  flex: 1;
}
.editorial-title {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--deep-green);
  margin-bottom: 16px;
  line-height: 1.3;
}
.editorial-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 768px) {
  .editorial-item {
    flex-direction: column;
    gap: 20px;
  }
  .editorial-num {
    font-size: 48px;
    min-width: auto;
  }
}

.shift-section {
  padding: 72px 0;
}

.shift-header {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 60px;
}

.shift-header-right {
  max-width: 320px;
  justify-self: end;
}

.shift-header-left .section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 16px;
}

.shift-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--deep-green);
  line-height: 1.2;
  margin: 0;
}

.shift-intro {
  font-size: 16px;
  color: var(--deep-green);
  line-height: 1.8;
  margin: 0;
}

.shift-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.shift-item {
  padding: 0 48px 0 0;
  border-right: 1px solid var(--light-border);
  padding-right: 48px;
}

.shift-item:last-child {
  border-right: none;
  padding-right: 0;
  padding-left: 48px;
}

.shift-item:nth-child(2) {
  padding-left: 48px;
}

.shift-item-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.shift-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--copper);
  flex-shrink: 0;
}

.shift-item-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--copper), transparent);
  opacity: 0.4;
}

.shift-item-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--deep-green);
  line-height: 1.4;
  margin-bottom: 16px;
}

.shift-item-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
  margin: 0;
}

@media (max-width: 960px) {
  .shift-header {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 56px;
  }
  .shift-list {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .shift-item,
  .shift-item:nth-child(2),
  .shift-item:last-child {
    border-right: none;
    border-top: 1px solid var(--light-border);
    padding: 40px 0 0 0;
  }
  .shift-item:first-child {
    border-top: none;
    padding-top: 0;
  }
}

@media (max-width: 600px) {
  .shift-section {
    padding: 72px 20px;
  }
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 10000;
  flex-shrink: 0;
  position: relative;
}
.nav-hamburger span {
  display: block;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  nav { padding: 0 20px; }

  .nav-hamburger { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: 68px;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    height: auto !important;
    background: rgba(22,46,40,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 16px;
    border-bottom: 1px solid rgba(192,192,192,0.12);
    z-index: 9999;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
    margin: 0 !important;
    box-sizing: border-box;
  }
  .nav-links.mobile-open { display: flex; }

  .nav-links > li { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-links > li > a {
    display: block;
    padding: 13px 24px;
    font-size: 15px;
    color: rgba(255,255,255,0.85);
  }

  .nav-item-dropdown { flex-direction: column; align-items: stretch; height: auto; }
  .nav-item-dropdown > a { justify-content: space-between; }

  
  .dropdown-menu.mob-dropdown-hidden {
    display: none !important;
  }
  .dropdown-menu.mob-dropdown-open {
    display: block !important;
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    background: rgba(0,0,0,0.22);
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 4px 0 10px !important;
    min-width: auto !important;
  }
  .dropdown-menu li a { padding: 9px 24px 9px 40px !important; font-size: 14px; }

  .nav-cta {
    margin: 10px 24px 4px !important;
    text-align: center;
    border-radius: 8px;
    display: block;
    padding: 12px 24px !important;
  }
  .nav-indicator { display: none; }

  
  .hero {
    padding: 100px 20px 72px;
    min-height: auto;
  }
  .hero h1 { font-size: clamp(28px, 8vw, 48px); }
  .hero-sub { font-size: 16px; margin-bottom: 32px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary { text-align: center; width: 100%; }

  
  .page-hero { padding: 100px 20px 64px; }
  .page-hero h1 { font-size: clamp(26px, 7vw, 40px); }

  
  .stats-bar {
    padding: 28px 20px;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .stat-item { padding: 0; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding-bottom: 20px; }
  .stat-item:nth-child(even) { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; padding-bottom: 0; }

  
  footer { padding: 48px 20px 28px; }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .footer-legal { justify-content: center; flex-wrap: wrap; gap: 16px; }

  
  .section-header-split { flex-direction: column; gap: 16px; }
  .mission-block { grid-template-columns: 1fr; gap: 32px; padding: 32px 20px; }
  .roles-grid { grid-template-columns: 1fr; gap: 20px; }
  .strategy-bento-grid { grid-template-columns: 1fr !important; }
  .bento-card:last-child { grid-column: span 1; }
  .strategy-grid { grid-template-columns: 1fr !important; }
  .shift-header { grid-template-columns: 1fr; gap: 20px; }
  .container { padding: 0 16px; }
}

@media (max-width: 480px) {
  
  .footer-cols { grid-template-columns: 1fr; }
  .ab-v2-header { grid-template-columns: 1fr; }
  .ab-mission-grid { grid-template-columns: 1fr; }
  .ab-expert-grid { grid-template-columns: 1fr; }
  .models-grid { grid-template-columns: 1fr; }
  .inv-grid { grid-template-columns: 1fr; }
  .glass-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .partner-item { grid-template-columns: 1fr; gap: 16px; }
  .ind-v2-grid { grid-template-columns: 1fr !important; }
  .bbti-grid { grid-template-columns: 1fr !important; }
  .geo-grid { grid-template-columns: 1fr !important; }

  
  .hero h1 { font-size: clamp(26px, 9vw, 36px); }
  .hero-sub { font-size: 15px; }
  .hero-subtitle { font-size: 15px; }
}

@media (min-width: 769px) {
  .nav-links {
    display: flex !important;
    position: fixed;
    top: 0;
    right: 60px;
    height: 68px;
    flex-direction: row;
    align-items: center;
    background: transparent;
    padding: 0;
    margin: 0;
    gap: 36px;
    max-height: none;
    overflow: visible;
    width: auto;
    border: none;
    backdrop-filter: none;
  }
}

@media (min-width: 769px) and (max-width: 1100px) {
  nav { padding: 0 32px; }
  .nav-links { right: 32px; gap: 24px; }
  .page-hero { padding: 120px 32px 80px; }
  .hero { padding: 120px 32px 80px; }
  .container { padding: 0 32px; }
  footer { padding: 56px 32px 32px; }
  .stats-bar { padding: 36px 32px; }
  .models-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
  .inv-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
}