/* Snapfiled — the public site at snapfiled.com.

   Its own stylesheet, on purpose. app.css is 25KB of application chrome that a
   stranger on rural LTE has no use for, and this page needs about a fifth of
   it. The palette below is deliberately the SAME custom properties app.css
   declares, with the same values, so the two faces of the product cannot drift
   apart — but the marketing site never loads app.css and app.css never loads
   this.

   No web fonts. Not "self-hosted fonts": none at all. A font file is 30–100KB
   before a single word renders, and the system stack is what the phone already
   has in memory. There is also no JavaScript on this site whatsoever.

   Order: tokens, base, layout, header, buttons, hero, sections, components,
   footer, dark, motion. */

/* ── tokens ─────────────────────────────────────────────────────────────── */

:root {
  --ink: #152430;
  --ink-2: #43596b;
  --ink-3: #6a7f8f;
  --paper: #f4f6f8;
  --surface: #ffffff;
  --surface-2: #eef2f5;
  --line: #d6dee5;
  --line-strong: #b8c5ce;

  --brand: #12304a;
  --brand-ink: #ffffff;
  --brand-soft: #e4edf5;
  --accent: #c8811a;
  --accent-soft: #fdf1dd;

  --good: #17734a;
  --good-soft: #e2f3ea;
  --attn: #9a6408;
  --attn-soft: #fdf1dd;
  --bad: #a12222;
  --bad-soft: #fbe7e7;
  --mute: #5d6c78;
  --mute-soft: #e8ecef;

  --radius: 10px;
  --radius-lg: 14px;
  --tap: 44px;
  --gap: 16px;
  --shadow: 0 1px 2px rgba(21, 36, 48, 0.08), 0 4px 14px rgba(21, 36, 48, 0.06);
  --shadow-lift: 0 2px 6px rgba(21, 36, 48, 0.1), 0 10px 28px rgba(21, 36, 48, 0.12);

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  /* A hand on paper. Falls all the way back to cursive, which every OS has. */
  --hand: "Segoe Print", "Bradley Hand", "Comic Sans MS", cursive;
  --max: 1120px;
  --max-narrow: 660px;

  /* Marketing-only. The deep field is the one piece of colour the site spends,
     and it is spent on the two moments that matter: the hero and the closing
     call to action. */
  --deep: #0f2739;
  --deep-2: #163650;
  --deep-ink: #eaf1f7;
  --deep-mute: #9db3c6;
  --deep-line: #2a4a64;
}

/* ── base ───────────────────────────────────────────────────────────────── */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body.site {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  margin: 0 0 0.5em;
  line-height: 1.18;
  font-weight: 680;
  letter-spacing: -0.018em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(1.85rem, 1.1rem + 3vw, 3.05rem);
}

.h-section {
  font-size: clamp(1.4rem, 1rem + 1.6vw, 2rem);
  margin-bottom: 0.35em;
}

h3 {
  font-size: 1.06rem;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 1em;
}

a {
  color: var(--brand);
}

code {
  font-family: var(--mono);
  font-size: 0.9em;
  background: var(--mute-soft);
  border-radius: 5px;
  padding: 1px 5px;
  word-break: break-all;
}

img,
svg {
  max-width: 100%;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--surface);
  color: var(--ink);
  padding: 12px 18px;
  z-index: 50;
}
.skip:focus {
  left: 8px;
  top: 8px;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

/* ── layout ─────────────────────────────────────────────────────────────── */

.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

.narrow-col {
  max-width: var(--max-narrow);
}

.section {
  padding: 60px 0;
  border-top: 1px solid var(--line);
}

.section-tint {
  background: var(--surface-2);
}

.lede {
  font-size: 1.08rem;
  color: var(--ink-2);
  max-width: 62ch;
  margin-bottom: 1.6em;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.grid-3 {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* ── header ─────────────────────────────────────────────────────────────── */

.mhead {
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: saturate(1.4) blur(8px);
  border-bottom: 1px solid var(--line);
}

.mhead-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 60px;
  flex-wrap: wrap;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 1.08rem;
  flex: none;
}

.wordmark-mark {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  flex: none;
  background: var(--brand);
  position: relative;
}
.wordmark-mark::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 3px;
  border: 2px solid var(--accent);
}

.mnav {
  display: flex;
  gap: 4px;
  align-items: center;
  flex: 1 1 auto;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.mnav::-webkit-scrollbar {
  display: none;
}

.mnav-link {
  padding: 8px 10px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--ink-2);
  font-size: 0.95rem;
  white-space: nowrap;
}
.mnav-link:hover {
  background: var(--mute-soft);
  color: var(--ink);
}
.mnav-link.is-here {
  color: var(--ink);
  font-weight: 640;
  box-shadow: inset 0 -2px 0 var(--accent);
}

.mhead-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: none;
}

