/* ============================================================
   MYCELIA ORGANIC — V2 immersive upgrades
   Rotating hero · counters · scroll-story · game · quizzes
   ============================================================ */

/* ---------- Rotating cinematic hero ---------- */
.hero__slides { position: absolute; inset: 0; z-index: 0; overflow: hidden; background: var(--green); }
.hero__slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.4s var(--ease); }
.hero__slide img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); }
.hero__slide.active { opacity: 1; }
.hero__slide.active img { animation: kenburns 8s ease-out forwards; }
@keyframes kenburns { from { transform: scale(1.04); } to { transform: scale(1.18); } }
.hero__veil { position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(100deg, rgba(20,32,26,.88) 0%, rgba(20,32,26,.6) 42%, rgba(31,61,43,.28) 100%); }
.hero .hero__mesh { z-index: 1; opacity: .5; mix-blend-mode: screen; }
.hero__noise { z-index: 1; }
.hero__inner { z-index: 3; }

.hero__rot { position: relative; min-height: 2.1em; }
.hero__rot .line { position: absolute; left: 0; top: 0; width: 100%; opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.hero__rot .line.active { opacity: 1; transform: none; position: relative; }
.hero__rot .line em { color: var(--rose); font-style: italic; }

.hero__dots { position: absolute; bottom: 2.2rem; right: var(--gutter); z-index: 3; display: flex; gap: .55rem; }
.hero__dots button { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.35); transition: transform .3s, background .3s, width .3s; }
.hero__dots button.active { background: var(--rose); width: 26px; border-radius: 100px; }

/* ---------- Stat counters ---------- */
.stats { background: var(--cream); padding-block: clamp(2.5rem,6vw,4.5rem); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stat__num { font-family: var(--font-display); font-size: clamp(2.4rem, 6vw, 4rem); color: var(--rose-deep); line-height: 1; font-weight: 600; }
.stat__num .suf { font-size: .5em; vertical-align: super; }
.stat__lbl { color: var(--ink-soft); font-weight: 600; margin-top: .4rem; font-size: .95rem; }
@media (max-width: 720px){ .stats__grid { grid-template-columns: repeat(2,1fr); gap: 2rem 1rem; } }

/* ---------- Reusable mushroom illustration ---------- */
.mush { width: 100%; height: 100%; overflow: visible; }
.mush .g { transition: opacity .7s var(--ease), transform .8s var(--ease); }
.mush .myc path { stroke: var(--rose); stroke-width: 2.4; fill: none; stroke-linecap: round;
  stroke-dasharray: 220; stroke-dashoffset: 220; transition: stroke-dashoffset 1.3s var(--ease), opacity .6s; opacity: .9; }
.mush .pin { transform-origin: center bottom; transform: scaleY(0); opacity: 0; transition: transform .6s var(--ease), opacity .5s; }
.mush .shroom { transform-origin: center bottom; transform: scale(0); opacity: 0; transition: transform .8s var(--ease), opacity .6s; }
.mush .germ { transform-origin: center bottom; transform: scaleY(0); opacity: 0; transition: transform .6s var(--ease), opacity .5s; }
.mush .spores { opacity: 0; transition: opacity .6s; }
.mush .release circle { opacity: 0; }

.mush.s1 .spores { opacity: 1; }
.mush.s1 .spores circle { animation: floatSpore 4s ease-in-out infinite; }
.mush.s2 .spores { opacity: .2; }
.mush.s2 .germ, .mush.s3 .germ, .mush.s4 .germ { transform: scaleY(1); opacity: 1; }
.mush.s3 .myc path, .mush.s4 .myc path, .mush.s5 .myc path, .mush.s6 .myc path { stroke-dashoffset: 0; }
.mush.s4 .germ { opacity: .4; }
.mush.s4 .pin, .mush.s5 .pin, .mush.s6 .pin { transform: scaleY(1); opacity: 1; }
.mush.s5 .shroom, .mush.s6 .shroom { transform: scale(1); opacity: 1; }
.mush.s5 .pin, .mush.s6 .pin { opacity: .45; }
.mush.s6 .release circle { opacity: 1; animation: riseSpore 3s ease-out infinite; }
@keyframes floatSpore { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-7px);} }
@keyframes riseSpore { 0%{ transform: translateY(0); opacity: .9;} 100%{ transform: translateY(-42px); opacity: 0;} }

