/* ============================================================
   Amen Scroll marketing site · site/site.css
   World: The Hymnal & The Tract. Night Nave is the default ink;
   Daylight Hymnal answers prefers-color-scheme: light.

   HOW TO REUSE THIS SHEET (privacy/, terms/, support/ and any future page):
   1. Link it relative to the page:  <link rel="stylesheet" href="../site.css">
   2. Copy the header partial pattern:
        <header class="site-header">
          <a class="brand" href="../index.html">
            <picture> ... flame plate ... </picture>
            <span class="wordmark">Amen Scroll</span>
          </a>
          <nav class="site-nav"> ... </nav>
        </header>
   3. Wrap long-form text in:  <main class="wrap prose"> ... </main>
      .prose sets Literata reading type, measure, headings, lists,
      and gilt-underlined links. Nothing else is needed for a legal page.
   4. Copy the footer partial pattern:
        <footer class="site-footer">
          <div class="wrap"> ... .foot-links ... .foot-fine ... </div>
        </footer>
   5. Buttons: .btn (ivory fill primary), .btn.ghost (quiet). Gilt is
      never a button fill. Small caps labels: .smallcaps.
   Doctrines carried over from the app: Ink Ramp (every neutral is one
   of the nine named steps), Reserved Red (words of Jesus + the Amen
   flame only), Gilt Endures (accumulation and place keeping, never a
   button fill).
   ============================================================ */

/* ---------- fonts (same files the app ships) ---------- */
@font-face { font-family: 'Besley'; font-weight: 700; font-display: swap;
  src: url('assets/besley-700-normal.woff2') format('woff2'); }
@font-face { font-family: 'Besley'; font-weight: 900; font-display: swap;
  src: url('assets/besley-900-normal.woff2') format('woff2'); }
@font-face { font-family: 'Literata'; font-weight: 400; font-display: swap;
  src: url('assets/literata-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'Literata'; font-weight: 400; font-style: italic; font-display: swap;
  src: url('assets/literata-400-italic.woff2') format('woff2'); }
@font-face { font-family: 'Literata'; font-weight: 600; font-display: swap;
  src: url('assets/literata-600-normal.woff2') format('woff2'); }

/* ---------- tokens ----------
   Declarations copied verbatim from the app source of truth
   (web/styles.css :root blocks / spec/tokens.json). The app keys its
   light block on [data-theme="light"]; the site keys the same block on
   prefers-color-scheme so the page follows the OS with no JS. */
:root {
  /* Night Nave ink ramp, ink0 deepest to ink8 brightest */
  --ink0:#0B0F16; --ink1:#10151D; --ink2:#161D27; --ink3:#232C3A; --ink4:#3A4656;
  --ink5:#77869B; --ink6:#98A5B6; --ink7:#CBD2DB; --ink8:#ECE5D8;
  --red:#E4593F; --red-tint:rgba(228,89,63,.16);
  --gilt:#D2A93B; --gilt-bright:#E4C05A; --gilt-deep:#8C6D1F;
  --wash-a:rgba(63,86,154,.10); --wash-b:rgba(164,74,90,.07); --wash-c:rgba(208,153,58,.06);
  --sheet:#161D27; --scrim:rgba(6,9,14,.62);
  --serif:'Literata', Georgia, serif;
  --display:'Besley', 'Georgia', serif;
  --ui:-apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', Roboto, sans-serif;
  --verse-size:25px; --verse-lh:1.52;
  --pad:22px; --rail-w:34px;
  --snap-ease:cubic-bezier(.16,1,.3,1);
}
@media (prefers-color-scheme: light) {
  :root {
    --ink0:#F6F1E6; --ink1:#F0EADB; --ink2:#E7DFCC; --ink3:#D3C8B0; --ink4:#A99C82;
    --ink5:#6E6350; --ink6:#4E4638; --ink7:#2E2A22; --ink8:#1B1812;
    --red:#A5231B; --red-tint:rgba(165,35,27,.13);
    --gilt:#7A5E1A; --gilt-bright:#B08A2E; --gilt-deep:#5C4614;
    --wash-a:rgba(63,86,154,.05); --wash-b:rgba(164,74,90,.04); --wash-c:rgba(176,138,46,.05);
    --sheet:#FBF7ED; --scrim:rgba(38,32,22,.45);
  }
}

/* site-only derived tokens (kept out of the verbatim blocks above) */
:root {
  --shadow-card:0 18px 44px rgba(0,0,0,.30);
  --shadow-phone:0 30px 80px rgba(0,0,0,.5);
  --red-verse:var(--red); /* night: verse red equals the flame red */
}
@media (prefers-color-scheme: light) {
  :root {
    --shadow-card:0 16px 36px rgba(38,32,22,.16);
    --shadow-phone:0 30px 80px rgba(38,32,22,.28);
    --red-verse:#8E1E17; /* day verse text red, from spec/tokens.json red.dayVerseText */
  }
}

/* ---------- ground ---------- */
* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  min-height:100dvh; background:var(--ink0); color:var(--ink8);
  font-family:var(--ui); font-size:16px; line-height:1.55;
  -webkit-font-smoothing:antialiased;
}
img { max-width:100%; height:auto; display:block; }
::selection { background:var(--gilt); color:var(--ink0); }
:focus-visible { outline:2px solid var(--gilt); outline-offset:3px; border-radius:6px; }

