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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #0b0b0b;
  color: #f5f5f5;
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px;
}

.hero {
  text-align: center;
  margin-bottom: 120px;
}

.hero h1 {
  font-size: 3.2rem;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.tagline {
  font-size: 1.2rem;
  opacity: 0.85;
  margin-bottom: 24px;
}

.disclaimer {
  font-size: 0.9rem;
  opacity: 0.6;
}

.products h2,
.about h2 {
  font-size: 1.8rem;
  margin-bottom: 40px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-bottom: 120px;
}

.product-card {
  background: #121212;
  border: 1px solid #1f1f1f;
  padding: 32px;
  border-radius: 12px;
}

.product-card h3 {
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.product-card p {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-bottom: 20px;
}

.status {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.6;
}

.about {
  max-width: 700px;
  margin-bottom: 120px;
}

footer {
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.6;
}