/* floating decorative spores */
.float-spores { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.float-spores i { position: absolute; bottom: -10px; width: 7px; height: 7px; border-radius: 50%; background: rgba(217,110,138,.45); animation: drift linear infinite; }
@keyframes drift { from { transform: translateY(0) translateX(0); opacity: 0; } 12%{opacity:.8;} 88%{opacity:.8;} to { transform: translateY(-90vh) translateX(28px); opacity: 0; } }

/* ---------- Cinematic scroll-story life cycle visual ---------- */
.lc__visual.story { background: radial-gradient(circle at 45% 35%, rgba(217,110,138,.30), rgba(31,61,43,.25) 60%, transparent); }
.lc__visual.story .mush { width: 80%; height: 80%; }

/* ---------- Grow Your Own game ---------- */
.game { background: linear-gradient(180deg, var(--cream-2), var(--blush)); position: relative; overflow: hidden; }
.game__wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem,4vw,3.5rem); align-items: center; }
.game__scene { position: relative; aspect-ratio: 1; max-width: 460px; margin-inline: auto; width: 100%;
  border-radius: var(--radius-l); overflow: hidden; background: radial-gradient(circle at 50% 22%, #335139, #15251B);
  box-shadow: var(--shadow); display: grid; place-items: center; }
.game__scene .mush { width: 76%; height: 76%; }
.game__stagelabel { position: absolute; top: 1rem; left: 1rem; background: rgba(247,242,232,.92); color: var(--green); font-weight: 700; font-size: .8rem; padding: .35rem .8rem; border-radius: 100px; letter-spacing: .03em; z-index: 3; }
.game__progress { position: absolute; left: 1rem; right: 1rem; bottom: 1rem; z-index: 3; }
.game__bar { height: 10px; border-radius: 100px; background: rgba(255,255,255,.2); overflow: hidden; }
.game__bar > i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--rose), var(--gold)); border-radius: 100px; transition: width .45s var(--ease); }
.game__pct { color: rgba(247,242,232,.92); font-size: .78rem; font-weight: 600; margin-top: .35rem; text-align: right; }
.game__panel h2 { font-size: clamp(1.8rem,4.5vw,2.8rem); }
.game__msg { min-height: 2.8em; color: var(--ink-soft); margin: .8rem 0 1.3rem; font-size: 1.05rem; }
.game__actions { display: flex; gap: .7rem; flex-wrap: wrap; }
.game__btn { display: flex; flex-direction: column; align-items: center; gap: .15rem; flex: 1; min-width: 90px;
  background: var(--paper); border-radius: var(--radius); padding: 1rem .7rem; box-shadow: var(--shadow-s);
  border: 2px solid transparent; transition: transform .18s var(--ease), border-color .3s, box-shadow .3s; font-weight: 700; color: var(--green); }
.game__btn .em { font-size: 1.7rem; }
.game__btn .k { font-size: .8rem; }
.game__btn:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.game__btn:active { transform: scale(.93); }
.game__btn.want { border-color: var(--rose); animation: wantPulse 1.2s ease-in-out infinite; }
@keyframes wantPulse { 0%,100%{ box-shadow: 0 0 0 0 rgba(217,110,138,.45);} 50%{ box-shadow: 0 0 0 9px rgba(217,110,138,0);} }
.game__hint { font-size: .85rem; color: var(--rose-deep); font-weight: 600; margin-top: .9rem; min-height: 1.2em; }
.game__win { margin-top: 1rem; display: none; gap: .7rem; flex-wrap: wrap; }
.game.won .game__win { display: flex; }
.game.won .game__actions, .game.won .game__hint { display: none; }
.game__pop { position: absolute; pointer-events: none; font-size: 1.3rem; animation: popUp 1s var(--ease) forwards; z-index: 4; }
@keyframes popUp { from { transform: translateY(0) scale(.6); opacity: 1; } to { transform: translateY(-72px) scale(1.25); opacity: 0; } }
.confetti { position: absolute; inset: 0; pointer-events: none; z-index: 5; overflow: hidden; }
.confetti i { position: absolute; top: -8%; font-size: 1.3rem; animation: fall linear forwards; }
@keyframes fall { to { transform: translateY(560px) rotate(560deg); opacity: 0; } }
@media (max-width: 880px){ .game__wrap { grid-template-columns: 1fr; } .game__panel { text-align: center; } .game__panel .eyebrow { justify-content: center; } .game__scene{ max-width: 360px; } }