/* Vespers Wash: the one ambient page motion, 46s, stilled under reduced motion */
body::before {
  content:''; position:fixed; inset:-20%; z-index:0; pointer-events:none;
  background:
    radial-gradient(42% 34% at 22% 26%, var(--wash-a), transparent 70%),
    radial-gradient(38% 30% at 78% 64%, var(--wash-b), transparent 70%),
    radial-gradient(30% 26% at 55% 88%, var(--wash-c), transparent 70%);
  animation:vespers 46s ease-in-out infinite alternate;
}
@keyframes vespers {
  0%   { transform:translate3d(-2%,-1%,0) scale(1);    opacity:.9; }
  50%  { transform:translate3d(2%,2%,0)   scale(1.06); opacity:1;  }
  100% { transform:translate3d(-1%,3%,0)  scale(1.02); opacity:.85;}
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  body::before { animation:none; }
  * { animation-duration:.01ms !important; animation-iteration-count:1 !important;
      transition-duration:.01ms !important; }
}

/* ---------- layout helpers ---------- */
.wrap { position:relative; z-index:1; width:100%; max-width:1040px;
  margin:0 auto; padding:0 var(--pad); }
.wrap-narrow { max-width:640px; }
section { position:relative; z-index:1; }

/* ---------- shared atoms (reusable on every page) ---------- */
.smallcaps {
  font-family:var(--display); font-weight:700; font-size:.72rem;
  letter-spacing:.22em; text-transform:uppercase; color:var(--ink6);
}
.kicker { display:block; color:var(--gilt); margin-bottom:12px; }
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  min-height:52px; padding:0 26px; border-radius:16px;
  border:1px solid var(--ink3); background:var(--ink8); color:var(--ink0);
  font-family:var(--ui); font-size:16px; font-weight:600; cursor:pointer;
  text-decoration:none;
  transition:transform .12s var(--snap-ease), opacity .12s;
}
.btn:active { transform:scale(.985); } /* The Press */
.btn.ghost {
  background:transparent; color:var(--ink7); border-color:var(--ink3);
  min-height:44px; font-weight:500;
}
.link-u { color:var(--ink7); text-decoration:underline; text-underline-offset:4px;
  text-decoration-thickness:1px; }
.sample-tag {
  display:inline-block; margin-left:8px; padding:1px 8px; border-radius:99px;
  border:1px solid var(--ink4); color:var(--ink6); font-family:var(--ui);
  font-size:11px; font-weight:500; letter-spacing:.1em; text-transform:uppercase;
  vertical-align:middle;
}
.section-title {
  font-family:var(--display); font-weight:900;
  font-size:clamp(28px, 5.4vw, 40px); line-height:1.16; color:var(--ink8);
  text-wrap:balance; margin-bottom:14px;
}
.section-sub { color:var(--ink7); font-size:17px; line-height:1.6; max-width:56ch; }

/* ---------- prose pages (terms, privacy, support, ...) ----------
   Usage: <main class="wrap prose"> <h1>...</h1> <p>...</p> </main>
   Literata for long reading, per the world's type doctrine. */
