:root {
  --bg: #0f172a;
  --surface: #111827;
  --card: #1f2937;
  --text: #f8fafc;
  --muted: #94a3b8;
  --accent: #6366f1;
  --accent-2: #22d3ee;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg), #020617);
  line-height: 1.6;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.site-header {
  border-bottom: 1px solid #1e293b;
  position: sticky;
  top: 0;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(8px);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0;
}

.nav h1 {
  font-size: 1.1rem;
}

.nav nav {
  display: flex;
  gap: 1rem;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
}

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

.hero {
  padding: 4rem 0 2rem;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
  align-items: center;
}

.eyebrow {
  color: var(--accent-2);
  font-weight: 600;
  margin-bottom: 0;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-top: 0.2rem;
  line-height: 1.2;
}

.hero-card,
.panel,
.card,
.cta {
  background: linear-gradient(160deg, #1e293b, #111827);
  border: 1px solid #334155;
  border-radius: 14px;
  padding: 1rem;
}

.hero-card strong {
  display: block;
  font-size: 2rem;
  color: var(--accent-2);
}

.btn {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.65rem 1rem;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  border: 1px solid #475569;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 1.5rem 0 1rem;
}

#category {
  padding: 0.4rem;
  border-radius: 8px;
  background: #0b1120;
  color: var(--text);
  border: 1px solid #334155;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}


.card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #334155;
  margin-bottom: 0.7rem;
}

.card h4 {
  margin-bottom: 0.4rem;
}

.meta {
  color: var(--muted);
  font-size: 0.9rem;
}

.price {
  font-weight: 700;
  color: var(--accent-2);
}

.split {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1rem;
}

footer {
  border-top: 1px solid #1e293b;
  margin-top: 2.5rem;
  color: var(--muted);
  padding: 1rem 0 2rem;
}

@media (max-width: 850px) {
  .hero-content,
  .split {
    grid-template-columns: 1fr;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }
}
