:root {
  --bg: #070708;
  --red: #e10600;
  --bone: #e8e0d4;
  --mute: #8a8278;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--bone);
  font-family: Georgia, "Times New Roman", serif;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.scan,
.grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.scan {
  background: repeating-linear-gradient(
    to bottom,
    transparent 0 2px,
    rgba(0, 0, 0, 0.18) 2px 3px
  );
  animation: scan 9s linear infinite;
  opacity: 0.35;
}

.grid {
  background-image:
    linear-gradient(rgba(225, 6, 0, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(225, 6, 0, 0.07) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}

@keyframes scan {
  to { background-position: 0 120px; }
}

.bar {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  padding: 1.4rem 1.8rem;
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: 0.72rem;
}

.corp { color: var(--red); font-weight: 700; letter-spacing: 0.28em; }

.pill {
  flex-shrink: 0;
  border: 1px solid var(--red);
  color: var(--red);
  padding: 0.35rem 0.7rem;
  letter-spacing: 0.16em;
  white-space: nowrap;
  animation: pulse 2.8s ease-in-out infinite;
}

@keyframes pulse {
  50% { opacity: 0.45; }
}

.stage {
  position: relative;
  z-index: 3;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem 1.5rem 3rem;
}

.jp {
  margin: 0 0 1.2rem;
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.42em;
  color: var(--mute);
}

.mark { margin-bottom: 1rem; filter: drop-shadow(0 0 18px rgba(225, 6, 0, 0.45)); }

h1 {
  margin: 0;
  font-size: clamp(3.2rem, 12vw, 7.2rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 0.9;
}

.lead {
  max-width: 28rem;
  margin: 1.4rem 0 0;
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: 1.02rem;
  line-height: 1.6;
  color: #c9c0b4;
}

.meta {
  list-style: none;
  display: flex;
  gap: 1.4rem;
  padding: 0;
  margin: 2.2rem 0 0;
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
}

.meta li {
  padding-top: 0.55rem;
  border-top: 1px solid rgba(225, 6, 0, 0.55);
}

.foot {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.8rem 1.3rem;
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
}

@media (max-width: 640px) {
  .bar { padding: 1rem 1.1rem; }
  .corp { letter-spacing: 0.14em; }
  .pill { font-size: 0.62rem; padding: 0.3rem 0.5rem; letter-spacing: 0.1em; }
  .meta { flex-direction: column; gap: 0.7rem; }
  .foot { flex-direction: column; padding: 1rem 1.1rem 1.2rem; }
  h1 { letter-spacing: 0.08em; font-size: clamp(2.4rem, 16vw, 4rem); }
  .lead { font-size: 0.95rem; }
}
