:root {
  --bg: #0d0d0d;
  --bg2: #1a1a1a;
  --text: #e5e5e5;
  --accent: #ff6a00;   /* fox orange */
  --accent2: #00e5ff;  /* tech cyan */
  --radius: 8px;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  scroll-behavior: smooth;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
  padding: 2rem;
  background: linear-gradient(145deg, var(--bg), var(--bg2));
}

h1 { font-size: clamp(2rem, 5vw, 3rem); margin: 1rem 0 0.5rem; letter-spacing: .05em; }

.pill-nav {
  margin-top: 2rem;
  display: flex;
  gap: .5rem;
}
.pill-nav button {
  padding: .5rem 1.2rem;
  border: none;
  border-radius: var(--radius);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: background .25s;
}
.pill-nav button.active,
.pill-nav button:hover {
  background: var(--accent);
  color: var(--bg);
}

main {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
}
section h2 {
  margin-bottom: 1rem;
  color: var(--accent2);
}
ul.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
ul.grid li {
  background: var(--bg2);
  padding: 1rem;
  border-radius: var(--radius);
  list-style: none;
}
footer {
  text-align: center;
  padding: 2rem;
  font-size: .8rem;
  color: #666;
}

