/* =====================================================================
   One Wiibe — Wiibo live tour
   The complete stylesheet. There is no second CSS file.

   Layout contract with main.js:
     .beat.copy-left   -> copy occupies the LEFT half, character stages RIGHT
     .beat.copy-right  -> copy occupies the RIGHT half, character stages LEFT
     Sections are pointer-transparent; only the copy column takes events, so
     the free half of the screen keeps talking to the WebGL canvas below.
   ===================================================================== */

/* ---------- tokens ---------- */

:root {
  /* Brand. Pink is an accent — it is never used as a background wash. */
  --bg: #0A0512;
  --bg-2: #150A24;
  --bg-3: #231038;

  --accent: #FF3DBE;
  --accent-soft: #FF8AD8;
  --accent-glow: #D9A6F5;

  --text: #F5EEFA;
  --muted: rgba(255, 243, 248, .62);
  --faint: rgba(255, 243, 248, .38);

  --panel: rgba(255, 232, 241, .035);
  --panel-2: rgba(255, 232, 241, .06);
  --line: rgba(255, 232, 241, .10);
  --line-2: rgba(255, 232, 241, .18);

  /* No webfont files and no CDN: each family degrades to a system face. */
  --font-display: "Space Grotesk", "Segoe UI Variable Display", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --font-sans: "Inter", "Inter var", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, "Cascadia Mono", Consolas, "Liberation Mono", monospace;

  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);

  --gut: clamp(20px, 5vw, 96px);   /* page side padding */
  --copy-w: clamp(320px, 58vw, 880px);
  --char-space: 44svh;             /* room kept above copy on narrow screens */
  --radius: 14px;
}

/* ---------- reset / base ---------- */

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: clamp(15px, .35vw + 14px, 17px);
  line-height: 1.6;
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

h1, h2, h3, p, ul, ol, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, video, canvas { display: block; max-width: 100%; }
button { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }

[hidden] { display: none !important; }

::selection { background: var(--accent); color: #fff; }

:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 3px;
  border-radius: 4px;
}
:focus:not(:focus-visible) { outline: none; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* Firefox / WebKit scrollbars, kept de-saturated. */
* { scrollbar-width: thin; scrollbar-color: rgba(255, 232, 241, .18) transparent; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb {
  background: rgba(255, 232, 241, .16);
  border-radius: 99px;
  border: 3px solid var(--bg);
}
::-webkit-scrollbar-thumb:hover { background: rgba(255, 232, 241, .28); }
::-webkit-scrollbar-track { background: transparent; }

/* ---------- the WebGL stage ---------- */
/* main.js owns the canvas; these are the selectors it is likely to use.
   All three resolve to the same fixed, full-bleed, behind-everything layer. */

#scene, .scene-canvas, canvas[data-stage] {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  /* Above .hero-film (z-index 0), below .ow-sections (z-index 20). The
     renderer clears to transparent, so the film shows through wherever the
     scene draws nothing. */
  z-index: 1;
  display: block;
  touch-action: pan-y;   /* keep vertical scrolling native over the canvas */
}

/* ---------- section shell ---------- */

.ow-sections {
  position: relative;
  z-index: 1;
  display: block;
}

.beat {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(96px, 13svh, 168px) var(--gut);
  /* The half without copy must stay live for the canvas underneath. */
  pointer-events: none;
}

.beat.copy-left { justify-content: flex-start; }
.beat.copy-right { justify-content: flex-end; }

.beat__inner {
  pointer-events: auto;
  width: var(--copy-w);
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(18px, 2.2vh, 30px);
}

/* A section boundary, not a box: one hairline, no panel behind the copy. */
.beat + .beat::before {
  content: "";
  position: absolute;
  top: 0;
  left: var(--gut);
  right: var(--gut);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  pointer-events: none;
}

/* ---------- type ---------- */

.eyebrow {
  font-family: var(--font-mono);
  font-size: clamp(10px, .28vw + 9px, 12px);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--faint);
  display: flex;
  align-items: center;
  gap: .7em;
}
.eyebrow::before {
  content: "";
  width: clamp(20px, 3vw, 42px);
  height: 1px;
  background: var(--accent);
  opacity: .8;
  flex: none;
}

