/* ============================================================
   SQLite Expert — v6 site stylesheet  (direction C, "The IDE")
   Theming: light tokens on :root; dark tokens under .dark-mode
   (js/dark-mode.js toggles body.dark-mode; html.dark-mode is the
   anti-flash default set in each page head).
   ============================================================ */

:root {
  --bg: #eef1f6;
  --surface: #ffffff;
  --panel: #e7ebf2;
  --panel-2: #dde3ec;
  --line: #d3dae4;
  --line-2: #b7c1cf;
  --text: #101720;
  --muted: #566270;
  --accent: #0e8fa3;          /* deep teal-cyan */
  --accent-2: #0b7183;
  --accent-ink: #04222a;      /* text on accent */
  --accent-dim: #d7eef1;
  --kw: #0f52ba; --fn: #7b3fb0; --str: #197a3e; --num: #b5480a; --com: #8592a0;
  --ok: #197a3e;
  --shadow-lg: 0 30px 70px -30px rgba(16,23,32,.35);
  --sans: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --mono: "Cascadia Code", "Consolas", ui-monospace, SFMono-Regular, Menlo, monospace;
  --maxw: 1160px;
}
:root.dark-mode, body.dark-mode {
  --bg: #0b0f15;
  --surface: #10151d;
  --panel: #141b25;
  --panel-2: #1a222e;
  --line: #232d3a;
  --line-2: #33404f;
  --text: #d9e2ec;
  --muted: #8695a6;
  --accent: #26c6da;
  --accent-2: #5cd7e6;
  --accent-ink: #04222a;
  --accent-dim: #10242a;
  --kw: #7aa2ff; --fn: #cba6ff; --str: #7ee0a0; --num: #ffb877; --com: #63707f;
  --ok: #57cc82;
  --shadow-lg: 0 30px 70px -30px rgba(0,0,0,.6);
}

* { box-sizing: border-box; }
html { background: var(--bg); }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font-family: var(--sans); line-height: 1.6; -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 26px; }
.mono { font-family: var(--mono); }

/* buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-weight: 600; font-size: .94rem;
  padding: 10px 18px; border-radius: 8px; border: 1px solid transparent;
  cursor: pointer; transition: transform .12s ease, background .15s ease, border-color .15s ease;
}
.btn.primary { background: var(--accent); color: var(--accent-ink); }
.btn.primary:hover { background: var(--accent-2); transform: translateY(-1px); text-decoration: none; }
.btn.ghost { background: transparent; color: var(--text); border-color: var(--line-2); }
.btn.ghost:hover { background: var(--panel); text-decoration: none; }

/* dark-mode toggle (floating) */
#darkModeToggle {
  position: fixed; top: 14px; right: 16px; z-index: 40;
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--line-2); background: var(--surface); color: var(--text);
  font-size: 15px; line-height: 1; cursor: pointer;
  display: grid; place-items: center; box-shadow: 0 4px 14px -6px rgba(0,0,0,.3);
}
#darkModeToggle:hover { border-color: var(--accent); }

/* top bar */
header.top { border-bottom: 1px solid var(--line); background: var(--bg); position: sticky; top: 0; z-index: 20; }
.top .wrap { display: flex; align-items: center; gap: 22px; height: 60px; position: relative; }
.brand { display: flex; align-items: center; gap: 9px; font-weight: 700; letter-spacing: -.01em; color: var(--text); }
.brand:hover { text-decoration: none; }
.brand .mk { width: 22px; height: 22px; border-radius: 6px; background: var(--accent); display: grid; place-items: center; color: var(--accent-ink); font-family: var(--mono); font-weight: 700; font-size: 13px; }
nav.main { margin-left: auto; display: flex; align-items: center; gap: 20px; }
nav.main a { color: var(--muted); font-size: .9rem; }
nav.main a:hover { color: var(--text); text-decoration: none; }
nav.main a.active { color: var(--text); }
/* hamburger button — shown only on small screens */
.nav-toggle { display: none; }

/* Reserve room on the right while the header spans the viewport (<= --maxw + padding)
   so the floating dark-mode toggle never overlaps the Download CTA or the hamburger. */
