/* ============================================================
   Audit Bites — design system
   Dark-first, OLED black, per-domain accents, spring motion.
   ============================================================ */

:root {
  /* Surfaces */
  --bg: #07070b;
  --bg-2: #0d0d14;
  --surface: rgba(255, 255, 255, 0.045);
  --surface-2: rgba(255, 255, 255, 0.075);
  --surface-3: rgba(255, 255, 255, 0.11);
  --hairline: rgba(255, 255, 255, 0.09);
  --hairline-2: rgba(255, 255, 255, 0.16);

  /* Text */
  --ink: #f7f7fb;
  --ink-2: rgba(247, 247, 251, 0.72);
  --ink-3: rgba(247, 247, 251, 0.46);
  --ink-4: rgba(247, 247, 251, 0.28);

  /* Domain accents */
  --isa-a: #7c5cff;
  --isa-b: #22d3ee;
  --ifrs-a: #00d68f;
  --ifrs-b: #00b8d9;
  --rj-a: #ff9500;
  --rj-b: #ff3d71;
  --eu-a: #4d7cff;
  --eu-b: #ffd23f;
  --law-a: #ff4d6d;
  --law-b: #c77dff;

  /* Semantic */
  --ok: #21d07a;
  --bad: #ff4d61;
  --warn: #ffb020;

  /* Active accent — rewritten per card */
  --a: var(--isa-a);
  --b: var(--isa-b);

  /* Metrics */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 34px;
  --shell-w: 480px;

  --ease-spring: cubic-bezier(0.22, 1.16, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  --mono: "SF Mono", ui-monospace, "JetBrains Mono", "Cascadia Mono", Menlo,
    Consolas, monospace;

  color-scheme: dark;
}

[data-domain="isa"]  { --a: var(--isa-a);  --b: var(--isa-b); }
[data-domain="ifrs"] { --a: var(--ifrs-a); --b: var(--ifrs-b); }
[data-domain="eu"]   { --a: var(--eu-a);   --b: var(--eu-b); }
[data-domain="rj"]   { --a: var(--rj-a);   --b: var(--rj-b); }
[data-domain="law"]  { --a: var(--law-a);  --b: var(--law-b); }

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html, body {
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overscroll-behavior: none;
}

button { font: inherit; color: inherit; border: 0; background: none; cursor: pointer; }
a { color: inherit; }

/* ---------- Ambient background ---------- */
#aura {
  position: fixed;
  inset: -20%;
  z-index: 0;
  pointer-events: none;
  filter: blur(90px) saturate(140%);
  opacity: 0.5;
  transition: opacity 0.8s ease;
}
#aura::before,
#aura::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  transition: background 1.1s var(--ease-out), transform 1.4s var(--ease-out);
}
#aura::before {
  width: 62vmax; height: 62vmax;
  top: -14%; left: -12%;
  background: radial-gradient(circle, var(--a) 0%, transparent 66%);
  opacity: 0.5;
  animation: drift1 26s ease-in-out infinite;
}
#aura::after {
  width: 54vmax; height: 54vmax;
  bottom: -18%; right: -14%;
  background: radial-gradient(circle, var(--b) 0%, transparent 66%);
  opacity: 0.4;
  animation: drift2 33s ease-in-out infinite;
}
@keyframes drift1 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(6vw, 8vh) scale(1.14); }
}
@keyframes drift2 {
  0%,100% { transform: translate(0,0) scale(1.06); }
  50%     { transform: translate(-7vw,-6vh) scale(0.9); }
}
#grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- App shell ---------- */
#app {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#shell {
  position: relative;
  width: 100%;
  max-width: var(--shell-w);
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
@media (min-width: 560px) and (min-height: 700px) {
  #shell {
    height: min(94vh, 940px);
    border-radius: var(--r-xl);
    border: 1px solid var(--hairline);
    background: rgba(8, 8, 13, 0.6);
    backdrop-filter: blur(30px) saturate(150%);
    -webkit-backdrop-filter: blur(30px) saturate(150%);
    box-shadow: 0 40px 120px -20px rgba(0, 0, 0, 0.9),
      0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  }
}

/* ---------- Top bar ---------- */
#topbar {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 40;
  padding: max(14px, env(safe-area-inset-top)) 14px 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(to bottom, rgba(4,4,8,0.82), transparent);
  pointer-events: none;
}
#topbar > * { pointer-events: auto; }

.brand {
  display: flex; align-items: center; gap: 8px;
  padding: 0; border-radius: 10px; cursor: pointer;
  transition: opacity 0.16s;
  font-weight: 800; font-size: 14px; letter-spacing: -0.034em;
  white-space: nowrap; min-width: 0;
}
.brand .mark {
  width: 26px; height: 26px; flex: none;
  display: block;
  filter: drop-shadow(0 0 12px color-mix(in srgb, var(--a) 55%, transparent));
  transition: filter 0.7s var(--ease-out);
}
.brand .mark svg { display: block; width: 100%; height: 100%; overflow: visible; }
.brand:hover { opacity: 0.82; }
.brand:active { transform: scale(0.97); }
.brand .txt { opacity: 0.94; letter-spacing: -0.036em; }
.brand .txt em {
  font-style: normal; font-weight: 800;
  background: linear-gradient(105deg, var(--a), var(--b));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.spacer { flex: 1; }

.streak {
  display: flex; align-items: center; gap: 4px; flex: none;
  padding: 5px 10px 5px 8px;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--hairline);
  font-size: 12.5px; font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.streak.hot { color: #ffce4a; border-color: rgba(255, 176, 32, 0.34); background: rgba(255, 176, 32, 0.1); }
.streak.risk {
  color: #ff9db0; border-color: rgba(255, 77, 97, 0.4); background: rgba(255, 77, 97, 0.12);
  animation: pulseRisk 2.1s ease-in-out infinite;
}
@keyframes pulseRisk {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 77, 97, 0.34); }
  50%      { box-shadow: 0 0 0 6px rgba(255, 77, 97, 0); }
}

