/* ============================================================
   Terminal Utilitarian — design system
   One accent, near-black void, monospace-forward.
   ============================================================ */

:root {
  /* Color story: dominant void, rare electric cyan-blue accent, neutral ramp.
     These defaults are the DARK theme; the light theme overrides the color
     tokens below via [data-theme="light"] (and the no-JS media fallback). */
  --void:      #0a0a0a;
  --void-2:    #101312;   /* raised surfaces */
  --void-3:    #161a19;   /* borders on dark */
  --accent:    #22d3ee;   /* electric cyan-blue — used sparingly */
  --accent-dim:#06b6d4;
  --ink:       #e8ece9;   /* primary text */
  --ink-2:     #9aa39d;   /* secondary text */
  --ink-3:     #5c6560;   /* tertiary / labels */
  --line:      #232826;   /* hairlines */
  --red:       #ff5f57;
  --yellow:    #febc2e;
  --green:     #28c840;
  --glow-rgb:  34, 211, 238;  /* accent as rgb, for soft glows/shadows */
  color-scheme: dark;

  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --sans: "IBM Plex Sans", system-ui, sans-serif;

  /* Spacing rhythm — powers of a base step */
  --s1: 0.5rem;  --s2: 1rem;   --s3: 1.5rem;
  --s4: 2.5rem;  --s5: 4rem;   --s6: 6.5rem;

  --maxw: 940px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* ---------- LIGHT THEME (Solarized Light) ----------
   Cream base3 background with muted Solarized ink tones. The accent is
   deepened from Solarized cyan (which fails AA on cream) to a teal-cyan
   that keeps the brand hue while passing contrast for text and links. */
:root[data-theme="light"] {
  --void:      #fdf6e3;   /* base3 — page background */
  --void-2:    #f3edd9;   /* raised surfaces */
  --void-3:    #e9e2cd;   /* chrome / grid lines */
  --accent:    #0e7490;   /* deep teal-cyan — AA on cream */
  --accent-dim:#155e75;
  --ink:       #073642;   /* base02 — headings / primary */
  --ink-2:     #52646b;   /* ~base01 — body text */
  --ink-3:     #93a1a1;   /* base1 — faint labels */
  --line:      #e3dcc6;   /* hairlines */
  --red:       #dc322f;   /* solarized red */
  --yellow:    #b58900;   /* solarized yellow */
  --green:     #859900;   /* solarized green */
  --glow-rgb:  14, 116, 144;
  color-scheme: light;
}

/* No-JS fallback: honour the OS setting when the head script can't run.
   (With JS, data-theme is always set, so this never applies.) */
@media (prefers-color-scheme: light) {
  :root:not([data-theme]) {
    --void:      #fdf6e3;
    --void-2:    #f3edd9;
    --void-3:    #e9e2cd;
    --accent:    #0e7490;
    --accent-dim:#155e75;
    --ink:       #073642;
    --ink-2:     #52646b;
    --ink-3:     #93a1a1;
    --line:      #e3dcc6;
    --red:       #dc322f;
    --yellow:    #b58900;
    --green:     #859900;
    --glow-rgb:  14, 116, 144;
    color-scheme: light;
  }
}

* { box-sizing: border-box; }

/* Selection: cyan accent on void instead of the default browser blue */
::selection { background: var(--accent); color: var(--void); }
::-moz-selection { background: var(--accent); color: var(--void); }

/* Form fields (future-proof): terminal-style blinking-cyan caret */
input, textarea, select {
  caret-color: var(--accent);
  accent-color: var(--accent);
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--void);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease);
}

/* Subtle terminal grid behind everything */
.grid-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(var(--void-3) 1px, transparent 1px),
    linear-gradient(90deg, var(--void-3) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 20%, transparent 75%);
  opacity: 0.5;
}

a { color: inherit; }

.skip {
  position: absolute;
  left: -9999px;
  top: var(--s2);
  background: var(--accent);
  color: var(--void);
  padding: var(--s1) var(--s2);
  border-radius: 4px;
  font-family: var(--mono);
  z-index: 100;
}
.skip:focus { left: var(--s2); }

