/* LSN AI Opinion — intake page
   Design direction: this is a script/film "coverage sheet" — the exact
   document format industry readers fill out. Courier for field labels
   (the screenplay typeface itself), a quiet editorial serif for the
   headline, navy anchor matching the report PDF, and a single bold
   signature element: a rotated "read" stamp, like a coverage approval
   stamp on a submitted script. */

@import url('https://fonts.googleapis.com/css2?family=Courier+Prime:wght@400;700&family=Source+Serif+4:opsz,wght@8..60,400;8..60,600&display=swap');

:root {
  --navy: #0f1f33;
  --navy-soft: #1c3352;
  --paper: #f6f5f1;
  --paper-line: #dcdad2;
  --ink: #22252a;
  --ink-soft: #5a5d63;
  --gold: #a9762f;
  --gold-soft: #f0e6d3;
  --danger: #a13327;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Courier Prime', monospace;
  font-size: 14px;
  line-height: 1.6;
}

.wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 48px 24px 96px;
}

/* --- Header / coverage-sheet header block --- */
header.sheet-head {
  border: 1px solid var(--ink);
  padding: 28px 32px;
  margin-bottom: 40px;
  position: relative;
  background: #fff;
}

.kicker {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink-soft);
}

h1 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 600;
  font-size: 34px;
  color: var(--navy);
  margin: 6px 0 10px;
  letter-spacing: -0.3px;
}

.lede {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 58ch;
}

.price-tag {
  position: absolute;
  top: 24px;
  right: 28px;
  text-align: right;
  font-family: 'Source Serif 4', Georgia, serif;
  max-width: 42%;
}
.price-tag .amount { font-size: 34px; color: var(--navy); font-weight: 600; line-height: 1.05; }
.price-tag .strike {
  display: inline-block;
  margin-left: 7px;
  font-size: 19px;
  color: var(--ink-soft);
  text-decoration: line-through;
  opacity: 0.6;
}
.price-tag .promo-note {
  display: block;
  margin-top: 3px;
  font-size: 11.5px;
  color: var(--gold);
  font-family: 'Courier Prime', monospace;
  line-height: 1.35;
}
.price-tag .unit { display: block; margin-top: 3px; font-size: 11px; color: var(--ink-soft); font-family: 'Courier Prime', monospace; letter-spacing: 1px; text-transform: uppercase; }

/* Hero subheading — the single most important line on the page: it names
   the category ("market assessment") and rules out the one visitors
   otherwise assume ("script coverage"). Sized second only to the H1. */
.hero-subhead {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 21px;
  line-height: 1.35;
  color: var(--navy);
  margin: 10px 0 0;
  max-width: 22ch;
}
.hero-trust {
  margin-top: 16px;
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* --- Sample report buttons --- */
.sample-row { text-align: center; margin-top: 26px; }
.sample-row-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.sample-row-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.sample-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid var(--navy);
  background: #fff;
  color: var(--navy);
  text-decoration: none;
  font-family: 'Courier Prime', monospace;
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: background 0.15s ease, color 0.15s ease;
}
.sample-btn:hover { background: var(--navy); color: #fff; }
.sample-row-note {
  margin: 12px auto 0;
  max-width: 52ch;
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 12.5px;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* the signature element: rotated coverage stamp */
.stamp {
  position: absolute;
  bottom: -14px;
  right: 40px;
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 6px 14px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transform: rotate(-6deg);
  background: #fff;
  font-weight: 700;
}

/* --- Fieldset "sheet rows" --- */
fieldset {
  border: none;
  border-top: 1px solid var(--paper-line);
  padding: 24px 0 4px;
  margin: 0 0 8px;
}
legend {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  padding: 0 10px 0 0;
  font-weight: 700;
}

.field {
  margin-bottom: 18px;
}
.field label {
  display: block;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.field .hint {
  font-family: 'Source Serif 4', Georgia, serif;
  font-style: italic;
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-top: 4px;
}

input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  font-family: 'Courier Prime', monospace;
  font-size: 14px;
  border: 1px solid #b9b6ac;
  background: #fff;
  color: var(--ink);
}
textarea { resize: vertical; min-height: 100px; }
input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--navy);
  outline-offset: 1px;
}

.file-drop {
  border: 1px dashed #b9b6ac;
  padding: 16px;
  background: #fff;
  font-size: 12.5px;
  color: var(--ink-soft);
}
.file-drop input[type="file"] { font-family: 'Courier Prime', monospace; font-size: 12.5px; }