.icon-btn {
  width: 32px; height: 32px; flex: none;
  border-radius: 10px;
  display: grid; place-items: center;
  background: var(--surface-2);
  border: 1px solid var(--hairline);
  transition: transform 0.16s var(--ease-spring), background 0.16s;
}
.icon-btn:hover { background: var(--surface-3); }
.icon-btn:active { transform: scale(0.9); }
.icon-btn svg { width: 17px; height: 17px; }

/* Progress hairline */
#progress {
  position: absolute; top: 0; left: 0; height: 2px; z-index: 45;
  background: linear-gradient(90deg, var(--a), var(--b));
  width: 0%;
  transition: width 0.45s var(--ease-out), background 0.7s var(--ease-out);
  box-shadow: 0 0 12px var(--a);
}

/* ---------- Feed ---------- */
#feed {
  flex: 1;
  overflow-y: scroll;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
  scrollbar-width: none;
  overscroll-behavior-y: contain;
}
#feed::-webkit-scrollbar { display: none; }

.slide {
  height: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  position: relative;
  display: flex;
  padding: 0;
}

/* ---------- Card ---------- */
.card {
  position: relative;
  flex: 1;
  margin: 0;
  display: flex;
  flex-direction: column;
  padding: calc(max(14px, env(safe-area-inset-top)) + 50px) 68px
           calc(max(16px, env(safe-area-inset-bottom)) + 78px) 20px;
  will-change: transform;
  touch-action: pan-y;
  overflow: hidden;
}
.card.dragging { transition: none; }
.card.settling { transition: transform 0.42s var(--ease-spring), opacity 0.42s ease; }

.card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(120% 60% at 50% 0%, color-mix(in srgb, var(--a) 16%, transparent), transparent 70%);
  pointer-events: none;
  opacity: 0.9;
}

/* Card head */
.chead {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  margin-bottom: 18px; position: relative; margin-right: -48px;
}
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.055em; text-transform: uppercase;
  border: 1px solid transparent;
}
.pill.domain {
  background: linear-gradient(135deg, var(--a), var(--b));
  color: #05050a;
  box-shadow: 0 4px 18px -6px var(--a);
}
.pill.std {
  background: var(--surface-2);
  border-color: var(--hairline);
  color: var(--ink-2);
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: 11.5px;
  font-weight: 700;
}
.pill.flag {
  background: color-mix(in srgb, var(--warn) 16%, transparent);
  border-color: color-mix(in srgb, var(--warn) 40%, transparent);
  color: #ffcf6b;
  font-size: 10px;
}
.readtime {
  margin-left: auto;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.02em;
  color: var(--ink-4); white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.lvl { display: flex; gap: 3px; align-items: center; }
.lvl i {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--ink-4); display: block;
}
.lvl i.on { background: var(--a); box-shadow: 0 0 8px var(--a); }

/* Card body scroll area */
.cbody {
  flex: 1;
  overflow-y: auto;
  scrollbar-width: none;
  display: flex;
  flex-direction: column;
  min-height: 0;
  position: relative;
}
.cbody::-webkit-scrollbar { display: none; }
/* auto margins centre short content and never clip tall content */
.cinner { margin: auto 0; width: 100%; }
.cbody.top .cinner { margin-top: 0; }

/* Typography inside cards */
.hook {
  font-size: clamp(29px, 7.4vw, 40px);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.042em;
  margin: 0 0 14px;
  background: linear-gradient(150deg, var(--ink) 30%, color-mix(in srgb, var(--a) 62%, var(--ink)));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-wrap: balance;
}
.sub {
  font-size: 16px; line-height: 1.42; color: var(--ink-2);
  margin: 0 0 4px; font-weight: 500; text-wrap: pretty;
}
.q {
  font-size: clamp(21px, 5.2vw, 26px);
  line-height: 1.22; font-weight: 750; letter-spacing: -0.028em;
  margin: 0 0 20px; text-wrap: balance;
}
.eyebrow {
  font-size: 11px; font-weight: 800; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--a); margin-bottom: 10px;
}

/* Big number */
.bignum {
  font-size: clamp(48px, 15vw, 86px);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 0.92;
  background: linear-gradient(135deg, var(--a), var(--b));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin: 0 0 10px;
  filter: drop-shadow(0 6px 30px color-mix(in srgb, var(--a) 40%, transparent));
}
.bignum.small { font-size: clamp(30px, 8.4vw, 46px); letter-spacing: -0.04em; }
.numcap {
  font-size: 15px; color: var(--ink-2); font-weight: 600;
  margin: 0 0 6px;
}

