@keyframes cursor-blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
@keyframes fade-in-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-in-scale {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slide-in-right {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes typewriter {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes terminal-boot {
  0% {
    opacity: 0;
    transform: scaleY(0.02);
    filter: brightness(3);
  }
  20% {
    opacity: 1;
    transform: scaleY(1);
    filter: brightness(2);
  }
  80% {
    opacity: 1;
    transform: scaleY(1);
    filter: brightness(1);
  }
  100% {
    opacity: 0;
    transform: scaleY(1);
    filter: brightness(1);
  }
}
@keyframes boot-text {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes glow-pulse {
  0%,
  100% {
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.8), 0 0 20px rgba(0, 255, 65, 0.4);
  }
  50% {
    text-shadow: 0 0 30px rgba(0, 255, 65, 0.8), 0 0 60px rgba(0, 255, 65, 0.6), 0 0 90px rgba(0, 255, 65, 0.3);
  }
}
@keyframes box-glow-pulse {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.2), inset 0 0 20px rgba(0, 255, 65, 0.03);
  }
  50% {
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.4), inset 0 0 40px rgba(0, 255, 65, 0.06);
  }
}
@keyframes border-glow {
  0%,
  100% {
    border-color: rgba(0, 255, 65, 0.25);
  }
  50% {
    border-color: rgba(0, 255, 65, 0.6);
  }
}
@keyframes glitch-main {
  0% {
    clip-path: inset(0 0 100% 0);
  }
  10%,
  15% {
    clip-path: inset(10% 0 60% 0);
    transform: translate(-3px, 0);
    color: #00e5ff;
  }
  20%,
  25% {
    clip-path: inset(40% 0 30% 0);
    transform: translate(3px, 0);
    color: #00ff41;
  }
  30%,
  35% {
    clip-path: inset(70% 0 5% 0);
    transform: translate(-2px, 0);
    color: #ff3333;
  }
  40%,
  100% {
    clip-path: inset(0 0 0 0);
    transform: translate(0, 0);
    color: inherit;
  }
}
@keyframes glitch-1 {
  0%,
  90%,
  100% {
    clip-path: inset(0 0 0 0);
    transform: translate(0);
    opacity: 0;
  }
  91% {
    clip-path: inset(20% 0 60% 0);
    transform: translate(-4px, 1px);
    opacity: 0.7;
    color: #00e5ff;
  }
  93% {
    clip-path: inset(50% 0 20% 0);
    transform: translate(4px, -1px);
    opacity: 0.7;
    color: #ff3333;
  }
  95% {
    clip-path: inset(80% 0 5% 0);
    transform: translate(-2px, 2px);
    opacity: 0.7;
    color: #00e5ff;
  }
  97% {
    clip-path: inset(5% 0 80% 0);
    transform: translate(2px, -2px);
    opacity: 0.7;
    color: #00ff41;
  }
}
@keyframes glitch-2 {
  0%,
  85%,
  100% {
    clip-path: inset(0 0 0 0);
    transform: translate(0);
    opacity: 0;
  }
  86% {
    clip-path: inset(30% 0 55% 0);
    transform: translate(5px, 0);
    opacity: 0.6;
    color: #ff3333;
  }
  88% {
    clip-path: inset(60% 0 15% 0);
    transform: translate(-5px, 0);
    opacity: 0.6;
    color: #00e5ff;
  }
  90% {
    clip-path: inset(10% 0 75% 0);
    transform: translate(3px, -2px);
    opacity: 0.6;
    color: #00ff41;
  }
}
@keyframes glitch-skew {
  0%,
  95%,
  100% {
    transform: skewX(0deg);
  }
  96% {
    transform: skewX(-3deg);
  }
  97% {
    transform: skewX(3deg);
  }
  98% {
    transform: skewX(-1deg);
  }
}
@keyframes scanline-move {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 100vh;
  }
}
@keyframes scanline-fast {
  from {
    top: -100%;
  }
  to {
    top: 200%;
  }
}
@keyframes crt-flicker {
  0%,
  100% {
    opacity: 1;
  }
  89% {
    opacity: 1;
  }
  90% {
    opacity: 0.85;
  }
  91% {
    opacity: 1;
  }
  92% {
    opacity: 0.9;
  }
  93% {
    opacity: 1;
  }
}
@keyframes phosphor-pulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.55;
  }
}
@keyframes matrix-char-fall {
  0% {
    transform: translateY(-100%);
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: translateY(100vh);
    opacity: 0;
  }
}
@keyframes float-particle {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0.6;
  }
  33% {
    transform: translateY(-20px) translateX(10px);
    opacity: 0.8;
  }
  66% {
    transform: translateY(-10px) translateX(-8px);
    opacity: 0.5;
  }
  100% {
    transform: translateY(0) translateX(0);
    opacity: 0.6;
  }
}
@keyframes progress-fill {
  from {
    width: 0;
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes spin-reverse {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}
@keyframes count-up {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes ripple {
  0% {
    transform: scale(0);
    opacity: 0.6;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}
@keyframes h-scan {
  0% {
    left: -100%;
  }
  100% {
    left: 200%;
  }
}
@keyframes dash-flow {
  from {
    stroke-dashoffset: 1000;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes bounce-in {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  50% {
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes neon-flicker {
  0%,
  19%,
  21%,
  23%,
  25%,
  54%,
  56%,
  100% {
    text-shadow: 0 0 7px #00ff41, 0 0 21px #00ff41, 0 0 42px #00aa2b;
  }
  20%,
  24%,
  55% {
    text-shadow: none;
  }
}
@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes scroll-x {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-size: 16px;
}
body {
  font-family: 'Share Tech Mono', 'IBM Plex Mono', 'Courier New', monospace;
  background: #000000;
  color: #00ff41;
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
  cursor: crosshair;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 150ms ease;
}
button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}
img,
svg {
  display: block;
  max-width: 100%;
}
code,
pre {
  font-family: 'Share Tech Mono', 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 0.85rem;
}
::selection {
  background: #006622;
  color: #39ff14;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.u-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.u-container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .u-container {
    padding: 0 1rem;
  }
}
.u-section {
  padding: 4rem 0;
}
@media (max-width: 768px) {
  .u-section {
    padding: 3rem 0;
  }
}
.u-glow-text {
  animation: glow-pulse 3s ease-in-out infinite;
}
.u-gradient-text {
  background: linear-gradient(135deg, #39ff14, #00e5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.u-retro {
  font-family: 'VT323', monospace;
  letter-spacing: 0.05em;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 2px 0.5rem;
  border: 1px solid rgba(0, 255, 65, 0.25);
  border-radius: 3px;
  font-size: 0.7rem;
  color: #00aa2b;
  background: rgba(0, 255, 65, 0.04);
  font-family: 'Share Tech Mono', 'IBM Plex Mono', 'Courier New', monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.tag.tag-green {
  color: #00ff41;
  border-color: rgba(0, 255, 65, 0.4);
  background: rgba(0, 255, 65, 0.06);
}
.tag.tag-cyan {
  color: #00e5ff;
  border-color: rgba(0, 229, 255, 0.4);
  background: rgba(0, 229, 255, 0.05);
}
.tag.tag-red {
  color: #ff3333;
  border-color: rgba(255, 51, 51, 0.4);
  background: rgba(255, 51, 51, 0.05);
}
.tag.tag-amber {
  color: #ffb300;
  border-color: rgba(255, 179, 0, 0.4);
  background: rgba(255, 179, 0, 0.05);
}
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #000000;
}
::-webkit-scrollbar-thumb {
  background: #006622;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #00aa2b;
}
#crt-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
}
#crt-overlay .scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 255, 65, 0.025) 2px, rgba(0, 255, 65, 0.025) 4px);
  animation: scanline-move 8s linear infinite;
  opacity: 0.5;
}
#crt-overlay .screen-curve {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 60%, rgba(0, 0, 0, 0.35) 100%);
}
#crt-overlay .phosphor {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(0, 255, 65, 0.04) 0%, transparent 65%);
  animation: phosphor-pulse 4s ease-in-out infinite;
}
#crt-overlay .scan-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(transparent, rgba(0, 255, 65, 0.08), transparent);
  animation: scanline-fast 6s linear infinite;
  opacity: 0.6;
}
#boot-screen {
  position: fixed;
  inset: 0;
  background: #000000;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 4rem;
  animation: boot-text 3.2s ease forwards;
  pointer-events: none;
}
#boot-screen .boot-logo {
  font-family: 'VT323', monospace;
  font-size: clamp(2rem, 6vw, 5rem);
  color: #00ff41;
  text-shadow: 0 0 20px #00ff41, 0 0 50px #00ff41;
  animation: glow-pulse 0.8s ease-in-out infinite;
  margin-bottom: 2rem;
  letter-spacing: 0.1em;
}
#boot-screen .boot-lines {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.85rem;
  color: #00aa2b;
  width: 100%;
  max-width: 600px;
}
#boot-screen .boot-line {
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
#boot-screen .boot-line.ok .boot-status {
  color: #39ff14;
}
#boot-screen .boot-line.warn .boot-status {
  color: #ffb300;
}
#boot-screen .boot-line.err .boot-status {
  color: #ff3333;
}
#boot-screen .boot-line:nth-child(1) {
  animation: typewriter 0.3s steps(30, end) 0.18s both;
}
#boot-screen .boot-line:nth-child(2) {
  animation: typewriter 0.3s steps(30, end) 0.36s both;
}
#boot-screen .boot-line:nth-child(3) {
  animation: typewriter 0.3s steps(30, end) 0.54s both;
}
#boot-screen .boot-line:nth-child(4) {
  animation: typewriter 0.3s steps(30, end) 0.72s both;
}
#boot-screen .boot-line:nth-child(5) {
  animation: typewriter 0.3s steps(30, end) 0.9s both;
}
#boot-screen .boot-line:nth-child(6) {
  animation: typewriter 0.3s steps(30, end) 1.08s both;
}
#boot-screen .boot-line:nth-child(7) {
  animation: typewriter 0.3s steps(30, end) 1.26s both;
}
#boot-screen .boot-line:nth-child(8) {
  animation: typewriter 0.3s steps(30, end) 1.44s both;
}
#boot-screen .boot-status {
  margin-left: auto;
  font-weight: 600;
  letter-spacing: 0.1em;
}
#boot-screen .boot-bar {
  margin-top: 2rem;
  width: min(400px, 80vw);
  height: 4px;
  background: #003311;
  border-radius: 999px;
  overflow: hidden;
}
#boot-screen .boot-bar::after {
  content: '';
  display: block;
  height: 100%;
  background: #00ff41;
  border-radius: 999px;
  animation: progress-fill 2.5s ease forwards;
  width: 100%;
}
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: rgba(0, 10, 0, 0.85);
  border: 1px solid rgba(0, 255, 65, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 255, 65, 0.25);
  z-index: 800;
  transition: background 600ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 600ms cubic-bezier(0.4, 0, 0.2, 1);
  animation: fade-in 0.5s ease 3.2s both;
}
#navbar.scrolled {
  background: rgba(0, 4, 0, 0.97);
  box-shadow: 0 4px 30px rgba(0, 255, 65, 0.12);
}
#navbar .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  gap: 2rem;
}
@media (max-width: 768px) {
  #navbar .nav-inner {
    padding: 0 1rem;
  }
}
#navbar .nav-logo {
  font-family: 'VT323', monospace;
  font-size: 1.8rem;
  color: #39ff14;
  text-shadow: 0 0 12px #39ff14, 0 0 30px #39ff14;
  letter-spacing: 0.08em;
  animation: neon-flicker 8s ease-in-out infinite;
  white-space: nowrap;
}
#navbar .nav-logo span {
  color: #006622;
  font-size: 1.1rem;
}
#navbar .nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
@media (max-width: 768px) {
  #navbar .nav-links {
    display: none;
  }
}
#navbar .nav-link {
  position: relative;
  font-size: 0.85rem;
  color: #8aaa8a;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0;
  transition: color 150ms ease;
}
#navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #00ff41;
  transition: width 300ms ease;
  box-shadow: 0 0 6px rgba(0, 255, 65, 0.8);
}
#navbar .nav-link:hover,
#navbar .nav-link.active {
  color: #39ff14;
}
#navbar .nav-link:hover::after,
#navbar .nav-link.active::after {
  width: 100%;
}
#navbar .nav-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.25rem 1rem;
  border: 1px solid rgba(0, 255, 65, 0.6);
  border-radius: 3px;
  color: #39ff14;
  font-size: 0.85rem;
  font-family: 'Share Tech Mono', 'IBM Plex Mono', 'Courier New', monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 300ms ease;
  white-space: nowrap;
}
#navbar .nav-cta:hover {
  background: rgba(0, 255, 65, 0.08);
  box-shadow: 0 0 8px rgba(0, 255, 65, 0.3);
  transform: translateY(-1px);
}
#navbar .nav-mobile-btn {
  display: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #00ff41;
  font-size: 1.4rem;
}
@media (max-width: 768px) {
  #navbar .nav-mobile-btn {
    display: flex;
  }
}
#navbar .nav-mobile-menu {
  display: none;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background: rgba(0, 10, 0, 0.85);
  border: 1px solid rgba(0, 255, 65, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(0, 255, 65, 0.25);
  padding: 1rem;
  flex-direction: column;
  gap: 0.5rem;
}
#navbar .nav-mobile-menu.open {
  display: flex;
}
#navbar .nav-mobile-menu .nav-link {
  padding: 0.5rem 1rem;
  border-radius: 6px;
}
#navbar .nav-mobile-menu .nav-link:hover {
  background: rgba(0, 255, 65, 0.06);
}
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 64px;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 30%, rgba(0, 30, 0, 0.8) 0%, #000000 70%);
}
#hero canvas#matrix-canvas {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  z-index: -1;
}
#hero .hero-inner {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 1;
  padding-top: 3rem;
  padding-bottom: 3rem;
  gap: 2rem;
}
@media (max-width: 768px) {
  #hero .hero-inner {
    padding: 0 1rem;
  }
}
#hero .hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  color: #00aa2b;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(24px);
  animation: fade-in-up 0.6s cubic-bezier(0.4, 0, 0.2, 1) 3.4s forwards;
}
#hero .hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  background: #00ff41;
  border-radius: 50%;
  animation: glow-pulse 2s ease-in-out infinite;
  box-shadow: 0 0 6px #00ff41;
}
#hero .hero-title {
  font-family: 'VT323', monospace;
  font-size: clamp(2.5rem, 7vw, 6rem);
  line-height: 1;
  letter-spacing: 0.04em;
  color: #39ff14;
  position: relative;
  opacity: 0;
  transform: translateY(24px);
  animation: fade-in-up 0.7s cubic-bezier(0.4, 0, 0.2, 1) 3.6s forwards;
  animation: fade-in-up 0.7s cubic-bezier(0.4, 0, 0.2, 1) 3.6s forwards, glow-pulse 4s ease-in-out 4.5s infinite, glitch-skew 12s ease-in-out 5s infinite;
}
#hero .hero-title::before,
#hero .hero-title::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  font-family: inherit;
  font-size: inherit;
}
#hero .hero-title::before {
  animation: glitch-1 10s ease-in-out infinite;
  color: #00e5ff;
  left: 2px;
}
#hero .hero-title::after {
  animation: glitch-2 10s ease-in-out 1s infinite;
  color: #ff3333;
  left: -2px;
}
#hero .hero-subtitle {
  font-size: clamp(1.15rem, 2.5vw, 2rem);
  color: #00aa2b;
  letter-spacing: 0.06em;
  max-width: 650px;
  opacity: 0;
  transform: translateY(24px);
  animation: fade-in-up 0.6s cubic-bezier(0.4, 0, 0.2, 1) 3.9s forwards;
}
#hero .hero-terminal {
  width: 100%;
  max-width: 680px;
  background: rgba(0, 10, 0, 0.85);
  border: 1px solid rgba(0, 255, 65, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 12px;
  border-color: rgba(0, 255, 65, 0.6);
  overflow: hidden;
  transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
  opacity: 0;
  transform: translateY(24px);
  animation: fade-in-up 0.7s cubic-bezier(0.4, 0, 0.2, 1) 4.1s forwards;
  animation: fade-in-up 0.7s cubic-bezier(0.4, 0, 0.2, 1) 4.1s forwards, box-glow-pulse 4s ease-in-out 5s infinite;
}
#hero .hero-terminal:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 255, 65, 0.2);
  border-color: rgba(0, 255, 65, 0.6);
}
#hero .hero-terminal .term-titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  background: rgba(0, 20, 0, 0.9);
  border-bottom: 1px solid rgba(0, 255, 65, 0.25);
}
#hero .hero-terminal .term-titlebar .term-dots {
  display: flex;
  gap: 0.5rem;
}
#hero .hero-terminal .term-titlebar .term-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
#hero .hero-terminal .term-titlebar .term-dots span:nth-child(1) {
  background: #ff3333;
  box-shadow: 0 0 6px rgba(255, 51, 51, 0.4);
}
#hero .hero-terminal .term-titlebar .term-dots span:nth-child(2) {
  background: #ffb300;
  box-shadow: 0 0 6px rgba(255, 179, 0, 0.5);
}
#hero .hero-terminal .term-titlebar .term-dots span:nth-child(3) {
  background: #00ff41;
  box-shadow: 0 0 6px rgba(0, 255, 65, 0.3);
}
#hero .hero-terminal .term-titlebar .term-title {
  font-size: 0.7rem;
  color: #4a7a4a;
  letter-spacing: 0.1em;
}
#hero .hero-terminal .term-body {
  padding: 1.5rem;
  font-size: 0.85rem;
  color: #00aa2b;
  line-height: 1.8;
  min-height: 160px;
}
#hero .hero-terminal .term-body .term-line {
  display: flex;
  gap: 0.5rem;
  opacity: 0;
  white-space: pre-wrap;
  word-break: break-all;
}
#hero .hero-terminal .term-body .term-line:nth-child(1) {
  animation: fade-in 0.3s ease 4.85s forwards;
}
#hero .hero-terminal .term-body .term-line:nth-child(2) {
  animation: fade-in 0.3s ease 5.2s forwards;
}
#hero .hero-terminal .term-body .term-line:nth-child(3) {
  animation: fade-in 0.3s ease 5.55s forwards;
}
#hero .hero-terminal .term-body .term-line:nth-child(4) {
  animation: fade-in 0.3s ease 5.9s forwards;
}
#hero .hero-terminal .term-body .term-line:nth-child(5) {
  animation: fade-in 0.3s ease 6.25s forwards;
}
#hero .hero-terminal .term-body .term-line:nth-child(6) {
  animation: fade-in 0.3s ease 6.6s forwards;
}
#hero .hero-terminal .term-body .term-line .prompt {
  color: #00ff41;
  flex-shrink: 0;
  user-select: none;
}
#hero .hero-terminal .term-body .term-line .cmd {
  color: #39ff14;
}
#hero .hero-terminal .term-body .term-line .out {
  color: #4a7a4a;
  padding-left: 1.5rem;
}
#hero .hero-terminal .term-body .term-line .success {
  color: #00ff41;
}
#hero .hero-terminal .term-body .term-line .err {
  color: #ff3333;
}
#hero .hero-terminal .term-body .term-line .comment {
  color: #006622;
}
#hero .hero-terminal .term-body .term-line:last-child .cmd::after {
  content: '█';
  animation: cursor-blink 1s step-end infinite;
  color: #00ff41;
}
#hero .hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  transform: translateY(24px);
  animation: fade-in-up 0.6s cubic-bezier(0.4, 0, 0.2, 1) 4.5s forwards;
}
#hero .hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  color: #006622;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  animation: fade-in 0.6s ease 5.5s forwards;
}
#hero .hero-scroll-hint .scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 1px solid #006622;
  border-bottom: 1px solid #006622;
  transform: rotate(45deg);
  animation: float-particle 2s ease-in-out infinite;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  border-radius: 3px;
  font-family: 'Share Tech Mono', 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 300ms ease;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(0, 255, 65, 0.1));
  opacity: 0;
  transition: opacity 150ms ease;
}
.btn:hover::before {
  opacity: 1;
}
.btn-primary {
  background: rgba(0, 255, 65, 0.12);
  border: 1px solid #00ff41;
  color: #39ff14;
  box-shadow: 0 0 20px rgba(0, 255, 65, 0.15), inset 0 0 20px rgba(0, 255, 65, 0.05);
}
.btn-primary:hover {
  background: rgba(0, 255, 65, 0.2);
  box-shadow: 0 0 20px rgba(0, 255, 65, 0.8), 0 0 60px rgba(0, 255, 65, 0.3);
  transform: translateY(-2px);
}
.btn-secondary {
  background: transparent;
  border: 1px solid rgba(0, 255, 65, 0.25);
  color: #8aaa8a;
}
.btn-secondary:hover {
  border-color: rgba(0, 255, 65, 0.6);
  color: #00ff41;
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  border: none;
  color: #00aa2b;
  padding: 0.25rem 0.5rem;
}
.btn-ghost:hover {
  color: #00ff41;
}
.btn-icon {
  width: 36px;
  height: 36px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 255, 65, 0.25);
  border-radius: 3px;
  color: #4a7a4a;
}
.btn-icon:hover {
  border-color: rgba(0, 255, 65, 0.6);
  color: #00ff41;
}
.btn .btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 255, 65, 0.3);
  transform: scale(0);
  animation: ripple 0.6s linear;
  pointer-events: none;
}
#stats-ticker {
  background: rgba(0, 10, 0, 0.85);
  border-top: 1px solid rgba(0, 255, 65, 0.25);
  border-bottom: 1px solid rgba(0, 255, 65, 0.25);
  overflow: hidden;
  padding: 0.5rem 0;
}
#stats-ticker .ticker-inner {
  display: flex;
  gap: 4rem;
  animation: scroll-x 25s linear infinite;
  white-space: nowrap;
  width: max-content;
}
#stats-ticker .ticker-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #006622;
  flex-shrink: 0;
}
#stats-ticker .ticker-item .ticker-val {
  color: #00ff41;
  font-size: 1.15rem;
  font-family: 'VT323', monospace;
}
#stats-ticker .ticker-item .ticker-sep {
  color: #003311;
  margin: 0 0.25rem;
}
.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
.section-header .section-eyebrow {
  font-size: 0.7rem;
  color: #006622;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.section-header .section-eyebrow::before {
  content: '//';
  color: #006622;
  margin-right: 0.5rem;
  font-family: 'Share Tech Mono', 'IBM Plex Mono', 'Courier New', monospace;
}
.section-header .section-title {
  font-family: 'VT323', monospace;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #39ff14;
  letter-spacing: 0.06em;
  line-height: 1.2;
}
.section-header .section-desc {
  max-width: 600px;
  color: #4a7a4a;
  font-size: 1rem;
  line-height: 1.7;
}
#features {
  padding: 4rem 0;
}
@media (max-width: 768px) {
  #features {
    padding: 3rem 0;
  }
}
#features .features-grid {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
@media (max-width: 768px) {
  #features .features-grid {
    padding: 0 1rem;
  }
}
#features .feature-card {
  background: rgba(0, 10, 0, 0.85);
  border: 1px solid rgba(0, 255, 65, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
  position: relative;
  overflow: hidden;
  cursor: default;
}
#features .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 255, 65, 0.15);
  border-color: rgba(0, 255, 65, 0.6);
}
#features .feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00ff41, transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
#features .feature-card:hover::before {
  transform: translateX(0);
}
#features .feature-card .feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  background: rgba(0, 255, 65, 0.06);
  border: 1px solid rgba(0, 255, 65, 0.25);
  border-radius: 6px;
  flex-shrink: 0;
}
#features .feature-card .feature-name {
  font-size: 1.15rem;
  color: #00ff41;
  font-family: 'Share Tech Mono', 'IBM Plex Mono', 'Courier New', monospace;
  font-weight: 600;
}
#features .feature-card .feature-desc {
  font-size: 0.85rem;
  color: #4a7a4a;
  line-height: 1.6;
}
#features .feature-card .feature-tags {
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
  margin-top: auto;
}
#quickstart {
  padding: 4rem 0;
  background: radial-gradient(ellipse at center, rgba(0, 20, 0, 0.4), transparent 70%);
}
@media (max-width: 768px) {
  #quickstart {
    padding: 3rem 0;
  }
}
#quickstart .qs-inner {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 768px) {
  #quickstart .qs-inner {
    padding: 0 1rem;
  }
}
@media (max-width: 900px) {
  #quickstart .qs-inner {
    grid-template-columns: 1fr;
  }
}
#quickstart .qs-tabs {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}
#quickstart .qs-tabs .qs-tab {
  padding: 0.25rem 1rem;
  border: 1px solid rgba(0, 255, 65, 0.25);
  border-radius: 3px 3px 0 0;
  font-size: 0.7rem;
  color: #4a7a4a;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 150ms ease;
  cursor: pointer;
}
#quickstart .qs-tabs .qs-tab.active,
#quickstart .qs-tabs .qs-tab:hover {
  background: rgba(0, 255, 65, 0.08);
  border-color: rgba(0, 255, 65, 0.6);
  color: #00ff41;
}
#quickstart .qs-terminal {
  background: rgba(0, 10, 0, 0.85);
  border: 1px solid rgba(0, 255, 65, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 0 12px 12px 12px;
  overflow: hidden;
  border-color: rgba(0, 255, 65, 0.6);
}
#quickstart .qs-terminal .term-titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  background: rgba(0, 20, 0, 0.9);
  border-bottom: 1px solid rgba(0, 255, 65, 0.25);
}
#quickstart .qs-terminal .term-titlebar .term-dots {
  display: flex;
  gap: 0.5rem;
}
#quickstart .qs-terminal .term-titlebar .term-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
#quickstart .qs-terminal .term-titlebar .term-dots span:nth-child(1) {
  background: #ff3333;
}
#quickstart .qs-terminal .term-titlebar .term-dots span:nth-child(2) {
  background: #ffb300;
}
#quickstart .qs-terminal .term-titlebar .term-dots span:nth-child(3) {
  background: #00ff41;
}
#quickstart .qs-terminal .term-titlebar .term-copy {
  font-size: 0.7rem;
  color: #4a7a4a;
  padding: 2px 0.5rem;
  border: 1px solid rgba(0, 255, 65, 0.25);
  border-radius: 3px;
  cursor: pointer;
  transition: all 150ms ease;
}
#quickstart .qs-terminal .term-titlebar .term-copy:hover {
  color: #00ff41;
  border-color: rgba(0, 255, 65, 0.6);
}
#quickstart .qs-terminal .term-content {
  padding: 1.5rem;
  font-size: 0.85rem;
  color: #00aa2b;
  line-height: 2;
}
#quickstart .qs-terminal .term-content .qs-pane {
  display: none;
}
#quickstart .qs-terminal .term-content .qs-pane.active {
  display: block;
}
#quickstart .qs-terminal .term-content .l-cmd {
  color: #39ff14;
}
#quickstart .qs-terminal .term-content .l-out {
  color: #8aaa8a;
}
#quickstart .qs-terminal .term-content .l-comment {
  color: #006622;
  font-style: italic;
}
#quickstart .qs-terminal .term-content .l-success {
  color: #00ff41;
}
#quickstart .qs-terminal .term-content .l-error {
  color: #ff3333;
}
#quickstart .qs-terminal .term-content .l-warn {
  color: #ffb300;
}
#quickstart .qs-terminal .term-content .prompt {
  color: #00e5ff;
}
#quickstart .qs-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
#quickstart .qs-steps .qs-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: 6px;
  transition: background 150ms ease;
}
#quickstart .qs-steps .qs-step:hover {
  background: rgba(0, 255, 65, 0.04);
}
#quickstart .qs-steps .qs-step .step-num {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(0, 255, 65, 0.6);
  border-radius: 3px;
  font-family: 'VT323', monospace;
  font-size: 1.4rem;
  color: #00ff41;
}
#quickstart .qs-steps .qs-step .step-body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
#quickstart .qs-steps .qs-step .step-title {
  font-size: 1rem;
  color: #00ff41;
}
#quickstart .qs-steps .qs-step .step-desc {
  font-size: 0.85rem;
  color: #4a7a4a;
}
#architecture {
  padding: 4rem 0;
  background: rgba(0, 8, 0, 0.5);
}
@media (max-width: 768px) {
  #architecture {
    padding: 3rem 0;
  }
}
#architecture .arch-inner {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  #architecture .arch-inner {
    padding: 0 1rem;
  }
}
#architecture .arch-ascii {
  background: rgba(0, 10, 0, 0.85);
  border: 1px solid rgba(0, 255, 65, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 2rem;
  font-size: clamp(0.55rem, 1.3vw, 0.85rem);
  line-height: 1.6;
  overflow-x: auto;
  color: #00aa2b;
  white-space: pre;
}
#architecture .arch-ascii .a-box {
  color: #00ff41;
}
#architecture .arch-ascii .a-arrow {
  color: #006622;
}
#architecture .arch-ascii .a-label {
  color: #00e5ff;
}
#architecture .arch-ascii .a-high {
  color: #39ff14;
  font-weight: 600;
}
#stats {
  padding: 4rem 0;
}
@media (max-width: 768px) {
  #stats {
    padding: 3rem 0;
  }
}
#stats .stats-inner {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
}
@media (max-width: 768px) {
  #stats .stats-inner {
    padding: 0 1rem;
  }
}
#stats .stat-card {
  background: rgba(0, 10, 0, 0.85);
  border: 1px solid rgba(0, 255, 65, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}
