/* =========================================================
   SHUPYFAI - crayon on paper
   Art direction: white paper, one green crayon, wobbly lines,
   childish handwriting, everything slightly tilted.
   ========================================================= */

:root {
  --paper: #fafafc;
  --paper-2: #f3f4f0;
  --ink: #256b2f;        /* dark green crayon stroke */
  --ink-2: #1c5a26;
  --crayon: #7fb844;     /* light green fill */
  --crayon-2: #9ccc65;   /* lighter highlight */
  --crayon-3: #c5e1a5;
  --text: #2a2f2a;
  --muted: #6b716b;
  --tape: rgba(232, 228, 201, 0.85);
  --shadow: 0 8px 0 -4px rgba(37, 107, 47, 0.12);
  --font-display: "Gloria Hallelujah", "Comic Sans MS", "Chalkboard SE", cursive;
  --font-body: "Patrick Hand", "Comic Sans MS", "Chalkboard SE", cursive;
  --radius-a: 255px 15px 225px 15px / 15px 225px 15px 255px;
  --radius-b: 15px 225px 15px 255px / 225px 15px 255px 15px;
  --container: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.45;
  color: var(--text);
  background: var(--paper);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

/* paper grain */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='300' height='300'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.55 0 0 0 0 0.6 0 0 0 0 0.55 0 0 0 0.16 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
main, header, footer { position: relative; z-index: 1; }

.svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--ink); }
b, strong { font-weight: 700; }
code { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }

.container { width: min(var(--container), 100% - 2rem); margin-inline: auto; }

.ico { width: 1.25em; height: 1.25em; flex: none; color: currentColor; vertical-align: -0.25em; }
.ico--xl { width: 2.6em; height: 2.6em; }
.ico--xxl { width: 4.5em; height: 4.5em; }

/* ---------- sketch border (pseudo-element so text stays crisp) ---------- */
.sk { position: relative; isolation: isolate; }
.sk::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: var(--radius-a);
  filter: url(#crayon);
  box-shadow: var(--shadow);
}
.sk-b::before { border-radius: var(--radius-b); }

/* tilt utilities */
.tilt-l { rotate: -1.4deg; }
.tilt-r { rotate: 1.2deg; }

/* tape strips */
.tape {
  position: absolute;
  width: 84px;
  height: 26px;
  background: var(--tape);
  opacity: 0.9;
  z-index: 2;
  pointer-events: none;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}
.tape--tl { top: -12px; left: 18px; rotate: -8deg; }
.tape--tr { top: -12px; right: 18px; rotate: 9deg; }
.tape--br { bottom: -12px; right: 24px; rotate: -6deg; }

/* ---------- headings ---------- */
h1, h2, h3, .h2 { font-family: var(--font-display); color: var(--ink-2); line-height: 1.1; margin: 0; font-weight: 400; }
.h2 { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 0.4em; }
h3 { font-size: 1.35rem; margin-bottom: 0.35em; }
.lead { font-size: 1.25rem; max-width: 46ch; margin: 0 0 2rem; }

