.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

.hero-gradient {
  background: linear-gradient(to right, rgba(0, 45, 32, 0.95) 0%, rgba(0, 45, 32, 0.4) 100%);
}

@media (max-width: 768px) {
  .hero-gradient {
    background: linear-gradient(to top, rgba(0, 45, 32, 0.95) 0%, rgba(0, 45, 32, 0.6) 100%);
  }
}

body {
  overflow-x: hidden;
}

.form-input-focus:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
  outline: none;
}

.zebra-row:nth-child(even),
.data-zebra tr:nth-child(even) {
  background-color: #f1f5f9;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

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

  .bento-grid > div {
    grid-column: 1 / -1 !important;
  }
}

.glass-panel {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid #e2e8f0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: #f8f9ff;
  border-bottom: 1px solid #c1c8c3;
}

.site-header.is-scrolled {
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  min-height: 80px;
  padding: 12px 16px;
}

@media (min-width: 768px) {
  .site-nav {
    padding: 12px 40px;
  }
}

.site-logo {
  font-family: Inter, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  color: #002d20;
  text-decoration: none;
  flex-shrink: 0;
}

.site-nav-links {
  display: none;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 8px;
}

.site-nav-links a {
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #414844;
  text-decoration: none;
  padding: 8px 12px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

.site-nav-links a:hover {
  color: #0051d5;
}

.site-nav-links a.is-active {
  color: #0051d5;
  font-weight: 700;
  border-bottom-color: #0051d5;
}

.site-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.lang-switch {
  display: flex;
  border: 1px solid #c1c8c3;
  border-radius: 4px;
  overflow: hidden;
}

.lang-switch button {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 6px 10px;
  border: 0;
  background: #ffffff;
  color: #414844;
  cursor: pointer;
}

.lang-switch button.is-active {
  background: #1a4335;
  color: #ffffff;
}

.site-cta {
  display: inline-block;
  background: #1a4335;
  color: #ffffff !important;
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 4px;
  white-space: nowrap;
}

.site-cta:hover {
  background: #002d20;
}

.site-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid #c1c8c3;
  border-radius: 4px;
  background: #ffffff;
  color: #002d20;
  cursor: pointer;
}

.site-nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px 16px 16px;
  border-top: 1px solid #c1c8c3;
  background: #f8f9ff;
}

.site-nav-mobile.is-open {
  display: flex;
}

.site-nav-mobile a {
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
  color: #414844;
  text-decoration: none;
  padding: 12px 8px;
  border-bottom: 1px solid #e5eeff;
}

.site-nav-mobile a.is-active {
  color: #0051d5;
  font-weight: 700;
}

@media (min-width: 1024px) {
  .site-nav-links {
    display: flex;
    flex: 1;
    justify-content: center;
  }

  .site-menu-toggle,
  .site-nav-mobile {
    display: none !important;
  }
}
