:root {
  color-scheme: light;
  --bg-base: #f8faf9;
  --bg-section: #f2f4f3;
  --bg-card: #ffffff;
  --bg-elevated: #eceeed;
  --bg-glass: rgba(255, 255, 255, 0.82);
  --border-subtle: rgba(188, 202, 190, 0.25);
  --border-hover: rgba(0, 109, 67, 0.25);
  --shadow-ambient: 0 32px 64px rgba(0, 33, 17, 0.04);
  --shadow-card: 0 4px 24px rgba(0, 33, 17, 0.06);
  --shadow-hover: 0 12px 40px rgba(0, 33, 17, 0.1);
  --green: #006d43;
  --green-container: #00a86b;
  --green-light: #78fbb6;
  --green-wash: rgba(0, 109, 67, 0.04);
  --green-chip: #78fbb6;
  --gradient: linear-gradient(135deg, #006d43 0%, #00a86b 100%);
  --text-primary: #191c1c;
  --text-secondary: #3d4a41;
  --text-muted: #6d7a70;
  --on-green: #ffffff;
  --font-display: "Manrope", sans-serif;
  --font-body: "Space Grotesk", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --nav-height: 72px;
  --max-width: 1320px;
  --particle-color: rgba(0, 109, 67, 0.12);
  --particle-line: rgba(0, 109, 67, 0.06);
  --canvas-opacity: 0.5;
  --invert-logo: none;
}
html.dark {
  color-scheme: dark;
  --bg-base: #080c0a;
  --bg-section: #0d1410;
  --bg-card: #111a14;
  --bg-elevated: #162019;
  --bg-glass: rgba(8, 12, 10, 0.88);
  --border-subtle: rgba(26, 46, 34, 0.6);
  --border-hover: rgba(63, 166, 114, 0.3);
  --shadow-ambient: 0 32px 64px rgba(0, 0, 0, 0.3);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.2);
  --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.35);
  --green: #4a9b70;
  --green-container: #2d7a54;
  --green-light: #5dc48a;
  --green-wash: rgba(63, 166, 114, 0.03);
  --green-chip: rgba(63, 166, 114, 0.08);
  --gradient: linear-gradient(135deg, #2d6b4a 0%, #4a9b70 100%);
  --text-primary: #f0f7f3;
  --text-secondary: #7a9b86;
  --text-muted: #4a6254;
  --on-green: #ffffff;
  --particle-color: rgba(63, 166, 114, 0.3);
  --particle-line: rgba(63, 166, 114, 0.1);
  --canvas-opacity: 1;
  --invert-logo: none;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: auto;
  -webkit-font-smoothing: antialiased;
}
body {
  font-family: var(--font-body);
  background: var(--bg-base);
  color: var(--text-primary);
  overflow-x: hidden;
  cursor: none;
  min-height: 100vh;
  transition: background 0.4s, color 0.4s;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: none;
  border: none;
  background: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
ul,
ol {
  list-style: none;
}
input,
textarea,
select {
  font-family: inherit;
  cursor: none;
}
::selection {
  background: var(--green);
  color: var(--on-green);
}
:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 3px;
}
:focus:not(:focus-visible) {
  outline: none;
}
.skip-link {
  position: fixed;
  top: -100%;
  left: 1rem;
  z-index: 100000;
  padding: 0.75rem 1.5rem;
  background: var(--green);
  color: var(--on-green);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 0 0 8px 8px;
  transition: top 0.2s;
  opacity: 0;
  pointer-events: none;
}
.skip-link:focus-visible {
  top: 0;
  opacity: 1;
  pointer-events: auto;
}
#cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--green);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  will-change: transform;
  transition: width 0.35s var(--ease-out-expo),
    height 0.35s var(--ease-out-expo), border-radius 0.35s var(--ease-out-expo),
    background 0.35s, border 0.35s, opacity 0.3s;
  opacity: 0.85;
}
#cursor-dot.cursor-interactive {
  width: 52px;
  height: 52px;
  background: #fff0;
  border: 2.5px solid var(--green);
  opacity: 0.6;
}
#cursor-dot.cursor-text {
  width: 3px;
  height: 22px;
  border-radius: 2px;
  background: var(--green);
  opacity: 0.7;
}
#cursor-ring {
  display: none;
}
@media (pointer: coarse) {
  #cursor-dot,
  #cursor-ring {
    display: none;
  }
  body,
  a,
  button,
  input,
  textarea,
  select {
    cursor: auto;
  }
}
#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: var(--canvas-opacity);
  transition: opacity 0.4s;
}
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-base);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s;
}
#loader.closing {
  opacity: 0;
  visibility: hidden;
}
#loader-logo {
  width: 100px;
  height: 100px;
  opacity: 0;
  display: block;
}
#loader-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--gradient);
  width: 0%;
  transition: width 1.8s var(--ease-out-expo);
}
.loader-particles {
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--green);
  border-radius: 50%;
  opacity: 0;
}
#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s,
    box-shadow 0.4s;
  border-bottom: 1px solid #fff0;
}
#main-nav.scrolled {
  background: var(--bg-glass);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom-color: var(--border-subtle);
  box-shadow: var(--shadow-ambient);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-logo {
  width: 36px;
  height: 36px;
  transition: transform 0.4s var(--ease-out-expo);
  filter: var(--invert-logo);
}
.nav-brand:hover .nav-logo {
  transform: scale(1.08);
}
.nav-wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color 0.3s;
  padding: 0.5rem 0;
  position: relative;
}
.nav-link:hover,
.nav-link.active {
  color: var(--green);
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width 0.4s var(--ease-out-expo);
}
.nav-link.active::after,
.nav-link:hover::after {
  width: 100%;
}
.nav-cta {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  background: var(--gradient);
  color: var(--on-green);
  border-radius: 8px;
  transition: all 0.3s var(--ease-out-expo);
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgb(0 109 67 / 0.2);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.theme-toggle {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-section);
  border: 1px solid var(--border-subtle);
  transition: all 0.3s;
  font-size: 1.35rem;
  color: var(--text-secondary);
}
.theme-toggle:hover {
  border-color: var(--green);
  color: var(--green);
}
.theme-toggle .icon-sun {
  display: block;
}
.theme-toggle .icon-moon {
  display: none;
}
html.dark .theme-toggle .icon-sun {
  display: none;
}
html.dark .theme-toggle .icon-moon {
  display: block;
}
#menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  z-index: 1001;
}
.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s var(--ease-out-expo);
  transform-origin: center;
}
#menu-toggle.open .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
#menu-toggle.open .hamburger-line:nth-child(2) {
  opacity: 0;
}
#menu-toggle.open .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
#mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-glass);
  backdrop-filter: blur(40px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
#mobile-menu.open {
  display: flex;
}
.mobile-nav-link {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: var(--text-secondary);
  transition: color 0.3s;
  opacity: 0;
  transform: translateY(30px);
}
.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--green);
}
.mobile-nav-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--green);
  margin-right: 0.5rem;
}
.page {
  display: none;
  position: relative;
  z-index: 1;
  min-height: 100vh;
  visibility: hidden;
}
.page.active {
  display: block;
}
.page.ready {
  visibility: visible;
}
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
}
.section-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--green);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.section-label::before {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green);
}
.section-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}
.text-green {
  color: var(--green);
}
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}
.hero-pre {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--green-wash);
  padding: 0.4rem 1rem;
  border-radius: 100px;
}
.hero-pre-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 1.75rem;
}
.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 400;
  color: var(--text-secondary);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.btn-primary {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.9rem 2rem;
  background: var(--gradient);
  color: var(--on-green);
  border-radius: 10px;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}
