/**
 * mu.tt – c37-style minimal single page
 * No logos, no nav, one message + contact + footer
 */

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

:root {
  --text: #0a0a0a;
  --muted: #666;
  --accent: #f97316;
  --bg: #fff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

.page {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem 4rem;
  max-width: 42rem;
  margin: 0 auto;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3rem;
}

.brand-name {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-top: 0.35rem;
}

.brand-dot {
  color: var(--accent);
}

.brand-mascot {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: bold;
}

.brand-nose {
  color: var(--accent);
}

.headline {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.tagline {
  font-size: 1.125rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.contact {
  font-size: 1rem;
}

.contact a {
  color: var(--text);
  text-decoration: none;
}

.contact a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.footer {
  padding: 1.5rem;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer p {
  font-size: 0.875rem;
  color: var(--muted);
}