/* scribble highlight behind words */
.hl { position: relative; display: inline-block; white-space: nowrap; isolation: isolate; }
.hl__stroke {
  position: absolute;
  left: -2%;
  bottom: -0.08em;
  width: 104%;
  height: 0.55em;
  z-index: -1;
  fill: none;
  stroke: var(--crayon-2);
  stroke-width: 22;
  stroke-linecap: round;
  opacity: 0.8;
  filter: url(#crayon);
}

/* ---------- buttons ---------- */
.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  padding: 0.55em 1.2em;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink-2);
  text-decoration: none;
  white-space: nowrap;
  transition: translate 0.15s ease, rotate 0.15s ease;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: var(--radius-a);
  filter: url(#crayon);
  box-shadow: var(--shadow);
  transition: background 0.15s ease;
}
.btn:nth-child(even)::before { border-radius: var(--radius-b); }
.btn--primary { color: #fff; text-shadow: 0 1px 0 rgba(0,0,0,0.15); }
.btn--primary::before { background: var(--crayon); }
.btn--sm { font-size: 0.95rem; padding: 0.4em 1em; }
.btn--lg { font-size: 1.25rem; padding: 0.65em 1.4em; }
.btn:hover { translate: 0 -2px; rotate: -1deg; }
.btn:active { translate: 0 1px; }
.btn:hover::before { background: var(--crayon-3); }
.btn--primary:hover::before { background: var(--ink); }
.btn:disabled { opacity: 0.55; cursor: not-allowed; translate: none; rotate: 0deg; }
.btn:disabled::before { background: var(--paper-2); border-style: dashed; }
.btn:focus-visible, .cart:focus-visible, .burger:focus-visible, .ca__copy:focus-visible {
  outline: 3px dashed var(--crayon); outline-offset: 4px;
}

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 252, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 3px solid var(--ink);
}
.nav__inner { display: flex; align-items: center; gap: 1.5rem; padding: 0.6rem 0; }
.brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.brand__logo { width: 48px; height: 48px; border-radius: 50%; rotate: -6deg; transition: rotate 0.2s; }
.brand:hover .brand__logo { rotate: 8deg; }
.brand__name { font-family: var(--font-display); font-size: 1.5rem; color: var(--ink-2); }
.nav__links { display: flex; gap: 1.3rem; margin-left: auto; }
.nav__links a {
  font-family: var(--font-display);
  font-size: 1rem;
  text-decoration: none;
  color: var(--text);
  position: relative;
  padding: 0.2em 0.1em;
  isolation: isolate;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 6px;
  background: var(--crayon-2);
  border-radius: 40% 60% 50% 50% / 60% 40% 60% 40%;
  opacity: 0;
  scale: 0.6 1;
  transition: opacity 0.15s, scale 0.15s;
  z-index: -1;
}
.nav__links a:hover::after { opacity: 0.9; scale: 1 1; }
.nav__actions { display: flex; align-items: center; gap: 0.8rem; }
.cart { position: relative; display: inline-flex; padding: 0.35rem; color: var(--ink-2); }
.cart .ico { width: 1.9em; height: 1.9em; }
.cart__count {
  position: absolute;
  top: -4px; right: -6px;
  min-width: 22px; height: 22px;
  padding: 0 5px;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: #fff;
  background: var(--ink);
  border-radius: 50% 45% 55% 50%;
  rotate: 8deg;
}
.cart.bump { animation: bump 0.4s ease; }
@keyframes bump { 0% { scale: 1; } 40% { scale: 1.3; rotate: -12deg; } 100% { scale: 1; } }
.burger { display: none; padding: 0.3rem; color: var(--ink-2); }
.burger .ico { width: 2em; height: 2em; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
  padding: 3.5rem 0 3rem;
  min-height: min(82vh, 760px);
}
.doodle { position: absolute; z-index: -1; fill: none; stroke: var(--crayon-2); stroke-width: 7; stroke-linecap: round; opacity: 0.45; filter: url(#crayon); pointer-events: none; }
.doodle--1 { width: 260px; top: 6%; left: -6%; rotate: -12deg; }
.doodle--2 { width: 220px; bottom: 4%; left: 34%; rotate: 8deg; }
.doodle--3 { width: 150px; top: 2%; right: 2%; rotate: 20deg; }

.badge { display: inline-flex; align-items: center; gap: 0.5em; padding: 0.3em 0.9em; font-family: var(--font-display); font-size: 0.95rem; color: var(--ink-2); margin-bottom: 1.2rem; }
.badge .dot { width: 12px; height: 12px; background: var(--crayon); border-radius: 55% 45% 60% 40%; box-shadow: 0 0 0 4px rgba(127,184,68,0.25); animation: pulse 1.6s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 8px rgba(127,184,68,0.08); } }

.hero__title { font-size: clamp(3.4rem, 9vw, 6.8rem); line-height: 1; letter-spacing: -0.01em; margin: 0 0 0.25em; }
.hero__tagline { font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 2rem); color: var(--ink); margin: 0 0 0.5em; rotate: -1deg; transform-origin: left; }
.hero__sub { font-size: 1.3rem; margin: 0 0 1.6rem; max-width: 40ch; }

