/* seoauditsuite.com — shared shell styles for index/checks/reset/verify.

   Direction: "the dashboard". A dark navy band carries the nav and the promise; everything below
   it is white cards on cool paper, the same surfaces the product itself is made of. Brand blue
   does the pointing (buttons, links, the active state); the pass→warn→fail spectrum stays
   reserved for verdicts, so a status never has to compete with a call to action.

   Light theme only, deliberately: the reports print to PDF on white and the shell should match
   what a customer ends up holding.

   The reports (app/free_report.php, app/prompt.md, app/copy_ui.php) carry the same direction but
   ship their CSS inline — they are served under `default-src 'none'` and printed to PDF, so they
   can't link this file and can't use a webfont. A palette change here has to be repeated there. */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400..800&display=swap');

:root{
  --paper:#f2f5fb; --card:#fff; --ink:#0f172a; --muted:#5a6883; --line:#e2e7f0;
  --brand:#1f6bff; --brand-hi:#1550cc; --wash:#e8effe;
  --link:#1f6bff; --link-hi:#1550cc;
  --navy:#061334; --navy-2:#0d2a6d;
  --ok:#0a7c4a; --warn:#96600a; --err:#b3172e; --na:#7c8698;
  --spectrum:linear-gradient(90deg,var(--ok) 0%,var(--ok) 26%,var(--warn) 50%,var(--err) 74%,var(--err) 100%);
  --display:"Bricolage Grotesque",ui-sans-serif,system-ui,sans-serif;
  --sans:system-ui,-apple-system,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  --mono:ui-monospace,SFMono-Regular,"SF Mono",Menlo,Consolas,monospace;
  --r:14px;
  --lift:0 1px 2px rgba(16,20,31,.05),0 10px 30px -18px rgba(16,20,31,.35);
}

