/* Self-hosted webfonts (SIL OFL licenses) — no CDN, no third-party request.
   Latin subset only; system-font fallbacks in the font stacks cover the rest. */
@font-face { font-family: 'Archivo'; font-style: normal; font-weight: 400; font-display: swap; src: url('fonts/archivo-400-latin.woff2') format('woff2'); }
@font-face { font-family: 'Archivo'; font-style: normal; font-weight: 500; font-display: swap; src: url('fonts/archivo-500-latin.woff2') format('woff2'); }
@font-face { font-family: 'Archivo'; font-style: normal; font-weight: 600; font-display: swap; src: url('fonts/archivo-600-latin.woff2') format('woff2'); }
@font-face { font-family: 'Archivo'; font-style: normal; font-weight: 700; font-display: swap; src: url('fonts/archivo-700-latin.woff2') format('woff2'); }
@font-face { font-family: 'Exo 2'; font-style: normal; font-weight: 600; font-display: swap; src: url('fonts/exo2-600-latin.woff2') format('woff2'); }
@font-face { font-family: 'Exo 2'; font-style: normal; font-weight: 700; font-display: swap; src: url('fonts/exo2-700-latin.woff2') format('woff2'); }

/* Sight landing pages — shared styles (Track W.1).
   Tokens are the design system's (design/foundations/colors.html):
   navy #00214D · ink #0A1F3D · blue #2962D8 · ok #2F7D5F · amber #B9791C
   Type: 'Exo 2' display / 'Archivo' body, loaded per-page with system fallbacks. */

:root {
  --navy: #00214d;
  --ink: #0a1f3d;
  --blue: #2962d8;
  --blue-deep: #1e4fb5;
  --blue-wash: #e8f0fd;
  --ok: #2f7d5f;
  --ok-wash: #e3f1ea;
  --amber: #b9791c;
  --amber-wash: #fbf1dc;
  --mist: #eef2f8;
  --line: #dce3ee;
  --muted: #52607a;
  --muted-soft: #8a94a6;
  --card: #ffffff;
  --page: #fbfcfe;
  --font-d: 'Exo 2', 'Trebuchet MS', 'Segoe UI', system-ui, sans-serif;
  --font-b: 'Archivo', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --radius: 14px;
  --shadow: 0 1px 2px rgba(0, 33, 77, 0.06), 0 8px 24px rgba(0, 33, 77, 0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-b);
  color: var(--ink);
  background: var(--page);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: 1060px; margin: 0 auto; padding: 0 24px; }

/* ------------------------------------------------------------------ header */

.site-head { padding: 20px 0; }
.site-head .wrap { display: flex; align-items: center; justify-content: space-between; }

.wordmark {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.wordmark .dot { color: var(--blue); }

.head-tag {
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 12px;
  background: var(--card);
}

/* -------------------------------------------------------------------- hero */

.hero { padding: 56px 0 40px; }
.hero .wrap {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 56px;
  align-items: center;
}

.kicker {
  display: inline-block;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: var(--blue-deep);
  background: var(--blue-wash);
  border-radius: 999px;
  padding: 5px 12px;
  margin-bottom: 18px;
}

h1 {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: clamp(2rem, 4.6vw, 3.1rem);
  line-height: 1.12;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.sub {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 34em;
  margin-bottom: 26px;
}

/* ------------------------------------------------------------------ signup */

.signup { display: flex; gap: 10px; flex-wrap: wrap; max-width: 460px; }

.signup input[type='email'] {
  flex: 1 1 220px;
  font: inherit;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--card);
  color: var(--ink);
  min-width: 0;
}
.signup input[type='email']:focus {
  outline: 2px solid var(--blue);
  outline-offset: 1px;
  border-color: var(--blue);
}

.signup button {
  font: inherit;
  font-weight: 600;
  padding: 13px 22px;
  border: 0;
  border-radius: 10px;
  background: var(--blue);
  color: #fff;
  cursor: pointer;
}
.signup button:hover { background: var(--blue-deep); }
.signup button:focus-visible { outline: 2px solid var(--navy); outline-offset: 2px; }

.form-note { flex-basis: 100%; font-size: 0.85rem; color: var(--muted-soft); }

.signup .success {
  flex-basis: 100%;
  background: var(--ok-wash);
  color: var(--ok);
  font-weight: 600;
  border-radius: 10px;
  padding: 13px 16px;
}

/* ------------------------------------------- product mock (the moment card) */

.mock {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}

.mock-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
}
.mock-title { font-family: var(--font-d); font-weight: 600; color: var(--navy); }
.mock-count { font-size: 0.8rem; color: var(--muted-soft); }

