/* Mini Money Method — shared stylesheet
   Brand tokens are the single source of truth. Change them here, nowhere else. */

:root {
  --black:      #0E0E0E;
  --black-2:    #131313;
  --black-3:    #181716;
  --gold:       #C9A24B;
  --gold-2:     #E0BC65;
  --parchment:  #F5F1E8;
  --oxblood:    #7A1F1F;
  --ink:        #1A1A1A;
  --muted:      #ADA396;
  --line:       rgba(201, 162, 75, .22);
  --line-soft:  rgba(245, 241, 232, .10);
  --ok:         #6FBF8B;
  --warn:       #E0A04B;
  --bad:        #D97A6C;

  --wrap:       1120px;
  --radius:     16px;
  --radius-lg:  24px;

  --font-display: "Bebas Neue", Impact, "Arial Narrow Bold", sans-serif;
  --font-editorial: "Playfair Display", Georgia, serif;
  --font-mono:  "DM Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --font-body:  Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
}

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

/* The hidden attribute has to beat any author display rule. Without this a
   [hidden] element that also sets display (an .eyebrow, a flex row) stays
   visible, which is how the flyer-only greeting once showed to everyone. */
[hidden] { display: none !important; }

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

body {
  margin: 0;
  background: var(--black);
  color: var(--parchment);
  font: 400 16px/1.65 var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-2); }
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--gold-2);
  outline-offset: 3px;
  border-radius: 4px;
}

img, svg { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: .012em;
  line-height: .96;
  margin: 0;
  text-wrap: balance;
}
p { margin: 0 0 1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

.editorial { font-family: var(--font-editorial); font-style: italic; font-weight: 700; }
.mono { font-family: var(--font-mono); }
.gold { color: var(--gold); }
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 22px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--gold); color: var(--black); font-weight: 700;
  padding: 12px 18px; border-radius: 10px;
  transition: top .18s ease;
}
.skip-link:focus { top: 12px; color: var(--black); }

/* ---------------------------------------------------------- nav */

header.nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(14, 14, 14, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-row {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  max-width: var(--wrap); margin-inline: auto;
  padding: 12px 22px;
}
.brand { display: flex; align-items: center; gap: 11px; color: var(--parchment); }
.brand:hover { color: var(--parchment); }
.brand .mark { width: 38px; height: 38px; flex: none; }
.brand-name {
  font-family: var(--font-display); font-size: 21px;
  letter-spacing: .05em; line-height: 1;
}
.brand-sub {
  display: block; font-family: var(--font-mono); font-size: 9.5px;
  letter-spacing: .2em; color: var(--muted); text-transform: uppercase;
  margin-top: 3px;
}
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a {
  color: rgba(245, 241, 232, .74); font-size: 14.5px; font-weight: 500;
}
.nav-links a:hover { color: var(--gold); }
@media (max-width: 860px) { .nav-links { display: none; } }
@media (max-width: 560px) {
  .nav-row { padding: 10px 16px; gap: 10px; }
  .brand { gap: 9px; }
  .brand .mark { width: 32px; height: 32px; }
  .brand-name { font-size: 18px; }
  .brand-sub { display: none; }
  .nav-cta-long { display: none; }
  .nav-row .btn-sm { padding: 10px 15px; font-size: 13px; white-space: nowrap; }
}
@media (max-width: 480px) {
  .eyebrow { font-size: 10.5px; letter-spacing: .13em; padding: 6px 12px; margin-bottom: 20px; }
}

/* ---------------------------------------------------------- buttons */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 24px; border-radius: 12px;
  font: 700 15.5px/1 var(--font-body);
  border: 1px solid transparent; cursor: pointer; text-align: center;
  transition: transform .16s ease, background .16s ease, border-color .16s ease, color .16s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--gold); color: var(--black); }
