/* Glow — prototype styles. Zero dependencies, system fonts only (works offline). */

:root {
  --bg:        #0B0A10;
  --bg-2:      #14111C;
  --surface:   rgba(255,255,255,.055);
  --surface-2: rgba(255,255,255,.09);
  --line:      rgba(255,255,255,.10);
  --text:      #F6F3F8;
  --muted:     #9C93AA;
  --muted-2:   #6E6780;

  --accent:    #FFB37A;
  --accent-2:  #FF7EB3;
  --accent-3:  #A78BFA;

  --good:      #6FE3A8;
  --warn:      #FFC96B;
  --bad:       #FF7A85;

  --d-hydration:  #6FD6FF;
  --d-texture:    #C6A6FF;
  --d-redness:    #FF8B9A;
  --d-blemish:    #FFC46B;
  --d-darkCircle: #8FA0FF;

  --r:   18px;
  --r-s: 12px;
  --ease: cubic-bezier(.22,.9,.28,1);

  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto,
          "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: #07060A;
  -webkit-font-smoothing: antialiased;
  overscroll-behavior: none;
}

/* ---------- stage / device frame (desktop only) ---------- */
.stage { min-height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; padding: 20px; }
.stage-note { color: #4A4557; font-size: 12px; margin: 0; letter-spacing: .02em; }
.device {
  width: 390px; height: 844px; position: relative;
  border-radius: 44px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.11);
  box-shadow: 0 40px 120px rgba(0,0,0,.75), 0 0 0 10px #0D0C11;
}
@media (max-width: 460px), (max-height: 900px) {
  .stage { padding: 0; gap: 0; min-height: 100dvh; }
  .stage-note { display: none; }
  .device { width: 100vw; height: 100dvh; border-radius: 0; border: none; box-shadow: none; }
}

.app {
  position: absolute; inset: 0; overflow: hidden;
  background:
    radial-gradient(120% 70% at 78% -12%, rgba(255,126,179,.24), transparent 62%),
    radial-gradient(110% 60% at 12% -6%, rgba(255,179,122,.20), transparent 58%),
    radial-gradient(140% 90% at 50% 118%, rgba(167,139,250,.14), transparent 64%),
    linear-gradient(180deg, var(--bg-2), var(--bg) 46%);
  display: flex; flex-direction: column;
}

/* ---------- layout primitives ---------- */
.screen { position: absolute; inset: 0; display: flex; flex-direction: column; animation: screen-in .34s var(--ease) both; }
@keyframes screen-in { from { opacity: 0; transform: translateY(10px) scale(.995); } to { opacity: 1; transform: none; } }

.scroll { flex: 1; overflow-y: auto; -webkit-overflow-scrolling: touch; padding: 0 20px calc(112px + env(safe-area-inset-bottom)); }
.scroll.no-tabs { padding-bottom: calc(28px + env(safe-area-inset-bottom)); }
.pad-top { padding-top: calc(18px + env(safe-area-inset-top)); }

.row { display: flex; align-items: center; gap: 10px; }
.between { justify-content: space-between; }
.grow { flex: 1; }
.center { align-items: center; justify-content: center; }
.col { display: flex; flex-direction: column; }
.stack > * + * { margin-top: 12px; }

/* ---------- type ---------- */
h1, h2, h3, p { margin: 0; }
.h1 { font-size: 30px; line-height: 1.14; font-weight: 700; letter-spacing: -.024em; }
.h2 { font-size: 21px; line-height: 1.22; font-weight: 660; letter-spacing: -.018em; }
.h3 { font-size: 16px; font-weight: 620; letter-spacing: -.01em; }
.body { font-size: 15px; line-height: 1.5; color: var(--muted); }
.small { font-size: 13px; line-height: 1.45; color: var(--muted); }
.tiny { font-size: 11.5px; line-height: 1.4; color: var(--muted-2); }
.eyebrow { font-size: 11.5px; font-weight: 680; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); }
.grad { background: linear-gradient(96deg, var(--accent), var(--accent-2) 58%, var(--accent-3)); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- controls ---------- */
.btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; min-height: 54px; padding: 0 20px; border: none; cursor: pointer;
  border-radius: 16px; font-family: var(--font); font-size: 16.5px; font-weight: 640; letter-spacing: -.01em;
  color: #1A1020; background: linear-gradient(96deg, var(--accent), var(--accent-2));
  box-shadow: 0 10px 30px rgba(255,126,179,.24);
  transition: transform .14s var(--ease), opacity .14s;
}
.btn:active { transform: scale(.978); }
.btn[disabled] { opacity: .34; pointer-events: none; box-shadow: none; }
.btn.ghost { background: var(--surface); color: var(--text); border: 1px solid var(--line); box-shadow: none; }
.btn.quiet { background: none; color: var(--muted); box-shadow: none; min-height: 44px; font-size: 14.5px; font-weight: 540; }
.btn.sm { min-height: 42px; font-size: 14px; border-radius: 12px; }