.prose { max-width:680px; padding-top:48px; padding-bottom:80px; }
.prose h1 {
  font-family:var(--display); font-weight:900; font-size:clamp(30px, 6vw, 40px);
  line-height:1.16; color:var(--ink8); margin:18px 0 10px; text-wrap:balance;
}
.prose h2 {
  font-family:var(--display); font-weight:700; font-size:22px; line-height:1.25;
  color:var(--ink8); margin:36px 0 10px;
}
.prose h3 { font-family:var(--display); font-weight:700; font-size:17px;
  color:var(--ink8); margin:26px 0 8px; }
.prose p, .prose li {
  font-family:var(--serif); font-size:17px; line-height:1.7; color:var(--ink7);
}
.prose p { margin:0 0 16px; }
.prose ul, .prose ol { margin:0 0 16px; padding-left:24px; }
.prose li { margin-bottom:8px; }
.prose a { color:var(--ink8); text-decoration:underline;
  text-decoration-color:var(--gilt); text-underline-offset:4px; }
.prose .updated { font-family:var(--ui); font-size:13px; color:var(--ink6);
  letter-spacing:.04em; }
.prose hr { border:none; border-top:1px solid var(--ink3); margin:32px 0; }

/* ---------- header partial ---------- */
.site-header {
  position:relative; z-index:2;
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  max-width:1040px; margin:0 auto; padding:18px var(--pad);
}
.brand { display:flex; align-items:center; gap:12px; text-decoration:none; min-height:44px; }
.brand img { width:34px; height:34px; }
.wordmark {
  font-family:var(--display); font-weight:700; font-size:.78rem;
  letter-spacing:.32em; text-transform:uppercase; color:var(--ink7);
}
.site-nav { display:flex; gap:4px; align-items:center; flex-wrap:wrap; }
.site-nav a {
  display:inline-flex; align-items:center; min-height:44px; padding:0 12px;
  color:var(--ink6); text-decoration:none; font-size:14px; font-weight:500;
  border-radius:99px;
}
.site-nav a:hover { color:var(--ink8); }
@media (max-width:560px) { .site-nav { display:none; } }

/* ---------- hero ---------- */
.hero { padding:40px 0 72px; text-align:center; }
.hero .mark { position:relative; width:132px; margin:0 auto; }
.hero .mark::after {
  content:''; position:absolute; inset:-30%; z-index:-1; border-radius:50%;
  background:radial-gradient(closest-side, var(--red-tint), transparent 72%);
  animation:flame-glow 5.5s ease-in-out infinite;
}
.hero .mark img { width:100%; animation:flame-breathe 5.5s ease-in-out infinite;
  transform-origin:50% 88%; }
/* when the animated plate itself is showing (dark scheme, motion allowed),
   let the print carry the motion alone */
@media (prefers-color-scheme: dark) and (prefers-reduced-motion: no-preference) {
  .hero .mark img { animation:none; }
}
@keyframes flame-breathe {
  0%, 100% { transform:scale(1) rotate(0deg); }
  40%      { transform:scale(1.035) rotate(-.6deg); }
  70%      { transform:scale(1.015) rotate(.5deg); }
}
@keyframes flame-glow { 0%, 100% { opacity:.55; } 45% { opacity:1; } }
.hero .wordmark { display:block; margin:10px 0 26px; padding-left:.32em; }
.hook-line1 { color:var(--ink7); font-size:clamp(16px, 2.6vw, 19px); margin-bottom:10px; }
.hook-line2 {
  font-family:var(--display); font-weight:900;
  font-size:clamp(34px, 7.4vw, 58px); line-height:1.12; color:var(--ink8);
  text-wrap:balance; margin:0 auto 30px; max-width:15ch;
}