.btn-primary:hover { background: var(--gold-2); color: var(--black); }
.btn-ghost { background: transparent; color: var(--parchment); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-dark { background: var(--black); color: var(--parchment); }
.btn-dark:hover { background: #000; color: var(--gold-2); }
.btn-sm { padding: 11px 18px; font-size: 14px; border-radius: 999px; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .5; cursor: not-allowed; transform: none; }
.cta-row { display: flex; flex-wrap: wrap; gap: 13px; }

/* ---------------------------------------------------------- sections */

section { padding: 84px 0; }
section.alt { background: var(--black-2); border-block: 1px solid var(--line-soft); }
@media (max-width: 700px) { section { padding: 58px 0; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  color: var(--gold-2);
  font-family: var(--font-mono); font-size: 11.5px;
  letter-spacing: .18em; text-transform: uppercase;
  padding: 7px 15px; border: 1px solid var(--line); border-radius: 999px;
  margin-bottom: 26px;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold-2); flex: none;
}
.section-head { max-width: 780px; margin-bottom: 46px; }
.section-head h2 {
  font-size: clamp(2.1rem, 4.6vw, 3.5rem);
  color: var(--parchment); margin-bottom: 16px;
}
.section-head p { color: rgba(245, 241, 232, .72); font-size: 1.08rem; }

.lead {
  font-size: clamp(1.04rem, 1.7vw, 1.3rem);
  line-height: 1.6;
  color: rgba(245, 241, 232, .78);
  max-width: 660px;
}

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

.hero {
  position: relative;
  padding: clamp(64px, 9vw, 104px) 0 clamp(56px, 8vw, 88px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse 70% 60% at 14% 16%, rgba(201, 162, 75, .17), transparent 60%),
    radial-gradient(ellipse 60% 50% at 88% 4%, rgba(122, 31, 31, .18), transparent 62%),
    linear-gradient(180deg, #0E0E0E 0%, #141312 100%);
}
.hero h1 {
  font-size: clamp(2.7rem, 7.4vw, 5.5rem);
  max-width: 16ch;
  color: var(--parchment);
}
.hero h1 .em { color: var(--gold); }
.hero .lead { margin: 26px 0 34px; }
.hero-note {
  margin-top: 26px; font-size: 13.5px; color: var(--muted);
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}

/* Two columns once there is canvas for them, so the headline is not a narrow
   ribbon of text beside 600px of nothing. */
.hero-grid { display: grid; gap: 40px; align-items: center; }
@media (min-width: 1000px) {
  .hero-grid { grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr); gap: 56px; }
  .hero h1 { font-size: clamp(3rem, 5vw, 4.4rem); max-width: none; }
  .hero .lead { max-width: 46ch; }
}

/* The co-host fast path, sitting where the void used to be. */
.hero-panel {
  border: 1px solid rgba(201, 162, 75, .34);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  background: linear-gradient(165deg, rgba(122, 31, 31, .2), rgba(245, 241, 232, .03));
  backdrop-filter: blur(2px);
}
.hero-panel .tag {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .17em;
  text-transform: uppercase; color: var(--gold-2); margin: 0 0 12px;
}
.hero-panel h2 { font-size: 1.85rem; color: var(--parchment); margin-bottom: 12px; }
.hero-panel > p { color: rgba(245, 241, 232, .8); font-size: 15px; }
.hero-panel dl {
  margin: 22px 0; padding: 18px 0; display: grid; gap: 14px 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-block: 1px solid rgba(201, 162, 75, .22);
}
.hero-panel dt {
  font-family: var(--font-display); font-size: 1.7rem; line-height: 1;
  color: var(--gold-2);
}
.hero-panel dd { margin: 4px 0 0; font-size: 13px; color: rgba(245, 241, 232, .74); line-height: 1.35; }
.hero-panel .terms {
  font-family: var(--font-display); font-size: 1.15rem; letter-spacing: .02em;
  color: var(--parchment); margin-bottom: 18px;
}

/* ---------------------------------------------------------- cards + grids */

.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: minmax(0, 1fr); } }

.card {
  background: rgba(245, 241, 232, .035);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 28px;
}
.card h3 { font-size: 1.42rem; color: var(--parchment); margin-bottom: 10px; }
.card p { color: rgba(245, 241, 232, .72); margin: 0; }
.card .num {
  font-family: var(--font-display); font-size: 40px; line-height: 1;
  color: var(--gold); margin-bottom: 10px;
}

