:root {
  color-scheme: light;
  --bg: #f7faf9;
  --panel: #ffffff;
  --text: #15201f;
  --muted: #4c5f5c;
  --accent: #0f766e;
  --border: #d7e3e0;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

.hello {
  width: min(720px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 18vh 0 12vh;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: 5rem;
  line-height: 1;
}

p {
  max-width: 42rem;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1.55;
}

@media (max-width: 560px) {
  .hello {
    width: min(100vw - 32px, 720px);
    padding-top: 14vh;
  }

  h1 {
    font-size: 3rem;
  }
}
