/* countrysignal — marketing landing ("Field Atlas" direction).
 * The landing is a printed object: a field atlas / edited watch bulletin.
 * Same warm-paper tokens as the app; the product demos itself with the SAME
 * component grammar (.cbadge, .verdict, .sc) rebuilt here so the page needs
 * no dependency on the app stylesheet (which locks scroll for the map). */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400..600;1,9..144,400..600&family=Source+Sans+3:wght@400;500;600;700&family=Spline+Sans+Mono:wght@400;500&display=swap');

:root {
  --font-display: "Fraunces", Georgia, serif;
  --font-text: "Source Sans 3", system-ui, -apple-system, sans-serif;
  --font-mono: "Spline Sans Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --paper: #fbf7f0;
  --paper-raised: #fffdf8;
  --paper-sunk: #f3ece0;
  --ink: #2b2622;
  --ink-soft: #6b6259;
  --ink-faint: #9a8f82;
  --line: #e9e0d2;

  --accent: #c8623a;
  --accent-soft: #fbe3da;

  --safe: #3f7d58;  --safe-bg: #e7f0e4;  --safe-ink: #2c5c3e;
  --watch: #c8881c; --watch-bg: #fbefd3; --watch-ink: #7a5410;
  --danger: #b23a2e; --danger-bg: #fbe5e1; --danger-ink: #7e261d;

  --risk-mod: #9b8ec4; --risk-high: #6b5ca5; --risk-sev: #46336e;
  --risk-ink: #4a3d80;

  --sea: #e9eee7;
  --radius: 16px;
  --radius-sm: 10px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-card: 0 1px 2px rgba(43,38,34,.06), 0 6px 24px rgba(120,90,60,.10);
  --shadow-lift: 0 2px 4px rgba(43,38,34,.07), 0 14px 40px rgba(120,90,60,.16);
}

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }

html { scroll-behavior: smooth; scroll-padding-top: 76px; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
  font-size: 16.5px;
}

::selection { background: var(--accent-soft); color: var(--ink); }

.wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
@media (max-width: 640px) { .wrap { padding: 0 20px; } }

a { color: var(--accent); }
a:focus-visible, button:focus-visible, input:focus-visible, summary:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 3px;
}
.mono { font-family: var(--font-mono); font-size: 12.5px; font-weight: 400; letter-spacing: 0; }

/* ============ NAV — one thin sticky line, not a bar ============ */
.nav {
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(251,247,240,0.88);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.nav__in { display: flex; align-items: center; justify-content: space-between; height: 58px; gap: 18px; }
.nav__brand { font-size: 12px; font-weight: 700; letter-spacing: .14em; color: var(--accent); text-decoration: none; display: inline-flex; align-items: center; gap: 8px; }
.nav__brand svg { display: block; }
.nav__links { display: flex; align-items: center; gap: 22px; font-size: 14px; }
.nav__links a { color: var(--ink-soft); text-decoration: none; font-weight: 600; transition: color .15s var(--ease); }
.nav__links a:hover { color: var(--ink); }
.nav__links a.nav__map { color: var(--accent); }
@media (max-width: 640px) { .nav__links a:not(.nav__map) { display: none; } }

/* ============ HERO — asymmetric 7/6 split, plate bleeds right ============ */
.hero { padding: 88px 0 84px; overflow: hidden; }
@media (max-width: 900px) { .hero { padding: 48px 0 44px; } }
.hero__in { display: grid; grid-template-columns: 7fr 6fr; gap: 52px; align-items: center; }
@media (max-width: 900px) { .hero__in { grid-template-columns: 1fr; gap: 38px; } }

.kicker { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); display: inline-flex; align-items: center; gap: 8px; }
.kicker__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--safe); animation: ping 2.6s var(--ease) infinite; }
@keyframes ping { 0%,100%{box-shadow:0 0 0 0 rgba(63,125,88,0);} 12%{box-shadow:0 0 0 9px rgba(63,125,88,.25);} }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 74px);
  font-weight: 540;
  font-variation-settings: "opsz" 144;
  line-height: 1.03;
  letter-spacing: -0.022em;
  margin: 20px 0 22px;
  text-wrap: balance;
}
.hero h1 em { font-style: italic; font-weight: 470; letter-spacing: -0.01em; }
.hero__lead { font-size: 19px; line-height: 1.55; color: var(--ink-soft); max-width: 29em; }
.hero__cta { display: flex; align-items: center; gap: 16px; margin-top: 32px; flex-wrap: wrap; }
.hero__free { font-size: 13.5px; color: var(--ink-soft); }
.hero__count { font-family: var(--font-mono); font-size: 12.5px; color: var(--ink-soft); display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; }
.hero__count i { width: 7px; height: 7px; border-radius: 50%; background: var(--safe); animation: ping 2.6s var(--ease) infinite; flex: 0 0 auto; }
.hero__count b { font-weight: 500; color: var(--ink); font-variant-numeric: tabular-nums; }