.ca { display: flex; align-items: center; gap: 0.8rem; padding: 0.7rem 1rem; margin-bottom: 1.6rem; max-width: 640px; }
.ca__label { font-family: var(--font-display); font-size: 0.9rem; color: var(--ink-2); white-space: nowrap; }
.ca__value { flex: 1; min-width: 0; font-size: 0.95rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--text); }
.ca__copy { display: inline-flex; align-items: center; gap: 0.3em; padding: 0.3em 0.7em; font-family: var(--font-display); font-size: 0.9rem; color: #fff; background: var(--ink); border-radius: 40% 60% 45% 55% / 55% 45% 60% 40%; transition: rotate 0.15s; }
.ca__copy:hover { rotate: -3deg; background: var(--crayon); color: var(--ink-2); }
.ca__copy.ok { background: var(--crayon); color: var(--ink-2); }
.ca__copy:disabled { opacity: 0.5; cursor: not-allowed; }

.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem 1rem; }
.hero__actions--center { justify-content: center; margin-top: 1.4rem; }

.hero__art { position: relative; display: grid; place-items: center; }
.polaroid {
  position: relative;
  margin: 0;
  padding: 14px 14px 10px;
  background: #fff;
  box-shadow: 0 10px 24px -14px rgba(37,107,47,0.45), 0 2px 0 rgba(37,107,47,0.12);
  cursor: pointer;
  transition: rotate 0.25s ease, translate 0.25s ease;
  user-select: none;
  width: min(100%, 420px);
}
.polaroid:hover { rotate: -1.5deg; translate: 0 -4px; }
.polaroid.wiggle { animation: wiggle 0.6s ease; }
@keyframes wiggle {
  0%, 100% { rotate: 1.2deg; }
  20% { rotate: -5deg; scale: 1.03; }
  40% { rotate: 5deg; }
  60% { rotate: -3deg; }
  80% { rotate: 2deg; }
}
.hero__logo { width: 100%; aspect-ratio: 1; }
.polaroid figcaption { font-family: var(--font-display); font-size: 0.95rem; color: var(--muted); text-align: center; padding-top: 8px; }

