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

:root {
  --color-bg: #0a0a0f;
  --color-surface: #12121a;
  --color-border: #1e1e2a;
  --color-text: #e4e4e7;
  --color-text-muted: #8b8b96;
  --color-accent: #2bb5e8;
  --color-accent-hover: #50c5f0;
  --color-accent-alt: #f5a623;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Nav */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  z-index: 100;
}

nav {
  max-width: 960px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo-img {
  height: 32px;
  width: auto;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

nav a:hover {
  color: var(--color-text);
}

/* Sections */
main {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 6rem 0 3rem;
}

.hero {
  padding-top: 10rem;
  padding-bottom: 4rem;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero p {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto;
}

h2 {
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

/* About */
.about p {
  color: var(--color-text-muted);
  max-width: 640px;
  font-size: 1.05rem;
}

/* Products */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.product-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.product-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.product-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
}

.product-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  flex: 1;
}

.product-pricing {
  color: var(--color-accent-alt) !important;
  font-size: 0.85rem !important;
  font-weight: 500;
}

.product-card.coming-soon {
  border-style: dashed;
  opacity: 0.7;
}

.btn {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  background: var(--color-accent);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.2s;
  width: fit-content;
}

.btn:hover {
  background: var(--color-accent-hover);
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
  max-width: 480px;
}

.team-member {
  text-align: center;
}

.team-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-border);
  margin-bottom: 0.75rem;
}

.team-member h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.team-member p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* Contact */
.contact {
  text-align: center;
}

.contact p {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

/* Footer */
footer {
  max-width: 960px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  border-top: 1px solid var(--color-border);
  text-align: center;
}

footer p {
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

.footer-location {
  color: var(--color-text-muted);
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.footer-links a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--color-text);
}

/* Legal pages */
.legal {
  padding-top: 8rem;
  max-width: 680px;
}

.legal h1 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.legal .updated {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.legal h2 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.legal h3 {
  font-size: 1.05rem;
  margin-top: 1.25rem;
  margin-bottom: 0.25rem;
}

.legal p,
.legal li {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.legal ul {
  padding-left: 1.25rem;
  margin: 0.5rem 0;
}

.legal a {
  color: var(--color-accent);
  text-decoration: none;
}

.legal a:hover {
  color: var(--color-accent-hover);
}

/* Responsive */
@media (max-width: 600px) {
  nav ul {
    gap: 1.25rem;
  }

  section {
    padding: 4rem 0 2rem;
  }

  .hero {
    padding-top: 7rem;
  }
}
