/* =====================================================================
   KarigarBook — explainer site
   A KARYA studio build
   Palette built around the accent #6D28D9 (violet). Signature motif:
   the "running stitch" seam — a dashed seam line borrowed from the
   tailoring/embroidery world — plus a real payout slip / ledger.
   System fonts only; hierarchy via weight, size and tracking.
   ===================================================================== */

:root {
  --accent: #6D28D9;        /* violet — the one accent */
  --accent-deep: #5B21B6;   /* pressed / hover */
  --accent-soft: #EDE7F6;   /* pale violet wash (muted tint) */
  --ink: #1A1523;           /* deep near-black, faint violet cast */
  --ink-2: #4A4356;         /* secondary text */
  --muted: #8B7FA8;         /* lavender-grey captions */
  --paper: #F7F5F0;         /* off-white paper background */
  --paper-2: #FFFFFF;       /* card surface */
  --line: #E5E0D8;          /* hairlines on paper */
  --gold: #C8961E;          /* gold-thread accent, used sparingly */
  --pos: #1E7A54;           /* payout / positive green */

  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
          "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", "Menlo", "Consolas",
          "Liberation Mono", monospace;

  --wrap: 1120px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 1px 2px rgba(26,21,35,.05), 0 18px 44px -20px rgba(26,21,35,.22);
  --shadow-soft: 0 1px 2px rgba(26,21,35,.04), 0 10px 30px -18px rgba(26,21,35,.20);
}

/* ---------- reset-ish ---------- */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
h1, h2, h3, h4, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
b { font-weight: 700; }

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

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--accent); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

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

