:root {
  color-scheme: light;
  --bg: #f8f6ef;
  --ink: #1e1f24;
  --muted: #62636b;
  --card: #ffffff;
  --line: #e5dfd2;
  --accent: #5b3df5;
  --accent-dark: #432bc2;
  --good: #1f7a4d;
  --bad: #a12d2d;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: var(--accent-dark);
}

header,
main,
footer {
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
}

header {
  padding: 28px 0 16px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.logo {
  font-weight: 800;
  font-size: 1.25rem;
  text-decoration: none;
  color: var(--ink);
}

nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  font-weight: 650;
}

.hero {
  padding: 56px 0 32px;
}

.hero h1 {
  font-size: clamp(2.25rem, 7vw, 5rem);
  line-height: 0.96;
  max-width: 880px;
  margin: 0 0 18px;
  letter-spacing: -0.06em;
}

.hero p {
  font-size: 1.15rem;
  max-width: 720px;
  color: var(--muted);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin: 26px 0;
}

.card,
.signup,
.article {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 18px 50px rgba(30, 31, 36, 0.06);
}

.card h2,
.card h3,
.article h1,
.article h2 {
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.badge {
  display: inline-block;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
}

.signup {
  margin: 36px 0;
}

.signup form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

input[type="email"] {
  flex: 1 1 260px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 15px;
  font-size: 1rem;
}

button,
.button {
  border: 0;
  border-radius: 14px;
  padding: 14px 17px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

button:hover,
.button:hover {
  background: var(--accent-dark);
}

.status {
  margin-top: 12px;
  font-weight: 700;
}

.status.good {
  color: var(--good);
}

.status.bad {
  color: var(--bad);
}

.article {
  max-width: 820px;
  margin: 24px auto 40px;
}

.article p,
.article li {
  font-size: 1.05rem;
}

footer {
  border-top: 1px solid var(--line);
  margin-top: 48px;
  padding: 28px 0 44px;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Kiloparse glow reinforcement */
:root {
  --kiloparse-glow-a: rgba(122, 92, 255, 0.22);
  --kiloparse-glow-b: rgba(38, 198, 218, 0.18);
  --kiloparse-glow-c: rgba(255, 194, 102, 0.16);
}

body {
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: -20%;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 12% 18%, var(--kiloparse-glow-a), transparent 34%),
    radial-gradient(circle at 88% 12%, var(--kiloparse-glow-b), transparent 32%),
    radial-gradient(circle at 50% 92%, var(--kiloparse-glow-c), transparent 38%);
  filter: blur(6px);
}

body > * {
  position: relative;
  z-index: 1;
}

.hero,
main section,
article,
form,
.card,
.panel,
.newsletter-card,
.article-card,
.signup-card {
  box-shadow:
    0 18px 50px rgba(30, 31, 36, 0.08),
    0 0 38px rgba(122, 92, 255, 0.08);
}

.hero h1,
h1,
.logo {
  text-shadow: 0 0 24px rgba(122, 92, 255, 0.16);
}

button,
.button,
.cta,
input[type="submit"] {
  box-shadow:
    0 10px 28px rgba(30, 31, 36, 0.12),
    0 0 22px rgba(38, 198, 218, 0.16);
}

/* Kiloparse monetization content build */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 1rem;
}

.content-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1.25rem;
}

.article-page .lede,
.hero p {
  font-size: 1.08rem;
  line-height: 1.75;
}

.panel,
.card,
.newsletter-card {
  border: 1px solid rgba(30, 31, 36, 0.08);
  border-radius: 24px;
  padding: 1.25rem;
  margin: 1rem 0;
  background: rgba(255, 255, 255, 0.82);
}

.checklist {
  padding-left: 1.25rem;
}

.checklist li {
  margin: 0.55rem 0;
}

.site-footer nav,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button,
button {
  border-radius: 999px;
  padding: 0.75rem 1rem;
  text-decoration: none;
}

.eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.75;
}

/* Kiloparse glow reinforcement */
:root {
  --kiloparse-glow-a: rgba(122, 92, 255, 0.22);
  --kiloparse-glow-b: rgba(38, 198, 218, 0.18);
  --kiloparse-glow-c: rgba(255, 194, 102, 0.16);
}

