:root{
  --text: #1e1e1e;
  --muted: #6f7376;
  --bg: #ffffff;
}

* { box-sizing: border-box; }
html, body { height: 100%; }

body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
}

.page{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 20px 72px;
}

.hero{
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

/* Logo sizing (responsive, premium spacing) */
.logo{
  width: min(480px, 80vw);
  height: auto;
  display: block;
}

.tagline{
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.2px;
  color: var(--muted);
}

.footer{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 20px;
  display: flex;
  justify-content: center;
}

.footer-inner{
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.2px;
  display: flex;
  gap: 18px;
  align-items: center;
  white-space: nowrap;
}

.dot{
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #c9cccf;
  display: inline-block;
}