/* Myth / truth */
.mt { display: grid; gap: 12px; }
.mt-row {
  border-radius: var(--r-md);
  padding: 15px 16px;
  border: 1px solid var(--hairline);
  background: var(--surface);
  position: relative;
}
.mt-row .tag {
  font-size: 10.5px; font-weight: 900; letter-spacing: 0.13em;
  text-transform: uppercase; margin-bottom: 7px; display: block;
}
.mt-row.myth { border-color: rgba(255, 77, 97, 0.3); background: rgba(255, 77, 97, 0.07); }
.mt-row.myth .tag { color: #ff8493; }
.mt-row.myth .txt { text-decoration: line-through; text-decoration-color: rgba(255,77,97,0.5); text-decoration-thickness: 2px; color: var(--ink-2); }
.mt-row.truth { border-color: rgba(33, 208, 122, 0.32); background: rgba(33, 208, 122, 0.08); }
.mt-row.truth .tag { color: #4fe39c; }
.mt-row .txt { font-size: 18px; line-height: 1.32; font-weight: 700; letter-spacing: -0.022em; }

/* Steps */
.steps { display: grid; gap: 10px; counter-reset: s; }
.step {
  display: grid; grid-template-columns: 30px 1fr; gap: 13px; align-items: start;
  padding: 13px 15px 13px 13px;
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--hairline);
  animation: rise 0.5s var(--ease-out) backwards;
}
.step:nth-child(1) { animation-delay: 0.04s; }
.step:nth-child(2) { animation-delay: 0.09s; }
.step:nth-child(3) { animation-delay: 0.14s; }
.step:nth-child(4) { animation-delay: 0.19s; }
.step:nth-child(5) { animation-delay: 0.24s; }
@keyframes rise { from { opacity: 0; transform: translateY(12px); } }
.step .n {
  counter-increment: s;
  width: 30px; height: 30px; border-radius: 10px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--a), var(--b));
  color: #05050a; font-weight: 900; font-size: 13px;
  box-shadow: 0 3px 14px -4px var(--a);
}
.step .n::before { content: counter(s); }
.step .t { font-weight: 750; font-size: 15.5px; letter-spacing: -0.02em; line-height: 1.25; }
.step .d { font-size: 13.5px; color: var(--ink-3); line-height: 1.42; margin-top: 3px; }

/* Versus */
.vs { display: grid; gap: 11px; position: relative; }
.vs-col {
  border-radius: var(--r-md);
  padding: 15px 16px;
  background: var(--surface);
  border: 1px solid var(--hairline);
}
.vs-col:first-child { border-color: color-mix(in srgb, var(--a) 32%, transparent); background: color-mix(in srgb, var(--a) 7%, var(--surface)); }
.vs-col:last-child { border-color: color-mix(in srgb, var(--b) 32%, transparent); background: color-mix(in srgb, var(--b) 7%, var(--surface)); }
.vs-col h4 {
  margin: 0 0 10px; font-size: 15px; font-weight: 800; letter-spacing: -0.022em;
}
.vs-col ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 7px; }
.vs-col li {
  font-size: 13.5px; line-height: 1.42; color: var(--ink-2);
  padding-left: 15px; position: relative;
}
.vs-col li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--a);
}
.vs-col:last-child li::before { background: var(--b); }
.vs-mid {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--bg-2); border: 1px solid var(--hairline-2);
  font-size: 11px; font-weight: 900; letter-spacing: 0.02em;
  color: var(--ink-3); z-index: 2;
}

/* Quiz */
.opts { display: grid; gap: 9px; }
.opt {
  display: flex; align-items: flex-start; gap: 11px;
  text-align: left; width: 100%;
  padding: 14px 15px;
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--hairline);
  font-size: 14.5px; line-height: 1.38; font-weight: 550;
  transition: transform 0.16s var(--ease-spring), background 0.16s, border-color 0.2s;
}
.opt:hover:not(.locked) { background: var(--surface-2); border-color: var(--hairline-2); }
.opt:active:not(.locked) { transform: scale(0.985); }
.opt .key {
  flex: none; width: 22px; height: 22px; border-radius: 7px;
  display: grid; place-items: center; margin-top: -1px;
  background: var(--surface-2); border: 1px solid var(--hairline);
  font-size: 11px; font-weight: 800; color: var(--ink-3);
  transition: all 0.2s;
}
.opt.right { background: rgba(33, 208, 122, 0.12); border-color: rgba(33, 208, 122, 0.5); }
.opt.right .key { background: var(--ok); border-color: var(--ok); color: #04120a; }
.opt.wrong { background: rgba(255, 77, 97, 0.11); border-color: rgba(255, 77, 97, 0.46); }
.opt.wrong .key { background: var(--bad); border-color: var(--bad); color: #1a0409; }
.opt.dim { opacity: 0.4; }
.opt.locked { cursor: default; }

/* Flip */
.flip { perspective: 1400px; }
.flip-inner {
  position: relative;
  transition: transform 0.62s var(--ease-spring);
  transform-style: preserve-3d;
  min-height: 190px;
}
.flip.on .flip-inner { transform: rotateY(180deg); }
.flip-face {
  position: absolute; inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--r-lg);
  padding: 24px 22px;
  display: flex; flex-direction: column; justify-content: center;
  border: 1px solid var(--hairline);
  background: var(--surface);
}
.flip-face.front { background: linear-gradient(155deg, color-mix(in srgb, var(--a) 15%, var(--surface)), var(--surface)); border-color: color-mix(in srgb, var(--a) 30%, transparent); }
.flip-face.back { transform: rotateY(180deg); background: linear-gradient(155deg, color-mix(in srgb, var(--b) 15%, var(--surface)), var(--surface)); border-color: color-mix(in srgb, var(--b) 30%, transparent); }
.flip-face .ftext { font-size: 20px; font-weight: 750; letter-spacing: -0.026em; line-height: 1.26; text-wrap: balance; }
.flip-face.back .ftext { font-size: 17px; font-weight: 650; line-height: 1.38; }
.flip-hint {
  position: absolute; bottom: 14px; left: 22px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--ink-4);
}