body {
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: -20%;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 12% 18%, var(--kiloparse-glow-a), transparent 34%),
    radial-gradient(circle at 88% 12%, var(--kiloparse-glow-b), transparent 32%),
    radial-gradient(circle at 50% 92%, var(--kiloparse-glow-c), transparent 38%);
  filter: blur(6px);
}

body > * {
  position: relative;
  z-index: 1;
}

.hero,
main section,
article,
form,
.card,
.panel,
.newsletter-card {
  box-shadow:
    0 18px 50px rgba(30, 31, 36, 0.08),
    0 0 38px rgba(122, 92, 255, 0.08);
}

.hero h1,
h1,
.logo {
  text-shadow: 0 0 24px rgba(122, 92, 255, 0.16);
}

button,
.button,
.cta,
input[type="submit"] {
  box-shadow:
    0 10px 28px rgba(30, 31, 36, 0.12),
    0 0 22px rgba(38, 198, 218, 0.16);
}

/* Kiloparse final monetization content build */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(245px, 1fr)); gap: 1rem; }
.content-page { max-width: 900px; margin: 0 auto; padding: 3rem 1.25rem; }
.article-page .lede, .hero p { font-size: 1.08rem; line-height: 1.75; }
.panel, .card, .newsletter-card { border: 1px solid rgba(30, 31, 36, 0.08); border-radius: 24px; padding: 1.25rem; margin: 1rem 0; background: rgba(255, 255, 255, 0.82); }
.checklist { padding-left: 1.25rem; }
.checklist li { margin: 0.55rem 0; }
.site-footer nav, .hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.button, button { border-radius: 999px; padding: 0.75rem 1rem; text-decoration: none; }
.eyebrow { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.75; }
:root { --kiloparse-glow-a: rgba(122, 92, 255, 0.22); --kiloparse-glow-b: rgba(38, 198, 218, 0.18); --kiloparse-glow-c: rgba(255, 194, 102, 0.16); }
body { position: relative; overflow-x: hidden; }
body::before { content: ""; position: fixed; inset: -20%; pointer-events: none; z-index: 0; background: radial-gradient(circle at 12% 18%, var(--kiloparse-glow-a), transparent 34%), radial-gradient(circle at 88% 12%, var(--kiloparse-glow-b), transparent 32%), radial-gradient(circle at 50% 92%, var(--kiloparse-glow-c), transparent 38%); filter: blur(6px); }
body > * { position: relative; z-index: 1; }
.hero, main section, article, form, .card, .panel, .newsletter-card { box-shadow: 0 18px 50px rgba(30, 31, 36, 0.08), 0 0 38px rgba(122, 92, 255, 0.08); }
.hero h1, h1, .logo { text-shadow: 0 0 24px rgba(122, 92, 255, 0.16); }
button, .button, .cta, input[type="submit"] { box-shadow: 0 10px 28px rgba(30, 31, 36, 0.12), 0 0 22px rgba(38, 198, 218, 0.16); }

