  /* =====================================================================
     Live app demo — a 1:1 web replica of the Notics phone screen.
     Screen is laid out at iPhone 16 Pro logical size (402x874) and scaled
     to fit its bezel; all inner values mirror the SwiftUI metrics:
     header 60pt, day cell 72pt, agenda sheet 163pt, FAB 52pt, etc.
     ===================================================================== */
  #live-demo{background:linear-gradient(180deg,#fff,var(--surface));border-top:1px solid rgba(219,219,223,.62);
    padding:0;--tour-headroom:210px}

  /* scroll-driven guided tour: tall track, sticky full-viewport stage,
     phone pinned in the center while step cards change around it */
  .tour-track{position:relative;height:430vh}
  .tour-stage{position:sticky;top:0;height:100vh;height:100svh;overflow:hidden;
    display:flex;align-items:center;justify-content:center}
  .tour-stage::before{content:"";position:absolute;inset:0;pointer-events:none;
    background:
      radial-gradient(46% 40% at 50% 54%,rgba(255,59,48,.07),transparent 70%),
      linear-gradient(90deg,rgba(5,5,6,.03) 1px,transparent 1px),
      linear-gradient(180deg,rgba(5,5,6,.03) 1px,transparent 1px);
    background-size:auto,64px 64px,64px 64px;
    -webkit-mask-image:radial-gradient(72% 64% at 50% 50%,#000 42%,transparent 92%);
    mask-image:radial-gradient(72% 64% at 50% 50%,#000 42%,transparent 92%)}

  .tour-head{position:absolute;top:clamp(56px,7vh,80px);left:50%;transform:translateX(-50%);z-index:4;
    width:min(92vw,760px);margin:0;transition:opacity .5s var(--ease-out),transform .5s var(--ease-out)}
  .demo-tour:not(.is-intro) .tour-head{opacity:0;transform:translate(-50%,-18px);pointer-events:none}

  .tour-core{position:relative;z-index:2;width:min(1120px,94vw);
    display:grid;grid-template-columns:1fr auto 1fr;align-items:center;gap:clamp(20px,4vw,56px)}
  .demo-phone-col{display:flex;justify-content:center;transition:transform .65s var(--ease-out)}
  .demo-tour.is-intro .demo-phone-col{transform:translateY(96px) scale(.82)}

  /* progress rail — click a dot to jump to that step */
  .tour-rail{justify-self:end;display:flex;flex-direction:column;gap:10px;
    opacity:1;transition:opacity .4s var(--ease-out)}
  .demo-tour.is-intro .tour-rail{opacity:0;pointer-events:none}
  .tour-rail button{width:10px;height:10px;padding:0;border:0;border-radius:999px;cursor:pointer;
    background:rgba(5,5,6,.18);transition:height .3s var(--ease-out),background .25s,opacity .25s}
  .tour-rail button.is-done{background:var(--accent);opacity:.4}
  .tour-rail button.is-active{height:28px;background:var(--accent);opacity:1}

  /* step cards — stacked in one grid cell, crossfading */
  .tour-captions{justify-self:start;display:grid;width:min(340px,88vw);
    opacity:1;transition:opacity .4s var(--ease-out)}
  .demo-tour.is-intro .tour-captions{opacity:0;pointer-events:none}
  .tour-card{grid-area:1/1;display:flex;flex-direction:column;gap:14px;align-items:flex-start;
    opacity:0;transform:translateY(18px);pointer-events:none;
    transition:opacity .4s var(--ease-out),transform .45s var(--ease-out)}
  .tour-card.is-active{opacity:1;transform:none;pointer-events:auto}
  .tc-eyebrow{font-size:11px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--accent);
    display:inline-flex;align-items:center;gap:8px}
  .tc-eyebrow::before{content:"";width:16px;height:1.5px;background:var(--accent);border-radius:2px}
  .tc-row{display:flex;gap:14px;align-items:flex-start}
  .tc-skip{font-family:inherit;font-size:12.5px;font-weight:600;color:var(--secondary);background:none;border:0;
    padding:2px 0;cursor:pointer;transition:color .2s}

  /* intro scroll cue */
  .tour-cue{position:absolute;left:50%;bottom:22px;transform:translateX(-50%);z-index:4;
    display:flex;flex-direction:column;align-items:center;gap:3px;color:var(--secondary);
    font-size:11px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;
    transition:opacity .4s var(--ease-out)}
  .tour-cue svg{width:17px;height:17px;color:var(--accent);animation:tourCue 1.7s var(--ease-amb) infinite}
  .demo-tour:not(.is-intro) .tour-cue{opacity:0}
  @keyframes tourCue{0%,100%{transform:translateY(0);opacity:.45}50%{transform:translateY(5px);opacity:1}}

  /* bezel — same visual language as .device-shot, but interactive (no float/rotate) */
  .demo-device{width:min(346px,92vw,calc((100vh - var(--tour-headroom)) * .44));
    width:min(346px,92vw,calc((100svh - var(--tour-headroom)) * .44));
    border-radius:52px;background:linear-gradient(180deg,#1a1a1c,#050506);padding:7px;
    box-shadow:0 40px 90px -30px rgba(0,0,0,.32),0 0 0 1px rgba(0,0,0,.08),inset 0 0 0 1px rgba(255,255,255,.04);
    touch-action:pan-y;user-select:none;-webkit-user-select:none}
  .demo-screen-scale{border-radius:45px;overflow:hidden;background:#fff}
  .dm-screen{width:402px;height:874px;position:relative;background:#fff;transform-origin:0 0;
    font-family:var(--font);color:#050506;-webkit-font-smoothing:antialiased;line-height:1.3;
    cursor:default;overflow:hidden}
  .dm-screen *{box-sizing:border-box}

  /* status bar (system chrome) */
  .dm-status{position:absolute;top:0;left:0;right:0;height:62px;z-index:20;display:flex;align-items:center;
    justify-content:space-between;padding:6px 34px 0;pointer-events:none}
  .dm-status .dm-time{font-size:17px;font-weight:600;letter-spacing:-.02em;min-width:54px}
  .dm-island{position:absolute;left:50%;top:11px;transform:translateX(-50%);width:125px;height:37px;border-radius:20px;background:#000}
  .dm-status-icons{display:flex;align-items:center;gap:7px}
  .dm-status-icons svg{display:block}

  /* header — CalendarHeaderView */
  .dm-header{height:60px;display:flex;align-items:center;padding:0 20px;background:#fff}
  .dm-month-title{display:flex;align-items:baseline;gap:7px;min-width:0}
  .dm-month-title .dm-month{font-size:27px;font-weight:400;letter-spacing:0;white-space:nowrap}
  .dm-month-title .dm-year{font-size:10.5px;font-weight:600;color:#85858f;position:relative;top:-2px}
  .dm-today-pill{display:inline-flex;align-items:center;gap:4px;margin-left:12px;padding:6px 11px;border:0;border-radius:999px;
    background:rgba(246,246,248,.85);box-shadow:inset 0 0 0 .5px rgba(0,0,0,.06),0 1px 4px rgba(0,0,0,.06);
    font-family:inherit;font-size:10px;font-weight:600;color:#050506;cursor:pointer;white-space:nowrap;
    -webkit-tap-highlight-color:transparent;transition:transform .18s var(--ease-spring),opacity .15s}
  .dm-today-pill[hidden]{display:none}
  .dm-today-pill svg{width:9px;height:9px;stroke:currentColor;stroke-width:2.4;fill:none;stroke-linecap:round;stroke-linejoin:round}
  .dm-today-pill:active{transform:scale(.94);opacity:.7}
  .dm-header-actions{display:flex;gap:8px;margin-left:auto}
  .dm-icon-btn{width:52px;height:52px;border-radius:50%;border:0;display:flex;align-items:center;justify-content:center;
    background:rgba(246,246,248,.85);box-shadow:inset 0 0 0 .5px rgba(0,0,0,.06),0 1px 5px rgba(0,0,0,.07);
    color:#050506;cursor:pointer;-webkit-tap-highlight-color:transparent;
    transition:transform .18s var(--ease-spring),opacity .15s}
  .dm-icon-btn svg{width:21px;height:21px;stroke:currentColor;stroke-width:1.6;fill:none;stroke-linecap:round;stroke-linejoin:round}
  .dm-icon-btn:active{transform:scale(.92);opacity:.75}

  /* month grid — MonthGridView */
  .dm-main{position:absolute;top:62px;left:0;right:0;z-index:1;background:#fff;
    transition:transform .4s var(--ease-out),opacity .32s var(--ease-out)}
  .is-expanded .dm-main{transform:translateY(-46px);opacity:0;pointer-events:none}
  .dm-grid{padding:0 10px;touch-action:pan-y}
  .dm-weekdays{display:grid;grid-template-columns:repeat(7,1fr);height:16px;margin-bottom:6px}
  .dm-weekdays span{font-size:11px;font-weight:600;text-align:center;color:#050506;align-self:center}
  .dm-weekdays span.acc{color:var(--accent)}
  .dm-cells{display:grid;grid-template-columns:repeat(7,1fr);position:relative}
  .dm-cell{height:72px;overflow:hidden;padding:3px 2px 0;position:relative;border-radius:10.8px;cursor:pointer;
    display:flex;flex-direction:column;gap:3px}
  .dm-cell .dm-num{font-size:18px;font-weight:500;text-align:center;line-height:1.16;color:#050506;flex:0 0 auto}
  .dm-cell.out .dm-num{color:#85858f}
  .dm-cell.acc .dm-num{color:var(--accent)}
  .dm-cell.out.acc .dm-num{color:rgba(255,59,48,.28)}
  .dm-cell.today .dm-num{color:var(--accent)}
  .dm-cell.today{background:rgba(255,59,48,.08)}
  .dm-cell.sel{background:var(--accent)}
  .dm-cell.sel .dm-num{color:#fff;font-weight:600}
  /* while the liquid selection glass is active, the solid selection hides
     (isSolidSelected == false in the app) */
  .dm-cells.dm-swiping .dm-cell.sel{background:transparent}
  .dm-cells.dm-swiping .dm-cell.sel.today{background:rgba(255,59,48,.08)}
  .dm-cells.dm-swiping .dm-cell.sel .dm-num{color:#050506;font-weight:500}
  .dm-cells.dm-swiping .dm-cell.sel.acc .dm-num,.dm-cells.dm-swiping .dm-cell.sel.today .dm-num{color:var(--accent)}
  .dm-cells.dm-swiping .dm-cell.sel .dm-chip{color:rgba(5,5,6,.84)}
  .dm-cells.dm-swiping .dm-cell.sel .dm-chip i{opacity:.16}
  .dm-cells.dm-swiping .dm-cell.sel .dm-more{color:rgba(5,5,6,.78)}
  .dm-cell-items{display:flex;flex-direction:column;gap:1px;padding:0 2px;min-width:0}
  .dm-cell.connected{padding-left:0;padding-right:0}
  .dm-chip{position:relative;display:flex;align-items:center;gap:3px;height:10.8px;border-radius:3px;overflow:hidden;
    font-size:9.4px;font-weight:500;color:rgba(5,5,6,.84);white-space:nowrap;padding-right:1px}
  .dm-chip i{position:absolute;inset:0;background:var(--chip);opacity:.16;border-radius:inherit}
  .dm-chip b{position:relative;width:2.5px;height:10.8px;border-radius:1.5px;background:var(--chip);flex:0 0 auto;font-weight:400}
  .dm-chip span{position:relative;overflow:hidden;text-overflow:ellipsis;min-width:0}
  .dm-cell.sel .dm-chip{color:#fff}
  .dm-cell.sel .dm-chip i{opacity:.22}
  .dm-chip.spans-prev{border-top-left-radius:0;border-bottom-left-radius:0;margin-left:-6px}
  .dm-chip.spans-next{border-top-right-radius:0;border-bottom-right-radius:0;margin-right:-6px}
  .dm-more{font-size:9.4px;font-weight:600;height:10.8px;line-height:10.8px;color:rgba(5,5,6,.78);padding:0 2px}
  .dm-cell.sel .dm-more{color:#fff}

  /* liquid selection glass — LiquidCalendarSelectionHighlight */
  .dm-blob-layer{position:absolute;inset:0;z-index:6;pointer-events:none}
  .dm-blob{position:absolute;display:none;
    -webkit-backdrop-filter:blur(2.5px) saturate(150%) brightness(1.05);
    backdrop-filter:blur(2.5px) saturate(150%) brightness(1.05);
    background:linear-gradient(155deg,rgba(255,255,255,.34),rgba(255,255,255,.03) 55%,rgba(255,255,255,.14));
    filter:drop-shadow(0 6px 14px rgba(0,0,0,.10))}
  .is-expanded .dm-blob-layer{display:none}

  /* agenda sheet — AgendaSheetView (top corners 20pt, spring expand) */
  .dm-agenda{position:absolute;left:0;right:0;top:576px;height:163px;z-index:8;background:#fff;
    border-radius:20px 20px 0 0;overflow:hidden;display:flex;flex-direction:column;touch-action:none;
    transition:top .42s cubic-bezier(.32,1.06,.36,1),height .42s cubic-bezier(.32,1.06,.36,1)}
  .is-expanded .dm-agenda{top:62px;height:778px}
  .dm-agenda-head{display:flex;align-items:center;justify-content:space-between;padding:14px 24px 0;flex:0 0 auto}
  .dm-agenda-title{font-size:17px;font-weight:600;letter-spacing:-.01em}
  .dm-close{width:52px;height:52px;border-radius:50%;border:0;display:none;align-items:center;justify-content:center;
    background:rgba(246,246,248,.85);box-shadow:inset 0 0 0 .5px rgba(0,0,0,.06),0 1px 5px rgba(0,0,0,.07);
    color:#050506;cursor:pointer;-webkit-tap-highlight-color:transparent;margin:-4px -10px -8px 0;
    transition:transform .18s var(--ease-spring),opacity .15s}
  .dm-close svg{width:18px;height:18px;stroke:currentColor;stroke-width:2;fill:none;stroke-linecap:round}
  .dm-close:active{transform:scale(.92);opacity:.75}
  .is-expanded .dm-close{display:flex}
  .dm-agenda-list{flex:1;min-height:0;overflow-y:auto;overscroll-behavior:contain;padding:10px 0 24px;scrollbar-width:none}
  .dm-agenda-list::-webkit-scrollbar{display:none}
  .is-expanded .dm-agenda-list{touch-action:pan-y}
  .dm-sec-title{font-size:11px;font-weight:600;color:#85858f;padding:8px 24px 2px}
  .dm-sec-title.first{padding-top:2px}
  /* agenda row — AgendaRowView, balanced density */
  .dm-row{display:flex;align-items:center;gap:14px;height:52px;padding:0 24px;cursor:default;
    -webkit-tap-highlight-color:transparent}
  .dm-row+.dm-row{margin-top:2px}
  .dm-row.no-detail{height:44px}
  .dm-row b{width:3px;border-radius:1.5px;flex:0 0 auto;height:34px}
  .dm-row .dm-time{width:88px;flex:0 0 auto;font-size:11.5px;font-weight:400;white-space:pre-line;line-height:1.25;
    overflow-wrap:break-word}
  .dm-row.ev .dm-time{font-weight:500}
  .dm-row .dm-body{flex:1;min-width:0;display:flex;flex-direction:column;gap:4px}
  .dm-row .dm-rt{font-size:14px;font-weight:500;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;line-height:1.2}
  .dm-row.done .dm-rt{color:#85858f}
  .dm-row .dm-rs{font-size:11.5px;color:#85858f;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;line-height:1.2}
  .dm-complete{width:44px;height:44px;flex:0 0 auto;margin:0 -10px 0 0;border:0;background:none;padding:0;cursor:pointer;
    display:flex;align-items:center;justify-content:center;-webkit-tap-highlight-color:transparent}
  .dm-complete i{width:24px;height:24px;border-radius:50%;border:2px solid var(--ring-c);
    background:color-mix(in srgb,var(--ring-c) 6%,transparent);display:block;transition:transform .16s var(--ease-spring)}
  .dm-complete:active i{transform:scale(.86)}
  .dm-empty{flex:1;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:10px;color:#85858f}
  .dm-empty svg{width:30px;height:30px;stroke:currentColor;stroke-width:1.5;fill:none;stroke-linecap:round;stroke-linejoin:round}
  .dm-empty span{font-size:13px;font-weight:500}

  /* floating add button — FloatingAddButton (glassProminent, accent) */
  .dm-fab{position:absolute;right:16px;bottom:60px;width:52px;height:52px;border-radius:50%;border:0;z-index:9;
    background:radial-gradient(120% 120% at 30% 18%,#ff6a5e,var(--accent) 58%);color:#fff;cursor:pointer;
    display:flex;align-items:center;justify-content:center;-webkit-tap-highlight-color:transparent;
    box-shadow:0 8px 14px rgba(0,0,0,.14),inset 0 1px 0 rgba(255,255,255,.34);
    transition:transform .18s var(--ease-spring)}
  .dm-fab svg{width:21px;height:21px;stroke:#fff;stroke-width:2;fill:none;stroke-linecap:round}
  .dm-fab:active{transform:scale(.9)}

  .dm-home{position:absolute;left:50%;bottom:8px;transform:translateX(-50%);width:134px;height:5px;border-radius:3px;
    background:rgba(5,5,6,.32);z-index:21;pointer-events:none}

  /* ghost touch — animated gesture prompt for the active tour step */
  .dm-ghost{position:absolute;left:0;top:0;z-index:12;pointer-events:none;display:none;
    opacity:1;transition:opacity .3s var(--ease-out)}
  .dm-ghost.is-quiet{opacity:0}
  .dm-ghost .g-dot,.dm-ghost .g-ring{position:absolute;left:0;top:0;width:44px;height:44px;margin:-22px 0 0 -22px;
    border-radius:50%;display:none}
  .dm-ghost .g-dot{background:radial-gradient(circle at 34% 30%,rgba(255,255,255,.95),rgba(168,168,180,.6));
    box-shadow:0 8px 20px rgba(0,0,0,.34),0 0 0 1.5px rgba(255,255,255,.92),0 0 0 3px rgba(5,5,6,.15)}
  .dm-ghost .g-ring{border:2px solid var(--accent)}
  .dm-ghost.ghost-swipe,.dm-ghost.ghost-tap,.dm-ghost.ghost-up{display:block}
  .dm-ghost.ghost-swipe .g-dot{display:block;animation:ghostSwipe 2.5s var(--ease-smooth) infinite}
  @keyframes ghostSwipe{
    0%{transform:translate(310px,648px) scale(.72);opacity:0}
    14%{transform:translate(300px,648px) scale(1);opacity:.95}
    58%{transform:translate(108px,648px) scale(1);opacity:.95}
    74%,100%{transform:translate(94px,648px) scale(.72);opacity:0}}
  .dm-ghost.ghost-up .g-dot{display:block;animation:ghostUp 2.2s var(--ease-smooth) infinite}
  @keyframes ghostUp{
    0%{transform:translate(201px,706px) scale(.72);opacity:0}
    16%{transform:translate(201px,694px) scale(1);opacity:.95}
    60%{transform:translate(201px,536px) scale(1);opacity:.95}
    76%,100%{transform:translate(201px,520px) scale(.72);opacity:0}}
  .dm-ghost.ghost-tap .g-dot{display:block;transform:translate(var(--gx,356px),var(--gy,650px));
    animation:ghostTapDot 1.9s var(--ease-smooth) infinite}
  .dm-ghost.ghost-tap .g-ring{display:block;transform:translate(var(--gx,356px),var(--gy,650px));
    animation:ghostTapRing 1.9s var(--ease-smooth) infinite}
  @keyframes ghostTapDot{
    0%,18%{scale:1;opacity:.92}
    30%{scale:.74;opacity:.98}
    44%,100%{scale:1;opacity:.92}}
  @keyframes ghostTapRing{
    0%,28%{scale:.5;opacity:0}
    36%{scale:.62;opacity:.9}
    72%,100%{scale:1.5;opacity:0}}
  /* horizontal / upward prompts make no sense while the sheet is expanded */
  .is-expanded .dm-ghost.ghost-swipe,.is-expanded .dm-ghost.ghost-up{display:none}

  /* step checks inside tour cards */
  .demo-hint .dh-check{width:22px;height:22px;border-radius:50%;border:1.5px solid var(--divider);flex:0 0 auto;margin-top:1px;
    display:flex;align-items:center;justify-content:center;color:#fff;
    transition:background .25s,border-color .25s,transform .25s var(--ease-spring)}
  .demo-hint .dh-check svg{width:11px;height:11px;stroke:currentColor;stroke-width:3;fill:none;stroke-linecap:round;stroke-linejoin:round;
    opacity:0;transform:scale(.4);transition:opacity .2s,transform .25s var(--ease-spring)}
  .demo-hint.is-done .dh-check{background:var(--accent);border-color:var(--accent);transform:scale(1.06)}
  .demo-hint.is-done .dh-check svg{opacity:1;transform:scale(1)}
  .demo-hint .dh-text b{display:block;font-size:15px;font-weight:600;letter-spacing:-.01em}
  .demo-hint .dh-text span{display:block;font-size:13px;color:var(--secondary-2);margin-top:2px;line-height:1.5}
  .demo-tuning{display:flex;flex-direction:column;gap:12px}
  .demo-tuning .dt-row{display:flex;align-items:center;gap:14px}
  .demo-tuning .dt-row>span{font-size:13px;font-weight:600;flex:0 0 auto}
  .demo-tuning .dt-val{font-size:12px;color:var(--secondary);font-variant-numeric:tabular-nums;min-width:44px;text-align:right}
  .demo-tuning input[type=range]{flex:1;appearance:none;-webkit-appearance:none;height:4px;border-radius:2px;
    background:linear-gradient(90deg,var(--accent) var(--fill,16%),var(--field) var(--fill,16%));outline-offset:4px;cursor:pointer}
  .demo-tuning input[type=range]::-webkit-slider-thumb{appearance:none;-webkit-appearance:none;width:16px;height:16px;border-radius:50%;
    background:#fff;box-shadow:0 1px 4px rgba(0,0,0,.22),0 0 0 1.5px var(--accent);cursor:grab}
  .demo-tuning input[type=range]::-moz-range-thumb{width:16px;height:16px;border:0;border-radius:50%;
    background:#fff;box-shadow:0 1px 4px rgba(0,0,0,.22),0 0 0 1.5px var(--accent);cursor:grab}
  .demo-metrics{display:flex;gap:20px}
  .demo-metrics div{font-size:12px;color:var(--secondary-2)}
  .demo-metrics div b{color:var(--text);font-weight:600;font-variant-numeric:tabular-nums;margin-left:5px}
  .demo-foot{display:flex;align-items:center;gap:16px;flex-wrap:wrap}
  .demo-reset{font-family:inherit;font-size:12.5px;font-weight:600;color:var(--secondary);background:none;
    border:0;padding:0;cursor:pointer;flex:0 0 auto;transition:color .2s}
  .demo-reset:active{opacity:.6}
  .demo-note{font-size:13px;color:var(--secondary);line-height:1.55;margin:0;flex:1;min-width:200px}

  @media(max-width:860px){
    #live-demo{--tour-headroom:368px}
    .tour-stage{padding-top:56px}
    .tour-core{display:flex;flex-direction:column;gap:12px;width:100%;padding:0 16px}
    .tour-rail{order:0;flex-direction:row;justify-content:center;gap:9px}
    .tour-rail button.is-active{height:10px;width:28px}
    .demo-phone-col{order:1}
    .tour-captions{order:2;width:min(360px,94vw);margin:0 auto}
    .tour-card{gap:9px}
    .demo-hint .dh-text span{font-size:12.5px}
    /* keep the compact stage airy: lede + footnote are desktop-only */
    .tour-head{top:74px}
    .tour-head p{display:none}
    .demo-note{display:none}
    .tour-cue{bottom:14px}
    .demo-tour.is-intro .demo-phone-col{transform:translateY(96px) scale(.92)}
  }
  @media(prefers-reduced-motion:reduce){
    .dm-agenda,.dm-main{transition:none}
    .dm-ghost{display:none!important}
    .tour-card,.tour-head,.tour-captions,.tour-rail,.demo-phone-col,.tour-cue{transition:none}
    .tour-cue svg{animation:none}
    .demo-tour.is-intro .demo-phone-col{transform:none}
  }

  /* hover — same any-hover guard convention as site.css */
  @media(any-hover:hover){
    .dm-icon-btn:hover,.dm-close:hover{background:rgba(236,236,242,.95)}
    .dm-today-pill:hover{background:rgba(236,236,242,.95)}
    .dm-fab:hover{transform:scale(1.05)}
    .dm-cell:hover:not(.sel){background:rgba(5,5,6,.035)}
    .dm-cell.today:hover:not(.sel){background:rgba(255,59,48,.12)}
    .dm-complete:hover i{transform:scale(1.08)}
    .demo-reset:hover{color:var(--text)}
    .tour-rail button:hover{background:rgba(5,5,6,.4)}
    .tour-rail button.is-active:hover,.tour-rail button.is-done:hover{background:var(--accent)}
    .tc-skip:hover{color:var(--accent)}
  }