/* Case */
.scene {
  border-radius: var(--r-md);
  padding: 16px;
  background: linear-gradient(160deg, color-mix(in srgb, var(--a) 10%, var(--surface)), var(--surface));
  border: 1px solid var(--hairline);
  border-left: 3px solid var(--a);
  font-size: 14.5px; line-height: 1.55; color: var(--ink-2);
  white-space: pre-line;
  margin-bottom: 18px;
}

/* Reveal / explanation */
.reveal {
  margin-top: 16px;
  border-radius: var(--r-md);
  border: 1px solid var(--hairline);
  background: var(--surface);
  overflow: hidden;
}
.reveal-head {
  display: flex; align-items: center; gap: 9px;
  padding: 13px 15px;
  font-size: 13px; font-weight: 750; letter-spacing: -0.012em;
  width: 100%; text-align: left;
}
.reveal-head .chev { margin-left: auto; transition: transform 0.32s var(--ease-spring); color: var(--ink-3); }
.reveal.on .reveal-head .chev { transform: rotate(180deg); }
.reveal-body {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 0.42s var(--ease-out);
}
.reveal.on .reveal-body { grid-template-rows: 1fr; }
.reveal-body > div { overflow: hidden; }
.reveal-body p {
  margin: 0; padding: 0 15px 15px;
  font-size: 14.5px; line-height: 1.62; color: var(--ink-2);
  white-space: pre-line;
}
.reveal.auto { border-color: color-mix(in srgb, var(--a) 26%, transparent); background: color-mix(in srgb, var(--a) 6%, var(--surface)); }

/* ELI5 switch */
.reveal-head { display: flex; align-items: stretch; gap: 0; }
.reveal-toggle {
  flex: 1; min-width: 0;
  display: flex; align-items: center; gap: 9px;
  padding: 13px 12px 13px 15px;
  font-size: 13px; font-weight: 750; letter-spacing: -0.012em; text-align: left;
}
.reveal-toggle .rl { flex: 1; min-width: 0; }
.eli5-chip {
  flex: none;
  display: flex; align-items: center; gap: 5px;
  margin: 8px 8px 8px 0; padding: 0 11px;
  border-radius: 9px;
  font-size: 10.5px; font-weight: 850; letter-spacing: 0.07em;
  color: var(--a);
  background: color-mix(in srgb, var(--a) 13%, transparent);
  border: 1px solid color-mix(in srgb, var(--a) 34%, transparent);
  transition: all 0.18s var(--ease-spring);
}
.eli5-chip:hover { background: color-mix(in srgb, var(--a) 22%, transparent); }
.eli5-chip:active { transform: scale(0.93); }
.reveal[data-mode="eli5"] .eli5-chip {
  background: linear-gradient(135deg, var(--a), var(--b));
  border-color: transparent; color: #05050a;
  box-shadow: 0 3px 14px -4px var(--a);
}

.modes {
  display: flex; gap: 4px; margin: 0 15px 12px;
  padding: 3px; border-radius: 11px;
  background: rgba(0, 0, 0, 0.32); border: 1px solid var(--hairline);
}
.mode {
  flex: 1; padding: 7px 8px; border-radius: 8px;
  font-size: 11.5px; font-weight: 750; color: var(--ink-3);
  transition: all 0.2s var(--ease-spring);
}
.reveal[data-mode="tech"] .mode[data-m="tech"],
.reveal[data-mode="eli5"] .mode[data-m="eli5"] {
  background: var(--surface-3); color: var(--ink);
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.reveal[data-mode="tech"] .eli5 { display: none; }
.reveal[data-mode="eli5"] .tech { display: none; }
.reveal[data-mode="eli5"] .reveal-body p.eli5 {
  font-size: 15.5px; line-height: 1.62; color: var(--ink);
}
.reveal[data-mode="eli5"] {
  border-color: color-mix(in srgb, var(--a) 30%, transparent);
  background: color-mix(in srgb, var(--a) 7%, var(--surface));
}

/* Combo flash */
.combo-flash {
  position: absolute; left: 50%; top: 40%; z-index: 55;
  transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  pointer-events: none;
  animation: comboIn 1.2s var(--ease-spring) forwards;
}
.combo-flash .n {
  font-size: 62px; font-weight: 900; letter-spacing: -0.06em; line-height: 1;
  background: linear-gradient(135deg, var(--ok), var(--b));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 4px 26px color-mix(in srgb, var(--ok) 55%, transparent));
}
.combo-flash .l {
  font-size: 11px; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--ok);
}
@keyframes comboIn {
  0%   { opacity: 0; transform: translate(-50%,-50%) scale(0.5); }
  25%  { opacity: 1; transform: translate(-50%,-50%) scale(1.1); }
  62%  { opacity: 1; transform: translate(-50%,-50%) scale(1); }
  100% { opacity: 0; transform: translate(-50%,-78%) scale(0.94); }
}

/* Tags */
.tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 14px; }
.tag-chip {
  font-size: 11px; font-weight: 650; color: var(--ink-3);
  padding: 3px 9px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--hairline);
}