/* the cold-open deck, same grammar as the app's S0 */
.deck { position:relative; height:300px; max-width:440px; margin:0 auto 30px; }
.deck-card {
  position:absolute; left:8px; right:8px; top:50%; text-align:left;
  background:var(--sheet); border:1px solid var(--ink3); border-radius:20px;
  padding:20px 20px 18px; opacity:0; pointer-events:none;
  transform:translateY(calc(-50% + 30px)) scale(.94);
  transition:transform .5s var(--snap-ease), opacity .5s var(--snap-ease);
  box-shadow:var(--shadow-card);
}
.deck-card.is-current { opacity:1; transform:translateY(-50%); z-index:3; }
.deck-card.is-next { opacity:.5; transform:translateY(calc(-50% + 18px)) scale(.95); z-index:2; }
.deck-card.is-out { opacity:0; transform:translateY(calc(-50% - 52px)) scale(.97); z-index:4; }
.vref { display:flex; align-items:center; gap:12px; margin-bottom:14px; }
.vref .smallcaps { color:var(--gilt); }
.vref .rule { flex:1; height:1px; background:var(--ink3); }
.vref .vtag { font-family:var(--display); font-weight:700; font-size:.6rem;
  letter-spacing:.18em; color:var(--ink6); border:1px solid var(--ink3);
  padding:2px 8px; border-radius:99px; }
.vtext {
  font-family:var(--serif); font-size:19px; line-height:1.55;
  color:var(--ink8); letter-spacing:.002em;
}
.vtext .red { color:var(--red-verse); } /* Reserved Red: words of Jesus only */

/* store badge slots: honest outlines, coming-soon state, never fake availability */
.badges { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; margin-bottom:14px; }
.store-badge {
  display:flex; align-items:center; gap:11px; min-height:56px; padding:8px 18px;
  border:1.5px solid var(--ink4); border-radius:12px; color:var(--ink7);
  background:transparent; text-align:left;
}
.store-badge svg { width:26px; height:26px; flex:0 0 26px; color:var(--ink7); }
.store-badge .sb-top { display:block; font-size:10.5px; letter-spacing:.08em;
  text-transform:uppercase; color:var(--ink6); }
.store-badge .sb-name { display:block; font-family:var(--ui); font-size:17px;
  font-weight:600; color:var(--ink7); line-height:1.2; }
.badges-note { font-size:13px; color:var(--ink6); }

/* ---------- demo sections ---------- */
.demo {
  display:grid; gap:36px; align-items:center;
  padding-top:64px; padding-bottom:64px;
}
@media (min-width:880px) {
  .demo { grid-template-columns:1fr 1fr; gap:56px; }
  .demo.flip .demo-copy { order:2; }
  .demo.flip .demo-art { order:1; }
}
.demo-copy { max-width:52ch; }
.demo-copy p { color:var(--ink7); font-size:16.5px; line-height:1.65; margin-top:12px; }
.demo-copy .fine { color:var(--ink6); font-size:13.5px; margin-top:16px; }
.demo-art { display:flex; justify-content:center; }

/* phone-shaped stage for the UI recreations */
.demo-phone {
  position:relative; width:min(100%, 340px); aspect-ratio:9/16.6;
  background:var(--ink1); border:1px solid var(--ink3); border-radius:36px;
  overflow:hidden; box-shadow:var(--shadow-phone); flex:0 0 auto;
}
.demo-label {
  position:absolute; top:12px; left:50%; transform:translateX(-50%); z-index:6;
  padding:2px 10px; border-radius:99px; border:1px solid var(--ink4);
  background:var(--ink1); color:var(--ink6); font-size:10.5px; font-weight:500;
  letter-spacing:.1em; text-transform:uppercase; white-space:nowrap;
}

/* feed recreation, verbatim grammar from the app */
.vplate {
  position:absolute; inset:0; display:flex; flex-direction:column; justify-content:center;
  padding:56px calc(16px + 52px) 84px calc(14px + var(--rail-w));
}
.vplate .vmeter { margin-top:16px; white-space:nowrap; font-size:12.5px; color:var(--ink6); }
.vplate .vmeter b { color:var(--ink7); font-weight:600; }
.route-rail {
  position:absolute; left:12px; top:16%; bottom:24%; width:var(--rail-w);
  display:flex; pointer-events:none;
}
.route-rail .track { position:relative; width:2.5px; border-radius:2px;
  background:var(--ink3); height:100%; margin-left:6px; }
.route-rail .prog { position:absolute; top:0; left:0; width:100%; border-radius:2px;
  background:linear-gradient(180deg, var(--gilt-bright), var(--gilt)); }
