/* BloodPril store core stylesheet. Instrument palette, hairline rules, square geometry. */
:root {
  --paper: #f4f6f8;
  --white: #ffffff;
  --mist: #eaeff4;
  --ink: #10151b;
  --ink2: #4b5763;
  --ink3: #78838f;
  --line: #dbe2e9;
  --line2: #c3ced8;
  --red: #c11226;
  --red-dk: #8c0a1a;
  --red-soft: #fdf0f1;
  --amber: #ffc21a;
  --green: #0f7a52;
  --rad: 4px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 400 17px/1.62 Chivo, "Helvetica Neue", Arial, sans-serif;
  letter-spacing: .002em;
}
body.dock-on { padding-bottom: 76px; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red-dk); }
h1, h2, h3, h4 { font-family: Anybody, Chivo, Arial, sans-serif; font-weight: 800; line-height: 1.12; letter-spacing: -.015em; margin: 0 0 .5em; }
h1 { font-size: clamp(30px, 4.4vw, 46px); }
h2 { font-size: clamp(24px, 3vw, 32px); }
h3 { font-size: 20px; letter-spacing: -.005em; }
p { margin: 0 0 1.05em; }
ul, ol { margin: 0 0 1.05em; padding-left: 1.15em; }
li { margin-bottom: .4em; }
.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 20px; }
.skip { position: absolute; left: -9999px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip:focus { left: 12px; top: 12px; z-index: 90; background: var(--ink); color: #fff; padding: 10px 14px; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }

/* eyebrow label used across the site */
.eyebrow {
  font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .16em;
  color: var(--ink3); margin: 0 0 10px;
}

/* announcement + header */
.ticker {
  background: var(--ink); color: #e8edf2; text-align: center;
  font-size: 12.5px; letter-spacing: .05em; padding: 8px 16px;
}
.top { background: var(--white); border-bottom: 1px solid var(--line); position: relative; z-index: 40; }
.top__in { display: flex; align-items: center; justify-content: space-between; min-height: 68px; gap: 16px; }
.brand { display: inline-flex; align-items: center; gap: 9px; text-decoration: none; color: var(--ink); }
.brand__drop { width: 13px; height: 17px; background: var(--red); border-radius: 0 50% 50% 50%; transform: rotate(45deg); }
.brand__name { font-family: Anybody, Arial, sans-serif; font-weight: 800; font-size: 22px; letter-spacing: -.02em; }
.brand__name sup { font-size: 9px; top: -.7em; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a { color: var(--ink2); text-decoration: none; font-size: 14.5px; font-weight: 500; letter-spacing: .01em; }
.nav a:hover, .nav a[aria-current] { color: var(--red-dk); }
.nav__cta { color: #fff !important; }
.burger { display: none; align-items: center; gap: 8px; background: none; border: 1px solid var(--line2); border-radius: var(--rad); padding: 8px 12px; font: inherit; font-size: 13px; cursor: pointer; color: var(--ink); }
.burger__bar { width: 16px; height: 9px; border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.burger__label { font-weight: 500; letter-spacing: .04em; }

/* buttons */
.btn {
  display: inline-block; background: var(--red); color: #fff; text-decoration: none;
  font-family: Anybody, Arial, sans-serif; font-weight: 700; font-size: 17px; letter-spacing: .01em;
  padding: 16px 26px; border: 1px solid var(--red-dk); border-radius: var(--rad); text-align: center;
  transition: background .16s ease;
}
.btn:hover { background: var(--red-dk); }
.btn--sm { padding: 9px 16px; font-size: 14px; }
.btn--wide { display: block; width: 100%; font-size: 19px; padding: 18px 20px; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line2); }
.btn--ghost:hover { background: var(--mist); color: var(--ink); }

/* generic section rhythm */
.sec { padding: 54px 0; }
.sec--tint { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sec__head { max-width: 720px; margin-bottom: 26px; }
.lede { font-size: 19px; color: var(--ink2); }

/* PDP grid, layout C: content flows left, purchase column sticks right */
.pdp { padding: 34px 0 10px; }
.pdp__grid { display: grid; grid-template-columns: minmax(0, 1fr) 404px; gap: 46px; align-items: start; }
.pdp__left { min-width: 0; }
.buy { position: sticky; top: 18px; }

/* gallery */
.gal { background: var(--white); border: 1px solid var(--line); border-radius: var(--rad); padding: 18px; }
.gal__stage { background: linear-gradient(180deg, #fff 0%, var(--mist) 100%); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; padding: 18px; min-height: 330px; }
.gal__stage img { max-height: 340px; width: auto; }
.gal__thumbs { display: flex; gap: 10px; margin-top: 12px; }
.gal__thumb { flex: 1; background: var(--white); border: 1px solid var(--line); border-radius: 2px; padding: 6px; cursor: pointer; }
.gal__thumb[aria-pressed="true"] { border-color: var(--red); box-shadow: inset 0 0 0 1px var(--red); }
.gal__thumb img { height: 54px; width: auto; margin: 0 auto; object-fit: contain; }
.gal__seals { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.gal__seal { font-size: 11px; letter-spacing: .09em; text-transform: uppercase; color: var(--ink2); border: 1px solid var(--line2); border-radius: 2px; padding: 5px 8px; }

/* buy panel */
.buy__card { background: var(--white); border: 1px solid var(--line2); border-radius: var(--rad); padding: 22px; }
.buy__rating { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--ink2); margin-bottom: 10px; }
.stars { color: var(--amber); letter-spacing: 2px; font-size: 15px; }
.buy__h1 { font-size: clamp(27px, 3.3vw, 34px); margin-bottom: 8px; }
.buy__h1 small { display: block; font-family: Chivo, Arial, sans-serif; font-weight: 400; font-size: 16px; color: var(--ink2); letter-spacing: 0; margin-top: 7px; line-height: 1.45; }
.buy__def { font-size: 14.5px; line-height: 1.5; background: var(--mist); border-left: 3px solid var(--red); padding: 11px 13px; margin: 0 0 18px; }
.buy__legend { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: var(--ink3); display: block; margin-bottom: 10px; }

/* readout rows selector */
.rows { border: 0; padding: 0; margin: 0 0 16px; }
.row { display: block; position: relative; margin-bottom: 10px; cursor: pointer; }
.row input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.row__box { display: grid; grid-template-columns: 62px 1fr auto; gap: 13px; align-items: center; border: 1px solid var(--line2); border-radius: var(--rad); padding: 12px; background: var(--white); transition: border-color .14s ease; min-height: 76px; }
.row:hover .row__box { border-color: var(--ink3); }
.row input:checked + .row__box { border-color: var(--red); box-shadow: inset 0 0 0 1px var(--red); }
.row input:focus-visible + .row__box { outline: 2px solid var(--red); outline-offset: 2px; }
.row__chip { background: var(--mist); border: 1px solid var(--line2); border-radius: 2px; text-align: center; padding: 6px 2px; }
.row input:checked + .row__box .row__chip { background: var(--red); border-color: var(--red-dk); color: #fff; }
.row__num { display: block; font-family: Anybody, Arial, sans-serif; font-weight: 800; font-size: 24px; line-height: 1; }
.row__unit { display: block; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; margin-top: 3px; }
.row__mid { min-width: 0; }
.row__supply { font-weight: 700; font-size: 15px; }
.row__meta { font-size: 12.5px; color: var(--ink2); }
.row__meter { height: 3px; background: var(--mist); margin-top: 7px; }
.row__meter i { display: block; height: 3px; background: var(--amber); }
.row__right { text-align: right; }
.row__per { font-family: Anybody, Arial, sans-serif; font-weight: 800; font-size: 22px; line-height: 1; }
.row__per span { font-size: 11px; font-weight: 500; font-family: Chivo, Arial, sans-serif; color: var(--ink2); display: block; margin-top: 3px; letter-spacing: .04em; }
.row__save { display: inline-block; background: var(--amber); color: #3a2b00; font-size: 11px; font-weight: 700; letter-spacing: .05em; padding: 2px 6px; margin-top: 6px; border-radius: 2px; }
.row__flag { position: absolute; top: -9px; right: 10px; background: var(--ink); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; padding: 3px 8px; border-radius: 2px; z-index: 2; }

.buy__total { display: flex; align-items: baseline; justify-content: space-between; border-top: 1px dashed var(--line2); border-bottom: 1px dashed var(--line2); padding: 12px 0; margin-bottom: 14px; }
.buy__totalL { font-size: 13px; text-transform: uppercase; letter-spacing: .1em; color: var(--ink3); }
.buy__totalV { font-family: Anybody, Arial, sans-serif; font-weight: 800; font-size: 30px; }
.buy__totalV s { font-family: Chivo, Arial, sans-serif; font-weight: 400; font-size: 15px; color: var(--ink3); margin-right: 8px; }
.buy__micro { font-size: 13px; color: var(--ink2); margin: 12px 0 0; }
.buy__micro b { color: var(--ink); }
.buy__micro span { display: block; padding-left: 18px; position: relative; margin-bottom: 5px; }
.buy__micro span::before { content: ""; position: absolute; left: 0; top: 7px; width: 8px; height: 8px; background: var(--green); border-radius: 50%; }
.buy__stock { font-size: 12.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--green); font-weight: 700; margin: 0 0 12px; }

/* trust strip */
.strip { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.strip__in { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--line); }
.strip__cell { background: var(--white); padding: 18px 12px; text-align: center; }
.strip__k { font-family: Anybody, Arial, sans-serif; font-weight: 800; font-size: 14px; letter-spacing: -.01em; }
.strip__v { font-size: 12px; color: var(--ink2); margin: 3px 0 0; }

/* cards + specs */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--rad); padding: 22px; }
.card h3 { margin-bottom: 8px; }
.card p { margin: 0; font-size: 15.5px; color: var(--ink2); }
.card__n { font-family: Anybody, Arial, sans-serif; font-weight: 800; color: var(--red); font-size: 13px; letter-spacing: .1em; display: block; margin-bottom: 8px; }

.spec { width: 100%; border-collapse: collapse; background: var(--white); border: 1px solid var(--line2); font-size: 15.5px; }
.spec caption { text-align: left; font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink3); padding-bottom: 8px; }
.spec th, .spec td { border-bottom: 1px solid var(--line); padding: 11px 14px; text-align: left; vertical-align: top; }
.spec th { width: 34%; font-weight: 700; background: var(--mist); }
.spec tr:last-child th, .spec tr:last-child td { border-bottom: 0; }

.tldr { background: var(--ink); color: #e9eef3; border-radius: var(--rad); padding: 24px 26px; }
.tldr h2 { color: #fff; font-size: 20px; letter-spacing: .02em; }
.tldr p { margin: 0; font-size: 16.5px; color: #cfd8e0; }
.tldr p + p { margin-top: .8em; }
.tldr a { color: #ffd766; }

.keys { background: var(--white); border: 1px solid var(--line2); border-left: 4px solid var(--red); border-radius: var(--rad); padding: 22px 26px; }
.keys ul { margin: 0; padding-left: 18px; }
.keys li { font-size: 16px; }

.qa { border-top: 1px solid var(--line); padding-top: 20px; margin-top: 22px; }
.qa h3 { font-size: 19px; margin-bottom: 6px; }
.qa p { color: var(--ink2); }
.qa p:last-child { margin-bottom: 0; }

.pledge { background: var(--red); color: #fff; }
.pledge__in { display: flex; gap: 30px; align-items: center; padding: 40px 20px; flex-wrap: wrap; }
.pledge__num { font-family: Anybody, Arial, sans-serif; text-align: center; margin: 0; line-height: 1; }
.pledge__num b { display: block; font-size: 72px; font-weight: 800; }
.pledge__num span { font-size: 14px; letter-spacing: .3em; text-transform: uppercase; }
.pledge__txt { flex: 1 1 420px; }
.pledge__txt h2 { color: #fff; }
.pledge__txt p { margin-bottom: .6em; color: #ffe6e9; }
.pledge__txt a { color: #fff; }
.pledge__fine { font-size: 14px; }

.finale { background: var(--ink); color: #dfe6ec; padding: 46px 0; }
.finale h2 { color: #fff; }
.finale__in { display: grid; grid-template-columns: 1fr 320px; gap: 34px; align-items: center; }
.finale p { color: #b8c3cd; }
.finale .btn { border-color: #e8394f; }
.finale__seals { font-size: 12.5px; color: #8e9aa5; margin: 12px 0 0; text-align: center; letter-spacing: .04em; }

.refs { margin-top: 34px; border-top: 1px solid var(--line); padding-top: 22px; }
.refs h2 { font-size: 17px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink3); }
.refs__list { list-style: none; padding: 0; margin: 0; font-size: 14px; color: var(--ink2); }
.refs__list li { margin-bottom: 8px; }
.refs__n { display: inline-block; min-width: 22px; font-weight: 700; color: var(--ink); }
.refs__note { font-size: 14px; color: var(--ink2); }
.cite { font-size: 11.5px; vertical-align: super; color: var(--red-dk); text-decoration: none; font-weight: 700; }

/* dock */
.dock { position: fixed; left: 0; right: 0; bottom: 0; background: var(--white); border-top: 2px solid var(--red); z-index: 60; box-shadow: 0 -6px 20px rgba(16, 21, 27, .1); }
.dock__in { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 11px 20px; }
.dock__txt { margin: 0; font-size: 14.5px; }
.dock__sep { color: var(--line2); margin: 0 5px; }
.dock__price { font-family: Anybody, Arial, sans-serif; font-weight: 800; font-size: 19px; }
.btn--dock { padding: 12px 22px; font-size: 15px; }
.dock__x { background: none; border: 1px solid var(--line); color: var(--ink3); font-size: 18px; line-height: 1; width: 30px; height: 30px; border-radius: 2px; cursor: pointer; }
.dock--gone { display: none; }

/* footer */
.foot { background: var(--white); border-top: 1px solid var(--line); padding: 44px 0 30px; font-size: 14.5px; color: var(--ink2); }
.foot__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 30px; }
.foot__logo { font-family: Anybody, Arial, sans-serif; font-weight: 800; font-size: 20px; color: var(--ink); display: block; margin-bottom: 10px; }
.foot__logo sup { font-size: 9px; }
.foot__addr { font-size: 13.5px; line-height: 1.7; }
.foot__col h2 { font-size: 12.5px; letter-spacing: .13em; text-transform: uppercase; color: var(--ink); }
.foot__col ul { list-style: none; padding: 0; margin: 0; }
.foot__col a { color: var(--ink2); text-decoration: none; }
.foot__col a:hover { color: var(--red-dk); text-decoration: underline; }
.foot__legal { border-top: 1px solid var(--line); margin-top: 30px; padding-top: 20px; font-size: 12.5px; line-height: 1.6; color: var(--ink3); }
.foot__pay { letter-spacing: .04em; }
.foot__copy { color: var(--ink2); }

/* label panel (formula page) */
.facts { background: var(--white); border: 3px solid var(--ink); padding: 16px 18px; max-width: 430px; font-size: 15px; }
.facts h2 { font-size: 30px; margin: 0 0 4px; letter-spacing: -.02em; }
.facts__rule { border-bottom: 8px solid var(--ink); margin: 4px 0; }
.facts__thin { border-bottom: 1px solid var(--ink); margin: 4px 0; }
.facts table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.facts td { padding: 4px 0; vertical-align: top; }
.facts .r { text-align: right; }
.facts__hd { font-size: 12px; font-weight: 700; text-align: right; }
.facts__sub { padding-left: 14px; font-size: 13.5px; }
.facts__foot { font-size: 12.5px; margin: 6px 0 0; }
.split { display: grid; grid-template-columns: 430px 1fr; gap: 34px; align-items: start; }

/* reviews page */
.score { display: grid; grid-template-columns: 220px 1fr; gap: 30px; align-items: center; background: var(--white); border: 1px solid var(--line2); border-radius: var(--rad); padding: 26px; }
.score__big { font-family: Anybody, Arial, sans-serif; font-weight: 800; font-size: 62px; line-height: 1; }
.score__of { font-size: 14px; color: var(--ink3); }
.bars { list-style: none; margin: 0; padding: 0; }
.bars li { display: grid; grid-template-columns: 54px 1fr 44px; gap: 10px; align-items: center; font-size: 13.5px; margin-bottom: 6px; }
.bars i { display: block; height: 9px; background: var(--mist); }
.bars i b { display: block; height: 9px; background: var(--red); }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.stats div { background: var(--white); padding: 20px 16px; text-align: center; }
.stats b { display: block; font-family: Anybody, Arial, sans-serif; font-weight: 800; font-size: 30px; }
.stats span { font-size: 13px; color: var(--ink2); }
.wall { columns: 3; column-gap: 18px; }
.rev { break-inside: avoid; background: var(--white); border: 1px solid var(--line); border-radius: var(--rad); padding: 18px; margin-bottom: 18px; font-size: 15px; }
.rev__top { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; margin-bottom: 6px; }
.rev__who { font-weight: 700; font-size: 15px; }
.rev__where { font-size: 12.5px; color: var(--ink3); }
.rev__ver { font-size: 10.5px; letter-spacing: .09em; text-transform: uppercase; color: var(--green); font-weight: 700; }
.rev p { margin: 0; color: var(--ink2); }
.rev__date { font-size: 12px; color: var(--ink3); margin-top: 8px !important; }

/* faq */
.faq { background: var(--white); border: 1px solid var(--line); border-radius: var(--rad); margin-bottom: 10px; }
.faq summary { cursor: pointer; padding: 15px 18px; font-weight: 700; font-size: 16.5px; list-style: none; display: flex; justify-content: space-between; gap: 14px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--red); font-size: 20px; line-height: 1; }
.faq[open] summary::after { content: "\2212"; }
.faq__a { padding: 0 18px 16px; color: var(--ink2); font-size: 15.5px; }
.faq__a p:last-child { margin-bottom: 0; }
.grp { margin: 0 0 14px; font-size: 12.5px; letter-spacing: .13em; text-transform: uppercase; color: var(--ink3); }

/* long form */
.prose { max-width: 760px; }
.prose h2 { margin-top: 1.5em; }
.prose h3 { margin-top: 1.3em; }
.note { background: var(--red-soft); border: 1px solid #f0cdd2; border-radius: var(--rad); padding: 16px 18px; font-size: 15.5px; }
.note p:last-child { margin-bottom: 0; }
.byline { font-size: 13.5px; color: var(--ink3); border-bottom: 1px solid var(--line); padding-bottom: 14px; margin-bottom: 22px; }
.steps { list-style: none; padding: 0; counter-reset: s; }
.steps li { counter-increment: s; position: relative; padding-left: 52px; margin-bottom: 18px; }
.steps li::before { content: counter(s); position: absolute; left: 0; top: 0; width: 34px; height: 34px; background: var(--ink); color: #fff; font-family: Anybody, Arial, sans-serif; font-weight: 800; display: flex; align-items: center; justify-content: center; border-radius: 2px; }
.steps b { display: block; }
.gloss dt { font-weight: 700; margin-top: 12px; }
.gloss dd { margin: 2px 0 0; color: var(--ink2); }
.tbl { width: 100%; border-collapse: collapse; background: var(--white); border: 1px solid var(--line2); font-size: 15px; }
.tbl th, .tbl td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; }
.tbl thead th { background: var(--mist); font-size: 13px; letter-spacing: .06em; text-transform: uppercase; }
.updated { font-size: 13px; color: var(--ink3); letter-spacing: .04em; }
.mini { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; margin: 18px 0 0; }
.mini a { display: inline-block; border: 1px solid var(--line2); border-radius: 2px; padding: 8px 13px; font-size: 14px; text-decoration: none; color: var(--ink); background: var(--white); }
.mini a:hover { border-color: var(--red); color: var(--red-dk); }

@media (max-width: 1000px) {
  .pdp__grid { grid-template-columns: 1fr; gap: 26px; }
  .buy { position: static; }
  .wall { columns: 2; }
  .split { grid-template-columns: 1fr; }
  .finale__in { grid-template-columns: 1fr; }
  .strip__in { grid-template-columns: repeat(2, 1fr); }
  .foot__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  body { font-size: 16.5px; }
  .cards, .stats { grid-template-columns: 1fr; }
  .wall { columns: 1; }
  .score { grid-template-columns: 1fr; text-align: center; }
  .burger { display: inline-flex; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch;
    gap: 0; background: var(--white); border-bottom: 1px solid var(--line); padding: 8px 20px 18px;
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity .18s ease, transform .18s ease, visibility 0s linear .2s;
  }
  .nav.open { opacity: 1; visibility: visible; transform: none; transition: opacity .18s ease, transform .18s ease, visibility 0s; }
  .nav a { padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
  .nav__cta { margin-top: 12px; border-bottom: 0 !important; }
  .dock__in { padding: 9px 14px; gap: 9px; }
  .btn--dock { padding: 11px 15px; font-size: 14px; }
}