#stats .stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 255, 65, 0.3);
  border-color: rgba(0, 255, 65, 0.6);
}
#stats .stat-card .stat-val {
  font-family: 'VT323', monospace;
  font-size: 3rem;
  color: #39ff14;
  line-height: 1;
  text-shadow: 0 0 10px #39ff14, 0 0 25px #39ff14;
}
#stats .stat-card .stat-label {
  font-size: 0.7rem;
  color: #4a7a4a;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
#stats .stat-card .stat-icon {
  font-size: 2rem;
  margin-bottom: 0.25rem;
}
#docs {
  padding: 4rem 0;
}
@media (max-width: 768px) {
  #docs {
    padding: 3rem 0;
  }
}
#docs .docs-inner {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  #docs .docs-inner {
    padding: 0 1rem;
  }
}
#docs .docs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
#docs .doc-card {
  display: block;
  background: rgba(0, 10, 0, 0.85);
  border: 1px solid rgba(0, 255, 65, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}
#docs .doc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 255, 65, 0.3);
  border-color: rgba(0, 255, 65, 0.6);
}
#docs .doc-card .doc-icon {
  font-size: 2rem;
}
#docs .doc-card .doc-title {
  font-size: 1.15rem;
  color: #00ff41;
  font-weight: 600;
}
#docs .doc-card .doc-desc {
  font-size: 0.85rem;
  color: #4a7a4a;
  line-height: 1.5;
  flex-grow: 1;
}
#docs .doc-card .doc-arrow {
  color: #006622;
  font-size: 1rem;
  align-self: flex-end;
  transition: all 150ms ease;
}
#docs .doc-card:hover .doc-arrow {
  color: #39ff14;
  transform: translateX(4px);
}
#languages {
  padding: 4rem 0;
  overflow: hidden;
  background: linear-gradient(0deg, rgba(0, 20, 0, 0.3), transparent);
}
@media (max-width: 768px) {
  #languages {
    padding: 3rem 0;
  }
}
#languages .lang-strip {
  display: flex;
  gap: 2rem;
  animation: scroll-x 20s linear infinite;
  width: max-content;
}
#languages .lang-strip .lang-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-shrink: 0;
  padding: 0.5rem 1.5rem;
  border: 1px solid rgba(0, 255, 65, 0.25);
  border-radius: 999px;
  color: #8aaa8a;
  font-size: 0.85rem;
  transition: all 150ms ease;
  white-space: nowrap;
}
#languages .lang-strip .lang-item:hover {
  color: #00ff41;
  border-color: rgba(0, 255, 65, 0.6);
  background: rgba(0, 255, 65, 0.06);
}
#languages .lang-strip .lang-item .lang-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #006622;
}
#bio {
  padding: 4rem 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(0, 30, 0, 0.4), transparent 70%);
}
@media (max-width: 768px) {
  #bio {
    padding: 3rem 0;
  }
}
#bio .bio-inner {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 768px) {
  #bio .bio-inner {
    padding: 0 1rem;
  }
}
@media (max-width: 900px) {
  #bio .bio-inner {
    grid-template-columns: 1fr;
  }
}
#bio .bio-card {
  background: rgba(0, 10, 0, 0.85);
  border: 1px solid rgba(0, 255, 65, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}