/* ---------- shared type ---------- */
.eyebrow {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.eyebrow--center { text-align: center; }
.eyebrow--on-dark { color: #C4B5FD; }

.section { padding: clamp(64px, 9vw, 116px) 0; }
.section__title {
  font-size: clamp(1.8rem, 3.6vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.1;
  text-align: center;
  max-width: 18ch;
  margin-inline: auto;
}
.section__lede {
  font-size: 1.08rem;
  color: var(--ink-2);
  max-width: 62ch;
  margin-top: 18px;
}
.center { margin-inline: auto; text-align: center; }

/* ---------- the seam signature (running stitch) ---------- */
.seam {
  height: 0;
  border-top: 2px dashed var(--accent);
  opacity: .35;
  max-width: var(--wrap);
  margin: 0 auto;
  width: calc(100% - 48px);
}
.seam--foot { opacity: .5; border-color: #7C6BAE; }

/* =====================================================================
   NAV
   ===================================================================== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,245,240,.82);
  backdrop-filter: saturate(1.4) blur(10px);
  -webkit-backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.nav.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 22px -18px rgba(26,21,35,.6);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 66px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -.01em; }
.brand__mark { display: inline-flex; }
.brand__word { font-size: 1.12rem; }
.nav__links { display: flex; align-items: center; gap: 26px; }
.nav__links a { font-size: .95rem; font-weight: 600; color: var(--ink-2); transition: color .18s ease; }
.nav__links a:hover { color: var(--ink); }
.nav__cta {
  background: var(--accent); color: #fff !important;
  padding: 9px 18px; border-radius: 999px;
  box-shadow: var(--shadow-soft);
  transition: background .18s ease, transform .18s ease;
}
.nav__cta:hover { background: var(--accent-deep); transform: translateY(-1px); }
@media (max-width: 760px) {
  .nav__links a:not(.nav__cta) { display: none; }
}

/* =====================================================================
   BUTTONS
   ===================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem;
  padding: 14px 26px; border-radius: 999px;
  cursor: pointer; border: 1.5px solid transparent;
  transition: transform .16s ease, background .16s ease, box-shadow .16s ease, color .16s ease;
  white-space: nowrap;
}
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 10px 28px -12px rgba(109,40,217,.6); }
.btn--primary:hover { background: var(--accent-deep); transform: translateY(-2px); box-shadow: 0 16px 34px -14px rgba(109,40,217,.65); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn--block { width: 100%; }
.btn.is-pressed { transform: scale(.97); }

/* =====================================================================
   1. HERO
   ===================================================================== */
.hero { padding-top: clamp(48px, 6vw, 84px); padding-bottom: 0; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr .95fr;
  gap: clamp(32px, 5vw, 68px);
  align-items: center;
  padding-bottom: clamp(56px, 8vw, 96px);
}
.hero__title {
  font-size: clamp(2.6rem, 6.6vw, 4.6rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.035em;
  margin-bottom: 22px;
}
.hero__title .hl { position: relative; color: var(--accent); }
.hero__title .hl::after {
  /* running-stitch underline */
  content: ""; position: absolute; left: 2px; right: 2px; bottom: .06em;
  height: 0; border-top: 3px dashed var(--accent); opacity: .5;
}
.hero__lede {
  font-size: 1.16rem;
  color: var(--ink-2);
  max-width: 46ch;
  margin-bottom: 30px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 18px; }
.hero__note { font-size: .92rem; color: var(--muted); }

/* payout slip — hero signature */
.hero__slip { display: flex; justify-content: center; }
.slip {
  width: 100%; max-width: 400px;
  background: var(--paper-2);
  border-radius: var(--radius);
  padding: 22px 22px 18px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  position: relative;
}
.slip::before {
  /* stitched inner frame */
  content: ""; position: absolute; inset: 8px;
  border: 1.5px dashed var(--accent); opacity: .22; border-radius: 11px;
  pointer-events: none;
}
.slip__head {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding-bottom: 14px; margin-bottom: 4px;
  border-bottom: 1px solid var(--line);
}
.slip__name { font-weight: 800; font-size: 1.12rem; letter-spacing: -.01em; }
.slip__meta { font-size: .82rem; color: var(--muted); margin-top: 2px; }
.slip__week {
  font-size: .74rem; font-weight: 700; letter-spacing: .04em;
  color: var(--accent); background: var(--accent-soft);
  padding: 4px 10px; border-radius: 999px; white-space: nowrap;
}
.slip__lines { margin: 12px 0 4px; }
.slip__row {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "work amt" "calc amt";
  gap: 0 12px;
  padding: 10px 2px;
  border-bottom: 1px dashed var(--line);
  align-items: center;
}
.slip__work { grid-area: work; font-weight: 600; font-size: .95rem; }
.slip__calc { grid-area: calc; font-family: var(--mono); font-size: .78rem; color: var(--muted); }
.slip__calc b { color: var(--ink-2); font-weight: 600; }
.slip__amt {
  grid-area: amt; align-self: center;
  font-family: var(--mono); font-weight: 600; font-size: 1rem;
  text-align: right; white-space: nowrap; font-variant-numeric: tabular-nums;
}
.slip__amt--neg { color: var(--muted); }
.slip__row--sub .slip__work { color: var(--muted); font-weight: 600; }
.slip__row.is-live { animation: slipFlash .6s ease; }
@keyframes slipFlash {
  0% { background: var(--accent-soft); }
  100% { background: transparent; }
}
.slip__total {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 14px; padding-top: 14px;
  border-top: 2px solid var(--ink);
}
.slip__total > span:first-child { font-weight: 700; }
.slip__grand {
  font-family: var(--mono); font-weight: 700; font-size: 1.5rem;
  color: var(--accent); font-variant-numeric: tabular-nums;
}
.slip__hint { font-size: .72rem; color: var(--muted); text-align: right; margin-top: 8px; }

@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__slip { order: 2; margin-top: 8px; }
  .hero__copy { order: 1; }
}

/* =====================================================================
   2. PROBLEM
   ===================================================================== */
.problem { background: var(--paper); }
.problem .section__lede { margin-bottom: 48px; }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pain {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-soft);
}
.pain__tag {
  display: inline-block;
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 3px 11px; margin-bottom: 16px;
}
.pain h3 { font-size: 1.24rem; font-weight: 800; letter-spacing: -.01em; margin-bottom: 8px; }
.pain p { color: var(--ink-2); font-size: .98rem; }
.problem__punch {
  margin-top: 44px; text-align: center;
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  font-weight: 700; letter-spacing: -.01em;
  max-width: 40ch; margin-inline: auto;
  color: var(--ink);
}
@media (max-width: 820px) { .pain-grid { grid-template-columns: 1fr; } }

/* =====================================================================
   3. INSIGHT  (dark violet band — the one dark moment)
   ===================================================================== */
.insight { background: var(--ink); color: var(--paper); }
.insight__wrap { text-align: center; max-width: 900px; }
.insight__quote {
  font-size: clamp(1.9rem, 4.6vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.12;
}
.insight__accent { color: #C4B5FD; }
.insight__body {
  margin-top: 30px;
  font-size: 1.16rem;
  color: #D9D2E4;
  max-width: 58ch; margin-inline: auto;
}
.insight__body em { color: #fff; font-style: normal; font-weight: 600;
  border-bottom: 2px dashed rgba(196,181,253,.6); }

/* =====================================================================
   4. HOW IT WORKS
   ===================================================================== */
.how .section__title { margin-bottom: 52px; }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: none;
}
.step {
  position: relative;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 22px 24px;
  box-shadow: var(--shadow-soft);
}
.step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--accent-soft); color: var(--accent);
  font-family: var(--mono); font-weight: 700; font-size: 1.15rem;
  margin-bottom: 16px;
}
.step h3 { font-size: 1.1rem; font-weight: 800; letter-spacing: -.01em; margin-bottom: 7px; }
.step p { font-size: .95rem; color: var(--ink-2); }
/* connective stitch between steps on wide screens */
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 47px; right: -12px; width: 24px; height: 0;
  border-top: 2px dashed var(--accent); opacity: .4;
}
@media (max-width: 940px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2)::after, .step:not(:last-child)::after { display: none; }
}
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