/* the two doors */
.doors { display: grid; gap: 22px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 820px) { .doors { grid-template-columns: minmax(0, 1fr); } }
.door {
  display: flex; flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3.4vw, 38px);
  background: linear-gradient(170deg, rgba(201, 162, 75, .07), rgba(245, 241, 232, .02));
}
.door--host {
  background: linear-gradient(170deg, rgba(122, 31, 31, .18), rgba(245, 241, 232, .02));
  border-color: rgba(201, 162, 75, .34);
}
.door .tag {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .17em;
  text-transform: uppercase; color: var(--gold-2); margin-bottom: 14px;
}
.door h3 { font-size: clamp(1.6rem, 2.9vw, 2.15rem); margin-bottom: 12px; }
.door > p { color: rgba(245, 241, 232, .76); }
.door ul { margin: 18px 0 26px; padding: 0; list-style: none; }
.door li {
  position: relative; padding-left: 26px; margin-bottom: 11px;
  color: rgba(245, 241, 232, .8); font-size: 15px;
}
.door li::before {
  content: ""; position: absolute; left: 3px; top: .58em;
  width: 8px; height: 8px; border-radius: 2px;
  background: var(--gold); transform: rotate(45deg);
}
.door .door-cta { margin-top: auto; }

/* checklist / keeps */
.list-check { margin: 0; padding: 0; list-style: none; }
.list-check li {
  position: relative; padding-left: 32px; margin-bottom: 14px;
  color: rgba(245, 241, 232, .82);
}
.list-check li::before {
  content: ""; position: absolute; left: 2px; top: .34em;
  width: 17px; height: 17px; border-radius: 50%;
  border: 1.5px solid var(--gold);
  background:
    linear-gradient(45deg, transparent 44%, var(--gold) 44%, var(--gold) 56%, transparent 56%) center/9px 2px no-repeat;
}
.list-check.x li::before {
  border-color: rgba(245, 241, 232, .28);
  background: none;
}

/* ---------------------------------------------------------- calculator */

.calc-shell {
  background: linear-gradient(150deg, var(--parchment) 0%, #EAE3D2 100%);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 46px);
  box-shadow: 0 26px 70px rgba(0, 0, 0, .5);
}
.calc-shell h2 { color: var(--oxblood); font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-bottom: 8px; }
.calc-shell .calc-sub { color: rgba(26, 26, 26, .78); font-size: 1.02rem; margin-bottom: 0; }
.calc-grid { display: grid; gap: 16px; margin-top: 28px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 640px) { .calc-grid { grid-template-columns: minmax(0, 1fr); } }

.field label, .field .label {
  display: block; font-weight: 700; font-size: 12px;
  text-transform: uppercase; letter-spacing: .09em;
  color: var(--ink); margin-bottom: 7px;
}
.field .hint { font-weight: 400; text-transform: none; letter-spacing: 0; color: rgba(26,26,26,.6); font-size: 12px; }
.field input, .field select {
  width: 100%; padding: 14px 15px; border-radius: 10px;
  border: 1px solid rgba(14, 14, 14, .2);
  background: #fff; color: var(--ink);
  font: 500 16px var(--font-mono);
  appearance: none;
}
.field select { font-family: var(--font-body); background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; padding-right: 40px; }
.field input:focus, .field select:focus { outline: 2px solid var(--gold); border-color: var(--gold); }

.calc-toggle {
  margin-top: 20px; display: flex; gap: 11px; align-items: flex-start;
  font-size: 14px; color: rgba(26, 26, 26, .82); line-height: 1.5;
}
.calc-toggle input { margin-top: 3px; width: 17px; height: 17px; accent-color: var(--oxblood); flex: none; }
.calc-actions { margin-top: 24px; }

.calc-out {
  margin-top: 26px; padding: 24px;
  background: var(--black); color: var(--parchment);
  border-radius: var(--radius);
}
.calc-out[hidden] { display: none; }
.calc-metrics { display: grid; gap: 14px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 640px) { .calc-metrics { grid-template-columns: minmax(0, 1fr); } }
.metric span {
  display: block; font-size: 11.5px; letter-spacing: .13em;
  text-transform: uppercase; color: rgba(245, 241, 232, .62);
  font-family: var(--font-mono);
}
.metric strong {
  display: block; font-family: var(--font-display); font-size: 2.5rem;
  line-height: 1.05; color: var(--gold); font-weight: 400; margin-top: 4px;
}
.metric em {
  display: block; font-style: normal; font-size: 12.5px;
  color: rgba(245, 241, 232, .66); margin-top: 4px;
}
.calc-cap {
  margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line-soft);
  font-size: 13.5px; color: rgba(245, 241, 232, .68); line-height: 1.55;
}
.calc-cap strong { color: var(--gold); font-weight: 600; }
.calc-next { margin-top: 20px; display: flex; gap: 12px; flex-wrap: wrap; }
.calc-error {
  margin-top: 18px; padding: 14px 16px; border-radius: 10px;
  background: rgba(217, 122, 108, .14); border: 1px solid rgba(217, 122, 108, .4);
  color: #8B2A1C; font-size: 14px; font-weight: 500;
}
.calc-error[hidden] { display: none; }
.calc-disclaimer { margin-top: 18px; font-size: 12.5px; color: rgba(26, 26, 26, .62); line-height: 1.55; }

