:root {
  --bg: #08090b;
  --panel: #0f1114;
  --text: #ece8df;
  --muted: #8e9299;
  --steel: #b8bcc2;
  --red: #8e1f24;
  --red-bright: #c5363d;
  --line: rgba(255,255,255,0.10);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% 24%, rgba(255,255,255,0.035), transparent 27rem),
    linear-gradient(180deg, #090a0c 0%, #050607 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  display: flex;
  flex-direction: column;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.09'/%3E%3C/svg%3E");
}

.hero {
  position: relative;
  z-index: 2;
  width: min(860px, calc(100% - 40px));
  margin: auto;
  padding: 72px 0 54px;
  text-align: center;
}

.eyebrow {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  margin-bottom: 22px;
}

.mark {
  width: 164px;
  height: 164px;
  margin: 0 auto 22px;
  filter: drop-shadow(0 18px 32px rgba(0,0,0,.5));
}

.mark svg {
  width: 100%;
  height: 100%;
}

.smoke-line,
.skyline {
  fill: none;
  stroke: var(--steel);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.smoke-line {
  filter: drop-shadow(0 0 10px rgba(255,255,255,.08));
}

.smoke-line.thin {
  stroke-width: 2.2;
  opacity: .48;
}

.skyline {
  stroke: #6f7379;
  stroke-width: 2.3;
  opacity: .68;
}

h1 {
  margin: 0;
  font-size: clamp(3.5rem, 10vw, 7.6rem);
  line-height: .84;
  letter-spacing: .05em;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  color: #c6c8cb;
  text-shadow:
    0 1px 0 #fff,
    0 12px 30px rgba(0,0,0,.65);
}

h1 span {
  display: block;
  margin-bottom: .22em;
  color: var(--red-bright);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: .16em;
  letter-spacing: .58em;
  text-shadow: none;
  transform: translateX(.28em);
}

.tagline {
  margin: 25px 0 0;
  color: var(--red-bright);
  font-weight: 700;
  letter-spacing: .38em;
  font-size: .82rem;
}

.tagline::before,
.tagline::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 54px;
  height: 1px;
  margin: 0 18px;
  background: linear-gradient(90deg, transparent, var(--red));
}

.tagline::after {
  background: linear-gradient(90deg, var(--red), transparent);
}

.intro {
  max-width: 650px;
  margin: 34px auto 0;
  color: #a9adb3;
  font-size: clamp(.98rem, 2vw, 1.1rem);
  line-height: 1.8;
}

.status {
  width: fit-content;
  margin: 31px auto 0;
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.025);
  color: #c1c4c9;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .84rem;
  letter-spacing: .06em;
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red-bright);
  box-shadow: 0 0 0 0 rgba(197,54,61,.45);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 9px rgba(197,54,61,0); }
  100% { box-shadow: 0 0 0 0 rgba(197,54,61,0); }
}

.districts {
  margin-top: 47px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: #656a71;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 24px;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .2em;
}

footer {
  position: relative;
  z-index: 2;
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0 30px;
  border-top: 1px solid rgba(255,255,255,.06);
  color: #51555c;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: .72rem;
  letter-spacing: .06em;
}

.fog {
  position: fixed;
  z-index: 1;
  pointer-events: none;
  width: 62vw;
  height: 32vw;
  min-width: 500px;
  min-height: 260px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .055;
  background: white;
}

.fog-one {
  top: 8%;
  left: -20%;
  transform: rotate(8deg);
}

.fog-two {
  bottom: 8%;
  right: -22%;
  transform: rotate(-12deg);
}

@media (max-width: 600px) {
  .hero {
    width: min(100% - 28px, 860px);
    padding-top: 48px;
  }

  .mark {
    width: 128px;
    height: 128px;
  }

  .tagline::before,
  .tagline::after {
    width: 30px;
    margin: 0 10px;
  }

  .intro {
    line-height: 1.65;
  }

  footer {
    width: calc(100% - 28px);
    flex-direction: column;
    align-items: center;
  }
}