/* =====================================================================
   5. FEATURES
   ===================================================================== */
.features { background: linear-gradient(180deg, var(--paper) 0%, #F1EEE7 100%); }
.features .section__title { margin-bottom: 52px; }
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feat {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.feat:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #D8CEEA; }
.feat__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--accent-soft); color: var(--accent);
  margin-bottom: 18px;
}
.feat h3 { font-size: 1.16rem; font-weight: 800; letter-spacing: -.01em; margin-bottom: 8px; }
.feat p { font-size: .97rem; color: var(--ink-2); }
@media (max-width: 900px) { .feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .feat-grid { grid-template-columns: 1fr; } }

/* =====================================================================
   6. PRODUCT PREVIEW  (fake dashboard)
   ===================================================================== */
.preview .section__lede { margin-bottom: 46px; }
.mock {
  border-radius: var(--radius);
  background: var(--paper-2);
  border: 1px solid var(--line);
  box-shadow: 0 30px 70px -30px rgba(26,21,35,.4);
  overflow: hidden;
  max-width: 1000px; margin-inline: auto;
}
.mock__chrome {
  display: flex; align-items: center; gap: 8px;
  background: var(--ink); padding: 12px 16px;
}
.mock__dot { width: 11px; height: 11px; border-radius: 50%; background: #4A4356; }
.mock__dot:first-child { background: #E06C75; }
.mock__dot:nth-child(2) { background: #E5C07B; }
.mock__dot:nth-child(3) { background: #98C379; }
.mock__url {
  margin-left: 12px; font-family: var(--mono); font-size: .78rem;
  color: #B9B1C7; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.mock__body { padding: clamp(18px, 3vw, 30px); background: #FBFAF7; }
.mock__topbar {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  margin-bottom: 22px;
}
.mock__hello { font-weight: 800; font-size: 1.25rem; letter-spacing: -.01em; }
.mock__sub { font-size: .86rem; color: var(--muted); margin-top: 2px; }
.mock__chip {
  font-size: .76rem; font-weight: 700; color: var(--accent);
  background: var(--accent-soft); padding: 6px 14px; border-radius: 999px; white-space: nowrap;
}
.mock__stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 18px;
}
.stat {
  background: var(--paper-2); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 16px 18px;
}
.stat__label { font-size: .8rem; color: var(--muted); font-weight: 600; }
.stat__big {
  font-family: var(--mono); font-weight: 700; font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  letter-spacing: -.02em; margin: 6px 0 4px; font-variant-numeric: tabular-nums;
}
.stat__delta { font-size: .78rem; color: var(--muted); font-weight: 600; }
.stat__delta--up { color: var(--pos); }

.mock__cols { display: grid; grid-template-columns: 1.1fr 1fr; gap: 14px; }
.panel {
  background: var(--paper-2); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 16px 18px;
}
.panel__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.panel__head h4 { font-size: .98rem; font-weight: 800; }
.panel__link { font-size: .76rem; font-weight: 700; color: var(--accent); }

.rank__row {
  display: grid;
  grid-template-columns: 20px 1fr 64px auto;
  align-items: center; gap: 10px;
  padding: 9px 0; border-bottom: 1px dashed var(--line);
}
.rank__row:last-child { border-bottom: 0; }
.rank__pos { font-family: var(--mono); font-weight: 700; color: var(--muted); font-size: .9rem; }
.rank__who { display: flex; flex-direction: column; min-width: 0; }
.rank__who b { font-size: .92rem; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rank__who em { font-style: normal; font-size: .74rem; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rank__bar { height: 7px; border-radius: 999px; background: var(--accent-soft); overflow: hidden; }
.rank__bar i { display: block; height: 100%; background: var(--accent); border-radius: 999px; }
.rank__val { font-family: var(--mono); font-weight: 700; font-size: .88rem; text-align: right; white-space: nowrap; }

.feed__row {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "who amt" "what amt";
  gap: 0 10px; align-items: center;
  padding: 9px 0; border-bottom: 1px dashed var(--line);
}
.feed__row:last-child { border-bottom: 0; }
.feed__who { grid-area: who; font-weight: 700; font-size: .9rem; }
.feed__what { grid-area: what; font-size: .78rem; color: var(--muted); }
.feed__amt {
  grid-area: amt; font-family: var(--mono); font-weight: 700; font-size: .9rem;
  color: var(--pos); text-align: right; white-space: nowrap;
}
.feed__amt--neg { color: var(--muted); }

@media (max-width: 780px) {
  .mock__stats { grid-template-columns: 1fr; }
  .mock__cols { grid-template-columns: 1fr; }
}

/* =====================================================================
   7. PRICING  (dark band, symmetric with insight)
   ===================================================================== */
.pricing { background: var(--ink); color: var(--paper); }
.pricing__wrap {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 5vw, 64px); align-items: center;
}
.pricing__title {
  font-size: clamp(1.8rem, 3.8vw, 2.7rem);
  font-weight: 800; letter-spacing: -.02em; line-height: 1.1;
}
.pricing__lede { margin-top: 18px; font-size: 1.1rem; color: #D9D2E4; max-width: 46ch; }
.pricing__roi { margin-top: 24px; display: grid; gap: 12px; }
.pricing__roi li {
  position: relative; padding-left: 30px; color: #E4DEEE; font-weight: 600;
}
.pricing__roi li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 18px; height: 10px; border-left: 2.5px solid var(--gold);
  border-bottom: 2.5px solid var(--gold); transform: rotate(-45deg);
}
.plan {
  background: var(--paper); color: var(--ink);
  border-radius: 22px; padding: 32px 30px;
  box-shadow: 0 30px 70px -24px rgba(0,0,0,.6);
  position: relative;
}
.plan::before {
  content: ""; position: absolute; inset: 10px;
  border: 1.5px dashed var(--accent); opacity: .2; border-radius: 15px; pointer-events: none;
}
.plan__name { font-weight: 800; font-size: 1.05rem; color: var(--accent); letter-spacing: .01em; }
.plan__price {
  font-family: var(--mono); font-weight: 700; letter-spacing: -.02em;
  font-size: clamp(3rem, 8vw, 4rem); line-height: 1; margin: 8px 0 4px;
}
.plan__cur { font-size: .42em; vertical-align: super; margin-right: 4px; color: var(--ink-2); }
.plan__per { font-size: .28em; color: var(--muted); font-family: var(--font); font-weight: 600; }
.plan__price--word { font-size: clamp(1.5rem, 4.5vw, 2rem); color: var(--accent); }
.plan__per--block { display: block; font-size: .58em; margin-top: 8px; letter-spacing: .01em; }
.plan__free { font-size: .9rem; color: var(--muted); font-weight: 600; margin-bottom: 20px; }
.plan__list { display: grid; gap: 11px; margin: 20px 0 24px;
  border-top: 1px solid var(--line); padding-top: 22px; }
.plan__list li { position: relative; padding-left: 28px; font-size: .96rem; color: var(--ink-2); }
.plan__list li::before {
  content: ""; position: absolute; left: 0; top: 6px;
  width: 15px; height: 8px; border-left: 2.5px solid var(--accent);
  border-bottom: 2.5px solid var(--accent); transform: rotate(-45deg);
}
.plan__foot { text-align: center; font-size: .82rem; color: var(--muted); margin-top: 14px; }
@media (max-width: 860px) { .pricing__wrap { grid-template-columns: 1fr; } }

/* =====================================================================
   8. AUDIENCE + FAQ
   ===================================================================== */
.audience .section__title { margin-bottom: 34px; }
.who-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
  max-width: 760px; margin: 0 auto 64px;
}
.who {
  font-weight: 600; font-size: .98rem;
  background: var(--paper-2); border: 1px solid var(--line);
  padding: 10px 20px; border-radius: 999px;
  box-shadow: var(--shadow-soft);
}
.faq { max-width: 720px; margin-inline: auto; }
.faq__title { text-align: center; font-size: 1.3rem; font-weight: 800; margin-bottom: 22px; }
.faq__item {
  background: var(--paper-2); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 4px 22px;
  margin-bottom: 12px; box-shadow: var(--shadow-soft);
}
.faq__item summary {
  cursor: pointer; list-style: none;
  font-weight: 700; font-size: 1.04rem;
  padding: 16px 34px 16px 0; position: relative;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-family: var(--mono); font-size: 1.5rem; font-weight: 400; color: var(--accent);
  transition: transform .2s ease;
}
.faq__item[open] summary::after { content: "\2212"; }
.faq__item p { padding: 0 0 18px; color: var(--ink-2); font-size: .98rem; }

/* =====================================================================
   9. FOOTER
   ===================================================================== */
.footer { background: var(--paper); border-top: 1px solid var(--line); padding-top: 48px; }
.footer__inner {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 24px; padding-bottom: 34px;
}
.brand__word--foot { font-size: 1.4rem; font-weight: 800; letter-spacing: -.02em; }
.footer__tag { color: var(--muted); font-weight: 600; margin-top: 4px; }
.footer__meta { text-align: right; }
.footer__studio { font-weight: 800; letter-spacing: .02em; }
.footer__contact { margin-top: 4px; }
.footer__contact a { color: var(--accent); font-weight: 700; }
.footer__contact a:hover { text-decoration: underline; }
.footer__fine { font-size: .8rem; color: var(--muted); margin-top: 8px; }
@media (max-width: 620px) {
  .footer__inner { flex-direction: column; align-items: flex-start; }
  .footer__meta { text-align: left; }
}
