/* Shared stylesheet for bnbff SEO landing pages.
   The tokens and components below are copied VERBATIM from the homepage's
   <style> block (webservice/static/index.html) so every marketing page renders
   in the identical visual system: same worksheet background, top bar, hero +
   reconstruction "sheet", section heads, step cards, buttons and footer. The
   landing-only sections (scope, FAQ, related, final CTA) are built from the same
   tokens and component idioms. Served from /landing.css and cached.

   Keep in sync with index.html: if the homepage's shared components change,
   mirror the change here. */

/* ---- tokens (verbatim from homepage) ---- */
:root {
  --paper:    #ECEEE7;
  --paper-2:  #F6F7F3;
  --cell:     #FBFCF9;
  --ink:      #17201C;
  --ink-soft: #55605A;
  --ink-faint:#656E67;
  --rule:     #CBD2C6;
  --rule-strong:#B4BDB1;
  --accent:   #1F6B45;
  --accent-2: #57C08A;
  --accent-ink:#0E3A25;
  --sw-a: #B4552F;  /* thumbnail swatches — stand in for photos */
  --sw-b: #6E68B8;
  --sw-c: #3E8FB0;
  --sw-d: #C89A3C;
  --bad:  #B4552F;
  --shadow: 0 1px 0 var(--rule), 0 18px 40px -24px rgba(23,32,28,.45);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  /* faint worksheet grid, ambient */
  background-image:
    linear-gradient(to right, rgba(23,32,28,.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(23,32,28,.035) 1px, transparent 1px);
  background-size: 34px 34px;
  color: var(--ink);
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-weight: 450;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.mono { font-family: "IBM Plex Mono", ui-monospace, monospace; }
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ---- top bar: like a spreadsheet toolbar / formula bar (verbatim) ---- */
.bar {
  display: flex; align-items: center; gap: 16px;
  border-bottom: 1px solid var(--rule);
  background: var(--paper-2);
  position: sticky; top: 0; z-index: 20;
}
.bar__in { display: flex; align-items: center; gap: 16px; width: 100%;
  max-width: 1140px; margin: 0 auto; padding: 13px 24px; }
.brand { display: flex; align-items: baseline; gap: 9px; font-family: "Archivo";
  font-weight: 800; letter-spacing: -.02em; font-size: 20px; color: var(--ink); text-decoration: none; }
.brand__dot { width: 11px; height: 11px; background: var(--accent);
  box-shadow: 2px 2px 0 var(--accent-2); display: inline-block; }
.bar__ref { margin-left: auto; font-size: 12.5px; color: var(--ink-faint);
  letter-spacing: .02em; }
.bar__ref b { color: var(--accent); font-weight: 500; }

/* ---- hero (verbatim homepage two-column treatment) ---- */
.hero { display: grid; grid-template-columns: 1.02fr .98fr; gap: 46px;
  align-items: center; padding: clamp(40px, 7vw, 92px) 0 clamp(34px, 5vw, 60px); }
.eyebrow { font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent-ink); display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--rule-strong); background: var(--cell);
  padding: 6px 11px; }
.eyebrow::before { content: ""; width: 7px; height: 7px; background: var(--accent-2);
  outline: 1px solid var(--accent); }
h1 { font-family: "Archivo"; font-weight: 800; letter-spacing: -.035em;
  line-height: .98; margin: 22px 0 0; }
h1 .grn { color: var(--accent); }
/* Landing H1s are longer, keyword-led sentences than the homepage's short
   headline, so they use a slightly smaller clamp than index.html's 38–74px —
   same Archivo/weight/tracking DNA, sized to sit in the hero column. */
.hero h1 { font-size: clamp(33px, 4.4vw, 54px); max-width: 17ch; }
/* Lede keeps the homepage class name .lp-lede (a test pins it) but the homepage
   .lede look: same size ramp, muted ink, comfortable measure. */
.lp-lede { font-size: clamp(16px, 1.5vw, 19px); color: var(--ink-soft);
  max-width: 48ch; margin: 22px 0 0; }
