/* CRISPRO — site.css. Design system: 08_Website/design.md. Palette = black, white, #671414, silver ramp. Radius 0. */
:root{
  /* scroll-craft engine tokens (site/vendor/scrollcraft.css reads these; the engine is never edited). Brand rules win. */
  --sc-canvas:#FFFFFF;--sc-surface:#FAFAFA;--sc-ink:#000000;--sc-ink-soft:#646464;--sc-accent:#671414;--sc-accent-ink:#FFFFFF;
  --sc-font-display:'Anton','Noto Sans Thai VF','Impact',sans-serif;--sc-font-text:'Source Serif 4','Noto Sans Thai',Georgia,serif;--sc-r-sm:0;--sc-r-md:0;--sc-r-lg:0;
  --maroon:#671414; --maroon-deep:#4A0E0E; --ink:#000; --paper:#fff;
  --s050:#FAFAFA; --s100:#EFEFEF; --s200:#D9D9D9; --s300:#B7B7B7; --s500:#858585; --s500-text:#646464;
  --sweep-maroon-silver:linear-gradient(90deg,#671414 0%,#671414 34%,#E8E8E8 56%,#9A9A9A 72%,#1A1A1A 100%);
  --sweep-silver:linear-gradient(115deg,#FFFFFF 0%,#DEDEDE 22%,#F6F6F6 44%,#C4C4C4 68%,#EDEDED 100%);
  --font-display:'Anton','Noto Sans Thai VF','Impact',sans-serif;   /* Thai display = Noto Sans Thai VF at wdth 62.5 (condensed black), PD 07/09: narrow like Impact */
  --font-body:'Source Serif 4','Noto Sans Thai',Georgia,serif;
  --header-h:72px; --gutter:clamp(16px,4vw,48px); --max:1280px;
  --ease:cubic-bezier(.4,0,.2,1);
}
*,*::before,*::after{box-sizing:border-box;border-radius:0}
html{scroll-behavior:auto}   /* the engine floor asks for smooth; Lenis owns smoothing here */
:focus-visible{border-radius:0;outline:2px solid var(--maroon);outline-offset:3px}
.circle{border-radius:50%;aspect-ratio:1}
html{-webkit-text-size-adjust:100%;background:var(--paper);color:var(--ink)}
body{margin:0;font-family:var(--font-body);font-size:1.0625rem;line-height:1.65;font-variant-numeric:tabular-nums}
:lang(th){line-height:1.75}
img,svg,video,canvas{display:block;max-width:100%}
a{color:var(--maroon);text-decoration:underline;text-underline-offset:3px;text-decoration-thickness:1px}
a:hover{color:var(--maroon-deep)}
button{font:inherit;color:inherit;background:none;border:0;padding:0;cursor:pointer}
h1,h2,h3,h4,p,ul,table{margin:0}
ul{padding:0;list-style:none}
.container{max-width:var(--max);margin:0 auto;padding-left:var(--gutter);padding-right:var(--gutter)}
.sr-only{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap}

/* ---- language toggle: both languages live in the HTML; the toggle hides one ---- */
[data-lang="th"] .en{display:none!important}
[data-lang="en"] .th{display:none!important}

/* ---- type ---- */
.display{font-family:var(--font-display);font-weight:400;text-transform:uppercase;line-height:1;letter-spacing:-.01em}
.display [lang="th"],.display [lang="th"] *,.display[lang="th"],.display.th{letter-spacing:-.01em;text-transform:none;line-height:1.05;font-weight:900;font-stretch:62.5%}
.d-xl{font-size:clamp(3rem,9vw,7rem);line-height:.92}
.d-l{font-size:clamp(2.25rem,5vw,4rem);line-height:1}
.d-m{font-size:1.75rem;line-height:1.1}
.lead{font-size:1.375rem;line-height:1.5}
.micro{font-size:.8125rem;line-height:1.4;color:var(--s500-text)}
.data{font-size:1rem;line-height:1.4}
b,strong{font-weight:700}

/* ---- buttons ---- */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:10px;min-height:52px;padding:0 28px;
  font-family:var(--font-display);font-weight:400;font-size:1.125rem;letter-spacing:.02em;text-transform:uppercase;text-decoration:none;
  line-height:1;white-space:nowrap;transition:background-color .15s,color .15s,border-color .15s}
.btn [lang="th"],.btn .th{text-transform:none;letter-spacing:-.01em}
.btn-primary{background:var(--maroon);color:#fff}
.btn-primary:hover{background:var(--maroon-deep);color:#fff}
.btn-secondary{background:transparent;color:var(--ink);border:1px solid var(--ink)}
.btn-secondary:hover{background:var(--ink);color:#fff}
.btn-on-dark.btn-secondary{color:#fff;border-color:#fff}
.btn-on-dark.btn-secondary:hover{background:#fff;color:var(--ink)}
.btn-icon{width:22px;height:22px;flex:none}
.cta-row{display:flex;flex-wrap:wrap;gap:12px}

/* ---- header ---- */
.header{position:fixed;top:0;left:0;right:0;height:var(--header-h);z-index:50;display:flex;align-items:center;
  background:transparent;transition:background-color .25s,box-shadow .25s}
.header.is-solid{background:rgba(255,255,255,.96);box-shadow:0 1px 0 #000}
.header .container{display:grid;grid-template-columns:1fr auto 1fr;align-items:center;gap:24px;width:100%;max-width:none}   /* full width: logo in the left corner, TH/EN + Shopee in the right corner, nav dead centre */
.header-right{display:flex;align-items:center;gap:16px;justify-self:end}
.header-logo{display:block;width:132px;color:var(--ink);flex:none}
.header-logo svg{width:100%;height:auto}
.nav{justify-self:center}
.nav ul{display:flex;gap:clamp(12px,1.6vw,24px)}
.nav a{font-family:var(--font-display);font-size:1rem;letter-spacing:.04em;text-transform:uppercase;color:var(--ink);text-decoration:none;padding:6px 0;border-bottom:2px solid transparent}
.nav a :lang(th){text-transform:none;letter-spacing:0;font-size:1rem}
.nav a:hover{border-bottom-color:var(--maroon)}
.lang{display:flex;border:1px solid var(--ink);flex:none;height:44px}
.lang button{font-family:var(--font-display);font-size:1rem;letter-spacing:.06em;padding:0 14px;line-height:1;color:var(--ink);height:100%}
.lang button[aria-pressed="true"]{background:var(--ink);color:#fff}
.header-cta{flex:none;min-height:44px;height:44px;padding:0 18px;font-size:1rem}
.menu-btn{display:none;margin-left:auto;font-family:var(--font-display);font-size:1rem;letter-spacing:.06em;text-transform:uppercase;border:1px solid var(--ink);padding:0 14px;height:40px;line-height:1}
.menu-btn[aria-expanded="true"]{background:var(--ink);color:#fff}
@media (max-width:960px){
  :root{--header-h:60px}
  .header .container{display:flex;gap:12px}
  .header-right{margin-left:0}
  .header-logo{width:120px}
  .menu-btn{display:inline-block}
  .lang{height:40px}
  .lang button{padding:0 12px;font-size:1rem}
  .nav{position:fixed;inset:var(--header-h) 0 0 0;background:#000;color:#fff;display:none;padding:32px var(--gutter)}
  .nav.is-open{display:block}
  .nav ul{flex-direction:column;gap:0}
  .nav a{display:block;color:#fff;font-size:2rem;padding:14px 0;border-bottom:1px solid var(--s500)}
  .nav a :lang(th){font-size:2rem}
  .header-cta{display:none}
}

/* ---- reveal overlay ---- */
.satin{background-image:url("../img/satin-1600.webp?v=20260921aa")}
@media (min-width:1601px){.satin{background-image:url("../img/satin-2400.webp?v=20260921aa")}}
@media (max-width:1000px){.satin{background-image:url("../img/satin-1000.webp?v=20260921aa")}}
/* 2x screens get the next size up: a 1000 px satin stretched over 2000 device pixels reads as blocky */
@media (min-resolution:1.5dppx) and (max-width:1000px){.satin{background-image:url("../img/satin-2400.webp?v=20260921aa")}}
@media (min-resolution:1.5dppx) and (min-width:1001px){.satin{background-image:url("../img/satin-3200.webp?v=20260921aa")}}
@media (max-aspect-ratio:3/4){.satin{background-image:url("../img/satin-portrait-1000.webp?v=20260921aa")}}
@media (max-aspect-ratio:3/4) and (max-width:640px){.satin{background-image:url("../img/satin-portrait-640.webp?v=20260921aa")}}
.reveal-skip{position:fixed;right:clamp(16px,3vw,32px);bottom:clamp(16px,3vw,32px);z-index:110;font-family:var(--font-display);font-size:1rem;letter-spacing:.1em;text-transform:uppercase;
  border:1px solid var(--ink);background:rgba(255,255,255,.7);padding:12px 18px;line-height:1;color:var(--ink)}
.reveal-skip:hover{background:var(--ink);color:#fff}
.is-animating .stage-hint{opacity:0}
/* the opening: black ground + white wordmark, then the page opens from a centre dot and the wordmark travels into the header */
#reveal{position:fixed;inset:0;z-index:100;background:#000}
#reveal[hidden]{display:none}
.reveal-logo{position:fixed;left:50%;top:50%;z-index:102;width:min(62vw,440px);color:#fff;transform:translate(-50%,-50%);transform-origin:0 0;will-change:transform;pointer-events:none}   /* above the growing frame (stage z 101) */
.no-reveal .reveal-logo{display:none}
.reveal-logo svg{width:100%;height:auto}
.is-animating .header-logo,.is-animating .nav,.is-animating .header-right,.is-animating .menu-btn{opacity:0;transition:opacity .45s}
html.is-animating .hero-stage{z-index:101;background:transparent}   /* the growing frame rides above the black */
html.is-animating,html.is-animating body{overflow:hidden;height:100%}
.hero-stage{position:sticky;top:0;height:100svh;overflow:clip;background:#fff}
.dotgrid{position:absolute;inset:0;z-index:0;pointer-events:none;opacity:1;transition:opacity .4s}
.is-animating .dotgrid{opacity:0}
.hero-panel,#stage{z-index:1}
.reveal-skip[hidden]{display:none}
#stage model-viewer:not(.is-live){pointer-events:none}

/* ---- hero ---- */
.hero{position:relative;background:#fff}   /* white ground (PD 06/09): the glow's white ring melts into it */
/* the deck p4 glow: maroon centre, white outer, melting into the satin on the copy side (PD 06/09) */
.hero-panel{position:absolute;top:var(--header-h);bottom:0;right:0;width:50%;opacity:1;transition:opacity .5s;--glow:1}   /* site.js raises --glow to what the stage height allows */
.hero-panel::after{content:'';position:absolute;top:0;bottom:0;left:50%;width:auto;aspect-ratio:1/1;pointer-events:none;transform:translateX(calc(-50% + var(--glow-x,0px))) scale(var(--glow));transform-origin:50% 50%;opacity:.055;mix-blend-mode:multiply;background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0'/></filter><rect width='140' height='140' filter='url(%23n)'/></svg>");-webkit-mask-image:radial-gradient(circle farthest-side at 50% 50%,#000 0%,rgba(0,0,0,.9) 40%,rgba(0,0,0,.35) 75%,rgba(0,0,0,0) 100%);mask-image:radial-gradient(circle farthest-side at 50% 50%,#000 0%,rgba(0,0,0,.9) 40%,rgba(0,0,0,.35) 75%,rgba(0,0,0,0) 100%)}   /* a whisper of grain over the glow breaks the 8-bit rings PD read as cuts (10/09) */
.hero-panel::before{content:'';position:absolute;top:0;bottom:0;left:50%;width:auto;aspect-ratio:1/1;transform:translateX(calc(-50% + var(--glow-x,0px))) scale(var(--glow));transform-origin:50% 50%;will-change:transform;   /* a SQUARE box the panel's height, so the circle fades to zero before every box edge whatever the scale (the old inset:0 box was narrower than the circle: hard edges left and right, PD 10/09). the glow itself: 1.28x in the first state, 1x in the second (site.js drives --glow from the scroll); the opening scales the panel box, never this layer */
  background:radial-gradient(circle farthest-side at 50% 50%,#671414 0%,#671414 26%,rgba(103,20,20,.93) 34%,rgba(103,20,20,.8) 44%,rgba(103,20,20,.63) 54%,rgba(103,20,20,.45) 64%,rgba(103,20,20,.28) 74%,rgba(103,20,20,.15) 83%,rgba(103,20,20,.07) 90%,rgba(103,20,20,.025) 96%,rgba(103,20,20,0) 100%)}   /* long tail, slow approach to zero: no visible silhouette */
#stage{position:absolute;top:var(--header-h);bottom:0;right:0;left:50%;transition:left .6s var(--ease),top .6s var(--ease),height .6s var(--ease)}
#stage>*{position:absolute}
#stage canvas,#stage img{max-width:none}
#stage model-viewer{inset:0;width:100%;height:100%;--poster-color:transparent;background:transparent;opacity:0;transition:opacity .3s;z-index:2}   /* the pack rides ABOVE the callouts (PD 15/09): a line end that turns behind the pack disappears under it */
#stage model-viewer.is-live{opacity:1}
.stage-hint{position:absolute;left:50%;bottom:20px;transform:translateX(-50%);color:var(--ink);font-size:.8125rem;letter-spacing:.06em;text-transform:uppercase;font-family:var(--font-display);opacity:.7;pointer-events:none}
.hero-copy{position:relative;z-index:2;width:50%;min-height:100svh;display:flex;flex-direction:column;justify-content:center;padding:calc(var(--header-h) + 32px) var(--gutter) 48px;transition:opacity .5s}
.is-animating .hero-copy{opacity:0;filter:blur(10px)}
.hero-copy{filter:blur(0);transition:opacity .55s,filter .7s}   /* arrives soft, racks into focus (the reference does this on every line) */
@media (max-width:960px){body{padding-bottom:72px}}
.hero-copy .container{padding:0;margin:0;max-width:560px;position:relative}
.hero-copy .slide-2{--s2w:100%;--disc:min(420px,calc(var(--s2w) * .35),33.5vh);position:absolute;inset:0;width:var(--s2w);display:none;flex-direction:column;justify-content:center;align-items:flex-start;opacity:0;pointer-events:none;will-change:transform}   /* site.js sets --s2w = the room up to the pack; everything inside scales from it */
.hero-copy .slide-2.is-live{display:flex}
.hero-copy .slide-2 #whyIntro{width:100%}   /* the moved intro is a flex child: without this it shrink-wraps and the "=" never reaches the pack (found 08/09) */
.hero-copy .slide-2.is-front{pointer-events:auto}
.hero-copy .slide-2 .who-title{--who-w:min(440px,calc(var(--s2w) * .5),43.5vh);margin-bottom:clamp(20px,3vw,44px);justify-content:flex-start;width:100%;flex-wrap:nowrap}
.hero-copy .slide-2 .equation{margin:0;gap:calc(var(--disc) * .12);justify-content:flex-start;width:100%;flex-wrap:nowrap}   /* compact: discs, + and = sit close (PD 08/09: "too wide, reduce the gap at + and =") */   /* two big discs fill the room; the "=" lands beside the pack */
.hero-copy .slide-2 .equation .circle{width:var(--disc);font-size:min(2.5rem,calc(var(--disc) * .1))}   /* the vh caps hold the 1440x900 proportions on wider windows (PD 08/09: too large at ~1860) */
.hero-copy .slide-2 .equation .bar{display:none}
.hero-copy .slide-2 .equation .op{line-height:1;font-size:calc(var(--disc) * .3)}   /* + and = read against the discs, not the viewport (PD 08/09: too small) */
.hero-copy .slide-2 .equation .op:last-of-type{font-size:calc(var(--disc) * .34)}
.gap .photo{overflow:hidden}
.hero-copy h1{margin-bottom:20px}
.hero-copy .lead{margin-bottom:28px;max-width:none;white-space:nowrap}
.hero-copy .lead .en{font-size:max(16px,min(1em,calc((50vw - 2 * var(--gutter)) / 18.6)))}.hero-copy .lead .th{font-size:min(1em,calc((50vw - 2 * var(--gutter)) / 14.4))}
@media (max-width:960px){.hero-copy .lead .en{font-size:max(16px,min(1em,calc((100vw - 2 * var(--gutter)) / 18.6)))}.hero-copy .lead .th{font-size:min(1em,calc((100vw - 2 * var(--gutter)) / 14.4))}}
@media (max-width:349px){.hero-copy .lead{white-space:normal}}   /* 320-wide phones: the English sentence cannot fit one line at the 16 px floor, so it may wrap there */   /* each sentence on ONE line (PD 21/09): the 34ch cap wrapped the English; the <br> still separates the two */
/* callouts: the four key facts float around the bar, each on a leader (30deg diagonal + horizontal = a 150deg elbow) ending in a dot on the bar */
.callouts{position:absolute;inset:0;z-index:1;pointer-events:none;color:#000;opacity:1;transition:opacity .5s .25s,filter .7s .25s;filter:blur(0)}
.is-animating .callouts{filter:blur(8px)}
.is-animating .callouts{opacity:0;transition:none}
.callouts svg{position:absolute;inset:0;width:100%;height:100%;overflow:visible}
.callouts path{stroke:#000;stroke-width:1.5;fill:none}   /* black lines and labels (PD 15/09) */
.callouts circle{fill:#000}
.callouts ul{position:absolute;inset:0}
.callouts li{position:absolute;display:flex;flex-direction:column;align-items:center;text-align:center;gap:3px;white-space:nowrap;font-size:1rem;line-height:1;visibility:hidden;}   /* two lines, centred, like the radar labels on deck p4 */
.callouts li.is-set{visibility:visible}
.callouts li b{font-family:var(--font-display);font-weight:400;font-size:clamp(1.5rem,2.4vw,2.25rem);line-height:1}
@media (max-width:960px){.callouts li{font-size:1rem}.callouts li b{font-size:1.5rem}}
@media (max-width:960px){.hero-copy .slide-2 .equation .op:last-of-type{display:none}}   /* phones stack the pack ABOVE the copy, so "Crispy + Protein =" had nothing to its right (review 14/09) */
@media (max-width:960px){
  .hero{display:flex;flex-direction:column}
  .hero-panel{width:100%;bottom:auto;height:calc(62svh - var(--header-h));--glow:1}
  .hero-panel::before,.hero-panel::after{top:50%;bottom:auto;left:0;right:0;width:auto;height:auto;aspect-ratio:1/1;transform:translateY(-50%) scale(var(--glow))}   /* square = the panel's width: fades out inside the screen on phones too */
  #stage{left:0;right:0;top:var(--header-h);bottom:auto;height:calc(62svh - var(--header-h))}
  .hero-copy{width:100%;min-height:0;margin-top:62svh;padding-top:24px;justify-content:flex-start}
  .stage-hint{bottom:12px}
}

/* ---- sections ---- */
.section{padding:clamp(64px,9vw,128px) 0}
.section-head{border-bottom:1px solid currentColor;padding-bottom:14px;margin-bottom:clamp(32px,5vw,64px)}
.section-head h2{display:block}
.section-head .sub{margin-top:12px;font-size:1.25rem;max-width:64ch}
.on-black{background:#000;color:#fff}
.on-maroon{background:var(--maroon);color:#fff}
.on-silver{background:var(--s100)}
.on-satin{background:#DEDEDE center/cover no-repeat}
.on-black a,.on-maroon a{color:#fff}
.on-black .micro,.on-maroon .micro{color:var(--s300)}
/* minmax(0,…): a wide min-content on one side (the long Thai product name) must not squeeze the other column */
.split{display:grid;grid-template-columns:minmax(0,58fr) minmax(0,42fr);gap:clamp(24px,5vw,72px);align-items:center}
.split.even{grid-template-columns:minmax(0,1fr) minmax(0,1fr)}
#product .split.even{grid-template-columns:minmax(0,1.18fr) minmax(0,1fr)}
@media (max-width:860px){.split,.split.even,#product .split.even{grid-template-columns:1fr}}
.rule{border:0;border-top:1px solid var(--s200);margin:0}

/* who / equation */
.equation{display:flex;align-items:center;justify-content:center;gap:clamp(12px,3vw,40px);flex-wrap:wrap;margin:0 0 clamp(40px,6vw,72px)}
.equation .circle{width:clamp(120px,22vw,240px);display:flex;align-items:center;justify-content:center;overflow:hidden;position:relative;color:#fff;font-weight:700;font-size:clamp(1.25rem,2.6vw,2rem)}
.equation .circle u{text-decoration:underline;text-underline-offset:6px;text-decoration-thickness:2px}
.equation .circle img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.equation .circle span{position:relative}
.equation .circle.maroon{background:#671414 url("../img/sweep-square-640.webp?v=20260921aa") center/cover no-repeat}
.equation .op{font-family:var(--font-display);font-size:clamp(2rem,5vw,4rem);line-height:1}
.equation .bar{height:clamp(120px,22vw,240px);width:auto}   /* as tall as the discs, like deck p2 */
.who-title{--who-w:clamp(160px,28vw,300px);display:flex;align-items:flex-end;justify-content:center;gap:0;flex-wrap:wrap;margin-bottom:clamp(32px,5vw,56px);line-height:1}
.who-title .logo-inline{width:var(--who-w);color:var(--ink);display:block}
.who-title .logo-inline svg{width:100%;height:auto;display:block}
/* the words stand as tall as the wordmark's letters: the letters fill ~74% of the SVG's 2.79:1 box */
.who-word{font-size:calc(var(--who-w) * .31);line-height:1;letter-spacing:-.01em;margin-bottom:calc(var(--who-w) * -.022)}
.who-word.th{font-size:calc(var(--who-w) * .336);letter-spacing:-.02em;text-transform:none;margin-left:calc(var(--who-w) * .07);margin-bottom:calc(var(--who-w) * -.04)}
.who-word.en{text-transform:uppercase}
.who-word.en:first-child{margin-right:calc(var(--who-w) * .07)}
.why{padding-bottom:0}
.why.is-empty{display:none}   /* the intro lives in the hero once the scroll scene has taken it */
.origin .q{color:var(--maroon);font-family:var(--font-display);font-size:clamp(1.75rem,3.6vw,2.75rem);line-height:1.1;margin:8px 0 12px;border-bottom:1px solid #000;padding-bottom:12px}
.origin .q [lang="th"],.origin .q .th{letter-spacing:-.02em}

/* gap */
.gap{--bleed:calc(var(--gutter) + max(0px,(100vw - var(--max)) / 2));display:grid;grid-template-columns:calc(50% - var(--bleed) / 2) 1fr;min-height:70vh;background:var(--sweep-silver);margin-right:calc(-1 * var(--bleed))}   /* the silver is the SECTION's, so the photo wipes in over silver, never white (PD 10/09); the bleed keeps the photo column at half the container */
.gap .photo{position:relative;min-height:320px}
.gap .photo .plx{position:absolute;inset:-14% 0;will-change:transform}
.gap .photo img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.gap .claim{display:flex;flex-direction:column;justify-content:center;padding:clamp(32px,6vw,96px)}
.gap .claim{padding-right:calc(clamp(32px,6vw,96px) + var(--bleed))}   /* the silver runs to the window's right edge, no white strip beside it while scrolling (PD 10/09) */
@media (max-width:860px){.gap{margin-right:0}.gap .claim{padding-right:clamp(32px,6vw,96px)}}
.gap .claim.origin{gap:0}
.gap .claim.origin p{margin:0;line-height:1.8}   /* PD 08/09: too cramped */
.gap .claim.origin .q{margin-bottom:18px}
.gap .claim .lead{font-size:clamp(1.25rem,2.4vw,1.75rem)}
@media (max-width:860px){.gap{grid-template-columns:1fr}}

/* product */
.radar-wrap{position:relative;height:100%;min-height:0;width:100%}   /* contributes no height of its own: the row is as tall as the spec column, and the radar fills that height (PD 08/09) */
.radar-box{position:absolute;top:0;bottom:0;left:50%;transform:translateX(-50%);aspect-ratio:1;max-width:100%}   /* the square the pentagon and the live pack share */
.radar{width:100%;height:100%;display:block}
@media (max-width:960px){.radar-wrap{height:auto;aspect-ratio:1;max-width:520px;margin:0 auto}.radar-box{position:absolute;inset:0;transform:none;left:0}}
.radar text{font-family:var(--font-body);fill:#000}
.radar .big{font-family:var(--font-body);font-weight:700;font-size:34px}
.radar .small{font-size:16px;fill:var(--s500-text)}
.radar .axis{stroke:#000;stroke-width:1;fill:none}
.radar-bar-wrap{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;padding-top:7%;pointer-events:none}   /* the viewBox is cropped to the drawing; the pentagon centre sits at 53.5% of the box, so the pack is pushed down to meet it */   /* the live pack; site.js turns it toward the pointer */   /* a centred box GSAP never touches; it animates the img inside */
.radar-bar{width:100%;height:100%;background:transparent;--poster-color:transparent}
.radar-bar.radar-still{width:auto;height:46%}
.radar-bar-wrap{pointer-events:none}
.spec-title{display:grid;grid-template-columns:1fr 1fr;border:1px solid #000;margin-bottom:20px;min-height:120px}
.spec-title .cell{display:flex;align-items:center;justify-content:center;padding:14px 18px}
.spec-title .logo{background:#fff;color:var(--ink);border-right:1px solid #000}
.spec-title .logo svg{width:min(100%,200px);height:auto}
.spec-title .flav{position:relative;overflow:hidden;color:#fff;background:#000 url("../img/bbq-640.webp?v=20260921aa") center/cover no-repeat}
@supports (background-image:image-set(url("a.avif") type("image/avif"))){.spec-title .flav{background-image:image-set(url("../img/bbq-640.avif?v=20260921aa") type("image/avif"),url("../img/bbq-640.webp?v=20260921aa") type("image/webp"))}}
.spec-title .flav::before{content:"";position:absolute;inset:0;background:rgba(0,0,0,.22)}
.spec-title .flav .display{position:relative;font-size:clamp(1.75rem,3.1vw,2.75rem);letter-spacing:.01em;white-space:nowrap}
.spec-table{width:100%;border-collapse:collapse}
.spec-table th,.spec-table td{text-align:left;padding:14px 0;border-bottom:1px solid var(--ink);vertical-align:top}
.spec-table th{font-weight:700;width:1%;white-space:nowrap;padding-right:clamp(16px,2.5vw,40px)}   /* label column shrinks to its text so the value column reaches left (PD 08/09: product name one line per language) */
.spec-table th .en,.spec-table th .en-r{font-weight:700}
.spec-table .lab{display:flex;flex-direction:column;gap:2px;font-weight:700}
.spec-table .lab span:last-child{font-weight:400;color:var(--s500-text);font-size:1rem}
.spec-table .val{color:#000}

/* versus */
.versus{display:grid;grid-template-columns:1fr 1fr;grid-template-rows:auto repeat(3,1fr);grid-auto-flow:column;column-gap:clamp(16px,3vw,40px);row-gap:12px}
.versus .col{display:contents}
.versus .col h3{margin:0 0 4px;min-height:64px;display:flex;align-items:flex-end;justify-content:flex-start}
.versus .col.crispro h3{justify-content:center}
.versus .col.generic h3{font-size:clamp(2rem,3.6vw,3.25rem);justify-content:center;text-align:center}   /* centred over its column like the wordmark opposite (PD 08/09) */   /* as tall as the wordmark opposite */
.versus .col.crispro h3 .logo-inline{margin-bottom:0!important}
.compare-stage{position:sticky;top:0;height:auto;min-height:0;overflow:clip;display:flex;align-items:center;padding:calc(var(--header-h) + clamp(24px,4vh,48px)) 0 clamp(24px,4vh,48px)}   /* content-height stage: the next section follows the moment the pin releases (PD 07/09) */
.compare-stage .container{width:100%}
.compare .section-head{margin-bottom:clamp(20px,3vw,40px)}
@media (max-height:760px){.versus .cell{min-height:84px;padding:12px}.versus .col h3{min-height:40px}.compare .section-head{margin-bottom:16px}}
@media (max-width:700px){.compare-stage{position:static;height:auto;overflow:visible;padding:clamp(48px,9vw,96px) 0}}   /* a phone cannot hold the argument on one screen: compare flows there (site.js drops the pin) */
.versus .cell{min-height:150px;display:flex;align-items:center;justify-content:center;text-align:center;padding:20px;font-size:clamp(1.4rem,2.5vw,1.875rem);font-weight:700;position:relative;overflow:hidden}   /* +25% (PD 10/09) */
.versus .generic .cell{background:#fff;border:1px solid #000;color:#000}
.versus .crispro .cell{color:#fff;background:#000}
.versus .crispro .cell .plx{position:absolute;inset:-34% 0;will-change:transform}
.versus .crispro .cell img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.versus .crispro .cell span{position:relative;-webkit-text-stroke:.9px #000;paint-order:stroke fill}   /* PD 07/09: no band, no filter; a thin outline keeps white type legible on the photos */
.versus .crispro .sweep{background:#671414}
.versus .crispro .sweep .plx{background:#671414 url("../img/sweep-wide-900.webp?v=20260921aa") center/cover no-repeat}   /* the satin sweep image rides the parallax layer like the two photos (PD 10/09) */
@media (min-width:900px){.versus .crispro .sweep .plx{background-image:url("../img/sweep-wide-1400.webp?v=20260921aa")}}
.versus .col.crispro h3{text-align:center}
.versus .col.crispro .logo-inline{width:min(60%,220px);margin:0 auto;color:var(--ink)}
@media (max-width:600px){.versus{grid-template-columns:1fr;grid-template-rows:none;grid-auto-flow:row}.versus .col h3{min-height:0;margin-top:24px}}

/* who (personas) */
.rail-stage{position:sticky;top:0;height:100svh;overflow:clip;display:flex;align-items:center;padding-top:var(--header-h)}
.rail{display:flex;align-items:center;gap:clamp(16px,2.5vw,40px);padding:0 var(--gutter);width:max-content}
.rail>*{flex:none}
.rail-lead{width:clamp(260px,30vw,440px)}
.rail-lead h2{margin:0}
.rail-note{width:clamp(280px,34vw,480px)}
.rail-note p{margin:0}
.rail-note-cta .cta-row{margin-top:24px}
.who .rail-note{color:#fff}
.personas .persona{width:clamp(280px,30vw,440px);height:min(72svh,640px);aspect-ratio:auto}
.strips .strip{width:clamp(240px,26vw,380px);height:min(70svh,600px);aspect-ratio:auto}
.rail .tile{width:clamp(250px,24vw,360px);height:min(72svh,640px);aspect-ratio:auto;display:flex;flex-direction:column;justify-content:center;text-align:center}
.rail-lead-2{margin-left:clamp(56px,9vw,160px)}   /* a breath between the last portrait and Functions */
.who .rail-lead-2 h2{color:#fff}
@media (max-width:600px){.rail-lead,.rail-note{width:min(78vw,320px)}.personas .persona{width:72vw}.strips .strip{width:64vw}.rail .tile{width:70vw}}
@media (prefers-reduced-motion:reduce){.rail{width:auto}}
.persona{position:relative;margin:0;overflow:hidden;background:#000;color:#fff}
.persona img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:.82}
.persona .t,.persona .b{position:absolute;left:0;right:0;text-align:center;padding:18px 12px;font-weight:700;font-size:clamp(1.05rem,1.8vw,1.5rem)}
.persona .t{top:0}.persona .b{bottom:0}
@media (max-width:600px){.persona .t,.persona .b{font-size:1rem;padding:8px 4px}}

/* functions */
.quad{display:grid;grid-template-columns:1fr 1fr;border:1px solid #000}
.tile{padding:clamp(24px,4vw,48px);min-height:200px;display:flex;flex-direction:column;justify-content:center;text-align:center}
.tile h3,.tile p{color:#fff;-webkit-text-stroke:.8px #000;paint-order:stroke fill;text-shadow:0 2px 10px rgba(0,0,0,.45);position:relative;z-index:1}   /* soft drop shadow under the text (PD 10/09) */
.tile h3{font-family:var(--font-body);font-weight:700;font-size:clamp(1.7rem,3vw,2.2rem);margin-bottom:10px}
.tile p{font-size:clamp(1.1rem,1.6vw,1.35rem)}   /* tile text +25% (PD 10/09) */
/* the deck's satin tiles (p7): silver satin / dark satin / maroon sweep / silver satin */
.tile{background:#D9D9D9 center/cover no-repeat;position:relative}
.tile>*{position:relative}
.tile.t1{background-image:url("../img/satin-blur-1000.webp?v=20260921aa")}
.tile.t2{background-image:url("../img/satin-blur-1000.webp?v=20260921aa");color:#fff}
.tile.t2::before{content:"";position:absolute;inset:0;background:rgba(0,0,0,.62)}   /* the tile IS dark satin (deck p7); this is its ground, not a legibility filter */
.tile.t3{background-image:url("../img/sweep-b-1000.webp?v=20260921aa");color:#fff}
.tile.t4{background-image:none;background:var(--sweep-silver)}
@media (max-width:600px){.quad{grid-template-columns:1fr}}

/* data tables + chart */
.data-table{width:100%;border-collapse:collapse;font-size:1rem}
.data-table th,.data-table td{padding:10px 12px;border-bottom:1px solid var(--s200);text-align:right}
.data-table th:first-child,.data-table td:first-child{text-align:left}
.data-table thead th{background:#000;color:#fff;font-weight:700;border-bottom:0}
.data-table tbody tr:nth-child(even){background:var(--s100)}
.data-table tr.hl td{background:var(--maroon);color:#fff;font-weight:700}
.chart{width:100%;height:auto}
.chart text{font-family:var(--font-body);font-size:15px;fill:#000}
.chart .lbl{font-size:14px}
.chart.phone text,.chart.phone .lbl{font-size:17px}   /* phone boxes are 360 wide: 17 units = 16 px on screen (PD 15/09) */
.chart.h .bar{transform-origin:0% 50%}
.scatter text{font-size:17px}   /* chart type reads 16 px+ on screen at 1440 (the svgs scale: bars x1.18, scatter x0.96); site floor +3 (PD 10/09) */
.chart .bar{fill:var(--s200)}.chart .bar.hl{fill:var(--maroon)}
.chart .trend{stroke:var(--s300);stroke-width:1.5;fill:none}
.value-line{font-size:clamp(1rem,1.45vw,1.25rem);max-width:none;margin-top:24px}   /* one line on desktop (PD 08/09) */
.survey-title .ast{font-family:var(--font-body);font-weight:700;font-size:.6em;vertical-align:top;margin-left:.1em}
.footer-bottom .footnote{color:var(--s500-text)}
.value-line b{color:var(--maroon)}
/* market survey, grouped under Compare */
.survey{margin-top:0;padding-top:clamp(24px,3vw,40px);border-top:1px solid #000}
#survey{padding-top:clamp(16px,2.5vw,32px)}   /* a flow section right after a pinned act takes reduced padding */
.survey-title{margin-bottom:10px}
.survey .sub{font-size:clamp(1.0625rem,1.5vw,1.25rem);max-width:none;margin-bottom:clamp(24px,3vw,40px)}
.survey-grid{display:grid;grid-template-columns:minmax(0,5fr) minmax(0,6fr);gap:clamp(24px,4vw,56px);align-items:stretch}
.charts{display:contents}
.chart-fig{margin:0;display:flex;flex-direction:column}
.chart-fig .chart{flex:1}
.chart-fig.wide{grid-column:1/-1;margin-top:8px}
.chart-fig figcaption{font-weight:700;font-size:1rem;margin-bottom:6px}
.scatter .dot{fill:var(--s500)}
.scatter .lbl{font-size:17px;fill:var(--s500-text)}
.scatter .axis{stroke:#000;stroke-width:1}
.scatter .grid{stroke:var(--s200);stroke-width:1}
.scatter .trend{stroke:var(--s300);stroke-width:2.5;fill:none}
.scatter .guide{stroke:#000;stroke-width:1.5;stroke-dasharray:3 4;fill:none}
.scatter .hero{fill:var(--maroon)}
.scatter .logo{color:#000}
.chart .bar{transform-box:fill-box;transform-origin:50% 100%}
@media (max-width:900px){.survey-grid{grid-template-columns:1fr}.chart-fig.wide{grid-column:auto}}

/* nutrition */
.doc{display:grid;grid-template-columns:1fr 1fr;gap:20px;align-items:stretch}
.doc .panel-art{width:100%;height:auto;background:#fff;display:block}
.doc .panel{background:#fff;border:1px solid #000;padding:clamp(16px,2.5vw,28px);font-size:1rem}
.doc .panel.wide{grid-column:1/-1}
.doc h3{display:flex;justify-content:space-between;gap:12px;font-size:1.0625rem;border-bottom:1px solid #000;padding-bottom:6px;margin:14px 0 8px}
.doc h3:first-child{margin-top:0}
.doc .row{display:flex;justify-content:space-between;gap:16px;padding:4px 0;border-bottom:1px solid var(--s200)}
.doc .row.sub{padding-left:16px;color:var(--s500-text)}
.doc .row span:last-child{text-align:right}
.doc .head{display:flex;justify-content:space-between;align-items:center;gap:12px;margin-bottom:8px}
.doc .head .logo-inline{width:150px;color:var(--ink)}
.doc .head .flav{font-weight:700;font-size:1.25rem}
.doc .fda{display:inline-block;border:1px solid #000;padding:2px 10px;font-weight:700;margin-top:4px}
@media (max-width:760px){.doc{grid-template-columns:1fr}}

/* flavours */
.strip{position:relative;overflow:hidden;background:#000}
.strip img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;transition:transform .6s var(--ease)}
.strip:hover img{transform:scale(1.04)}
.strip .cap{position:absolute;left:0;right:0;bottom:0;padding:16px;background:linear-gradient(180deg,transparent,rgba(0,0,0,.8));color:#fff}
.strip .cap{font-size:1.25rem}
.strip .cap b{display:block;font-family:var(--font-body);font-size:clamp(1.375rem,2vw,1.875rem)}   /* flavour captions +25% (PD 10/09) */
.strip .cap span{display:block;font-size:1rem;color:var(--s200)}
.strip .now{position:absolute;top:12px;left:12px;background:#fff;color:#000;font-family:var(--font-display);font-size:1rem;letter-spacing:.1em;text-transform:uppercase;padding:6px 10px}

/* where to buy */
.stores{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:20px}
.store{border:1px solid #000;padding:28px;display:flex;flex-direction:column;gap:16px;background:#fff}
.store.primary{background:var(--maroon);color:#fff;border-color:var(--maroon)}
.store .name{font-family:var(--font-display);font-size:2rem;line-height:1;text-transform:uppercase}
.store .meta{font-size:1rem}
.store.primary .meta{color:rgba(255,255,255,.82)}
.store .btn{align-self:flex-start;margin-top:auto}
.store.primary .btn{background:#fff;color:var(--maroon)}
.store.primary .btn:hover{background:var(--s100);color:var(--maroon-deep)}
.group-title{margin:32px 0 16px;font-family:var(--font-display);font-size:1.25rem;letter-spacing:.04em;text-transform:uppercase;color:var(--s500-text)}
.group-title:first-child{margin-top:0}

/* social icons (footer, the one place they live) */
.social{display:grid;grid-template-columns:1fr 1fr;gap:10px 16px;padding:4px 0}
.social a{display:inline-flex;align-items:center;gap:10px;text-decoration:none;color:var(--ink);font-size:1rem}
.social a:hover{color:var(--maroon)}
.social svg{width:26px;height:26px;fill:currentColor;flex:none}
@media (max-width:420px){.social{grid-template-columns:1fr}}

/* contact / footer */
.contact-grid{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:clamp(24px,4vw,56px);align-items:center}
.contact-card{background:#fff;padding:clamp(24px,3.4vw,44px)}
.contact-card .card-title{color:var(--maroon);margin:0 0 18px;font-size:clamp(2.25rem,4.4vw,3.5rem)}
.contact-card .company{color:var(--maroon);font-size:1rem;line-height:1.6;margin-top:22px;text-wrap:pretty}
.contact-card .company b{font-weight:700}
.contact-card h3{display:flex;justify-content:space-between;gap:12px;font-size:1.0625rem;border-bottom:1px solid #000;padding-bottom:6px;margin:0 0 10px}
.contact-card h3+*+h3,.contact-card .kv+h3{margin-top:20px}
.contact-card .kv{display:flex;justify-content:space-between;gap:16px;padding:4px 0}
.contact-card .kv a{word-break:break-all}
.footer-logo{width:min(60%,320px);color:var(--ink);margin-bottom:24px}
/* the last screen: full height, the white card runs down to the footer line, groups spaced down the card (PD 08/09) */
.contact-stage{position:relative;min-height:100svh;display:flex;flex-direction:column;padding:calc(var(--header-h) + 32px) 0 0}
.contact-stage>.container{flex:1;display:flex;width:100%}
.contact-grid{flex:1;align-items:center}   /* PD 08/09: the card fits its content, both columns centred (supersedes 07/09 'run to the footer') */
.contact-grid>div:first-child{display:flex;flex-direction:column;justify-content:center;padding-bottom:40px}
.contact-card{display:flex;flex-direction:column;justify-content:flex-start;gap:clamp(28px,4.5vh,52px);height:auto}
.contact-card .grp>h3{margin-top:0}
.contact-card .company{margin-top:0}
@media (max-width:760px){.contact-stage{min-height:0}.contact-grid{align-items:start}.contact-card{height:auto;gap:20px}}
.pulsegrid{position:absolute;inset:0;z-index:0;pointer-events:none}
.contact-stage>.container,.contact-stage>.footer-bottom{position:relative;z-index:1}
.footer-bottom{margin-top:0;padding:14px var(--gutter);border-top:1px solid #000;display:flex;flex-wrap:wrap;justify-content:space-between;align-items:center;gap:12px;font-size:1rem}
.to-top{position:absolute;right:var(--gutter);bottom:calc(100% + 16px);z-index:2;width:56px;height:56px;display:flex;align-items:center;justify-content:center;border:1px solid #000;color:#000;background:transparent;transition:background .2s,color .2s}   /* back to top, above the footer line at the right (PD 08/09) */
.to-top:hover{background:#000;color:#fff}
@media (max-width:760px){.to-top{position:static;width:44px;height:44px}}
.footnote-right{text-align:right;margin-top:10px;color:var(--s500-text)}

@media (max-width:760px){.contact-grid{grid-template-columns:1fr}}

/* sticky mobile buy bar */
.buybar{position:fixed;left:0;right:0;bottom:0;z-index:40;display:none;padding:10px var(--gutter);background:rgba(255,255,255,.96);box-shadow:0 -1px 0 #000;
  transform:translateY(110%);transition:transform .3s var(--ease)}
.buybar.is-on{transform:none}
.buybar .btn{width:100%}
@media (max-width:960px){.buybar{display:block}.hero-copy .btn-secondary{display:none}.hero-copy .cta-row{display:none}}

/* reduced motion */
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{transition-duration:.01ms!important;animation-duration:.01ms!important;scroll-behavior:auto!important}
}
.header-logo,.nav,.header-cta,.lang{transition:opacity .4s}
.nw{white-space:nowrap}

/* no horizontal overflow on phones: an overflowing page makes mobile browsers zoom out and drops the sticky bar below the fold */
@media (max-width:600px){.spec-table{table-layout:fixed;width:100%}.spec-table th{width:47%;white-space:normal}.spec-table td,.spec-table th{overflow-wrap:anywhere}.cta-row{flex-wrap:wrap}.cta-row .btn{max-width:100%}}
html,body{overflow-x:clip}
/* social wall: Instagram's own embeds (their inner card keeps Instagram's corners; the frame around them is ours, square) */
.social-wall .sub a{color:#fff}
.ig-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px;margin-top:8px}
.ig-cell{aspect-ratio:3/4;overflow:hidden;background:#000;position:relative}   /* 3:4 portrait cell, fixed by width so the page never jumps; the embed is cropped to its media (PD 08/09) */
.social-head{display:flex;align-items:flex-end;justify-content:space-between;gap:16px;flex-wrap:wrap}
.ig-handle{display:inline-flex;align-items:center;gap:10px;padding:10px 16px;margin-bottom:8px;border:1px solid currentColor;color:inherit;text-decoration:none;font-size:1rem;line-height:1;transition:background .2s,color .2s}
.ig-handle svg{width:22px;height:22px;fill:currentColor}
.ig-handle:hover{background:#fff;color:#000}
.ig-grid .instagram-media{margin:0!important;min-width:0!important;max-width:none!important;width:100%!important;background:#fff;border:0!important;box-shadow:none!important;border-radius:0!important}
.ig-grid iframe{border-radius:0!important;transform:translateY(-84px) scale(1.16);transform-origin:50% 0}   /* the embed's header row is 60-80 px depending on width: push it fully above the cell, scale so the 4:5 media still fills 3:4 */
.ig-post{display:block;color:inherit}
.ig-post img,.ig-post video{display:block;width:100%;height:100%;object-fit:cover}   /* our own copies (tools/ig_poll.py): 3:4 cover, videos muted and silent */   /* hides the embed's header row; the 4:5 media then fills the 3:4 cell, footer falls below the crop */
.ig-grid .instagram-media a{display:block;padding:24px;color:#000;text-decoration:none}
@media (max-width:860px){.ig-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media (max-width:520px){.ig-grid{grid-template-columns:1fr}}
@media (max-width:960px){   /* phones: the second state has no measured room, so give it a real width (the % fallback collapsed every font size derived from it to ~4 px, found 08/09 on WebKit) */
  .hero-copy .slide-2{--s2w:calc(100vw - 2 * var(--gutter));--disc:min(420px,calc(var(--s2w) * .32),33.5vh);left:var(--gutter);right:auto}   /* the phone container is static, so the block would sit on the hero-copy's edge: align it with the tagline column */
  .hero-copy .slide-2 .who-title{flex-wrap:wrap;row-gap:6px;margin-bottom:16px}
  .hero-copy .slide-2 .equation .circle{font-size:clamp(1rem,calc(var(--disc) * .13),2.5rem)}
  .hero-copy .slide-2 .equation .op{font-size:clamp(1.5rem,calc(var(--disc) * .3),3rem)}
}
.ig-more-row{display:flex;justify-content:center;margin-top:24px}

/* PD 10/09: each Functions tile carries its own slow foil sheen (a Pokémon-card gleam), no pulsing; composited transform only */
.tile{overflow:hidden}
.tile::after{content:'';position:absolute;top:-60%;bottom:-60%;left:-40%;width:46%;pointer-events:none;background:linear-gradient(90deg,rgba(255,255,255,0) 0%,rgba(255,255,255,.22) 35%,rgba(255,255,255,.55) 50%,rgba(255,255,255,.22) 65%,rgba(255,255,255,0) 100%);mix-blend-mode:screen;transform:rotate(18deg) translate3d(-140%,0,0);animation:foilSweep 7s ease-in-out infinite}
.tile.t2::after{width:22%;transform:rotate(-24deg) translate3d(-260%,0,0);animation:foilSweep 9s ease-in-out infinite reverse;background:linear-gradient(90deg,rgba(255,255,255,0),rgba(255,255,255,.35) 50%,rgba(255,255,255,0))}
.tile.t3::after{width:60%;transform:rotate(-14deg) translate3d(-120%,0,0);animation:foilSweep 8s ease-in-out 1.2s infinite;background:linear-gradient(90deg,rgba(255,255,255,0),rgba(255,255,255,.28) 50%,rgba(255,255,255,0))}
.tile.t4::after{width:34%;transform:rotate(32deg) translate3d(-180%,0,0);animation:foilSweep 6s ease-in-out .6s infinite;background:linear-gradient(90deg,rgba(255,255,255,0) 0%,rgba(255,255,255,.5) 40%,rgba(255,255,255,0) 50%,rgba(255,255,255,.5) 60%,rgba(255,255,255,0) 100%)}
@keyframes foilSweep{0%{transform:rotate(var(--foil-a,18deg)) translate3d(-160%,0,0)}100%{transform:rotate(var(--foil-a,18deg)) translate3d(420%,0,0)}}
.tile.t2{--foil-a:-24deg}.tile.t3{--foil-a:-14deg}.tile.t4{--foil-a:32deg}
@media (prefers-reduced-motion:reduce){.tile::after{animation:none;display:none}}
/* PD 10/09: the light wave on CRISPRO's survey bar */
.bar-wave{opacity:0;transform-box:fill-box;transform-origin:50% 50%}
.bar-wave.is-on{opacity:1;animation:barWave 2.2s linear infinite}
.bar-wave.h.is-on{animation-name:barWaveH}
@keyframes barWave{from{transform:translateY(110%)}to{transform:translateY(-110%)}}
@keyframes barWaveH{from{transform:translateX(-110%)}to{transform:translateX(110%)}}
@media (prefers-reduced-motion:reduce){.bar-wave{display:none}}