.footer-cta {
  padding: 14px 20px calc(18px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, transparent, rgba(11,10,16,.9) 34%);
}

.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 16px; }
.card.tight { padding: 13px 14px; }

/* option chips */
.opts { display: grid; gap: 10px; }
.opts.two { grid-template-columns: 1fr 1fr; }
.opt {
  display: flex; align-items: center; gap: 12px; width: 100%; text-align: left;
  padding: 15px 16px; border-radius: 15px; cursor: pointer;
  background: var(--surface); border: 1px solid var(--line); color: var(--text);
  font-family: var(--font); font-size: 15.5px; font-weight: 560; letter-spacing: -.008em;
  transition: all .16s var(--ease);
}
.opt:active { transform: scale(.985); }
.opt .em { font-size: 19px; line-height: 1; }
.opt[aria-pressed="true"] {
  background: linear-gradient(96deg, rgba(255,179,122,.20), rgba(255,126,179,.16));
  border-color: rgba(255,150,160,.55);
  box-shadow: 0 0 0 1px rgba(255,150,160,.22), 0 8px 24px rgba(255,126,179,.14);
}
.opt .tick { margin-left: auto; opacity: 0; font-size: 14px; color: var(--accent-2); transition: opacity .16s; }
.opt[aria-pressed="true"] .tick { opacity: 1; }

/* progress dots for onboarding */
.steps { display: flex; gap: 5px; padding: 0 20px; }
.steps i { height: 3px; flex: 1; border-radius: 2px; background: rgba(255,255,255,.12); overflow: hidden; }
.steps i.on { background: linear-gradient(90deg, var(--accent), var(--accent-2)); }

.topbar { display: flex; align-items: center; gap: 12px; padding: calc(14px + env(safe-area-inset-top)) 20px 12px; }
.iconbtn {
  width: 38px; height: 38px; flex: 0 0 38px; border-radius: 12px; cursor: pointer;
  background: var(--surface); border: 1px solid var(--line); color: var(--text);
  display: flex; align-items: center; justify-content: center; font-size: 16px;
}

/* ---------- tab bar ---------- */
.tabs {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 20;
  display: grid; grid-template-columns: 1fr 88px 1fr; align-items: end;
  padding: 10px 18px calc(12px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, transparent, rgba(9,8,13,.88) 42%);
  backdrop-filter: blur(14px);
}
.tab {
  background: none; border: none; cursor: pointer; color: var(--muted-2);
  font-family: var(--font); font-size: 10.5px; font-weight: 620; letter-spacing: .03em;
  display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 8px 0;
}
.tab .ic { font-size: 18px; line-height: 1; filter: grayscale(1) opacity(.65); }
.tab[aria-selected="true"] { color: var(--text); }
.tab[aria-selected="true"] .ic { filter: none; }
.scanbtn {
  width: 66px; height: 66px; margin: 0 auto -6px; border-radius: 50%; border: none; cursor: pointer;
  background: linear-gradient(140deg, var(--accent), var(--accent-2));
  box-shadow: 0 10px 28px rgba(255,126,179,.42), 0 0 0 6px rgba(11,10,16,.9);
  display: flex; align-items: center; justify-content: center; font-size: 25px;
  transition: transform .16s var(--ease);
}
.scanbtn:active { transform: scale(.94); }

/* ---------- score ring ---------- */
.ring-wrap { position: relative; width: 208px; height: 208px; margin: 0 auto; }
.ring-wrap.sm { width: 132px; height: 132px; }
.ring-wrap svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.ring-track { fill: none; stroke: rgba(255,255,255,.075); }
.ring-val   { fill: none; stroke-linecap: round; transition: stroke-dashoffset 1.15s var(--ease); }
.ring-mid {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1px;
}
.ring-num { font-size: 56px; font-weight: 720; letter-spacing: -.045em; font-variant-numeric: tabular-nums; line-height: 1; }
.ring-wrap.sm .ring-num { font-size: 34px; }
.ring-cap { font-size: 11px; font-weight: 640; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-2); }
.ring-glow { position: absolute; inset: 12%; border-radius: 50%; filter: blur(30px); opacity: .38;
  background: conic-gradient(from 200deg, var(--accent), var(--accent-2), var(--accent-3), var(--accent)); z-index: -1; }

