/* SageFNF still landing — no animation, no external fonts, one still image. */
:root {
  --bg: #0a0a0d;
  --ink: #ececf2;
  --ink-mute: #4d4a57;
  --violet: #a78bfa;
  --mono: ui-monospace, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;
}

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

html,
body {
  height: 100%;
  background: var(--bg);
  color: var(--ink);
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

img {
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  position: relative;
}

/* The still. Object-fit cover keeps the composition at any aspect ratio;
   the body background is the fallback while the image decodes. */
.aurora {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.aurora img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

header,
main,
footer {
  position: relative;
  z-index: 1;
}

header {
  display: flex;
  justify-content: center;
  padding: 28px 32px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 8px rgba(167, 139, 250, 0.6);
}

main {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
}

.logo {
  width: 140px;
  height: auto;
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

@media (max-width: 600px) {
  header,
  footer {
    padding: 20px;
  }
  footer {
    flex-direction: column;
    gap: 8px;
  }
  .logo {
    width: 110px;
  }
}