/* ---------- NAV ---------- */
.nav {
  display: flex;
  align-items: center;
  gap: var(--s3);
  max-width: var(--maxw);
  margin: 0 auto;
  padding: var(--s3) var(--s3) 0;
  font-family: var(--mono);
  font-size: 0.9rem;
}
.brand { text-decoration: none; font-weight: 700; letter-spacing: -0.02em; }
.brand-bracket { color: var(--accent); }
.cursor-static { color: var(--accent); }
.nav nav { display: flex; gap: var(--s3); margin-left: auto; }
.nav nav a {
  text-decoration: none;
  color: var(--ink-2);
  position: relative;
  transition: color 0.2s var(--ease);
}
.nav nav a:hover { color: var(--accent); }
.nav nav a::after {
  content: "";
  position: absolute; left: 0; bottom: -4px;
  width: 0; height: 1px; background: var(--accent);
  transition: width 0.25s var(--ease);
}
.nav nav a:hover::after { width: 100%; }
.status {
  display: inline-flex; align-items: center; gap: 0.5em;
  color: var(--ink-3); font-size: 0.8rem;
}
.status .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse { 50% { opacity: 0.35; } }

/* Theme toggle — a pill switch with a sliding accent knob and faint
   sun/moon guides. Knob sits on the sun (light) or moon (dark) side. */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  padding: 0;
  background: none;
  border: 0;
}
.tt-track {
  position: relative;
  display: inline-block;
  width: 54px; height: 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--void-2);
  transition: border-color 0.2s var(--ease);
}
.theme-toggle:hover .tt-track { border-color: var(--accent); }
.tt-knob {
  position: absolute;
  top: 3px; left: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--void);              /* icon color, high contrast on the knob */
  transition: transform 0.25s var(--ease), background 0.2s var(--ease);
}
/* Dark: knob on the moon (right) side; Light: knob on the sun (left) side */
:root[data-theme="dark"] .tt-knob { transform: translateX(26px); }
:root[data-theme="light"] .tt-knob { transform: translateX(0); }
.tt-icon { width: 13px; height: 13px; display: none; }
:root[data-theme="light"] .tt-icon-sun { display: block; }
:root[data-theme="dark"] .tt-icon-moon { display: block; }
.theme-toggle:focus-visible { outline: none; }
.theme-toggle:focus-visible .tt-track {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Narrow screens: let the header + links wrap, drop the non-essential status */
@media (max-width: 620px) {
  .nav { flex-wrap: wrap; gap: var(--s1) var(--s2); font-size: 0.82rem; }
  .nav nav { flex-wrap: wrap; gap: var(--s1) var(--s2); margin-left: 0; }
  .status { display: none; }
}

/* ---------- HERO ---------- */
.hero {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: var(--s6) var(--s3) var(--s5);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s5);
  align-items: center;
}
@media (max-width: 760px) {
  .hero { grid-template-columns: 1fr; gap: var(--s4); padding-top: var(--s5); }
}

/* Terminal window — the differentiation anchor */
.terminal {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--void-2);
  box-shadow: 0 24px 60px -30px rgba(var(--glow-rgb), 0.25),
              0 0 0 1px rgba(255,255,255,0.02) inset;
  overflow: hidden;
  font-family: var(--mono);
}
.terminal-chrome {
  display: flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.7em 0.9em;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(var(--void-3), var(--void-2));
}
.tdot { width: 12px; height: 12px; border-radius: 50%; }
.tdot--r { background: var(--red); }
.tdot--y { background: var(--yellow); }
.tdot--g { background: var(--green); }
.terminal-title {
  margin-left: auto; color: var(--ink-3); font-size: 0.75rem;
}
.terminal-body { padding: var(--s3); font-size: 0.92rem; min-height: 190px; }
.line { margin: 0 0 0.4em; white-space: pre-wrap; }
.prompt { color: var(--accent); margin-right: 0.6em; }
.out { color: var(--ink); }
.cursor {
  display: inline-block;
  width: 0.6em; height: 1.05em;
  background: var(--accent);
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: blink 1s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

.hero-copy h1 {
  font-family: var(--mono);
  font-weight: 700;
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 var(--s3);
}
.accent { color: var(--accent); }
.lede { color: var(--ink-2); max-width: 42ch; margin: 0 0 var(--s3); }

.cta-row { display: flex; gap: var(--s2); flex-wrap: wrap; }
.btn {
  font-family: var(--mono);
  font-size: 0.9rem;
  text-decoration: none;
  padding: 0.7em 1.3em;
  border-radius: 6px;
  border: 1px solid var(--accent);
  transition: transform 0.15s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
  cursor: pointer;
}
.btn--solid { background: var(--accent); color: var(--void); font-weight: 500; }
.btn--solid:hover { transform: translateY(-2px); box-shadow: 0 8px 20px -8px var(--accent); }
.btn--ghost { background: transparent; color: var(--accent); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--accent); transform: translateY(-2px); }

