:root {
  --bg: #faf6ec;
  --fg: #2c5d4a;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--fg);
}

.landing {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 1.5rem;
}

.brand {
  margin: 0;
  font-weight: 800;
  font-size: clamp(3rem, 12vw, 9rem);
  letter-spacing: -0.03em;
  line-height: 1;
  color: #34c98a;
}
