/* ====== Groove Quantum — custom.css ====== */

/* 1. CSS Variable Override */
:root {
  --primary-gradient: linear-gradient(135deg, #7C3AED, #00D4FF);
  --secondary-gradient: linear-gradient(45deg, #A78BFA, #7C3AED);
  --muted-gradient: linear-gradient(135deg, #5B21B6, #0369A1);
  --dark-bg: #050A14;
  --card-bg: rgba(13, 27, 46, 0.85);
  --text-primary: #F8FAFC;
  --text-secondary: #94A3B8;
  --neon-pink: #7C3AED;
  --neon-blue: #00D4FF;
  --neon-purple: #A78BFA;
  --muted-pink: #5B21B6;
  --muted-blue: #0284C7;
  --muted-purple: #6D28D9;
}

/* 2. Background color fix */
body {
  background: #050A14;
  font-family: 'IBM Plex Sans', 'Exo 2', sans-serif;
}

body::before {
  background:
    linear-gradient(135deg, #050A14 0%, #0A1628 25%, #0D1B2E 50%, #0A1628 75%, #050A14 100%),
    radial-gradient(ellipse at top left, rgba(124,58,237,0.2) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(0,212,255,0.12) 0%, transparent 50%);
}

/* 3. Remove glitch on section H2 except hero */
section:not(#home) h2.glitch::before,
section:not(#home) h2.glitch::after { display: none; }

/* 4. CTA buttons */
.cta-button {
  background: #7C3AED;
  border-color: #7C3AED;
}
.cta-button:hover {
  background: #6D28D9;
  border-color: #6D28D9;
}
.cta-button.cta-secondary {
  background: transparent;
  border: 1px solid #7C3AED;
  color: #A78BFA;
}
.cta-button.cta-secondary:hover {
  background: rgba(124,58,237,0.12);
}

/* 5. Section backgrounds alternate */
section:nth-child(even) { background: rgba(13,27,46,0.4); }

/* 6. Card borders */
.specialty-card, .menu-category, .contact-form, .contact-info {
  border: 1px solid rgba(124, 58, 237, 0.2);
  background: rgba(13, 27, 46, 0.85);
  border-radius: 8px;
}

/* 7. Metrics bar */
.metrics-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #1E3A5F;
  border-top: 1px solid rgba(124,58,237,0.2);
  border-bottom: 1px solid rgba(124,58,237,0.2);
  max-width: 100%;
  margin: 0;
}
.metric-item {
  padding: 2rem;
  background: #0D1B2E;
  text-align: center;
}
.metric-value {
  font-family: 'Exo 2', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: #00D4FF;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 24px rgba(0, 212, 255, 0.4);
}
.metric-label {
  color: #94A3B8;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

/* 8. Typography */
h1, h2, h3, h4, .metric-value, nav .logo {
  font-family: 'Exo 2', sans-serif;
}

/* 9. Section padding */
section { padding: 96px 2rem; }

/* 10. Content max-width */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* 11. Section title accent */
.section-title {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-align: center;
  margin-bottom: 3rem;
  color: #F8FAFC;
}
.title-accent {
  display: block;
  width: 48px;
  height: 3px;
  background: #7C3AED;
  margin: 12px auto 0;
}

/* 12. Card hover */
.card:hover,
.specialty-card:hover,
.team-card:hover,
.blog-card:hover,
.pub-card:hover,
.use-case-card:hover {
  border-color: rgba(124, 58, 237, 0.5);
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.15);
  transform: translateY(-3px);
  transition: all 0.25s ease;
}

/* 13. Journal badge */
.badge-journal {
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.35);
  color: #A78BFA;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-family: 'IBM Plex Mono', monospace;
  display: inline-block;
  margin-bottom: 0.75rem;
}

/* 14. Blog category badge */
.badge-category {
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.25);
  color: #00D4FF;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-block;
  margin-bottom: 0.75rem;
}

/* 15. PhD badge */
.badge-phd {
  background: rgba(124,58,237,0.2);
  border: 1px solid rgba(124,58,237,0.4);
  color: #A78BFA;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 0.7rem;
  font-family: 'IBM Plex Mono', monospace;
  vertical-align: middle;
  margin-left: 0.4rem;
}

/* 16. Hero badge */
.hero-badge {
  display: inline-block;
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.4);
  color: #A78BFA;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}

/* 17. Hero section */
#home {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 100px;
}
.hero-title {
  font-family: 'Exo 2', sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #F8FAFC;
  background: linear-gradient(135deg, #7C3AED, #00D4FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
}
.hero-subtitle {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1.2rem;
  color: #94A3B8;
  max-width: 700px;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.hero-social-proof {
  margin-top: 2rem;
  color: #94A3B8;
  font-size: 0.9rem;
  font-family: 'IBM Plex Mono', monospace;
}
.hero-social-proof span {
  color: #34D399;
  margin-left: 1rem;
}

/* 18. Technology section rows */
.tech-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}
.tech-row.reverse { direction: rtl; }
.tech-row.reverse > * { direction: ltr; }
.tech-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(124,58,237,0.2);
}
.tech-text h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #F8FAFC;
  margin-bottom: 1rem;
}
.tech-text p {
  color: #94A3B8;
  line-height: 1.7;
}
.tech-text ul {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}
.tech-text ul li {
  color: #94A3B8;
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
}
.tech-text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #7C3AED;
  border-radius: 50%;
}