/* ---------- delta pill ---------- */
.pill { display: inline-flex; align-items: center; gap: 5px; padding: 5px 11px; border-radius: 999px;
  font-size: 12.5px; font-weight: 640; background: var(--surface-2); color: var(--muted); border: 1px solid var(--line); }
.pill.up { color: var(--good); background: rgba(111,227,168,.11); border-color: rgba(111,227,168,.24); }
.pill.down { color: var(--bad); background: rgba(255,122,133,.10); border-color: rgba(255,122,133,.22); }

/* ---------- dimension bars ---------- */
.dim { padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.055); animation: dim-in .5s var(--ease) both; }
.dim:last-child { border-bottom: none; }
@keyframes dim-in { from { opacity: 0; transform: translateX(-8px); } to { opacity: 1; transform: none; } }
.dim-head { display: flex; align-items: baseline; gap: 8px; margin-bottom: 8px; }
.dim-name { font-size: 14.5px; font-weight: 600; }
.dim-note { font-size: 12px; color: var(--muted-2); margin-left: auto; }
.dim-val { font-size: 14.5px; font-weight: 700; font-variant-numeric: tabular-nums; }
.bar { height: 7px; border-radius: 4px; background: rgba(255,255,255,.07); overflow: hidden; }
.bar > i { display: block; height: 100%; border-radius: 4px; width: 0; transition: width .9s var(--ease); }
.dim-delta { font-size: 11.5px; font-weight: 640; margin-left: 6px; }
.dim-delta.up { color: var(--good); } .dim-delta.down { color: var(--bad); } .dim-delta.flat { color: var(--muted-2); }

