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

body {
  background: #111;
  color: #e8ffff;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  line-height: 1.6;
}

.sample-bar {
  background: #222;
  color: #00ffff;
  text-align: center;
  padding: 0.55em 1em;
  font-size: 0.8em;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid #ff00ff;
}

.sample-bar a {
  color: #00ffff;
  text-decoration: none;
}

.sample-bar a:hover {
  color: #ff00ff;
  text-decoration: underline;
}

.hero {
  text-align: center;
  padding: 4.8em 1.5em 3em;
  background: #111;
}

.eyebrow {
  font-family: Orbitron, sans-serif;
  font-size: 0.75em;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ff00ff;
  margin-bottom: 0.9em;
}

.hero h1 {
  font-family: Orbitron, sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #00ffff;
  letter-spacing: 0.04em;
  margin-bottom: 0.5em;
  text-shadow: 0 0 18px rgba(0, 255, 255, 0.45);
}

.tagline {
  font-size: 1.15rem;
  color: #c8f6f6;
  max-width: 28em;
  margin: 0 auto;
}

.photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85em;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5em 3em;
}

.photo {
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Orbitron, sans-serif;
  font-size: 0.8em;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid #ff00ff;
}

.photo-a {
  background: #222;
  color: #00ffff;
}

.photo-b {
  background: #1a1220;
  color: #ff00ff;
}

.photo-c {
  background: #122222;
  color: #00ffff;
}

.about {
  max-width: 36em;
  margin: 0 auto;
  padding: 0 1.5em 3.5em;
  text-align: center;
}

.about h2 {
  font-family: Orbitron, sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ff00ff;
  margin: 1.8em 0 0.55em;
}

.about p {
  color: #d4fafa;
  font-size: 1.05rem;
}

.cta {
  margin-top: 1.8em;
}

.cta a {
  display: inline-block;
  background: #00ffff;
  color: #111;
  text-decoration: none;
  padding: 0.8em 1.6em;
  font-family: Orbitron, sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.cta a:hover {
  background: #ff00ff;
  color: #fff;
}

footer {
  border-top: 1px solid #ff00ff;
  text-align: center;
  padding: 2em 1.5em 2.5em;
  color: #8adada;
  font-size: 0.95rem;
  background: #222;
}

footer a {
  color: #00ffff;
}

footer a:hover {
  color: #ff00ff;
}

@media (max-width: 640px) {
  .hero {
    padding: 3em 1.2em 2em;
  }
  .hero h1 {
    font-size: 1.85rem;
  }
  .tagline {
    font-size: 1.02rem;
  }
  .photos {
    grid-template-columns: 1fr;
    padding-bottom: 2em;
  }
  .photo {
    min-height: 140px;
  }
}
