/* Doom Saver site. Brand tokens lifted from the app's own theme and mascot artwork. */

:root {
  --ink:      #120A1F;
  --ink-2:    #170D25;
  --card:     #1E1430;
  --card-2:   #251838;
  --line:     rgba(154, 107, 232, 0.16);
  --line-2:   rgba(154, 107, 232, 0.30);

  --text:     #EDE7F6;
  --muted:    #A79BC0;
  --dim:      #7A6D95;

  --gold:     #F5B92B;
  --violet:   #9A6BE8;

  --calm:     #3DD68C;
  --worried:  #F5B92B;
  --doomed:   #EF5350;
  --reaper:   #D01B1B;

  /* Driven by the hero as the knight decays. */
  --state:    var(--calm);

  --display: "Chakra Petch", "Trebuchet MS", sans-serif;
  --body:    "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --mono:    "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --pad: clamp(1.25rem, 4vw, 2.5rem);
  --gutter: clamp(2.5rem, 7vw, 6rem);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

p { margin: 0; }

a { color: var(--gold); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: #FFD166; }

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

img, svg { max-width: 100%; }

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

.prose { max-width: 66ch; }

.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dim);
  margin: 0;
}

/* ---------- header ---------- */

.site-head {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(18, 10, 31, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.site-head .wrap {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 64px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: 0.005em;
  color: var(--text);
  text-decoration: none;
  margin-right: auto;
}

.brand img { width: 30px; height: 30px; border-radius: 8px; display: block; }

.site-nav { display: flex; align-items: center; gap: clamp(0.9rem, 2.4vw, 1.75rem); }

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 500;
}
.site-nav a:hover { color: var(--text); }

@media (max-width: 640px) { .site-nav .hide-sm { display: none; } }

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--body);
  font-size: 0.97rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 140ms ease, background-color 140ms ease, border-color 140ms ease;
}
.btn:hover { transform: translateY(-1px); }
@media (prefers-reduced-motion: reduce) { .btn:hover { transform: none; } }

.btn-primary { background: var(--gold); color: #1A1005; }
.btn-primary:hover { background: #FFD166; color: #1A1005; }

.btn-ghost {
  background: transparent;
  border-color: var(--line-2);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--violet); color: var(--text); }

.btn-sm { padding: 0.55rem 1.05rem; font-size: 0.9rem; }

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

section { padding-block: var(--gutter); }

.rule { border: 0; border-top: 1px solid var(--line); margin: 0; }

.section-head { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2.75rem; }
.section-head h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
.section-head p { color: var(--muted); max-width: 54ch; }

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

.hero {
  position: relative;
  padding-top: clamp(2.5rem, 6vw, 4.5rem);
  padding-bottom: var(--gutter);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -30%;
  left: 50%;
  width: min(1100px, 130vw);
  aspect-ratio: 1;
  transform: translateX(-50%);
  background: radial-gradient(circle, color-mix(in srgb, var(--state) 22%, transparent) 0%, transparent 62%);
  transition: background 1200ms ease;
  pointer-events: none;
  z-index: 0;
}

.hero .wrap { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
}

/* On a phone the mockup must not eat the whole first screen. */
@media (max-width: 560px) {
  .phone { width: min(268px, 70vw); }
}

.hero h1 {
  font-size: clamp(2.6rem, 6.4vw, 4.35rem);
  margin-bottom: 1.25rem;
}

.hero h1 .decay { color: var(--state); transition: color 1200ms ease; }

.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--muted);
  max-width: 46ch;
  margin-bottom: 2rem;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; }

.hero-note {
  margin-top: 1.5rem;
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--dim);
  letter-spacing: 0.02em;
}

/* ---------- the live phone ---------- */

.phone {
  position: relative;
  width: min(320px, 82vw);
  margin-inline: auto;
  aspect-ratio: 9 / 18.5;
  background: #0A0611;
  border: 2px solid #2C2140;
  border-radius: 38px;
  padding: 9px;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.6),
    0 40px 80px -30px rgba(0, 0, 0, 0.9),
    0 0 90px -20px color-mix(in srgb, var(--state) 40%, transparent);
  transition: box-shadow 1200ms ease;
}

.phone-screen {
  position: relative;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: #F2F3F5;
}

.phone-notch {
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 34%; height: 20px;
  background: #0A0611;
  border-radius: 999px;
  z-index: 5;
}

