@font-face {
  font-family: 'Karpaty';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/Karpaty/KARPATY.ttf') format('truetype');
}

@font-face {
  font-family: 'e-Ukraine Head';
  font-weight: 100;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/e-UkraineHead/e-UkraineHead-Thin.otf') format('opentype');
}

@font-face {
  font-family: 'e-Ukraine Head';
  font-weight: 200;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/e-UkraineHead/e-UkraineHead-UltraLight.otf') format('opentype');
}

@font-face {
  font-family: 'e-Ukraine Head';
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/e-UkraineHead/e-UkraineHead-Light.otf') format('opentype');
}

@font-face {
  font-family: 'e-Ukraine Head';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/e-UkraineHead/e-UkraineHead-Regular.otf') format('opentype');
}

@font-face {
  font-family: 'e-Ukraine Head';
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/e-UkraineHead/e-UkraineHead-Medium.otf') format('opentype');
}

@font-face {
  font-family: 'e-Ukraine Head';
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/e-UkraineHead/e-UkraineHead-Bold.otf') format('opentype');
}

/* ====== Design tokens ====== */

:root {
  --ink: #f5ecd6;
  --ink-soft: rgba(245, 236, 214, .82);
  --ink-faint: rgba(245, 236, 214, .55);
  --forest-deep: #101d14;
  --forest: #1b2f1d;
  --moss: #33502c;
  --gold: #f0b34a;
  --gold-bright: #ffe09a;
  --amber: #e89238;
  --brick: #c14b2c;
  --brick-light: #d96440;
  --ochre: #d99a3a;
  --leaf: #7fae4e;
}

/* ====== Reset ====== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'e-Ukraine', sans-serif;
  color: var(--ink);
  background: #101d14;
  overflow-x: hidden;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

/* ====== Continuous forest scene: day at top -> festival dusk at bottom ====== */

.scene {
  position: relative;
  background: linear-gradient(
    180deg,
    #20381f 0%,
    #1e351e 18%,
    #213820 36%,
    #2a3819 54%,
    #34320f 70%,
    #221c0e 84%,
    #0f160d 100%
  );
}

/* soft sun glow through canopy (hero) */
.scene::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(70% 45% at 70% 8%, rgba(255, 224, 154, .30), transparent 60%),
    radial-gradient(55% 40% at 22% 22%, rgba(127, 174, 78, .18), transparent 60%),
    radial-gradient(80% 45% at 50% 82%, rgba(232, 146, 56, .22), transparent 65%);
  mix-blend-mode: screen;
}

/* grain overlay */
.grain {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: .06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* vignette */
.vignette {
  position: fixed;
  inset: 0;
  z-index: 55;
  pointer-events: none;
  box-shadow: inset 0 0 240px 60px rgba(0, 0, 0, .55);
}

/* ====== Light rays ====== */

.rays {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 90vh;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  mix-blend-mode: screen;
  opacity: .5;
}

.ray {
  position: absolute;
  top: -20%;
  width: 14vw;
  height: 130%;
  background: linear-gradient(180deg, rgba(255, 224, 154, .5), rgba(255, 224, 154, 0));
  filter: blur(22px);
  transform-origin: top center;
  animation: sway 9s ease-in-out infinite;
}

.ray:nth-child(1) {
  left: 58%;
  transform: rotate(8deg);
  animation-delay: 0s;
}

.ray:nth-child(2) {
  left: 70%;
  transform: rotate(13deg);
  width: 9vw;
  animation-delay: 1.5s;
  opacity: .7;
}

.ray:nth-child(3) {
  left: 46%;
  transform: rotate(4deg);
  width: 11vw;
  animation-delay: 3s;
  opacity: .6;
}

@keyframes sway {
  0%, 100% { transform: rotate(8deg) translateX(0); }
  50%       { transform: rotate(11deg) translateX(10px); }
}

/* ====== Fireflies ====== */

.fireflies {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.ff {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff6cf 0%, #ffd574 40%, rgba(255, 213, 116, 0) 70%);
  box-shadow: 0 0 8px 2px rgba(255, 213, 116, .7);
  animation:
    drift var(--d, 12s) ease-in-out infinite,
    glow 3s ease-in-out infinite;
}

@keyframes drift {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(22px, -30px); }
  50%  { transform: translate(-14px, -58px); }
  75%  { transform: translate(18px, -30px); }
  100% { transform: translate(0, 0); }
}

@keyframes glow {
  0%, 100% { opacity: .2; }
  50%       { opacity: 1; }
}

/* ====== Layout shell ====== */

.wrap {
  position: relative;
  z-index: 5;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 26px;
}

/* ====== Top bar ====== */

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 0 0;
  gap: 18px;
  flex-wrap: wrap;
}

.brand img {
  height: 62px;
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, .5));
}

