/* Partway static site. Tokens and type lifted from docs/partway-screens.html so the web
   pages and the app read as one product. Plain CSS on plain HTML, no build step. */

@font-face {
  font-family: 'Caprasimo';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/caprasimo-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/figtree-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/figtree-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/figtree-700.woff2') format('woff2');
}

:root {
  --color-bg: #f5ead8;
  --color-surface: #ebddc5;
  --color-text: #201e1d;
  --color-accent: #c67139;
  --color-accent-2: #7a8a5e;
  --color-divider: rgba(32, 30, 29, 0.16);
  --color-neutral-200: #eee7db;
  --color-neutral-300: #dcd3c4;
  --color-neutral-600: #82796a;
  --color-neutral-700: #645c50;
  --color-neutral-800: #474238;
  --color-accent-100: #fff2eb;
  --color-accent-200: #ffe1d0;
  --color-accent-700: #8c491a;
  --color-accent-800: #643312;
  --color-accent-2-200: #e1eecc;
  --color-accent-2-800: #3d472b;
  --font-heading: 'Caprasimo', system-ui, sans-serif;
  --font-body: 'Figtree', system-ui, sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --shadow-sm: 0 1px 2px rgba(46, 43, 37, 0.14);
  --shadow-md: 0 3px 10px rgba(46, 43, 37, 0.16);
}

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
}
p { margin: 0 0 14px; }
a { color: var(--color-accent-700); text-underline-offset: 3px; }
:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }
::selection { background: rgba(198, 113, 57, 0.3); }

.wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 22px;
}

/* — header — */
.top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 26px 0 0;
}
.lockup {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-heading);
  font-size: 22px;
  letter-spacing: -0.25px;
  text-decoration: none;
  color: var(--color-accent-700);
}
.lockup svg { display: block; }

/* — chips and pills — */
.chip {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--color-neutral-200);
  color: var(--color-neutral-700);
}
.chip-accent { background: var(--color-accent-200); color: var(--color-accent-800); }
.chip-olive { background: var(--color-accent-2-200); color: var(--color-accent-2-800); }

/* — hero — */
.hero { padding: 58px 0 26px; }
.hero h1 { font-size: clamp(38px, 8vw, 52px); max-width: 15ch; }
.hero .sub {
  font-size: 17px;
  max-width: 44ch;
  color: var(--color-neutral-800);
  text-wrap: pretty;
}
.hero .chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; }

/* — the route mark, drawn big: the sage line running through the pin — */
.line-art { position: relative; height: 96px; margin: 36px 0 8px; }
.line-art .track {
  position: absolute; left: 8px; right: 8px; top: 52px; height: 3px;
  border-radius: 999px; background: var(--color-accent-2); opacity: 0.6;
}
.line-art .end {
  position: absolute; top: 46px; width: 15px; height: 15px;
  border-radius: 999px; background: var(--color-text);
}
.line-art .pin {
  position: absolute;
  transform: translateX(-50%);
}
.line-art .pin-big {
  top: 11.5px; height: 42px; width: 38px;
  color: var(--color-accent);
  filter: drop-shadow(0 1px 2px rgba(46, 43, 37, 0.25));
}
.line-art .pin-small {
  top: 23.5px; height: 30px; width: 27px;
  color: var(--color-accent-2);
}
.line-art .hint {
  position: absolute; top: 62px; transform: translateX(-50%);
  font-family: var(--font-heading); font-size: 13px;
  color: var(--color-accent-700); white-space: nowrap;
}
.line-art .lab {
  position: absolute; top: 76px; font-size: 10.5px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--color-neutral-600);
}

/* — sections — */
section { padding: 30px 0; }
.kick {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 700; color: var(--color-accent); margin-bottom: 12px;
}
h2 { font-size: 30px; }

.steps { display: grid; gap: 12px; margin-top: 18px; }
.step {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 18px 20px;
}
.step .n {
  width: 32px; height: 32px; flex: none; border-radius: 999px;
  background: var(--color-accent); color: var(--color-bg);
  font-family: var(--font-heading); font-size: 15px;
  display: flex; align-items: center; justify-content: center;
}
.step h3 { font-size: 19px; margin-bottom: 4px; }
.step p { margin: 0; font-size: 14px; color: var(--color-neutral-800); }

.labels { display: flex; gap: 8px; flex-wrap: wrap; margin: 14px 0 10px; }

.pane {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
  box-shadow: var(--shadow-sm);
}
.pane-ink {
  background: var(--color-text);
  color: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
}
.pane-ink h2 { color: var(--color-bg); }
.pane-ink p { opacity: 0.85; }

.privacy-list { margin: 0; padding: 0; list-style: none; }
.privacy-list li {
  padding: 10px 0; font-size: 15px;
  border-bottom: 1px solid var(--color-divider);
}
.privacy-list li:last-child { border-bottom: 0; }

/* — footer — */
footer {
  margin-top: 40px;
  padding: 26px 0 40px;
  border-top: 1px solid var(--color-divider);
  font-size: 12.5px;
  color: var(--color-neutral-600);
}
footer p { margin: 0 0 6px; }

/* — inner pages — */
.page { padding: 40px 0 10px; }
.page h1 { font-size: clamp(32px, 7vw, 42px); }
.page h2 { font-size: 22px; margin-top: 28px; }
.updated { font-size: 13px; color: var(--color-neutral-600); }
