/* Day91 — design tokens
   Paper is cool, not cream. Display is a grotesque, not a serif.
   Accent is ultramarine — the colour of a filing stamp, not a brand gradient. */

:root {
  --paper:      #F4F4F0;
  --ink-band:   #14161C;
  --paper-3:    #FFFFFF;
  --paper-2:    #FBFBF9;
  --ink:        #17181B;
  --muted:      #63676E;
  --faint:      #8E9299;
  --rule:       #DCDAD2;
  --rule-soft:  #E8E7E1;
  --signal:     #0F7A45;
  --signal-ink: #0B5E35;
  --pos:        #1D6B4C;
  --neg:        #9E2B25;
  --warn:       #8A6216;

  --display: "Archivo", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --body:    "Source Serif 4", ui-serif, Georgia, "Times New Roman", serif;
  --mono:    "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --gutter: 4.5rem;
  --measure: 36rem;
  --shell: 72rem;

  /* single source of truth for every sticky offset.
     change these two and the whole stack follows. */
  --mast-h: 3.4rem;
  --stick-1: var(--mast-h);
  --stick-2: calc(var(--mast-h) + 2.75rem);
}

@media (max-width: 61.99rem) {
  :root { --mast-h: 3.1rem; --shell: 66rem; }
}

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.62;
  font-synthesis-weight: none;
}

::selection { background: #BFE3CE; color: var(--ink); }

a { color: var(--signal); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--signal-ink); }

:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 3px;
  border-radius: 1px;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.021em;
  line-height: 1.1;
  margin: 0;
  text-wrap: balance;
}

/* ---------- shell + the delta gutter (signature) ---------- */

.shell {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.rail {
  position: relative;
  padding-left: 0;
}

@media (min-width: 62rem) {
  .rail { padding-left: var(--gutter); }
  .rail::before {
    content: "";
    position: absolute;
    left: calc(var(--gutter) - 1.75rem);
    top: 0.55rem;
    bottom: 0.35rem;
    width: 1px;
    background: var(--rule);
  }
  .rail > .mark {
    position: absolute;
    left: 0;
    top: 0.15rem;
    width: calc(var(--gutter) - 2.4rem);
    text-align: right;
    font-family: var(--mono);
    font-size: 0.6875rem;
    letter-spacing: 0.06em;
    color: var(--faint);
    text-transform: uppercase;
    line-height: 1.5;
  }
}

@media (max-width: 61.99rem) {
  .rail > .mark {
    display: block;
    font-family: var(--mono);
    font-size: 0.6875rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--faint);
    margin-bottom: 0.5rem;
  }
}

/* ---------- masthead ---------- */

.masthead {
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 20;
}

.masthead-in {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  min-height: var(--mast-h);
}
@media (max-width: 61.99rem) { .masthead-in { padding: 0.6rem 1.1rem; } }

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}
.wordmark span { color: var(--signal); }

.masthead nav {
  margin-left: auto;
  display: flex;
  gap: 1.35rem;
  font-family: var(--display);
  font-size: 0.8125rem;
  font-weight: 500;
}
.masthead nav a { color: var(--muted); text-decoration: none; }
.masthead nav a:hover, .masthead nav a[aria-current="page"] { color: var(--ink); }

@media (max-width: 34rem) {
  .masthead nav { gap: 0.9rem; font-size: 0.75rem; }
  .masthead-in { gap: 0.75rem; }
}

/* ---------- type utilities ---------- */

.eyebrow {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1rem;
}

.lede {
  font-size: 1.1875rem;
  line-height: 1.55;
  color: #35383E;
  max-width: var(--measure);
}

.small { font-size: 0.875rem; color: var(--muted); }
.mono  { font-family: var(--mono); font-size: 0.8125rem; }

.section { padding-top: 5.5rem; padding-bottom: 5.5rem; border-top: 1px solid var(--rule); }
@media (max-width: 61.99rem) { .section { padding-top: 3.25rem; padding-bottom: 3.25rem; } }
.section:first-of-type { border-top: 0; }
.section h2 { font-size: clamp(1.75rem, 3.9vw, 2.6rem); margin-bottom: 1.25rem; letter-spacing: -0.03em; }
.section p  { max-width: var(--measure); }

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