.top-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.top-socials {
  display: flex;
  gap: 9px;
}

.soc-mini {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 29, 20, .5);
  border: 1.5px solid rgba(240, 179, 74, .4);
  color: var(--gold-bright);
  text-decoration: none;
  transition: transform .3s, border-color .3s, background .3s;
}

.soc-mini svg {
  width: 20px;
  height: 20px;
}

.soc-mini:hover {
  transform: translateY(-3px);
  border-color: var(--gold-bright);
  background: rgba(240, 179, 74, .12);
}

/* ====== Project switcher (Chuhaistryky variant) ====== */

.chu-projswitch {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px;
  background: rgba(16, 29, 20, .55);
  border: 1.5px solid rgba(240, 179, 74, .4);
  border-radius: 999px;
  font-family: 'e-Ukraine Head', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .04em;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.chu-projswitch .cps-item {
  color: var(--ink-soft);
  text-decoration: none;
  transition: color .25s;
}

.chu-projswitch .cps-item:hover { color: var(--gold-bright); }

.chu-projswitch .cps-item.active {
  color: var(--gold-bright);
  text-shadow: 0 0 12px rgba(240, 179, 74, .35);
}

.chu-projswitch .cps-sep {
  color: var(--ink-faint);
  font-weight: 300;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'e-Ukraine', sans-serif;
  letter-spacing: .06em;
  font-size: .78rem;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(16, 29, 20, .5);
  border: 1.5px solid rgba(240, 179, 74, .45);
  padding: 9px 16px;
  border-radius: 40px;
  backdrop-filter: blur(4px);
}

.badge .flag {
  font-size: 1.05rem;
  line-height: 1;
}

/* ====== Hero ====== */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 26px 0 64px;
}

.hero > .wrap {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
}

.hero .background{
  background: url(../images/herobg.webp);
  background-position: center;
  width: 100%;
  height: 100vh;
  position: absolute;
  opacity: 0.2;
}

.hero-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 30px 0;
}

.eyebrow {
  font-family: 'e-Ukraine', sans-serif;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-bright);
  font-size: .82rem;
  margin-bottom: 40px;
}

.title {
  font-family: 'Karpaty', sans-serif;
  font-weight: 700;
  line-height: .92;
  font-size: clamp(2.9rem, 8.4vw, 7.2rem);
  color: var(--ink);
  text-shadow: 0 2px 0 rgba(0, 0, 0, .35), 0 0 38px rgba(240, 179, 74, .4);
  letter-spacing: .11em;
}

.title .glow {
  color: var(--gold-bright);
}

.subtitle {
  font-family: 'e-Ukraine', sans-serif;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--ink);
  font-size: clamp(1rem, 2.1vw, 1.35rem);
  margin: 18px auto 0;
  max-width: 44ch;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .5);
}

.specs {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.spec {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'e-Ukraine', sans-serif;
  font-weight: 500;
  color: var(--ink);
  font-size: 1rem;
  background: rgba(16, 29, 20, .4);
  border: 1.5px solid rgba(240, 179, 74, .28);
  padding: 10px 18px;
  border-radius: 40px;
  backdrop-filter: blur(3px);
}

.spec svg {
  width: 22px;
  height: 22px;
  color: var(--gold-bright);
  flex: none;
}

.release-note {
  font-family: 'e-Ukraine', sans-serif;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--gold-bright);
  font-size: .92rem;
  margin-top: 32px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .4);
}

/* ====== Subscribe form ====== */

.subscribe {
  margin-top: 32px;
  text-align: center;
}

.subscribe-text {
  font-family: 'e-Ukraine', sans-serif;
  font-size: .9rem;
  color: var(--ink-soft);
  letter-spacing: .05em;
  margin-bottom: 14px;
}

.subscribe-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.subscribe-input {
  background: rgba(16, 29, 20, .5);
  border: 1.5px solid rgba(240, 179, 74, .4);
  color: var(--ink);
  font-family: 'e-Ukraine', sans-serif;
  font-size: .95rem;
  padding: 11px 18px;
  border-radius: 40px;
  outline: none;
  backdrop-filter: blur(4px);
  width: 240px;
  transition: border-color .3s;
}

.subscribe-input::placeholder {
  color: var(--ink-faint);
}

.subscribe-input:focus {
  border-color: var(--gold-bright);
}

.subscribe-btn {
  font-family: 'e-Ukraine', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  color: var(--forest-deep);
  background: var(--gold);
  border: none;
  padding: 11px 24px;
  border-radius: 40px;
  cursor: pointer;
  transition: background .3s, transform .3s, box-shadow .3s;
  letter-spacing: .04em;
}

.subscribe-btn:hover {
  background: var(--gold-bright);
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(240, 179, 74, .4);
}

.subscribe-btn:active {
  transform: translateY(0);
}