/* ---------- Right rail ---------- */
.rail {
  position: absolute;
  right: 12px;
  bottom: calc(max(16px, env(safe-area-inset-bottom)) + 82px);
  z-index: 30;
  display: flex; flex-direction: column; gap: 11px; align-items: center;
}
.rail-btn {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  transition: transform 0.18s var(--ease-spring);
}
.rail-btn:active { transform: scale(0.86); }
.rail-btn .ic {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(16, 16, 24, 0.62);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--hairline);
  transition: all 0.22s var(--ease-spring);
}
.rail-btn .ic svg { width: 19px; height: 19px; }
.rail-btn .lb { font-size: 9.5px; font-weight: 700; color: var(--ink-3); letter-spacing: 0.02em; }
.rail-btn.on .ic {
  background: linear-gradient(135deg, var(--a), var(--b));
  border-color: transparent;
  color: #05050a;
  box-shadow: 0 6px 22px -6px var(--a);
  transform: scale(1.06);
}
.rail-btn.on .lb { color: var(--ink); }
.rail-btn.saved .ic { background: linear-gradient(135deg, #ffd76a, #ffb020); border-color: transparent; color: #1a1204; box-shadow: 0 6px 22px -6px #ffb020; }

/* Short viewports (small windows, landscape phones): compact the rail */
@media (max-height: 660px) {
  .rail { gap: 7px; bottom: calc(max(10px, env(safe-area-inset-bottom)) + 68px); right: 10px; }
  .rail-btn .ic { width: 34px; height: 34px; }
  .rail-btn .ic svg { width: 16px; height: 16px; }
  .rail-btn .lb { display: none; }
  .card {
    padding: calc(max(10px, env(safe-area-inset-top)) + 44px) 56px
             calc(max(10px, env(safe-area-inset-bottom)) + 66px) 16px;
  }
  .chead { margin-bottom: 12px; margin-right: -40px; }
  .hook { font-size: clamp(24px, 5.4vw, 32px); }
  .refbar { padding-top: 20px; }
  #keys { display: none !important; }
}

/* Swipe stamps */
.stamp {
  position: absolute; top: 34%; z-index: 25;
  padding: 10px 20px; border-radius: 14px;
  font-size: 22px; font-weight: 900; letter-spacing: 0.06em;
  border: 3px solid currentColor;
  opacity: 0; pointer-events: none;
  transition: opacity 0.1s linear;
}
.stamp.more { right: 68px; color: var(--ok); transform: rotate(11deg); }
.stamp.less { left: 24px; color: var(--bad); transform: rotate(-11deg); }
@media (max-height: 660px) { .stamp { top: 26%; font-size: 18px; padding: 7px 15px; } .stamp.more { right: 56px; } }

/* Heart burst */
.burst {
  position: absolute; z-index: 60; pointer-events: none;
  font-size: 78px; line-height: 1;
  transform: translate(-50%, -50%) scale(0);
  animation: burst 0.78s var(--ease-spring) forwards;
  filter: drop-shadow(0 4px 24px rgba(255, 60, 100, 0.7));
}
@keyframes burst {
  0%   { transform: translate(-50%,-50%) scale(0) rotate(-18deg); opacity: 0; }
  38%  { transform: translate(-50%,-50%) scale(1.18) rotate(6deg); opacity: 1; }
  70%  { transform: translate(-50%,-50%) scale(1) rotate(0deg); opacity: 1; }
  100% { transform: translate(-50%,-62%) scale(0.86) rotate(0deg); opacity: 0; }
}

/* ---------- Bottom reference bar ---------- */
.refbar {
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  z-index: 28;
  padding: 30px 16px max(14px, env(safe-area-inset-bottom));
  background: linear-gradient(to top, rgba(4,4,8,0.94) 42%, transparent);
  pointer-events: none;
}
.refbar > * { pointer-events: auto; }
.refchip {
  display: flex; align-items: center; gap: 10px;
  width: 100%;
  padding: 11px 14px;
  border-radius: 14px;
  background: rgba(16, 16, 24, 0.7);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border: 1px solid var(--hairline);
  text-align: left;
  transition: transform 0.16s var(--ease-spring), border-color 0.2s;
}
.refchip:hover { border-color: var(--hairline-2); }
.refchip:active { transform: scale(0.985); }
.refchip .bar {
  width: 3px; height: 24px; border-radius: 2px; flex: none;
  background: linear-gradient(var(--a), var(--b));
}
.refchip .meta { min-width: 0; flex: 1; }
.refchip .k {
  display: block;
  font-size: 9.5px; font-weight: 800; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--ink-4);
}
.refchip .v {
  display: block; max-width: 100%;
  font-size: 13px; font-weight: 700; letter-spacing: -0.015em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  color: var(--ink);
}
.refchip .go { color: var(--ink-3); flex: none; }

/* ---------- Sheets ---------- */
#scrim {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(2, 2, 5, 0.72);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
#scrim.on { opacity: 1; pointer-events: auto; }

.sheet {
  position: fixed;
  left: 50%; bottom: 0;
  z-index: 100;
  width: min(100%, var(--shell-w));
  max-height: 86vh;
  transform: translate(-50%, 104%);
  visibility: hidden;
  transition: transform 0.44s var(--ease-spring), visibility 0s linear 0.44s;
  background: #101018;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  border: 1px solid var(--hairline);
  border-bottom: 0;
  display: flex; flex-direction: column;
  overflow: hidden;
  box-shadow: 0 -20px 70px rgba(0,0,0,0.8);
}
.sheet.on { transform: translate(-50%, 0); visibility: visible; transition-delay: 0s, 0s; }
@media (min-width: 560px) and (min-height: 700px) {
  .sheet { bottom: max(0px, calc((100vh - min(94vh, 940px)) / 2)); border-radius: var(--r-xl); }
}
.sheet-grip {
  width: 38px; height: 4px; border-radius: 2px;
  background: var(--hairline-2);
  margin: 10px auto 4px; flex: none;
}
.sheet-head {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 18px 14px;
  border-bottom: 1px solid var(--hairline);
  flex: none;
}
.sheet-head h3 { margin: 0; font-size: 17px; font-weight: 800; letter-spacing: -0.028em; }
.sheet-body {
  overflow-y: auto; padding: 16px 18px calc(24px + env(safe-area-inset-bottom));
  scrollbar-width: thin;
}
.sheet-body::-webkit-scrollbar { width: 4px; }
.sheet-body::-webkit-scrollbar-thumb { background: var(--hairline-2); border-radius: 2px; }

/* Source sheet items */
.src {
  display: block; text-decoration: none;
  padding: 14px 15px; border-radius: var(--r-md);
  background: var(--surface); border: 1px solid var(--hairline);
  margin-bottom: 10px;
  transition: background 0.18s, border-color 0.18s, transform 0.16s var(--ease-spring);
}
.src:hover { background: var(--surface-2); border-color: var(--hairline-2); }
.src:active { transform: scale(0.99); }
.src .c { font-size: 14.5px; font-weight: 700; letter-spacing: -0.018em; margin-bottom: 5px; }
.src .u {
  font-size: 11.5px; color: var(--ink-3); font-family: var(--mono);
  word-break: break-all; display: flex; align-items: center; gap: 6px;
}
.src .u svg { flex: none; width: 12px; height: 12px; }
.src .acc {
  margin-top: 7px; font-size: 11px; font-weight: 650; line-height: 1.35;
  color: var(--ink-3);
  padding: 5px 8px; border-radius: 7px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--hairline);
}

