:root {
  --bg: #0a0a12;
  --bg-alt: #0d0d1a;
  --surface: #10101f;
  --text: #e6f1ff;
  --muted: #7c89b3;
  --neon: #00f0ff;
  --neon-2: #ff2e97;
  --grid: rgba(0, 240, 255, 0.06);
  --border: rgba(0, 240, 255, 0.25);
  --radius: 4px;
  --maxw: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Courier New", "Courier", ui-monospace, "SF Mono", Menlo, monospace;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}

/* Retro grid backdrop */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 40%, transparent 100%);
}

/* Scanlines */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 2px,
    rgba(0, 0, 0, 0.18) 3px,
    transparent 4px
  );
  opacity: 0.4;
}

main {
  position: relative;
  z-index: 2;
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; text-decoration: none; }

/* Brand */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-mark {
  color: var(--neon);
  font-size: 1.2rem;
  text-shadow: 0 0 8px var(--neon);
}

/* Top-left site brand */
.site-brand {
  position: absolute;
  top: 22px;
  left: 24px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
}

.site-brand .brand-mark {
  color: var(--neon);
  font-size: 1.2rem;
  text-shadow: 0 0 8px var(--neon);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: var(--radius);
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: box-shadow 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: transparent;
  color: var(--neon);
  border: 1px solid var(--neon);
  box-shadow: 0 0 0 1px rgba(0, 240, 255, 0.15), 0 0 18px rgba(0, 240, 255, 0.25);
  text-shadow: 0 0 8px rgba(0, 240, 255, 0.6);
}

.btn-primary:hover {
  background: var(--neon);
  color: var(--bg);
  text-shadow: none;
  box-shadow: 0 0 28px rgba(0, 240, 255, 0.7);
}

/* Hero */
.hero {
  position: relative;
  padding: 7vh 0 5vh;
  overflow: hidden;
}

.hero-inner { max-width: 760px; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 1.2rem;
  color: var(--neon-2);
  font-weight: 700;
  margin: 0 0 18px;
  text-shadow: 0 0 10px rgba(255, 46, 151, 0.5);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.1;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--text);
  text-shadow:
    0 0 12px rgba(0, 240, 255, 0.35),
    0 0 30px rgba(0, 240, 255, 0.15);
}

/* Sections */
.section { padding: 5vh 0; }
.section-alt { background: transparent; }

/* Coming soon */
.coming-soon {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  background: rgba(16, 16, 31, 0.4);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3.5vh 32px;
  position: relative;
  opacity: 0.7;
  box-shadow:
    inset 0 0 0 1px rgba(0, 240, 255, 0.04),
    0 0 20px rgba(0, 240, 255, 0.04);
}

.coming-soon:hover { opacity: 1; }

/* Corner brackets */
.coming-soon::before,
.coming-soon::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border: 1px solid var(--neon);
  pointer-events: none;
}
.coming-soon::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.coming-soon::after { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: transparent;
  color: var(--neon-2);
  border: 1px solid var(--neon-2);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
  box-shadow: 0 0 14px rgba(255, 46, 151, 0.3);
  text-shadow: 0 0 8px rgba(255, 46, 151, 0.5);
}

.coming-soon h2 {
  margin: 0 0 8px;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-shadow: 0 0 12px rgba(0, 240, 255, 0.3);
}
.coming-soon > p { color: var(--muted); margin: 0; font-size: 0.9rem; letter-spacing: 0.05em; }

/* Contact */
.contact-inner { text-align: center; }

/* Footer */
.site-footer {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  border-top: 1px solid var(--border);
  padding: 18px 0;
  background: var(--bg-alt);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}