.btn {
  display: inline-block; border: none; border-radius: var(--radius);
  padding: 15px 26px; font-family: var(--font-text); font-size: 16px; font-weight: 700;
  cursor: pointer; text-decoration: none; text-align: center;
  transition: transform .14s var(--ease), filter .14s var(--ease), box-shadow .14s var(--ease);
}
.btn:hover { filter: brightness(.96); transform: translateY(-1px); }
.btn:active { transform: scale(.985); }
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 2px 12px rgba(200,98,58,.28); }
.btn--primary:hover { box-shadow: 0 4px 18px rgba(200,98,58,.34); }
.btn--ghost { background: transparent; color: var(--accent); border: 1px solid var(--line); }
.btn--ghost:hover { border-color: var(--accent-soft); background: var(--paper-raised); }

/* --- the atlas plate --- */
.plate {
  position: relative;
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 10px 10px 6px;
}
@media (min-width: 1140px) { .hero .plate { margin-right: calc((100vw - 1140px) / -2 + 24px); } }
.plate__map {
  position: relative; border-radius: var(--radius-sm); overflow: hidden;
  background: var(--sea);
  box-shadow: inset 0 0 0 1px rgba(43,38,34,.05), inset 0 1px 8px rgba(120,90,60,.07);
}
.plate__map svg { display: block; width: 100%; height: auto; }
.plate__folio {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 10px 8px 4px;
  font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-faint);
}