/* a deliberately generic feed: no real app, no real content */
.feed { position: absolute; inset: 0; }

/* the overlay */
.knight {
  position: absolute;
  left: 13%;
  top: 40%;
  width: 34%;
  z-index: 4;
  transition: width 1200ms ease, top 1200ms ease;
}

.knight-halo {
  position: absolute;
  inset: -22%;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--state) 42%, transparent) 0%, transparent 70%);
  transition: background 1200ms ease;
}

.knight-art { position: relative; }
.knight-art > svg { display: block; width: 100%; height: auto; }

.knight-art > svg + svg { position: absolute; inset: 0; }

.knight-art svg { opacity: 0; transition: opacity 900ms ease; }
.knight-art svg.on { opacity: 1; }

/* the knight's own nudge, spoken over the app he is watching */
.nudge {
  position: absolute;
  left: -18%;
  width: 200%;
  max-width: 232px;
  bottom: 128%;
  margin: 0;
  z-index: 6;
  background: rgba(14, 8, 22, 0.94);
  border: 1px solid color-mix(in srgb, var(--state) 50%, transparent);
  color: #F0EAF9;
  border-radius: 14px;
  padding: 0.72em 0.9em;
  font-size: clamp(0.66rem, 1.6vw, 0.78rem);
  line-height: 1.42;
  text-align: left;
  box-shadow: 0 14px 30px -14px rgba(0, 0, 0, 0.9);
  transition: opacity 550ms ease, transform 550ms ease, border-color 1200ms ease;
}

.nudge::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 30%;
  border: 7px solid transparent;
  border-top-color: rgba(14, 8, 22, 0.94);
}

.nudge.hide { opacity: 0; transform: translateY(-5px); }

@media (prefers-reduced-motion: reduce) { .nudge { transition: none; } }

.knight-clock {
  position: absolute;
  left: 50%;
  bottom: -14%;
  transform: translateX(-50%);
  background: rgba(18, 10, 26, 0.88);
  color: #fff;
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
  font-size: clamp(0.68rem, 2.1vw, 0.8rem);
  font-weight: 600;
  padding: 0.28em 0.85em;
  border-radius: 999px;
  white-space: nowrap;
}

.phone-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 6;
  padding: 1.1rem 1.15rem 1.25rem;
  background: linear-gradient(to bottom, rgba(18, 10, 31, 0), rgba(18, 10, 31, 0.94) 42%);
  text-align: center;
}

.phone-caption .state {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--state);
  transition: color 1200ms ease;
  display: block;
}

.phone-caption .line {
  font-size: 0.85rem;
  color: var(--muted);
  display: block;
  margin-top: 0.15rem;
}

/* ---------- escalation rail ---------- */

.rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}

@media (max-width: 760px) { .rail { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .rail { grid-template-columns: 1fr; } }

.stage {
  background: var(--card);
  padding: 1.75rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  position: relative;
}

.stage::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--stage-color);
}

.stage-figure {
  width: 74px;
  filter: drop-shadow(0 0 18px color-mix(in srgb, var(--stage-color) 45%, transparent));
}
.stage-figure svg { display: block; width: 100%; height: auto; }

.stage-time {
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--stage-color);
  letter-spacing: 0.01em;
}

.stage h3 { font-size: 1.18rem; }

.stage p { color: var(--muted); font-size: 0.93rem; line-height: 1.55; }

.sub-head {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  margin-bottom: 1.75rem;
  display: grid;
  gap: 0.6rem;
}
.sub-head h3 { font-family: var(--display); font-weight: 700; font-size: clamp(1.35rem, 3vw, 1.8rem); }
.sub-head p { color: var(--muted); max-width: 54ch; }

.chips + .shots { margin-top: 2.5rem; }

/* ---------- feature columns ---------- */

.cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.25rem 2.5rem;
}

.col h3 { font-size: 1.2rem; margin-bottom: 0.55rem; }
.col p { color: var(--muted); font-size: 0.95rem; }

.col-mark {
  width: 28px; height: 28px;
  margin-bottom: 1rem;
  color: var(--violet);
}
.col-mark svg { display: block; width: 100%; height: 100%; }

/* ---------- phrase deck ---------- */

