/* ==========================================================================
   OWNBACK — terminal.
   The product is a ledger, so the site is an instrument, not a brochure:
   near-black, a hard hairline grid, condensed caps, monospaced numerals.
   Lime is what you own. Amber is a limit doing its job. Red is void.
   ========================================================================== */

:root {
  --void:    #08090B;
  --surface: #0E1013;
  --raised:  #14171B;
  --raised-2:#1A1E23;
  --line:    #21252B;
  --line-2:  #2E343B;
  --line-3:  #434A53;

  --text:    #E7EAE4;
  --text-2:  #98A0A8;
  --text-3:  #626A73;
  --text-4:  #444B53;

  --lime:    #C8F94E;
  --lime-2:  #A8D634;
  --lime-3:  rgba(200,249,78,.10);
  --amber:   #FFB020;
  --amber-3: rgba(255,176,32,.10);
  --red:     #FF5A45;
  --red-3:   rgba(255,90,69,.10);

  --display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --mono:    "Space Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  --ease: cubic-bezier(.2,.7,.2,1);
  --snap: cubic-bezier(.12,.9,.2,1);

  --rail: 76px;   /* fixed left service rail */
  --bar:  52px;   /* top status bar */
}

*, *::before, *::after { box-sizing: border-box; }
html { background: var(--void); color-scheme: dark; scroll-behavior: smooth; }
body {
  margin: 0; background: var(--void); color: var(--text);
  font-family: var(--display); font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
[hidden] { display: none !important; }
img, video { max-width: 100%; display: block; }
::selection { background: var(--lime); color: var(--void); }

/* the page sits on a faint engineering grid, not paper grain */
.field {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 68px 68px;
  -webkit-mask-image: radial-gradient(ellipse 120% 90% at 50% 0%, #000 0%, transparent 76%);
  mask-image: radial-gradient(ellipse 120% 90% at 50% 0%, #000 0%, transparent 76%);
}

/* --------------------------------------------------------------- shell -- */
.shell { position: relative; z-index: 1; padding-left: var(--rail); }
@media (max-width: 900px) { :root { --rail: 0px; } }

.wrap { width: min(1240px, 100% - 88px); margin-inline: auto; }
@media (max-width: 900px) { .wrap { width: calc(100% - 40px); } }

/* the left rail: section index, always there, never in the way */
.rail {
  position: fixed; left: 0; top: 0; bottom: 0; width: var(--rail); z-index: 55;
  border-right: 1px solid var(--line); background: var(--surface);
  display: flex; flex-direction: column; align-items: center; justify-content: space-between;
  padding: 15px 0 18px;
}
@media (max-width: 900px) { .rail { display: none; } }
.rail .mk { width: 24px; height: 24px; display: block; color: var(--lime); }
.rail .idx { display: flex; flex-direction: column; gap: 20px; align-items: center; }
.rail .idx a {
  font: 400 10px/1 var(--mono); color: var(--text-4); letter-spacing: .12em;
  writing-mode: vertical-rl; text-transform: uppercase; transition: color .16s var(--ease);
}
.rail .idx a:hover, .rail .idx a.on { color: var(--lime); }
.rail .pct { font: 400 9.5px/1.6 var(--mono); color: var(--text-4); letter-spacing: .06em; text-align: center; }
.rail .pct b { color: var(--lime); font-weight: 400; display: block; }

/* -------------------------------------------------------------- topbar -- */
.bar {
  position: sticky; top: 0; z-index: 50; height: var(--bar);
  background: rgba(8,9,11,.84); backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.bar-in { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo .mk { width: 20px; height: 20px; color: var(--lime); flex: none; }
.logo .wm {
  font-family: var(--display); font-stretch: 74%; font-weight: 800; font-size: 19px;
  letter-spacing: .012em; text-transform: uppercase; color: var(--text);
}
.navlinks { display: flex; align-items: center; gap: 2px; }
.navlinks a {
  font: 400 11px/1 var(--mono); letter-spacing: .05em; color: var(--text-3);
  padding: 9px 10px; transition: color .15s var(--ease), background .15s var(--ease);
}
.navlinks a:hover { color: var(--text); background: var(--raised); }
.navlinks a[aria-current]:not(.btn) { color: var(--lime); }
.navlinks .btn[aria-current] { background: transparent; color: var(--lime); }
.navlinks .btn[aria-current]:hover { background: transparent; color: var(--lime-2); border-color: var(--lime-2); }
.navlinks .xl { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px;
  padding: 0; color: var(--text-3); transition: color .15s var(--ease), background .15s var(--ease); }
.navlinks .xl svg { width: 14px; height: 14px; fill: currentColor; display: block; }
.navlinks .xl:hover { color: var(--text); background: var(--raised); }
.navlinks .btn { margin-left: 8px; }
@media (max-width: 1120px) { .navlinks a.md { display: none; } }
@media (max-width: 760px) { .navlinks a.sm { display: none; } .logo .wm { font-size: 17px; } }

/* the tape: a price strip, not a slogan marquee */
.tape { border-bottom: 1px solid var(--line); background: var(--surface); overflow: hidden; }
.tape-in { display: flex; width: max-content; animation: tape 58s linear infinite; }
@keyframes tape { from { transform: translateX(0) } to { transform: translateX(-50%) } }
@media (prefers-reduced-motion: reduce) { .tape-in { animation: none } }
.tk {
  display: flex; align-items: baseline; gap: 9px; padding: 10px 20px;
  border-right: 1px solid var(--line); font: 400 11px/1 var(--mono); white-space: nowrap;
}
.tk b { color: var(--text); font-weight: 700; letter-spacing: .04em; }
.tk .p { color: var(--text-2); font-variant-numeric: tabular-nums; }
.tk .up { color: var(--lime); } .tk .dn { color: var(--red); }
.tk .q { color: var(--text-4); }

/* ---------------------------------------------------------------- type -- */
.mono { font-family: var(--mono); }
h1, h2, h3, h4 { margin: 0; font-weight: 800; }
.mast {
  font-family: var(--display); font-stretch: 70%; font-weight: 800; text-transform: uppercase;
  font-size: clamp(31px, 5.4vw, 82px); line-height: 1.0; letter-spacing: -.004em;
}
.mast .hl {
  background: var(--lime); color: var(--void); padding: 0 .1em .04em;
  -webkit-box-decoration-break: clone; box-decoration-break: clone;
}
.mast .ol { color: transparent; -webkit-text-stroke: 1.4px var(--line-3); }
h2 {
  font-stretch: 74%; text-transform: uppercase; font-size: clamp(27px, 4vw, 54px);
  line-height: .99; letter-spacing: -.003em;
}
h3 { font-stretch: 84%; font-size: clamp(17px, 1.5vw, 21px); line-height: 1.26; }
h4 { font-stretch: 88%; font-size: 15px; }

.tag {
  display: inline-flex; align-items: center; gap: 9px;
  font: 400 10px/1 var(--mono); letter-spacing: .16em; text-transform: uppercase; color: var(--text-3);
}
.tag .dot { width: 5px; height: 5px; background: var(--lime); flex: none; animation: blip 1.9s steps(1) infinite; }
@keyframes blip { 0%,60% { opacity: 1 } 61%,100% { opacity: .18 } }
.tag.amber .dot { background: var(--amber); } .tag.red .dot { background: var(--red); }

.lede { font-size: clamp(15px, 1.2vw, 17.5px); line-height: 1.7; color: var(--text-2); max-width: 62ch; margin: 0; }
.lede b { color: var(--text); font-weight: 600; }
.fine { font: 400 11.5px/1.75 var(--mono); color: var(--text-4); max-width: 100ch; }
.num { font-family: var(--mono); font-variant-numeric: tabular-nums; }

/* ------------------------------------------------------------ sections -- */
.sec { padding: clamp(60px, 6.6vw, 110px) 0; border-top: 1px solid var(--line); }
.sec.flush { border-top: 0; }
/* two-column spec layout: sticky label left, content right */
.spec { display: grid; grid-template-columns: 176px 1fr; gap: clamp(26px, 3.6vw, 60px); align-items: start; }
@media (max-width: 900px) { .spec { grid-template-columns: 1fr; gap: 24px; } }
.spec > .lbl { position: sticky; top: calc(var(--bar) + 22px); }
@media (max-width: 900px) { .spec > .lbl { position: static; } }
.spec > .lbl .no {
  font-family: var(--display); font-stretch: 62%; font-weight: 800; font-size: 42px; line-height: .85;
  color: transparent; -webkit-text-stroke: 1.4px var(--line-2); display: block; margin-bottom: 12px;
}
.spec > .lbl .nm { font: 400 10px/1.7 var(--mono); letter-spacing: .16em; text-transform: uppercase; color: var(--text-3); }

/* --------------------------------------------------------------- panel -- */
.panel { background: var(--surface); border: 1px solid var(--line); position: relative; }
.panel.raised { background: var(--raised); }
.panel .ph {
  display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  padding: 11px 16px; border-bottom: 1px solid var(--line);
  font: 400 10px/1.4 var(--mono); letter-spacing: .14em; text-transform: uppercase; color: var(--text-3);
}
.panel .ph .t { color: var(--text); }
.panel .ph .s { color: var(--lime); }
.panel .ph .s.amber { color: var(--amber); } .panel .ph .s.red { color: var(--red); }
.panel .pb { padding: 18px 16px; }
.panel .pb p { margin: 0 0 14px; color: var(--text-2); font-size: 15px; line-height: 1.7; }
.panel .pb p:last-child { margin-bottom: 0; }
.panel.hover { transition: border-color .2s var(--ease), transform .2s var(--ease); }
.panel.hover:hover { border-color: var(--line-3); transform: translateY(-2px); }

/* corner marks — the one decorative motif on the whole site */
.crn::before, .crn::after { content: ""; position: absolute; width: 9px; height: 9px; pointer-events: none; }
.crn::before { top: -1px; left: -1px; border-top: 1px solid var(--lime); border-left: 1px solid var(--lime); }
.crn::after  { bottom: -1px; right: -1px; border-bottom: 1px solid var(--lime); border-right: 1px solid var(--lime); }

/* -------------------------------------------------------------- record -- */
/* the receipt, rendered the way the ledger stores it */
.rec { background: var(--surface); border: 1px solid var(--line); font-family: var(--mono); }
.rec .rh { padding: 12px 16px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between;
  gap: 12px; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-3); }
.rec .rh b { color: var(--text); font-weight: 700; }
.rec .rb { padding: 14px 16px; }
.rec .r { display: flex; justify-content: space-between; gap: 16px; padding: 5px 0; font-size: 13px; color: var(--text-2); }
.rec .r .k { color: var(--text-4); text-transform: uppercase; font-size: 10.5px; letter-spacing: .12em; }
.rec .r b { color: var(--text); font-weight: 400; font-variant-numeric: tabular-nums; }
.rec .sep { height: 1px; background: var(--line); margin: 12px 0; }
.rec .out { border-top: 1px solid var(--line); background: var(--lime-3); padding: 16px; }
.rec .out .k { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--lime-2); }
.rec .out .v { font-family: var(--display); font-stretch: 78%; font-weight: 800; font-size: clamp(23px, 2.3vw, 33px);
  color: var(--lime); line-height: 1.1; margin-top: 8px; }
.rec .out .s { font-size: 12px; color: var(--text-2); margin-top: 8px; font-variant-numeric: tabular-nums; }
.rec .out.void { background: var(--red-3); }
.rec .out.void .k, .rec .out.void .v { color: var(--red); }
.rec .out.amber { background: var(--amber-3); }
.rec .out.amber .k, .rec .out.amber .v { color: var(--amber); }
.rec .rf { padding: 11px 16px; border-top: 1px solid var(--line); font-size: 10px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--text-4); display: flex; justify-content: space-between; gap: 12px; }

/* -------------------------------------------------------------- button -- */
.btn {
  display: inline-flex; align-items: center; gap: 10px; padding: 13px 20px; border: 1px solid var(--lime);
  background: var(--lime); color: var(--void); cursor: pointer;
  font: 700 11px/1 var(--mono); letter-spacing: .12em; text-transform: uppercase;
  transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease), transform .12s var(--ease);
}
.btn:hover { background: var(--lime-2); border-color: var(--lime-2); }
.btn:active { background: var(--lime-2); transform: translateY(1px); }
.btn .arr { transition: transform .2s var(--snap); }
.btn:hover .arr { transform: translateX(3px); }
.btn.ghost { background: transparent; color: var(--text-2); border-color: var(--line-2); }
.btn.ghost:hover { color: var(--text); border-color: var(--line-3); }
.btn.sm { padding: 9px 13px; font-size: 10px; }
.btn.lg { padding: 16px 26px; font-size: 12px; }

/* ---------------------------------------------------------------- grid -- */
.g { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.g > * { background: var(--void); }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .g3, .g4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .g2, .g3, .g4 { grid-template-columns: 1fr; } }

.cell { padding: 22px 20px 24px; }
.cell .v { font-family: var(--display); font-stretch: 74%; font-weight: 800;
  font-size: clamp(23px, 2.5vw, 35px); line-height: 1; color: var(--lime); }
.cell .v.plain { color: var(--text); }
.cell .l { font: 400 10px/1.5 var(--mono); letter-spacing: .14em; text-transform: uppercase; color: var(--text-3); margin-top: 10px; }
.cell .d { font: 400 11px/1.6 var(--mono); color: var(--text-4); margin-top: 7px; }

/* --------------------------------------------------------------- table -- */
.tbl { width: 100%; border-collapse: collapse; font: 400 13px/1.6 var(--mono); }
.tbl th { text-align: left; font: 400 10px/1 var(--mono); letter-spacing: .16em; text-transform: uppercase;
  color: var(--text-4); padding: 0 14px 12px 0; border-bottom: 1px solid var(--line-2); }
.tbl td { padding: 12px 14px 12px 0; border-bottom: 1px solid var(--line); vertical-align: top; color: var(--text-2); }
.tbl td:last-child, .tbl th:last-child { text-align: right; padding-right: 0; }
.tbl td b { color: var(--text); font-weight: 700; }
.tbl .acc { color: var(--lime); font-weight: 700; }
.tbl .amb { color: var(--amber); font-weight: 700; }
.tbl .bad { color: var(--red); font-weight: 700; }

/* ---------------------------------------------------------------- feed -- */
.feed { overflow: hidden; border-block: 1px solid var(--line); }
.feed-in { display: flex; width: max-content; animation: tape 66s linear infinite; }
@media (prefers-reduced-motion: reduce) { .feed-in { animation: none } }
.fi { display: flex; align-items: center; gap: 14px; padding: 14px 22px; border-right: 1px solid var(--line);
  font: 400 11.5px/1 var(--mono); white-space: nowrap; color: var(--text-3); }
.fi .a { color: var(--lime); font-weight: 700; }
.fi .a.amb { color: var(--amber); }
.fi .w { color: var(--text-2); }

/* ---------------------------------------------------------------- calc -- */
.calc { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(24px, 3vw, 48px); align-items: start; }
@media (max-width: 900px) { .calc { grid-template-columns: 1fr; } }
.calc .big { font-family: var(--display); font-stretch: 66%; font-weight: 800;
  font-size: clamp(46px, 6.6vw, 92px); line-height: .9; font-variant-numeric: tabular-nums; }
.calc .big .c { color: var(--text-4); }
input[type=range] { -webkit-appearance: none; appearance: none; width: 100%; height: 2px; background: var(--line-2);
  margin: 24px 0 10px; cursor: ew-resize; }
input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; width: 14px; height: 26px; background: var(--lime);
  box-shadow: 0 0 22px -4px rgba(200,249,78,.8); }