.lp-lede code { font-family: "IBM Plex Mono"; font-size: .9em; background: var(--cell);
  border: 1px solid var(--rule); padding: 1px 5px; color: var(--accent-ink); }

/* hero CTA row (uses the homepage .btn) */
.hero-cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 28px; }

/* ---- signature: reconstruction grid (verbatim from homepage) ---- */
.sheet { border: 1px solid var(--rule-strong); background: var(--cell);
  box-shadow: var(--shadow); overflow: hidden; }
.sheet__tab { display: flex; align-items: center; gap: 8px; padding: 9px 12px;
  border-bottom: 1px solid var(--rule); background: var(--paper-2); font-size: 12px;
  color: var(--ink-soft); }
.sheet__tab .d { width: 8px; height: 8px; border-radius: 50%; background: var(--rule-strong); }
.sheet__tab .name { margin-left: 4px; font-family: "IBM Plex Mono"; color: var(--ink); }
.sheet__tab .live { margin-left: auto; color: var(--accent); font-family: "IBM Plex Mono";
  font-size: 11.5px; display: inline-flex; align-items: center; gap: 6px; }
.sheet__tab .live::before { content:""; width:7px; height:7px; background: var(--accent-2);
  border-radius: 50%; box-shadow: 0 0 0 0 rgba(87,192,138,.7); animation: pulse 2.4s infinite; }

.grid { display: grid; grid-template-columns: 34px 1fr 1.5fr 66px 0.9fr;
  font-size: 12.5px; }
.grid > div { border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  padding: 8px 10px; min-height: 38px; display: flex; align-items: center; }
.grid > div:nth-child(5n) { border-right: 0; }
.grid .h { background: var(--paper-2); font-family: "IBM Plex Mono"; font-weight: 500;
  font-size: 10.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft);
  min-height: 30px; }
.grid .c { font-family: "IBM Plex Mono"; color: var(--ink); }
.grid .idx { justify-content: center; color: var(--ink-faint); background: var(--paper-2);
  font-family: "IBM Plex Mono"; font-size: 11px; }
.grid .st { font-size: 11px; }
.pill { font-family: "IBM Plex Mono"; font-size: 10.5px; padding: 2px 7px;
  border: 1px solid var(--rule-strong); color: var(--ink-soft); background: var(--cell); }