@media (max-width: 1212px) { header.top .wrap { padding-right: 62px; } }

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    margin-left: auto; width: 42px; height: 38px; padding: 9px 8px;
    background: transparent; border: 1px solid var(--line-2); border-radius: 8px; cursor: pointer;
  }
  .nav-toggle span { display: block; width: 100%; height: 2px; background: var(--text); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* the nav becomes a dropdown panel under the header */
  nav.main {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0; margin-left: 0;
    padding: 6px 0; background: var(--bg);
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow-lg);
    display: none;
  }
  nav.main.open { display: flex; }
  nav.main a { padding: 12px 26px; font-size: 1rem; color: var(--text); }
  nav.main a.active { color: var(--accent); }
  nav.main a.cta { margin: 8px 26px 6px; justify-content: center; }
}

/* hero */
.hero { padding: 54px 0 20px; text-align: center; }
.tagline { font-family: var(--mono); font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); }
.hero h1 { font-size: clamp(2rem, 4.4vw, 3.1rem); line-height: 1.08; letter-spacing: -.025em; font-weight: 700; margin: 16px auto 0; max-width: 18ch; text-wrap: balance; }
.hero p.lede { color: var(--muted); font-size: 1.1rem; max-width: 56ch; margin: 18px auto 0; }
.cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin: 26px 0 0; }
.hero .meta { font-family: var(--mono); font-size: .76rem; color: var(--muted); margin-top: 16px; }

/* app-window frame: the hero screenshot, painted one file pixel to one
   screen pixel or not at all. */
.ide {
  /* 1442, not the wrap's 1108. box-sizing is border-box for everything on this
     page, so max-width sizes the border box: 1442 less a pixel of border each
     side leaves exactly 1440 of picture, which is the width the screenshot was
     taken at. At 150% the browser takes the 2160 capture into the same frame
     and that is one to one as well. 1108 could never be: no capture is that
     wide, so the file had to be cut down to fit, and a resampled screenshot is
     soft however carefully the browser then paints it.

     This is the no-script fallback and the starting point: the script at the
     foot of the hero then sets an exact width from the display's pixel ratio,
     because 1440 only divides evenly at 100% and 150% and Windows also offers
     125%, 175%, 225% and the rest. Below about 1490px of viewport the frame
     gives way to the gutters and the picture is scaled down -- the same
     bargain the rest of the page makes below 1140. */
  margin: 40px auto 0; max-width: min(1442px, calc(100% - 52px));
  background: var(--surface); border: 1px solid var(--line-2); border-radius: 12px;
  overflow: hidden; box-shadow: var(--shadow-lg); font-family: var(--mono);
}
/* when a real screenshot is dropped in: <img class="shot ..."> fills the frame */
.ide > .shot { width: 100%; height: auto; display: none; }
.ide > .shot.shot-light { display: block; }
.dark-mode .ide > .shot.shot-light { display: none; }
.dark-mode .ide > .shot.shot-dark { display: block; }

/* --- placeholder mockup (remove once real screenshots are wired) --- */
.ide .titlebar { display: flex; align-items: center; gap: 12px; background: var(--panel-2); border-bottom: 1px solid var(--line); padding: 0 12px; height: 38px; }
.ide .dots { display: flex; gap: 6px; }
.ide .dots i { width: 11px; height: 11px; border-radius: 50%; background: var(--line-2); display: block; }
.ide .tabs { display: flex; gap: 2px; margin-left: 6px; font-size: 12px; }
.ide .tab { padding: 6px 12px; color: var(--muted); border-top: 2px solid transparent; }
.ide .tab.on { color: var(--text); background: var(--surface); border-top: 2px solid var(--accent); }
.ide .title { margin-left: auto; color: var(--muted); font-size: 12px; }
.ide .stage { display: grid; grid-template-columns: 180px 1fr; min-height: 340px; }
@media (max-width: 640px) { .ide .stage { grid-template-columns: 0 1fr; } .ide .tree { display: none; } }
.ide .tree { border-right: 1px solid var(--line); background: var(--panel); padding: 12px 10px; font-size: 12.5px; }
.ide .tree .grp { color: var(--muted); text-transform: uppercase; letter-spacing: .1em; font-size: 10px; margin: 0 0 8px; }
.ide .tree ul { list-style: none; margin: 0; padding: 0; }
.ide .tree li { padding: 4px 8px; color: var(--muted); border-radius: 5px; }
.ide .tree li b { color: var(--text); font-weight: 600; }
.ide .tree li.on { background: var(--accent-dim); color: var(--accent); }
.ide .main { display: flex; flex-direction: column; min-width: 0; }
.ide .toolbar { display: flex; align-items: center; gap: 14px; height: 34px; padding: 0 14px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 11px; }
.ide .toolbar .run { color: var(--accent); font-weight: 700; }
.ide .editor { padding: 16px 18px; font-size: 13px; line-height: 1.75; white-space: pre; overflow-x: auto; border-bottom: 1px solid var(--line); tab-size: 2; text-align: left; }
.kw { color: var(--kw); } .fn { color: var(--fn); } .str { color: var(--str); } .num { color: var(--num); } .com { color: var(--com); font-style: italic; } .pun { color: var(--muted); }
.ide .result { overflow-x: auto; }
.ide table { width: 100%; border-collapse: collapse; font-size: 12.5px; font-variant-numeric: tabular-nums; }
.ide th, .ide td { text-align: left; padding: 7px 16px; border-bottom: 1px solid var(--line); white-space: nowrap; }
.ide th { background: var(--panel); color: var(--muted); font-weight: 600; font-size: 10.5px; text-transform: uppercase; letter-spacing: .06em; }
.ide td.n { text-align: right; }
.ide tr:last-child td { border-bottom: 0; }
.ide .statusbar { display: flex; align-items: center; gap: 18px; height: 30px; padding: 0 14px; background: var(--panel-2); border-top: 1px solid var(--line); color: var(--muted); font-size: 11px; }
.ide .statusbar .ok { color: var(--ok); }
.ide .statusbar .sp { margin-left: auto; }