/* KILOPARSE_PURPLE_UI_RESTORE_START */
:root {
  --kp-bg-deep: #05050b;
  --kp-panel-solid: #101018;
  --kp-panel-solid-2: #181827;
  --kp-text-main: #f6f1ff;
  --kp-text-muted: #cbc3dd;
  --kp-purple-hot: #df4dff;
}
html {
  background-color: var(--kp-bg-deep) !important;
  background-image: linear-gradient(rgba(5,5,11,0.22), rgba(5,5,11,0.48)), url("/assets/kiloparse-background.png") !important;
  background-size: cover !important;
  background-position: center center !important;
  background-attachment: fixed !important;
}
body {
  background: radial-gradient(circle at 18% 12%, rgba(176,0,255,0.12), transparent 30rem), radial-gradient(circle at 86% 18%, rgba(223,77,255,0.09), transparent 28rem), linear-gradient(rgba(5,5,11,0.20), rgba(5,5,11,0.42)), url("/assets/kiloparse-background.png") center center / cover fixed !important;
  color: var(--kp-text-main) !important;
  cursor: none;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background: rgba(4,4,10,0.34);
}
a, button, input, textarea, select, .card, .tile, .tool-card, .article-card, .guide-card, .resource-card, [class*="card"], [class*="tile"] {
  cursor: none;
}
.card, .tile, .tool-card, .article-card, .guide-card, .resource-card, .content-card, .feature-card, .post-card, [class*="card"], [class*="tile"] {
  background: linear-gradient(145deg, var(--kp-panel-solid), var(--kp-panel-solid-2)) !important;
  border: 1px solid rgba(223,77,255,0.22) !important;
  color: var(--kp-text-main) !important;
  box-shadow: 0 14px 34px rgba(0,0,0,0.46) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.card p, .tile p, .tool-card p, .article-card p, .guide-card p, .resource-card p, .content-card p, .feature-card p, .post-card p, [class*="card"] p, [class*="tile"] p {
  color: var(--kp-text-muted) !important;
}
.card:hover, .card:focus-within, .tile:hover, .tile:focus-within, .tool-card:hover, .tool-card:focus-within, .article-card:hover, .article-card:focus-within, .guide-card:hover, .guide-card:focus-within, .resource-card:hover, .resource-card:focus-within, .content-card:hover, .content-card:focus-within, .feature-card:hover, .feature-card:focus-within, .post-card:hover, .post-card:focus-within, [class*="card"]:hover, [class*="card"]:focus-within, [class*="tile"]:hover, [class*="tile"]:focus-within {
  border-color: var(--kp-purple-hot) !important;
  box-shadow: 0 0 0 1px rgba(223,77,255,0.92), 0 0 22px rgba(176,0,255,0.90), 0 0 52px rgba(223,77,255,0.56), 0 18px 42px rgba(0,0,0,0.58) !important;
  transform: translateY(-2px);
  transition: box-shadow 180ms ease, border-color 180ms ease, transform 180ms ease;
}
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--kp-purple-hot) !important;
  outline-offset: 4px !important;
  box-shadow: 0 0 0 4px rgba(176,0,255,0.30), 0 0 24px rgba(223,77,255,0.72) !important;
}
.kp-cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  width: 34px;
  height: 34px;
  margin-left: -17px;
  margin-top: -17px;
  border-radius: 999px;
  pointer-events: none;
  z-index: 999999;
  opacity: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.95) 0 7%, rgba(223,77,255,0.98) 8% 21%, rgba(176,0,255,0.46) 35%, rgba(176,0,255,0) 74%);
  box-shadow: 0 0 14px rgba(223,77,255,0.98), 0 0 32px rgba(176,0,255,0.86), 0 0 62px rgba(176,0,255,0.52);
  transform: translate3d(-999px, -999px, 0);
  transition: opacity 160ms ease, transform 40ms linear;
  animation: kpCursorPulse 1.7s ease-in-out infinite;
}
@keyframes kpCursorPulse {
  0%, 100% { filter: saturate(1.05); box-shadow: 0 0 14px rgba(223,77,255,0.98), 0 0 32px rgba(176,0,255,0.86), 0 0 62px rgba(176,0,255,0.52); }
  50% { filter: saturate(1.4); box-shadow: 0 0 18px rgba(223,77,255,1), 0 0 44px rgba(176,0,255,0.98), 0 0 86px rgba(176,0,255,0.62); }
}
@media (pointer: coarse), (prefers-reduced-motion: reduce) {
  body, a, button, input, textarea, select, .card, .tile, .tool-card, .article-card, .guide-card, .resource-card, [class*="card"], [class*="tile"] { cursor: auto; }
  .kp-cursor-glow { display: none; }
  .card:hover, .tile:hover, .tool-card:hover, .article-card:hover, .guide-card:hover, .resource-card:hover, [class*="card"]:hover, [class*="tile"]:hover { transform: none; }
}
/* KILOPARSE_PURPLE_UI_RESTORE_END */

/* KILOPARSE_SLEEK_TITLE_FIX_START */
.brand, .brand-name, .site-title, .site-logo, .logo, .logo-text, .navbar-brand, header a[href="/"], header a[href="./"], header .brand a {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-weight: 300 !important;
  letter-spacing: 0.025em !important;
  text-transform: none !important;
}
.brand strong, .brand-name strong, .site-title strong, .site-logo strong, .logo strong, .logo-text strong {
  font-weight: 350 !important;
}
.logo-v, .brand-v, .site-v, .kp-v, .brand-mark, .logo-mark, .site-logo-mark, .kp-logo-mark, [data-logo-letter="V"], [aria-label="V"] {
  font-size: 80% !important;
  transform: scale(0.8) !important;
  transform-origin: center center !important;
}
/* KILOPARSE_SLEEK_TITLE_FIX_END */