/* ---------- SECTIONS ---------- */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: var(--s5) var(--s3);
  border-top: 1px solid var(--line);
}
.section-index {
  font-family: var(--mono);
  color: var(--accent-dim);
  font-size: 0.8rem;
  margin: 0 0 var(--s1);
}
.section-h {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--ink-3);
  margin: 0 0 var(--s3);
}
/* Deep-link anchor: a faint "#" that fades in on heading hover */
.section-h .anchor {
  text-decoration: none;
  color: var(--accent);
  margin-left: 0.4em;
  opacity: 0;
  transition: opacity 0.2s var(--ease);
}
.section-h .anchor::before { content: "#"; }
.section-h:hover .anchor,
.section-h .anchor:focus-visible { opacity: 0.6; }
.section-h .anchor:hover { opacity: 1; }

.prose { max-width: 62ch; color: var(--ink-2); }
.prose em { color: var(--ink); font-style: normal; border-bottom: 1px dashed var(--ink-3); }
/* Inline prose links: same accent underline-wipe as the nav */
.prose a {
  text-decoration: none;
  color: var(--accent);
  position: relative;
}
.prose a::after {
  content: "";
  position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1px; background: var(--accent);
  transition: width 0.25s var(--ease);
}
.prose a:hover::after { width: 100%; }

/* About meta — compact experience/education key-value list */
.meta {
  margin: var(--s3) 0 0;
  display: grid;
  gap: 0.5rem;
  font-family: var(--mono);
  font-size: 0.82rem;
  max-width: 62ch;
}
.meta-row { display: flex; gap: var(--s2); align-items: baseline; }
.meta-row dt {
  flex: 0 0 4.5rem;
  color: var(--accent-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.7rem;
}
.meta-row dd { margin: 0; color: var(--ink-2); }
.meta-row dd a { color: var(--accent); text-decoration: none; }
.meta-row dd a:hover { text-decoration: underline; }
.meta-yr { color: var(--ink-3); }
.meta-sep { color: var(--ink-3); margin: 0 0.2em; }
@media (max-width: 620px) {
  .meta-row { flex-direction: column; gap: 0.1rem; }
  .meta-row dt { flex: none; }
}

/* Stack — periodic table of tools */
.pt { display: flex; flex-direction: column; }
.pt-row {
  display: flex;
  gap: var(--s3);
  align-items: flex-start;
  padding: var(--s2) 0;
  border-top: 1px solid var(--line);
}
.pt-row:last-of-type { border-bottom: 1px solid var(--line); }
.pt-cat {
  flex: 0 0 4.5rem;
  margin: 0;
  padding-top: 0.55rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: flex;
  gap: 0.45rem;
  align-items: baseline;
}
.pt-cat-n { color: var(--accent); }
.pt-tiles {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.pt-el {
  position: relative;
  width: 84px;
  height: 84px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--void-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  cursor: default;
  outline: none;
}
.pt-el:hover, .pt-el:focus-visible {
  border-color: var(--accent-dim);
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(var(--glow-rgb), 0.16);
}
.pt-n { position: absolute; top: 6px; left: 8px; font-size: 0.56rem; color: var(--ink-3); }
.pt-sym { font-size: 1.6rem; font-weight: 600; color: var(--ink); line-height: 1; }
.pt-name {
  margin-top: 0.4rem;
  font-size: 0.58rem;
  color: var(--ink-2);
  line-height: 1.15;
  text-align: center;
  max-width: 74px;
}
/* core competency: symbol lights up in accent + a small glowing dot */
.pt-el.core { border-color: rgba(var(--glow-rgb), 0.35); }
.pt-el.core .pt-sym { color: var(--accent); }
.pt-core-dot {
  position: absolute;
  top: 8px; right: 8px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px rgba(var(--glow-rgb), 0.6);
}
.pt-legend {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: var(--s2) 0 0;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--ink-3);
}
.pt-legend-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px rgba(var(--glow-rgb), 0.6);
}