/* ---------------------------------------------------------- faq */

.faq { max-width: 860px; }
.faq details {
  border-bottom: 1px solid var(--line-soft);
  padding: 20px 0;
}
.faq summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 18px;
  font-size: 1.14rem; font-weight: 600; color: var(--parchment);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; flex: none;
  font-family: var(--font-display); font-size: 1.7rem; line-height: .8;
  color: var(--gold);
}
.faq details[open] summary::after { content: "–"; }
.faq details p { margin-top: 14px; color: rgba(245, 241, 232, .74); }

/* ---------------------------------------------------------- form */

.form-shell {
  background: rgba(245, 241, 232, .04);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 42px);
}
.form-grid { display: grid; gap: 18px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 640px) { .form-grid { grid-template-columns: minmax(0, 1fr); } }
.form-grid .span-2 { grid-column: 1 / -1; }
.form-shell .field label, .form-shell .field .label { color: rgba(245, 241, 232, .86); }
.form-shell .field .hint { color: var(--muted); }
.form-shell .field input,
.form-shell .field select,
.form-shell .field textarea {
  width: 100%; padding: 14px 15px; border-radius: 10px;
  background: rgba(14, 14, 14, .55);
  border: 1px solid rgba(245, 241, 232, .16);
  color: var(--parchment);
  font: 500 16px var(--font-mono);
  appearance: none;
}
.form-shell .field select { font-family: var(--font-body); }
.form-shell .field textarea { font-family: var(--font-body); font-weight: 400; min-height: 108px; resize: vertical; }
.form-shell .field input::placeholder,
.form-shell .field textarea::placeholder { color: rgba(245, 241, 232, .34); }
.form-shell .field input:focus,
.form-shell .field select:focus,
.form-shell .field textarea:focus { outline: 2px solid var(--gold); border-color: var(--gold); }
.form-shell .field input[aria-invalid="true"],
.form-shell .field select[aria-invalid="true"] { border-color: var(--bad); }
.field-error { display: block; margin-top: 7px; font-size: 13px; color: var(--bad); }
.field-error[hidden] { display: none; }