.display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: .98;
  letter-spacing: -.032em;
  text-wrap: balance;
  margin: 0;
}
h1.display { font-size: clamp(2.5rem, 6.2vw, 5.4rem); }
h2.display { font-size: clamp(2.1rem, 4.6vw, 3.9rem); }

.display em {
  font-style: normal;
  color: var(--accent-soft);
}

.lede {
  color: var(--muted);
  font-size: clamp(1rem, .5vw + .86rem, 1.24rem);
  line-height: 1.55;
  max-width: 52ch;
  text-wrap: pretty;
}

/* ---------- buttons ---------- */

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.btn {
  --btn-bg: transparent;
  --btn-fg: var(--text);
  --btn-line: var(--line-2);
  display: inline-flex;
  align-items: center;
  gap: .6em;
  padding: 13px 24px;
  border: 1px solid var(--btn-line);
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .3s var(--ease), border-color .3s var(--ease),
              color .3s var(--ease), transform .3s var(--ease);
}
.btn::after {
  content: "→";
  font-family: var(--font-sans);
  transition: transform .35s var(--ease-out);
}
.btn:hover { transform: translateY(-2px); }
.btn:hover::after { transform: translateX(4px); }

.btn--primary {
  --btn-bg: var(--accent);
  --btn-fg: #fff;
  --btn-line: var(--accent);
}
.btn--primary:hover {
  --btn-bg: var(--accent-soft);
  --btn-line: var(--accent-soft);
  --btn-fg: #24070f;
}

.btn--ghost:hover {
  --btn-line: var(--accent-soft);
  background: var(--panel-2);
}

/* ---------- hero ---------- */

.facts {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 52px);
  padding-top: 4px;
}
.fact { display: flex; flex-direction: column; gap: 2px; }
.fact__value {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.6vw + 1rem, 2.2rem);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1;
}
.fact__label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--faint);
}

.scroll-cue {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--faint);
  display: flex;
  align-items: center;
  gap: .8em;
}
.scroll-cue::before {
  content: "";
  width: 1px;
  height: 26px;
  background: linear-gradient(180deg, var(--accent), transparent);
  animation: cue 2.4s var(--ease) infinite;
  transform-origin: top;
}
@keyframes cue {
  0%, 100% { transform: scaleY(.35); opacity: .4; }
  45% { transform: scaleY(1); opacity: 1; }
}

/* ---------- worlds overview ---------- */

.worlds {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr));
  gap: 14px;
  width: 100%;
}

.world-card {
  position: relative;
  display: grid;
  grid-template-areas:
    "num  count"
    "name name"
    "desc desc";
  grid-template-columns: auto 1fr;
  gap: 6px 12px;
  align-content: start;
  height: 100%;
  padding: 20px 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  overflow: hidden;
  transition: border-color .35s var(--ease), background .35s var(--ease),
              transform .35s var(--ease);
}
/* The only pink on the card until hover: a 1px top rule. */
.world-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent 70%);
  opacity: .5;
  transition: opacity .35s var(--ease);
}
.world-card:hover,
.world-card:focus-visible {
  transform: translateY(-3px);
  border-color: var(--line-2);
  background: var(--panel-2);
}
.world-card:hover::before { opacity: 1; }

.world-card__num {
  grid-area: num;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .16em;
  color: var(--accent-soft);
}
.world-card__count {
  grid-area: count;
  justify-self: end;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--faint);
}
.world-card__name {
  grid-area: name;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.1vw + .95rem, 1.6rem);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin-top: 8px;
}
.world-card__desc {
  grid-area: desc;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.5;
}

/* ---------- product cards ---------- */

.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 236px), 1fr));
  gap: 12px;
  width: 100%;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  height: 100%;
  padding: 18px;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  cursor: pointer;
  transition: border-color .3s var(--ease), background .3s var(--ease),
              transform .3s var(--ease);
}
.product-card:hover,
.product-card:focus-visible {
  transform: translateY(-3px);
  border-color: var(--line-2);
  background: var(--panel-2);
}