.subscribe-success {
  font-family: 'e-Ukraine', sans-serif;
  font-size: .92rem;
  color: var(--leaf);
  letter-spacing: .05em;
}

/* ====== Scroll cue ====== */

.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'e-Ukraine', sans-serif;
  font-size: .78rem;
  color: var(--ink-faint);
  text-align: center;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.scroll-cue .arr {
  display: block;
  margin: 8px auto 0;
  width: 18px;
  height: 18px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  animation: down 1.8s ease-in-out infinite;
}

@keyframes down {
  0%, 100% {
    transform: rotate(45deg) translate(0, 0);
    opacity: .5;
  }
  50% {
    transform: rotate(45deg) translate(4px, 4px);
    opacity: 1;
  }
}

/* ====== Hero side characters ====== */

.hero-figure {
  position: absolute;
  bottom: clamp(20px, 4vh, 46px);
  z-index: 3;
  height: min(50vh, 420px);
  pointer-events: none;
}

.hero-figure.left  { left: calc(50% - 600px); }
.hero-figure.right { right: calc(50% - 600px); }

.hero-figure.left .fig-shadow{
  bottom: -15px;
  left: calc(50% - 30px);
}

.hero-figure.right .fig-shadow{
  bottom: 0px;
  left: 50%;
}

.hero-figure img {
  height: 100%;
  width: auto;
  display: block;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 6px 9px rgba(0, 0, 0, .4));
}

.fig-shadow {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 58%;
  height: 70px;
  border-radius: 50%;
  z-index: 1;
  filter: blur(2px);
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, .6), rgba(0, 0, 0, 0) 72%);
}

/* ====== Section blocks ====== */

.block {
  padding: 48px 0;
  position: relative;
}

.kicker {
  font-family: 'e-Ukraine Head', sans-serif;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: clamp(1.15rem, 2.6vw, 1.7rem);
  color: var(--ink);
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .5);
}

.kicker .hl {
  color: var(--gold-bright);
}

.lead {
  max-width: 60ch;
  margin: 16px auto 0;
  text-align: center;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
}

/* ====== Quest band ====== */

.quest {
  margin: auto;
  text-align: center;
  padding: 34px 0 44px;
  position: relative;
}

.quest .text{
  margin-top: 200px;
}

.sun {
  position: relative;
  margin: 0 auto;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #fff5cc, #f0b34a 55%, #e8923d);
  box-shadow:
    0 0 60px 18px rgba(240, 179, 74, .42),
    0 0 130px 46px rgba(232, 146, 56, .24);
  animation: sunpulse 6s ease-in-out infinite;
  width: 130px;
  height: 130px;
  margin-top: 25px;
}

.sun img{
  margin: -40px;
}

@keyframes sunpulse {
  0%, 100% {
    box-shadow:
      0 0 58px 18px rgba(240, 179, 74, .4),
      0 0 120px 44px rgba(232, 146, 56, .22);
  }
  50% {
    box-shadow:
      0 0 80px 26px rgba(240, 179, 74, .55),
      0 0 156px 58px rgba(232, 146, 56, .3);
  }
}

.horizon {
  height: 1px;
  width: min(560px, 86%);
  margin: 0 auto 24px;
  background: linear-gradient(90deg, transparent, rgba(240, 179, 74, .55), transparent);
}

.festival {
  font-family: 'e-Ukraine Head', sans-serif;
  font-weight: 400;
  font-size: clamp(1.05rem, 2.4vw, 1.5rem);
  letter-spacing: .02em;
  color: var(--gold-bright);
  line-height: 1.25;
  text-shadow: 0 0 22px rgba(240, 179, 74, .35);
}

.question {
  font-family: 'e-Ukraine Head', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 4vw, 2.7rem);
  line-height: 1.18;
  max-width: 24ch;
  margin: 12px auto 0;
  color: var(--ink);
  text-shadow: 0 2px 14px rgba(0, 0, 0, .45);
}

.question .hl {
  color: var(--gold-bright);
}

.collect {
  font-family: 'e-Ukraine', sans-serif;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .8rem;
  color: var(--ink-faint);
  margin-top: 42px;
}

.ingredients {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(16px, 3.4vw, 32px);
  margin-top: 18px;
}

.token {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  transition: transform .35s cubic-bezier(.2, .8, .2, 1);
}

.token:hover {
  transform: translateY(-7px);
}