input[type=range]::-moz-range-thumb { width: 14px; height: 26px; border: 0; border-radius: 0; background: var(--lime); }
.ticks { display: flex; justify-content: space-between; gap: 14px; font: 400 9.5px/1.5 var(--mono);
  letter-spacing: .12em; color: var(--text-4); text-transform: uppercase; }
.chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.chip { padding: 10px 12px; background: transparent; border: 1px solid var(--line-2); cursor: pointer;
  font: 400 10.5px/1 var(--mono); letter-spacing: .08em; color: var(--text-2); text-transform: uppercase;
  transition: all .15s var(--ease); }
.chip b { color: var(--text-4); margin-left: 8px; }
.chip:hover { border-color: var(--line-3); color: var(--text); }
.chip.on { background: var(--lime); border-color: var(--lime); color: var(--void); }
.chip.on b { color: rgba(8,9,11,.6); }

/* ---------------------------------------------------------------- tier -- */
.tier { padding: 24px 22px 0; display: flex; flex-direction: column; }
.tier .f { font: 400 10px/1 var(--mono); letter-spacing: .16em; text-transform: uppercase; color: var(--text-4); }
.tier .nm { font-family: var(--display); font-stretch: 70%; font-weight: 800; text-transform: uppercase;
  font-size: 38px; line-height: 1; margin: 14px 0 8px; }