/* ── buttons and links ──────────────────────────────────────────────────── */

.mbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--tap);
  padding: 11px 20px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font: inherit;
  font-weight: 650;
  text-decoration: none;
  line-height: 1.2;
  text-align: center;
}

.mbtn-primary {
  background: var(--brand);
  color: var(--brand-ink);
  box-shadow: var(--shadow);
}
.mbtn-primary:hover {
  background: var(--deep-2);
}

.mbtn-plain {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line-strong);
}
.mbtn-plain:hover {
  border-color: var(--brand);
}

.mbtn-sm {
  min-height: 38px;
  padding: 8px 14px;
  font-size: 0.94rem;
}

.mbtn-lg {
  min-height: 52px;
  padding: 14px 26px;
  font-size: 1.06rem;
}

.mbtn-block {
  display: flex;
  width: 100%;
}

.mlink-quiet {
  color: var(--ink-2);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 1px;
  white-space: nowrap;
}
.mlink-quiet:hover {
  color: var(--ink);
  border-color: var(--accent);
}

.mlink {
  font-weight: 640;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

/* ── hero ───────────────────────────────────────────────────────────────── */

.hero {
  background: linear-gradient(168deg, var(--deep) 0%, var(--deep-2) 100%);
  color: var(--deep-ink);
  padding: 56px 0 64px;
}

.hero-inner {
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }
}

.hero h1 {
  color: #fff;
  margin-bottom: 0.45em;
}

.hero-sub {
  font-size: 1.12rem;
  color: var(--deep-ink);
  max-width: 56ch;
}

.hero-who {
  color: var(--deep-mute);
  max-width: 52ch;
  font-size: 1rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin: 26px 0 0;
}

.hero .mbtn-primary {
  background: var(--accent);
  color: #201302;
}
.hero .mbtn-primary:hover {
  background: #dd9328;
}

.hero .mlink-quiet {
  color: var(--deep-ink);
  border-color: var(--deep-line);
}
.hero .mlink-quiet:hover {
  color: #fff;
  border-color: var(--accent);
}

/* The timeline. Deliberately typographic — no screenshot to load, and no
   screenshot to go stale the next time the review page changes. */
.hero-demo {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--deep-line);
  border-radius: var(--radius-lg);
  padding: 8px 20px 14px;
}

.tick {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.95rem;
  color: var(--deep-mute);
}
.tick:last-child {
  border-bottom: 0;
}

.tick-t {
  font-family: var(--mono);
  font-size: 0.86rem;
  color: var(--accent);
  padding-top: 2px;
}

.tick-b strong {
  color: #fff;
  display: block;
  font-weight: 640;
}

.tick-done .tick-b strong {
  color: #8fe0b4;
}

/* ── channels ───────────────────────────────────────────────────────────── */

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

.chan-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: var(--brand-soft);
  color: var(--brand);
  margin-bottom: 14px;
}

.chan p {
  color: var(--ink-2);
  font-size: 0.98rem;
}