.disc {
  width: clamp(66px, 12vw, 86px);
  height: clamp(66px, 12vw, 86px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 36% 30%, #365331, #15231a 80%);
  border: 2px solid rgba(240, 179, 74, .42);
  box-shadow: inset 0 2px 12px rgba(0, 0, 0, .45), 0 6px 18px rgba(0, 0, 0, .35);
  transition: border-color .35s, box-shadow .35s;
}

.token:hover .disc {
  border-color: var(--gold-bright);
  box-shadow:
    inset 0 2px 12px rgba(0, 0, 0, .45),
    0 10px 26px rgba(0, 0, 0, .4),
    0 0 28px rgba(240, 179, 74, .35);
}

.disc .emo {
  font-size: clamp(1.7rem, 3.4vw, 2.2rem);
  line-height: 1;
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, .45));
}

.token .lbl {
  font-family: 'e-Ukraine', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .8rem;
  color: var(--ink-soft);
}

/* ====== Card showcase ====== */

.showcase {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.showcase img {
  width: 100%;
  max-width: 450px;
  height: auto;
  filter: drop-shadow(0 24px 34px rgba(0, 0, 0, .55));
  transition: transform .5s cubic-bezier(.2, .8, .2, 1), filter .5s;
}

.showcase img:hover {
  transform: scale(1.025) rotate(-.5deg);
  filter:
    drop-shadow(0 30px 44px rgba(0, 0, 0, .6))
    drop-shadow(0 0 30px rgba(240, 179, 74, .25));
}

/* ====== Tourists band ====== */

.tourists {
  text-align: center;
}

.scare {
  display: inline-block;
  margin-top: 22px;
  cursor: default;
  user-select: none;
  font-family: 'e-Ukraine Head', sans-serif;
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: var(--brick-light);
  text-shadow: 0 0 24px rgba(193, 75, 44, .5);
  transition: transform .25s;
}

.scare:hover  { transform: scale(1.08) rotate(-2deg); }
.scare:active { transform: scale(.96); }

.meeple3d {
  height: 340px;
  margin: 8px auto 0;
}

.meeple3d canvas {
  display: block;
  margin: auto;
  width: 100%;
}

.scare-hint {
  font-family: 'e-Ukraine', sans-serif;
  font-size: .8rem;
  color: var(--ink-faint);
  margin-top: 2px;
}

/* ====== Release + socials ====== */

.finale {
  text-align: center;
  padding-bottom: 30px;
}

.release {
  font-family: 'e-Ukraine Head', sans-serif;
  font-size: clamp(2.2rem, 7vw, 4.6rem);
  color: var(--gold-bright);
  line-height: 1;
  text-shadow: 0 0 40px rgba(240, 179, 74, .45);
}

.release small {
  display: block;
  font-family: 'e-Ukraine', sans-serif;
  font-size: clamp(.9rem, 2vw, 1.1rem);
  letter-spacing: .3em;
  color: var(--ink-soft);
  text-transform: uppercase;
  margin-bottom: 6px;
  text-shadow: none;
}

.follow {
  margin-top: 30px;
  font-family: 'e-Ukraine', sans-serif;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--ink-soft);
  font-size: .95rem;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.soc {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'e-Ukraine', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink);
  text-decoration: none;
  background: rgba(16, 29, 20, .5);
  border: 1.5px solid rgba(240, 179, 74, .4);
  padding: 12px 20px;
  border-radius: 40px;
  backdrop-filter: blur(4px);
  transition: transform .3s, border-color .3s, box-shadow .3s, background .3s;
}

.soc svg {
  width: 22px;
  height: 22px;
  color: var(--gold-bright);
}

.soc:hover {
  transform: translateY(-4px);
  border-color: var(--gold-bright);
  background: rgba(240, 179, 74, .12);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .4);
}

/* ====== Footer ====== */

.footer {
  text-align: center;
  padding: 46px 0 40px;
  position: relative;
  z-index: 5;
}

.footer .logo {
  height: 74px;
  opacity: .92;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .5));
}

.footer p {
  margin-top: 14px;
  color: var(--ink-faint);
  font-size: .82rem;
}

/* ====== Sky tint overlay (scroll-driven atmosphere) ====== */

#sky-tint {
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  mix-blend-mode: screen;
}

/* ====== Sun scroll-driven arc ====== */

.sun.scroll-driven {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  margin-top: 25px;
  z-index: 4;
  will-change: transform;
  animation: none; /* box-shadow handled by JS */
}

/* ====== Reveal animation ====== */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s ease, transform .9s cubic-bezier(.2, .8, .2, 1);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

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

@media (max-width: 1180px) {
  .hero-figure {
    height: 40vh;
    opacity: .95;
  }
}

@media (max-width: 860px) {
  .hero          { padding: 18px 0 72px; }
  .topbar        { justify-content: center; }
  .top-right     { justify-content: center; }
  .brand img     { height: 48px; }
  .badge         { font-size: .68rem; padding: 7px 12px; }
}

@media (max-width: 780px) {
  .hero-figure { display: none; }
}

@media (max-width: 480px) {
  .topbar    { justify-content: center; }
  .token .lbl { font-size: .72rem; }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}