/* ---------- streak ---------- */
.streak {
  display: flex; align-items: center; gap: 12px; padding: 13px 15px; border-radius: 16px;
  background: linear-gradient(96deg, rgba(255,179,122,.16), rgba(255,126,179,.10));
  border: 1px solid rgba(255,179,122,.26);
}
.flame { font-size: 26px; line-height: 1; animation: flicker 2.6s ease-in-out infinite; }
@keyframes flicker { 0%,100% { transform: scale(1) rotate(-2deg); } 50% { transform: scale(1.09) rotate(2deg); } }
.week { display: flex; gap: 6px; margin-left: auto; }
.week b { width: 22px; height: 22px; border-radius: 7px; display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; background: rgba(255,255,255,.07); color: var(--muted-2); }
.week b.on { background: linear-gradient(140deg, var(--accent), var(--accent-2)); color: #1A1020; }
.week b.today { box-shadow: 0 0 0 2px rgba(255,255,255,.30); }

/* ---------- actions ---------- */
.act { display: flex; align-items: flex-start; gap: 12px; padding: 13px 14px; border-radius: 14px; cursor: pointer;
  background: var(--surface); border: 1px solid var(--line); width: 100%; text-align: left;
  color: var(--text); font-family: var(--font); font-size: 14.5px; line-height: 1.4; font-weight: 540;
  transition: all .16s var(--ease); }
.act:active { transform: scale(.99); }
.act .box { width: 21px; height: 21px; flex: 0 0 21px; border-radius: 7px; border: 1.6px solid rgba(255,255,255,.24);
  display: flex; align-items: center; justify-content: center; font-size: 12px; color: #1A1020; margin-top: 1px; }
.act[aria-pressed="true"] { background: rgba(111,227,168,.08); border-color: rgba(111,227,168,.26); }
.act[aria-pressed="true"] .box { background: var(--good); border-color: var(--good); }
.act[aria-pressed="true"] .txt { color: var(--muted); text-decoration: line-through; text-decoration-color: rgba(255,255,255,.28); }

/* ---------- camera ---------- */
.cam { position: absolute; inset: 0; background: #000; overflow: hidden; }
.cam video, .cam canvas.preview, .cam img.preview { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cam video { transform: scaleX(-1); }
.cam-veil { position: absolute; inset: 0;
  background: radial-gradient(46% 30% at 50% 40%, transparent 58%, rgba(6,5,9,.80) 100%); pointer-events: none; }
.face-guide { position: absolute; left: 50%; top: 40%; transform: translate(-50%,-50%);
  width: 62%; aspect-ratio: 3/4; border-radius: 50% 50% 46% 46%;
  border: 2px dashed rgba(255,255,255,.42); pointer-events: none;
  animation: guide-pulse 2.6s ease-in-out infinite; }
@keyframes guide-pulse { 0%,100% { opacity: .5; transform: translate(-50%,-50%) scale(1); }
                         50%     { opacity: .95; transform: translate(-50%,-50%) scale(1.02); } }
.cam-hint { position: absolute; left: 0; right: 0; top: calc(74% + 4px); text-align: center; padding: 0 34px;
  font-size: 13.5px; color: rgba(255,255,255,.78); text-shadow: 0 1px 12px rgba(0,0,0,.7); }
.shutter-wrap { position: absolute; left: 0; right: 0; bottom: calc(34px + env(safe-area-inset-bottom));
  display: flex; align-items: center; justify-content: center; gap: 26px; }
.shutter { width: 76px; height: 76px; border-radius: 50%; cursor: pointer;
  border: 4px solid rgba(255,255,255,.92); background: rgba(255,255,255,.20);
  box-shadow: 0 0 0 2px rgba(0,0,0,.28); transition: transform .12s var(--ease); }
.shutter:active { transform: scale(.9); }
.flash { position: absolute; inset: 0; background: #fff; opacity: 0; pointer-events: none; }
.flash.go { animation: flash .42s ease-out; }
@keyframes flash { 0% { opacity: .95; } 100% { opacity: 0; } }

/* ---------- analyzing ---------- */
.analyzing { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 22px; background: rgba(8,7,12,.80); backdrop-filter: blur(18px); z-index: 5; }
.scanline { position: absolute; left: 8%; right: 8%; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent-2), transparent);
  box-shadow: 0 0 22px rgba(255,150,170,.85); animation: sweep 1.5s var(--ease) infinite; }
@keyframes sweep { 0% { top: 22%; opacity: 0; } 12% { opacity: 1; } 88% { opacity: 1; } 100% { top: 72%; opacity: 0; } }
.spinner { width: 42px; height: 42px; border-radius: 50%;
  border: 3px solid rgba(255,255,255,.13); border-top-color: var(--accent-2); animation: spin .82s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.steps-log { text-align: center; min-height: 22px; font-size: 14px; color: var(--muted); }

/* ---------- paywall ---------- */
.plan { display: flex; align-items: center; gap: 13px; width: 100%; text-align: left; cursor: pointer;
  padding: 15px 16px; border-radius: 16px; background: var(--surface); border: 1.5px solid var(--line);
  color: var(--text); font-family: var(--font); transition: all .16s var(--ease); position: relative; }
.plan[aria-pressed="true"] { border-color: rgba(255,150,160,.7); background: linear-gradient(96deg, rgba(255,179,122,.16), rgba(255,126,179,.12)); }
.plan .radio { width: 21px; height: 21px; flex: 0 0 21px; border-radius: 50%; border: 1.8px solid rgba(255,255,255,.28); }
.plan[aria-pressed="true"] .radio { border-color: var(--accent-2); box-shadow: inset 0 0 0 5px var(--accent-2); }
/* pricing.md R1, in numbers: main 20px, sub 12px = exactly 60% (was 12/18 = 67%),
   badge 9.5px = 47.5% of main and, by rule, never contains a digit. */
.plan .price-main { font-size: 20px; font-weight: 720; letter-spacing: -.02em; }    /* real charge = largest text on the page */
.plan .price-sub  { font-size: 12px; color: var(--muted-2); margin-top: 2px; font-weight: 400; }  /* = 60% of main, never bold */
.badge { position: absolute; right: 14px; top: -9px; font-size: 9.5px; font-weight: 720; letter-spacing: .04em;
  padding: 3px 9px; border-radius: 999px; background: linear-gradient(96deg, var(--accent), var(--accent-2)); color: #1A1020; }
.terms { font-size: 12.5px; line-height: 1.5; color: var(--muted); text-align: center; }
.timeline { display: flex; gap: 0; margin: 4px 0 2px; }
.tl { flex: 1; position: relative; padding-top: 22px; text-align: center; }
.tl::before { content: ''; position: absolute; top: 6px; left: 0; right: 0; height: 3px; background: rgba(255,255,255,.10); }
.tl:first-child::before { left: 50%; border-radius: 3px 0 0 3px; }
.tl:last-child::before  { right: 50%; border-radius: 0 3px 3px 0; }
.tl.on::before { background: linear-gradient(90deg, var(--accent), var(--accent-2)); }
.tl i { position: absolute; top: 1px; left: 50%; transform: translateX(-50%); width: 13px; height: 13px; border-radius: 50%;
  background: #2A2434; border: 2.5px solid #0F0D15; }
.tl.on i { background: linear-gradient(140deg, var(--accent), var(--accent-2)); }
.tl b { display: block; font-size: 11.5px; font-weight: 660; }
.tl span { display: block; font-size: 10.5px; color: var(--muted-2); margin-top: 1px; }

/* locked / blurred pro content */
.locked { position: relative; }
.locked > .inner { filter: blur(4.5px); opacity: .72; pointer-events: none; user-select: none; }
.lock-cta { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 9px; cursor: pointer; }
.lock-chip { display: inline-flex; align-items: center; gap: 7px; padding: 9px 15px; border-radius: 999px;
  background: rgba(20,17,28,.86); border: 1px solid rgba(255,255,255,.16); font-size: 13px; font-weight: 620;
  backdrop-filter: blur(6px); }

/* ---------- sheet ---------- */
.sheet-bg { position: absolute; inset: 0; background: rgba(5,4,8,.62); backdrop-filter: blur(4px); z-index: 40;
  animation: fade .22s ease both; display: flex; align-items: flex-end; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.sheet { width: 100%; background: #14111C; border-radius: 24px 24px 0 0; border-top: 1px solid rgba(255,255,255,.12);
  padding: 20px 20px calc(20px + env(safe-area-inset-bottom)); animation: sheet-in .3s var(--ease) both; }
@keyframes sheet-in { from { transform: translateY(100%); } to { transform: none; } }
.grabber { width: 38px; height: 4px; border-radius: 2px; background: rgba(255,255,255,.2); margin: -6px auto 14px; }

/* ---------- misc ---------- */
.disclaimer { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 9px 12px; margin-top: 14px;
  border-radius: 11px; background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.07);
  font-size: 11px; color: var(--muted-2); text-align: center; line-height: 1.4; }
.referral { display: flex; gap: 11px; padding: 13px 14px; border-radius: 14px;
  background: rgba(143,160,255,.09); border: 1px solid rgba(143,160,255,.26); font-size: 13px; line-height: 1.45; }

.slider { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 3px; outline: none;
  background: linear-gradient(90deg, var(--accent), var(--accent-2)); }
.slider::-webkit-slider-thumb { -webkit-appearance: none; width: 28px; height: 28px; border-radius: 50%;
  background: #fff; box-shadow: 0 3px 14px rgba(0,0,0,.5); cursor: pointer; }
.slider::-moz-range-thumb { width: 28px; height: 28px; border: none; border-radius: 50%; background: #fff; cursor: pointer; }

.ba { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; border-radius: 15px; overflow: hidden; }
.ba figure { margin: 0; position: relative; aspect-ratio: 3/4; background: #191521; }
.ba img, .ba canvas { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba figcaption { position: absolute; left: 8px; bottom: 8px; font-size: 10.5px; font-weight: 700; letter-spacing: .08em;
  padding: 4px 9px; border-radius: 999px; background: rgba(8,7,12,.72); backdrop-filter: blur(4px); text-transform: uppercase; }
.ba .ph { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; text-align: center;
  padding: 18px; font-size: 12px; color: var(--muted-2); line-height: 1.45;
  background: radial-gradient(90% 70% at 50% 30%, rgba(255,179,122,.10), transparent 70%); }

.badges { display: grid; grid-template-columns: repeat(4, 1fr); gap: 9px; }
.bdg { aspect-ratio: 1; border-radius: 14px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px; background: var(--surface); border: 1px solid var(--line); font-size: 8.5px; font-weight: 640; color: var(--muted-2);
  text-align: center; padding: 4px; line-height: 1.15; }
.bdg .e { font-size: 20px; filter: grayscale(1); opacity: .38; }
.bdg.on { background: linear-gradient(150deg, rgba(255,179,122,.17), rgba(255,126,179,.11)); border-color: rgba(255,179,122,.30); color: var(--text); }
.bdg.on .e { filter: none; opacity: 1; }

.toast { position: absolute; left: 20px; right: 20px; bottom: calc(104px + env(safe-area-inset-bottom)); z-index: 50;
  padding: 13px 16px; border-radius: 14px; background: rgba(28,24,38,.96); border: 1px solid rgba(255,255,255,.14);
  font-size: 13.5px; font-weight: 560; box-shadow: 0 14px 40px rgba(0,0,0,.5);
  animation: toast-in .3s var(--ease) both; }
@keyframes toast-in { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.confetti { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 60; }
.confetti i { position: absolute; width: 7px; height: 11px; border-radius: 2px; animation: fall linear forwards; }
@keyframes fall { to { transform: translateY(900px) rotate(720deg); opacity: 0; } }

.kv { display: flex; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.055); font-size: 14px; }
.kv:last-child { border-bottom: none; }
.kv span { color: var(--muted); }

.evlog { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 10.5px; line-height: 1.6; color: var(--muted-2);
  max-height: 190px; overflow-y: auto; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