#bio .bio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 255, 65, 0.3);
  border-color: rgba(0, 255, 65, 0.6);
}
#bio .bio-card .bio-avatar {
  position: relative;
  height: 240px;
  background: linear-gradient(135deg, #000000 0%, rgba(0, 30, 0, 0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(0, 255, 65, 0.25);
  overflow: hidden;
}
#bio .bio-card .bio-avatar .avatar-graphic {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#bio .bio-card .bio-avatar .avatar-graphic .avatar-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid #006622;
  animation: spin 12s linear infinite;
}
#bio .bio-card .bio-avatar .avatar-graphic .avatar-ring:nth-child(1) {
  width: 120px;
  height: 120px;
  animation-duration: 12s;
}
#bio .bio-card .bio-avatar .avatar-graphic .avatar-ring:nth-child(2) {
  width: 90px;
  height: 90px;
  animation-direction: reverse;
  animation-duration: 8s;
  border-color: #007a8a;
}
#bio .bio-card .bio-avatar .avatar-graphic .avatar-ring:nth-child(3) {
  width: 60px;
  height: 60px;
  animation-duration: 5s;
  border-color: rgba(0, 255, 65, 0.3);
}
#bio .bio-card .bio-avatar .avatar-graphic .avatar-core {
  position: relative;
  z-index: 2;
  font-family: 'VT323', monospace;
  font-size: 2.5rem;
  color: #00ff41;
  text-shadow: 0 0 15px #00ff41, 0 0 37.5px #00ff41;
}
#bio .bio-card .bio-avatar .avatar-redacted {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  color: #ff3333;
  letter-spacing: 0.2em;
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid #aa0000;
  padding: 2px 0.5rem;
  border-radius: 3px;
  white-space: nowrap;
  animation: glow-pulse 3s ease-in-out infinite;
}
#bio .bio-card .bio-meta {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#bio .bio-card .bio-meta .bio-name {
  font-family: 'VT323', monospace;
  font-size: 2rem;
  color: #00ff41;
}
#bio .bio-card .bio-meta .bio-name::after {
  content: '█';
  animation: cursor-blink 1s step-end infinite;
  color: #00ff41;
}
#bio .bio-card .bio-meta .bio-handle {
  font-size: 0.85rem;
  color: #007a8a;
}
#bio .bio-card .bio-meta .bio-handle::before {
  content: '@';
  color: #006622;
}
#bio .bio-card .bio-meta .bio-fields {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.7rem;
  color: #4a7a4a;
}
#bio .bio-card .bio-meta .bio-field {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0.25rem;
}
#bio .bio-card .bio-meta .bio-field .bio-key {
  color: #006622;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
