:root {
  --bg: #ffffff;
  --text: #181818;
  --accent: #d7f55f; /* Lyteflo lime */
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  height: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

main {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

h1 {
  font-size: clamp(32px, 8vw, 64px);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0;
}

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