/* joinfallow.com — holding page. Tokens mirror fallow-site/src/routes/layout.css ("Ledger Ink").
   Fonts load from Google Fonts (see index.html). To self-host, copy the woff2 files from
   fallow-site/static/fonts and add the matching @font-face rules from fallow-site/src/routes/layout.css. */


:root {
  --ink: #15241d;
  --ink-soft: #3a4740;
  --paper: #faf7f0;
  --paper-sunk: #f2eee3;
  --line: #e2dcce;
  --ghost: #b9b2a4;
  --indigo: #2d2a6e;
  --indigo-2: #1f1d52;
  --navy: #1c1b3a;
  --font-display: 'Newsreader', Georgia, 'Times New Roman', serif;
  --font-sans: 'Hanken Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, Menlo, monospace;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100svh;
  max-width: 780px;
  margin: 0 auto;
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
}

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.logo .word {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 30px;
  letter-spacing: -0.01em;
  line-height: 1;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--indigo);
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 0 40px;
}

h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 7.5vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 0 0 22px;
}
h1 .accent { color: var(--indigo); }

.lede {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 0 40px;
}

.join { display: block; }
.join label { display: block; margin-bottom: 10px; }
.row { display: flex; gap: 10px; }
.row input {
  flex: 1;
  min-width: 0;
  font: inherit;
  font-size: 17px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
}
.row input:focus { outline: 2px solid var(--indigo); outline-offset: 1px; border-color: var(--indigo); }
.row button {
  font: inherit;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 20px;
  border: 0;
  border-radius: 10px;
  background: var(--indigo);
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
  transition: background 160ms ease-out;
}
.row button:hover { background: var(--indigo-2); }
.row button:disabled { opacity: 0.6; cursor: default; }

.fine { font-size: 14px; color: var(--ink-soft); margin: 12px 0 0; }
.fine.ok { color: var(--indigo); }
.fine a { color: var(--indigo); }

.foot {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  font-size: 14px;
  color: var(--ink-soft);
}
.foot p { margin: 4px 0; }
.foot a { color: var(--indigo); text-decoration: none; border-bottom: 1px solid rgba(45, 42, 110, 0.35); }
.foot a:hover { border-bottom-color: var(--indigo); }
.sep { margin: 0 8px; color: var(--ghost); }

@media (max-width: 480px) {
  .page { padding: 20px 18px 24px; }
  .row { flex-direction: column; }
  .row button { width: 100%; }
  .lede { font-size: 17px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}