#bio .bio-card .bio-meta .bio-field .bio-val {
  color: #8aaa8a;
}
#bio .bio-card .bio-meta .bio-field .bio-val.redacted {
  background: #aa0000;
  color: #aa0000;
  border-radius: 2px;
  user-select: none;
  filter: blur(2px);
  transition: filter 300ms ease;
}
#bio .bio-card .bio-meta .bio-field .bio-val.redacted:hover {
  filter: blur(0);
  color: #ff3333;
  background: transparent;
}
#bio .bio-card .bio-meta .bio-field .bio-val.classified {
  color: #ffb300;
}
#bio .bio-card .bio-meta .bio-field .bio-val.classified::before {
  content: '[CLASSIFIED]  ';
}
#bio .bio-card .bio-meta .bio-badges {
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
}
#bio .bio-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
#bio .bio-content .bio-section-title {
  font-family: 'VT323', monospace;
  font-size: 1.4rem;
  color: #00ff41;
  letter-spacing: 0.08em;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0, 255, 65, 0.25);
  margin-bottom: 1rem;
}
#bio .bio-content .bio-text {
  font-size: 0.85rem;
  color: #4a7a4a;
  line-height: 1.8;
}
#bio .bio-content .bio-text p {
  margin-bottom: 0.5rem;
}
#bio .bio-content .skill-bars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#bio .bio-content .skill-bar {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
#bio .bio-content .skill-bar .skill-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.7rem;
}
#bio .bio-content .skill-bar .skill-header .skill-name {
  color: #00ff41;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