.chan-note {
  margin: 0;
  font-size: 0.9rem;
  color: var(--mute);
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.chan-warn {
  color: var(--attn);
  background: var(--attn-soft);
  border: 1px solid color-mix(in srgb, var(--attn) 30%, transparent);
  border-radius: var(--radius);
  padding: 10px 12px;
}

/* ── steps and diagram ──────────────────────────────────────────────────── */

.diagram {
  overflow-x: auto;
  margin: 0 0 34px;
}

.diagram svg {
  display: block;
  width: 100%;
  height: auto;
  font-family: var(--font);
}

/* Below this the labels would be unreadable; the step list underneath says the
   same thing in a shape a phone is happier with. */
@media (max-width: 760px) {
  .diagram {
    display: none;
  }
}

.dg-box {
  fill: var(--surface);
  stroke: var(--line-strong);
  stroke-width: 1.2;
}
.dg-dot {
  fill: var(--brand);
}
.dg-num {
  fill: var(--brand-ink);
  font-size: 14px;
  font-weight: 700;
}
.dg-title {
  fill: var(--ink);
  font-size: 15px;
  font-weight: 660;
}
.dg-sub {
  fill: var(--ink-2);
  font-size: 12.5px;
}
.dg-when {
  fill: var(--accent);
  font-size: 11.5px;
  letter-spacing: 0.03em;
}
.dg-arrow line {
  stroke: var(--line-strong);
  stroke-width: 1.6;
}
.dg-arrow polygon {
  fill: var(--line-strong);
}

.steps {
  list-style: none;
  counter-reset: step;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.steps li {
  counter-increment: step;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.steps li::before {
  content: counter(step);
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--brand-ink);
  font-size: 0.86rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.steps p {
  margin: 0;
  color: var(--ink-2);
  font-size: 0.97rem;
}

/* ── vertical sections (before / after) ─────────────────────────────────── */

.vert-head {
  max-width: 70ch;
}

.ba {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  margin: 8px 0 30px;
}

@media (max-width: 860px) {
  .ba {
    grid-template-columns: minmax(0, 1fr);
  }
  .ba-arrow {
    transform: rotate(90deg);
    justify-self: center;
  }
}

.ba-arrow {
  color: var(--line-strong);
  display: grid;
  place-items: center;
}

.ba-h {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 10px;
}

.ba-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow);
  height: 100%;
}

/* The "before" panel is the photograph's content, so it reads like the paper:
   ruled, slightly rotated, in a hand. */
.ba-hand {
  font-family: var(--hand);
  font-size: 1.02rem;
  line-height: 1.9;
  color: var(--ink);
  background: repeating-linear-gradient(
    var(--surface),
    var(--surface) 32px,
    var(--line) 32px,
    var(--line) 33px
  );
  transform: rotate(-0.5deg);
  display: flex;
  flex-direction: column;
}

.ba-hand-head {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ba-note {
  font-size: 0.87rem;
  color: var(--mute);
  margin: 12px 2px 0;
}

.ba-fields {
  margin: 0;
}
.ba-fields > div {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.ba-fields > div:last-child {
  border-bottom: 0;
}
.ba-fields dt {
  color: var(--mute);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-top: 2px;
}
.ba-fields dd {
  margin: 0;
  color: var(--ink);
}

.ba-flag {
  margin: 14px 0 0;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: var(--attn-soft);
  color: var(--attn);
  font-size: 0.9rem;
  border: 1px solid color-mix(in srgb, var(--attn) 26%, transparent);
}

.ticks {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.ticks li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-2);
  font-size: 0.97rem;
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 8px;
  width: 11px;
  height: 6px;
  border-left: 2px solid var(--good);
  border-bottom: 2px solid var(--good);
  transform: rotate(-45deg);
}

.vert-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin: 0;
}

.vert-alt {
  background: var(--surface-2);
}

/* ── the uncertainty split ──────────────────────────────────────────────── */

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

@media (max-width: 900px) {
  .split {
    grid-template-columns: minmax(0, 1fr);
    gap: 26px;
  }
}

.split-copy p {
  color: var(--ink-2);
}
.split-copy em {
  color: var(--ink);
  font-style: normal;
  font-weight: 640;
}
.split-cta {
  margin: 0;
}

/* ── review mock ────────────────────────────────────────────────────────── */

.mock {
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
  overflow: hidden;
}

.mock-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
}

.mock-chip {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 999px;
}
.mock-chip-attn {
  background: var(--attn-soft);
  color: var(--attn);
}

.mock-meta {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--mute);
}

.mock-fields {
  margin: 0;
  padding: 4px 16px;
}