.deck-panel {
  background: linear-gradient(160deg, var(--card) 0%, var(--ink-2) 100%);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(1.75rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
}

@media (max-width: 640px) {
  .deck-panel { grid-template-columns: 1fr; text-align: left; }
}

.deck-figure { width: clamp(74px, 12vw, 104px); }
.deck-figure svg { display: block; width: 100%; height: auto; }

.deck-bubble {
  position: relative;
  background: var(--card-2);
  border: 1px solid var(--line-2);
  border-radius: 20px;
  padding: clamp(1.1rem, 2.5vw, 1.6rem) clamp(1.25rem, 3vw, 1.9rem);
}

/* the tail points back at the knight: sideways on wide screens, upward when stacked */
.deck-bubble::before,
.deck-bubble::after {
  content: "";
  position: absolute;
  right: 100%;
  top: 2.6rem;
  border: 11px solid transparent;
  border-right-color: var(--line-2);
}
.deck-bubble::after {
  margin-right: -1px;
  border-right-color: var(--card-2);
}

@media (max-width: 640px) {
  .deck-bubble::before,
  .deck-bubble::after {
    right: auto;
    left: 2.2rem;
    top: auto;
    bottom: 100%;
    border-right-color: transparent;
    border-bottom-color: var(--line-2);
  }
  .deck-bubble::after {
    margin-right: 0;
    margin-bottom: -1px;
    border-bottom-color: var(--card-2);
  }
}

.deck-quote {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.3rem, 3vw, 1.95rem);
  line-height: 1.28;
  margin: 0;
  min-height: 2.4em;
  display: flex;
  align-items: center;
  transition: opacity 400ms ease;
}
.deck-quote.fade { opacity: 0; }

.deck-meta {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.03em;
}

/* ---------- privacy denials ---------- */

.denials { display: grid; gap: 0; border-top: 1px solid var(--line); }

.denial {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 1rem;
  align-items: baseline;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
}

.denial .no {
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--doomed);
  letter-spacing: 0.02em;
}

.denial p { font-size: 1rem; }
.denial p strong { font-weight: 600; color: var(--text); }

/* ---------- pro ---------- */

.pro-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 860px) { .pro-grid { grid-template-columns: 1fr; } }

.pro-list { display: grid; gap: 1.5rem; margin: 0; padding: 0; list-style: none; }

.pro-list-wide {
  grid-template-columns: repeat(2, 1fr);
  gap: 2.25rem 3.5rem;
  max-width: 62rem;
}

@media (max-width: 720px) { .pro-list-wide { grid-template-columns: 1fr; } }

.pro-free {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 62ch;
}

.pro-list h3 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.pro-list p { color: var(--muted); font-size: 0.95rem; }

/* ---------- tracked apps ---------- */

.chips { display: flex; flex-wrap: wrap; gap: 0.55rem; }

.chip {
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 0.42em 0.95em;
  font-size: 0.9rem;
  color: var(--muted);
  background: var(--card);
}

/* ---------- shots ---------- */

.shots {
  display: flex;
  gap: 1.15rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--line-2) transparent;
}

.shots img {
  width: 232px;
  height: auto;      /* the width/height attributes are presentation hints; without this the intrinsic height sticks */
  aspect-ratio: 1080 / 1920;
  flex: 0 0 auto;
  border-radius: 16px;
  border: 1px solid var(--line);
  scroll-snap-align: start;
  background: var(--card);
}

/* ---------- closing cta ---------- */

.closer {
  text-align: center;
  display: grid;
  gap: 1.5rem;
  justify-items: center;
}
.closer h2 { font-size: clamp(1.9rem, 5vw, 3rem); max-width: 18ch; }
.closer p { color: var(--muted); max-width: 46ch; }

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

.site-foot {
  border-top: 1px solid var(--line);
  padding-block: 2.5rem 3.5rem;
  color: var(--dim);
  font-size: 0.9rem;
}

.foot-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: space-between;
}

.foot-links { display: flex; flex-wrap: wrap; gap: 1.35rem; }
.foot-links a { color: var(--muted); text-decoration: none; }
.foot-links a:hover { color: var(--text); }

/* ---------- document pages (privacy, delete, support) ---------- */

.doc { padding-block: clamp(2.5rem, 6vw, 4rem) var(--gutter); }

.doc-head { margin-bottom: 2.5rem; display: grid; gap: 0.6rem; }
.doc-head h1 { font-size: clamp(2rem, 5vw, 2.9rem); }
.doc-head .sub { color: var(--muted); font-size: 1.05rem; }