/* stats strip */
.stats { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-top: 56px; }
.stats .wrap { display: grid; grid-template-columns: repeat(4, 1fr); }
@media (max-width: 640px) { .stats .wrap { grid-template-columns: 1fr 1fr; } }
.stat { padding: 26px 8px; text-align: center; }
.stat + .stat { border-left: 1px solid var(--line); }
@media (max-width: 640px) { .stat:nth-child(3) { border-left: 0; } .stat:nth-child(n+3) { border-top: 1px solid var(--line); } }
.stat .v { font-family: var(--mono); font-size: 1.7rem; font-weight: 700; color: var(--accent); letter-spacing: -.02em; }
.stat .k { color: var(--muted); font-size: .82rem; margin-top: 4px; }

/* sections */
section { padding: 70px 0; }
.sec-head { text-align: center; max-width: 60ch; margin: 0 auto; }
.sec-head h2 { font-size: clamp(1.5rem, 3vw, 2rem); letter-spacing: -.02em; margin: 12px 0 0; text-wrap: balance; }
.sec-head p { color: var(--muted); margin: 12px auto 0; }

/* features */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
@media (max-width: 900px) { .features { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .features { grid-template-columns: 1fr; } }
.feat { background: var(--surface); border: 1px solid var(--line); border-radius: 10px; padding: 20px; transition: border-color .14s ease, transform .14s ease; }
.feat:hover { border-color: var(--accent); transform: translateY(-2px); }
.feat .k { font-family: var(--mono); font-size: .7rem; letter-spacing: .1em; color: var(--accent); }
.feat h3 { font-size: 1.06rem; margin: 10px 0 7px; letter-spacing: -.01em; }
.feat p { color: var(--muted); font-size: .94rem; margin: 0; }

/* showcase (query builder / designer screenshots) */
.showcase { border-top: 1px solid var(--line); }
.shots { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 40px; }
@media (max-width: 760px) { .shots { grid-template-columns: 1fr; } }
.shotcard { border: 1px solid var(--line); border-radius: 12px; overflow: hidden; background: var(--surface); }
.shotcard .cap { padding: 14px 18px; border-top: 1px solid var(--line); }
.shotcard .cap h3 { margin: 0 0 3px; font-size: 1rem; }
.shotcard .cap p { margin: 0; color: var(--muted); font-size: .9rem; }
.shotcard .media { position: relative; aspect-ratio: 16 / 9; background: var(--panel); }
.shotcard .media .shot { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: none; }
.shotcard .media .shot.shot-light { display: block; }
.dark-mode .shotcard .media .shot.shot-light { display: none; }
.dark-mode .shotcard .media .shot.shot-dark { display: block; }
/* placeholder label shown behind the (missing) images */
.shotcard .media::after {
  content: attr(data-ph); position: absolute; inset: 0; z-index: 0;
  display: grid; place-items: center; text-align: center; padding: 20px;
  white-space: pre-line; line-height: 1.7;
  font-family: var(--mono); font-size: .78rem; color: var(--muted);
  background:
    repeating-linear-gradient(45deg, transparent 0 14px, color-mix(in srgb, var(--line) 60%, transparent) 14px 15px);
}
.shotcard .media .shot { z-index: 1; }
/* hide a screenshot that hasn't been dropped in yet (onerror), so the
   dashed placeholder label shows instead of a broken-image icon */
.shot.broken { display: none !important; }

/* cta band */
.cta-band { text-align: center; border-top: 1px solid var(--line); }
.cta-band .prompt { font-family: var(--mono); color: var(--muted); font-size: .9rem; }
.cta-band .prompt b { color: var(--accent); }
.cta-band h2 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); letter-spacing: -.02em; margin: 12px auto 0; max-width: 20ch; text-wrap: balance; }
.cta-band .cta-row { margin-top: 24px; }