*{box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
body{
  margin:0; background:var(--paper); color:var(--ink);
  font:16.5px/1.65 var(--sans); font-synthesis-weight:none;
  -webkit-font-smoothing:antialiased;
}
.wrap{max-width:940px;margin:0 auto;padding:22px 20px 120px;display:flow-root}

/* ---- the dark band (index only) ---------------------------------------- */
.band{
  background:radial-gradient(120% 120% at 78% 8%,var(--navy-2) 0%,var(--navy) 58%);
  color:#fff;
}
/* The band's own wrap holds nav + hero; the paper starts at the next .wrap. */
.band .wrap{padding-bottom:0}
.band a{color:#fff}
.band .muted,.band .small{color:#b9c6e4}

/* ---- header ------------------------------------------------------------ */
header{
  display:flex;justify-content:space-between;align-items:center;gap:16px;flex-wrap:wrap;
  padding:6px 0 18px;margin-bottom:34px;border-bottom:1px solid var(--line);
}
.band header{border-bottom-color:rgba(255,255,255,.14);margin-bottom:0}
header nav{display:flex;gap:26px;font-size:15px;margin-left:auto}
header nav a{text-decoration:none;opacity:.86}
header nav a:hover{opacity:1}
header #who{display:flex;align-items:center;gap:8px;flex-wrap:wrap}
/* The wordmark is an image, but the words stay in the DOM — indented out of sight, not removed,
   so the heading is still a heading to a crawler and a screen reader. The light variant is the
   same file with white type, for the pages that put the header on navy. */
h1{margin:0;font-size:0}
h1 a{
  display:block;width:186px;height:35px;text-indent:-9999px;overflow:hidden;white-space:nowrap;
  background:url(/assets/logo.png) left center/contain no-repeat;
}
.band h1 a{background-image:url(/assets/logo-light.png)}

/* ---- type -------------------------------------------------------------- */
h2{
  font:600 12.5px/1.4 var(--mono);margin:56px 0 16px;letter-spacing:.13em;text-transform:uppercase;
  color:var(--muted);display:flex;align-items:center;gap:12px;
}
/* the rule runs out from the label to the margin — a measuring line, not a divider */
h2::after{content:"";flex:1;height:1px;background:var(--line)}
h3{font:600 12px/1.4 var(--mono);letter-spacing:.11em;text-transform:uppercase;color:var(--na);margin:30px 0 10px}
h2,h3{scroll-margin-top:24px}
p{margin:0 0 13px}
.muted{color:var(--muted)}
.small{font-size:14px}
.lede{font:400 19px/1.55 var(--display);letter-spacing:-.015em;margin-bottom:20px}
a{color:var(--link);text-underline-offset:3px;text-decoration-thickness:1px}
a:hover{color:var(--link-hi)}
strong{font-weight:640}
:focus-visible{outline:2px solid var(--brand);outline-offset:3px;border-radius:4px}

/* ---- hero (index only) -------------------------------------------------- */
.hero{padding:46px 0 0;position:relative}
.eyebrow{font:600 12px/1.4 var(--mono);letter-spacing:.14em;text-transform:uppercase;color:#8fa8dd;margin:0 0 16px}
.hero h2{
  font:700 clamp(36px,6.6vw,60px)/1.04 var(--display);letter-spacing:-.038em;
  text-transform:none;color:#fff;margin:0 0 18px;display:block;max-width:18ch;
}
.hero h2::after{display:none}
.hero h2 em{font-style:normal;color:#5c96ff}
.hero .lede{max-width:52ch;color:#c2cfea}

.chips{list-style:none;display:flex;flex-wrap:wrap;gap:10px 26px;margin:26px 0 0;padding:0;font-size:14.5px}
.chips li{display:flex;align-items:center;gap:8px;color:#c2cfea}
.chips li::before{
  content:"✓";display:flex;align-items:center;justify-content:center;
  width:19px;height:19px;border-radius:50%;flex:0 0 auto;
  background:var(--brand);color:#fff;font-size:11px;font-weight:700;
}
.chips.ink{margin:18px 0 14px}
.chips.ink li{color:var(--muted)}

/* ---- the product preview (a picture of the report, sample numbers) ------- */
.preview{
  display:flex;margin:46px 0 -70px;border-radius:16px;overflow:hidden;
  background:#f7f9fd;color:var(--ink);
  box-shadow:0 40px 80px -40px rgba(0,0,0,.7),0 0 0 1px rgba(255,255,255,.08);
}
.pv-side{
  flex:0 0 170px;background:#0b1c44;color:#c2cfea;padding:20px 16px;
  display:flex;flex-direction:column;gap:14px;font-size:13.5px;
}
.pv-side b{color:#fff;background:rgba(92,150,255,.22);border-radius:8px;padding:6px 10px;margin:-6px -10px}
.pv-main{flex:1;padding:20px;min-width:0}
.pv-head{display:flex;justify-content:space-between;align-items:baseline;margin-bottom:14px}
.pv-head b{font:700 19px/1 var(--display);letter-spacing:-.02em}
.pv-head span{font-size:12px;color:var(--muted)}
.pv-top{display:grid;grid-template-columns:2fr 1fr 1fr;gap:12px;margin-bottom:12px}
.pv-top>*{background:var(--card);border:1px solid var(--line);border-radius:12px;padding:14px}
.pv-top span{display:block;font-size:11.5px;color:var(--muted);margin-bottom:6px}
.pv-top b{font:700 30px/1 var(--display);letter-spacing:-.03em;font-variant-numeric:tabular-nums}
.pv-top i{font-style:normal;font-size:14px;color:var(--muted)}
.pv-bar{height:7px;border-radius:99px;background:var(--line);margin-top:12px;overflow:hidden}
.pv-bar i{display:block;height:100%;background:var(--ok)}
.pv-tiles{display:grid;grid-template-columns:repeat(6,1fr);gap:10px}
.pv-tiles div{
  background:var(--card);border:1px solid var(--line);border-radius:12px;padding:12px 10px;text-align:center;
}
.pv-tiles span{display:block;font-size:10.5px;color:var(--muted)}
.pv-tiles b{display:block;font:700 24px/1.3 var(--display);letter-spacing:-.03em}
.pv-tiles em{font-style:normal;font-size:10.5px;font-weight:640}
.pv-tiles .ok{color:var(--ok)} .pv-tiles .warn{color:var(--warn)}

/* ---- surfaces ---------------------------------------------------------- */
.card{
  background:var(--card);border:1px solid var(--line);border-radius:var(--r);
  padding:24px;margin-bottom:16px;box-shadow:var(--lift);
}
.card>h2:first-child{margin-top:0}
/* The scan card rides up over the band's edge — the audit is the first thing on the page. */
.card.scan{margin-top:96px;padding:28px}
.card.scan h2{
  font:700 26px/1.2 var(--display);letter-spacing:-.028em;text-transform:none;color:var(--ink);
  margin:0 0 6px;display:block;
}
.card.scan h2::after{display:none}

/* ---- forms ------------------------------------------------------------- */
input,select,button{font:inherit;border-radius:10px;border:1px solid var(--line)}
input,select{padding:12px 14px;background:var(--paper);color:var(--ink);width:100%}
input:hover,select:hover{border-color:var(--na)}
input[type=url],input[type=email],input[type=number]{font-family:var(--mono);font-size:14.5px}
button{
  padding:12px 22px;background:var(--brand);color:#fff;border-color:transparent;
  cursor:pointer;font-weight:640;letter-spacing:.005em;white-space:nowrap;
}
button:hover:not(:disabled){background:var(--brand-hi)}
button.ghost{background:var(--card);color:var(--ink);border-color:var(--line);font-weight:560}
button.ghost:hover:not(:disabled){background:var(--wash);border-color:var(--brand);color:var(--brand-hi)}
button:disabled{opacity:.42;cursor:default}
a:has(>button){text-decoration:none}
label{
  display:block;font:600 11.5px/1.4 var(--mono);letter-spacing:.1em;text-transform:uppercase;
  color:var(--muted);margin:0 0 6px;
}
.row{display:flex;gap:12px;flex-wrap:wrap}
.row>*{flex:1;min-width:180px}
.row .fixed{flex:0 0 auto;min-width:0}

/* ---- how it works / features ------------------------------------------- */
.steps{
  list-style:none;counter-reset:s;margin:0 0 16px;padding:0;
  display:grid;grid-template-columns:repeat(auto-fit,minmax(210px,1fr));gap:22px 20px;
}
.steps li{counter-increment:s}
.steps li::before{
  content:counter(s);display:flex;align-items:center;justify-content:center;
  width:42px;height:42px;border-radius:50%;margin-bottom:12px;
  background:var(--wash);color:var(--brand);border:1px solid #cfdcfb;
  font:700 17px/1 var(--display);
}
.steps b{display:block;font:700 17px/1.3 var(--display);letter-spacing:-.02em;margin-bottom:4px}
.steps p{margin:0;font-size:14.5px;color:var(--muted)}

.feats{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(210px,1fr));gap:0;
  background:var(--card);border:1px solid var(--line);border-radius:var(--r);
  box-shadow:var(--lift);margin-top:44px;overflow:hidden;
}
.feats>div{padding:24px;border-left:1px solid var(--line)}
.feats>div:first-child{border-left:0}
.feats b{display:block;font:700 16px/1.3 var(--display);letter-spacing:-.02em;margin-bottom:6px}
.feats p{margin:0;font-size:14.5px;color:var(--muted)}

/* ---- closing call to action -------------------------------------------- */
.cta{
  margin:56px 0 0;padding:34px;border-radius:18px;color:#fff;
  background:radial-gradient(120% 160% at 85% 10%,var(--navy-2) 0%,var(--navy) 60%);
  display:flex;justify-content:space-between;align-items:center;gap:24px;flex-wrap:wrap;
}
.cta b{display:block;font:700 27px/1.2 var(--display);letter-spacing:-.03em;margin-bottom:6px}
.cta p{margin:0;color:#c2cfea}
.cta>div:last-child{text-align:right}
.cta>div:last-child p{margin-top:10px;font-size:13px}

/* ---- data -------------------------------------------------------------- */
table{width:100%;border-collapse:collapse;font-size:14.5px}
th,td{text-align:left;padding:13px 10px;border-bottom:1px solid var(--line);vertical-align:top}
tr:last-child td{border-bottom:0}
th{font:600 11.5px/1.4 var(--mono);letter-spacing:.1em;text-transform:uppercase;color:var(--muted)}
td{font-variant-numeric:tabular-nums}

.pill{
  display:inline-block;padding:3px 11px;border-radius:99px;border:1px solid var(--line);
  background:var(--card);font:600 11.5px/1.6 var(--mono);letter-spacing:.05em;
  white-space:nowrap;color:var(--muted);
}
.pill.ok{color:var(--ok);border-color:#b6ddc9} .pill.warn{color:var(--warn);border-color:#e6d2a6}
.pill.acc{color:var(--link);border-color:#bfcdee} .pill.mut{color:var(--na)}
.s-done{color:var(--ok);font-weight:620} .s-failed{color:var(--err);font-weight:620}
.s-queued,.s-collecting,.s-reporting{color:var(--warn)}

.bar{height:6px;border-radius:99px;background:var(--line);overflow:hidden;margin:4px 0 6px;min-width:130px}
.bar i{display:block;height:100%;overflow:hidden;background:var(--spectrum);background-size:130px 100%;
       transition:width .6s cubic-bezier(.32,.72,0,1)}
/* A queued or collecting run reports a percentage that can sit still for a minute at a time. The
   sweep is what says the job is alive; without it a stalled bar and a working one look identical. */
.bar i::after{
  content:"";display:block;height:100%;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.75),transparent);
  animation:sweep 1.4s linear infinite;
}
@keyframes sweep{from{transform:translateX(-100%)}to{transform:translateX(100%)}}

/* The live step: a ring that turns, the stage in words, and the stages already banked. The ring
   is the only element on the row that moves on its own clock — the bar can hold the same width
   for a minute while a slow site answers, and a still bar reads as a dead job. */
.step{display:flex;gap:9px;align-items:flex-start;line-height:1.45}
.step b{font-size:13.5px}
.spin{
  flex:none;width:13px;height:13px;margin-top:2px;border-radius:50%;
  border:2px solid var(--line);border-top-color:var(--brand);
  animation:spin .75s linear infinite;
}
@keyframes spin{to{transform:rotate(360deg)}}
/* Done stages, newest last: proof the wait is buying something. */
ul.ticks{list-style:none;margin:6px 0 0;padding:0}
ul.ticks li{padding-left:16px;position:relative;opacity:.85}
ul.ticks li::before{content:"✓";position:absolute;left:0;color:var(--ok)}
ul.ticks li.more{opacity:.6;font-style:italic} ul.ticks li.more::before{content:"+";color:var(--na)}

.msg{
  padding:13px 16px;border-radius:10px;margin:18px 0 0;font-size:14.5px;
  border:1px solid transparent;border-left-width:3px;
}
.msg.err{background:#fdeef0;border-color:#f0c2c9;border-left-color:var(--err);color:#8b0f22}
.msg.ok{background:#e9f6ef;border-color:#bfe0cd;border-left-color:var(--ok);color:#08532f}

/* ---- plans ------------------------------------------------------------- */
.plans{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:14px}
.plan{
  border:1px solid var(--line);border-radius:var(--r);padding:20px;background:var(--card);
  box-shadow:var(--lift);position:relative;overflow:hidden;
}
.plan.on{border-color:var(--brand)}
.plan.on::before{content:"";position:absolute;inset:0 0 auto;height:3px;background:var(--brand)}
.plan>div:first-child{font:600 11.5px/1.4 var(--mono);letter-spacing:.1em;text-transform:uppercase;color:var(--muted)}
.plan .p{font:700 32px/1.1 var(--display);letter-spacing:-.03em;margin:6px 0;font-variant-numeric:tabular-nums}
.plan .p .small{font-family:var(--sans);font-weight:400;letter-spacing:0}

/* ---- checks.php -------------------------------------------------------- */
ul.checks{list-style:none;margin:0 0 8px;padding:0}
ul.checks li{
  display:flex;gap:14px;align-items:baseline;padding:11px 10px;border-radius:8px;
  border-bottom:1px solid var(--line);font-size:15.5px;
}
ul.checks li:last-child{border-bottom:0}
ul.checks .pill{flex:0 0 132px;min-width:0;text-align:center}
/* Four statuses, so two even rows rather than three-and-one. */
.legend{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:20px 28px;margin:0}
@media (max-width:560px){.legend{grid-template-columns:1fr}}
.legend div{font-size:14.5px}
.counts{font:600 12px/1.5 var(--mono);color:var(--na);margin:0 0 16px;letter-spacing:.05em}
/* The phase titles already carry their number — no second counter in the margin. */
.toc ol{list-style:none;margin:0;padding:0}
.toc li{margin-bottom:14px}
.toc li>a{
  color:var(--ink);text-decoration:none;font:600 17px/1.3 var(--display);letter-spacing:-.015em;
}
.toc li>a:hover{color:var(--link)}
.toc .sub{font-size:14px;color:var(--muted);margin:4px 0 0}
.toc .sub a{text-decoration:none;border-bottom:1px solid var(--line)}
.toc .sub a:hover{border-bottom-color:var(--link)}
.src{font-size:14px;color:var(--muted);margin:-4px 0 18px}
.src a{text-decoration:none;border-bottom:1px solid var(--line)}

/* ---- narrow auth pages (reset/verify) ---------------------------------- */
.wrap.narrow{max-width:460px;padding-top:34px}
.wrap.narrow header{margin-bottom:26px}

/* ---- motion ------------------------------------------------------------
   Two jobs only. On arrival, the page assembles once in reading order. After that, motion is
   feedback: a control answering the pointer, a result announcing that it just landed. Everything
   is CSS — nothing here needs a script — and the whole block switches off under reduced-motion. */

header{animation:drop .5s cubic-bezier(.22,1,.36,1) both}
@keyframes drop{from{opacity:0;transform:translateY(-10px)}to{opacity:1;transform:none}}

/* The hero arrives in reading order, then the preview lifts in under it. */
.hero>*{animation:rise .6s cubic-bezier(.22,1,.36,1) both}
.eyebrow{animation-delay:.10s}
.hero h2{animation-delay:.16s}
.hero .lede{animation-delay:.24s}
.chips{animation-delay:.32s}

/* The chips tick themselves off one at a time, left to right. */
.chips li{animation:pop .4s cubic-bezier(.22,1,.36,1) both}
.chips li:nth-child(1){animation-delay:.40s} .chips li:nth-child(2){animation-delay:.47s}
.chips li:nth-child(3){animation-delay:.54s} .chips li:nth-child(4){animation-delay:.61s}
@keyframes pop{from{opacity:0;transform:translateY(6px) scale(.94)}to{opacity:1;transform:none}}

/* The preview arrives last and lands, rather than sliding: it's the deliverable. */
/* `backwards`, not `both`: a finished forwards-filling animation would outrank the hover
   transition below and the preview would sit there refusing to tilt. */
.preview{animation:land-deep .8s cubic-bezier(.22,1,.36,1) .44s backwards}
@keyframes land-deep{from{opacity:0;transform:translateY(34px) scale(.975)}to{opacity:1;transform:none}}
/* Its numbers then fill in, so the reader watches a report being scored. */
.pv-bar i{animation:fill 1.1s cubic-bezier(.22,1,.36,1) 1.05s both}
@keyframes fill{from{transform:scaleX(0);transform-origin:left}to{transform:scaleX(1)}}
.pv-tiles div{animation:pop .45s cubic-bezier(.22,1,.36,1) both}
.pv-tiles div:nth-child(1){animation-delay:1.00s} .pv-tiles div:nth-child(2){animation-delay:1.07s}
.pv-tiles div:nth-child(3){animation-delay:1.14s} .pv-tiles div:nth-child(4){animation-delay:1.21s}
.pv-tiles div:nth-child(5){animation-delay:1.28s} .pv-tiles div:nth-child(6){animation-delay:1.35s}

/* Only the two sections that genuinely arrive late animate in — they stay `hidden` until the auth
   check resolves, so the animation starts when they are actually revealed, not on load. */
#app,#anon{animation:rise .5s cubic-bezier(.22,1,.36,1) both}
#anon{animation-delay:.08s}
@keyframes rise{from{opacity:0;transform:translateY(10px)}to{opacity:1;transform:none}}

/* A message is injected after an action; it has to read as having just arrived. */
.msg{animation:land .35s cubic-bezier(.22,1,.36,1) both}
@keyframes land{from{opacity:0;transform:translateY(-6px) scaleY(.9)}to{opacity:1;transform:none}}

/* Long documents (checks.php) reveal as you reach them. Native scroll timeline, no observer;
   browsers without it simply show everything, which is the correct fallback. */
@supports (animation-timeline:view()){
  @media (prefers-reduced-motion:no-preference){
    /* Direct children of .wrap only, so the hero's own headline keeps its load sequence and the
       cards inside #app/#anon keep theirs. */
    .wrap>h2,.wrap>h3,.wrap>.card,ul.checks,.wrap>.cta{
      animation:reveal .01s linear both;animation-timeline:view();animation-range:entry 0% entry 55%;
    }
    /* The steps and the feature strip reveal item by item — each one drives its own timeline, so
       the stagger comes from where they sit on the page rather than from hand-set delays. */
    .steps li,.feats>div,.plan{
      animation:reveal .01s linear both;animation-timeline:view();animation-range:entry 0% entry 40%;
    }
  }
  @keyframes reveal{from{opacity:0;transform:translateY(14px)}to{opacity:1;transform:none}}
}

/* Interaction: quick in, so the control feels connected to the pointer. */
button{transition:background .16s,border-color .16s,color .16s,transform .1s}
button:active:not(:disabled){transform:translateY(1px) scale(.99)}
input,select{transition:border-color .16s,box-shadow .16s,background .16s}
input:focus,select:focus{background:var(--card);box-shadow:0 0 0 4px var(--wash)}
a{transition:color .16s}
.plan{transition:transform .25s cubic-bezier(.22,1,.36,1),box-shadow .25s,border-color .25s}
.plan:hover{transform:translateY(-3px);box-shadow:0 2px 4px rgba(16,20,31,.06),0 18px 40px -20px rgba(16,20,31,.45)}
/* A step's number is the thing that reacts — the pointer lands on the row, the marker answers. */
.steps li::before{transition:background .2s,color .2s,transform .2s cubic-bezier(.22,1,.36,1)}
.steps li:hover::before{background:var(--brand);color:#fff;transform:scale(1.08)}
.feats>div{transition:background .2s}
.feats>div:hover{background:#fafbff}
/* The preview is a still of the product; on hover it tips up as if it were a real surface. */
.preview{transition:transform .4s cubic-bezier(.22,1,.36,1),box-shadow .4s}
.preview:hover{transform:translateY(-6px);box-shadow:0 50px 90px -40px rgba(0,0,0,.75),0 0 0 1px rgba(255,255,255,.1)}
.cta button{transition:background .16s,transform .2s cubic-bezier(.22,1,.36,1),box-shadow .2s}
.cta button:hover{transform:translateY(-2px);box-shadow:0 12px 26px -12px rgba(31,107,255,.9)}
ul.checks li{transition:background .16s,transform .16s}
ul.checks li:hover{background:var(--paper);transform:translateX(3px)}
tbody tr{transition:background .16s}
tbody tr:hover td{background:var(--paper)}
.pill{transition:border-color .16s}

/* Anchor jumps from the contents list glide instead of cutting. */
html{scroll-behavior:smooth}

@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{
    animation-duration:.01ms!important;animation-iteration-count:1!important;
    transition-duration:.01ms!important;
  }
  .bar i::after{display:none}
  /* the ring still has to say "alive", so it slows down rather than stopping */
  .spin{animation-duration:2.4s!important;animation-iteration-count:infinite!important}
  .plan:hover,ul.checks li:hover{transform:none}
}

/* The preview is a wide dashboard; below this it stops being readable, so it goes away rather
   than shrinking into illegibility. */
@media (max-width:860px){
  .preview{display:none}
  .card.scan{margin-top:44px}
  .hero{padding-bottom:40px}
  .feats>div{border-left:0;border-top:1px solid var(--line)}
  .feats>div:first-child{border-top:0}
}

@media (max-width:560px){
  header{padding-bottom:14px}
  header nav{gap:16px;font-size:14px;order:3;margin-left:0}
  .wrap{padding-bottom:80px}
  .card{padding:18px}
  .card.scan{padding:20px}
  .cta{padding:24px}
  .cta>div:last-child{text-align:left}
  ul.checks li{flex-wrap:wrap;gap:6px}
  ul.checks .pill{flex:0 0 auto}
}