#bio .bio-content .skill-bar .skill-header .skill-pct {
  color: #006622;
}
#bio .bio-content .skill-bar .skill-track {
  height: 4px;
  background: #003311;
  border-radius: 999px;
  overflow: hidden;
}
#bio .bio-content .skill-bar .skill-track .skill-fill {
  height: 100%;
  background: linear-gradient(90deg, #00aa2b, #39ff14);
  border-radius: 999px;
  transform-origin: left;
  animation: progress-fill 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-play-state: paused;
}
#bio .bio-content .skill-bar.visible .skill-fill {
  animation-play-state: running;
}
#bio .bio-content .timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
#bio .bio-content .timeline::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(0, 255, 65, 0.25);
}
#bio .bio-content .timeline-item {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 1rem;
  padding-bottom: 2rem;
}
#bio .bio-content .timeline-item:last-child {
  padding-bottom: 0;
}
#bio .bio-content .timeline-item .tl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #00ff41;
  box-shadow: 0 0 8px rgba(0, 255, 65, 0.8);
  margin-top: 5px;
  align-self: start;
  flex-shrink: 0;
  justify-self: center;
}
#bio .bio-content .timeline-item .tl-body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
#bio .bio-content .timeline-item .tl-date {
  font-size: 0.7rem;
  color: #006622;
}
#bio .bio-content .timeline-item .tl-title {
  font-size: 1rem;
  color: #00ff41;
}
#bio .bio-content .timeline-item .tl-desc {
  font-size: 0.85rem;
  color: #4a7a4a;
  line-height: 1.5;
}
#community {
  padding: 4rem 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  #community {
    padding: 3rem 0;
  }
}
#community .testimonials-row {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 1rem 2rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
#community .testimonials-row::-webkit-scrollbar {
  display: none;
}
#community .testimonial-card {
  flex-shrink: 0;
  width: 320px;
  background: rgba(0, 10, 0, 0.85);
  border: 1px solid rgba(0, 255, 65, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}