.btn-primary:hover {
  box-shadow: 0 12px 32px rgb(0 109 67 / 0.2);
  transform: translateY(-2px);
}
.btn-text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.3s;
  position: relative;
}
.btn-text::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--green);
  transition: width 0.4s var(--ease-out-expo);
}
.btn-text:hover {
  color: var(--green);
}
.btn-text:hover::after {
  width: 100%;
}
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-compass {
  width: clamp(180px, 20vw, 280px);
  position: relative;
}
.hero-compass-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgb(0 109 67 / 0.08));
}
.hero-stats {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.5rem;
}
.hero-stat-pill {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  white-space: nowrap;
  box-shadow: var(--shadow-card);
}
.hero-stat-pill strong {
  color: var(--green);
  font-weight: 700;
}
.services-section {
  padding: 7rem 0;
}
.services-accordion {
  display: flex;
  height: clamp(380px, 50vh, 500px);
  gap: 6px;
  border-radius: 16px;
  overflow: hidden;
  margin-top: 3rem;
}
.service-col {
  flex: 1;
  position: relative;
  background: var(--bg-card);
  transition: flex 0.7s var(--ease-out-expo);
  overflow: hidden;
  cursor: none;
  border: 1px solid var(--border-subtle);
}
.service-col:hover {
  flex: 4;
  border-color: var(--border-hover);
}
.service-col::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.025;
  pointer-events: none;
  transition: opacity 0.5s;
}
.service-col:hover::after {
  opacity: 0.04;
}
.service-col:nth-child(1)::after {
  background: repeating-linear-gradient(
      90deg,
      var(--green) 0 1px,
      transparent 1px 28px
    ),
    repeating-linear-gradient(0deg, var(--green) 0 1px, transparent 1px 28px);
}
.service-col:nth-child(2)::after {
  background: radial-gradient(
    circle 1.5px,
    var(--green) 100%,
    transparent 100%
  );
  background-size: 18px 18px;
}
.service-col:nth-child(3)::after {
  background: repeating-linear-gradient(
    45deg,
    var(--green) 0 1px,
    transparent 1px 14px
  );
}
.service-col:nth-child(4)::after {
  background: repeating-linear-gradient(
    -45deg,
    var(--green) 0 1px,
    transparent 1px 14px
  );
}
.service-ghost {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(4rem, 6vw, 7rem);
  color: var(--green);
  opacity: 0.06;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  line-height: 1;
  transition: all 0.5s var(--ease-out-expo);
}
.service-col:hover .service-ghost {
  opacity: 0.1;
  transform: scale(1.1);
}
.service-vlabel {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-secondary);
  transition: opacity 0.3s;
  white-space: nowrap;
}
.service-col:hover .service-vlabel {
  opacity: 0;
}
.service-detail {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s var(--ease-out-expo) 0.1s;
  background: linear-gradient(to top, var(--bg-card) 70%, transparent);
}
.service-col:hover .service-detail {
  opacity: 1;
  transform: translateY(0);
}
.service-detail h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}
.service-detail p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.service-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.svc-tag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  background: var(--green-wash);
  border-radius: 100px;
  color: var(--green);
}
html.dark .svc-tag {
  color: var(--text-secondary);
}
.stats-band {
  padding: 3.5rem 0;
  background: var(--bg-section);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  z-index: 1;
}
.stats-row {
  display: flex;
  justify-content: center;
  gap: clamp(2rem, 8vw, 5rem);
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.8rem;
  color: var(--green);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.4rem;
}
.ticker-section {
  padding: 1.25rem 0;
  overflow: hidden;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-section);
  position: relative;
  z-index: 1;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 80s linear infinite;
}
.ticker-item {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.ticker-item::before {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--green);
  border-radius: 50%;
  opacity: 0.6;
  flex-shrink: 0;
}
@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.projects-section {
  padding: 7rem 0;
  padding-top: calc(var(--nav-height) + 4rem);
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: dense;
  gap: 1.25rem;
  margin-top: 3rem;
}
.project-card:nth-child(1) {
  grid-column: span 2;
}
.project-card:nth-child(6) {
  grid-column: span 2;
}
.project-card:nth-child(10) {
  grid-column: span 2;
}
.project-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.92);
  perspective: 800px;
}
.project-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out-expo);
}
.project-card::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, var(--green) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.project-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-hover);
}
.project-card:hover::before {
  transform: scaleX(1);
}
.project-card:hover::after {
  opacity: 0.06;
}
.project-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3.5rem;
  color: var(--green);
  opacity: 0;
  line-height: 1;
  margin-bottom: 0.5rem;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  pointer-events: none;
}
.project-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.project-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.project-tag {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  background: var(--green-wash);
  border-radius: 100px;
  color: var(--green);
  opacity: 0;
  transform: translateY(8px);
}
.govt-section {
  padding: 7rem 0;
  background: var(--bg-section);
}
.govt-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}
.govt-left-col {
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}
@media (max-width: 1024px) {
  .govt-left-col {
    position: static;
  }
}
.dot-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 6px;
  max-width: 360px;
}
.dot-cell {
  aspect-ratio: 1;
  background: var(--green-wash);
  border-radius: 3px;
  transition: all 0.6s var(--ease-out-expo);
}
.dot-cell.filled {
  background: var(--green);
  box-shadow: 0 0 8px rgb(0 109 67 / 0.2);
}
.dot-cell.filled:hover {
  transform: scale(1.2);
}
.govt-stats-row {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.govt-stat {
  text-align: left;
}
.govt-stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--green);
  line-height: 1;
}
.govt-stat-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}
.govt-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.govt-cat {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  color: var(--text-secondary);
  transition: all 0.3s;
}
.govt-cat:hover {
  border-color: var(--green);
  color: var(--green);
}
.govt-featured-sites {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.govt-site-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s;
  opacity: 0;
}
.govt-site-card:hover {
  border-color: var(--border-hover);
  transform: translateX(3px);
}
.govt-site-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}
.govt-site-url {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
}
.govt-site-status {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--green);
  letter-spacing: 0.08em;
}
.live-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgb(0 109 67 / 0.3);
  }
  50% {
    opacity: 0.6;
    box-shadow: 0 0 0 6px #fff0;
  }
}
.about-section {
  padding: 7rem 0;
  padding-top: calc(var(--nav-height) + 4rem);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: start;
  margin-top: 3rem;
}
.about-text p {
  font-size: 1.02rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.about-principles {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}
.principle-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}
.principle-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.about-timeline {
  position: relative;
  padding-left: 2rem;
}
.about-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: var(--gradient);
  border-radius: 2px;
}
.timeline-item {
  position: relative;
  padding-bottom: 2rem;
  padding-left: 1.5rem;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -2.3rem;
  top: 0.4rem;
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
  border: 2px solid var(--bg-base);
}
.timeline-year {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--green);
  letter-spacing: 0.15em;
  margin-bottom: 0.3rem;
  font-weight: 500;
}
.timeline-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.about-location {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}
.location-coords {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  margin-top: 0.2rem;
}
.announcements-section {
  padding: 7rem 0;
  padding-top: calc(var(--nav-height) + 4rem);
  background: var(--bg-section);
}
.announcement-featured {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  margin-top: 3rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.announcement-featured:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-card);
}
.announcement-chip {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}
.chip-launch {
  background: var(--green-chip);
  color: var(--green);
}
.chip-hiring {
  background: rgb(0 168 107 / 0.1);
  color: var(--green-container);
}
html.dark .chip-hiring {
  background: rgb(93 196 138 / 0.12);
  color: var(--green-light);
}
.chip-update {
  background: var(--bg-elevated);
  color: var(--text-muted);
}
.announcement-date {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}
.announcement-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.announcement-body {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.announcements-list {
  display: flex;
  flex-direction: column;
}
.announcement-row {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.25rem 1rem;
  border-bottom: 1px solid var(--border-subtle);
  transition: all 0.3s;
  border-radius: 8px;
  cursor: pointer;
}
.announcement-row:hover {
  background: var(--green-wash);
}
.announcement-row:last-child {
  border-bottom: none;
}
.announcement-row-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
}
.announcement-row-arrow {
  font-size: 1.1rem;
  color: var(--text-muted);
  transition: transform 0.3s, color 0.3s;
}
.announcement-row:hover .announcement-row-arrow {
  transform: translateX(4px);
  color: var(--green);
}
.announcement-drawer {
  position: fixed;
  top: 0;
  right: -500px;
  width: 480px;
  max-width: 90vw;
  height: 100%;
  background: var(--bg-card);
  border-left: 3px solid var(--green);
  z-index: 2000;
  padding: 3rem 2rem;
  overflow-y: auto;
  transition: right 0.5s var(--ease-out-expo);
}
.announcement-drawer.open {
  right: 0;
}
.drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 0.3);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
html.dark .drawer-backdrop {
  background: rgb(0 0 0 / 0.6);
}
.drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
.drawer-close {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s;
}
.drawer-close:hover {
  color: var(--green);
}
.contact-section {
  padding: 7rem 0;
  padding-top: calc(var(--nav-height) + 4rem);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  margin-top: 3rem;
}
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  opacity: 0;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--green);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}
.form-input {
  width: 100%;
  background: var(--bg-section);
  border: none;
  border-bottom: 2px solid var(--border-subtle);
  color: var(--text-primary);
  font-size: 1rem;
  padding: 0.75rem 0.5rem;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  border-radius: 4px 4px 0 0;
}
.form-input:focus {
  border-bottom-color: var(--green);
}
.form-input::placeholder {
  color: var(--text-muted);
}
textarea.form-input {
  min-height: 100px;
  resize: vertical;
}
.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.service-pill {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.5rem 1.1rem;
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  color: var(--text-secondary);
  transition: all 0.3s;
}
.service-pill.selected {
  background: var(--green);
  border-color: var(--green);
  color: var(--on-green);
}
.service-pill:hover:not(.selected) {
  border-color: var(--green);
  color: var(--green);
}
.btn-submit {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 1rem;
  background: var(--gradient);
  color: var(--on-green);
  border: none;
  border-radius: 10px;
  transition: all 0.4s var(--ease-out-expo);
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.btn-submit:hover {
  box-shadow: 0 12px 32px rgb(0 109 67 / 0.2);
  transform: translateY(-2px);
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-channel {
  opacity: 0;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
}
.contact-channel:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.channel-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}
.channel-value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
}
.channel-value a {
  transition: color 0.3s;
}
.channel-value a:hover {
  color: var(--green);
}
.site-footer {
  padding: 0;
  border-top: none;
  position: relative;
  z-index: 1;
  background: var(--bg-base);
  overflow: hidden;
}
.footer-cta-band {
  background: var(--gradient);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.footer-cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0 15px,
    rgb(255 255 255 / 0.03) 15px 30px
  );
  pointer-events: none;
}
.footer-cta-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--on-green);
  margin-bottom: 1.5rem;
}
.footer-cta-btn {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.9rem 2.5rem;
  background: var(--on-green);
  color: var(--green);
  border-radius: 10px;
  transition: all 0.3s;
  display: inline-block;
}
.footer-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgb(0 0 0 / 0.15);
}
.footer-main {
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-grid-links {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}
.footer-brand-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-top: 0.75rem;
  max-width: 300px;
}
.footer-heading {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--green);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-link {
  display: block;
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}
.footer-link:hover {
  color: var(--green);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}
