/*
 * Cookbook Paper tokens lifted from docs/design-tokens.md.
 * Marketing placeholder — single screen, no scroll on desktop.
 */

:root {
  --bg-base: #f4ede0;
  --bg-raised: #ebe2d0;
  --bg-elevated: #e0d4bc;

  --border-subtle: #e0d4bc;
  --border-default: #d4c5a8;

  --text-primary: #1a1410;
  --text-secondary: #3d2f24;
  --text-muted: #7a6555;
  --text-faint: #a89a85;

  --accent-brand: #a8421e;

  --font-display: 'Fraunces', 'Source Serif Pro', Georgia, serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background-color: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  display: flex;
  flex-direction: column;
}

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

.eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-brand);
  margin: 0 0 24px 0;
}

.title {
  font-family: var(--font-display);
  font-size: clamp(56px, 12vw, 96px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 0 0 24px 0;
  color: var(--text-primary);
}

.tagline {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin: 0 0 32px 0;
  color: var(--text-secondary);
}

.tagline em {
  font-style: italic;
  color: var(--accent-brand);
}

.lede {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  margin: 0 0 24px 0;
  color: var(--text-secondary);
  max-width: 48ch;
}

.status {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  margin: 0;
  color: var(--text-muted);
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

.footer {
  padding: 24px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--text-faint);
  letter-spacing: 0.05em;
}
