/* =========================================================================
   artivoorin.com — ato- design system

   Pure CSS Grid, Flexbox and custom properties. No framework of any kind and
   no JavaScript: the navigation and the FAQ are native <details> elements.

   The identity is a clinical lattice. A hairline grid is visible throughout —
   sections are built from bordered cells that share their rules, the way a
   spec sheet or a lab form does — on a bright, almost white ground with the
   packaging blues used sparingly and exactly.

   No object-fit:cover and no overflow:hidden above an image: every picture is
   sized by width and shown whole.
   ========================================================================= */

:root{
  --ato-ink:#0C2F63;        /* the deep blue band across the label */
  --ato-ink-2:#164B93;
  --ato-blue:#1E63B8;       /* the wordmark plate */
  --ato-sky:#45A6EE;        /* the wave */
  --ato-sky-2:#DCEEFB;
  --ato-wash:#F2F7FD;       /* clinical ground */
  --ato-wash-2:#E7F0FA;
  --ato-paper:#FFFFFF;
  --ato-text:#17222F;
  --ato-grey:#516278;
  --ato-faint:#8797AB;
  --ato-rule:#D7E2EF;       /* the lattice */
  --ato-rule-2:#B9CCE2;
  --ato-seal:#C79A26;

  --ato-head:"Barlow",system-ui,-apple-system,"Segoe UI",sans-serif;
  --ato-body:"Nunito Sans",system-ui,-apple-system,"Segoe UI",sans-serif;

  --ato-gut:clamp(1rem,3.4vw,2.4rem);
  --ato-tall:clamp(3rem,5.6vw,4.6rem);
  --ato-r:4px;              /* the whole site is nearly square */
}

*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth;scroll-padding-top:82px;-webkit-text-size-adjust:100%}
body{
  margin:0;background:var(--ato-paper);color:var(--ato-text);
  font-family:var(--ato-body);font-size:19px;line-height:1.62;font-weight:400;
  -webkit-font-smoothing:antialiased;
}
img{display:block;max-width:100%;height:auto}
h1,h2,h3,h4{font-family:var(--ato-head);font-weight:700;line-height:1.08;
  letter-spacing:-.02em;margin:0;color:var(--ato-ink)}
p{margin:0 0 1rem}
p:last-child{margin-bottom:0}
ul{margin:0;padding:0;list-style:none}
a{color:var(--ato-blue);text-decoration:underline;text-underline-offset:3px;
  text-decoration-thickness:1px}
