:root {
  color-scheme: light;
  --ink: #17202a;
  --muted: #5d6877;
  --line: rgba(23, 32, 42, 0.12);
  --paper: #f7f8f5;
  --accent: #0f766e;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
}

#field {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  align-items: end;
  padding: clamp(28px, 7vw, 84px);
}

.intro {
  width: min(720px, 100%);
  padding-bottom: clamp(32px, 8vh, 96px);
}

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

h1 {
  margin: 0;
  font-size: clamp(3.2rem, 12vw, 8.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.summary {
  max-width: 520px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.55;
}