.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 640px) { .row-2 { grid-template-columns: 1fr; } }

/* --- Safety notice --- */
.safety-notice {
  border-left: 3px solid var(--danger);
  background: #fdf2f0;
  padding: 14px 16px;
  font-size: 12.5px;
  color: #6b2019;
  margin-bottom: 32px;
}
.safety-notice strong { color: var(--danger); }

/* --- Submit block --- */
.submit-block {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--paper-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

button.cta, a.cta {
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 16px 28px;
  font-family: 'Courier Prime', monospace;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s ease;
}
button.cta:hover, a.cta:hover { background: var(--navy-soft); }
button.cta:disabled { background: #9aa2ad; cursor: not-allowed; }

.fine-print {
  font-size: 11.5px;
  color: var(--ink-soft);
  max-width: 40ch;
}

.status-line {
  margin-top: 16px;
  font-size: 13px;
}
.status-line.error { color: var(--danger); }
.status-line.ok { color: #1e6b34; }

footer {
  margin-top: 60px;
  font-size: 11px;
  color: var(--ink-soft);
  text-align: center;
}

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

/* --- Landing chooser (index.html) --- */
.chooser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 640px) { .chooser-grid { grid-template-columns: 1fr; } }

.chooser-card {
  display: block;
  border: 1px solid var(--ink);
  background: #fff;
  padding: 32px 26px;
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.15s ease, transform 0.1s ease;
}
.chooser-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.chooser-card .card-kicker {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.chooser-card h2 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 24px;
  color: var(--navy);
  margin: 0 0 10px;
}
.chooser-card p {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 14.5px;
  color: var(--ink-soft);
  margin: 0;
}
.chooser-card .card-cta {
  margin-top: 18px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 700;
}

.test-badge {
  display: inline-block;
  background: var(--gold-soft);
  color: var(--gold);
  border: 1px solid var(--gold);
  font-size: 10.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  margin-bottom: 14px;
  font-weight: 700;
}

/* --- Script mode toggle (screenplay.html) --- */
.mode-toggle {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}
.mode-option {
  flex: 1;
  border: 1px solid #b9b6ac;
  background: #fff;
  padding: 14px 16px;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.mode-option.active {
  border-color: var(--navy);
  background: #eef1f5;
}
.mode-option input { margin-top: 3px; }
.mode-option .label-title {
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
  font-weight: 700;
  display: block;
  margin-bottom: 3px;
}
.mode-option .label-desc {
  font-family: 'Source Serif 4', Georgia, serif;
  font-style: italic;
  font-size: 12.5px;
  color: var(--ink-soft);
}

.hidden { display: none !important; }

.back-link {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
}
.back-link:hover { color: var(--navy); }

/* --- Promo banner (shown when arriving via a promo link) --- */
.promo-banner {
  display: none;
  margin: 20px 0 0;
  padding: 12px 16px;
  background: var(--gold-soft);
  border: 1px solid var(--gold);
  color: #6b4a15;
  font-size: 13px;
  line-height: 1.5;
}
.promo-banner strong { color: var(--gold); }
.promo-banner.promo-banner-invalid {
  background: #fdf2f0;
  border-color: var(--danger);
  color: #6b2019;
}
.promo-banner.promo-banner-invalid strong { color: var(--danger); }


/* ---------------------------------------------------------------
   Mobile first screen (paid traffic is Instagram, i.e. phones).
   Target: on a 390x844 viewport, H1 + subhead + price + at least one
   Submit button are visible without scrolling. Achieved by reordering
   the hero so the price and the chooser cards come before the body copy.
   --------------------------------------------------------------- */
@media (max-width: 640px) {
  .wrap { padding: 20px 16px 64px; }

  header.sheet-head {
    display: flex;
    flex-direction: column;
    padding: 20px 18px 26px;
    margin-bottom: 20px;
  }
  .hero-main { order: 1; }
  .price-tag { order: 2; }
  .hero-body { order: 3; }

  h1 { font-size: 30px; }
  .hero-subhead { font-size: 19px; max-width: none; }

  /* Static, full-width price block — the absolute desktop position would
     collide with the heading on a narrow screen. */
  .price-tag {
    position: static;
    max-width: none;
    text-align: left;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--paper-line);
  }
  .price-tag .amount { font-size: 38px; }
  .price-tag .strike { font-size: 21px; }

  .hero-body { margin-top: 18px; }

  /* Stamp is decorative; on mobile it fights the price block for space. */
  .stamp { display: none; }

  .chooser-grid { gap: 14px; }
  .chooser-card { padding: 20px 18px; min-height: 48px; }
  .chooser-card h2 { font-size: 21px; }

  .sample-row-buttons { flex-direction: column; }
  .sample-btn { width: 100%; min-height: 48px; }
}

/* --- Consent banner ---------------------------------------------
   Fixed to the bottom, but with a body offset applied alongside it so
   it can never sit on top of the Submit button or the PayPal block on
   a phone — the one place where covering the UI would cost a sale. */
.lsn-consent {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9000;
  background: var(--navy);
  color: #eef1f5;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13px;
  line-height: 1.5;
  box-shadow: 0 -2px 14px rgba(0,0,0,0.18);
}
.lsn-consent-text { max-width: 62ch; }
.lsn-consent-actions { display: flex; gap: 10px; flex-shrink: 0; }
.lsn-consent-btn {
  font-family: 'Courier Prime', monospace;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 10px 18px;
  min-height: 44px;
  border: 1px solid #eef1f5;
  background: transparent;
  color: #eef1f5;
  cursor: pointer;
  white-space: nowrap;
}
.lsn-consent-accept { background: var(--gold); border-color: var(--gold); color: #fff; font-weight: 700; }
.lsn-consent-btn:hover { opacity: 0.85; }

@media (max-width: 640px) {
  .lsn-consent { flex-direction: column; align-items: stretch; gap: 12px; padding: 14px 16px; text-align: left; }
  .lsn-consent-actions { justify-content: stretch; }
  .lsn-consent-btn { flex: 1; }
  /* Reserve room so the banner never overlaps the last interactive
     element on a small screen. */
  body { padding-bottom: 150px; }
}

/* --- Review form (report.html) --------------------------------- */
.review-block { margin-top: 40px; }
.review-divider {
  border: none;
  border-top: 1px solid var(--paper-line);
  margin: 0 0 28px;
}
.review-heading {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 22px;
  color: var(--navy);
  margin: 0 0 6px;
}
.review-intro {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0 0 8px;
}
.review-privacy {
  font-size: 12px;
  color: var(--ink-soft);
  font-style: italic;
  margin: 0 0 22px;
}
.review-consent-field { margin-top: 4px; }
.review-consent-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
}
.review-consent-label input { width: 18px; height: 18px; }
/* Honeypot: off-screen rather than display:none — some bots skip
   hidden fields but happily fill positioned ones. */
.review-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.review-thanks {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 16px;
  color: var(--navy);
  padding: 16px 0;
}

/* --- Storefront reviews block (index.html) --------------------- */
.reviews-block { margin-top: 8px; }
.reviews-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.review-card {
  margin: 0;
  padding: 20px 22px;
  background: #fff;
  border: 1px solid var(--paper-line);
}
.review-quote {
  margin: 0 0 14px;
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink);
}
.review-sig {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
}
@media (max-width: 640px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* --- Privacy links ---------------------------------------------- */
.footer-privacy-link {
  display: inline-block;
  margin-top: 6px;
  color: var(--ink-soft);
  text-decoration: underline;
  font-size: 11px;
}
.footer-privacy-link:hover { color: var(--navy); }

/* Sits next to the submit button, where the visitor is deciding whether
   to hand over an unreleased script — the one moment the reassurance
   actually matters. */
.materials-note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.materials-note a { color: var(--navy); font-weight: 700; }

.lsn-consent-link {
  color: #e7c88a;
  text-decoration: underline;
  white-space: nowrap;
}

/* Tier chooser on the intake forms — reuses the script-mode toggle
   pattern so there is one visual language for "pick one of two". */
.tier-toggle .mode-option { align-items: flex-start; }
.tier-toggle .label-title { color: var(--navy); }
@media (max-width: 640px) {
  .tier-toggle { flex-direction: column; }
}

/* Deep tier block on the storefront */
.deep-tier-block {
  margin: 36px 0 0;
  padding: 26px 28px;
  background: #fff;
  border: 1px solid var(--navy);
}
.deep-tier-label {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 10px;
}
.deep-tier-intro, .deep-tier-note {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 6px;
}
.deep-tier-note {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--paper-line);
  font-size: 13px;
}

.discount-explainer {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  background: var(--gold-soft);
  border-left: 3px solid var(--gold);
  padding: 10px 14px;
  margin: 0 0 16px;
}

/* Link back to the main LSN site — this is a subdomain of a larger
   operation, and a visitor who arrives here from an ad has no other way
   to see that. */
.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  margin-bottom: 22px;
}
.site-logo img { display: block; border-radius: 6px; }
.site-logo-text {
  font-family: 'Courier Prime', monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-soft);
  line-height: 1.5;
}
.site-logo-sub { color: var(--gold); letter-spacing: 1px; }
.site-logo:hover .site-logo-text { color: var(--navy); }
.site-logo:hover .site-logo-sub { color: var(--gold); }