/* KILOPARSE_DONATION_FIX_START */
.support-card {
  margin: 2rem auto;
  padding: 1.5rem;
  max-width: 780px;
  border-radius: 24px;
  background: linear-gradient(145deg, #101018, #181827) !important;
  border: 1px solid rgba(223, 77, 255, 0.24) !important;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.42) !important;
}
.support-card h2 {
  margin-top: 0;
  font-weight: 500;
}
.support-card p {
  color: #cbc3dd;
}
.support-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.85rem;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  text-decoration: none;
  color: #fff !important;
  background: linear-gradient(135deg, #8f00ff, #df4dff);
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 0 18px rgba(176,0,255,0.42);
  font-weight: 600;
}
.support-button:hover, .support-button:focus-visible {
  box-shadow: 0 0 0 1px rgba(223,77,255,0.92), 0 0 28px rgba(176,0,255,0.86), 0 0 58px rgba(223,77,255,0.48);
}
/* KILOPARSE_DONATION_FIX_END */

/* KILOPARSE_FACT_BASED_DARK_FIX_START */
html, body {
  min-height: 100%;
  background-color: #05050b !important;
  background-image: linear-gradient(rgba(5,5,11,0.46), rgba(5,5,11,0.68)), url("/assets/kiloparse-background.png") !important;
  background-size: cover !important;
  background-position: center center !important;
  background-attachment: fixed !important;
  color: #ffffff !important;
}
body {
  cursor: none;
}
h1, h2, h3, h4, h5, h6, strong, b, .logo, nav a, header a {
  color: #ffffff !important;
}
p, li, span, small, label {
  color: #ddd6ee !important;
}
a {
  color: #f0b8ff !important;
}
a:hover, a:focus-visible, nav a:hover, nav a:focus-visible {
  color: #ffffff !important;
  text-shadow: 0 0 14px rgba(223,77,255,0.95), 0 0 30px rgba(159,0,255,0.65);
}
.logo {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-weight: 300 !important;
  letter-spacing: 0.02em !important;
}
.panel, .card, .tile, .tool-card, .article-card, .guide-card, .resource-card, .content-card, .feature-card, .post-card, .support-card, [class*="card"], [class*="tile"] {
  background: linear-gradient(145deg, #101018, #171724) !important;
  color: #ffffff !important;
  border: 1px solid rgba(223,77,255,0.30) !important;
  box-shadow: 0 14px 34px rgba(0,0,0,0.56) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.panel p, .card p, .tile p, .support-card p, [class*="card"] p, [class*="tile"] p {
  color: #ddd6ee !important;
}
.panel:hover, .panel:focus-within, .card:hover, .card:focus-within, .tile:hover, .tile:focus-within, .support-card:hover, .support-card:focus-within, [class*="card"]:hover, [class*="card"]:focus-within, [class*="tile"]:hover, [class*="tile"]:focus-within {
  border-color: #df4dff !important;
  box-shadow: 0 0 0 1px rgba(223,77,255,0.90), 0 0 24px rgba(159,0,255,0.90), 0 0 58px rgba(223,77,255,0.52), 0 18px 42px rgba(0,0,0,0.62) !important;
}
.contact-page {
  max-width: 760px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.contact-page .panel {
  width: min(100%, 520px) !important;
  max-width: 520px !important;
  min-height: 0 !important;
  padding: 1.15rem 1.3rem !important;
  margin: 1.25rem 0 1.75rem 0 !important;
}
.contact-page .panel h2 {
  margin-top: 0 !important;
  margin-bottom: 0.7rem !important;
}
.kp-cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  width: 34px;
  height: 34px;
  margin-left: -17px;
  margin-top: -17px;
  border-radius: 999px;
  pointer-events: none;
  z-index: 999999;
  opacity: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.95) 0 7%, rgba(223,77,255,0.98) 8% 21%, rgba(159,0,255,0.50) 35%, rgba(159,0,255,0) 74%);
  box-shadow: 0 0 14px rgba(223,77,255,0.98), 0 0 34px rgba(159,0,255,0.88), 0 0 68px rgba(159,0,255,0.58);
  transform: translate3d(-999px, -999px, 0);
  transition: opacity 160ms ease, transform 40ms linear;
  animation: kpFinalCursorPulse 1.7s ease-in-out infinite;
}
@keyframes kpFinalCursorPulse {
  0%, 100% { filter: saturate(1.05); }
  50% { filter: saturate(1.55); box-shadow: 0 0 18px rgba(223,77,255,1), 0 0 46px rgba(159,0,255,1), 0 0 90px rgba(159,0,255,0.66); }
}
@media (pointer: coarse), (prefers-reduced-motion: reduce) {
  body { cursor: auto; }
  .kp-cursor-glow { display: none !important; }
}
/* KILOPARSE_FACT_BASED_DARK_FIX_END */

