/* Palette mirrors apps/mobile/src/global.css @theme tokens */
:root {
  --bg: #000000;
  --surface: #1f1f21;
  --border: #2c2c2e;
  --ink: #ffffff;
  --muted: #8e8e93;
  --accent: #f68b1f;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
  padding: 32px 24px;
  background: var(--bg);
  color: var(--ink);
  font-family:
    -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;
  text-align: center;
  -webkit-font-smoothing: antialiased;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 34rem;
}

h1 {
  margin: 0;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

.note {
  margin: 8px 0 0;
  font-size: 0.9375rem;
  color: var(--muted);
}

.email {
  display: inline-block;
  margin-top: 56px;
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  color: var(--ink);
  font-size: 1rem;
  text-decoration: none;
}

.email:hover {
  border-color: var(--accent);
}

a {
  color: var(--ink);
}

footer {
  margin-top: 48px;
  font-size: 0.8125rem;
  color: var(--muted);
}

footer a {
  color: var(--muted);
}