#community .testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 255, 65, 0.3);
  border-color: rgba(0, 255, 65, 0.6);
}
#community .testimonial-card .t-quote {
  font-size: 0.85rem;
  color: #4a7a4a;
  line-height: 1.7;
  font-style: italic;
}
#community .testimonial-card .t-quote::before {
  content: '"';
  color: #006622;
  font-size: 1.4rem;
}
#community .testimonial-card .t-quote::after {
  content: '"';
  color: #006622;
  font-size: 1.4rem;
}
#community .testimonial-card .t-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  justify-content: flex-start;
}
#community .testimonial-card .t-author .t-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 255, 65, 0.1);
  border: 1px solid rgba(0, 255, 65, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'VT323', monospace;
  font-size: 1.4rem;
  color: #00ff41;
  flex-shrink: 0;
}
#community .testimonial-card .t-author .t-name {
  color: #00ff41;
  font-size: 0.85rem;
}
#community .testimonial-card .t-author .t-role {
  color: #4a7a4a;
  font-size: 0.7rem;
}
#footer {
  background: rgba(0, 4, 0, 0.95);
  border-top: 1px solid rgba(0, 255, 65, 0.25);
  padding: 3rem 0 1rem;
}
#footer .footer-inner {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 768px) {
  #footer .footer-inner {
    padding: 0 1rem;
  }
}
#footer .footer-top {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
}
@media (max-width: 768px) {
  #footer .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  #footer .footer-top {
    grid-template-columns: 1fr;
  }
}
#footer .footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#footer .footer-brand .footer-logo {
  font-family: 'VT323', monospace;
  font-size: 2rem;
  color: #39ff14;
  text-shadow: 0 0 10px #39ff14, 0 0 25px #39ff14;
  letter-spacing: 0.1em;
}
#footer .footer-brand .footer-tagline {
  font-size: 0.85rem;
  color: #4a7a4a;
  max-width: 260px;
  line-height: 1.6;
}
#footer .footer-brand .footer-socials {
  display: flex;
  gap: 0.5rem;
}
#footer .footer-brand .footer-socials a {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 255, 65, 0.25);
  border-radius: 3px;
  color: #4a7a4a;
  font-size: 0.85rem;
  transition: all 150ms ease;
}
#footer .footer-brand .footer-socials a:hover {
  color: #00ff41;
  border-color: rgba(0, 255, 65, 0.6);
  background: rgba(0, 255, 65, 0.06);
}
#footer .footer-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#footer .footer-col-title {
  font-size: 0.7rem;
  color: #00ff41;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
