/* VGC Neon — static site styles */
:root {
  --background: #0a0a14;
  --surface: #13132a;
  --foreground: #f4f4ff;
  --muted: #9a9ab8;
  --primary: #ff2bd6;
  --secondary: #00e7ff;
  --accent: #8a2bff;
  --border: #1f1f3a;
  --neon: linear-gradient(135deg, #ff2bd6 0%, #8a2bff 50%, #00e7ff 100%);
  --content: 720px;
  --wide: 1200px;
  --font-display: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-display); }
h1 { font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; }
h2 { font-weight: 700; line-height: 1.15; letter-spacing: -0.01em; }
h3 { font-weight: 600; line-height: 1.2; }
h4 { font-weight: 600; }

a { color: var(--secondary); text-decoration: none; }
a:hover { color: var(--primary); }

img { max-width: 100%; height: auto; display: block; }

.muted { color: var(--muted); }
.eyebrow {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--secondary);
  margin: 0 0 1rem;
}
.center { text-align: center; }

.wrap { max-width: var(--content); margin: 0 auto; padding: 0 1.5rem; }
.wrap-wide { max-width: var(--wide); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section--surface { background-color: var(--surface); }

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  background-color: var(--primary);
  color: var(--foreground);
  border: 2px solid transparent;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}
.btn:hover { background-color: var(--accent); color: var(--foreground); }
.btn--outline { background: transparent; border-color: var(--foreground); color: var(--foreground); }
.btn--outline:hover { background: var(--foreground); color: var(--background); }
.btn--dark { background-color: var(--background); }
.btn--dark:hover { background-color: var(--surface); }
.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2rem; }

/* Header */
.site-header {
  background-color: var(--background);
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 0;
  position: sticky;
  top: 0;
  z-index: 20;
}
.site-header__inner {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.site-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--foreground);
}
.site-title:hover { color: var(--foreground); }
.site-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
}
.site-nav a { color: var(--foreground); }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--primary); }

/* Hero */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem;
  text-align: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(10, 10, 20, 0.7);
}
.hero__inner { position: relative; z-index: 2; max-width: 820px; margin: 0 auto; }
.hero h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); margin: 0 0 1.25rem; }
.hero p.lead { font-size: 1.2rem; color: var(--muted); margin: 0; }

/* Page hero (inner pages) */
.page-hero {
  padding: 4.5rem 0 3rem;
  border-bottom: 1px solid var(--border);
  background: radial-gradient(circle at 30% 20%, rgba(255,43,214,0.25) 0%, rgba(10,10,20,0) 60%), linear-gradient(180deg, #0a0a14 0%, #13132a 100%);
}
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin: 0 0 1rem; }
.page-hero p { color: var(--muted); margin: 0; max-width: 640px; }

/* Cards grid */
.grid { display: grid; gap: 2rem; margin-top: 3rem; }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .2s ease, transform .2s ease;
}
.card:hover { border-color: var(--primary); transform: translateY(-4px); }
.card__media { aspect-ratio: 16 / 10; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__body { padding: 1.5rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.card__meta {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--secondary);
}
.card h3 { margin: 0; font-size: 1.35rem; }
.card h3 a { color: var(--foreground); }
.card h3 a:hover { color: var(--primary); }
.card p { margin: 0; color: var(--muted); font-size: 0.98rem; }
.card__link { margin-top: auto; font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; }

/* Category cards */
.cat-card {
  position: relative;
  min-height: 280px;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.cat-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cat-card::after { content: ""; position: absolute; inset: 0; background: rgba(10,10,20,0.5); }
.cat-card:hover::after { background: rgba(10,10,20,0.35); }
.cat-card__inner { position: relative; z-index: 2; }
.cat-card h3 { font-size: 1.6rem; margin: 0 0 .5rem; color: var(--foreground); }
.cat-card p { margin: 0; color: var(--foreground); }

/* CTA */
.cta { background: var(--neon); padding: 5rem 1.5rem; text-align: center; }
.cta__inner { max-width: 720px; margin: 0 auto; }
.cta h2 { font-size: 2.5rem; margin: 0 0 1rem; }
.cta p { margin: 0; }

/* Post */
.post-cover { width: 100%; max-height: 480px; object-fit: cover; }
.post-meta {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--secondary);
  margin: 0;
}
.post-body { padding: 3.5rem 0 5rem; }
.post-body h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin: .5rem 0 1rem; }
.post-body h2 { font-size: 1.8rem; margin: 2.5rem 0 .75rem; }
.post-body h3 { font-size: 1.3rem; margin: 2rem 0 .5rem; }
.post-body ul, .post-body ol { padding-left: 1.25rem; }
.post-body li { margin-bottom: .5rem; }
.post-body blockquote {
  margin: 2rem 0;
  padding: 1rem 1.5rem;
  border-left: 3px solid var(--primary);
  background: var(--surface);
  border-radius: 0 12px 12px 0;
  color: var(--foreground);
}
.terms { color: var(--muted); font-size: 0.9rem; }
hr.rule { border: 0; border-top: 1px solid var(--border); margin: 2.5rem 0; }

/* Contact form */
.form { display: grid; gap: 1rem; margin-top: 2rem; }
.form label { font-family: var(--font-display); font-size: .9rem; font-weight: 600; }
.form input, .form textarea, .form select {
  width: 100%;
  padding: .8rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--foreground);
  font: inherit;
}
.form input:focus, .form textarea:focus { outline: 2px solid var(--secondary); border-color: var(--secondary); }

/* Footer */
.site-footer {
  background-color: var(--surface);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0;
}
.site-footer__inner {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}
.site-footer p { color: var(--muted); font-size: .9rem; margin: 0; }
.site-footer nav ul { list-style: none; display: flex; gap: 1.25rem; margin: 0; padding: 0; font-size: .9rem; }

@media (max-width: 640px) {
  .section { padding: 3.5rem 0; }
  .cta h2 { font-size: 1.9rem; }
  .site-nav ul { gap: 1rem; font-size: .9rem; }
}