.footer-site-link {
  color: var(--ink-soft);
  text-decoration: underline;
}
.footer-site-link:hover { color: var(--navy); }

/* --- Market Read → Deep Dive upgrade offer --------------------- */
.upgrade-block { margin-top: 40px; }
.upgrade-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.upgrade-heading {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 22px;
  color: var(--navy);
  margin: 0 0 8px;
}
.upgrade-intro {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0 0 20px;
}
.upgrade-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--paper-line);
}
.upgrade-due {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 30px;
  color: var(--navy);
  font-weight: 600;
}
.upgrade-credit { font-size: 13px; color: var(--ink-soft); }
.upgrade-window {
  width: 100%;
  margin-top: 4px;
  font-family: 'Courier Prime', monospace;
  font-size: 11px;
  letter-spacing: 0.5px;
  color: var(--gold);
}

/* --- "Your reports on this device" ------------------------------ */
.my-reports {
  margin: 24px 0 0;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid var(--paper-line);
}
.my-reports-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.my-reports-list { list-style: none; margin: 0; padding: 0; }
.my-reports-list li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  padding: 7px 0;
  border-bottom: 1px solid var(--paper-line);
}
.my-reports-list li:last-child { border-bottom: none; }
.my-reports-list a {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 15px;
  color: var(--navy);
  font-weight: 600;
}
.my-reports-meta {
  font-family: 'Courier Prime', monospace;
  font-size: 11px;
  color: var(--ink-soft);
}
.my-reports-note {
  margin: 12px 0 0;
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.upgrade-features {
  margin: 0 0 22px;
  padding-left: 20px;
  max-width: 64ch;
}
.upgrade-features li {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 9px;
}
.upgrade-features strong { color: var(--navy); }
.upgrade-dismiss {
  display: block;
  margin-top: 14px;
  padding: 8px 0;
  background: none;
  border: none;
  font-family: 'Courier Prime', monospace;
  font-size: 12px;
  letter-spacing: 0.5px;
  color: var(--ink-soft);
  text-decoration: underline;
  cursor: pointer;
}
.upgrade-dismiss:hover { color: var(--navy); }

/* --- Report permalink bar --------------------------------------- */
.permalink-bar {
  display: none;
  margin-bottom: 16px;
  padding: 14px 18px;
  background: var(--gold-soft);
  border: 1px solid var(--gold);
}
.permalink-bar-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
}
.permalink-bar-row { display: flex; gap: 8px; }
.permalink-bar-row input {
  flex: 1;
  min-width: 0;
  padding: 9px 11px;
  font-family: 'Courier Prime', monospace;
  font-size: 12px;
  border: 1px solid #d8c294;
  background: #fff;
  color: var(--ink);
}
.permalink-copy {
  padding: 9px 18px;
  min-height: 44px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #fff;
  font-family: 'Courier Prime', monospace;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
}
.permalink-copy:hover { opacity: 0.9; }
.permalink-bar-note {
  margin: 9px 0 0;
  font-size: 12px;
  line-height: 1.5;
  color: #6b5a3a;
}
@media (max-width: 640px) {
  .permalink-bar-row { flex-direction: column; }
  .permalink-copy { width: 100%; }
}

.upgrade-return-note {
  margin: 16px 0 0;
  padding: 12px 15px;
  background: var(--gold-soft);
  border-left: 3px solid var(--gold);
  font-size: 12.5px;
  line-height: 1.55;
  color: #6b5a3a;
  max-width: 62ch;
}

/* Browsers route "save as PDF" through the print dialog, which surprises
   people who expect a file to appear. Saying so up front prevents the
   "the download didn't work" support email. */
.save-hint {
  margin: 0 0 14px;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}
