@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,500;0,600;1,500;1,600&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --bg: #0B1422;
  --bg-deep: #07101D;
  --fg-1: #E5ECF4;
  --fg-2: #B4C2D6;
  --fg-3: #6A809E;
  --fg-4: #3B5573;
  --hair: #1F3147;
  --hair-strong: #2A3F5C;
  --accent: #B85428;
}

* { box-sizing: border-box; }
html, body { margin: 0; }
body {
  background: var(--bg);
  color: var(--fg-1);
  font-family: 'Inter', system-ui, sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 0;
}

.stage {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 28px 40px;
}
@media (max-width: 720px) {
  .stage { padding: 20px 24px; }
}

.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--fg-1);
  text-decoration: none;
}
.brand .hq { color: var(--fg-3); font-weight: 500; }
.brand svg { display: block; }

.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
  display: inline-flex; align-items: center; gap: 10px;
  opacity: 0;
}
.eyebrow .pulse {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(184,84,40,0.5);
  animation: pulse 2.4s cubic-bezier(0.2,0,0,1) infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(184,84,40,0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(184,84,40,0); }
  100% { box-shadow: 0 0 0 0 rgba(184,84,40,0); }
}

@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

.foot {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--fg-3);
  text-transform: uppercase;
}
.foot a { color: var(--fg-2); text-decoration: none; }
.foot a:hover { color: var(--fg-1); }
.foot-meta { display: flex; gap: 14px; align-items: center; }
.foot-meta .dot { color: var(--fg-4); }
@media (max-width: 720px) {
  .foot { justify-content: flex-start; }
}

.corner {
  position: fixed;
  width: 14px; height: 14px;
  border: 1px solid var(--hair);
  pointer-events: none;
  z-index: 2;
}
.corner.tl { top: 14px; left: 14px; border-right: none; border-bottom: none; }
.corner.tr { top: 14px; right: 14px; border-left: none; border-bottom: none; }
.corner.bl { bottom: 14px; left: 14px; border-right: none; border-top: none; }
.corner.br { bottom: 14px; right: 14px; border-left: none; border-top: none; }
@media (max-width: 720px) { .corner { display: none; } }