.route-rail .tick { position:absolute; left:-2px; width:6.5px; height:1.5px;
  background:var(--ink4); border-radius:1px; }
.route-rail .ring {
  position:absolute; left:50%; width:16px; height:16px; border-radius:50%;
  transform:translate(-50%,-50%); border:2px solid var(--gilt);
  background:var(--ink1); box-shadow:0 0 10px rgba(210,169,59,.35);
}
.route-rail .ring-num {
  position:absolute; left:24px; transform:translateY(-50%);
  font-family:var(--display); font-weight:700; font-size:10px; color:var(--gilt);
}
.action-rail {
  position:absolute; right:10px; bottom:78px;
  display:flex; flex-direction:column; gap:14px; align-items:center; z-index:5;
}
.act {
  display:flex; flex-direction:column; align-items:center; gap:5px;
  color:var(--ink7); font-family:var(--ui); min-width:52px;
}
.act .disc {
  width:46px; height:46px; border-radius:50%; display:grid; place-items:center;
  background:color-mix(in srgb, var(--ink2) 82%, transparent);
  border:1px solid var(--ink3); color:var(--ink7);
}
.act .lbl { font-size:11px; color:var(--ink6); }
.act.given .disc { background:var(--red-tint); border-color:var(--red); color:var(--red); }
.act svg { width:22px; height:22px; }
.demo-tabbar {
  position:absolute; left:0; right:0; bottom:0; z-index:5;
  display:flex; justify-content:space-around; align-items:flex-start;
  padding:9px 8px 12px;
  background:color-mix(in srgb, var(--ink1) 92%, transparent);
  border-top:1px solid var(--ink3); backdrop-filter:blur(10px);
}
.demo-tab {
  display:flex; flex-direction:column; align-items:center; gap:3px; min-width:56px;
  color:var(--ink6); font-size:10.5px;
}
.demo-tab svg { width:20px; height:20px; }
.demo-tab.on { color:var(--ink8); }
.demo-tab .tab-ind { width:18px; height:2px; border-radius:2px; background:transparent; }
.demo-tab.on .tab-ind { background:var(--gilt); }

/* sheet recreation (Deeper Study, Voices) inside the demo phone */
.demo-sheet {
  position:absolute; left:0; right:0; bottom:0; top:14%;
  background:var(--sheet); border-radius:22px 22px 0 0;
  border-top:1px solid var(--ink3); display:flex; flex-direction:column;
  padding-bottom:12px;
}
.grab { width:38px; height:4px; border-radius:2px; background:var(--ink4);
  margin:10px auto 6px; flex:0 0 auto; }
.sheet-title {
  text-align:center; font-family:var(--display); font-weight:700; font-size:.74rem;
  letter-spacing:.22em; text-transform:uppercase; color:var(--ink6); padding:6px 0 4px;
}
.sheet-title.study-kicker { color:var(--gilt); }
.sheet-note { text-align:center; font-size:11px; color:var(--ink6);
  letter-spacing:.08em; text-transform:uppercase; }
.sheet-body { overflow:hidden; padding:10px 16px 8px; }
.study-p { font-family:var(--serif); font-size:14.5px; line-height:1.62;
  color:var(--ink7); margin:8px 0; }
.study-verse { font-family:var(--serif); font-style:italic; color:var(--ink7); font-size:13.5px;
  border-left:1px solid color-mix(in srgb, var(--gilt) 55%, transparent);
  padding-left:12px; margin:12px 0; line-height:1.6; }
.cite-row { display:flex; flex-wrap:wrap; gap:8px; margin:12px 0 4px; }
.cite-chip {
  display:inline-flex; align-items:center; gap:7px; min-height:30px; padding:0 12px;
  border-radius:99px; border:1px solid color-mix(in srgb, var(--gilt) 45%, var(--ink3));
  background:color-mix(in srgb, var(--gilt) 10%, transparent);
  color:var(--gilt); font-size:11.5px; font-weight:600; font-family:var(--ui);
}
.vtabs { display:flex; gap:18px; justify-content:center; padding:6px 0 0;
  border-bottom:1px solid var(--ink3); }
.vtab { padding:8px 2px 10px; font-family:var(--ui); font-size:13px; font-weight:600;
  color:var(--ink6); position:relative; }