/* 19. Use cases grid */
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.use-case-card {
  background: rgba(13,27,46,0.85);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.25s ease;
}
.use-case-card .card-icon {
  font-size: 2.5rem;
  color: #7C3AED;
  margin-bottom: 1.25rem;
}
.use-case-card h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #F8FAFC;
  margin-bottom: 0.75rem;
}
.use-case-card p { color: #94A3B8; line-height: 1.6; }

/* 20. Research / publications */
.pub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.pub-card {
  background: rgba(13,27,46,0.85);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.25s ease;
}
.pub-card h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #F8FAFC;
  margin-bottom: 0.5rem;
}
.pub-card .pub-year {
  color: #94A3B8;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}
.pub-card a {
  color: #7C3AED;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
}
.pub-card a:hover { color: #A78BFA; }

/* 21. Team grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 2rem;
}
.team-card {
  background: rgba(13,27,46,0.85);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: all 0.25s ease;
}
.team-card.featured {
  border-color: rgba(124,58,237,0.5);
  grid-column: span 1;
}
.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.25rem;
  display: block;
  border: 2px solid rgba(124,58,237,0.4);
  background: rgba(124,58,237,0.1);
}
.team-card h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #F8FAFC;
  margin-bottom: 0.3rem;
}
.team-card .role {
  color: #7C3AED;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.team-card p {
  color: #94A3B8;
  font-size: 0.9rem;
  line-height: 1.6;
}
.team-social {
  margin-top: 1rem;
}
.team-social a {
  color: #94A3B8;
  font-size: 1.1rem;
  transition: color 0.2s ease;
}
.team-social a:hover { color: #7C3AED; }

/* 22. Blog grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.blog-card {
  background: rgba(13,27,46,0.85);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.25s ease;
}
.blog-thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: rgba(124,58,237,0.1);
  display: block;
}
.blog-thumb-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, rgba(124,58,237,0.2), rgba(0,212,255,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #A78BFA;
  font-size: 2.5rem;
}
.blog-card-body {
  padding: 1.5rem;
}
.blog-card-body h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #F8FAFC;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.blog-meta {
  color: #94A3B8;
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
  font-family: 'IBM Plex Mono', monospace;
}
.blog-card-body p {
  color: #94A3B8;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.blog-card-body a.read-more {
  color: #7C3AED;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
}
.blog-card-body a.read-more:hover { color: #A78BFA; }

/* 23. Blog preview (homepage 3-col) */
.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

/* 24. Team preview */
.team-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

/* 25. CTA section */
.cta-section {
  text-align: center;
  padding: 96px 2rem;
  background: rgba(13,27,46,0.5);
}
.cta-section h2 {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #F8FAFC;
  margin-bottom: 1rem;
}
.cta-section p {
  color: #94A3B8;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* 26. Investor strip */
.investor-strip {
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(13,27,46,0.5);
  border-top: 1px solid rgba(124,58,237,0.15);
  border-bottom: 1px solid rgba(124,58,237,0.15);
}
.investor-strip p {
  color: #94A3B8;
  font-size: 1rem;
}
.investor-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  color: #A78BFA;
  font-weight: 600;
  margin-top: 1rem;
}

/* 27. About page hero (short) */
.page-hero {
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 100px;
}
.page-hero h1 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  color: #F8FAFC;
  background: linear-gradient(135deg, #7C3AED, #00D4FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}
.page-hero p {
  color: #94A3B8;
  font-size: 1.15rem;
  max-width: 600px;
  line-height: 1.7;
}

/* 28. Mission section 2-col */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.mission-image {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(124,58,237,0.2);
  background: rgba(124,58,237,0.08);
}
.mission-text h2 {
  font-family: 'Exo 2', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #F8FAFC;
  margin-bottom: 1rem;
}
.mission-text p {
  color: #94A3B8;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* 29. Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 2rem auto 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #7C3AED, rgba(124,58,237,0.1));
}
.timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
}
.timeline-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  background: rgba(124,58,237,0.15);
  border: 2px solid rgba(124,58,237,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #A78BFA;
  font-size: 1.2rem;
  z-index: 1;
}
.timeline-content {
  background: rgba(13,27,46,0.85);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 8px;
  padding: 1.5rem;
  flex: 1;
}
.timeline-content h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #F8FAFC;
  margin-bottom: 0.4rem;
}
.timeline-year {
  color: #7C3AED;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.timeline-content p { color: #94A3B8; font-size: 0.9rem; line-height: 1.6; }

/* 30. Values cards */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.value-card {
  background: rgba(13,27,46,0.85);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.25s ease;
}
.value-card .card-icon {
  font-size: 2.5rem;
  color: #7C3AED;
  margin-bottom: 1.25rem;
}
.value-card h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #F8FAFC;
  margin-bottom: 0.75rem;
}
.value-card p { color: #94A3B8; line-height: 1.6; }

/* 31. Contact form extras */
.form-group select {
  width: 100%;
  padding: 1rem;
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid rgba(109, 63, 179, 0.2);
  border-radius: 5px;
  color: #F8FAFC;
  transition: all 0.3s ease;
}
.form-group select:focus {
  outline: none;
  border-color: #7C3AED;
  box-shadow: 0 0 8px rgba(124, 58, 237, 0.2);
}
.form-group select option {
  background: #0D1B2E;
  color: #F8FAFC;
}

/* 32. Technical specs panel */
.specs-panel {
  background: rgba(13,27,46,0.9);
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: 8px;
  padding: 2.5rem;
  margin: 2rem 0;
}
.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.spec-item {
  text-align: center;
}
.spec-item .spec-label {
  color: #94A3B8;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
  font-family: 'IBM Plex Mono', monospace;
}
.spec-item .spec-value {
  color: #F8FAFC;
  font-family: 'Exo 2', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
}
.spec-item i {
  color: #7C3AED;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  display: block;
}

/* 33. IP section */
.ip-card {
  background: rgba(13,27,46,0.85);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 8px;
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
.ip-card i {
  color: #7C3AED;
  font-size: 2rem;
  margin-top: 0.25rem;
}
.ip-card h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #F8FAFC;
  margin-bottom: 0.5rem;
}
.ip-card p { color: #94A3B8; line-height: 1.6; }

/* 34. Contact info icon styling */
.info-item .info-icon {
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.3);
  color: #A78BFA;
  font-size: 1rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

/* 35. Footer full 4-col */
footer {
  background: #050A14;
  border-top: 1px solid rgba(124,58,237,0.2);
  padding: 4rem 0 2rem;
  margin-top: 0;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand .logo-text {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #F8FAFC;
  text-decoration: none;
  display: block;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, #7C3AED, #00D4FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-tagline {
  color: #94A3B8;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94A3B8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.25s ease;
}
.footer-social a:hover {
  background: #7C3AED;
  color: #F8FAFC;
  border-color: #7C3AED;
}
.footer-col h4 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  color: #F8FAFC;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}
.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col ul li {
  margin-bottom: 0.6rem;
}
.footer-col ul li a {
  color: #94A3B8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}
.footer-col ul li a:hover { color: #F8FAFC; }
.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding: 1.5rem 2rem 0;
  border-top: 1px solid rgba(30,58,95,0.5);
  text-align: center;
  color: #94A3B8;
  font-size: 0.85rem;
}

/* 36. Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0D1B2E;
  border-top: 1px solid rgba(124,58,237,0.3);
  padding: 1.25rem 2rem;
  z-index: 9999;
  display: none;
}
.cookie-banner.visible { display: block; }
.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cookie-content p {
  color: #94A3B8;
  font-size: 0.9rem;
  flex: 1;
  min-width: 200px;
}
.cookie-content p a {
  color: #A78BFA;
  text-decoration: underline;
}
.cookie-buttons {
  display: flex;
  gap: 0.75rem;
}
.btn-cookie-accept {
  background: #7C3AED;
  color: #F8FAFC;
  border: none;
  padding: 0.6rem 1.4rem;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.2s ease;
}
.btn-cookie-accept:hover { background: #6D28D9; }
.btn-cookie-decline {
  background: transparent;
  color: #94A3B8;
  border: 1px solid rgba(124,58,237,0.4);
  padding: 0.6rem 1.4rem;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}
.btn-cookie-decline:hover {
  color: #F8FAFC;
  border-color: #94A3B8;
}

/* 37. Nav overrides */
nav {
  background: transparent;
  transition: background 0.3s ease;
  box-shadow: none;
}
nav.scrolled {
  background: rgba(5,10,20,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(124,58,237,0.15);
}
nav .logo {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, #7C3AED, #00D4FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
  animation: none;
}
nav .nav-cta {
  background: #7C3AED;
  color: #F8FAFC;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background 0.2s ease;
  white-space: nowrap;
}
nav .nav-cta:hover { background: #6D28D9; color: #F8FAFC; }
nav .nav-links a.active {
  color: #7C3AED;
  border-bottom: 2px solid #7C3AED;
  text-shadow: none;
}

/* 38. Dropdown nav */
.nav-item-dropdown {
  position: relative;
}
.nav-item-dropdown:hover .nav-dropdown {
  display: block;
}
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(13,27,46,0.98);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 6px;
  min-width: 160px;
  z-index: 2000;
  padding: 0.5rem 0;
}
.nav-dropdown a {
  display: block;
  padding: 0.6rem 1.25rem;
  color: #94A3B8;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}
.nav-dropdown a:hover { color: #F8FAFC; }

/* 39. Responsive */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .pub-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .metrics-bar { grid-template-columns: repeat(2, 1fr); }
  .tech-row,
  .use-cases-grid,
  .team-grid,
  .blog-grid,
  .values-grid,
  .mission-grid,
  .specs-grid { grid-template-columns: 1fr; }
  .blog-preview-grid,
  .team-preview-grid { grid-template-columns: 1fr; }
  section { padding: 64px 1.25rem; }
  h1 { font-size: clamp(1.8rem, 8vw, 2.8rem); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .tech-row.reverse { direction: ltr; }
}
/* Fix 1: Article page max-width */
.article-layout, .article-container, .article-content, .blog-article, .post-content { max-width: 800px; margin: 0 auto; padding: 40px 20px 60px; }

/* Fix 2: Article text color */
.article-body p, .article-content p, .post-content p, .blog-article p { color: #c0c0c0; font-size: 16px; line-height: 1.8; margin-bottom: 20px; }
.article-body h2, .article-content h2, .post-content h2 { color: #fff; font-size: 24px; margin-top: 36px; margin-bottom: 16px; }
.article-body h3, .article-content h3, .post-content h3 { color: #ddd; font-size: 20px; margin-top: 28px; margin-bottom: 12px; }
.article-body ul, .article-body ol, .article-content ul, .article-content ol { color: #c0c0c0; margin-bottom: 20px; padding-left: 24px; }
.article-body li, .article-content li { margin-bottom: 8px; line-height: 1.7; }
