/* [project]/src/components/Navbar.css [app-client] (css) */
.navbar {
  z-index: 1000;
  border-radius: var(--radius-lg);
  width: clamp(300px, 96%, 1400px);
  margin: 1rem auto;
  padding: .75rem 0;
  position: sticky;
  top: 1rem;
}

.nav-container {
  justify-content: space-between;
  align-items: center;
  display: flex;
  padding: 0 4% !important;
}

.logo {
  background: linear-gradient(to right, var(--primary), var(--secondary));
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
  -webkit-background-clip: text;
  background-clip: text;
  flex-shrink: 0;
  align-items: center;
  gap: .75rem;
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
}

.logo-img {
  object-fit: contain;
  -webkit-text-fill-color: initial;
  width: 32px;
  height: 32px;
}

@media (min-width: 768px) {
  .logo {
    font-size: 1.5rem;
  }
}

.nav-wrapper {
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  gap: 2rem;
  display: flex;
}

.nav-links {
  gap: 1.5rem;
  font-weight: 500;
  display: flex;
}

@media (min-width: 1200px) {
  .nav-links {
    gap: 2.5rem;
  }

  .nav-wrapper {
    gap: 4rem;
  }
}

.nav-links a {
  transition: var(--transition-fast);
  white-space: nowrap;
}

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

.nav-auth {
  flex-shrink: 0;
  align-items: center;
  gap: .75rem;
  display: flex;
}

.btn-sm {
  white-space: nowrap;
  padding: .5rem 1rem;
  font-size: .85rem;
}

.mobile-toggle {
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  flex-direction: column;
  gap: 4px;
  padding: 10px;
  display: none;
}

.mobile-toggle .bar {
  background: var(--foreground);
  width: 25px;
  height: 3px;
  transition: var(--transition-normal);
  border-radius: 3px;
}

@media (max-width: 1100px) {
  .mobile-toggle {
    display: flex;
  }

  .nav-wrapper {
    background: var(--surface);
    width: min(300px, 80%);
    height: 100vh;
    transition: var(--transition-normal);
    z-index: 1000;
    border-left: 1px solid var(--glass-border);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 3rem;
    padding: 6rem 2rem;
    position: fixed;
    top: 0;
    right: -100%;
    box-shadow: -10px 0 30px #00000080;
  }

  .nav-wrapper.open {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    gap: 1.5rem;
  }

  .nav-auth {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    width: 100%;
  }
}

/* [project]/src/app/company/company.css [app-client] (css) */
.page-header {
  text-align: center;
  padding: 8rem 0 4rem;
}

.subtitle {
  color: #a0aec0;
  margin-top: 1rem;
  font-size: 1.25rem;
}

.company-section {
  padding: 4rem 0;
}

.text-block {
  padding: 3rem;
}

.text-block h2 {
  margin-bottom: 1.5rem;
}

.text-block p {
  color: #cbd5e0;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.mission-grid {
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
  display: grid;
}

@media (min-width: 768px) {
  .mission-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.mission-card {
  border-top: 4px solid var(--primary);
  height: 100%;
  padding: 2.5rem;
}

.mission-card.vision {
  border-color: var(--secondary);
}

.mission-card h3 {
  color: #fff;
  margin-bottom: 1rem;
}

.values-section {
  padding-bottom: 6rem;
}

.values-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  display: grid;
}

.value-card {
  text-align: center;
  transition: var(--transition-normal);
  padding: 2rem;
}

.value-card:hover {
  background: #ffffff0d;
  transform: translateY(-5px);
}

.value-icon {
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  display: block;
}

.value-card h4 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.goal-highlight {
  border: 1px solid var(--primary);
  text-align: center;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #6366f11a, #ec48991a);
  margin: 4rem 0;
  padding: 4rem 2rem;
}

.goal-highlight h2 {
  background: linear-gradient(to right, #fff, #a0aec0);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.goal-highlight .stat {
  color: var(--accent);
  margin: 1rem 0;
  font-size: 4rem;
  font-weight: 800;
  display: block;
}

.team-section {
  padding: 6rem 0;
}

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

.team-card {
  text-align: center;
  padding: 2rem;
}

.avatar {
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  font-weight: 700;
  display: flex;
}

.team-card h4 {
  margin-bottom: .5rem;
}

.team-card p {
  color: var(--primary);
  font-size: .9rem;
  font-weight: 600;
}

/*# sourceMappingURL=src_3415b660._.css.map*/