/* arkavix — custom styles layered on top of Tailwind CDN */

html, body {
  background-color: #050505;
  color: #f0f0f0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.glass-card {
  background: rgba(15, 15, 15, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.kinetic-gradient {
  background: #CCFF00;
}

.text-glow {
  text-shadow: 0 0 20px rgba(204, 255, 0, 0.2);
}

/* "scanning" underline used on headlines */
.scan-underline::after {
  content: "";
  display: block;
  height: 2px;
  width: 40px;
  background: #CCFF00;
  margin-top: 12px;
}

/* Subtle monolith grid texture used behind hero sections */
.monolith-grid {
  background-image:
    linear-gradient(rgba(204, 255, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(204, 255, 0, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
}

/* Inline ghost border treatment from DESIGN.md */
.ghost-card {
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Prose overrides for /insights/ articles */
.prose-arkavix {
  color: #d4d4d4;
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.75;
}
.prose-arkavix h2 {
  font-family: 'Poppins', sans-serif;
  color: #f0f0f0;
  font-weight: 800;
  text-transform: lowercase;
  letter-spacing: -0.02em;
  font-size: 2rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
}
.prose-arkavix h3 {
  font-family: 'Poppins', sans-serif;
  color: #f0f0f0;
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: -0.01em;
  font-size: 1.375rem;
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
}
.prose-arkavix p {
  margin-bottom: 1.25rem;
}
.prose-arkavix a {
  color: #CCFF00;
  border-bottom: 1px solid rgba(204, 255, 0, 0.4);
  text-decoration: none;
}
.prose-arkavix ul {
  list-style: none;
  margin: 1.25rem 0;
  padding-left: 0;
}
.prose-arkavix ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}
.prose-arkavix ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 8px;
  height: 1px;
  background: #CCFF00;
}
.prose-arkavix blockquote {
  border-left: 2px solid #CCFF00;
  padding-left: 1.25rem;
  margin: 2rem 0;
  color: #f0f0f0;
  font-style: italic;
}
.prose-arkavix code {
  background: #141414;
  color: #CCFF00;
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
  font-size: 0.9em;
}
.prose-arkavix pre {
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1rem 1.25rem;
  border-radius: 0.5rem;
  overflow-x: auto;
  margin: 1.5rem 0;
}
.prose-arkavix pre code {
  background: transparent;
  color: #d4d4d4;
  padding: 0;
}

/* Hide default scrollbar artefact on mobile nav drawer */
@media (max-width: 768px) {
  body.nav-open { overflow: hidden; }
}