.tier .hold { font: 400 10.5px/1.7 var(--mono); color: var(--text-3); letter-spacing: .05em; }
.tier .kv { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0;
  border-top: 1px solid var(--line); font: 400 11.5px/1.3 var(--mono); color: var(--text-3); }
.tier .kv b { color: var(--text); font-weight: 700; font-variant-numeric: tabular-nums; }
.tier .kv.hi b { color: var(--lime); }
.tier .smp { margin: 20px -22px 0; padding: 16px 22px 20px; border-top: 1px solid var(--line); background: var(--lime-3); }
.tier .smp .l { font: 400 10px/1 var(--mono); letter-spacing: .12em; color: var(--text-3); text-transform: uppercase; }
.tier .smp .v { font-family: var(--display); font-stretch: 78%; font-weight: 800; font-size: 23px; color: var(--lime); margin-top: 8px; }
.tier.feat { background: var(--raised); }
.tier.feat .f { color: var(--lime); }

/* ----------------------------------------------------------------- faq -- */
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 20px 0; display: flex; align-items: baseline; gap: 18px;
  font-family: var(--display); font-stretch: 80%; font-weight: 700; font-size: clamp(17px, 1.8vw, 24px);
  transition: color .15s var(--ease); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--lime-2); }
.faq summary .q { font: 400 10px/1 var(--mono); color: var(--text-4); flex: none; letter-spacing: .12em; }
.faq summary .pm { margin-left: auto; font: 400 13px/1 var(--mono); color: var(--text-4); flex: none; }
.faq summary .pm::before { content: "[+]"; }
.faq details[open] summary .pm { color: var(--lime); }
.faq details[open] summary .pm::before { content: "[−]"; }
.faq .a { padding: 0 0 24px 50px; color: var(--text-2); max-width: 78ch; font-size: 15px; line-height: 1.75; }
.faq .a a { color: var(--lime); border-bottom: 1px solid var(--lime-2); }
@media (max-width: 620px) { .faq .a { padding-left: 0; } }