.doc-body { max-width: 68ch; }

.doc-body h2 {
  font-size: 1.28rem;
  margin-top: 2.75rem;
  margin-bottom: 0.85rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.doc-body h2:first-child { margin-top: 0; border-top: 0; padding-top: 0; }

.doc-body h3 { font-size: 1.05rem; margin-top: 1.75rem; margin-bottom: 0.5rem; }

.doc-body p { margin-bottom: 1rem; color: #DCD3EC; }
.doc-body ul { margin: 0 0 1.25rem; padding-left: 1.15rem; color: #DCD3EC; }
.doc-body li { margin-bottom: 0.5rem; }
.doc-body li::marker { color: var(--violet); }

.doc-body strong { color: var(--text); font-weight: 600; }

.callout {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: 0 14px 14px 0;
  padding: 1.25rem 1.35rem;
  margin: 1.75rem 0;
}
.callout p:last-child { margin-bottom: 0; }
.callout h3 { margin-top: 0; }

.updated {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  color: var(--dim);
}

.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;
}

/* ---------- consent banner ---------- */

.consent {
  position: fixed;
  left: 50%;
  bottom: 1.25rem;
  z-index: 100;
  width: min(640px, calc(100vw - 2rem));
  transform: translate(-50%, 130%);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  background: var(--card);
  border: 1px solid var(--line-2);
  border-radius: 16px;
  padding: 1.1rem 1.25rem;
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.85);
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.consent.show { transform: translate(-50%, 0); }

.consent p { font-size: 0.88rem; color: var(--muted); flex: 1 1 18rem; margin: 0; }

.consent-actions { display: flex; gap: 0.6rem; margin-left: auto; }

@media (prefers-reduced-motion: reduce) {
  .consent { transition: none; transform: translate(-50%, 0); }
}

/* ---------- blog ---------- */

.post-list { display: grid; gap: 0; border-top: 1px solid var(--line); }

.post-item {
  display: grid;
  grid-template-columns: 8.5rem 1fr;
  gap: 0.35rem 2rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}

@media (max-width: 640px) {
  .post-item { grid-template-columns: 1fr; gap: 0.5rem; }
}

.post-item time {
  font-family: var(--mono);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  color: var(--dim);
  text-transform: uppercase;
}

.post-item h2 { font-size: clamp(1.15rem, 2.4vw, 1.45rem); margin-bottom: 0.4rem; }

.post-item h2 a { color: var(--text); text-decoration: none; }
.post-item h2 a:hover { color: var(--gold); }

.post-item p { color: var(--muted); font-size: 0.95rem; max-width: 60ch; }

.post-tag {
  display: inline-block;
  margin-top: 0.6rem;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--violet);
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.25rem;
  align-items: center;
  font-family: var(--mono);
  font-size: 0.76rem;
  letter-spacing: 0.03em;
  color: var(--dim);
  margin-top: 0.75rem;
}

/* the short answer block that leads every post, for readers and for answer engines */
.answer {
  background: linear-gradient(160deg, var(--card) 0%, var(--ink-2) 100%);
  border: 1px solid var(--line-2);
  border-left: 3px solid var(--gold);
  border-radius: 0 16px 16px 0;
  padding: 1.35rem 1.5rem;
  margin: 0 0 2.5rem;
}

.answer p { margin-bottom: 0; color: #E6DDF5; }
.answer p + p { margin-top: 0.75rem; }

.answer .label {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}

.doc-body ol { margin: 0 0 1.25rem; padding-left: 1.3rem; color: #DCD3EC; }
.doc-body ol li { margin-bottom: 0.6rem; }
.doc-body ol li::marker { color: var(--violet); font-family: var(--mono); font-size: 0.9em; }

.doc-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 1.5rem;
  font-size: 0.93rem;
}
.doc-body table th,
.doc-body table td {
  text-align: left;
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.doc-body table th {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
  font-weight: 600;
}
.doc-body table td strong { color: var(--text); }

.table-scroll { overflow-x: auto; }

.post-cta {
  margin-top: 3rem;
  padding: 1.75rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  display: grid;
  gap: 1rem;
  justify-items: start;
}
.post-cta h3 { font-size: 1.15rem; }
.post-cta p { color: var(--muted); margin-bottom: 0; }

.post-nav {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}