.hero { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.hero h1 {
  font-size: clamp(2.35rem, 5vw, 4.05rem);
  letter-spacing: -0.042em;
  line-height: 1.03;
  max-width: 15ch;
  margin-bottom: 1.5rem;
  text-wrap: balance;
}
.hero .lede { margin-bottom: 2.25rem; font-size: 1.25rem; }
@media (max-width: 61.99rem) { .hero { padding-top: 2.25rem; padding-bottom: 2.5rem; } }

.actions { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }

.btn {
  display: inline-block;
  font-family: var(--display);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.008em;
  padding: 0.85rem 1.5rem;
  border-radius: 6px;
  border: 1px solid var(--signal);
  background: var(--signal);
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: background .12s ease;
}
.btn:hover { background: var(--signal-ink); border-color: var(--signal-ink); color: #fff; }
.btn.ghost { background: transparent; color: var(--ink); border-color: var(--rule); }
.btn.ghost:hover { background: var(--paper-2); border-color: var(--muted); color: var(--ink); }
.btn[disabled] { opacity: .45; cursor: not-allowed; }

/* ---------- proof strip ---------- */

.proof {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin-top: 3rem;
}
.proof > div { background: var(--paper); padding: 1.15rem 1.25rem; }
.proof dt {
  font-family: var(--mono);
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 0.3rem;
}
.proof dd { margin: 0; font-size: 0.875rem; color: var(--muted); line-height: 1.45; }

/* ---------- cards / archive ---------- */

.stack { display: grid; gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.stack > * { background: var(--paper-2); }

.issue-row {
  display: block;
  padding: 1.5rem 1.6rem;
  text-decoration: none;
  color: inherit;
}
.issue-row:hover { background: #fff; color: inherit; }
.issue-row .meta {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.55rem;
}
.issue-row h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.issue-row p { margin: 0; font-size: 0.9375rem; color: var(--muted); max-width: 44rem; }
.issue-row.pending { opacity: .62; }

/* ---------- issue reader ---------- */

.entry { padding: 2.75rem 0; border-top: 1px solid var(--rule-soft); }
.entry:first-of-type { border-top: 0; padding-top: 1.5rem; }
.entry h2 { font-size: clamp(1.35rem, 3vw, 1.75rem); margin-bottom: 1.25rem; }
.entry p { max-width: var(--measure); margin: 0 0 1rem; }

.block-label {
  font-family: var(--mono);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-right: 0.5rem;
}
.block-label.fact { color: var(--ink); }
.block-label.read { color: var(--muted); }
.block-label.so   { color: var(--signal); }

.srcs {
  font-family: var(--mono);
  font-size: 0.75rem;
  margin-top: 1.15rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
}
.srcs a { color: var(--signal); }

.logline {
  display: grid;
  grid-template-columns: 1.25rem minmax(0,1fr);
  gap: 0.5rem;
  font-family: var(--mono);
  font-size: 0.8125rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--rule-soft);
}
.logline .s { font-weight: 700; }
.logline .s.p { color: var(--pos); }
.logline .s.m { color: var(--neg); }
.logline b { font-weight: 500; }
.logline em { font-style: normal; color: var(--muted); }

/* ---------- the check (product) ---------- */

.check {
  border: 1px solid var(--rule);
  background: var(--paper-2);
  padding: 1.5rem 1.6rem;
  margin-bottom: 1rem;
}
.check[data-state="exposed"] { border-left: 3px solid var(--neg); }
.check[data-state="watch"]   { border-left: 3px solid var(--warn); }
.check[data-state="clean"]   { border-left: 3px solid var(--pos); }
.check[data-state="idle"]    { border-left: 3px solid var(--rule); }

.check-head { display: flex; align-items: baseline; gap: 0.75rem; margin-bottom: 0.35rem; }
.check-head h3 { font-size: 1.0625rem; }
.check-no {
  font-family: var(--mono);
  font-size: 0.6875rem;
  color: var(--faint);
  letter-spacing: 0.08em;
}
.check .ask { font-size: 0.9375rem; color: var(--muted); margin: 0 0 1.1rem; max-width: 46rem; }

.fields { display: flex; flex-wrap: wrap; gap: 1rem 1.25rem; align-items: flex-end; }
.field { display: flex; flex-direction: column; gap: 0.3rem; }
.field label {
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
}
.field input {
  font-family: var(--mono);
  font-size: 0.9375rem;
  width: 8.5rem;
  padding: 0.5rem 0.6rem;
  border: 1px solid var(--rule);
  border-radius: 3px;
  background: #fff;
  color: var(--ink);
}
.field input:focus { border-color: var(--signal); }
.field .unit { font-family: var(--mono); font-size: 0.6875rem; color: var(--faint); }

.verdict {
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--rule);
  font-size: 0.9375rem;
  max-width: 46rem;
}
.verdict[hidden] { display: none; }
.verdict .tag {
  font-family: var(--mono);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.15rem 0.45rem;
  border-radius: 2px;
  margin-right: 0.6rem;
}
.tag.exposed { background: #F3DEDC; color: var(--neg); }
.tag.watch   { background: #F3EAD3; color: var(--warn); }
.tag.clean   { background: #D9E9E0; color: var(--pos); }

.verdict .delta { font-family: var(--mono); font-weight: 500; }
.precedent {
  margin-top: 0.85rem;
  font-size: 0.8125rem;
  color: var(--muted);
  border-left: 2px solid var(--rule);
  padding-left: 0.85rem;
}
.precedent a { font-family: var(--mono); font-size: 0.75rem; }

/* summary bar */
.summary {
  position: sticky;
  top: var(--stick-1);
  z-index: 10;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--signal);
  padding: 0.9rem 1.15rem;
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  align-items: baseline;
  font-family: var(--mono);
  font-size: 0.8125rem;
}
.summary strong { font-weight: 700; }
.summary .n { font-size: 1.0625rem; }

/* ---------- subscribe ---------- */

.subscribe {
  border: 1px solid var(--rule);
  background: var(--paper-2);
  padding: 2rem 1.75rem;
  max-width: 40rem;
}
.subscribe h2 { font-size: 1.5rem; margin-bottom: 0.6rem; }
.subscribe p { font-size: 0.9375rem; color: var(--muted); margin: 0 0 1.25rem; }
.beehiiv-slot iframe { width: 100%; border: 0; margin: 0; background: transparent; }

.setup-note {
  font-family: var(--mono);
  font-size: 0.75rem;
  line-height: 1.65;
  color: var(--warn);
  background: #FBF6E7;
  border: 1px dashed #D8C48A;
  padding: 0.85rem 1rem;
  border-radius: 3px;
}
.setup-note code { background: #F1E7CB; padding: 0.05rem 0.3rem; border-radius: 2px; }

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

footer.site {
  border-top: 1px solid var(--rule);
  margin-top: 4rem;
  padding: 2.5rem 0 3.5rem;
  font-size: 0.8125rem;
  color: var(--muted);
}
footer.site p { max-width: 44rem; margin: 0 0 0.6rem; }
footer.site nav { display: flex; gap: 1.25rem; flex-wrap: wrap; margin-bottom: 1.25rem; font-family: var(--display); }

/* ---------- print ---------- */

@media print {
  .masthead, .subscribe, footer.site, .actions, .no-print { display: none !important; }
  body { background: #fff; font-size: 10.5pt; }
  .summary { position: static; }
  .check { break-inside: avoid; page-break-inside: avoid; }
  .rail { padding-left: 0; }
  .rail::before { display: none; }
}

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

/* ============================================================
   ADDED — founding cohort, issue switcher, source tiers,
   pricing tiers, EDGAR routes.
   ============================================================ */

/* ---------- founding cohort ---------- */

.founding {
  border: 1px solid var(--rule);
  border-left: 3px solid var(--signal);
  background: var(--paper-2);
  padding: 1.15rem 1.3rem;
  max-width: 40rem;
}
.founding-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 0.75rem;
  font-family: var(--mono);
  font-size: 0.8125rem;
}
.founding-count strong { font-size: 1.4rem; font-weight: 700; letter-spacing: -0.02em; }
.founding-label { color: var(--muted); }
.founding-asof {
  margin-left: auto;
  font-size: 0.6875rem;
  color: var(--faint);
  letter-spacing: 0.04em;
}
.founding-track {
  height: 4px;
  background: var(--rule-soft);
  margin: 0.9rem 0 0.85rem;
  border-radius: 2px;
  overflow: hidden;
}
.founding-fill { height: 100%; background: var(--signal); }
.founding-foot {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.5;
  max-width: 34rem;
}
.founding.v-bar { border-left-width: 3px; padding: 0.95rem 1.15rem; }
.founding.v-bar .founding-foot { display: none; }
.founding-inline {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--signal);
  border: 1px solid var(--rule);
  border-radius: 2px;
  padding: 0.2rem 0.5rem;
  background: var(--paper-2);
  display: inline-block;
}
.founding.v-inline { border: 0; padding: 0; background: none; }

/* ---------- issue switcher ---------- */

.issue-switch {
  position: sticky;
  top: var(--stick-1);
  z-index: 12;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  margin: 0 -1.5rem 0;
  padding: 0.55rem 1.5rem;
}
.issue-switch-in {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--mono);
  font-size: 0.75rem;
}
.issue-switch select {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 3px;
  padding: 0.35rem 0.5rem;
  max-width: 22rem;
  flex: 0 1 auto;
  cursor: pointer;
}
.issue-switch select:focus { border-color: var(--signal); }
.issue-nav-btn {
  font-family: var(--mono);
  font-size: 0.75rem;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 3px;
  padding: 0.35rem 0.6rem;
  color: var(--ink);
  cursor: pointer;
  text-decoration: none;
  line-height: 1.4;
}
.issue-nav-btn:hover:not([disabled]) { border-color: var(--signal); color: var(--signal); }
.issue-nav-btn[disabled] { opacity: 0.3; cursor: not-allowed; }
.issue-switch .spacer { margin-left: auto; color: var(--faint); }
@media (max-width: 34rem) {
  .issue-switch .spacer { display: none; }
  .issue-switch select { flex: 1 1 auto; min-width: 0; }
}
.issue-foot-nav {
  display: flex;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin-top: 2rem;
}
.issue-foot-nav a, .issue-foot-nav span {
  flex: 1 1 0;
  background: var(--paper-2);
  padding: 1.15rem 1.3rem;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}
.issue-foot-nav a:hover { background: #fff; }
.issue-foot-nav .dir {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 0.35rem;
}
.issue-foot-nav .t { font-family: var(--display); font-weight: 600; font-size: 0.9375rem; }
.issue-foot-nav .end { opacity: 0.45; }
.issue-foot-nav .r { text-align: right; }

/* ---------- source tier badge ---------- */

.tier {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--mono);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.18rem 0.45rem;
  border-radius: 2px;
  border: 1px solid;
  vertical-align: 2px;
  white-space: nowrap;
}
.tier-a { color: var(--pos); border-color: #BFD8CB; background: #EDF5F0; }
.tier-b { color: var(--warn); border-color: #E0CE9C; background: #FAF5E7; }
.tier-c { color: var(--neg); border-color: #E3C4C2; background: #F9EEED; }
.tier-note {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--muted);
  margin: -0.4rem 0 1.1rem;
  max-width: 46rem;
}
.tier-key {
  border: 1px solid var(--rule);
  background: var(--paper-2);
  padding: 1.1rem 1.3rem;
  margin: 1.5rem 0 0;
  max-width: 44rem;
}
.tier-key dl { margin: 0.85rem 0 0; display: grid; gap: 0.6rem; }
.tier-key dt { display: inline; }
.tier-key dd {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
}

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

.tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin-top: 2rem;
}
.tier-card { background: var(--paper-2); padding: 1.75rem 1.6rem; display: flex; flex-direction: column; }
.tier-card.now { background: #fff; border-left: 3px solid var(--signal); }
.tier-card .kind {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.7rem;
}
.tier-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.tier-card .price {
  font-family: var(--mono);
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  margin: 0.85rem 0 0.2rem;
}
.tier-card .price small {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0;
  margin-top: 0.3rem;
  font-family: var(--body);
}
.tier-card ul {
  margin: 1.1rem 0 1.5rem;
  padding-left: 1.05rem;
  font-size: 0.9375rem;
  color: var(--ink);
}
.tier-card ul li { margin-bottom: 0.45rem; }
.tier-card ul li.off { color: var(--faint); }
.tier-card .foot { margin-top: auto; }
.tier-card .btn { width: 100%; text-align: center; }

.veil {
  border: 1px dashed var(--rule);
  background: var(--paper);
  padding: 1.25rem 1.35rem;
  font-family: var(--mono);
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.6;
  border-radius: 3px;
}
.veil strong { color: var(--ink); font-weight: 700; }

/* ---------- EDGAR routes (watchlist uncovered) ---------- */

.routes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  gap: 1px;
  background: var(--rule-soft);
  border: 1px solid var(--rule-soft);
  margin: 1.1rem 0 0;
}
.routes a {
  background: var(--paper-2);
  padding: 0.8rem 0.95rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  text-decoration: none;
  color: var(--signal);
  line-height: 1.45;
}
.routes a:hover { background: #fff; }
.routes a span { display: block; color: var(--faint); font-size: 0.6875rem; margin-top: 0.2rem; }
.dossier.routed { border-left: 3px solid var(--warn); }

/* ============================================================
   MOBILE STICKY STACK — hard rules.
   Only ONE sticky element may be pinned below the masthead at a
   time on narrow screens. Everything else releases.
   ============================================================ */

@media (max-width: 61.99rem) {
  /* the watchlist summary bar was the third pinned layer.
     it releases and scrolls with content. */
  .summary { position: static; top: auto; margin-bottom: 1.25rem; }

  /* the issue switcher stays pinned (it's navigation) but goes
     compact so masthead + switcher together stay under ~6.5rem */
  .issue-switch { padding: 0.4rem 1.1rem; margin: 0 -1.1rem; }
  .issue-switch select { padding: 0.3rem 0.4rem; }
  .issue-nav-btn { padding: 0.3rem 0.5rem; }
}

@media (max-width: 61.99rem) and (max-height: 44rem) {
  /* short viewports (most phones in landscape, small phones
     portrait): nothing pins except the masthead. */
  .issue-switch { position: static; margin: 0 -1.1rem; }
}

/* anchor jumps must clear whatever is pinned */
[id] { scroll-margin-top: calc(var(--stick-2) + 1rem); }

@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }

/* ============================================================
   REDESIGN — announcement bar, ink band, stat counters,
   source band, live signal card, persona grid, proof lines.
   ============================================================ */

/* ---------- announcement bar ---------- */

.topbar {
  background: var(--ink-band);
  color: #E9E8E2;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.02em;
}
.topbar-in {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0.55rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}
.topbar a { color: #fff; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.35); }
.topbar a:hover { color: #fff; border-bottom-color: #fff; }
.topbar .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #3FA96E; flex: 0 0 auto;
}
.topbar .sep { color: rgba(255,255,255,0.3); }
@media (max-width: 34rem) {
  .topbar-in { padding: 0.5rem 1.1rem; font-size: 0.6875rem; }
  .topbar .sep, .topbar .hide-sm { display: none; }
}

/* ---------- ink band (dark contrast section) ---------- */

.band {
  background: var(--ink-band);
  color: #E9E8E2;
  margin-top: 4rem;
  padding: 4.5rem 0;
}
.band .shell { max-width: var(--shell); }
.band h2 { color: #fff; font-size: clamp(1.6rem, 3.4vw, 2.3rem); letter-spacing: -0.03em; }
.band p { color: #A8ABB2; max-width: var(--measure); }
.band .eyebrow { color: #7E8391; }
.band a { color: #8FD3AE; }
.band .rule { border: 0; border-top: 1px solid rgba(255,255,255,0.12); margin: 2.5rem 0; }
@media (max-width: 61.99rem) { .band { padding: 3rem 0; margin-top: 2.5rem; } }

/* ---------- stat counters ---------- */

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  gap: 2rem 1.5rem;
  margin: 2.5rem 0 0;
}
.stat dt {
  font-family: var(--mono);
  font-size: clamp(2rem, 5vw, 3.1rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
  color: #fff;
  margin-bottom: 0.6rem;
}
.stat dd {
  margin: 0;
  font-family: var(--display);
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.35;
  color: #8E9299;
  max-width: 11rem;
}
.stats.on-paper .stat dt { color: var(--ink); }
.stats.on-paper .stat dd { color: var(--muted); }

/* ---------- source band (replaces a logo wall) ---------- */

.sourceband {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 1.5rem 0;
  margin: 0;
}
.sourceband .lbl {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
  margin: 0 0 1rem;
}
.sourceband ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.6rem;
}
.sourceband li {
  font-family: var(--mono);
  font-size: 0.8125rem;
  color: var(--ink);
  border: 1px solid var(--rule);
  background: var(--paper-2);
  border-radius: 4px;
  padding: 0.4rem 0.7rem;
}

/* ---------- live signal card (product shown, not described) ---------- */

.livecard {
  border: 1px solid var(--rule);
  border-radius: 10px;
  background: var(--paper-3);
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(23,24,27,0.04);
}
.livecard > header {
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--rule-soft);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--paper-2);
}
.livecard > header .live {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--pos);
}
.livecard > header .live i {
  width: 6px; height: 6px; border-radius: 50%; background: var(--pos); display: inline-block;
}
.livecard .body { padding: 1.35rem 1.25rem 1.5rem; }
.livecard h3 {
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  margin: 0 0 0.9rem;
  line-height: 1.25;
}
.livecard p { margin: 0 0 0.8rem; font-size: 0.9375rem; line-height: 1.55; }
.livecard p:last-of-type { margin-bottom: 0; }
.livecard .srcs { margin-top: 1.1rem; }
.livecard footer {
  padding: 0.8rem 1.25rem;
  border-top: 1px solid var(--rule-soft);
  background: var(--paper-2);
  font-family: var(--mono);
  font-size: 0.75rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}
.livecard footer a { text-decoration: none; }
.livecard footer .rot { color: var(--muted); min-width: 0; }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr);
  gap: 3.25rem;
  align-items: center;
}
@media (max-width: 68rem) { .split { grid-template-columns: minmax(0,1fr); gap: 2.25rem; } }

/* ---------- proof lines (Clay's named-customer pattern) ---------- */

.proofline {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  max-width: var(--measure);
}
.proofline li {
  border-top: 1px solid var(--rule-soft);
  padding: 0.85rem 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  display: grid;
  grid-template-columns: 7.5rem minmax(0, 1fr);
  gap: 0.25rem 1rem;
}
.proofline li strong {
  font-family: var(--mono);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--signal);
  letter-spacing: -0.01em;
  padding-top: 0.1rem;
}
.band .proofline li { border-top-color: rgba(255,255,255,0.12); }
.band .proofline li strong { color: #8FD3AE; }
.band .proofline li { color: #C9CBD1; }
@media (max-width: 34rem) {
  .proofline li { grid-template-columns: minmax(0,1fr); }
}

/* ---------- persona grid ---------- */

.personas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 2rem;
}
.persona { background: var(--paper-2); padding: 1.5rem 1.35rem; }
.persona .who {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 0.7rem;
}
.persona h3 { font-size: 1rem; margin-bottom: 0.5rem; letter-spacing: -0.015em; }
.persona p { margin: 0; font-size: 0.875rem; color: var(--muted); line-height: 1.5; max-width: none; }

/* ---------- closing CTA ---------- */

.closer { text-align: left; padding: 4.5rem 0 4rem; }
.closer h2 {
  font-size: clamp(2rem, 5.2vw, 3.4rem);
  letter-spacing: -0.038em;
  line-height: 1.05;
  max-width: 17ch;
  margin-bottom: 1.25rem;
  color: #fff;
}
.closer .actions .btn.ghost { color: #E9E8E2; border-color: rgba(255,255,255,0.3); background: transparent; }
.closer .actions .btn.ghost:hover { background: rgba(255,255,255,0.07); color: #fff; border-color: rgba(255,255,255,0.5); }

/* ---------- ticker ---------- */

.ticker {
  font-family: var(--mono);
  font-size: 0.8125rem;
  color: var(--muted);
  border-left: 2px solid var(--signal);
  padding: 0.15rem 0 0.15rem 0.85rem;
  margin: 0 0 1.75rem;
  min-height: 1.5rem;
  max-width: 40rem;
}
.ticker b { font-weight: 500; color: var(--ink); }

/* ---------- footer, fatter ---------- */

.footcols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
  gap: 2rem 1.5rem;
  margin-bottom: 2.5rem;
}
.footcols h4 {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
  font-weight: 500;
  margin-bottom: 0.85rem;
}
.footcols ul { list-style: none; margin: 0; padding: 0; }
.footcols li { margin-bottom: 0.45rem; }
.footcols a { color: var(--muted); text-decoration: none; font-family: var(--display); font-size: 0.8125rem; }
.footcols a:hover { color: var(--ink); }

/* ============================================================
   MOTION SYSTEM
   Everything degrades to a static, complete page when
   prefers-reduced-motion is set or JS fails.
   ============================================================ */

.reveal { opacity: 0; transform: translateY(14px); }
.reveal.in { opacity: 1; transform: none; transition: opacity .55s cubic-bezier(.2,.7,.3,1), transform .55s cubic-bezier(.2,.7,.3,1); }
.reveal.d1.in { transition-delay: .07s }
.reveal.d2.in { transition-delay: .14s }
.reveal.d3.in { transition-delay: .21s }
.reveal.d4.in { transition-delay: .28s }
.reveal.d5.in { transition-delay: .35s }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.in { opacity: 1 !important; transform: none !important; transition: none !important; }
  .machine * { animation: none !important; }
  .marquee-track { animation: none !important; }
}

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

.machine {
  width: 100%;
  border: 1px solid var(--rule);
  border-radius: 12px;
  background: var(--paper-3);
  overflow: hidden;
}
.machine svg { display: block; width: 100%; height: auto; }
.machine-cap {
  border-top: 1px solid var(--rule-soft);
  background: var(--paper-2);
  padding: .7rem 1.1rem;
  font-family: var(--mono);
  font-size: .6875rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  gap: .6rem;
  align-items: center;
  flex-wrap: wrap;
}
.machine-cap b { color: var(--ink); font-weight: 500; }
.machine-cap .pip { width: 6px; height: 6px; border-radius: 50%; background: var(--pos); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1 } 50% { opacity: .25 } }

.m-doc      { animation: mdoc 9s cubic-bezier(.5,0,.3,1) infinite; }
.m-scanbar  { animation: mscan 9s ease-in-out infinite; }
.m-hl       { animation: mhl 9s ease-in-out infinite; }
.m-token    { animation: mtok 9s cubic-bezier(.4,0,.4,1) infinite; }
.m-stamp    { animation: mstamp 9s cubic-bezier(.3,1.5,.5,1) infinite; }
.m-card     { animation: mcard 9s cubic-bezier(.25,1.2,.4,1) infinite; }
.m-cardline { animation: mline 9s ease-out infinite; }
.m-gear     { animation: mgear 6s linear infinite; transform-origin: center; }
.m-gear2    { animation: mgear2 6s linear infinite; transform-origin: center; }

@keyframes mdoc   { 0% { transform: translateX(-140px); opacity: 0 } 8%,34% { transform: translateX(0); opacity: 1 } 44%,100% { transform: translateX(30px); opacity: 0 } }
@keyframes mscan  { 0%,10% { transform: translateY(0); opacity: 0 } 14% { opacity: 1 } 30% { transform: translateY(74px); opacity: 1 } 34%,100% { opacity: 0 } }
@keyframes mhl    { 0%,20% { opacity: 0 } 26%,42% { opacity: 1 } 48%,100% { opacity: 0 } }
@keyframes mtok   { 0%,40% { transform: translate(0,0) scale(.6); opacity: 0 } 46% { transform: translate(0,0) scale(1); opacity: 1 } 62% { transform: translate(196px,26px) scale(1); opacity: 1 } 68%,100% { transform: translate(196px,26px) scale(.5); opacity: 0 } }
@keyframes mstamp { 0%,64% { transform: scale(2.4) rotate(-14deg); opacity: 0 } 71% { transform: scale(1) rotate(-6deg); opacity: 1 } 92% { opacity: 1; transform: scale(1) rotate(-6deg) } 100% { opacity: 0; transform: scale(1) rotate(-6deg) } }
@keyframes mcard  { 0%,58% { transform: translateY(22px); opacity: 0 } 66%,94% { transform: translateY(0); opacity: 1 } 100% { transform: translateY(-8px); opacity: 0 } }
@keyframes mline  { 0%,66% { transform: scaleX(0) } 78%,94% { transform: scaleX(1) } 100% { transform: scaleX(1) } }
@keyframes mgear  { to { transform: rotate(360deg) } }
@keyframes mgear2 { to { transform: rotate(-360deg) } }

/* ---------- marquee of source types ---------- */

.marquee { overflow: hidden; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); padding: 1rem 0; }
.marquee-track { display: flex; gap: .6rem; width: max-content; animation: slide 38s linear infinite; }
.marquee-track span {
  font-family: var(--mono); font-size: .8125rem; color: var(--ink);
  border: 1px solid var(--rule); background: var(--paper-2); border-radius: 4px;
  padding: .4rem .75rem; white-space: nowrap;
}
@keyframes slide { to { transform: translateX(-50%) } }
.marquee:hover .marquee-track { animation-play-state: paused; }

/* ---------- product grid (what you actually get) ---------- */

.getgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 2rem;
}
.get {
  background: var(--paper-2);
  padding: 1.6rem 1.5rem 1.5rem;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: background .15s ease;
}
.get:hover { background: #fff; color: inherit; }
.get.paid { background: #fff; box-shadow: inset 3px 0 0 var(--signal); }
.get .tagline {
  font-family: var(--mono); font-size: .625rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: .8rem; display: flex; gap: .5rem; align-items: center;
}
.get .tagline .pill {
  border-radius: 2px; padding: .12rem .38rem; border: 1px solid;
}
.get .tagline .free { color: var(--pos); border-color: #BFD8CB; background: #EDF5F0; }
.get .tagline .seat { color: var(--signal); border-color: #BCD9C8; background: #EAF5EE; }
.get h3 { font-size: 1.0625rem; margin-bottom: .5rem; letter-spacing: -.015em; }
.get p { margin: 0 0 1.1rem; font-size: .875rem; color: var(--muted); line-height: 1.5; max-width: none; }
.get .go { margin-top: auto; font-family: var(--display); font-size: .8125rem; font-weight: 600; color: var(--signal); }
.get:hover .go { color: var(--signal-ink); }

/* ---------- 3-step how it works ---------- */

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); gap: 2rem 2.5rem; margin-top: 2.5rem; }
.step { position: relative; padding-top: 1.9rem; }
.step .num {
  position: absolute; top: 0; left: 0;
  font-family: var(--mono); font-size: .75rem; color: var(--signal);
  border: 1px solid var(--signal); border-radius: 50%;
  width: 1.5rem; height: 1.5rem; display: grid; place-items: center;
}
.step h3 { font-size: 1rem; margin-bottom: .45rem; letter-spacing: -.015em; }
.step p { margin: 0; font-size: .875rem; color: var(--muted); line-height: 1.55; max-width: none; }
.step .demo {
  margin-top: 1rem; border: 1px solid var(--rule); border-radius: 8px; background: var(--paper-3);
  padding: .85rem .95rem; font-family: var(--mono); font-size: .75rem; line-height: 1.6; min-height: 5.6rem;
}
.step .demo .dim { color: var(--faint); }
.step .demo .hit { background: #EDF5F0; color: var(--pos); border-radius: 2px; padding: 0 .2rem; }
.step .demo .strike { text-decoration: line-through; color: var(--faint); }
.step .demo .new { color: var(--neg); }

/* type-on effect for the step demos */
.typer { border-right: 2px solid var(--signal); animation: caret 1s step-end infinite; }
@keyframes caret { 50% { border-color: transparent } }

/* ---------- tier stamp strip (replaces the long method essay) ---------- */

.stamps { display: grid; grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr)); gap: 1rem; margin-top: 1.75rem; }
.stamp {
  border: 1px solid var(--rule); border-radius: 8px; background: var(--paper-2);
  padding: 1.15rem 1.2rem;
}
.stamp .badge { display: inline-block; margin-bottom: .7rem; }
.stamp.in .badge { animation: stampin .5s cubic-bezier(.3,1.6,.5,1) both; }
.stamp.d1.in .badge { animation-delay: .1s }
.stamp.d2.in .badge { animation-delay: .2s }
@keyframes stampin { from { transform: scale(2.2) rotate(-12deg); opacity: 0 } to { transform: none; opacity: 1 } }
.stamp p { margin: 0; font-size: .875rem; color: var(--muted); line-height: 1.5; max-width: none; }

/* ---------- pricing (SaaS-standard) ---------- */

.plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr)); gap: 1.25rem; margin-top: 2.25rem; align-items: stretch; }
.plan {
  border: 1px solid var(--rule); border-radius: 12px; background: var(--paper-2);
  padding: 1.85rem 1.7rem; display: flex; flex-direction: column; position: relative;
}
.plan.featured { background: #fff; border: 2px solid var(--signal); }
.plan .flag {
  position: absolute; top: -.7rem; left: 1.7rem;
  font-family: var(--mono); font-size: .625rem; letter-spacing: .1em; text-transform: uppercase;
  background: var(--signal); color: #fff; border-radius: 3px; padding: .25rem .55rem;
}
.plan .pname { font-family: var(--display); font-weight: 700; font-size: 1.125rem; letter-spacing: -.02em; margin-bottom: .35rem; }
.plan .pfor { font-size: .8125rem; color: var(--muted); margin: 0 0 1.35rem; min-height: 2.4rem; line-height: 1.45; }
.plan .amt { font-family: var(--mono); font-size: 2.4rem; letter-spacing: -.04em; line-height: 1; }
.plan .amt sub { font-family: var(--body); font-size: .8125rem; color: var(--muted); letter-spacing: 0; vertical-align: baseline; margin-left: .3rem; }
.plan .sub2 { font-size: .8125rem; color: var(--muted); margin: .55rem 0 1.5rem; min-height: 2.2rem; line-height: 1.45; }
.plan ul { list-style: none; margin: 0 0 1.75rem; padding: 0; }
.plan li { font-size: .875rem; line-height: 1.45; margin-bottom: .6rem; padding-left: 1.5rem; position: relative; }
.plan li::before { content: "✓"; position: absolute; left: 0; color: var(--pos); font-family: var(--mono); font-size: .8125rem; }
.plan li.no { color: var(--faint); }
.plan li.no::before { content: "—"; color: var(--faint); }
.plan .cta { margin-top: auto; }
.plan .cta .btn { width: 100%; text-align: center; }

.meter { margin: .5rem 0 1.5rem; }
.meter .track { height: 5px; background: var(--rule-soft); border-radius: 3px; overflow: hidden; }
.meter .track i { display: block; height: 100%; background: var(--signal); width: 0; transition: width 1.1s cubic-bezier(.2,.8,.3,1); }
.meter .cap { font-family: var(--mono); font-size: .6875rem; color: var(--muted); margin-top: .45rem; display: flex; justify-content: space-between; }

.cmp { width: 100%; border-collapse: collapse; margin-top: 2.5rem; font-size: .9375rem; }
.cmp th, .cmp td { padding: .8rem .7rem; border-bottom: 1px solid var(--rule-soft); text-align: left; }
.cmp thead th { font-family: var(--mono); font-size: .65rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.cmp td.c { text-align: center; font-family: var(--mono); }
.cmp td.y { color: var(--pos); }
.cmp td.n { color: var(--faint); }
.cmp tbody th { font-weight: 400; font-family: var(--body); }

.faq { margin-top: 1.5rem; border-top: 1px solid var(--rule); max-width: 46rem; }
.faq details { border-bottom: 1px solid var(--rule); }
.faq summary {
  cursor: pointer; padding: 1.05rem 0; font-family: var(--display); font-weight: 600;
  font-size: .9375rem; list-style: none; display: flex; justify-content: space-between; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--mono); color: var(--signal); font-size: 1.1rem; line-height: 1; }
.faq details[open] summary::after { content: "\2013"; }
.faq details p { font-size: .9375rem; color: var(--muted); margin: 0 0 1.05rem; max-width: 44rem; line-height: 1.6; }

/* ============================================================
   TOOL-FIRST LAYOUT
   ============================================================ */

.toolgrid { display:grid; grid-template-columns:repeat(auto-fit,minmax(21rem,1fr)); gap:1.25rem; margin-top:2.25rem; }
@media (min-width:76rem) { .toolgrid { grid-template-columns:repeat(2,minmax(0,1fr)); } }
.tool {
  border:1px solid var(--rule); border-radius:12px; background:var(--paper-2);
  padding:1.7rem 1.6rem 1.5rem; display:flex; flex-direction:column;
  text-decoration:none; color:inherit; transition:border-color .15s ease, background .15s ease;
}
.tool:hover { background:#fff; border-color:var(--muted); color:inherit; }
.tool.primary { background:#fff; border:2px solid var(--signal); }
.tool .thead { display:flex; align-items:center; gap:.6rem; margin-bottom:.9rem; flex-wrap:wrap; }
.tool .tnum {
  font-family:var(--mono); font-size:.6875rem; color:var(--signal);
  border:1px solid var(--signal); border-radius:3px; padding:.15rem .4rem;
}
.tool .tkind { font-family:var(--mono); font-size:.625rem; letter-spacing:.1em; text-transform:uppercase; color:var(--muted); }
.tool .tkind.seat { color:var(--signal); }
.tool h3 { font-size:1.1875rem; letter-spacing:-.02em; margin-bottom:.5rem; }
.tool > p { margin:0 0 1.1rem; font-size:.9375rem; color:var(--muted); line-height:1.55; max-width:none; }
.tool .go { margin-top:auto; font-family:var(--display); font-size:.875rem; font-weight:600; color:var(--signal); }

/* mini live preview inside each tool card */
.tprev {
  border:1px solid var(--rule-soft); border-radius:8px; background:var(--paper-3);
  padding:.8rem .9rem; margin-bottom:1.15rem; font-family:var(--mono); font-size:.75rem;
  line-height:1.65; min-height:6.2rem; overflow:hidden;
}
.tprev .row { display:flex; justify-content:space-between; gap:.75rem; }
.tprev .dim { color:var(--faint); }
.tprev .good { color:var(--pos); }
.tprev .bad { color:var(--neg); }
.tprev .warn { color:var(--warn); }
.tprev .sig { color:var(--signal); }
.tprev .rule { border-top:1px dashed var(--rule); margin:.4rem 0; }
.tprev .barmini { height:3px; background:var(--rule-soft); border-radius:2px; margin-top:.3rem; overflow:hidden; }
.tprev .barmini i { display:block; height:100%; background:var(--signal); width:0; transition:width .9s cubic-bezier(.2,.8,.3,1); }
.tool.in .tprev .barmini i[data-w] { width:var(--w); }

/* agent status line */
.agentbar {
  display:flex; align-items:center; gap:.6rem; flex-wrap:wrap;
  font-family:var(--mono); font-size:.6875rem; letter-spacing:.06em; text-transform:uppercase;
  color:var(--muted); border:1px solid var(--rule); background:var(--paper-2);
  border-radius:999px; padding:.45rem .9rem; width:max-content; max-width:100%;
}
.agentbar .dot { width:6px; height:6px; border-radius:50%; background:var(--pos); animation:pulse 2.4s ease-in-out infinite; }
.agentbar b { color:var(--ink); font-weight:500; }


/* --- animated Day91 mark --- */
.wm-mark { display:inline-flex; line-height:0; }
.wm-mark svg { display:block; }
.mark-tile { fill: var(--signal); }
.mark-ring { fill:none; stroke:#fff; stroke-opacity:.34; stroke-width:1.5; }
.mark-wedge { fill:#fff; transform-origin:16px 16px; animation: wm-spin 9s cubic-bezier(.7,0,.2,1) infinite; }
.mark-pin { fill: var(--signal); }
.wordmark:hover .mark-wedge { animation-play-state: paused; transform: rotate(90deg); transition: transform .45s cubic-bezier(.7,0,.2,1); }
@keyframes wm-spin { 0%,55%{transform:rotate(0)} 70%,100%{transform:rotate(90deg)} }
@media (prefers-reduced-motion: reduce){ .mark-wedge{animation:none} }