/* capsules — same grammar as the app's .cbadge, staggered entrance */
.cbadge {
  position: absolute; display: inline-flex; align-items: center; gap: 7px;
  transform: translate(-50%, -50%);
  background: var(--paper-raised); border: 1px solid var(--line); border-radius: 999px;
  padding: 5px 12px 5px 8px; box-shadow: 0 2px 8px rgba(43,38,34,.14);
  white-space: nowrap; font-family: var(--font-text);
  opacity: 0; animation: drop .45s var(--ease) forwards;
}
.cbadge:nth-of-type(1) { animation-delay: .55s; }
.cbadge:nth-of-type(2) { animation-delay: .70s; }
.cbadge:nth-of-type(3) { animation-delay: .85s; }
.cbadge:nth-of-type(4) { animation-delay: 1.00s; }
.cbadge:nth-of-type(5) { animation-delay: 1.15s; }
@keyframes drop {
  from { opacity: 0; transform: translate(-50%, calc(-50% - 7px)); }
  to   { opacity: 1; transform: translate(-50%, -50%); }
}
.cbadge i { width: 10px; height: 10px; border-radius: 50%; flex: 0 0 auto; }
.cbadge b { font-size: 12px; font-weight: 700; color: var(--ink); }
.cbadge span { font-size: 11px; font-weight: 600; }
.cbadge--calm i { background: var(--safe); } .cbadge--calm span { color: var(--safe-ink); }
.cbadge--watch i { background: var(--watch); } .cbadge--watch span { color: var(--watch-ink); }
.cbadge--high i { background: var(--risk-high); } .cbadge--high span { color: var(--risk-high); }
.cbadge--sev { border-color: #d8cdec; }
.cbadge--sev i { background: var(--risk-sev); animation: ping 2.6s var(--ease) infinite 1.4s; }
.cbadge--sev span { color: var(--risk-sev); }
@media (max-width: 640px) {
  .cbadge { padding: 4px 9px 4px 7px; gap: 5px; }
  .cbadge b { font-size: 10.5px; } .cbadge span { display: none; }
  /* Japan sits too far east for a 390px plate — it would clip on the frame */
  .cbadge--watch { display: none; }
}

/* ============ SECTIONS — rubric rules with folio numbers ============ */
.sec { padding: 92px 0 96px; }
@media (max-width: 900px) { .sec { padding: 56px 0 60px; } }
.sec__no {
  font-family: var(--font-mono); font-size: 12.5px; color: var(--ink-faint);
  display: flex; align-items: center; gap: 18px; margin-bottom: 30px;
  white-space: nowrap;
}
.sec__no::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.sec--pricing .sec__no::after { height: 3px; border-top: 1px solid #d9cfbf; border-bottom: 1px solid #d9cfbf; background: none; }
.sec h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 520;
  font-variation-settings: "opsz" 72;
  line-height: 1.12;
  letter-spacing: -0.015em;
  max-width: 18em;
  text-wrap: balance;
}
.sec__lead { font-size: 18px; color: var(--ink-soft); margin-top: 14px; max-width: 34em; line-height: 1.55; }

/* --- proof: product sheets laid on the table --- */
.proof__grid { display: grid; grid-template-columns: 6fr 5fr; gap: 40px; align-items: start; margin-top: 48px; }
@media (max-width: 900px) { .proof__grid { grid-template-columns: 1fr; gap: 28px; } }
.sheetcard {
  background: var(--paper-raised); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-card); padding: 20px 22px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.sheetcard--tilt-l { transform: rotate(-1.2deg); }
.sheetcard--tilt-r { transform: rotate(0.9deg); }
.sheetcard:hover { transform: rotate(0deg) translateY(-3px); box-shadow: var(--shadow-lift); }
@media (max-width: 900px) { .sheetcard--tilt-l, .sheetcard--tilt-r { transform: none; } }
.sheetcard__country { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.sheetcard__name { font-family: var(--font-display); font-weight: 600; font-size: 21px; }
.sheetcard__stamp { font-family: var(--font-mono); font-size: 11px; color: var(--ink-faint); }

.verdict { font-family: var(--font-display); font-size: 16.5px; line-height: 1.45; border-radius: var(--radius-sm); padding: 12px 14px; margin-bottom: 6px; }
.verdict--avoid { background: var(--danger-bg); color: var(--danger-ink); }
.verdict--caution { background: var(--watch-bg); color: var(--watch-ink); }
.verdict--ok { background: var(--safe-bg); color: var(--safe-ink); }

.sc { display: grid; grid-template-columns: 76px 1fr; gap: 14px; align-items: start; padding: 14px 0; border-bottom: 1px solid var(--line); }
.sc:last-of-type { border-bottom: none; }
.sc__pct { font-family: var(--font-display); font-size: 27px; font-weight: 600; text-align: right; line-height: 1.1; font-variant-numeric: tabular-nums; }
.sc__pct--low { color: var(--safe); }
.sc__pct--mid { color: var(--watch); }
.sc__pct--risk { color: var(--risk-ink); }
.sc__txt { display: block; font-size: 15px; font-weight: 600; line-height: 1.35; color: var(--ink); }
.sc__meta { display: block; font-size: 12.5px; color: var(--ink-soft); margin-top: 3px; }
.sc__meta .mono { font-size: 12px; }
.sc__bar { display: block; height: 3px; background: var(--paper-sunk); border-radius: 2px; margin-top: 8px; overflow: hidden; }
.sc__bar i { display: block; height: 100%; border-radius: 2px; width: 0; transition: width .7s var(--ease); }
.sc__bar--low i { background: var(--safe); }
.sc__bar--mid i { background: var(--watch); }
.sc__bar--risk i { background: var(--risk-high); }

.evt { display: flex; align-items: center; gap: 13px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.evt:last-child { border-bottom: none; }
.evt-ico { flex: 0 0 auto; width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; font-size: 18px; background: var(--paper-sunk); }
.evt-title { font-size: 15px; font-weight: 600; }
.evt-meta { font-size: 13px; color: var(--ink-soft); margin-top: 1px; }
.evt-body { flex: 1; min-width: 0; }
.evt-level { flex: 0 0 auto; font-size: 10.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 4px 9px; border-radius: 999px; }
.lvl-red { background: var(--danger-bg); color: var(--danger-ink); }
.lvl-orange { background: var(--watch-bg); color: var(--watch-ink); }
.lvl-green { background: var(--safe-bg); color: var(--safe-ink); }

.proof__caption { font-size: 13px; color: var(--ink-soft); margin-top: 24px; }

/* --- features: editorial list with inline demos, not cards --- */
.feat { margin-top: 46px; border-top: 1px solid var(--line); }
.feat__row { display: grid; grid-template-columns: 80px 5fr 6fr; gap: 28px; padding: 34px 0; border-bottom: 1px solid var(--line); align-items: start; }
@media (max-width: 900px) { .feat__row { grid-template-columns: 48px 1fr; } .feat__body { grid-column: 2; } }
.feat__no { font-family: var(--font-mono); font-size: 13px; color: var(--ink-faint); padding-top: 5px; }
.feat__row h3 { font-family: var(--font-display); font-size: 21px; font-weight: 560; line-height: 1.25; letter-spacing: -0.01em; }
.feat__body p { font-size: 15.5px; color: var(--ink-soft); line-height: 1.55; }

/* tiny inline component demos inside feature rows */
.demo { margin-top: 16px; max-width: 420px; }
.demo__sc {
  display: flex; align-items: baseline; gap: 12px;
  background: var(--paper-raised); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 10px 14px;
}
.demo__pct { font-family: var(--font-display); font-size: 21px; font-weight: 600; color: var(--risk-ink); font-variant-numeric: tabular-nums; flex: 0 0 auto; }
.demo__txt { font-size: 13.5px; font-weight: 600; line-height: 1.3; }
.demo__txt .mono { display: block; font-weight: 400; font-size: 11.5px; color: var(--ink-soft); margin-top: 2px; }
.demo__verdicts { display: flex; flex-wrap: wrap; gap: 8px; }
.demo__v { font-family: var(--font-display); font-size: 13.5px; border-radius: 999px; padding: 6px 14px; }
.demo__v--ok { background: var(--safe-bg); color: var(--safe-ink); }
.demo__v--caution { background: var(--watch-bg); color: var(--watch-ink); }
.demo__v--avoid { background: var(--danger-bg); color: var(--danger-ink); }
.demo__quiet { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-mono); font-size: 12px; color: var(--ink-soft); border: 1px dashed var(--line); border-radius: 999px; padding: 8px 16px; }
.demo__quiet i { width: 7px; height: 7px; border-radius: 50%; background: var(--safe); flex: 0 0 auto; }

/* --- family: inverted 5/7 split, a story in one card --- */
.fam__grid { display: grid; grid-template-columns: 5fr 6fr; gap: 56px; align-items: center; margin-top: 8px; }
@media (max-width: 900px) { .fam__grid { grid-template-columns: 1fr; gap: 36px; } }
.fam__demo {
  background: var(--paper-raised); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-card); padding: 22px; transform: rotate(-0.8deg);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.fam__demo:hover { transform: rotate(0deg) translateY(-3px); box-shadow: var(--shadow-lift); }
@media (max-width: 900px) { .fam__demo { transform: none; } }
.fam__notif {
  display: flex; align-items: center; gap: 10px;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 10px 13px; margin-bottom: 16px;
  box-shadow: 0 1px 4px rgba(43,38,34,.06);
}
.fam__notif i { width: 9px; height: 9px; border-radius: 50%; background: var(--watch); flex: 0 0 auto; }
.fam__notif-txt { flex: 1; min-width: 0; font-size: 13px; font-weight: 600; line-height: 1.35; }
.fam__notif-txt .mono { display: block; font-weight: 400; font-size: 11px; color: var(--ink-faint); margin-top: 1px; }
.fam__demo-title { font-family: var(--font-display); font-weight: 600; font-size: 16px; margin-bottom: 12px; }
.fam__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.fam__chip { font-size: 13.5px; font-weight: 600; padding: 6px 12px; border-radius: 999px; background: var(--paper-sunk); }
.fam__chip--self { background: var(--accent-soft); color: var(--accent); }
.fam__chip--safe { background: var(--safe-bg); color: var(--safe-ink); }
.btn--safe { display: block; width: 100%; background: var(--safe-bg); color: var(--safe-ink); border: 1px solid var(--safe); cursor: default; }
.btn--safe:hover { filter: none; transform: none; }
.fam__note { font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-faint); margin-top: 12px; }
.fam__body p { font-size: 17px; color: var(--ink-soft); line-height: 1.6; margin-top: 16px; max-width: 30em; }
.fam__body p strong { color: var(--ink); font-weight: 600; }

/* --- moments: flat travel-log vignettes --- */
.moments { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin-top: 46px; }
@media (max-width: 900px) { .moments { grid-template-columns: 1fr; } }
.moment { background: var(--paper-raised); padding: 26px 24px 30px; }
.moment__head { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.moment__head .mono { color: var(--ink-faint); font-size: 11.5px; letter-spacing: .06em; }
.moment p { margin-top: 14px; font-size: 15.5px; line-height: 1.6; color: var(--ink); }
.moment p b { font-weight: 600; }
.moment b.t-ok { color: var(--safe-ink); }
.moment b.t-caution { color: var(--watch-ink); }

/* --- pricing: review-rate sheets --- */
.price__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 46px; max-width: 880px; }
@media (max-width: 800px) { .price__grid { grid-template-columns: 1fr; } }
.price {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; display: flex; flex-direction: column;
}
.price--main { background: var(--paper-raised); border-color: var(--accent); position: relative; box-shadow: var(--shadow-card); }
.price__tag { position: absolute; top: -11px; left: 24px; background: var(--accent-soft); color: var(--accent); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; border-radius: 999px; padding: 4px 12px; }
.price__name { font-family: var(--font-display); font-weight: 600; font-size: 22px; padding-bottom: 12px; border-bottom: 3px double #d9cfbf; }
.price__amount { font-family: var(--font-display); font-weight: 600; font-size: 36px; margin-top: 16px; font-variant-numeric: tabular-nums; }
.price__amount small { font-family: var(--font-text); font-size: 14px; font-weight: 600; color: var(--ink-soft); }
.price__alt { font-size: 13.5px; color: var(--ink-soft); margin-top: 2px; }
.price ul { list-style: none; margin: 20px 0 24px; flex: 1; }
.price li { padding: 9px 0 9px 22px; border-top: 1px solid var(--line); font-size: 15px; color: var(--ink); position: relative; }
.price li::before { content: "·"; position: absolute; left: 6px; color: var(--accent); font-weight: 700; }
.price li:first-child { border-top: none; }
.price__meta { font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-faint); margin-top: 12px; text-align: center; }
.price__doctrine { font-size: 15px; color: var(--ink-soft); margin-top: 18px; max-width: 36em; }
.price__doctrine strong { color: var(--ink); }

/* Ops pilot lead form */
.ops-lead { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ops-lead input, .ops-lead textarea {
  min-width: 0; width: 100%; font-family: var(--font-text); font-size: 15px; padding: 13px 14px;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--paper); color: var(--ink);
}
.ops-lead textarea { grid-column: 1 / -1; min-height: 82px; resize: vertical; }
.ops-lead input:focus, .ops-lead textarea:focus { outline: 2px solid var(--accent-soft); border-color: var(--accent); }
.ops-lead .btn { grid-column: 1 / -1; padding: 13px 18px; font-size: 15px; border-radius: var(--radius-sm); }
@media (max-width: 520px) { .ops-lead { grid-template-columns: 1fr; } .ops-lead textarea, .ops-lead .btn { grid-column: auto; } }
.wl__msg { font-size: 13px; color: var(--safe-ink); margin-top: 10px; min-height: 1.2em; }

/* --- FAQ: native details, journal rules --- */
.faq { margin-top: 38px; max-width: 760px; }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 2px; font-size: 17px; font-weight: 600; color: var(--ink);
  transition: color .15s var(--ease);
}
.faq summary:hover { color: var(--accent); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--font-display); font-size: 22px; font-weight: 400; color: var(--ink-faint); transition: transform .2s var(--ease); flex: 0 0 auto; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 2px 22px; font-size: 15.5px; color: var(--ink-soft); line-height: 1.6; max-width: 42em; }