/* --------------------------------------------------------------- video -- */
.vid { position: relative; border: 1px solid var(--line); background: var(--surface); overflow: hidden; }
.vid video { width: 100%; height: auto; display: block; }
.vid .vh { display: flex; justify-content: space-between; gap: 12px; padding: 10px 14px;
  border-bottom: 1px solid var(--line); font: 400 10px/1.3 var(--mono); letter-spacing: .14em;
  text-transform: uppercase; color: var(--text-3); }
.vid .vh .live { color: var(--red); display: inline-flex; align-items: center; gap: 7px; }
.vid .vh .live i { width: 6px; height: 6px; background: var(--red); border-radius: 6px; animation: blip 1.6s steps(1) infinite; }
.phone { width: min(280px, 76vw); padding: 8px; background: var(--raised-2); border: 1px solid var(--line-2); }

/* -------------------------------------------------------------- reveal -- */
.up { opacity: 0; transform: translateY(14px); }
.up.in { opacity: 1; transform: none; transition: opacity .55s var(--ease), transform .55s var(--ease); }
@media (prefers-reduced-motion: reduce) { .up { opacity: 1 !important; transform: none !important; } }

/* -------------------------------------------------------------- footer -- */
.foot { border-top: 1px solid var(--line); background: var(--surface); padding: 52px 0 32px; }
.foot .sys { font: 400 10px/1.9 var(--mono); letter-spacing: .14em; text-transform: uppercase; color: var(--text-4); }
.foot .sys b { color: var(--lime); font-weight: 400; }
.foot .cols { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 28px; margin: 38px 0 32px; }
@media (max-width: 860px) { .foot .cols { grid-template-columns: 1fr 1fr; } }
.foot h4 { font: 400 10px/1 var(--mono); letter-spacing: .16em; text-transform: uppercase; color: var(--text-4); margin-bottom: 14px; }
.foot ul { list-style: none; margin: 0; padding: 0; }
.foot li { margin-bottom: 9px; }
.foot a { font: 400 12px/1 var(--mono); color: var(--text-2); transition: color .15s var(--ease); }
.foot a:hover { color: var(--text); }
.foot .disc { font: 400 11px/1.8 var(--mono); color: var(--text-4); border-top: 1px solid var(--line); padding-top: 22px; }