.vtab.on { color:var(--ink8); }
.vtab.on::after { content:''; position:absolute; left:0; right:0; bottom:-1px;
  height:2px; background:var(--gilt); }
.voice-row { display:flex; gap:10px; padding:12px 2px; border-bottom:1px solid var(--ink3); }
.avatar {
  width:26px; height:26px; border-radius:50%; display:grid; place-items:center;
  background:var(--ink3); color:var(--ink7); font-size:11px; font-weight:700;
  font-family:var(--display); flex:0 0 26px;
}
.voice-name { font-size:12.5px; font-weight:600; color:var(--ink7); }
.voice-meta { font-size:11.5px; color:var(--ink6); }
.voice-head { display:flex; align-items:center; gap:8px; margin-bottom:4px; flex-wrap:wrap; }
.voice-body { font-size:13px; line-height:1.5; color:var(--ink7); }
.voice-foot { display:flex; gap:14px; margin-top:6px; font-size:11.5px;
  color:var(--ink6); align-items:center; }
.shepherd {
  display:inline-flex; align-items:center; gap:4px; padding:1px 8px; border-radius:99px;
  background:color-mix(in srgb, var(--gilt) 18%, transparent); color:var(--gilt);
  font-size:10px; font-weight:700; letter-spacing:.06em;
}
.covenant { text-align:center; font-size:11.5px; color:var(--ink6);
  padding:10px 18px 2px; line-height:1.5; }

/* ---------- pricing ---------- */
.pricing { padding:72px 0; }
.plans { display:grid; gap:20px; max-width:760px; margin:30px auto 0; }
@media (min-width:700px) { .plans { grid-template-columns:1fr 1fr; } }
.plan-card {
  position:relative; border-radius:18px; border:1.5px solid var(--ink3);
  background:var(--ink2); padding:26px 24px 22px; text-align:left;
}
.plan-card.featured { border-color:var(--gilt); box-shadow:0 0 0 1px var(--gilt) inset; }
.save-badge {
  position:absolute; top:-12px; left:20px; padding:3px 11px; border-radius:99px;
  background:var(--gilt); color:var(--ink0); font-family:var(--display); font-weight:700;
  font-size:.7rem; letter-spacing:.12em;
}
@media (prefers-color-scheme: light) { .save-badge { color:#F4EEE0; } }
.plan-name { font-family:var(--display); font-weight:700; color:var(--ink8); font-size:17px; }
.plan-line { display:flex; align-items:baseline; gap:8px; margin-top:10px; flex-wrap:wrap; }
.plan-price { font-family:var(--display); font-weight:900; font-size:30px; color:var(--ink8); }
.plan-per { color:var(--ink7); font-size:14px; }
.plan-note { color:var(--ink7); font-size:14px; line-height:1.55; margin-top:10px; }
.checkline {
  display:flex; gap:8px; justify-content:center; align-items:center;
  color:var(--ink7); font-size:14px; font-weight:500; margin:26px 0 0;
}
.checkline svg { width:16px; height:16px; color:var(--gilt); flex:0 0 16px; }
.disclosure {
  max-width:640px; margin:18px auto 0; color:var(--ink6); font-size:12.5px;
  line-height:1.6; text-align:center;
}
.disclosure a { color:var(--ink6); }

/* ---------- footer partial ---------- */
.site-footer {
  position:relative; z-index:1; border-top:1px solid var(--ink3);
  margin-top:40px; padding:40px 0 48px;
  background:color-mix(in srgb, var(--ink1) 65%, transparent);
}
.foot-brand { display:flex; align-items:center; gap:12px; margin-bottom:22px; }
.foot-brand img { width:28px; height:28px; }
.foot-links {
  display:flex; flex-wrap:wrap; gap:2px 22px; margin-bottom:20px;
}
.foot-links a {
  display:inline-flex; align-items:center; min-height:44px;
  color:var(--ink6); text-decoration:none; font-size:14px;
}
.foot-links a:hover { color:var(--ink8); text-decoration:underline;
  text-underline-offset:4px; }
.foot-fine { color:var(--ink6); font-size:12.5px; line-height:1.6; max-width:70ch; }
.foot-fine a { color:var(--ink6); }