/* ---------- Myth-buster quiz ---------- */
.quiz { background: var(--blush); }
.quiz__card { max-width: 680px; margin-inline: auto; background: var(--paper); border-radius: var(--radius-l); padding: clamp(1.6rem,4vw,2.6rem); box-shadow: var(--shadow); }
.quiz__bar { height: 6px; background: var(--green-mist); border-radius: 100px; overflow: hidden; margin-bottom: 1.5rem; }
.quiz__bar > i { display: block; height: 100%; background: var(--rose); width: 0; transition: width .4s var(--ease); }
.quiz__count { color: var(--ink-soft); font-weight: 600; font-size: .85rem; margin-bottom: .5rem; }
.quiz__q { font-family: var(--font-display); font-size: clamp(1.35rem,3.5vw,1.9rem); color: var(--green); margin-bottom: 1.2rem; }
.quiz__opts { display: flex; gap: 1rem; }
.quiz__opts button { flex: 1; padding: 1.1rem; border-radius: var(--radius); font-weight: 700; font-size: 1.05rem; border: 2px solid var(--green-mist); color: var(--green); background: var(--cream-2); transition: transform .2s, border-color .25s, background .25s; }
.quiz__opts button:hover:not(:disabled) { transform: translateY(-3px); border-color: var(--rose); }
.quiz__opts button.correct { background: #e3f3e6; border-color: #6cae74; color: #2c6b38; }
.quiz__opts button.wrong { background: #fde3ea; border-color: var(--rose); color: var(--rose-deep); }
.quiz__reveal { margin-top: 1.3rem; padding: 1.1rem 1.2rem; border-radius: var(--radius); background: var(--green-mist); color: var(--green-2); font-size: .98rem; display: none; }
.quiz__reveal.show { display: block; animation: fadeUp .5s var(--ease); }
.quiz__reveal b { color: var(--rose-deep); }
.quiz__next { margin-top: 1.2rem; display: none; }
.quiz__next.show { display: inline-flex; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px);} to { opacity: 1; transform: none; } }
.quiz__result { text-align: center; display: none; }
.quiz__result.show { display: block; }
.quiz__result .score { font-family: var(--font-display); font-size: 3.5rem; color: var(--rose-deep); line-height: 1; }
.quiz__result h3 { font-size: 1.5rem; margin: .5rem 0 .6rem; }

/* ---------- Recipe finder quiz ---------- */
.rfinder { background: var(--green); color: var(--cream); }
.rfinder .eyebrow { color: var(--rose);} .rfinder .eyebrow::before{ background: var(--rose);}
.rfinder h2 { color: var(--cream); }
.rfinder .section-head p { color: rgba(247,242,232,.8); }
.rfinder__card { max-width: 640px; margin-inline: auto; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-l); padding: clamp(1.6rem,4vw,2.4rem); text-align: center; }
.rfinder__q { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 1.3rem; }
.rfinder__opts { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }
.rfinder__opts button { padding: .85rem 1.4rem; border-radius: 100px; font-weight: 700; background: rgba(255,255,255,.1); color: var(--cream); border: 2px solid rgba(255,255,255,.2); transition: transform .2s, background .25s, border-color .25s; }
.rfinder__opts button:hover { transform: translateY(-3px); background: var(--rose); border-color: var(--rose); }
.rfinder__dots { display: flex; gap: .4rem; justify-content: center; margin-top: 1.4rem; }
.rfinder__dots i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.25); }
.rfinder__dots i.on { background: var(--rose); }
.rfinder__result { display: none; }
.rfinder__result.show { display: block; animation: fadeUp .5s var(--ease); }
.rfinder__result .rec-card { max-width: 330px; margin: 1.2rem auto 0; text-align: left; cursor: pointer; }
.rfinder__again { margin-top: 1.3rem; }