.sticker { position: absolute; top: -8px; right: -6px; padding: 0.5em 0.9em; font-family: var(--font-display); font-size: 1rem; line-height: 1.15; color: var(--ink-2); text-align: center; }
.sticker::before { background: var(--crayon-3); }
.sticker small { font-size: 0.8em; color: var(--muted); }
.sticker--2 { top: auto; right: auto; bottom: 8px; left: -10px; }
.sticker--2::before { background: #fff; }

/* falling bags on logo click */
.bagdrop { position: fixed; z-index: 60; width: 34px; height: 34px; color: var(--ink); pointer-events: none; animation: bagdrop 1.3s ease-in forwards; }
@keyframes bagdrop { 0% { translate: 0 0; opacity: 1; rotate: 0deg; } 100% { translate: var(--dx, 0) 70vh; opacity: 0; rotate: var(--rot, 360deg); } }

/* ---------- marquee ---------- */
.marquee { overflow: hidden; border-block: 3px solid var(--ink); background: var(--crayon-2); padding: 0.5rem 0; rotate: -0.6deg; margin: 1rem -2rem 2rem; }
.marquee__track { display: flex; align-items: center; gap: 2rem; width: max-content; padding-left: 2rem; animation: marquee 32s linear infinite; }
.marquee__track span { font-family: var(--font-display); font-size: 1.15rem; color: var(--ink-2); white-space: nowrap; }
.marquee__track i { width: 12px; height: 12px; background: var(--ink); border-radius: 60% 40% 55% 45%; flex: none; rotate: 15deg; }
@keyframes marquee { to { translate: -50% 0; } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ---------- sections ---------- */
.section { padding: 4.5rem 0; }
.section--alt { background: var(--paper-2); position: relative; }
.section--alt::before, .section--alt::after {
  content: ""; position: absolute; left: 0; right: 0; height: 10px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='10'><path d='M0 5 C 40 0 80 10 120 5 S 200 0 240 5' fill='none' stroke='%23256b2f' stroke-width='3' stroke-linecap='round'/></svg>") repeat-x;
}
.section--alt::before { top: -5px; }
.section--alt::after { bottom: -5px; }

.grid { display: grid; gap: 1.8rem; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card { padding: 1.6rem 1.5rem 1.4rem; transition: rotate 0.25s ease, translate 0.25s ease; }
.card:hover { rotate: 0deg; translate: 0 -4px; }
.card__icon { color: var(--crayon); margin-bottom: 0.6rem; filter: url(#crayon-soft); }
.card p { margin: 0; }

/* pair diagram */
.pair { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1.5rem; margin: 0.5rem 0 2rem; }
.pair__side { display: grid; justify-items: center; gap: 0.2rem; padding: 1.4rem 1rem; text-align: center; }
.pair__side strong { font-family: var(--font-display); font-size: 1.4rem; color: var(--ink-2); }
.pair__side span { color: var(--muted); }
.pair__logo { width: 96px; height: 96px; border-radius: 50%; }
.pair__shop { width: 96px; height: 96px; display: grid; place-items: center; font-family: var(--font-display); font-size: 1.3rem; color: var(--ink-2); background: var(--crayon-3); border: 3px solid var(--ink); border-radius: 45% 55% 50% 50% / 55% 45% 55% 45%; filter: url(#crayon); }
.pair__mid { display: grid; justify-items: center; gap: 0.4rem; }
.pair__arrow { width: 160px; fill: none; stroke: var(--ink); stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; filter: url(#crayon); }
.pair__pool { padding: 0.4em 0.9em; font-family: var(--font-display); font-size: 0.95rem; text-align: center; color: var(--ink-2); }
.pair__pool small { color: var(--muted); font-size: 0.8em; }

.list { list-style: none; padding: 0; margin: 0 0 2rem; display: grid; gap: 0.6rem; max-width: 70ch; }
.list li { display: flex; gap: 0.6rem; align-items: flex-start; }
.list .ico { color: var(--crayon); margin-top: 0.15em; }

.facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.fact { display: grid; gap: 0.1rem; padding: 0.9rem 1rem; }
.fact span { font-size: 0.9rem; color: var(--muted); }
.fact strong { font-family: var(--font-display); font-size: 1.05rem; color: var(--ink-2); }

/* tokenomics */
.tokenomics { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 3rem; align-items: center; }
.tokenomics__chart { position: relative; display: grid; place-items: center; }
.pie { width: min(100%, 320px); filter: url(#crayon); }
.pie__fill { fill: var(--crayon-3); }
.pie__scribble { fill: none; stroke: var(--crayon); stroke-width: 16; stroke-linecap: round; opacity: 0.85; }
.pie__ring { fill: none; stroke: var(--ink); stroke-width: 4; stroke-dasharray: 6 3; }
.pie__label { position: absolute; bottom: 6px; right: 0; padding: 0.5em 1em; font-family: var(--font-display); color: var(--ink-2); text-align: center; line-height: 1.15; }
.pie__label small { color: var(--muted); font-size: 0.8em; }
.stat { display: grid; gap: 0.1rem; padding: 1.2rem 1.3rem; }
.stat span { font-size: 0.95rem; color: var(--muted); }
.stat strong { font-family: var(--font-display); font-size: 1.5rem; color: var(--ink-2); line-height: 1.1; }
.stat small { color: var(--muted); }

/* steps */
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.8rem; }
.step { display: flex; gap: 1.1rem; padding: 1.5rem 1.4rem; align-items: flex-start; }
.step__num { flex: none; width: 52px; height: 52px; display: grid; place-items: center; font-family: var(--font-display); font-size: 1.6rem; color: #fff; background: var(--crayon); border: 3px solid var(--ink); border-radius: 48% 52% 45% 55% / 55% 45% 55% 45%; filter: url(#crayon); rotate: -6deg; }
.step p { margin: 0 0 0.8rem; }
.step .btn { margin-top: 0.2rem; }

/* roadmap */
.roadmap { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.9rem; max-width: 640px; }
.road { display: flex; align-items: center; gap: 1rem; font-size: 1.2rem; }
.road strong { font-family: var(--font-display); color: var(--ink-2); margin-right: 0.4em; }
.road__box { flex: none; width: 38px; height: 38px; display: grid; place-items: center; border: 3px solid var(--ink); border-radius: var(--radius-a); background: #fff; filter: url(#crayon); color: var(--ink); }
.road:nth-child(even) .road__box { border-radius: var(--radius-b); }
.road__box .ico { width: 1.6em; height: 1.6em; }
.road.done { color: var(--muted); }
.road.done div { text-decoration: line-through; text-decoration-color: var(--crayon); text-decoration-thickness: 3px; }
.road.done strong { color: var(--ink); }

/* store */
.product { padding: 1.4rem 1.3rem 1.2rem; display: grid; gap: 0.3rem; transition: rotate 0.25s ease, translate 0.25s ease; }
.product:hover { rotate: 0deg; translate: 0 -4px; }
.product__img { display: grid; place-items: center; height: 120px; color: var(--ink); background: var(--crayon-3); border: 3px solid var(--ink); border-radius: var(--radius-b); filter: url(#crayon); margin-bottom: 0.6rem; }
.product p { margin: 0 0 0.6rem; font-size: 1rem; color: var(--muted); }
.product__row { display: flex; align-items: center; justify-content: space-between; gap: 0.6rem; margin-top: auto; }
.price { font-family: var(--font-display); font-size: 1.15rem; color: var(--ink-2); }
.store__foot { display: grid; justify-items: center; gap: 0.7rem; margin-top: 2.5rem; }
.store__foot small { color: var(--muted); }

/* community */
.community { padding-top: 2rem; }
.community__box { padding: 3rem 2rem 2.6rem; text-align: center; display: grid; justify-items: center; gap: 0.5rem; }
.community__box::before { background: var(--crayon-3); }
.community__logo { width: 120px; height: 120px; border-radius: 50%; border: 4px solid #fff; box-shadow: 0 4px 0 rgba(37,107,47,0.2); }
.community__box p { margin: 0; font-size: 1.2rem; }

/* footer */
.footer { padding: 2.5rem 0 3rem; border-top: 3px dashed var(--ink); }
.footer__inner { display: grid; gap: 1rem; }
.footer__brand { display: flex; align-items: center; gap: 0.6rem; font-family: var(--font-display); color: var(--ink-2); }
.footer__brand .brand__logo { width: 40px; height: 40px; }
.footer__legal { margin: 0; font-size: 0.95rem; color: var(--muted); max-width: 90ch; }

/* modal + toast */
.modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 1rem; }
.modal[hidden] { display: none; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(37,107,47,0.25); backdrop-filter: blur(2px); }
.modal__box { position: relative; width: min(100%, 520px); padding: 2rem 1.8rem 1.6rem; animation: pop 0.25s ease; }
@keyframes pop { from { scale: 0.9; rotate: -3deg; opacity: 0; } }
.modal__box h3 { font-size: 1.8rem; }
.modal__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.2rem; }
.toast { position: fixed; left: 50%; bottom: 24px; z-index: 110; translate: -50% 20px; opacity: 0; padding: 0.5em 1.1em; font-family: var(--font-display); color: #fff; background: var(--ink); border-radius: 40% 60% 45% 55% / 55% 45% 60% 40%; pointer-events: none; transition: opacity 0.2s, translate 0.2s; max-width: calc(100% - 2rem); text-align: center; }
.toast.show { opacity: 1; translate: -50% 0; }

/* reveal on scroll */
.reveal { opacity: 0; translate: 0 14px; transition: opacity 0.5s ease, translate 0.5s ease; }
.reveal.in { opacity: 1; translate: 0 0; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; translate: none; transition: none; } .polaroid.wiggle, .cart.bump { animation: none; } }

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .tokenomics { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 900px) {
  .nav__links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 0; background: var(--paper); border-bottom: 3px solid var(--ink); padding: 0.6rem 1rem 1rem; }
  .nav__links.open { display: flex; }
  .nav__links a { padding: 0.6em 0.4em; font-size: 1.15rem; }
  .burger { display: inline-flex; }
  .nav__actions .btn { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 2.5rem; min-height: 0; text-align: center; }
  .hero__text { display: grid; justify-items: center; }
  .hero__tagline { transform-origin: center; }
  .hero__actions { justify-content: center; }
  .hero__art { margin-top: 1rem; }
  .sticker { top: -6px; right: 0; }
  .pair { grid-template-columns: 1fr; }
  .pair__mid { order: 3; }
  .pair__arrow { rotate: 90deg; margin: 1rem 0; }
  .steps { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  body { font-size: 18px; }
  .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr; }
  .section { padding: 3.2rem 0; }
  .ca { flex-wrap: wrap; }
  .ca__value { flex-basis: 100%; order: 3; white-space: normal; word-break: break-all; font-size: 0.85rem; }
  .ca__copy { margin-left: auto; }
  .polaroid { width: min(100%, 320px); }
  .sticker--2 { left: 0; bottom: 0; }
  .tape { width: 64px; height: 20px; }
  .pie__label { position: static; margin-top: 0.8rem; }
  .marquee { margin-inline: -1rem; }
}