.note {
  font-size: 12.5px; line-height: 1.55; color: var(--ink-3);
  padding: 12px 14px; border-radius: var(--r-sm);
  background: var(--surface); border: 1px solid var(--hairline);
  margin-top: 6px;
}

/* Filter chips */
.fgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-bottom: 8px; }
.fgrid.three { grid-template-columns: repeat(3, 1fr); }
.fchip.wide { width: 100%; }
.fchip.wide .ct { display: block; white-space: normal; line-height: 1.4; margin-top: 3px; }
.fchip {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 14px; border-radius: var(--r-md);
  background: var(--surface); border: 1px solid var(--hairline);
  text-align: left; transition: all 0.2s var(--ease-spring);
}
.fchip .dot { width: 10px; height: 10px; border-radius: 50%; flex: none; }
.fchip .nm { font-size: 13.5px; font-weight: 700; letter-spacing: -0.018em; line-height: 1.15; }
.fchip .ct { font-size: 11px; color: var(--ink-4); font-weight: 600; }
.fchip.on { background: var(--surface-3); border-color: var(--hairline-2); }
.fchip.off { opacity: 0.42; }

.sec-label {
  font-size: 10.5px; font-weight: 850; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--ink-4);
  margin: 20px 0 10px;
}
.sec-label:first-child { margin-top: 0; }

/* Stats */
.ring-wrap { display: flex; align-items: center; gap: 18px; margin-bottom: 6px; }
.ring { position: relative; width: 92px; height: 92px; flex: none; }
.ring svg { transform: rotate(-90deg); }
.ring .val {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-size: 22px; font-weight: 850; letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}
.kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; flex: 1; }
.kpi {
  padding: 11px 13px; border-radius: var(--r-sm);
  background: var(--surface); border: 1px solid var(--hairline);
}
.kpi .n { font-size: 20px; font-weight: 850; letter-spacing: -0.038em; font-variant-numeric: tabular-nums; }
.kpi .l { font-size: 10.5px; color: var(--ink-4); font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; }

.bar-row { margin-bottom: 13px; }
.bar-row .top { display: flex; justify-content: space-between; font-size: 12.5px; font-weight: 700; margin-bottom: 6px; }
.bar-row .top span:last-child { color: var(--ink-3); font-variant-numeric: tabular-nums; }
.bar-track { height: 7px; border-radius: 4px; background: var(--surface-2); overflow: hidden; }
.bar-fill { height: 100%; border-radius: 4px; transition: width 0.7s var(--ease-out); }

