/* ea7b1ec8.css - Cyberpunk green hacker glass with maroon grid paper */

/* Light reset and variables */
:root{
  --bg: #3a0f0f;
  --bg-deep: #210808;
  --text: #eafff5;
  --muted: #bfeeb0;
  --green: #36ff8a;
  --green-deep: #0bd35f;
  --card: rgba(0,0,0,.32);
  --glass: rgba(255,255,255,.08);
  --stroke: rgba(0,255,120,.35);
  --radius: 16px;
}
*,
*::before,
*::after { box-sizing: border-box; }
html, body { height: 100%; }
html { font-size: 16px; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto;
  color: var(--text);
  /* Maroon grid paper background with green grid lines (hacker theme) */
  background-color: #2b0a0a;
  background-image:
    /* subtle dark overlay for readability */
    linear-gradient(rgba(0,0,0,.25), rgba(0,0,0,.25)),
    /* vertical green grid lines */
    repeating-linear-gradient(90deg, rgba(54,255,142,.25) 0px, rgba(54,255,142,.25) 1px, transparent 1px, transparent 28px),
    /* horizontal green grid lines */
    repeating-linear-gradient(0deg, rgba(54,255,142,.25) 0px, rgba(54,255,142,.25) 1px, transparent 1px, transparent 28px);
  background-blend-mode: overlay;
  min-height: 100vh;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 5;
  backdrop-filter: blur(4px);
  background: rgba(12,6,10,.65);
  border-bottom: 1px solid rgba(54,255,142,.25);
}
.site-header .brand {
  display: inline-block;
  padding: .75rem 0;
  font-weight: 700;
  color: #eafff0;
  text-shadow: 0 0 6px rgba(54,255,142,.8);
  letter-spacing: .4px;
}
.container { width: 100%; max-width: 1020px; margin: 0 auto; padding: 0 1rem; }

/* Main */
main { padding: 1.25rem 0 2rem; }

/* Hero (glass) */
.hero {
  display: grid;
  place-items: center;
  padding: 1rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: center;
  justify-items: center;
  text-align: center;
  padding: 1rem;
  width: 100%;
  max-width: 1000px;
  border-radius: var(--radius);
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(0,255,120,.25);
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero-media img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 14px 34px rgba(0,0,0,.4);
}
.hero-copy { padding: 0 1rem; }
.hero-copy h1 { font-size: 1.6rem; margin: 0.25rem 0 0.5rem; line-height: 1.15; }
.subhead { color: rgba(234,255,240,.95); font-size: 1.05rem; }

/* CTA */
.cta-hero {
  display: inline-block;
  margin-top: 0.9rem;
  padding: 0.95rem 1.4rem;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #2aff86 0%, #0bd35f 60%, #0a7a39 100%);
  color: #04240f;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,.4);
  transition: transform .2s ease, box-shadow .2s ease;
}
.cta-hero:hover { transform: translateY(-1px); box-shadow: 0 12px 28px rgba(0,0,0,.5); }
.cta-hero:focus-visible {
  outline: 3px solid rgba(0,255,120,.9);
  outline-offset: 2px;
}
.hero-note { display: none; }

/* Footer */
.site-footer { padding: 1rem; text-align: center; color: rgba(234,255,240,.9); }
.footer-ad a {
  display: inline-block;
  padding: .25rem .6rem;
  border-radius: 6px;
  background: rgba(0,255,120,.15);
  color: #caffd0;
  font-weight: 700;
  border: 1px solid rgba(0,255,120,.4);
}
.closing-note { margin-top: .75rem; color: #d3ffd6; }

/* Focus visibility helpers */
:focus { outline: none; }
:focus-visible { outline: 3px solid rgba(0,255,120,.9); outline-offset: 2px; }

/* Responsive (mobile-first) */
@media (min-width: 720px) {
  .hero-grid {
    grid-template-columns: 1fr 1.4fr 0.6fr;
    text-align: left;
    align-items: center;
  }
  .hero-media { justify-self: center; grid-column: 1; }
  .hero-copy { grid-column: 2; align-self: center; text-align: left; }
  .cta-hero { grid-column: 3; justify-self: end; align-self: center; }
}
@media (min-width: 1100px) {
  .hero-copy h1 { font-size: 2rem; }
}