.gate {
  margin-top: 22px; padding: 18px 20px; border-radius: var(--radius);
  border: 1px solid var(--line-soft); background: rgba(14, 14, 14, .5);
  font-size: 14.5px; line-height: 1.55;
}
.gate[hidden] { display: none; }
.gate.pass { border-color: rgba(111, 191, 139, .5); background: rgba(111, 191, 139, .1); }
.gate.fail { border-color: rgba(217, 122, 108, .5); background: rgba(217, 122, 108, .1); }
.gate h4 { font-size: 1.2rem; margin-bottom: 8px; }
.gate.pass h4 { color: var(--ok); }
.gate.fail h4 { color: var(--bad); }
.gate ul { margin: 10px 0 0; padding-left: 20px; color: rgba(245, 241, 232, .8); }
.gate li { margin-bottom: 5px; }
.form-foot { margin-top: 24px; }
.form-foot .fine { margin-top: 14px; font-size: 12.5px; color: rgba(245, 241, 232, .72); line-height: 1.55; }

.spec-strip {
  display: grid; gap: 14px; grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 8px;
}
@media (max-width: 760px) { .spec-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.spec {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 18px; background: rgba(201, 162, 75, .05);
}
.spec strong {
  display: block; font-family: var(--font-display); font-size: 2rem;
  color: var(--gold); font-weight: 400; line-height: 1;
}
.spec span {
  display: block; margin-top: 7px; font-size: 13px;
  color: rgba(245, 241, 232, .72);
}

.callout {
  border-left: 3px solid var(--gold);
  padding: 4px 0 4px 22px;
  margin: 30px 0;
  color: rgba(245, 241, 232, .84);
}
.callout .editorial { font-size: 1.22rem; line-height: 1.5; display: block; }

.notice {
  border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 20px 22px; background: rgba(245, 241, 232, .03);
  font-size: 14.5px; color: rgba(245, 241, 232, .72); line-height: 1.6;
}
.notice strong { color: var(--parchment); font-weight: 600; }

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

footer.site {
  background: #0A0A0A; border-top: 1px solid var(--line);
  padding: 56px 0 40px;
}
.foot-top {
  display: grid; gap: 34px;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 2fr);
}
@media (max-width: 820px) { .foot-top { grid-template-columns: minmax(0, 1fr); } }
.foot-top p { color: rgba(245, 241, 232, .6); font-size: 14.5px; max-width: 42ch; margin-top: 16px; }
.foot-links { display: grid; gap: 14px 26px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 640px) { .foot-links { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.foot-links a { display: block; font-size: 14.5px; }
.foot-links .k {
  display: block; font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 3px;
}
.foot-bottom {
  margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line-soft);
  font-size: 12.5px; color: var(--muted); line-height: 1.7;
}
.foot-bottom p { margin-bottom: .7em; }

/* ---------------------------------------------------------- motion
   One gate: .reveal elements start hidden ONLY when the page has opted in
   by setting .motion-on on <html>, which site.js does only when motion is
   allowed. Under reduced motion (or no JS) every reveal is final on first paint. */

.motion-on .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.motion-on .reveal.in { opacity: 1; transform: none; }

/* ---------------------------------------------------------- pass it on */

.share {
  display: grid; gap: 28px; align-items: center;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(24px, 3.4vw, 36px);
  background: linear-gradient(165deg, rgba(201, 162, 75, .07), rgba(245, 241, 232, .02));
}
@media (min-width: 760px) { .share { grid-template-columns: auto minmax(0, 1fr); gap: 34px; } }

/* The code is dark-on-white and stays that way. A QR tinted to match a dark
   page is a QR that phones refuse to read. */
.share__code {
  background: #fff; border-radius: 14px; padding: 14px;
  width: 190px; height: 190px; flex: none; justify-self: start;
}
.share__code img { width: 100%; height: 100%; display: block; }
.share h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: 12px; }
.share p { color: rgba(245, 241, 232, .78); max-width: 52ch; }
.share__url {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-top: 20px;
}
.share__url code {
  font-family: var(--font-mono); font-size: 13.5px;
  color: var(--gold-2); background: rgba(14, 14, 14, .55);
  border: 1px solid var(--line-soft); border-radius: 9px;
  padding: 10px 13px; word-break: break-all;
}
.share__note {
  margin-top: 18px; font-size: 13.5px; color: var(--muted); line-height: 1.55;
}
.share__note a { color: var(--gold-2); }