.mock-row {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}
.mock-row:last-child {
  border-bottom: 0;
}

.mock-row dt {
  color: var(--mute);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-top: 3px;
}
.mock-row dd {
  margin: 0;
  font-size: 0.96rem;
}

.mock-row.is-flagged {
  background: var(--attn-soft);
  margin: 0 -16px;
  padding: 11px 16px;
  border-left: 3px solid var(--attn);
  border-bottom-color: color-mix(in srgb, var(--attn) 25%, transparent);
}

.mock-value {
  font-weight: 660;
}

.mock-flag {
  display: inline-block;
  margin-left: 8px;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--attn);
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 1px 8px;
  vertical-align: 2px;
}

.mock-why {
  display: block;
  font-size: 0.87rem;
  color: var(--attn);
  margin-top: 3px;
}

.mock-conf {
  display: block;
  height: 5px;
  border-radius: 3px;
  background: color-mix(in srgb, var(--attn) 22%, transparent);
  margin-top: 9px;
  max-width: 190px;
}
.mock-conf i {
  display: block;
  height: 100%;
  border-radius: 3px;
  background: var(--attn);
}

.mock-foot {
  display: flex;
  gap: 10px;
  padding: 14px 16px;
  border-top: 1px solid var(--line);
  background: var(--surface-2);
}

/* Not buttons. This is a picture of an interface, and a control that does
   nothing when pressed is worse than no control at all. */
.mock-btn {
  font-size: 0.9rem;
  font-weight: 650;
  padding: 8px 14px;
  border-radius: var(--radius);
  background: var(--brand);
  color: var(--brand-ink);
}
.mock-btn-quiet {
  background: transparent;
  color: var(--ink-2);
  border: 1px solid var(--line-strong);
}

/* ── pricing ────────────────────────────────────────────────────────────── */

.plans {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
  align-items: start;
}

.plan {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.plan.is-featured {
  border-color: var(--brand);
  box-shadow: var(--shadow-lift);
}

.plan-tag {
  align-self: flex-start;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-soft);
  border-radius: 999px;
  padding: 3px 10px;
  margin-bottom: 8px;
}

.plan-name {
  margin: 0;
  font-size: 1.14rem;
}

.plan-price {
  margin: 6px 0 8px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.plan-amount {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.plan-per {
  color: var(--mute);
  font-size: 0.92rem;
}

.plan-blurb {
  color: var(--ink-2);
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.plan-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  gap: 8px;
  flex: 1 1 auto;
}
.plan-list li {
  position: relative;
  padding-left: 24px;
  font-size: 0.95rem;
  color: var(--ink-2);
}
.plan-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 7px;
  width: 10px;
  height: 5px;
  border-left: 2px solid var(--good);
  border-bottom: 2px solid var(--good);
  transform: rotate(-45deg);
}

.plan-foot {
  margin: 10px 0 0;
  font-size: 0.84rem;
  color: var(--mute);
  text-align: center;
}

.plans-note,
.plans-more {
  margin: 22px 0 0;
  color: var(--ink-2);
  font-size: 0.97rem;
}

.pgrid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 34px;
}

.pnote {
  border-top: 2px solid var(--line-strong);
  padding-top: 14px;
}
.pnote h3 {
  margin-bottom: 6px;
}
.pnote p {
  margin: 0;
  color: var(--ink-2);
  font-size: 0.95rem;
}

/* ── FAQ ────────────────────────────────────────────────────────────────── */

.qas {
  display: grid;
  gap: 10px;
}

.qa {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2px 16px;
}

.qa summary {
  cursor: pointer;
  padding: 14px 0;
  font-weight: 650;
  font-size: 1.02rem;
  list-style: none;
  display: flex;
  align-items: baseline;
  gap: 12px;
  min-height: var(--tap);
}
.qa summary::-webkit-details-marker {
  display: none;
}
.qa summary::after {
  content: "+";
  margin-left: auto;
  color: var(--mute);
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1;
}
.qa[open] summary::after {
  content: "\2212";
}

.qa-body {
  padding-bottom: 6px;
  color: var(--ink-2);
  font-size: 0.98rem;
}
.qa-body p:last-child {
  margin-bottom: 10px;
}