@media (max-width: 620px) {
  .pt-row { flex-direction: column; gap: 0.6rem; }
  .pt-cat { flex: none; padding-top: 0; }
}

/* Projects */
.projects { display: grid; gap: var(--s2); }
.project {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: var(--s3);
  background: var(--void-2);
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.project:hover { border-color: var(--accent-dim); transform: translateX(4px); }
.project-top { display: flex; align-items: center; margin-bottom: var(--s2); }
.project-no { font-family: var(--mono); color: var(--ink-3); font-size: 0.8rem; }
.project-links { margin-left: auto; display: flex; gap: var(--s2); font-family: var(--mono); font-size: 0.82rem; }
.project-links a { color: var(--ink-2); text-decoration: none; }
.project-links a:hover { color: var(--accent); }
.project h3 { font-family: var(--mono); margin: 0 0 0.4em; font-size: 1.15rem; }
.project-badge {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--accent);
  border: 1px solid rgba(var(--glow-rgb), 0.35);
  border-radius: 4px;
  padding: 0.15em 0.5em;
  margin-left: 0.5em;
  vertical-align: middle;
  letter-spacing: 0.03em;
}
.project p { margin: 0 0 var(--s2); color: var(--ink-2); max-width: 60ch; }
.tags { list-style: none; display: flex; gap: 0.5em; flex-wrap: wrap; padding: 0; margin: 0; }
.tags li {
  font-family: var(--mono); font-size: 0.72rem;
  color: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0.2em 0.6em;
}

/* Work-in-progress placeholder (terminal-styled "still cooking") */
.wip {
  border: 1px dashed var(--line);
  border-radius: 8px;
  padding: var(--s4) var(--s3);
  background: var(--void-2);
  font-family: var(--mono);
}
.wip-line { margin: 0 0 0.45em; font-size: 0.95rem; color: var(--ink); }
.wip-line .prompt { margin-right: 0.6em; }
.wip-hint {
  margin: var(--s2) 0 0;
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--ink-2);
  max-width: 52ch;
}
.wip-hint a { color: var(--accent); text-decoration: none; }
.wip-hint a:hover { text-decoration: underline; }

/* Contact */
.contact-row { display: flex; gap: var(--s2); flex-wrap: wrap; margin-top: var(--s3); }

/* Footer */
.footer {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: var(--s4) var(--s3) var(--s5);
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: var(--s2);
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--ink-3);
  flex-wrap: wrap;
}

/* Reveal-on-scroll (sparse motion) */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
/* No-JS fallback: the <head> script adds `js` only when JS runs. Without it
   (JS disabled), the hidden state is overridden so all sections stay visible. */
html:not(.js) .reveal { opacity: 1; transform: none; }

/* Focus visibility — accessibility */
a:focus-visible, .btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- SCROLL PROGRESS BAR ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  z-index: 200;
  pointer-events: none;
  transition: none;
}

/* ---------- ACTIVE NAV LINK ---------- */
.nav nav a.active { color: var(--accent); }
.nav nav a.active::after { width: 100%; }