/* --- final CTA: a quiet closing plate --- */
.cta-final { padding: 100px 0 108px; border-top: 1px solid var(--line); background: var(--paper-sunk); }
@media (max-width: 900px) { .cta-final { padding: 64px 0 72px; } }
.cta-final h2 {
  font-family: var(--font-display); font-size: clamp(30px, 4vw, 48px); font-weight: 530;
  font-variation-settings: "opsz" 96; letter-spacing: -0.015em; line-height: 1.08;
  max-width: 16em; text-wrap: balance;
}
.cta-final .btn { margin-top: 30px; }
.cta-final__meta { font-family: var(--font-mono); font-size: 12px; color: var(--ink-faint); margin-top: 18px; }

/* ============ FOOTER — full-ink colophon ============ */
.footer { background: var(--ink); color: var(--paper); padding: 58px 0 46px; }
.footer__brand { font-size: 12px; font-weight: 700; letter-spacing: .14em; color: var(--paper); display: inline-flex; align-items: center; gap: 8px; }
.footer__brand svg { display: block; color: #d99b82; }
.footer__tag { font-family: var(--font-display); font-size: 19px; font-weight: 480; font-style: italic; margin-top: 14px; color: #d9cfbf; }
.footer__row { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-top: 38px; flex-wrap: wrap; }
.footer__links { display: flex; gap: 20px; font-size: 13.5px; }
.footer__links a { color: #b8ab99; text-decoration: none; }
.footer__links a:hover { color: var(--paper); }
.footer__note { font-size: 11.5px; color: #b8ab99; line-height: 1.6; max-width: 46em; }
.footer__colophon {
  margin-top: 30px; padding-top: 18px; border-top: 1px solid rgba(233,224,210,.14);
  font-family: var(--font-mono); font-size: 11px; color: #a39684;
}

/* ============ MOTION — hero entrance only ============ */
.rise { opacity: 0; transform: translateY(12px); animation: rise .5s var(--ease) forwards; }
.rise--2 { animation-delay: .06s; } .rise--3 { animation-delay: .12s; } .rise--4 { animation-delay: .18s; } .rise--5 { animation-delay: .24s; }
@keyframes rise { to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  .rise, .cbadge { animation: none; opacity: 1; transform: translateY(0); }
  .cbadge { transform: translate(-50%, -50%); }
  .kicker__dot, .hero__count i, .cbadge--sev i { animation: none; }
  .sc__bar i { transition: none; }
  .sheetcard, .fam__demo, .sheetcard:hover, .fam__demo:hover { transition: none; }
  html { scroll-behavior: auto; }
}