.qa-ask {
  margin-top: 22px;
  color: var(--mute);
  font-size: 0.95rem;
}

/* ── page head, honesty, closing band ───────────────────────────────────── */

.pagehead {
  padding: 52px 0 20px;
}
.pagehead .lede {
  margin-bottom: 0.8em;
}

#honest p {
  color: var(--ink-2);
}

.band {
  background: linear-gradient(168deg, var(--deep) 0%, var(--deep-2) 100%);
  color: var(--deep-ink);
  padding: 52px 0;
}

.band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.band h2 {
  color: #fff;
  margin-bottom: 0.3em;
  font-size: clamp(1.3rem, 1rem + 1.4vw, 1.9rem);
}

.band-sub {
  margin: 0;
  color: var(--deep-mute);
  max-width: 54ch;
}

.band .mbtn-primary {
  background: var(--accent);
  color: #201302;
}
.band .mbtn-primary:hover {
  background: #dd9328;
}

/* ── footer ─────────────────────────────────────────────────────────────── */

.mfoot {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: 44px 0 22px;
  font-size: 0.94rem;
}

.mfoot-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 34px;
}

@media (max-width: 780px) {
  .mfoot-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 26px;
  }
}

.mfoot-brand {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.mfoot-name {
  font-weight: 700;
  letter-spacing: -0.02em;
}
.mfoot-line {
  color: var(--mute);
  margin: 2px 0 0;
  max-width: 34ch;
}

.mfoot-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 22px;
}

.mfoot-col {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.mfoot-col h2 {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute);
  margin: 0 0 3px;
}

.mfoot-col a {
  color: var(--ink-2);
  text-decoration: none;
  width: fit-content;
}
.mfoot-col a:hover {
  color: var(--brand);
  text-decoration: underline;
}

.mfoot-note {
  color: var(--mute);
  font-size: 0.86rem;
}

.mfoot-base {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--mute);
  font-size: 0.85rem;
  border-top: 1px solid var(--line);
  margin-top: 30px;
  padding-top: 16px;
}

/* ── dark ───────────────────────────────────────────────────────────────── */

@media (prefers-color-scheme: dark) {
  :root {
    --ink: #e8eef3;
    --ink-2: #b8c7d3;
    --ink-3: #8fa2b0;
    --paper: #0e1519;
    --surface: #161f26;
    --surface-2: #121a20;
    --line: #2b3944;
    --line-strong: #3d4f5c;

    --brand: #6fb0e8;
    --brand-ink: #06131d;
    --brand-soft: #172c3e;
    --accent: #e8a53f;
    --accent-soft: #33280f;

    --good: #6ed7a3;
    --good-soft: #12301f;
    --attn: #e8bb63;
    --attn-soft: #2c2210;
    --bad: #f18a8a;
    --bad-soft: #35191a;
    --mute: #9aa9b5;
    --mute-soft: #212c34;

    --shadow: 0 1px 2px rgba(0, 0, 0, 0.4), 0 4px 14px rgba(0, 0, 0, 0.3);
    --shadow-lift: 0 2px 6px rgba(0, 0, 0, 0.5), 0 10px 28px rgba(0, 0, 0, 0.45);

    --deep: #0b141b;
    --deep-2: #122431;
    --deep-ink: #dce8f1;
    --deep-mute: #8ea3b4;
    --deep-line: #24404f;
  }

  /* The mark keeps its own colours in both themes — it is a logo, not text. */
  .wordmark-mark {
    background: #12304a;
  }

  /* --brand is a light blue in dark mode, so a filled button needs dark ink on
     it; the amber hero button already has its own. */
  .mbtn-primary,
  .mock-btn {
    color: #06131d;
  }

  .hero .mbtn-primary,
  .band .mbtn-primary {
    color: #1a1204;
  }
}

/* ── motion and print ───────────────────────────────────────────────────── */

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

@media print {
  .mhead,
  .band,
  .hero-cta,
  .vert-cta {
    display: none;
  }
  body.site {
    background: #fff;
    color: #000;
  }
}
