/* ----- Variables ----- */
:root {
  --bg: #0d0d0f;
  --surface: #16161a;
  --accent: #c9a227;
  --accent-dim: #a68520;
  --text: #e8e6e3;
  --text-muted: #8b8685;
  --radius: 12px;
  --font: "Outfit", system-ui, sans-serif;
}

/* ----- Base ----- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  background: white;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  position: relative;
  overflow-x: hidden;
}

/* ----- Subtle noise overlay ----- */
.noise {
  position: fixed;
  inset: 0;
  opacity: 0.03;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ----- Layout ----- */
.container {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 32rem;
  width: 100%;
}

/* ----- Logo ----- */
.logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.logo-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
}

.logo-text {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: black;
}

/* ----- Message ----- */
.message {
  margin-bottom: 2rem;
}

.message h1 {
  font-size: clamp(2rem, 4vw, 2rem);
  font-weight: 500;
  line-height: 1.3;
  margin: 0 0 1rem;
  color: black;
}

.message p {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ----- Footer ----- */
.footer {
  padding-top: 2rem;
  border-top: 1px solid rgb(7 7 7 / 6%);
}

.footer p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-muted);
  margin: 0;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