/* ---------- STAGGERED REVEALS ---------- */
.pt-el,
.projects .project {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
.pt-el.in,
.projects .project.in {
  opacity: 1;
  transform: none;
}
/* No-JS fallback: never leave the staggered rows hidden without JS. */
html:not(.js) .pt-el,
html:not(.js) .projects .project {
  opacity: 1;
  transform: none;
}

/* ---------- NOISE GRAIN OVERLAY ---------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.04;
  mix-blend-mode: screen;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- PROJECT CARD GLOW ---------- */
.project {
  position: relative;
  overflow: hidden;
}
.project-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  background: radial-gradient(
    320px circle at var(--gx, 50%) var(--gy, 50%),
    rgba(var(--glow-rgb), 0.12),
    transparent 60%
  );
}
.project:hover .project-glow { opacity: 1; }

/* Respect reduced-motion: kill all non-essential motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .cursor { opacity: 1; }
  .pt-el, .projects .project { opacity: 1; transform: none; }
  .scroll-progress { display: none; }
}

/* ============================================================
   Micro-interactions (progressive enhancement)
   ============================================================ */

/* Cursor-reactive glow — decorative, created by JS only on fine-pointer,
   motion-OK devices. Sits behind content, above the grid. */
.cursor-glow {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(
    280px circle at var(--mx, 50%) var(--my, 50%),
    rgba(var(--glow-rgb), 0.10),
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.cursor-glow.on { opacity: 1; }

/* Boot sequence log lines (decorative, injected then removed) */
.boot-line { color: var(--ink-2); }

/* Pixel-art cursor — blocky white arrow (Minecraft/retro look), inline SVG.
   Electric cyan-blue variant over clickable elements. Hotspot at the tip (0,0).
   Falls back to the system arrow/pointer if the data URI is unsupported. */
body {
  cursor:
    url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='32'%20height='32'%20viewBox='0%200%2032%2032'%3E%3Cpath%20d='M0,0L0,26L6,19L11,29L14,27L10,18L18,18Z'%20fill='white'%20stroke='black'%20stroke-width='1.5'%20stroke-linejoin='miter'%20shape-rendering='crispEdges'/%3E%3C/svg%3E")
    0 0, auto;
}
a, button, .btn, label, summary, [role="button"] {
  cursor:
    url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='32'%20height='32'%20viewBox='0%200%2032%2032'%3E%3Cpath%20d='M0,0L0,26L6,19L11,29L14,27L10,18L18,18Z'%20fill='%2322d3ee'%20stroke='black'%20stroke-width='1.5'%20stroke-linejoin='miter'%20shape-rendering='crispEdges'/%3E%3C/svg%3E")
    0 0, pointer;
}

/* ---------- LIGHT-THEME OVERRIDES ----------
   Fix decorative bits that assume a dark canvas: the noise grain (screen
   blend disappears on cream → multiply), and the pixel cursors (a white
   arrow vanishes on cream → dark arrow; the accent arrow uses the light
   accent). Cursors are keyed on data-theme, which JS always sets. */
:root[data-theme="light"] .grain {
  mix-blend-mode: multiply;
  opacity: 0.035;
}
:root[data-theme="light"] body {
  cursor:
    url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='32'%20height='32'%20viewBox='0%200%2032%2032'%3E%3Cpath%20d='M0,0L0,26L6,19L11,29L14,27L10,18L18,18Z'%20fill='%23073642'%20stroke='%23fdf6e3'%20stroke-width='1.5'%20stroke-linejoin='miter'%20shape-rendering='crispEdges'/%3E%3C/svg%3E")
    0 0, auto;
}
:root[data-theme="light"] a,
:root[data-theme="light"] button,
:root[data-theme="light"] .btn,
:root[data-theme="light"] label,
:root[data-theme="light"] summary,
:root[data-theme="light"] [role="button"] {
  cursor:
    url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='32'%20height='32'%20viewBox='0%200%2032%2032'%3E%3Cpath%20d='M0,0L0,26L6,19L11,29L14,27L10,18L18,18Z'%20fill='%230e7490'%20stroke='%23fdf6e3'%20stroke-width='1.5'%20stroke-linejoin='miter'%20shape-rendering='crispEdges'/%3E%3C/svg%3E")
    0 0, pointer;
}