a:hover{color:var(--ato-ink)}
::selection{background:var(--ato-sky);color:#fff}
:focus-visible{outline:3px solid var(--ato-sky);outline-offset:2px}

/* ---------- frame -------------------------------------------------------- */
.ato-hold{width:min(1220px,100%);margin-inline:auto;padding-inline:var(--ato-gut)}
.ato-sec{padding-block:var(--ato-tall)}
.ato-sec.wash{background:var(--ato-wash)}
.ato-sec.deep{background:var(--ato-ink);color:#C3D6EE}
.ato-sec.deep h2,.ato-sec.deep h3,.ato-sec.deep h4{color:#fff}
.ato-sec.deep a{color:#9CCBF5}

/* ---------- the lattice -------------------------------------------------- */
/* a grid whose children share hairlines rather than carrying their own */
.ato-grid{display:grid;gap:1px;background:var(--ato-rule);
  border:1px solid var(--ato-rule);border-radius:var(--ato-r)}
.ato-grid>*{background:var(--ato-paper);padding:clamp(1.2rem,2.4vw,1.9rem);
  min-width:0}
.wash .ato-grid>*{background:var(--ato-paper)}
.deep .ato-grid{background:rgba(255,255,255,.16);border-color:rgba(255,255,255,.16)}
.deep .ato-grid>*{background:var(--ato-ink)}
.ato-g2{grid-template-columns:repeat(2,minmax(0,1fr))}
.ato-g3{grid-template-columns:repeat(3,minmax(0,1fr))}
.ato-g4{grid-template-columns:repeat(4,minmax(0,1fr))}
@media (max-width:900px){
  .ato-g3,.ato-g4{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width:600px){
  .ato-g2,.ato-g3,.ato-g4{grid-template-columns:minmax(0,1fr)}
}

/* ---------- section opener ----------------------------------------------- */
.ato-open{margin-bottom:clamp(1.6rem,3vw,2.6rem);max-width:64ch}
.ato-open.mid{margin-inline:auto;text-align:center}
.ato-tag{display:inline-flex;align-items:center;gap:.55rem;font-family:var(--ato-head);
  font-weight:600;font-size:.74rem;letter-spacing:.2em;text-transform:uppercase;
  color:var(--ato-blue);border:1px solid var(--ato-rule-2);border-radius:100px;
  padding:.3rem .85rem;margin-bottom:1rem;background:var(--ato-paper)}
.deep .ato-tag{color:var(--ato-sky);border-color:rgba(255,255,255,.28);
  background:transparent}
.ato-h{font-size:clamp(1.75rem,3.7vw,2.7rem)}
.ato-h b{color:var(--ato-blue);font-weight:700}
.deep .ato-h b{color:var(--ato-sky)}
.ato-sub{margin-top:.85rem;font-size:1.05rem;color:var(--ato-grey);max-width:60ch}
.ato-open.mid .ato-sub{margin-inline:auto}
.deep .ato-sub{color:#A4BBDC}
.ato-note{font-size:.88rem;color:var(--ato-faint);line-height:1.58}
.deep .ato-note{color:#7F97BC}

/* ---------- buttons ------------------------------------------------------ */
.ato-go{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  font-family:var(--ato-head);font-weight:600;font-size:1rem;line-height:1.2;
  padding:1rem 1.9rem;border:0;border-radius:var(--ato-r);
  background:var(--ato-blue);color:#fff;text-decoration:none;text-align:center;
  transition:background .14s ease}
.ato-go:hover{background:var(--ato-ink);color:#fff}
.ato-go.line{background:var(--ato-paper);color:var(--ato-ink);
  box-shadow:inset 0 0 0 1px var(--ato-rule-2)}
.ato-go.line:hover{background:var(--ato-ink);color:#fff;box-shadow:none}
.deep a.ato-go{color:#fff}
.deep a.ato-go.line{background:transparent;color:#fff;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.45)}
.deep a.ato-go.line:hover{background:#fff;color:var(--ato-ink);box-shadow:none}
.ato-go.sm{padding:.58rem 1.1rem;font-size:.87rem}
.ato-go.full{width:100%}
.ato-acts{display:flex;flex-wrap:wrap;gap:.7rem;align-items:center}
@media (max-width:520px){.ato-go{padding-inline:1.2rem;max-width:100%}}

/* ---------- head bar ----------------------------------------------------- */
.ato-skip{position:absolute;left:-9999px;background:var(--ato-blue);color:#fff;
  padding:.7rem 1.1rem;z-index:200}
.ato-skip:focus{left:0;top:0}
.ato-flash{background:var(--ato-ink);color:#C3D6EE;font-size:.82rem;
  text-align:center;padding:.45rem var(--ato-gut)}
.ato-flash b{color:#fff;font-weight:700}
.ato-flash i{font-style:normal;color:#5E7BA6;padding:0 .5rem}
.ato-bar{position:sticky;top:0;z-index:100;background:rgba(255,255,255,.97);
  backdrop-filter:blur(8px);border-bottom:1px solid var(--ato-rule)}
.ato-bar-in{width:min(1220px,100%);margin-inline:auto;padding:0 var(--ato-gut);
  display:flex;align-items:center;gap:.9rem;min-height:66px;flex-wrap:nowrap}
.ato-brand{display:flex;align-items:center;gap:.55rem;text-decoration:none;
  flex:0 0 auto}
.ato-brand i{width:34px;height:34px;border-radius:var(--ato-r);
  background:var(--ato-ink);color:#fff;display:grid;place-items:center;
  font-style:normal;font-family:var(--ato-head);font-weight:700;font-size:1rem;
  flex:0 0 auto}
.ato-brand b{font-family:var(--ato-head);font-weight:700;font-size:1.18rem;
  color:var(--ato-ink);line-height:1;letter-spacing:-.02em}
.ato-brand b span{display:block;font-family:var(--ato-body);font-weight:400;
  font-size:.6rem;letter-spacing:.18em;text-transform:uppercase;
  color:var(--ato-faint);margin-top:.18rem}
.ato-nav{display:flex;align-items:center;gap:.1rem;margin-left:auto;min-width:0}
.ato-nav a{font-family:var(--ato-head);font-weight:500;font-size:.84rem;
  color:var(--ato-grey);text-decoration:none;padding:.4rem .5rem;
  border-radius:var(--ato-r);white-space:nowrap}
.ato-nav a:hover{color:var(--ato-ink);background:var(--ato-wash)}
.ato-nav a.on{color:var(--ato-ink);font-weight:700}
.ato-bar .ato-go{margin-left:.5rem;flex:0 0 auto}
.ato-burger{margin-left:auto;display:none;position:relative}
.ato-burger summary{list-style:none;cursor:pointer;padding:.5rem .9rem;
  font-family:var(--ato-head);font-weight:600;font-size:.88rem;
  border:1px solid var(--ato-rule-2);border-radius:var(--ato-r);
  color:var(--ato-ink)}
.ato-burger summary::-webkit-details-marker{display:none}
.ato-drawer{position:absolute;right:0;top:calc(100% + .6rem);width:16rem;
  background:#fff;border:1px solid var(--ato-rule);border-radius:var(--ato-r);
  padding:.5rem .9rem 1rem;box-shadow:0 26px 46px -32px rgba(12,47,99,.6)}
.ato-drawer a{display:block;padding:.55rem .1rem;font-family:var(--ato-head);
  font-weight:600;color:var(--ato-ink);text-decoration:none;
  border-bottom:1px solid var(--ato-rule)}
.ato-drawer .ato-go{margin-top:.9rem;width:100%}
@media (max-width:1150px){.ato-nav a{font-size:.79rem;padding-inline:.36rem}}
@media (max-width:1030px){
  .ato-nav,.ato-bar-in>.ato-go{display:none}
  .ato-burger{display:block}
}

/* ---------- hero: one bordered spec card, centred ------------------------ */
.ato-hero{background:
  linear-gradient(180deg,var(--ato-wash) 0%,var(--ato-paper) 62%);
  padding-block:clamp(2rem,4vw,3.4rem) var(--ato-tall)}
.ato-card{border:1px solid var(--ato-rule);border-radius:var(--ato-r);
  background:var(--ato-paper);display:grid;gap:1px;background:var(--ato-rule);
  grid-template-columns:minmax(0,1fr) minmax(280px,1.15fr) minmax(0,1fr)}
.ato-card>*{background:var(--ato-paper);min-width:0}
.ato-card-top{grid-column:1/-1;padding:clamp(1.8rem,4vw,3.2rem)
  clamp(1.2rem,3vw,2.4rem) clamp(1.4rem,3vw,2rem);text-align:center}
.ato-card-top h1{font-size:clamp(2.1rem,5.2vw,3.9rem);letter-spacing:-.035em;
  max-width:18ch;margin-inline:auto}
.ato-card-top h1 b{color:var(--ato-blue);font-weight:700}
.ato-card-top p{margin:1.1rem auto 0;color:var(--ato-grey);max-width:52ch;
  font-size:1.06rem}
.ato-card-top .ato-acts{justify-content:center;margin-top:1.7rem}
.ato-side{display:flex;flex-direction:column;justify-content:center;
  gap:1.6rem;padding:clamp(1.4rem,3vw,2.2rem)}
.ato-side-item b{display:block;font-family:var(--ato-head);font-weight:700;
  font-size:1.55rem;color:var(--ato-ink);line-height:1.05}
.ato-side-item span{font-size:.88rem;color:var(--ato-faint)}
.ato-side-item p{font-size:.95rem;color:var(--ato-grey);margin:.35rem 0 0}
.ato-shot{display:grid;place-items:center;padding:clamp(1rem,2.4vw,1.8rem);
  position:relative;background:
    radial-gradient(75% 60% at 50% 30%,var(--ato-sky-2) 0%,var(--ato-paper) 72%)}
.ato-shot img{width:min(100%,270px)}
.ato-stamp{position:absolute;left:50%;translate:-50% 0;bottom:.9rem;
  background:var(--ato-ink);color:#fff;border-radius:100px;padding:.4rem 1rem;
  font-family:var(--ato-head);font-weight:600;font-size:.82rem;white-space:nowrap}
.ato-card-foot{grid-column:1/-1;display:grid;gap:1px;background:var(--ato-rule);
  grid-template-columns:repeat(4,minmax(0,1fr))}
.ato-card-foot>div{background:var(--ato-paper);padding:1.1rem 1.2rem;
  display:flex;align-items:center;gap:.85rem;min-width:0}
.ato-card-foot img{width:52px;flex:0 0 auto}
.ato-card-foot span{font-family:var(--ato-head);font-weight:600;font-size:.9rem;
  color:var(--ato-ink);line-height:1.25}
@media (max-width:960px){
  .ato-card{grid-template-columns:minmax(0,1fr)}
  .ato-card-foot{grid-template-columns:repeat(2,minmax(0,1fr))}
  .ato-side{flex-direction:row;flex-wrap:wrap;gap:1.4rem 2.4rem}
}
@media (max-width:520px){.ato-card-foot{grid-template-columns:minmax(0,1fr)}}

/* ---------- numbered cells ---------------------------------------------- */
.ato-cell-n{font-family:var(--ato-head);font-weight:700;font-size:.82rem;
  color:var(--ato-blue);display:block;margin-bottom:.7rem;letter-spacing:.1em}
.ato-grid h3{font-size:1.1rem;margin-bottom:.45rem}
.ato-grid p{font-size:.98rem;color:var(--ato-grey);margin:0}
.deep .ato-grid p{color:#A4BBDC}

/* ---------- product overview: split with a spec list -------------------- */
.ato-split{display:grid;grid-template-columns:minmax(0,1.02fr) minmax(0,.98fr);
  gap:clamp(1.4rem,3.4vw,3rem);align-items:center}
.ato-split>*{min-width:0}
.ato-lead{font-size:1.12rem}
.ato-spec{border:1px solid var(--ato-rule);border-radius:var(--ato-r);
  background:var(--ato-paper)}
.ato-spec div{display:flex;justify-content:space-between;gap:1rem;
  padding:.72rem 1.1rem;border-bottom:1px solid var(--ato-rule);font-size:.97rem}
.ato-spec div:last-child{border-bottom:0}
.ato-spec dt{color:var(--ato-grey);margin:0}
.ato-spec dd{margin:0;font-family:var(--ato-head);font-weight:600;
  color:var(--ato-ink);text-align:right}
.ato-frame{border:1px solid var(--ato-rule);border-radius:var(--ato-r);
  padding:.8rem;background:var(--ato-paper)}
.ato-frame img{width:100%;border-radius:calc(var(--ato-r) - 1px)}
@media (max-width:900px){.ato-split{grid-template-columns:minmax(0,1fr)}}

/* ---------- reviews ------------------------------------------------------ */
.ato-stars{color:var(--ato-seal);letter-spacing:.16em;font-size:.9rem;
  margin-bottom:.8rem}
.ato-quote{font-family:var(--ato-head);font-weight:600;font-size:1.12rem;
  line-height:1.32;color:var(--ato-ink);margin:0 0 .8rem}
.ato-by{display:flex;align-items:center;gap:.8rem;margin-top:1.3rem;
  padding-top:1.1rem;border-top:1px solid var(--ato-rule)}
.ato-by img{width:46px;border-radius:100px;flex:0 0 auto}
.ato-by b{display:block;font-family:var(--ato-head);font-weight:700;
  font-size:.98rem;color:var(--ato-ink)}
.ato-by span{font-size:.84rem;color:var(--ato-faint)}

/* ---------- packages: a comparison lattice ------------------------------ */
.ato-cols{display:grid;gap:1px;background:var(--ato-rule);
  border:1px solid var(--ato-rule);border-radius:var(--ato-r);
  grid-template-columns:repeat(3,minmax(0,1fr))}
.ato-col{background:var(--ato-paper);display:flex;flex-direction:column;
  min-width:0}
.ato-col.pick{background:var(--ato-wash)}
.ato-col-head{padding:1.4rem 1.4rem 1.1rem;text-align:center;
  border-bottom:1px solid var(--ato-rule);display:flex;flex-direction:column;
  align-items:center;justify-content:flex-end;min-height:332px}
.ato-flag{display:inline-block;font-family:var(--ato-head);font-weight:600;
  font-size:.68rem;letter-spacing:.16em;text-transform:uppercase;
  border:1px solid var(--ato-rule-2);border-radius:100px;padding:.24rem .8rem;
  color:var(--ato-grey);margin-bottom:.9rem}
.ato-col.pick .ato-flag{background:var(--ato-blue);color:#fff;
  border-color:var(--ato-blue)}
.ato-col-head img{margin:0 auto .8rem;width:min(100%,180px)}
.ato-col-head h3{font-size:1.22rem}
.ato-col-head em{font-style:normal;font-size:.9rem;color:var(--ato-grey);
  display:block;margin-top:.15rem}
.ato-rate{text-align:center;padding:1.2rem 1rem .4rem;font-family:var(--ato-head);
  font-weight:700;color:var(--ato-ink);display:flex;align-items:flex-start;
  justify-content:center;gap:.2rem}
.ato-rate i{font-style:normal;font-size:1.25rem;margin-top:.4rem}
.ato-rate b{font-size:3rem;line-height:1;letter-spacing:-.04em}
.ato-col.pick .ato-rate{color:var(--ato-blue)}
.ato-rate-s{text-align:center;font-size:.9rem;color:var(--ato-grey);
  padding:0 1rem 1.1rem;border-bottom:1px solid var(--ato-rule)}
/* the comparison rail: identical rows in every column */
.ato-rows{list-style:none;margin:0;padding:0}
.ato-rows li{display:flex;align-items:center;gap:.6rem;
  padding:.72rem 1.2rem;border-bottom:1px solid var(--ato-rule);font-size:.93rem;
  min-height:52px}
.ato-rows li b{font-family:var(--ato-head);font-weight:600;color:var(--ato-ink)}
.ato-rows li.no{color:var(--ato-faint)}
.ato-yes{width:16px;height:16px;flex:0 0 auto;position:relative}
.ato-yes::after{content:"";position:absolute;left:4px;top:0;width:6px;height:12px;
  border:solid var(--ato-blue);border-width:0 2.5px 2.5px 0;transform:rotate(42deg)}
.ato-dash{width:16px;height:16px;flex:0 0 auto;position:relative}
.ato-dash::after{content:"";position:absolute;left:2px;top:7px;width:12px;
  height:2px;background:var(--ato-rule-2)}
.ato-col-foot{padding:1.2rem;margin-top:auto}
.ato-col-foot .ato-note{text-align:center;margin-top:.65rem}
@media (max-width:900px){
  .ato-cols{grid-template-columns:minmax(0,1fr);max-width:460px;
    margin-inline:auto}
  .ato-col-head{min-height:0}
}

/* ---------- science: the ledger ------------------------------------------ */
.ato-ledger{border:1px solid var(--ato-rule);border-radius:var(--ato-r);
  background:var(--ato-paper);overflow:visible}
.ato-line{display:grid;grid-template-columns:minmax(0,14rem) minmax(0,5.5rem)
  minmax(0,1fr);gap:1rem;align-items:center;padding:.78rem 1.2rem;
  border-bottom:1px solid var(--ato-rule)}
.ato-line:last-child{border-bottom:0}
.ato-line>*{min-width:0}
.ato-line b{font-family:var(--ato-head);font-weight:600;color:var(--ato-ink);
  font-size:.98rem}
.ato-amt{font-family:var(--ato-head);font-weight:700;color:var(--ato-blue);
  font-size:.95rem;font-variant-numeric:tabular-nums;white-space:nowrap}
.ato-amt.none{color:var(--ato-faint);font-weight:600}
.ato-line span.d{font-size:.92rem;color:var(--ato-grey)}
.ato-line-head{background:var(--ato-wash);font-family:var(--ato-head);
  font-size:.7rem;letter-spacing:.16em;text-transform:uppercase;
  color:var(--ato-faint)}
.ato-line-head b,.ato-line-head span{font-family:var(--ato-head);
  font-weight:600;color:var(--ato-faint);font-size:.7rem;letter-spacing:.16em}
@media (max-width:760px){
  .ato-line{grid-template-columns:minmax(0,1fr) auto;gap:.3rem 1rem}
  .ato-line span.d{grid-column:1/-1;color:var(--ato-grey)}
  .ato-line-head{display:none}
}

/* ---------- guarantee ---------------------------------------------------- */
.ato-guard{display:grid;grid-template-columns:auto minmax(0,1fr);
  gap:clamp(1.4rem,4vw,3rem);align-items:center}
.ato-guard>*{min-width:0}
.ato-guard img.seal{width:min(100%,200px)}
.ato-ticks{display:grid;gap:.55rem}
.ato-ticks li{position:relative;padding-left:1.7rem;font-size:.99rem}
.ato-ticks li::before{content:"";position:absolute;left:3px;top:.5rem;width:7px;
  height:13px;border:solid var(--ato-sky);border-width:0 3px 3px 0;
  transform:rotate(42deg)}
.ato-marks{display:flex;flex-wrap:wrap;gap:1.2rem;align-items:center;
  margin-top:1.5rem}
.ato-marks img{width:100px}
@media (max-width:820px){.ato-guard{grid-template-columns:minmax(0,1fr);
  justify-items:start}}

/* ---------- FAQ ---------------------------------------------------------- */
.ato-faq{border:1px solid var(--ato-rule);border-radius:var(--ato-r);
  background:var(--ato-paper);max-width:62rem}
.ato-faq details{border-bottom:1px solid var(--ato-rule)}
.ato-faq details:last-child{border-bottom:0}
.ato-faq summary{list-style:none;cursor:pointer;position:relative;
  padding:1.05rem 3rem 1.05rem 1.3rem;font-family:var(--ato-head);
  font-weight:600;font-size:1.03rem;color:var(--ato-ink)}
.ato-faq summary::-webkit-details-marker{display:none}
.ato-faq summary::after{content:"";position:absolute;right:1.3rem;top:1.35rem;
  width:10px;height:10px;border:solid var(--ato-blue);border-width:0 2px 2px 0;
  transform:rotate(45deg);transition:transform .18s ease}
.ato-faq details[open] summary::after{transform:rotate(-135deg);top:1.6rem}
.ato-faq details[open] summary{color:var(--ato-blue)}
.ato-ans{padding:0 3rem 1.2rem 1.3rem;color:var(--ato-grey);font-size:.99rem}
.ato-ans p{margin:0}

/* ---------- final buy ---------------------------------------------------- */
.ato-buy{background:var(--ato-wash);padding-block:var(--ato-tall)}
.ato-buy-card{border:1px solid var(--ato-rule);border-radius:var(--ato-r);
  background:var(--ato-paper);display:grid;
  grid-template-columns:minmax(0,1.04fr) minmax(0,.96fr);gap:1px;
  background:var(--ato-rule)}
.ato-buy-card>*{background:var(--ato-paper);min-width:0}
.ato-buy-words{padding:clamp(1.6rem,3.6vw,3rem)}
.ato-buy-words h2{font-size:clamp(1.9rem,4vw,2.9rem);max-width:16ch}
.ato-buy-words h2 b{color:var(--ato-blue);font-weight:700}
.ato-buy-words p{margin-top:1rem;color:var(--ato-grey);max-width:44ch}
.ato-tally{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));
  gap:.7rem 1.4rem;margin-top:1.7rem;padding-top:1.3rem;
  border-top:1px solid var(--ato-rule);font-size:.94rem;color:var(--ato-grey)}
.ato-tally b{color:var(--ato-ink);font-family:var(--ato-head);font-weight:700}
.ato-buy-pic{display:grid;place-items:center;padding:clamp(1.4rem,3vw,2.4rem);
  position:relative;background:
    radial-gradient(70% 55% at 50% 42%,var(--ato-sky-2) 0%,var(--ato-paper) 74%)}
.ato-buy-pic img.bottle{width:min(100%,300px)}
.ato-buy-pic img.seal-t{position:absolute;right:6%;bottom:8%;width:96px}
@media (max-width:900px){
  .ato-buy-card{grid-template-columns:minmax(0,1fr)}
  .ato-buy-pic{order:-1}
}

/* ---------- supporting pages -------------------------------------------- */
.ato-mast{background:linear-gradient(180deg,var(--ato-wash) 0%,
  var(--ato-paper) 100%);border-bottom:1px solid var(--ato-rule);
  padding-block:1.2rem clamp(2.2rem,4.4vw,3.4rem)}
.ato-crumb{font-size:.85rem;color:var(--ato-faint);margin-bottom:1.4rem}
.ato-crumb a{color:var(--ato-grey);text-decoration:none}
.ato-crumb a:hover{color:var(--ato-ink)}
.ato-crumb b{color:var(--ato-ink);font-weight:600}
.ato-mast h1{font-size:clamp(1.9rem,4.4vw,3rem);max-width:20ch}
.ato-prose{max-width:70ch}
.ato-prose h2{font-size:clamp(1.3rem,2.6vw,1.8rem);margin:2.2rem 0 .7rem}
.ato-prose h2:first-child{margin-top:0}
.ato-prose h3{font-size:1.1rem;margin:1.6rem 0 .45rem}
.ato-prose ul{margin:0 0 1rem;display:grid;gap:.42rem}
.ato-prose ul li{position:relative;padding-left:1.4rem}
.ato-prose ul li::before{content:"";position:absolute;left:0;top:.72rem;width:7px;
  height:7px;border-radius:100px;background:var(--ato-sky)}
.ato-panel{border-left:4px solid var(--ato-sky);background:var(--ato-wash);
  padding:1.2rem 1.4rem;margin:1.8rem 0;border-radius:0 var(--ato-r)
  var(--ato-r) 0}
.ato-panel p{margin:0;font-size:1rem}
.ato-posts{display:grid;gap:0;border-top:1px solid var(--ato-rule)}
.ato-post{display:grid;grid-template-columns:auto minmax(0,1fr);gap:1.5rem;
  padding:1.8rem 0;border-bottom:1px solid var(--ato-rule);align-items:start}
.ato-post>*{min-width:0}
.ato-post img{width:220px;border-radius:var(--ato-r)}
.ato-post h2{margin:0 0 .55rem;font-size:1.3rem}
@media (max-width:720px){
  .ato-post{grid-template-columns:minmax(0,1fr)}
  .ato-post img{width:100%}
}
.ato-scroll{overflow-x:auto;max-width:100%;min-width:0}
.ato-tbl{border-collapse:collapse;width:100%;font-size:.96rem}
.ato-tbl th,.ato-tbl td{text-align:left;padding:.7rem .9rem;
  border-bottom:1px solid var(--ato-rule);white-space:nowrap}
.ato-tbl th{font-family:var(--ato-head);color:var(--ato-ink);
  border-bottom:2px solid var(--ato-ink)}
.ato-duo{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));
  gap:1.2rem 2.6rem}
.ato-duo>*{min-width:0}
@media (max-width:760px){.ato-duo{grid-template-columns:minmax(0,1fr)}}

/* ---------- footer ------------------------------------------------------- */
.ato-foot{background:var(--ato-ink);color:#9FB6D6;padding:3rem 0 2rem;
  font-size:.94rem}
.ato-foot-grid{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr;gap:2rem}
.ato-foot-grid>*{min-width:0}
.ato-foot h4{font-family:var(--ato-head);font-size:.74rem;letter-spacing:.18em;
  text-transform:uppercase;color:#fff;margin-bottom:.85rem}
.ato-foot ul{display:grid;gap:.42rem}
.ato-foot a{color:#C3D6EE;text-decoration:none}
.ato-foot a:hover{color:var(--ato-sky);text-decoration:underline}
.ato-foot-brand{display:flex;align-items:center;gap:.55rem;margin-bottom:.85rem}
.ato-foot-brand i{width:32px;height:32px;border-radius:var(--ato-r);
  background:#fff;color:var(--ato-ink);display:grid;place-items:center;
  font-style:normal;font-family:var(--ato-head);font-weight:700}
.ato-foot-brand b{font-family:var(--ato-head);font-size:1.1rem;color:#fff}
.ato-foot-pay{margin-top:1.1rem}
.ato-foot-pay img{width:160px}
.ato-legal{margin-top:2.4rem;padding-top:1.5rem;
  border-top:1px solid rgba(255,255,255,.14);font-size:.84rem;line-height:1.6;
  color:#7F97BC}
.ato-legal b{color:#C3D6EE;font-weight:700}
.ato-legal p{margin-bottom:.65rem}
@media (max-width:880px){.ato-foot-grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width:520px){.ato-foot-grid{grid-template-columns:minmax(0,1fr)}}

/* ---------- helpers ------------------------------------------------------ */
.ato-gap{margin-top:1.5rem}
.ato-mid{text-align:center}
.ato-sr{position:absolute;width:1px;height:1px;padding:0;margin:-1px;
  clip-path:inset(50%);white-space:nowrap;border:0}

/* each pack photograph gets its own width so the three heads finish at the
   same height and the comparison rows line up across the columns */
.ato-col-head img.ato-pk2{width:min(100%,152px)}
.ato-col-head img.ato-pk3{width:min(100%,186px)}
.ato-col-head img.ato-pk6{width:min(100%,258px)}
