/* ═══════════════════════════════════════════════════
   BASE — Reset, body, background, layout
═══════════════════════════════════════════════════ */

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

html, body {
  min-height: 100vh;
  background: var(--black);
  font-family: var(--font-sans);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
}

button { cursor: pointer; font-family: var(--font-sans); }
input, select { font-family: var(--font-sans); }
a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Background decorations */
.bg-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 15% 0%,  rgba(201,168,76,.07) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 90% 100%, rgba(201,168,76,.05) 0%, transparent 55%);
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(201,168,76,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.03) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* Views */
.view         { display: none; }
.view.is-active { display: block; }

/* Page wrapper */
.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px 80px;
}

/* Page footer */
.page-footer {
  margin-top: 20px;
  text-align: center;
  font-size: 11px;
  color: var(--muted);
}
