/* Foothold public Phase-0 apex stub — strict pre-launch (HELD).
 * The 11 kit tokens live in brand-kit.css (the canonical direction-B hexes).
 * This file paints EXCLUSIVELY via var(--brand-*) / var(--status-*) — markup and
 * this layer carry zero hex literals, with the sole exception of the one brightened
 * danger-TEXT token below (the same fnd-004 fix the dev site shipped: base #E5533D
 * measures 4.45:1 on --brand-surface, just under AA, so small status TEXT uses the
 * brightened value while borders/markers keep the base hue).
 * No pricing, no feature lists, no commercial-activity claims (Phase-0 posture).
 * a11y baseline: skip link, :focus-visible, prefers-reduced-motion, AA contrast. */
:root {
  /* Brightened danger for small status TEXT (markers/borders keep base --status-danger). */
  --status-danger-text: #EE7259;
  --font-display: 'Spectral', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
  --rad: 14px;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font-body); font-size: 17px; line-height: 1.65;
  -webkit-font-smoothing: antialiased; background: var(--brand-ground); color: var(--brand-ink);
  min-height: 100vh; display: flex; flex-direction: column; }
h1 { font-family: var(--font-display); font-weight: 600; line-height: 1.08; letter-spacing: -0.02em; }
h1 em { font-style: italic; color: var(--brand-primary); font-weight: 500; }
a { color: var(--brand-primary); text-underline-offset: 3px; }
img, svg { max-width: 100%; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* skip link */
.skip { position: absolute; left: 14px; top: -60px; z-index: 100; background: var(--brand-primary);
  color: var(--brand-primary-fg); padding: 10px 16px; border-radius: 10px; font-weight: 600;
  text-decoration: none; transition: top 0.2s ease; }
.skip:focus { top: 14px; }

:focus-visible { outline: 2px solid var(--brand-primary); outline-offset: 3px; border-radius: 6px; }

/* photo hero background — matches dev site treatment */
.hero-bg { position: fixed; inset: 0; z-index: -1; pointer-events: none; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-bg::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,19,16,.72) 0%, rgba(12,19,16,.88) 60%, rgba(12,19,16,.97) 100%); }

/* wordmark lockup — Spectral "Foot" + italic mint "hold" + fading stripe */
.wordmark-row { display: flex; align-items: center; gap: 12px; justify-content: center; padding: 52px 24px 0; }
.wordmark-row img { width: 30px; height: 30px; }
.wm { display: inline-flex; flex-direction: column; line-height: 1; }
.wm__word { font-family: var(--font-display); font-weight: 500; font-size: 1.5rem;
  letter-spacing: -0.015em; color: var(--brand-ink); }
.wm__word em { font-style: italic; color: var(--brand-primary); }
.wm__rule { height: 0.09em; width: 100%; margin-top: 0.32em; border-radius: 2px;
  background: linear-gradient(90deg, var(--brand-primary), color-mix(in srgb, var(--brand-primary) 0%, transparent)); }

main { flex: 1; display: flex; flex-direction: column; align-items: center; padding: 36px 24px 56px; }
.stub { width: min(720px, 100%); text-align: center; }
.stub h1 { font-size: clamp(2rem, 5.2vw, 3.1rem); margin: 0 0 12px; color: var(--brand-ink); }
.eyebrow { font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--brand-primary); margin: 28px 0 16px; }
.subhead { color: var(--brand-ink-soft); font-size: 1.08rem; margin: 0 auto 8px; max-width: 54ch; }

/* ---- Free & Clear stamp (signature artifact — PRIMARY on-page content) ---- */
.fc-stamp { position: relative; border-radius: var(--rad); margin: 36px auto 0; max-width: 540px;
  border: 1px solid color-mix(in srgb, var(--brand-primary) 30%, var(--brand-rule));
  background: var(--brand-surface); padding: 30px 26px 24px; overflow: hidden; text-align: center; }
.fc-stamp__grid { position: absolute; inset: 0; pointer-events: none; opacity: 0.4;
  background-image: linear-gradient(var(--brand-rule) 1px, transparent 1px),
                    linear-gradient(90deg, var(--brand-rule) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(circle at 50% 30%, var(--brand-ground), transparent 75%); }
.fc-stamp__seal { position: relative; width: 64px; height: 64px; margin: 0 auto 16px;
  border-radius: 999px; display: grid; place-items: center; border: 2px solid var(--brand-primary);
  color: var(--brand-primary); box-shadow: 0 0 0 5px color-mix(in srgb, var(--brand-primary) 18%, transparent);
  transition: transform 160ms ease, box-shadow 160ms ease; }
.fc-stamp__seal svg { width: 30px; height: 30px; }
.fc-stamp:hover .fc-stamp__seal {
  transform: translateY(-2px); box-shadow: 0 0 0 6px color-mix(in srgb, var(--brand-primary) 26%, transparent); }
.fc-stamp__rules { position: relative; display: flex; justify-content: center; gap: 18px; margin: 16px 0 14px;
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brand-ink-soft); }
.fc-stamp__rules span { position: relative; padding-top: 10px; }
.fc-stamp__rules span::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--brand-primary); opacity: 0.7; }
.fc-stamp__copy { position: relative; color: var(--brand-ink); font-size: 1.02rem; margin: 0 0 6px; font-weight: 500; }
.fc-stamp__copy b { color: var(--brand-primary); }
.fc-stamp__wordmark { position: relative; font-family: var(--font-display); font-weight: 800;
  letter-spacing: 0.04em; color: var(--brand-ink); font-size: 0.95rem; margin-top: 8px; }

/* ---- what-it-is one-liner ---- */
.whatitis { color: var(--brand-ink-soft); font-size: 0.98rem; margin: 32px auto 0; max-width: 56ch; }
.whatitis b { color: var(--brand-ink); }

/* ---- discreet contact line ---- */
.contact { display: block; margin: 28px auto 0; font-size: 0.9rem; color: var(--brand-ink-dim); letter-spacing: 0.01em; }
.contact a { color: var(--brand-ink-soft); text-decoration: none; border-bottom: 1px solid var(--brand-rule);
  padding-bottom: 2px; transition: color 0.2s ease, border-color 0.2s ease; }
.contact a:hover { color: var(--brand-primary); border-color: var(--brand-primary); }

/* ---- standing disclaimers + footer ---- */
.site-foot { padding: 44px 24px 56px; border-top: 1px solid var(--brand-rule); }
.disclaimers { color: var(--brand-ink-soft); font-size: 0.82rem; line-height: 1.7; max-width: 760px;
  margin: 0 auto; text-align: left; }
.disclaimers p { margin: 0 0 8px; }
.disclaimers b { color: var(--brand-ink); }
.foot-meta { color: var(--brand-ink-soft); font-size: 0.78rem; margin: 24px auto 0; max-width: 760px;
  text-align: center; }
.foot-meta a { color: var(--brand-ink-soft); }
.foot-meta a:hover { color: var(--brand-primary); }

@media (prefers-reduced-motion: reduce) { *, *::before, *::after { transition: none !important; animation: none !important; scroll-behavior: auto !important; } }
