/* ============================================
   JC Hendricks — Site Stylesheet
   Theme: Tron Dark — Electric Cyan #00C8FF
   Fonts: Space Grotesk (display) + DM Sans (body)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

:root {
  --accent: #00C8FF;
  --accent-light: #5DDEFF;
  --accent-dim: rgba(0,200,255,0.15);
  --accent-glow: rgba(0,200,255,0.25);
  --dark:   #080C10;
  --dark-2: #0D1318;
  --dark-3: #111920;
  --mid:    rgba(180,215,235,0.55);
  --light:  #111920;
  --white:  #E8F4FF;
  --border: rgba(0,200,255,0.15);
  --border-dark: rgba(0,200,255,0.1);
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 10px;
  --radius-lg: 16px;
  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: #E8F4FF;
  background: #080C10;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }

/* ── TYPOGRAPHY ── */
.display { font-family: var(--font-display); font-weight: 600; line-height: 1.1; letter-spacing: -0.03em; color: #E8F4FF; }
.display-lg { font-size: clamp(38px, 5.5vw, 64px); }
.display-md { font-size: clamp(28px, 3.5vw, 46px); }
.display-sm { font-size: clamp(22px, 2.5vw, 32px); }

.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.body-lg { font-size: 17px; line-height: 1.75; color: rgba(180,215,235,0.75); }
.body-md { font-size: 15px; line-height: 1.75; color: rgba(180,215,235,0.65); }
.body-sm { font-size: 13px; line-height: 1.65; color: rgba(180,215,235,0.55); }

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2.5rem; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 2.5rem; }
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark);
  border-bottom: 0.5px solid var(--border-dark);
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
  transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-cta {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--white);
  padding: 8px 20px;
  border-radius: 20px;
  border: 0.5px solid rgba(255,255,255,0.25);
  transition: all var(--transition);
}

.nav-cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 12px 26px;
  border-radius: 24px;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--accent);
  color: #E8F4FF;
  font-weight: 600;
}
.btn-primary:hover { background: var(--accent-light); }

.btn-outline-dark {
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.06);
}
.btn-outline-dark:hover {
  border-color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.12);
}

.btn-outline-light {
  color: #E8F4FF;
  border: 0.5px solid rgba(0,0,0,0.2);
}
.btn-outline-light:hover { border-color: var(--dark); }

/* ── TAGS / PILLS ── */
.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 20px;
  border: 0.5px solid rgba(0,0,0,0.15);
  color: rgba(180,215,235,0.65);
}

.tag-accent { border-color: var(--accent); color: var(--accent); }

/* ── CARDS ── */
.card {
  background: var(--dark-2);
  border-radius: var(--radius-lg);
  border: 0.5px solid var(--border);
  overflow: hidden;
  transition: transform var(--transition);
}
.card:hover { transform: translateY(-3px); box-shadow: 0 0 24px rgba(0,200,255,0.12); }

.card-img { overflow: hidden; }
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.card:hover .card-img img { transform: scale(1.03); }

.card-body { padding: 1.5rem; }
.card-sector { margin-bottom: 0.5rem; }
.card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
  color: #E8F4FF;
}
.card-client { font-size: 12px; color: rgba(0,200,255,0.4); margin-bottom: 0.75rem; letter-spacing: 0.03em; }
.card-desc { font-size: 13px; line-height: 1.65; color: rgba(180,215,235,0.65); }
.card-stat {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 0.5px solid var(--border);
}
.card-stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.card-stat-label { font-size: 12px; color: rgba(180,215,235,0.45); }

/* ── DIVIDERS ── */
.divider { border: none; border-top: 0.5px solid var(--border); }
.divider-dark { border-top-color: var(--border-dark); }

/* ── DARK SECTION ── */
.section-dark {
  background: var(--dark);
  color: var(--white);
}
.section-dark .body-lg,
.section-dark .body-md,
.section-dark .body-sm { color: rgba(255,255,255,0.55); }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  border-top: 0.5px solid var(--border-dark);
  padding: 3rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 0.5px solid var(--border-dark);
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--white);
}
.footer-links { display: flex; gap: 2rem; }
.footer-links a { font-size: 13px; color: rgba(0,200,255,0.35); transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: 12px; color: rgba(0,200,255,0.2); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease forwards; }
.fade-up-1 { animation-delay: 0.1s; opacity: 0; }
.fade-up-2 { animation-delay: 0.25s; opacity: 0; }
.fade-up-3 { animation-delay: 0.4s; opacity: 0; }
.fade-up-4 { animation-delay: 0.55s; opacity: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .container, .container-wide { padding: 0 1.25rem; }
  .section { padding: 4rem 0; }
  .nav { padding: 0 1.25rem; }
  .nav-links { display: none; }
  footer { flex-direction: column; gap: 1.5rem; }
}
