:root {
  --navy: #0A1F44;
  --bg: #FFFFFF;
  --fg: #0A1F44;
  --fg-soft: rgba(10, 31, 68, 0.72);
  --fg-faint: rgba(10, 31, 68, 0.4);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  overflow: hidden;
}

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--fg);
  min-height: 100dvh;
  position: relative;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--bg);
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><g fill='%230a1f44' fill-opacity='0.05'><rect x='25' y='25' width='30' height='30'/><rect x='25' y='25' width='30' height='30' transform='rotate(45 40 40)'/></g></svg>");
  background-repeat: repeat;
  background-size: 80px 80px;
}

.container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.wordmark {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--fg);
}

.divider {
  display: block;
  width: 1px;
  height: 32px;
  background: var(--fg-faint);
  margin: 24px 0;
}

.message {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--fg-soft);
  max-width: 36ch;
  letter-spacing: 0.02em;
}

.footer {
  position: absolute;
  bottom: 16px;
  right: 24px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-soft);
  z-index: 3;
}

.skyline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 14vh;
  pointer-events: none;
  z-index: 1;
  display: block;
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .wordmark {
    font-size: 13px;
    letter-spacing: 0.3em;
  }
  .message {
    font-size: 12px;
  }
  .footer {
    bottom: 12px;
    right: 16px;
    font-size: 10px;
  }
  .skyline {
    height: 10vh;
  }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
