/* ─── Global Reset & Typography ───────────────────── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #0e0e0e;
  color: #eaeaea;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: #00ffc3;
}

img {
  max-width: 100%;
  border-radius: 8px;
  display: block;
}

/* ─── Header & Nav ────────────────────────────────── */
header {
  background: #1a1a1a;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #2c2c2c;
}

.logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  color: #00ffc3;
}

nav ul {
  display: flex;
  gap: 16px;
  list-style: none;
  flex-wrap: wrap;
  margin-top: 10px;
}

nav a:hover {
  color: #ffffff;
  text-shadow: 0 0 6px #00ffc3;
}

/* ─── Hero Section ───────────────────────────────── */
.hero {
  text-align: center;
  padding: 80px 20px 40px;
  background: radial-gradient(circle, #181818 0%, #0e0e0e 100%);
}

.hero h1 {
  font-size: 2rem;
  font-family: 'Orbitron', sans-serif;
  color: #ffffff;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 25px;
  color: #aaa;
}

.cta-button {
  padding: 12px 28px;
  background: #00ffc3;
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #14ffd9;
  transform: scale(1.05);
  box-shadow: 0 0 10px #00ffc3;
}

/* ─── Spotlight / Tech of the Day ────────────────── */
.tech-spotlight {
  background: #181818;
  padding: 60px 20px;
  text-align: center;
}

.tech-spotlight h2 {
  font-family: 'Orbitron', sans-serif;
  margin-bottom: 25px;
}

.spotlight-card {
  background: #1f1f1f;
  padding: 30px;
  border: 2px dashed #00ffc3;
  border-radius: 12px;
  max-width: 600px;
  margin: 0 auto;
  color: #fff;
}

.spotlight-card h3 {
  margin-bottom: 10px;
  font-family: 'Orbitron', sans-serif;
}

.spotlight-card p {
  color: #aaa;
}

/* ─── Product Cards Section ─────────────────────── */
.product-cards {
  padding: 60px 20px;
  background: #121212;
}

.product-cards h2 {
  text-align: center;
  margin-bottom: 40px;
  font-family: 'Orbitron', sans-serif;
  color: #ffffff;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background: #1c1c1c;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #2d2d2d;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease-out;
}

.card.show {
  opacity: 1;
  transform: translateY(0);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 15px #00ffc3aa;
}

.card h3 {
  font-family: 'Inter', sans-serif;
  color: #fff;
  margin: 15px 0 10px;
}

.card p {
  color: #aaa;
  font-size: 0.95rem;
}

.buy-button {
  display: inline-block;
  margin-top: 15px;
  background: #00ffc3;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  color: #000;
  transition: all 0.25s ease;
}

.buy-button:hover {
  background: #14ffd9;
  box-shadow: 0 0 10px #00ffc3;
  transform: translateY(-2px);
}

/* ─── Footer ─────────────────────────────────────── */
footer {
  text-align: center;
  padding: 40px 20px;
  background: #0a0a0a;
  font-size: 0.9rem;
  color: #666;
}

/* ─── Responsive Tuning ─────────────────────────── */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .nav ul {
    flex-direction: column;
    align-items: flex-end;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .cta-button,
  .buy-button {
    width: 100%;
    text-align: center;
  }
}
.intel-briefings {
  background: #181818;
  padding: 60px 20px;
  text-align: center;
}

.intel-briefings h2 {
  font-family: 'Orbitron', sans-serif;
  margin-bottom: 40px;
  color: #fff;
}

.brief-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.card.text-only {
  background: #1c1c1c;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #2d2d2d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card.text-only:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 12px #00ffc399;
}
