:root {
  --bg-dark: #0d0d0d;
  --bg-panel: #161616;
  --bg-card: #1e1e1e;
  --text: #e8e8e8;
  --text-dim: #b5b5b5;
  --accent: #7ed321;
}

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

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

h1, h2, h3, .topbar-brand, .contact-email, .footer-brand {
  font-family: "Michroma", "Inter", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.topbar {
  background: #000;
  padding: 14px 24px;
}

.topbar-brand {
  color: #fff;
  text-decoration: none;
  font-size: 1.05rem;
}

.hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 60%, #111 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px 80px;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 50% 100%, 0 92%);
}

.hero-logo {
  height: 220px;
  width: auto;
}

.features {
  background: var(--bg-panel);
  padding: 70px 20px 90px;
}

.features-title {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 50px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.card {
  background: var(--bg-card);
  border-radius: 6px;
  padding: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.card h3 {
  font-size: 0.85rem;
  margin: 18px 0 10px;
}

.card p {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.contact {
  background: #000;
  text-align: center;
  padding: 70px 20px;
  clip-path: polygon(0 8%, 50% 0, 100% 8%, 100% 92%, 50% 100%, 0 92%);
}

.contact-email {
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
}

.contact-email:hover { color: var(--accent); }

.footer {
  background: #0a0a0a;
  text-align: center;
  padding: 40px 20px;
}

.footer-brand {
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.footer a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.85rem;
}

.footer a:hover { color: #fff; }

@media (max-width: 600px) {
  .hero-logo { height: 150px; }
  .contact-email { font-size: 1rem; }
}
