@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

:root {
  --zinc-50: #fafafa;
  --zinc-100: #f4f4f5;
  --zinc-200: #e4e4e7;
  --zinc-300: #d4d4d8;
  --zinc-400: #a1a1aa;
  --zinc-500: #71717a;
  --zinc-700: #3f3f46;
  --zinc-800: #27272a;
  --zinc-900: #18181b;
  --zinc-950: #09090b;
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--zinc-950);
  color: var(--zinc-100);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.min-h-screen {
  min-height: 100vh;
}

.bg-zinc-950 {
  background-color: var(--zinc-950);
}

.text-zinc-100 {
  color: var(--zinc-100);
}

/* Navigation Menu */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99998;
  background-color: rgba(9, 9, 11, 0.3);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  border-bottom: 1px solid var(--zinc-800);
}

.nav-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo img {
  height: 2rem;
  width: auto;
  max-width: 150px;
}

.nav-menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  flex: 1;
}

.nav-menu::-webkit-scrollbar {
  display: none;
}

.nav-menu li {
  flex-shrink: 0;
}

.nav-link {
  color: var(--zinc-300);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  transition: all 0.15s;
  display: block;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--zinc-100);
  background-color: var(--zinc-800);
}

/* Hamburger Menu */
.hamburger-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
  position: relative;
  width: 24px;
  height: 14px;
  justify-content: center;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background-color: var(--zinc-100);
  border-radius: 2px;
  transition: all 0.3s ease;
  position: absolute;
  left: 0;
}

.hamburger-line:nth-child(1) {
  top: 0;
}

.hamburger-line:nth-child(2) {
  bottom: 0;
}