.pill.final { color: var(--accent-ink); border-color: var(--accent); background: #E6F1EA; }
.pill.wip   { color: #7a5a12; border-color: #C89A3C; background: #F6EFDD; }
.thumb { width: 26px; height: 18px; border: 1px solid rgba(23,32,28,.25);
  background: linear-gradient(135deg, var(--sw-a), #d98b5f); }
.thumb.b { background: linear-gradient(135deg, var(--sw-b), #9a95d6); }
.thumb.c { background: linear-gradient(135deg, var(--sw-c), #77b6cf); }
.thumb.d { background: linear-gradient(135deg, var(--sw-d), #e0c079); }

/* reveal animation (verbatim) */
.rvl { opacity: 0; transform: translateY(6px); animation: rise .5s cubic-bezier(.2,.7,.2,1) forwards; }
.thumb { opacity: 0; transform: scale(.6); animation: pop .45s cubic-bezier(.2,1.4,.4,1) forwards; }
@keyframes rise { to { opacity: 1; transform: none; } }
@keyframes pop  { to { opacity: 1; transform: none; } }
@keyframes pulse { to { box-shadow: 0 0 0 7px rgba(87,192,138,0); } }

/* ---- buttons (verbatim from homepage) ---- */
.btn { font-family: "Archivo"; font-weight: 700; font-size: 15px; letter-spacing: -.01em;
  border: 1px solid var(--accent-ink); background: var(--accent); color: #F4FBF6;
  padding: 12px 20px; cursor: pointer; transition: transform .08s, box-shadow .12s;
  box-shadow: 3px 3px 0 var(--accent-ink); text-decoration: none; display: inline-block; }
.btn:hover { transform: translate(-1px,-1px); box-shadow: 4px 4px 0 var(--accent-ink); }
.btn:active { transform: translate(1px,1px); box-shadow: 1px 1px 0 var(--accent-ink); }
.btn--ghost { background: var(--cell); color: var(--accent-ink); box-shadow: 3px 3px 0 var(--rule-strong);
  border-color: var(--rule-strong); }
.fineprint { font-size: 12.5px; color: var(--ink-faint); }

/* ---- section heads (verbatim from homepage .sechead) ---- */
.sechead { display: flex; align-items: baseline; gap: 14px; margin-bottom: 26px; }
.sechead .n { font-family: "IBM Plex Mono"; color: var(--accent); font-size: 13px; }
.sechead h2 { font-family: "Archivo"; font-weight: 800; letter-spacing: -.03em;
  font-size: clamp(24px,3.4vw,34px); margin: 0; }

/* Every content section below the hero gets the homepage's ruled-top rhythm. */
.lp-section { padding: clamp(30px,5vw,58px) 0; border-top: 1px solid var(--rule); }

/* ---- how it works: step cards (verbatim from homepage .steps/.step) ---- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--rule-strong);
  background: var(--cell); }
@media (max-width: 760px){ .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px){ .steps { grid-template-columns: 1fr; } }
.step { padding: 20px; border-right: 1px solid var(--rule); }
.step:last-child { border-right: 0; }
@media (max-width: 760px){ .step:nth-child(2){ border-right:0; } .step { border-bottom: 1px solid var(--rule);} }
.step .k { font-family: "IBM Plex Mono"; font-size: 12px; color: var(--ink-faint); }
.step h3 { font-family: "Archivo"; font-weight: 700; font-size: 18px; letter-spacing: -.01em;
  margin: 10px 0 6px; }
.step p { margin: 0; color: var(--ink-soft); font-size: 13.5px; }
.step .price { color: var(--accent); }

/* ---- facts strip (verbatim from homepage .facts/.fact) ---- */
.facts { display: grid; grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--rule-strong); border-bottom: 0; }
@media (max-width: 760px){ .facts { grid-template-columns: 1fr 1fr; } }
.fact { padding: 16px 18px; border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  background: var(--paper-2); }
.fact:last-child { border-right: 0; }
.fact b { display: block; font-family: "Archivo"; font-weight: 700; font-size: 15px; }
.fact span { font-size: 12px; color: var(--ink-soft); }

/* ---- scope box (landing-only, built from the homepage idiom) ---- */
.lp-scope-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px){ .lp-scope-grid { grid-template-columns: 1fr; } }
.lp-scope-card { border: 1px solid var(--rule-strong); background: var(--paper-2); padding: 20px; }
.lp-scope-card h3 { font-family: "Archivo"; font-weight: 700; font-size: 17px; margin: 0 0 8px; }
.lp-scope-card p { margin: 0; color: var(--ink-soft); font-size: 14px; }
.lp-yes { border-left: 3px solid var(--accent); }
.lp-yes h3 { color: var(--accent-ink); }
.lp-no { border-left: 3px solid var(--bad); }
.lp-no h3 { color: var(--bad); }

/* ---- FAQ (landing-only; homepage card idiom) ---- */
.lp-faq-list { display: grid; gap: 14px; }
.lp-faq-item { border: 1px solid var(--rule); background: var(--cell); padding: 16px 18px; }
.lp-faq-item h3 { font-family: "Archivo"; font-weight: 700; font-size: 16px; margin: 0 0 6px; }
.lp-faq-item p { margin: 0; color: var(--ink-soft); font-size: 14px; }

/* ---- GEO question-pages: updated date, comparison table, mechanism ---- */
.lp-updated { margin: 18px 0 0; font-size: 12px; letter-spacing: .06em;
  text-transform: uppercase; color: var(--ink-faint); }

.lp-cmp-wrap { border: 1px solid var(--rule-strong); overflow-x: auto; background: var(--cell); }
.lp-cmp { border-collapse: collapse; width: 100%; min-width: 720px; font-size: 13.5px; }
.lp-cmp th, .lp-cmp td { border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  padding: 12px 14px; text-align: left; vertical-align: top; }
.lp-cmp thead th { background: var(--paper-2); font-family: "IBM Plex Mono"; font-weight: 500;
  font-size: 10.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft);
  white-space: nowrap; }
.lp-cmp tbody th[scope="row"] { font-family: "Archivo"; font-weight: 700; font-size: 14px;
  background: var(--paper-2); color: var(--ink); white-space: nowrap; }
.lp-cmp td { color: var(--ink-soft); }
.lp-cmp tr:last-child th, .lp-cmp tr:last-child td { border-bottom: 0; }
.lp-cmp th:last-child, .lp-cmp td:last-child { border-right: 0; }
/* Our row: highlighted like the "final" pill accent so bnbff reads as the answer. */
.lp-cmp-us th[scope="row"] { color: var(--accent-ink); background: #E6F1EA; border-left: 3px solid var(--accent); }
.lp-cmp-us td { color: var(--ink); background: #EEF6F1; }

.lp-mechanism { font-size: clamp(16px, 1.6vw, 19px); color: var(--ink); max-width: 62ch;
  margin: 0; line-height: 1.55; }

/* ---- final CTA (landing-only) ---- */
.lp-final h2 { font-family: "Archivo"; font-weight: 800; letter-spacing: -.03em;
  font-size: clamp(24px,3.4vw,34px); margin: 0 0 8px; }
.lp-final p { color: var(--ink-soft); max-width: 56ch; margin: 0 0 20px; }

/* ---- related pages (landing-only; homepage box idiom) ---- */
.lp-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 760px){ .lp-related-grid { grid-template-columns: 1fr; } }
.lp-related-card { display: flex; align-items: center; border: 1px solid var(--rule-strong);
  background: var(--paper-2); padding: 16px 18px; text-decoration: none; color: var(--ink);
  font-family: "Archivo"; font-weight: 700; font-size: 15px; letter-spacing: -.01em;
  transition: border-color .12s, background .12s; }
.lp-related-card:hover { border-color: var(--accent); background: #EAF3EE; }

/* ---- footer (verbatim from homepage) ---- */
footer { border-top: 1px solid var(--rule); padding: 26px 0 46px; color: var(--ink-faint);
  font-size: 12.5px; display: flex; gap: 16px; align-items: baseline; flex-wrap: wrap; }
footer .mono b { color: var(--accent); font-weight: 500; }
footer .legal-links { margin-left: auto; }
footer .legal-links a { color: var(--ink-soft); text-decoration: none; }
footer .legal-links a:hover { color: var(--accent); }

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

/* ---- responsive: match the homepage's hero collapse ---- */
@media (max-width: 900px){
  .hero { grid-template-columns: 1fr; gap: 30px; }
  .hero__art { order: 2; }
}
@media (prefers-reduced-motion: reduce){
  .rvl, .thumb { animation: none !important; opacity: 1 !important; transform: none !important; }
  .sheet__tab .live::before { animation: none; }
  .spinner { animation-duration: 1.6s; }
}

/* ============================================================================
   WORKING CONVERTER — verbatim from index.html's inline <style>.
   These rules style the shared /converter.js + /result-boot.js UI so the
   landing-page converter renders identically to the homepage: the upload
   panel, the result/preview area (incl. multi-table blocks), the post-payment
   modal, and the "Your converted files" list. Only rules NOT already defined
   above are copied (e.g. .btn / .btn--ghost / .fineprint / .sechead already
   exist verbatim). KEEP IN SYNC with index.html: if the homepage's converter
   styles change, mirror the change here.
   ============================================================================ */

/* ---- upload panel ---- */
.panel { border: 1px solid var(--rule-strong); background: var(--paper-2);
  box-shadow: var(--shadow); margin-top: 8px; }
.panel__grid { display: grid; grid-template-columns: 1fr; }
.drop { padding: 26px; }
.drop__zone { display: block; border: 1.5px dashed var(--rule-strong); background: var(--cell);
  padding: 30px 22px; text-align: center; transition: border-color .15s, background .15s; cursor: pointer; }
.drop__zone.drag { border-color: var(--accent); background: #EAF3EE; }
.drop__zone h3 { font-family: "Archivo"; font-weight: 700; letter-spacing: -.02em;
  font-size: 19px; margin: 12px 0 4px; }
.drop__zone p { margin: 0; color: var(--ink-soft); font-size: 13.5px; }
.drop__icon { width: 40px; height: 40px; margin: 0 auto; display: grid; place-items: center;
  border: 1px solid var(--rule-strong); background: var(--paper-2); }
.drop__icon span { display: block; width: 15px; height: 18px; border: 1.5px solid var(--accent);
  position: relative; }
.drop__icon span::after { content: ""; position: absolute; left: 3px; right: 3px; top: 5px;
  height: 1.5px; background: var(--accent); box-shadow: 0 4px 0 var(--accent), 0 8px 0 var(--accent); }
.fname { margin-top: 14px; font-family: "IBM Plex Mono"; font-size: 12.5px; color: var(--ink);
  word-break: break-all; min-height: 18px; }
.actions { margin-top: 16px; display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.btn[disabled] { opacity: .55; cursor: default; box-shadow: none; transform: none; }
.trustrow { display: flex; flex-wrap: wrap; gap: 8px 20px; margin: 16px 0 2px;
  padding-top: 14px; border-top: 1px solid var(--rule); }
.trustrow span { display: inline-flex; align-items: center; gap: 7px;
  font-size: 12.5px; font-weight: 600; color: var(--ink-soft); }
.trustrow svg { width: 15px; height: 15px; flex: none; color: var(--accent); }

/* ---- result / preview after upload ---- */
.result { border-top: 1px solid var(--rule); padding: 22px 26px; display: none; }
.result.show { display: block; }
.result__head { display: flex; align-items: center; justify-content: space-between; gap: 14px;
  flex-wrap: wrap; margin-bottom: 14px; }
.result__head strong { font-family: "Archivo"; font-size: 16px; }
.status-note { font-family: "IBM Plex Mono"; font-size: 12.5px; }
.status-note.ok { color: var(--accent); }
.status-note.no { color: var(--sw-a); }
.preview-multi { font-family: "IBM Plex Mono"; font-size: 12.5px; color: var(--accent-ink);
  background: #E6F1EA; border: 1px solid var(--accent); padding: 8px 12px; margin-bottom: 12px; }
.preview-onetable { margin-bottom: 16px; }
.preview-onetable:last-child { margin-bottom: 0; }
.preview-title { font-family: "IBM Plex Mono"; font-size: 11px; font-weight: 500;
  letter-spacing: .04em; text-transform: uppercase; color: var(--ink-soft);
  margin: 0 0 6px; display: flex; align-items: baseline; gap: 8px; }
.preview-title .tag { color: var(--accent); }
.preview-skipped { font-family: "IBM Plex Mono"; font-size: 12.5px; color: #7a5a12;
  background: #F6EFDD; border: 1px solid #C89A3C; padding: 8px 12px; margin-top: 12px; }
.previewtable { width: 100%; overflow-x: auto; border: 1px solid var(--rule); }
table.pt { border-collapse: collapse; width: 100%; font-size: 12px; }
table.pt th, table.pt td { border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  padding: 6px 9px; text-align: left; font-family: "IBM Plex Mono"; white-space: nowrap; }
table.pt th { background: var(--paper-2); font-weight: 500; font-size: 10.5px; letter-spacing: .04em;
  text-transform: uppercase; color: var(--ink-soft); position: sticky; top: 0; }
table.pt td { color: var(--ink); max-width: 220px; overflow: hidden; text-overflow: ellipsis; }
table.pt td.pt-imgcell { padding: 3px 6px; }
img.pt-thumb { display: block; max-height: 46px; max-width: 80px; border-radius: 3px;
  border: 1px solid var(--rule); background: var(--cell); }
.spinner { width: 15px; height: 15px; border: 2px solid var(--rule-strong);
  border-top-color: var(--accent); border-radius: 50%; display: inline-block;
  animation: spin .7s linear infinite; vertical-align: -2px; margin-right: 7px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- post-payment result modal (backdrop reused for the modal) ---- */
.fb-back { position: fixed; inset: 0; background: rgba(0,0,0,.45);
  display: none; align-items: center; justify-content: center; z-index: 50; padding: 20px; }
.fb-back.open { display: flex; }
.fb-card { background: var(--paper, #fff); color: var(--ink);
  border: 1px solid var(--rule); border-radius: 14px; width: 100%; max-width: 460px;
  padding: 24px; box-shadow: 0 24px 60px rgba(0,0,0,.28); }
.rm-card { position: relative; text-align: center; max-width: 540px; }
.rm-brand { font-family: "IBM Plex Mono", monospace; font-size: 13px; color: var(--ink-faint); margin-bottom: 18px; }
.rm-brand b { color: var(--accent); }
#resultModal .spinner { width: 46px; height: 46px; margin: 4px auto 18px; border: 3px solid var(--rule); border-top-color: var(--accent); border-radius: 50%; animation: spin .9s linear infinite; }
#resultModal .check { font-size: 40px; line-height: 1; margin-bottom: 12px; }
#resultModal .dots { display: inline-block; width: 1em; text-align: left; }
#resultModal .dots::after { content: ""; animation: rmdots 1.4s steps(4,end) infinite; }
@keyframes rmdots { 0%{content:"";} 25%{content:".";} 50%{content:"..";} 75%{content:"...";} 100%{content:"";} }
.rm-h { font-family: "Archivo"; font-weight: 800; font-size: 22px; margin: 0 0 8px; max-width: none; }
.rm-d { margin: 0 auto; max-width: 40ch; color: var(--ink-soft); font-size: 14.5px; }
.rm-dl { display: inline-block; margin-top: 20px; padding: 12px 24px; background: var(--accent); color: #fff; border-radius: 9px; font: 600 15px "IBM Plex Sans", sans-serif; text-decoration: none; }
.rm-dl:hover { background: var(--accent-ink); }
.rm-dl.hide { display: none; }
.rm-foot { margin-top: 16px; font-size: 13px; color: var(--ink-faint); }
.rm-foot a { color: var(--accent); }
.rm-x { position: absolute; top: 10px; right: 12px; border: 0; background: transparent; font-size: 22px; line-height: 1; color: var(--ink-faint); cursor: pointer; }
.rm-x:hover { color: var(--ink); }

/* ---- "Your converted files" list ---- */
.files { padding: clamp(30px,5vw,54px) 0 clamp(20px,4vw,40px); }
.files__row { display: flex; align-items: center; gap: 14px; padding: 13px 18px; border: 1px solid var(--rule); border-radius: 12px; background: var(--paper-2); margin-top: 10px; }
.files__name { flex: 1 1 auto; font-size: 14px; color: var(--ink); word-break: break-all; }
.files__exp { font-size: 12px; color: var(--ink-faint); white-space: nowrap; }
.files__dl { white-space: nowrap; font: 600 14px "IBM Plex Sans", sans-serif; color: #fff; background: var(--accent); border-radius: 9px; padding: 9px 18px; text-decoration: none; }
.files__dl:hover { background: var(--accent-ink); }
.files__row--expired { opacity: .55; }
.files__row--expired .files__dl { pointer-events: none; background: var(--ink-faint); }
.files__row--pending .files__name { color: var(--ink-soft); }
.files__spin { flex: 0 0 auto; display: inline-block; width: 14px; height: 14px; border: 2px solid var(--rule-strong); border-top-color: var(--accent); border-radius: 50%; animation: spin .8s linear infinite; }