.product-card__num {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .16em;
  color: var(--faint);
}
.product-card__name {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -.015em;
  line-height: 1.15;
}
.product-card__desc {
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.5;
  flex: 1 1 auto;
}
.product-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
}
.product-card__more {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent-soft);
  opacity: 0;
  transform: translateY(2px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.product-card:hover .product-card__more,
.product-card:focus-visible .product-card__more {
  opacity: 1;
  transform: none;
}

.chip {
  display: inline-flex;
  align-items: baseline;
  gap: .45em;
  padding: 4px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  white-space: nowrap;
}
.chip__k { color: var(--faint); letter-spacing: .12em; text-transform: uppercase; }
.chip__v { color: var(--text); }

/* ---------- why ---------- */

.reasons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 4px 34px;
  width: 100%;
}
.reason {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  row-gap: 6px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.reason__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .16em;
  color: var(--accent-soft);
  padding-top: .3em;
}
.reason__title {
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: -.015em;
  line-height: 1.25;
}
.reason__body {
  grid-column: 2;
  color: var(--muted);
  font-size: .89rem;
  line-height: 1.55;
}

/* ---------- testimonials (proof strip inside the why beat) ---------- */

.quotes { width: 100%; padding-top: clamp(18px, 3vh, 34px); }
.quotes__title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 14px;
}
.quotes__title em { font-style: normal; color: var(--accent-soft); }

.quotes__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: 12px;
}
.quote {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}
.quote__body {
  color: var(--text);
  font-size: .89rem;
  line-height: 1.6;
  text-wrap: pretty;
}
.quote__who {
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--faint);
}

/* ---------- contact ---------- */

.contact {
  width: 100%;
  max-width: 620px;
  border-top: 1px solid var(--line);
}
.contact__row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.contact__k {
  flex: 0 0 120px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--faint);
}
.contact__v {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, .8vw + .85rem, 1.4rem);
  letter-spacing: -.015em;
  overflow-wrap: anywhere;   /* long emails must never widen the page */
}
a.contact__v {
  background-image: linear-gradient(var(--accent-soft), var(--accent-soft));
  background-size: 0% 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size .4s var(--ease-out), color .3s var(--ease);
}
a.contact__v:hover,
a.contact__v:focus-visible {
  color: var(--accent-soft);
  background-size: 100% 1px;
}

.sign-off {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--faint);
  line-height: 2;
}
.sign-off em { font-style: normal; color: var(--accent-soft); }

/* ---------- scroll reveal ---------- */
/* `.js-reveal` is added by ui.js only when IntersectionObserver exists, so a
   failed observer leaves the page fully visible rather than blank. */

.js-reveal .beat [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.js-reveal .beat.is-in [data-reveal] {
  opacity: 1;
  transform: none;
}

/* ---------- product modal ---------- */

.ow-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 4vh, 48px) clamp(12px, 4vw, 48px);
}

.ow-modal__scrim {
  position: absolute;
  inset: 0;
  background: rgba(8, 5, 6, .72);
  backdrop-filter: blur(10px) saturate(.8);
  -webkit-backdrop-filter: blur(10px) saturate(.8);
  opacity: 0;
  transition: opacity .28s var(--ease);
}
.ow-modal.is-open .ow-modal__scrim { opacity: 1; }

.ow-modal__panel {
  position: relative;
  width: min(720px, 100%);
  max-height: min(86svh, 900px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--line-2);
  border-radius: 18px;
  background: var(--bg-2);
  box-shadow: 0 40px 120px rgba(0, 0, 0, .6);
  opacity: 0;
  transform: translateY(14px) scale(.985);
  transition: opacity .3s var(--ease-out), transform .3s var(--ease-out);
}
.ow-modal.is-open .ow-modal__panel {
  opacity: 1;
  transform: none;
}

.ow-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  font-size: 24px;
  line-height: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--panel);
  color: var(--muted);
  cursor: pointer;
  transition: color .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}
.ow-modal__close:hover {
  color: var(--text);
  border-color: var(--line-2);
  background: var(--panel-2);
}

.ow-modal__body { display: flex; flex-direction: column; gap: 26px; }
.ow-modal__head { display: flex; flex-direction: column; gap: 10px; padding-right: 44px; }
.ow-modal__title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: 1.02;
}
.ow-modal__lede { color: var(--muted); font-size: 1rem; line-height: 1.55; text-wrap: pretty; }

.ow-modal__facts { display: flex; flex-wrap: wrap; gap: 8px; }