.hamburger-menu[aria-expanded="true"] .hamburger-line:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.hamburger-menu[aria-expanded="true"] .hamburger-line:nth-child(2) {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

@media (max-width: 48rem) {
  .main-nav {
    padding: 0.75rem 0;
  }

  .nav-container {
    padding: 0 0.75rem;
    gap: 1rem;
    position: relative;
  }

  .nav-logo {
    position: relative;
    z-index: 100000;
  }

  .nav-logo img {
    height: 1.5rem;
    max-width: 120px;
  }

  .hamburger-menu {
    display: flex;
    position: relative;
    z-index: 100000;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    max-height: 80vh;
    background-color: rgba(9, 9, 11, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding-top: 5rem;
    padding-bottom: 2rem;
    gap: 0;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    z-index: 99999;
    margin: 0;
    border-bottom: 1px solid var(--zinc-800);
  }

  .nav-menu li:first-child .nav-link {
    margin-top: 3rem;
  }

  .nav-menu.active {
    transform: translateY(0);
  }

  .nav-menu li {
    width: 100%;
    border-bottom: none;
  }

  .nav-menu li:last-child .nav-link {
    padding-bottom: 1.5rem;
  }

  .nav-link {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    text-align: left;
    display: block;
  }

  .nav-link:hover {
    background-color: var(--zinc-900);
  }
}

@media (max-width: 30rem) {
  .nav-menu {
    gap: 0.25rem;
    padding: 0 0.5rem;
  }
  
  .nav-link {
    font-size: 0.6875rem;
    padding: 0.5rem 0.5rem;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 1.5rem 5rem;
}

.hero-content {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-logo {
  max-width: 100%;
  height: auto;
  max-height: 200px;
  width: auto;
  margin: 0 auto;
  display: block;
}

@media (min-width: 48rem) {
  .hero-logo {
    max-height: 300px;
  }
}

@media (min-width: 64rem) {
  .hero-logo {
    max-height: 400px;
  }
}

.hero-slogan {
  color: var(--zinc-100);
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

@media (min-width: 48rem) {
  .hero-slogan {
    font-size: 3.5rem;
  }
}

@media (min-width: 64rem) {
  .hero-slogan {
    font-size: 4.5rem;
  }
}

.hero-subtitle {
  color: var(--zinc-300);
  font-size: 1.25rem;
}

.hero-description {
  max-width: 42rem;
  margin: 0 auto;
  color: var(--zinc-400);
}

.cta-button {
  margin-top: 2rem;
  background-color: var(--zinc-100);
  color: var(--zinc-950);
  padding: 0.625rem 1.5rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background-color 0.15s;
  max-width: 16rem;
}

.cta-button:hover {
  background-color: var(--zinc-200);
}

/* Section Styles */
.about-section,
.team-section,
.products-section,
.philosophy-section,
.contact-section {
  padding: 5.33rem 1.5rem 8rem;
}

.products-section,
.philosophy-section,
.contact-section {
  background-color: rgba(24, 24, 27, 0.5);
}

.section-container {
  max-width: 80rem;
  margin: 0 auto;
}

.section-content {
  max-width: 56rem;
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.section-title {
  text-align: left;
  margin-bottom: 4rem;
  color: var(--zinc-50);
  font-size: 3.5rem;
  font-weight: 700;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-text {
  color: var(--zinc-400);
  text-align: left;
  margin: 0;
  line-height: 1.75;
  font-size: 1rem;
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 48rem) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 64rem) {
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.team-card {
  background-color: var(--zinc-900);
  border: 1px solid var(--zinc-800);
  border-radius: 0.75rem;
  padding: 2rem;
  transition: border-color 0.15s;
}

.team-card:hover {
  border-color: var(--zinc-700);
}

.team-card-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.team-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background-color: var(--zinc-800);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--zinc-100);
  flex-shrink: 0;
}

.team-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke-width: 1.5;
}

.team-role {
  color: var(--zinc-100);
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
}

.team-description {
  color: var(--zinc-400);
  margin-bottom: 1rem;
}

.team-tools {
  color: var(--zinc-500);
  font-size: 0.875rem;
}

/* Products Section */
.products-content {
  width: 100%;
}

.product-header {
  text-align: left;
  margin-bottom: 3rem;
}

.product-name {
  color: var(--zinc-100);
  margin-bottom: 1rem;
  font-size: 1.125rem;
  font-weight: 500;
}

.product-description {
  color: var(--zinc-400);
  max-width: 42rem;
  text-align: left;
  margin: 0;
}

.product-link {
  display: inline-block;
  margin-top: 1.5rem;
  background-color: var(--zinc-100);
  color: var(--zinc-950);
  padding: 0.625rem 1.5rem;
  border-radius: 0.375rem;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background-color 0.15s;
}

.product-link:hover {
  background-color: var(--zinc-200);
}

.product-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 48rem) {
  .product-cards-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.product-card {
  background-color: var(--zinc-900);
  border: 1px solid var(--zinc-800);
  border-radius: 0.75rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

@media (min-width: 48rem) {
  .product-card {
    padding: 1.75rem;
  }
}

.product-card-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1;
  min-height: 0;
}

.product-card-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1;
}

.product-card-icon {
  width: 3rem;
  height: 3rem;
  color: var(--zinc-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  padding: 0.75rem;
  background-color: var(--zinc-800);
  border-radius: 0.5rem;
}

.product-card-icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.5;
}

.product-card-title {
  color: var(--zinc-50);
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 500;
}

.product-card-description {
  color: var(--zinc-400);
}

.product-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.product-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature-check {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background-color: var(--zinc-800);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check-icon {
  width: 0.75rem;
  height: 0.75rem;
  color: var(--zinc-400);
}

.feature-text {
  color: var(--zinc-400);
}

.product-card-button {
  width: 100%;
  background-color: var(--zinc-100);
  color: var(--zinc-950);
  padding: 0.625rem 1.5rem;
  border-radius: 0.375rem;
  border: none;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  margin-top: auto;
  transition: background-color 0.15s;
}

.product-card-button:hover {
  background-color: var(--zinc-200);
}

/* Philosophy Section */
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 48rem) {
  .philosophy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.philosophy-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.philosophy-title {
  color: var(--zinc-100);
  font-size: 1rem;
  font-weight: 500;
}

.philosophy-text {
  color: var(--zinc-400);
}

/* Contact Us Section */
.contact-content {
  max-width: 100%;
  margin: 0;
  text-align: left;
}

.contact-description {
  color: var(--zinc-400);
  font-size: 0.9375rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  text-align: left;
  max-width: 48rem;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0;
}

.contact-method {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem 1.5rem;
  width: 100%;
  background-color: var(--zinc-900);
  border: 1px solid var(--zinc-800);
  border-radius: 0.5rem;
  transition: border-color 0.15s ease;
  text-align: center;
}

.contact-method:hover {
  border-color: var(--zinc-700);
}

.contact-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--zinc-100);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.5;
}

.contact-method-title {
  color: var(--zinc-100);
  font-size: 0.875rem;
  font-weight: 500;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-info {
  color: var(--zinc-400);
  font-size: 0.875rem;
  margin: 0;
  line-height: 1.5;
}

.contact-link {
  color: var(--zinc-300);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.15s ease;
  word-break: break-word;
}

.contact-link:hover {
  color: var(--zinc-100);
}

/* Footer */
.footer {
  padding: 2rem 1.5rem;
  border-top: 1px solid var(--zinc-800);
}

.footer-container {
  max-width: 80rem;
  margin: 0 auto;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

@media (min-width: 48rem) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-brand {
  text-align: left;
}

.footer-logo {
  max-width: 200px;
  height: auto;
  width: 100%;
  margin-bottom: 0.5rem;
  display: block;
}

.footer-subtitle {
  color: var(--zinc-500);
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-button {
  color: var(--zinc-400);
  background: transparent;
  border: none;
  padding: 0.5rem;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.social-button:hover {
  color: var(--zinc-100);
  background-color: var(--zinc-800);
}

.social-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-copyright {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--zinc-800);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 48rem) {
  .footer-copyright {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-copyright p {
  color: #9898a1;
  font-size: 0.875rem;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-link {
  color: #9898a1;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-link:hover {
  color: var(--zinc-300);
}


