/* JonoJonas Computer Systems */

:root {
  --bg: #030405;
  --fg: #e7ecee;
  --muted: #5c6469;
  --red: #ff1414;
  --head: "Michroma", var(--sans);
  --term: "Share Tech Mono", "JetBrains Mono", monospace;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body { height: 100%; }
html { background: var(--bg); }

body {
  margin: 0;
  background:
    radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.85) 100%),
    var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  line-height: 1.65;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* CRT scanlines, fixed over everything */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    rgba(231,236,238,0.04) 0px,
    rgba(231,236,238,0.04) 1px,
    transparent 1px,
    transparent 3px
  );
}

a { color: var(--fg); text-decoration-color: var(--muted); text-underline-offset: 3px; }
a:hover { color: var(--red); text-decoration-color: currentColor; }
a:focus-visible { outline: 1px solid var(--red); outline-offset: 3px; }

@keyframes blink { 50% { opacity: 0; } }

/* single-page hero */

.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
}
.hero-inner { position: relative; z-index: 2; max-width: 480px; }

.brand {
  font-family: var(--head);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 34px;
  color: var(--fg);
}
.brand::after {
  content: "_";
  color: var(--red);
  animation: blink 1.1s steps(1) infinite;
}
@media (max-width: 560px) { .brand { font-size: 18px; } }

.status-line {
  font-family: var(--term);
  font-size: 13px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 30px;
}

.contact-line {
  font-family: var(--term);
  font-size: 14px;
  letter-spacing: 0.03em;
  margin: 0;
}
.contact-line a { color: var(--fg); }
.contact-line a:hover { color: var(--red); }
.contact-line a::before { content: "> "; color: var(--red); }

/* footer */

.wrap { max-width: 760px; margin: 0 auto; padding: 0 24px; }

.site-foot {
  border-top: 1px solid #1a0808;
  color: var(--muted);
  text-align: center;
  padding: 20px 0;
  position: relative;
  z-index: 2;
}
.foot-copy {
  font-family: var(--term);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