@media (prefers-reduced-motion: reduce) {
  .hero__slide.active img, .float-spores i, .confetti i, .mush #spores circle, .mush #release circle { animation: none !important; }
}

/* ============================================================
   V3 — life-cycle light theme, language switcher, story rotator
   ============================================================ */

/* ---------- Life cycle: white bg + yellow animation + shorter ---------- */
.lifecycle { background: var(--cream-2); color: var(--charcoal); padding-block: clamp(3rem,6vw,5rem); }
.lifecycle .eyebrow { color: #C98A12; }
.lifecycle .eyebrow::before { background: var(--gold); }
.lifecycle h2 { color: var(--green); }
.lifecycle .section-head p { color: var(--ink-soft); }
.lifecycle .lc { gap: clamp(1.5rem,4vw,3.5rem); }
.lifecycle .lc__steps { gap: .7rem; }
.lifecycle .lc__step { background: var(--paper); border: 1px solid rgba(31,61,43,.08); box-shadow: var(--shadow-s); padding: 1.1rem 1.3rem; opacity: .6; }
.lifecycle .lc__step.active { background: #FFF7E6; border-color: var(--gold); opacity: 1; }
.lifecycle .lc__step h4 { color: var(--green); }
.lifecycle .lc__step p { color: var(--ink-soft); }
.lifecycle .lc__step .time { color: var(--ink-soft); }
.lifecycle .lc__step .chip { background: var(--gold); color: #4a3206; }
.lifecycle .lc__stage-num { color: rgba(201,138,18,.16); }
.lifecycle .lc__ring { border-color: rgba(224,164,59,.4); }
.lc__visual.story { background: radial-gradient(circle at 50% 42%, rgba(224,164,59,.42), rgba(247,242,232,0) 62%); }
/* pulsing yellow sun glow */
.lc__visual.story::before { content:""; position:absolute; inset:14%; border-radius:50%;
  background: radial-gradient(circle, rgba(255,210,90,.55), rgba(255,210,90,0) 70%); animation: sunPulse 4.5s ease-in-out infinite; z-index:0; }
@keyframes sunPulse { 0%,100%{ transform: scale(.85); opacity:.5; } 50%{ transform: scale(1.1); opacity:.9; } }
.lc__visual.story .mush { position: relative; z-index: 1; }
/* gold mushroom accents + gold floating spores in this section */
.lifecycle .mush .myc path { stroke: #E0A43B; }
.lifecycle .mush .spores circle, .lifecycle .mush .release circle { fill: #F2D27A; }
.lifecycle .float-spores i { background: rgba(224,164,59,.55); }
@media (prefers-reduced-motion: reduce){ .lc__visual.story::before { animation: none; } }

/* ---------- Story image rotator ---------- */
.about__media .rot { position: relative; aspect-ratio: 4/5; border-radius: var(--radius-l); overflow: hidden; box-shadow: var(--shadow); }
.about__media .rot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.3s var(--ease); }
.about__media .rot img.active { opacity: 1; }
.about__media .rot img.active { animation: kenburns 9s ease-out forwards; }

/* ---------- Language switcher ---------- */
.lang-switch { position: relative; margin-left: .4rem; }
.lang-switch__btn { display: flex; align-items: center; gap: .45rem; padding: .5rem .85rem; border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,.45); font-weight: 700; font-size: .9rem; color: #fff;
  background: rgba(255,255,255,.15); backdrop-filter: blur(8px); transition: background .3s, color .3s, border-color .3s; }
.lang-switch__btn .globe { width: 17px; height: 17px; }
.lang-switch__btn .chev { transition: transform .3s var(--ease); font-size: .7rem; opacity: .8; }
.lang-switch.open .lang-switch__btn .chev { transform: rotate(180deg); }
.nav.scrolled .lang-switch__btn { color: var(--green); border-color: rgba(31,61,43,.2); background: rgba(255,255,255,.7); }
.lang-switch__menu { position: absolute; top: calc(100% + 10px); right: 0; background: var(--paper); border-radius: var(--radius-s);
  box-shadow: var(--shadow); padding: .4rem; min-width: 168px; z-index: 130;
  opacity: 0; transform: translateY(-8px) scale(.98); pointer-events: none; transition: opacity .25s var(--ease), transform .25s var(--ease); }
.lang-switch.open .lang-switch__menu { opacity: 1; transform: none; pointer-events: auto; }
.lang-switch__menu button { display: flex; align-items: center; gap: .5rem; width: 100%; text-align: left; padding: .6rem .8rem;
  border-radius: 9px; font-weight: 600; font-size: .95rem; color: var(--charcoal); transition: background .2s; }
.lang-switch__menu button .tick { margin-left: auto; color: var(--rose); opacity: 0; }
.lang-switch__menu button:hover { background: var(--green-mist); }
.lang-switch__menu button.active { background: var(--green-mist); color: var(--green); }
.lang-switch__menu button.active .tick { opacity: 1; }
/* recipe page nav is light from the start */
.rpage-nav .lang-switch__btn, body.lightnav .lang-switch__btn { color: var(--green); border-color: rgba(31,61,43,.2); background: rgba(255,255,255,.7); }
@media (max-width: 760px){
  .lang-switch { order: 2; margin-left: auto; margin-right: .3rem; }
  .nav-toggle { order: 3; }
  .lang-switch__btn { color: var(--green); border-color: rgba(31,61,43,.2); background: rgba(255,255,255,.75); }
  .lang-switch__btn .lbl { display: none; }
}

/* ============================================================
   V4 — brand visibility + tighter vertical rhythm
   ============================================================ */
.brand { font-size: clamp(1.05rem, 2.1vw, 1.45rem); font-weight: 700; letter-spacing: -.01em; line-height: 1.04; gap: .6rem; }
.brand img { width: 46px; height: 46px; }
.brand span { color: #fff; text-shadow: 0 1px 14px rgba(0,0,0,.45); transition: color .4s var(--ease); }
.nav.scrolled .brand span { color: var(--green); text-shadow: none; }
/* nicer nav-link contrast over the dark/green hero (desktop top state only) */
@media (min-width: 761px) {
  .nav:not(.scrolled) .nav-links a { color: rgba(255,255,255,.92); }
}
@media (max-width: 760px) {
  .brand span { font-size: .98rem; max-width: 46vw; }
  .brand img { width: 38px; height: 38px; }
}

/* Tighter vertical spacing — less empty space everywhere */
.section { padding-block: clamp(2.4rem, 5vw, 4.25rem); }
.section-head { margin-bottom: clamp(1.3rem, 3vw, 2.3rem); }
.stats { padding-block: clamp(1.8rem, 4vw, 3rem); }
.about__grid { gap: clamp(1.4rem, 4vw, 3rem); }
.cards { gap: 1.2rem; }
.lifecycle { padding-block: clamp(2.4rem, 5vw, 4rem); }
.footer { padding-block: 2.6rem 1.6rem; }
.footer__bottom { margin-top: 1.8rem; padding-top: 1.2rem; }
.rec-teaser .center, .recipes-section { }

/* ============================================================
   V5 — mobile fixes: shorter page, visible game progress,
   quick recipe link, no scroll watermark
   ============================================================ */

/* progress bar now lives in the game panel (always visible near buttons) */
.game__progress--panel { position: static; margin: 0 0 1.1rem; }
.game__progress--panel .game__bar { background: var(--green-mist); }
.game__progress--panel .game__pct { color: var(--ink-soft); text-align: left; margin-top: .4rem; }

/* mobile-only quick link in hero */
.mobile-only { display: none; }
.hero__reclink { align-items: center; gap: .4rem; margin-top: 1.1rem; font-weight: 700; font-size: .95rem;
  color: #fff; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.34);
  padding: .55rem 1.1rem; border-radius: 100px; backdrop-filter: blur(6px); width: fit-content; }

@media (max-width: 760px) {
  .mobile-only { display: inline-flex; }

  /* tighter sections */
  .section { padding-block: clamp(1.9rem, 6vw, 2.9rem); }
  .section-head { margin-bottom: clamp(1.1rem, 4vw, 1.8rem); }
  .hero { min-height: 90svh; }

  /* benefits 2-up to halve the height */
  .cards { grid-template-columns: 1fr 1fr; gap: .7rem; }
  .card { padding: 1.15rem .9rem; }
  .card .ic { width: 42px; height: 42px; font-size: 1.25rem; margin-bottom: .6rem; border-radius: 12px; }
  .card h4 { font-size: 1rem; }
  .card p { font-size: .82rem; line-height: 1.5; }

  /* lifecycle: compact steps */
  .lifecycle .lc__step { padding: .85rem 1rem; }
  .lifecycle .lc__step p { font-size: .88rem; }
  .lifecycle .lc__steps { gap: .55rem; }
  .lc__sticky { margin-bottom: .5rem; }
  .lc__visual { max-width: 130px !important; }
  .lc__stage-num { font-size: 3rem !important; }

  /* game: compact scene so scene + progress + buttons fit together */
  .game__scene { max-width: 250px; }
  .game__msg { min-height: 0; font-size: .98rem; margin: .6rem 0 1rem; }
  .game__btn { min-width: 70px; padding: .8rem .5rem; }
  .game__btn .em { font-size: 1.45rem; }

  /* facts/quiz cards a touch tighter */
  .facts__grid { gap: .8rem; }
  .fact { padding: 1.3rem 1.2rem; }
}

/* wrong-tap feedback in the grow game */
@keyframes shakeX { 0%,100%{transform:translateX(0)} 20%{transform:translateX(-7px)} 40%{transform:translateX(7px)} 60%{transform:translateX(-4px)} 80%{transform:translateX(4px)} }
.game__scene.shake { animation: shakeX .4s ease; }
@media (prefers-reduced-motion: reduce){ .game__scene.shake { animation: none; } }

/* ============================================================
   V6 — Language usage dashboard
   ============================================================ */
.usage { background: var(--cream-2); }
.usage__card { max-width: 720px; margin-inline: auto; background: var(--paper); border-radius: var(--radius-l);
  padding: clamp(1.4rem,4vw,2.4rem); box-shadow: var(--shadow); }
.usage__head { display: inline-flex; align-items: center; gap: .5rem; font-weight: 700; font-size: .8rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--rose-deep); margin-bottom: 1.3rem; }
.usage__livedot { width: 9px; height: 9px; border-radius: 50%; background: #36c46b; box-shadow: 0 0 0 0 rgba(54,196,107,.6); animation: pulse 2s infinite; }
.usage__loading { color: var(--ink-soft); text-align: center; padding: 1.5rem 0; }
.usage__row { display: grid; grid-template-columns: 26px minmax(96px,1.3fr) 3fr auto; align-items: center; gap: .8rem; padding: .55rem 0; }
.usage__rank { font-family: var(--font-display); font-weight: 700; color: var(--sage); font-size: 1.05rem; text-align: center; }
.usage__row:first-child .usage__rank { color: var(--rose); }
.usage__lang { font-weight: 700; color: var(--green); font-size: 1rem; }
.usage__track { height: 12px; background: var(--green-mist); border-radius: 100px; overflow: hidden; }
.usage__track > i { display: block; height: 100%; width: 0; border-radius: 100px;
  background: linear-gradient(90deg, var(--rose), var(--gold)); transition: width 1s var(--ease); }
.usage__row:first-child .usage__track > i { background: linear-gradient(90deg, var(--rose-deep), var(--rose)); }
.usage__val { font-weight: 700; color: var(--ink-soft); font-size: .88rem; white-space: nowrap; font-variant-numeric: tabular-nums; }
.usage__note { margin-top: 1rem; font-size: .85rem; color: var(--ink-soft); text-align: center; }
@media (max-width: 560px) {
  .usage__row { grid-template-columns: 20px minmax(70px,1fr) 2.2fr auto; gap: .5rem; }
  .usage__lang { font-size: .9rem; }
  .usage__val { font-size: .78rem; }
}