.affinity { display: flex; flex-wrap: wrap; gap: 6px; }
.aff {
  font-size: 11.5px; font-weight: 700; padding: 5px 10px; border-radius: 999px;
  border: 1px solid var(--hairline); background: var(--surface);
  display: flex; align-items: center; gap: 5px;
}
.aff.up { color: #6ee7a8; border-color: rgba(33,208,122,0.32); background: rgba(33,208,122,0.09); }
.aff.down { color: #ff8493; border-color: rgba(255,77,97,0.3); background: rgba(255,77,97,0.08); }

.btn {
  width: 100%; padding: 14px; border-radius: var(--r-md);
  background: var(--surface-2); border: 1px solid var(--hairline);
  font-size: 14px; font-weight: 750; letter-spacing: -0.015em;
  transition: all 0.18s var(--ease-spring);
}
.btn:hover { background: var(--surface-3); }
.btn:active { transform: scale(0.985); }
.btn.primary {
  background: linear-gradient(135deg, var(--a), var(--b));
  color: #05050a; border-color: transparent;
  box-shadow: 0 8px 28px -10px var(--a);
}
.btn.danger { color: #ff8493; border-color: rgba(255,77,97,0.28); background: rgba(255,77,97,0.07); }

.empty {
  text-align: center; padding: 44px 20px; color: var(--ink-4);
}
.empty .big { font-size: 40px; margin-bottom: 10px; }
.empty .t { font-size: 15px; font-weight: 700; color: var(--ink-2); margin-bottom: 5px; }
.empty .d { font-size: 13px; line-height: 1.5; }

/* Saved list */
.saved-item {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 13px 14px; border-radius: var(--r-md);
  background: var(--surface); border: 1px solid var(--hairline);
  margin-bottom: 9px; width: 100%; text-align: left;
  transition: all 0.18s;
}
.saved-item:hover { background: var(--surface-2); }
.saved-item .swatch { width: 3px; align-self: stretch; border-radius: 2px; flex: none; }
.saved-item .m { flex: 1; min-width: 0; }
.saved-item .s { font-size: 10.5px; font-weight: 800; letter-spacing: 0.06em; color: var(--ink-4); text-transform: uppercase; }
.saved-item .h { font-size: 14px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.28; margin-top: 2px; }
.saved-item .x { color: var(--ink-4); flex: none; padding: 2px; }
.saved-item .x:hover { color: var(--bad); }

/* ---------- Toast ---------- */
#toast {
  position: fixed; z-index: 200;
  left: 50%; bottom: 96px;
  transform: translate(-50%, 20px);
  padding: 11px 18px; border-radius: 999px;
  background: rgba(20, 20, 30, 0.94);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--hairline-2);
  font-size: 13.5px; font-weight: 700; letter-spacing: -0.015em;
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity 0.26s ease, transform 0.36s var(--ease-spring);
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
}
#toast.on { opacity: 1; transform: translate(-50%, 0); }

/* ---------- Onboarding ---------- */
#onboard { --a: var(--isa-a); --b: var(--isa-b);
  position: fixed; inset: 0; z-index: 300;
  background: rgba(4, 4, 9, 0.93);
  backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease;
}
#onboard.on { opacity: 1; pointer-events: auto; }
.ob {
  max-width: 380px; width: 100%;
  animation: obin 0.6s var(--ease-spring);
}
@keyframes obin { from { opacity: 0; transform: translateY(22px) scale(0.97); } }
.ob h1 {
  font-size: 34px; font-weight: 850; letter-spacing: -0.05em; line-height: 1.02;
  margin: 0 0 8px;
  background: linear-gradient(135deg, #fff 20%, var(--isa-a) 62%, var(--isa-b));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.ob .lede { font-size: 15px; color: var(--ink-2); line-height: 1.5; margin: 0 0 24px; }
.ob-row {
  display: flex; align-items: center; gap: 13px;
  padding: 12px 0;
  border-top: 1px solid var(--hairline);
}
.ob-row .g {
  width: 38px; height: 38px; border-radius: 12px; flex: none;
  display: grid; place-items: center; font-size: 17px;
  background: var(--surface-2); border: 1px solid var(--hairline);
}
.ob-row > span:last-child { min-width: 0; }
.ob-row .t { display: block; font-size: 14px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.3; }
.ob-row .d { display: block; font-size: 12.5px; color: var(--ink-3); line-height: 1.4; margin-top: 2px; }
.ob .btn { margin-top: 22px; }
.ob .fine { font-size: 11.5px; color: var(--ink-4); line-height: 1.5; margin-top: 14px; text-align: center; }

/* First-run coaching — sits on the first card instead of blocking the feed */
.coach {
  margin: 0 0 16px;
  border-radius: var(--r-md);
  border: 1px solid color-mix(in srgb, var(--a) 32%, transparent);
  background: color-mix(in srgb, var(--a) 9%, var(--surface));
  padding: 13px 14px;
  animation: rise 0.5s var(--ease-out) backwards;
  animation-delay: 0.15s;
}
.coach .ch {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 850; letter-spacing: 0.11em;
  text-transform: uppercase; color: var(--a); margin-bottom: 9px;
}
.coach .ch button {
  margin-left: auto; color: var(--ink-4); padding: 2px; display: grid; place-items: center;
}
.coach .ch button:hover { color: var(--ink-2); }
.coach .ch svg { width: 14px; height: 14px; }
.coach ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 6px; }
.coach li {
  display: flex; gap: 9px; align-items: baseline;
  font-size: 13px; line-height: 1.4; color: var(--ink-2);
}
.coach li b { color: var(--ink); font-weight: 750; }
.coach li .g {
  flex: none; width: 22px; text-align: center; font-size: 13px; color: var(--a); font-weight: 800;
}

/* About */
.about-hero {
  display: flex; align-items: center; gap: 14px;
  padding-bottom: 16px; margin-bottom: 16px;
  border-bottom: 1px solid var(--hairline);
}
.about-mark { width: 52px; height: 52px; flex: none; }
.about-mark svg { display: block; width: 100%; height: 100%; overflow: visible;
  filter: drop-shadow(0 0 16px color-mix(in srgb, var(--a) 50%, transparent)); }
.about-name { font-size: 19px; font-weight: 850; letter-spacing: -0.04em; }
.about-tag { font-size: 13px; color: var(--ink-3); line-height: 1.4; margin-top: 3px; text-wrap: pretty; }

.maker {
  padding: 14px 15px; border-radius: var(--r-md);
  background: color-mix(in srgb, var(--a) 8%, var(--surface));
  border: 1px solid color-mix(in srgb, var(--a) 26%, transparent);
}
.maker-name { font-size: 15.5px; font-weight: 800; letter-spacing: -0.024em; }
.maker-links {
  display: flex; align-items: center; gap: 9px; flex-wrap: wrap;
  margin-top: 7px; font-size: 13px; font-weight: 650;
}
.maker-links a { color: var(--a); text-decoration: none; }
.maker-links a:hover { text-decoration: underline; }
.maker-links .dot { color: var(--ink-4); }

.src.sib .u { font-family: var(--font); font-size: 12.5px; font-weight: 600; word-break: normal; }

/* Explore */
.ex-search {
  width: 100%; padding: 12px 14px; margin-bottom: 14px;
  border-radius: var(--r-md);
  background: var(--surface); border: 1px solid var(--hairline);
  color: var(--ink); font: inherit; font-size: 14px;
}
.ex-search::placeholder { color: var(--ink-4); }
.ex-search:focus { border-color: color-mix(in srgb, var(--a) 45%, transparent); }
.ex-row {
  display: flex; gap: 11px; align-items: flex-start;
  width: 100%; text-align: left;
  padding: 12px 13px; border-radius: var(--r-md);
  background: var(--surface); border: 1px solid var(--hairline);
  margin-bottom: 8px;
  transition: background 0.16s, border-color 0.16s, transform 0.14s var(--ease-spring);
}
.ex-row:hover { background: var(--surface-2); border-color: var(--hairline-2); }
.ex-row:active { transform: scale(0.99); }
.ex-row .sw { width: 3px; align-self: stretch; border-radius: 2px; flex: none; }
.ex-row .m { flex: 1; min-width: 0; }
.ex-row .s {
  font-size: 10px; font-weight: 850; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--ink-4);
  display: flex; gap: 7px; align-items: center;
}
.ex-row .h {
  font-size: 13.5px; font-weight: 700; letter-spacing: -0.018em;
  line-height: 1.3; margin-top: 3px;
}
.ex-row .tick { color: var(--ok); font-size: 11px; }
.ex-count { font-size: 12px; color: var(--ink-4); margin: -4px 0 12px; font-weight: 600; }