/* footer */
footer.site { border-top: 1px solid var(--line); padding: 28px 0 44px; }
footer.site .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px 20px; align-items: center; }
footer.site .links a { color: var(--muted); font-size: .9rem; }
footer.site .links a:hover { color: var(--text); text-decoration: none; }
footer.site .copy { font-family: var(--mono); font-size: .74rem; color: var(--muted); }

/* motion */
.reveal { opacity: 0; transform: translateY(12px); animation: rise .7s cubic-bezier(.2,.7,.2,1) forwards; }
.reveal.d1 { animation-delay: .06s; } .reveal.d2 { animation-delay: .14s; } .reveal.d3 { animation-delay: .22s; }
@keyframes rise { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .reveal { animation: none; opacity: 1; transform: none; } }

/* ============================================================
   Subpage components (features, pricing, support, screenshots,
   download, faq, privacy, history)
   ============================================================ */

.page-hero { padding: 56px 0 22px; border-bottom: 1px solid var(--line); text-align: center; }
.page-hero .tagline { display: block; }
.page-hero h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); letter-spacing: -.025em; margin: 14px auto 0; max-width: 22ch; text-wrap: balance; }
.page-hero p.lede { color: var(--muted); font-size: 1.08rem; max-width: 62ch; margin: 16px auto 0; }

.prose { max-width: 760px; margin: 0 auto; }
.prose > :first-child { margin-top: 0; }
.prose h2 { font-size: 1.4rem; letter-spacing: -.01em; margin: 1.9em 0 .5em; }
.prose h3 { font-size: 1.1rem; margin: 1.6em 0 .4em; }
.prose p { margin: 0 0 1em; }
.prose ul, .prose ol { margin: 0 0 1.2em; padding-left: 1.3em; display: flex; flex-direction: column; gap: .45em; }
.prose code { font-family: var(--mono); font-size: .9em; background: var(--panel); padding: 2px 6px; border-radius: 5px; }
.prose hr { border: 0; border-top: 1px solid var(--line); margin: 2em 0; }
.prose .muted { color: var(--muted); }

.callout { border: 1px solid var(--line); border-left: 3px solid var(--accent); background: var(--panel); border-radius: 10px; padding: 16px 20px; margin: 1.4em 0; }