#footer .footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
}
#footer .footer-links li a {
  font-size: 0.85rem;
  color: #4a7a4a;
  transition: color 150ms ease;
}
#footer .footer-links li a::before {
  content: '>  ';
  color: #003311;
  margin-right: 0.5rem;
  font-family: 'Share Tech Mono', 'IBM Plex Mono', 'Courier New', monospace;
}
#footer .footer-links li a:hover {
  color: #39ff14;
}
#footer .footer-bottom {
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 255, 65, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
#footer .footer-bottom .footer-copy {
  font-size: 0.7rem;
  color: #006622;
}
#footer .footer-bottom .footer-copy a {
  color: #00aa2b;
}
#footer .footer-bottom .footer-copy a:hover {
  color: #00ff41;
}
#footer .footer-bottom .footer-ascii {
  font-family: 'VT323', monospace;
  font-size: 0.7rem;
  color: #003311;
  letter-spacing: 0.08em;
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal.reveal-left {
  transform: translateX(-30px);
}
.reveal.reveal-left.visible {
  transform: translateX(0);
}
.reveal.reveal-right {
  transform: translateX(30px);
}
.reveal.reveal-right.visible {
  transform: translateX(0);
}
.reveal.reveal-scale {
  transform: scale(0.9);
}
.reveal.reveal-scale.visible {
  transform: scale(1);
}
.reveal.delay-1 {
  transition-delay: 100ms;
}
.reveal.delay-2 {
  transition-delay: 200ms;
}
.reveal.delay-3 {
  transition-delay: 300ms;
}
.reveal.delay-4 {
  transition-delay: 400ms;
}
.reveal.delay-5 {
  transition-delay: 500ms;
}
.reveal.delay-6 {
  transition-delay: 600ms;
}