/* Keyboard hints (desktop only) */
#keys {
  position: fixed; left: 24px; bottom: 24px; z-index: 20;
  display: none; flex-direction: column; gap: 7px;
  font-size: 11px; color: var(--ink-4); font-weight: 600;
}
#keys span { display: flex; align-items: center; }
@media (min-width: 1000px) { #keys { display: flex; } }
#keys kbd {
  font-family: var(--font); font-size: 10px; font-weight: 800;
  padding: 2px 6px; border-radius: 5px; margin-right: 4px;
  background: var(--surface-2); border: 1px solid var(--hairline);
  color: var(--ink-3);
}

/* End card */
.endcard { text-align: center; padding: 20px; }
.endcard .ic { font-size: 52px; margin-bottom: 14px; }
.endcard h2 { font-size: 26px; font-weight: 850; letter-spacing: -0.04em; margin: 0 0 8px; }
.endcard p { font-size: 14.5px; color: var(--ink-2); line-height: 1.55; margin: 0 0 22px; }

/* ---------- Daily goal celebration ---------- */
#goal {
  position: fixed; inset: 0; z-index: 320;
  background: rgba(4, 4, 9, 0.9);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease;
}
#goal.on { opacity: 1; pointer-events: auto; }
.goal-card {
  max-width: 380px; width: 100%; text-align: center;
  position: relative; z-index: 2;
  animation: goalIn 0.7s var(--ease-spring);
}
@keyframes goalIn { from { opacity: 0; transform: translateY(26px) scale(0.94); } }
.goal-ring {
  width: 96px; height: 96px; margin: 0 auto 18px;
  border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--a), var(--b));
  box-shadow: 0 14px 50px -10px var(--a);
  font-size: 38px; font-weight: 900; color: #05050a;
  letter-spacing: -0.05em; font-variant-numeric: tabular-nums;
}
.goal-card h2 {
  font-size: 30px; font-weight: 850; letter-spacing: -0.045em; margin: 0 0 8px;
  text-wrap: balance;
}
.goal-card .lede { font-size: 14.5px; color: var(--ink-2); line-height: 1.5; margin: 0 0 20px; }
.goal-card .kpis { margin-bottom: 20px; }
.goal-card .kpi { text-align: left; }
#goal-confetti { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
#goal-confetti i {
  position: absolute; top: -6%;
  width: 7px; height: 12px; border-radius: 2px;
  animation: fall linear forwards;
}
@keyframes fall {
  to { transform: translateY(112vh) rotate(760deg); opacity: 0.15; }
}

/* ---------- Focus states ---------- */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--b);
  outline-offset: 2px;
  border-radius: 8px;
}
.opt:focus-visible, .fchip:focus-visible, .src:focus-visible,
.btn:focus-visible, .refchip:focus-visible { outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
