/* Sapiomate web presence. Tokens mirror the app's: paper, ink, honey. */
:root {
  --paper: #f0eee9;   /* cloud dancer */
  --ink: #402e32;     /* umbra */
  --stone: #9c8d88;
  --honey: #c98a18;
  --margin: 24px;
}

* { box-sizing: border-box; }

html, body { margin: 0; background: var(--paper); color: var(--ink); }

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 300;
  padding: 0 var(--margin);
}

.top { padding: 20px 0; }

.wordmark {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.28em;
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 720px;
  padding: 48px 0;
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
}

h1 {
  margin: 0 0 24px;
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(32px, 6vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.015em;
}

.line {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  max-width: 34em;
}

.foot {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
}

.foot a { color: inherit; text-decoration: none; }
.foot a:hover { color: var(--ink); }