/* pricing */
.plans { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 820px; margin: 42px auto 0; }
@media (max-width: 720px) { .plans { grid-template-columns: 1fr; } }
.plan { border: 1px solid var(--line); border-radius: 14px; background: var(--surface); padding: 28px; display: flex; flex-direction: column; }
.plan.highlight { border-color: color-mix(in srgb, var(--accent) 45%, var(--line)); }
.plan .name { font-family: var(--mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }
.plan h3 { font-size: 1.18rem; margin: 8px 0 2px; }
.plan .price { font-size: 2.1rem; font-weight: 700; letter-spacing: -.02em; margin: 12px 0 2px; font-variant-numeric: tabular-nums; }
.plan .price small { font-size: .82rem; font-weight: 400; color: var(--muted); }
.plan .note { color: var(--muted); font-size: .9rem; margin: 0 0 18px; }
.plan ul { list-style: none; margin: 0 0 22px; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.plan li { position: relative; padding-left: 24px; }
.plan li::before { content: ""; position: absolute; left: 0; top: .5em; width: 12px; height: 7px; border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: rotate(-45deg); }
.plan .foot { margin-top: auto; }

/* faq */
.faq { max-width: 760px; margin: 38px auto 0; }
.faq details { border-bottom: 1px solid var(--line); padding: 16px 2px; }
.faq summary { cursor: pointer; font-weight: 600; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--accent); font-family: var(--mono); font-size: 1.1rem; }
.faq details[open] summary::after { content: "\2013"; }
.faq details p { color: var(--muted); margin: 12px 0 0; }

/* gallery */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
@media (max-width: 820px) { .gallery { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .gallery { grid-template-columns: 1fr; } }
.gallery a { border: 1px solid var(--line); border-radius: 10px; overflow: hidden; background: var(--surface); display: block; transition: border-color .14s ease, transform .14s ease; }
.gallery a:hover { border-color: var(--accent); transform: translateY(-2px); text-decoration: none; }
.gallery img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block; background: var(--panel); }
/* Both skins are in the page and the theme decides which one shows. A media
   query would not do: the switch in the header sets a class and remembers it,
   so what the reader chose has to win over what their system prefers. */
.gallery img.shot-dark { display: none; }
.dark-mode .gallery img.shot-light { display: none; }
.dark-mode .gallery img.shot-dark { display: block; }
.gallery .cap { padding: 11px 14px; font-size: .88rem; color: var(--muted); }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 1000; display: none; align-items: center; justify-content: center; padding: 24px; background: rgba(6, 10, 16, .86); cursor: zoom-out; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 8px; box-shadow: 0 20px 60px rgba(0, 0, 0, .5); cursor: zoom-out; }
.lightbox-close { position: absolute; top: 16px; right: 20px; width: 40px; height: 40px; padding: 0; border: 0; border-radius: 8px; background: rgba(255, 255, 255, .12); color: #fff; font-size: 1.6rem; line-height: 1; cursor: pointer; }
.lightbox-close:hover { background: rgba(255, 255, 255, .22); }

/* comparison table */
.cmp-wrap { max-width: 760px; margin: 40px auto 0; overflow-x: auto; }
.cmp { width: 100%; border-collapse: collapse; }
.cmp th, .cmp td { padding: 12px 16px; border-bottom: 1px solid var(--line); text-align: left; }
.cmp thead th { font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
.cmp td.c, .cmp th.c { text-align: center; width: 22%; }
.cmp .yes { color: var(--ok); font-weight: 700; }
.cmp .no { color: var(--muted); }
.cmp tbody tr:hover { background: color-mix(in srgb, var(--panel) 50%, transparent); }

/* download */
.dl { max-width: 860px; margin: 38px auto 0; display: flex; flex-direction: column; gap: 20px; }
.dlcard { border: 1px solid var(--line); border-radius: 14px; background: var(--surface); overflow: hidden; }
.dlcard.current { border-color: color-mix(in srgb, var(--accent) 40%, var(--line)); }
.dlcard .hd { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 14px; padding: 18px 22px; border-bottom: 1px solid var(--line); }
.dlcard .hd h3 { margin: 0; font-size: 1.15rem; }
.dlcard .hd .v { font-family: var(--mono); font-size: .8rem; color: var(--muted); }
.dlcard .hd .tag { margin-left: auto; font-family: var(--mono); font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; padding: 4px 9px; border-radius: 999px; background: var(--accent-dim); color: var(--accent); }
.dlrow { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 16px; padding: 13px 22px; border-bottom: 1px solid var(--line); }
.dlrow:last-child { border-bottom: 0; }
.dlrow .os { flex: 1; min-width: 220px; }
.dlrow .md5 a { font-family: var(--mono); font-size: .8rem; }
.section-alt { background: color-mix(in srgb, var(--panel) 45%, var(--bg)); }

/* legacy-content compatibility — used only by reskinned privacy/history
   pages where the original Bootstrap markup is wrapped in .prose.legacy */
.prose.legacy .container, .prose.legacy .row, .prose.legacy [class^="col-"],
.prose.legacy .panel, .prose.legacy .panel-body, .prose.legacy .blog-content,
.prose.legacy article, .prose.legacy .sqlite-order-detail {
  display: block; width: auto; max-width: none; margin: 0; padding: 0; float: none;
}
.prose.legacy .section-heading { text-align: left; margin-bottom: .5em; }
.prose.legacy .h2, .prose.legacy .blogpost-title {
  font-size: 1.4rem; font-weight: 600; letter-spacing: -.01em; margin: 1.9em 0 .5em; display: block;
}
.prose.legacy .h3 { font-size: 1.1rem; font-weight: 600; margin: 1.6em 0 .4em; display: block; }
.prose.legacy .wow { visibility: visible !important; opacity: 1 !important; }
.prose.legacy .faq-orange, .prose.legacy [class^="ion-"], .prose.legacy .pull-right,
.prose.legacy .buy_button { display: none; }
.prose.legacy hr { border: 0; border-top: 1px solid var(--line); margin: 2em 0; }