.moment {
  display: flex;
  gap: 12px;
  padding: 11px 0;
  border-top: 1px solid var(--mist);
  align-items: baseline;
}
.moment:first-of-type { border-top: 0; }
.moment .t {
  font-variant-numeric: tabular-nums;
  font-size: 0.85rem;
  color: var(--muted-soft);
  flex: 0 0 4.6em;
}
.moment .n { font-size: 0.95rem; }
.moment .n em { font-style: normal; color: var(--muted); }

.mock-foot {
  margin-top: 14px;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--mist);
  font-size: 0.85rem;
  color: var(--muted);
}
.mock-foot.ok { background: var(--ok-wash); color: var(--ok); }
.mock-foot.amber { background: var(--amber-wash); color: var(--amber); }

/* ---------------------------------------------------------------- sections */

section { padding: 48px 0; }
section.alt { background: var(--card); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

h2 {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  color: var(--navy);
  margin-bottom: 8px;
}
.section-sub { color: var(--muted); max-width: 44em; margin-bottom: 30px; }

.cols { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
section.alt .card { background: var(--page); }
.card .glyph { font-size: 1.5rem; margin-bottom: 10px; }
.card h3 { font-family: var(--font-d); font-size: 1.05rem; color: var(--navy); margin-bottom: 6px; }
.card p { font-size: 0.95rem; color: var(--muted); }

.steps { counter-reset: step; }
.steps .card { position: relative; padding-top: 26px; }
.steps .card::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -16px;
  left: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-d);
  font-weight: 600;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
}

/* ----------------------------------------------------------- privacy strip */

.privacy { background: var(--navy); color: #dce3ee; }
.privacy h2 { color: #fff; }
.privacy .section-sub { color: #9fb0c8; }
.privacy .card { background: #08192e; border-color: #1c3252; }
.privacy .card h3 { color: #fff; }
.privacy .card p { color: #9fb0c8; }

/* ----------------------------------------------------------------- pricing */

.tiers { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-bottom: 18px; }
.tier {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.tier.featured { border-color: var(--blue); box-shadow: var(--shadow); }
.tier h3 { font-family: var(--font-d); color: var(--navy); margin-bottom: 2px; }
.tier .price { font-family: var(--font-d); font-weight: 700; font-size: 1.5rem; color: var(--ink); margin-bottom: 10px; }
.tier .price span { font-size: 0.9rem; font-weight: 400; color: var(--muted-soft); }
.tier ul { list-style: none; }
.tier li { font-size: 0.92rem; color: var(--muted); padding: 4px 0 4px 22px; position: relative; }
.tier li::before { content: '✓'; position: absolute; left: 0; color: var(--ok); font-weight: 700; }

.pledge {
  border-left: 3px solid var(--amber);
  background: var(--amber-wash);
  border-radius: 0 10px 10px 0;
  padding: 14px 18px;
  font-size: 0.95rem;
  color: var(--ink);
  max-width: 44em;
}
.pledge strong { font-family: var(--font-d); }

/* ------------------------------------------------------------------ footer */

.cta-final { text-align: center; }
.cta-final .signup { margin: 0 auto; justify-content: center; }

.site-foot { border-top: 1px solid var(--line); padding: 28px 0 40px; }
.site-foot .wrap { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.site-foot p { font-size: 0.85rem; color: var(--muted-soft); }
.site-foot nav { display: flex; gap: 18px; }
.site-foot a { font-size: 0.85rem; color: var(--muted); text-decoration: none; }
.site-foot a:hover { text-decoration: underline; }

/* --------------------------------------------------------------- responsive */

@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 36px; }
  .cols, .tiers { grid-template-columns: 1fr; }
  .steps .card { margin-top: 10px; }
}