.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}
.footer-logo {
  width: 28px;
  height: 28px;
  transition: transform 0.4s var(--ease-out-expo);
  filter: var(--invert-logo);
}
.footer-logo:hover {
  transform: scale(1.1);
}
.hero-pre,
.hero-title,
.hero-subtitle,
.hero-ctas,
.hero-compass,
.hero-stats {
  opacity: 0;
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
#page-transition-curtain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  pointer-events: none;
  background: var(--bg-base);
  opacity: 0;
}
.footer-grid > div,
.footer-grid-links > div {
  opacity: 0;
}
.footer-cta-heading,
.footer-cta-btn {
  opacity: 0;
}
.principle {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  background: var(--bg-card);
  border: none;
  border-radius: 16px;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.principle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient);
  border-radius: 4px 0 0 4px;
  transform: scaleY(0);
  transition: transform 0.5s var(--ease-out-expo);
}
.principle:hover::before {
  transform: scaleY(1);
}
.principle:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-hover);
}
.principle-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--green);
  opacity: 0.15;
  line-height: 1;
  min-width: 48px;
}
.principle:hover .principle-num {
  opacity: 0.3;
}
.contact-status {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: 16px;
  opacity: 0;
  background: var(--gradient);
  position: relative;
  overflow: hidden;
}
.contact-status::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0 10px,
    rgb(255 255 255 / 0.03) 10px 20px
  );
  pointer-events: none;
}
.contact-status-text {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--on-green);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.contact-status .live-dot {
  background: var(--on-green);
  box-shadow: 0 0 0 0 rgb(255 255 255 / 0.3);
  animation: pulse-white 2s ease-in-out infinite;
}
@keyframes pulse-white {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgb(255 255 255 / 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px #fff0;
  }
}
html.dark .stat-num,
html.dark .govt-stat-num {
  color: var(--text-primary);
}
html.dark .service-tag,
html.dark .project-tag {
  color: var(--text-secondary);
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .ticker-track {
    animation: none;
  }
  .hero-pre,
  .hero-title,
  .hero-subtitle,
  .hero-ctas,
  .hero-compass,
  .hero-stats {
    opacity: 1;
  }
}
@media (max-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-pre {
    justify-content: center;
  }
  .hero-subtitle {
    margin: 0 auto 2.5rem;
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero-visual {
    margin-top: 3rem;
  }
  .hero-stats {
    flex-direction: row;
    justify-content: center;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .govt-grid-layout {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  :root {
    --nav-height: 60px;
  }
  .nav-links {
    display: none;
  }
  #menu-toggle {
    display: flex;
  }
  .services-accordion {
    flex-direction: column;
    height: auto;
  }
  .service-col {
    min-height: 80px;
  }
  .service-col:hover {
    flex: auto;
    min-height: 250px;
  }
  .service-vlabel {
    writing-mode: horizontal-tb;
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    padding: 1.5rem;
  }
  .service-detail {
    position: relative;
    opacity: 1;
    transform: none;
    background: none;
  }
  .service-col:hover .service-vlabel {
    opacity: 0;
    display: none;
  }
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .project-card:nth-child(1),
  .project-card:nth-child(6),
  .project-card:nth-child(10) {
    grid-column: span 1;
  }
  .announcement-row {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }
  .hero-title {
    font-size: clamp(2.5rem, 11vw, 4.5rem);
  }
  .hero-stats {
    flex-direction: column;
    align-items: center;
  }
  .dot-grid {
    max-width: 280px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid-links {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}
