@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@100..900&display=swap');

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

body {
  font-family: "Inter Tight", system-ui, sans-serif;
  line-height: 1.5;
  background-color: #f5f5f5;
  color: #000;
}

.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

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

.main-logo {
  height: 40px;
  width: auto;
}

.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 0;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.products {
  display: flex;
  gap: 3rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 2rem 0;
}

.product-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: #999;
  text-decoration: none;
  transition: color 0.2s ease;
}

.product-item .product-icon {
  transition: opacity 0.2s ease;
}

.product-item.active:hover {
  color: #666;
}

.product-item.active:hover .product-icon {
  opacity: 0.6;
}

.disabled-product {
  opacity: 0.4;
  filter: grayscale(100%) brightness(1.5);
  pointer-events: none;
}

.product-item.active {
  color: #000;
}

.product-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

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

@media (max-width: 768px) {
  .container {
    padding: 2rem 1.5rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .products {
    flex-direction: column;
    gap: 1.5rem;
  }
}
  