/* ------------------------------------------------------------- pointer -- */
/* a precise dot on the hand, a ribbon of light behind it, and a ring that
   opens over anything actionable. The dot carries a dark hairline so it stays
   findable on any surface it crosses. */
#cur { position: fixed; inset: 0; z-index: 95; pointer-events: none; display: none; }
@media (hover: hover) and (pointer: fine) { #cur { display: block; } }

#cur .trail { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0;
  transition: opacity .25s var(--ease); }
#cur.on .trail { opacity: 1; }

#cur .dot {
  position: absolute; top: 0; left: 0; width: 9px; height: 9px; margin: -4.5px 0 0 -4.5px;
  border-radius: 50%; background: var(--lime); border: 0 solid var(--lime);
  box-shadow: 0 0 12px 1px rgba(200,249,78,.45), 0 0 0 1px rgba(8,9,11,.45);
  opacity: 0; will-change: transform;
  transition: width .3s var(--snap), height .3s var(--snap), margin .3s var(--snap),
              background .2s var(--ease), border-width .2s var(--ease),
              box-shadow .2s var(--ease), opacity .22s var(--ease);
}
#cur.on .dot { opacity: 1; }

/* over anything actionable the dot opens into a ring — nothing is covered */
#cur.hot .dot {
  width: 32px; height: 32px; margin: -16px 0 0 -16px;
  background: rgba(200,249,78,.08); border-width: 1.5px;
  box-shadow: 0 0 18px -2px rgba(200,249,78,.35);
}
/* on a filled, light surface it inverts to ink so it never disappears */
#cur.on-fill .dot { background: var(--void); border-color: var(--void);
  box-shadow: 0 0 12px 1px rgba(8,9,11,.35), 0 0 0 1px rgba(231,234,228,.35); }
#cur.on-fill.hot .dot { background: rgba(8,9,11,.10); box-shadow: 0 0 18px -2px rgba(8,9,11,.4); }

#cur.press .dot { width: 5px; height: 5px; margin: -2.5px 0 0 -2.5px; }
#cur.press.hot .dot { width: 24px; height: 24px; margin: -12px 0 0 -12px; }

html.has-cur, html.has-cur * { cursor: none !important; }
@media (prefers-reduced-motion: reduce) { #cur { display: none !important; } html.has-cur, html.has-cur * { cursor: auto !important; } }