/* KILOPARSE_FINAL_DESKTOP_SOFT_CURSOR_START */
html, body {
  background-color: #020207 !important;
  background-image: linear-gradient(rgba(0,0,0,0.58), rgba(0,0,0,0.76)), url("/assets/kiloparse-background.png") !important;
}
.logo {
  font-size: 115% !important;
}
body, a, button, input, textarea, select {
  cursor: none;
}
.kp-cursor-glow {
  width: 86px !important;
  height: 86px !important;
  margin-left: -43px !important;
  margin-top: -43px !important;
  opacity: 0;
  background: radial-gradient(circle, rgba(204,72,255,0.50) 0%, rgba(176,0,255,0.38) 24%, rgba(135,0,255,0.22) 45%, rgba(120,0,255,0.10) 64%, rgba(120,0,255,0) 78%) !important;
  filter: blur(8px) saturate(1.18) !important;
  box-shadow: 0 0 30px rgba(205,72,255,0.44), 0 0 72px rgba(145,0,255,0.34), 0 0 118px rgba(120,0,255,0.22) !important;
  transition: opacity 120ms ease !important;
  animation: kpSoftPurpleSmoke 2.8s ease-in-out infinite !important;
}
@keyframes kpSoftPurpleSmoke {
  0%, 100% { filter: blur(8px) saturate(1.10); transform: translate3d(var(--kp-cursor-x, -999px), var(--kp-cursor-y, -999px), 0) scale(0.96); }
  50% { filter: blur(10px) saturate(1.22); transform: translate3d(var(--kp-cursor-x, -999px), var(--kp-cursor-y, -999px), 0) scale(1.05); }
}
.panel:hover, .panel:focus-within, .card:hover, .card:focus-within, .tile:hover, .tile:focus-within, .support-card:hover, .support-card:focus-within, [class*="card"]:hover, [class*="card"]:focus-within, [class*="tile"]:hover, [class*="tile"]:focus-within {
  box-shadow: 0 0 0 1px rgba(223,77,255,0.78), 0 0 21px rgba(159,0,255,0.78), 0 0 52px rgba(223,77,255,0.46), 0 18px 42px rgba(0,0,0,0.62) !important;
}
.button, a.button, button, input[type="submit"] {
  background: linear-gradient(135deg, #00aaff, #00e5ff) !important;
  color: #ffffff !important;
  border: 1px solid rgba(160,245,255,0.72) !important;
  box-shadow: 0 0 18px rgba(0,229,255,0.44), 0 0 38px rgba(0,170,255,0.28) !important;
}
.button:hover, a.button:hover, button:hover, input[type="submit"]:hover, .button:focus-visible, a.button:focus-visible, button:focus-visible, input[type="submit"]:focus-visible {
  box-shadow: 0 0 0 1px rgba(160,245,255,0.82), 0 0 22px rgba(0,229,255,0.70), 0 0 52px rgba(0,170,255,0.42) !important;
}
main:not(.content-page) {
  width: min(94vw, 1240px) !important;
  max-width: 1240px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
main:not(.content-page) > section {
  max-width: none !important;
}
main:not(.content-page) > section:not(:first-child) {
  width: 100% !important;
}
@media (min-width: 980px) {
  main:not(.content-page) {
    display: grid !important;
    grid-template-columns: minmax(360px, 0.85fr) minmax(520px, 1.15fr) !important;
    gap: 1.15rem !important;
    align-items: start !important;
  }
  main:not(.content-page) > section:first-child {
    grid-column: 1 !important;
    position: sticky !important;
    top: 1.2rem !important;
  }
  main:not(.content-page) > section:not(:first-child) {
    grid-column: 2 !important;
  }
  .newsletter-card, .support-card {
    max-width: none !important;
  }
}
@media (pointer: coarse), (prefers-reduced-motion: reduce) {
  body, a, button, input, textarea, select { cursor: auto !important; }
  .kp-cursor-glow { display: none !important; }
}
/* KILOPARSE_FINAL_DESKTOP_SOFT_CURSOR_END */
