:root {
  /* Extracted from Logo */
  --bg-deep: #1e2633;
  --bg-card: #283142;
  --bg-card-hover: #323d52;
  --accent-mint: #98e9ad;
  --accent-mint-hover: #7ce396;
  --accent-mint-glow: rgba(152, 233, 173, 0.2);
  --text-main: #f0f4f8;
  --text-muted: #9ba4b5;

  /* Typography */
  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
}

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

body {
  font-family: 'JetBrains Mono', monospace;
  background-color: var(--bg-deep);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Glassmorphism utility */
.glass {
  background: rgba(40, 49, 66, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(152, 233, 173, 0.1);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.logo {
  height: 48px;
  width: 48px;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-main);
  text-decoration: none;
}

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

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a:hover {
  color: var(--accent-mint);
}

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

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

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(152, 233, 173, 0.4);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(152, 233, 173, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(152, 233, 173, 0);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--accent-mint);
  color: var(--bg-deep);
  border: 1px solid var(--accent-mint);
}

.btn-primary:hover {
  background-color: var(--accent-mint-hover);
  box-shadow: 0 4px 15px var(--accent-mint-glow);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--accent-mint);
  border: 1px solid var(--accent-mint);
}

.btn-outline:hover {
  background: var(--accent-mint-glow);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 80px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 50%, var(--accent-mint-glow) 0%, transparent 60%);
  z-index: -1;
  opacity: 0.5;
}

.hero-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  animation: fadeInUp 0.8s ease-out forwards;
}

.label-afwerx {
  display: inline-block;
  color: var(--accent-mint);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  padding: 0.25rem 0.75rem;
  border: 1px solid rgba(152, 233, 173, 0.3);
  border-radius: 20px;
  background: rgba(152, 233, 173, 0.05);
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #fff;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 600px;
  line-height: 1.7;
}

.text-highlight {
  color: var(--text-main);
  font-weight: 600;
}

.text-accent {
  color: var(--accent-mint);
  font-weight: 600;
}

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

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

.hero-visual img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 0 30px var(--accent-mint-glow));
}

/* Sections General */
.section {
  padding: 8rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--accent-mint);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Capabilities */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.card {
  border-radius: 8px;
  padding: 2.5rem;
  transition: transform 0.3s ease, background 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card:hover {
  transform: translateY(-5px);
  background: var(--bg-card-hover);
  border-color: rgba(152, 233, 173, 0.3);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(152, 233, 173, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--accent-mint);
}

.card-icon svg {
  width: 24px;
  height: 24px;
}

.card-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #fff;
}

.card-text {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Leadership */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.team-card {
  text-align: center;
  padding: 3rem 2rem;
  border-radius: 8px;
}

.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--bg-deep);
  border: 2px solid var(--accent-mint);
  margin: 0 auto 1.5rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-mint);
  font-size: 2.5rem;
}

.member-name {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.member-role {
  color: var(--accent-mint);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.member-bio {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Footer */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 4rem 0 2rem 0;
  background: #181f2a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-info p {
  color: var(--text-muted);
  margin-top: 1rem;
  line-height: 1.6;
}

.footer-data h4 {
  color: #fff;
  margin-bottom: 1rem;
  font-family: var(--font-mono);
  font-size: 0.9rem;
}

.footer-data ul {
  list-style: none;
}

.footer-data li {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    margin: 0 auto 2.5rem auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    margin-top: 2rem;
    max-width: 300px;
    margin-inline: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .nav-links {
    display: none;
  }

  .hero-title {
    font-size: 2.2rem;
  }
}