.ow-modal__block { display: flex; flex-direction: column; gap: 10px; }
.ow-modal__h3 {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--faint);
}
.ow-modal__list { display: flex; flex-direction: column; gap: 9px; }
.ow-modal__list li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-size: .93rem;
  line-height: 1.55;
}
.ow-modal__list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: .62em;
  width: 6px;
  height: 1px;
  background: var(--accent);
}
.ow-modal__details { color: var(--muted); font-size: .93rem; line-height: 1.6; }
.ow-modal__details em { font-style: normal; color: var(--accent-soft); }

.ow-modal__media { display: grid; gap: 10px; }
.ow-modal__shot,
.ow-modal__video {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--bg-3);
}

.ow-modal__cta { align-self: flex-start; }

/* Guard against background scroll bleed while the dialog owns the screen. */
.is-modal-open body { overflow: hidden; }

/* ---------- speech bubble (optional helper) ---------- */

.ow-bubble {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  max-width: min(340px, 42vw);
  padding: 12px 16px;
  border: 1px solid var(--line-2);
  border-radius: 16px 16px 16px 4px;
  background: rgba(26, 18, 21, .92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .45);
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s var(--ease);
  will-change: transform;
}
.ow-bubble.is-open { opacity: 1; }
.ow-bubble__text {
  font-size: .93rem;
  line-height: 1.45;
  color: var(--text);
  text-wrap: pretty;
}

/* =====================================================================
   Responsive
   ===================================================================== */

/* Tablet and below: the character re-centres ABOVE a full-width copy panel,
   so desktop corner staging is dropped and the copy gets breathing room at
   the bottom of the screen. Sides still emit their classes for main.js. */
@media (max-width: 1000px) {
  :root { --copy-w: min(100%, 720px); }

  .beat {
    justify-content: center;
    align-items: flex-start;
    padding-top: var(--char-space);
    padding-bottom: clamp(72px, 10svh, 120px);
  }
  .beat.copy-left,
  .beat.copy-right { justify-content: center; }

  /* The character floats over the top of the section, so that band must stay
     clickable for the canvas — only the copy takes pointer events. */
  .beat__inner { width: var(--copy-w); }

  .ow-bubble { max-width: min(320px, 78vw); }
}

@media (max-width: 700px) {
  :root { --char-space: 40svh; --radius: 12px; }

  .beat { padding-left: max(20px, env(safe-area-inset-left));
          padding-right: max(20px, env(safe-area-inset-right)); }

  h1.display { font-size: clamp(2.15rem, 9vw, 3.2rem); }
  h2.display { font-size: clamp(1.85rem, 7.6vw, 2.7rem); }

  .worlds, .products, .quotes__list, .reasons { grid-template-columns: 1fr; }
  .reason { padding: 16px 0; }

  .actions { width: 100%; }
  .btn { flex: 1 1 auto; justify-content: center; }

  .contact__k { flex-basis: 100%; }

  .ow-modal { padding: 0; align-items: flex-end; }
  .ow-modal__panel {
    width: 100%;
    max-height: 92svh;
    border-radius: 18px 18px 0 0;
    border-bottom: 0;
    padding-bottom: max(28px, env(safe-area-inset-bottom));
  }
}

/* 360px: nothing may overflow horizontally. */
@media (max-width: 400px) {
  :root { --gut: 16px; }
  .facts { gap: 18px; }
  .fact__value { font-size: 1.35rem; }
  .product-card, .world-card, .quote { padding: 15px; }
  .ow-modal__close { top: 10px; right: 10px; width: 36px; height: 36px; }
}

/* Short landscape phones: the tall top gutter would push copy off-screen. */
@media (max-height: 560px) and (max-width: 1000px) {
  :root { --char-space: 28svh; }
  .beat { padding-top: var(--char-space); }
}

/* =====================================================================
   Reduced motion — no parallax, no reveal, no drift. Content is simply there.
   ===================================================================== */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }

  .js-reveal .beat [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .btn:hover,
  .world-card:hover,
  .product-card:hover { transform: none; }

  .product-card__more { opacity: 1; transform: none; }
  .scroll-cue::before { animation: none; transform: scaleY(1); opacity: .7; }
  .ow-modal__panel { transform: none; }
}

/* Windows high-contrast / forced colours: borders must survive. */
@media (forced-colors: active) {
  .world-card, .product-card, .quote, .ow-modal__panel, .btn { border-color: CanvasText; }
  .eyebrow::before, .ow-modal__list li::before { background: CanvasText; }
}
