:root {
  color-scheme: light;
  --ink: #17212b;
  --muted: #667085;
  --soft: #8a7968;
  --line: #d9ded8;
  --paper: #f7f2ea;
  --surface: #fffdf8;
  --accent: #0f766e;
  --accent-dark: #124b45;
  --rust: #a33f2f;
  --gold: #c89b3c;
  --shadow: 0 18px 50px rgba(36, 43, 37, 0.12);
}
* { box-sizing: border-box; }
html { min-width: 320px; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 12%, rgba(200, 155, 60, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(15, 118, 110, 0.08), transparent 34%),
    var(--paper);
  line-height: 1.65;
}
a { color: inherit; }
.page-shell { min-height: 100vh; }
.site-header,
main,
.site-footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 820;
  text-decoration: none;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fffdf8;
  background: linear-gradient(145deg, var(--accent-dark), var(--rust));
  box-shadow: 0 10px 28px rgba(15, 118, 110, 0.22);
  font-size: 13px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid rgba(23, 33, 43, 0.1);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.72);
  backdrop-filter: blur(14px);
}
.site-nav a {
  min-width: 54px;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
  text-decoration: none;
}
.site-nav a:hover { color: var(--accent-dark); background: rgba(15, 118, 110, 0.1); }
main { padding: 42px 0 70px; }
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 44px;
  align-items: end;
  min-height: 420px;
  padding: 58px 0 38px;
  border-top: 1px solid rgba(23, 33, 43, 0.08);
  border-bottom: 1px solid rgba(23, 33, 43, 0.08);
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--rust);
  font-size: 13px;
  font-weight: 760;
  text-transform: uppercase;
}
.hero h1,
.section-heading h1,
.article-header h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(46px, 8vw, 92px);
  line-height: 0.98;
  font-weight: 860;
}
.hero-text {
  max-width: 650px;
  margin-top: 22px;
  color: #394553;
  font-size: 20px;
}
.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(23, 33, 43, 0.1);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--accent), var(--gold), var(--rust));
}
.panel-kicker { color: var(--soft); font-size: 13px; font-weight: 760; }
.hero-panel strong { display: block; margin-top: 10px; font-size: 46px; line-height: 1; }
.hero-panel p { margin: 18px 0 0; color: var(--muted); }
.section-heading { padding: 52px 0 22px; border-top: 1px solid rgba(23, 33, 43, 0.08); }
.posts { display: grid; gap: 14px; margin-top: 34px; }
.post-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.post-card:last-child { border-bottom: 1px solid var(--line); }
time { display: block; color: var(--soft); font-size: 14px; margin-bottom: 7px; }
.post-card h2 { margin: 0; font-size: clamp(24px, 4vw, 38px); line-height: 1.15; }
.post-card h2 a { color: var(--ink); text-decoration: none; }
.post-card h2 a:hover { color: var(--accent-dark); }
.post-card p { max-width: 680px; margin: 10px 0 0; color: var(--muted); }
.read-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(15, 118, 110, 0.28);
  border-radius: 999px;
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 760;
  text-decoration: none;
  white-space: nowrap;
}
.read-link:hover { background: rgba(15, 118, 110, 0.1); }
.empty { color: var(--muted); }
.article { max-width: 820px; margin: 0 auto; padding-top: 34px; }
.back-link {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--accent-dark);
  font-weight: 760;
  text-decoration: none;
}
.article-header { padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.article-header h1 { font-size: clamp(40px, 7vw, 78px); }
.article-body {
  padding-top: 30px;
  color: #26313d;
  font-size: 19px;
}
.article-body p { margin: 0 0 22px; }
.article-body code {
  padding: 2px 6px;
  border-radius: 5px;
  background: rgba(15, 118, 110, 0.1);
  color: var(--accent-dark);
  font-size: 0.92em;
}
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 0 44px;
  border-top: 1px solid rgba(23, 33, 43, 0.1);
  color: var(--muted);
  font-size: 14px;
}
@media (max-width: 820px) {
  .site-header,
  main,
  .site-footer { width: min(100% - 28px, 1120px); }
  .site-header { align-items: flex-start; flex-direction: column; }
  .site-nav { width: 100%; justify-content: space-between; }
  .site-nav a { flex: 1; }
  main { padding-top: 26px; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 44px 0 30px; gap: 28px; }
  .hero-text { font-size: 18px; }
  .post-card { grid-template-columns: 1fr; gap: 14px; }
  .read-link { width: fit-content; }
  .site-footer { flex-direction: column; }
}
@media (max-width: 460px) {
  .hero h1,
  .section-heading h1,
  .article-header h1 { font-size: 42px; }
  .hero-panel { padding: 22px; }
  .post-card h2 { font-size: 25px; }
}

.magnetic-card {
  --mx: 50%;
  --my: 50%;
  --tx: 0px;
  --ty: 0px;
  --rx: 0deg;
  --ry: 0deg;
  isolation: isolate;
  cursor: pointer;
  transform: translate3d(var(--tx), var(--ty), 0) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  animation: magnetic-float 5.8s ease-in-out infinite;
  will-change: transform;
}
.magnetic-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(circle at var(--mx) var(--my), rgba(255, 255, 255, 0.9), rgba(15, 118, 110, 0.18) 24%, transparent 52%);
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
}
.magnetic-card.is-magnetized {
  border-color: rgba(15, 118, 110, 0.32);
  box-shadow: 0 26px 70px rgba(15, 118, 110, 0.18), 0 12px 28px rgba(36, 43, 37, 0.12);
  animation-play-state: paused;
}
.magnetic-card.is-magnetized::after { opacity: 1; }
.magnetic-card.is-pressed { transform: translate3d(var(--tx), var(--ty), 0) rotateX(var(--rx)) rotateY(var(--ry)) scale(0.985); }
@keyframes magnetic-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}
@media (max-width: 820px) {
  .magnetic-card { animation-duration: 6.8s; }
}
@media (prefers-reduced-motion: reduce) {
  .magnetic-card {
    animation: none;
    transform: none;
    transition: none;
  }
  .magnetic-card::after { display: none; }
}

.magnetic-card[data-motion-source="gravity"] {
  box-shadow: 0 30px 82px rgba(15, 118, 110, 0.2), 0 16px 34px rgba(36, 43, 37, 0.14);
}
.magnetic-card.has-gravity::before {
  box-shadow: 0 0 18px rgba(200, 155, 60, 0.34);
}
@media (hover: none) and (pointer: coarse) {
  .magnetic-card {
    cursor: default;
    transition: transform 120ms linear, box-shadow 180ms ease, border-color 180ms ease;
  }
}

/* Pressure card: the cursor creates a local concave surface instead of dragging the card. */
.magnetic-card {
  --mx: 50%;
  --my: 50%;
  --rx: 0deg;
  --ry: 0deg;
  cursor: pointer;
  transform: translateY(0) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease;
  animation: pressure-float 6.2s ease-in-out infinite;
}
.magnetic-card::before,
.magnetic-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
}
.magnetic-card::before {
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(20, 28, 38, 0.28) 0 10%, rgba(20, 28, 38, 0.16) 18%, rgba(20, 28, 38, 0.03) 34%, transparent 48%),
    radial-gradient(circle at calc(var(--mx) - 42px) calc(var(--my) - 42px), rgba(255, 255, 255, 0.68), transparent 26%);
  mix-blend-mode: multiply;
}
.magnetic-card::after {
  inset: 1px;
  background:
    radial-gradient(circle at var(--mx) var(--my), transparent 0 18%, rgba(255, 255, 255, 0.36) 29%, transparent 46%),
    radial-gradient(circle at calc(var(--mx) + 36px) calc(var(--my) + 38px), rgba(0, 0, 0, 0.15), transparent 24%);
  box-shadow:
    inset 14px 14px 28px rgba(22, 31, 42, 0.08),
    inset -16px -16px 30px rgba(255, 255, 255, 0.58);
}
.magnetic-card.is-pressed-surface {
  border-color: rgba(15, 118, 110, 0.25);
  box-shadow: 0 14px 34px rgba(36, 43, 37, 0.1), 0 4px 12px rgba(15, 118, 110, 0.08);
  animation-play-state: paused;
}
.magnetic-card.is-pressed-surface::before,
.magnetic-card.is-pressed-surface::after { opacity: 1; }
.magnetic-card.is-clicking { transform: translateY(3px) rotateX(var(--rx)) rotateY(var(--ry)) scale(0.992); }
@keyframes pressure-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -7px; }
}
@media (hover: none) and (pointer: coarse) {
  .magnetic-card { animation: none; cursor: default; }
}
@media (prefers-reduced-motion: reduce) {
  .magnetic-card { animation: none; transform: none; transition: none; }
}

/* Final pressure-layer overrides: keep the depression above the card surface and below text. */
.magnetic-card > * {
  position: relative;
  z-index: 2;
}
.magnetic-card::before,
.magnetic-card::after {
  height: auto;
  z-index: 1;
}
.magnetic-card::before {
  inset: 0;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(16, 24, 34, 0.3) 0 9%, rgba(16, 24, 34, 0.17) 18%, rgba(16, 24, 34, 0.04) 34%, transparent 50%),
    radial-gradient(circle at calc(var(--mx) - 44px) calc(var(--my) - 44px), rgba(255, 255, 255, 0.74), transparent 27%);
}
.magnetic-card::after {
  z-index: 1;
  background:
    radial-gradient(circle at var(--mx) var(--my), transparent 0 17%, rgba(255, 255, 255, 0.42) 28%, transparent 46%),
    radial-gradient(circle at calc(var(--mx) + 38px) calc(var(--my) + 40px), rgba(0, 0, 0, 0.16), transparent 25%);
}

/* Holographic 3D hover card inspired by CSS variable driven shine demos. */
.hero { perspective: 900px; }
.magnetic-card {
  --rx: 0deg;
  --ry: 0deg;
  --per: 35%;
  --mx: 50%;
  --my: 50%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  cursor: pointer;
  transform: rotateX(var(--rx)) rotateY(var(--ry)) translateZ(0);
  transform-style: preserve-3d;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  animation: holo-idle 6.4s ease-in-out infinite;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.96), rgba(244, 238, 226, 0.88)),
    var(--surface);
}
.magnetic-card > * {
  position: relative;
  z-index: 3;
  transform: translateZ(34px);
}
.magnetic-card::before,
.magnetic-card::after {
  content: "";
  position: absolute;
  inset: 0;
  height: auto;
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}
.magnetic-card::before {
  z-index: 1;
  background:
    linear-gradient(
      115deg,
      transparent 0%,
      rgba(255, 255, 255, 0.12) calc(var(--per) - 28%),
      rgba(255, 255, 255, 0.74) var(--per),
      rgba(15, 118, 110, 0.18) calc(var(--per) + 17%),
      rgba(163, 63, 47, 0.32) calc(var(--per) + 32%),
      transparent 100%
    );
  mix-blend-mode: color-dodge;
}
.magnetic-card::after {
  z-index: 2;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(255,255,255,0.68), transparent 16%),
    radial-gradient(circle at 16% 24%, rgba(200,155,60,0.36) 0 1px, transparent 2px),
    radial-gradient(circle at 72% 18%, rgba(15,118,110,0.26) 0 1px, transparent 2px),
    radial-gradient(circle at 82% 72%, rgba(163,63,47,0.24) 0 1px, transparent 2px),
    radial-gradient(circle at 36% 82%, rgba(200,155,60,0.32) 0 1px, transparent 2px);
  background-size: auto, 42px 42px, 54px 54px, 48px 48px, 60px 60px;
  mix-blend-mode: screen;
  animation: holo-sparkle 1.35s steps(2, end) infinite;
}
.magnetic-card.is-holo-active {
  border-color: rgba(200, 155, 60, 0.42);
  box-shadow: 0 32px 82px rgba(28, 34, 42, 0.18), 0 12px 34px rgba(15, 118, 110, 0.14);
  animation-play-state: paused;
}
.magnetic-card.is-holo-active::before,
.magnetic-card.is-holo-active::after { opacity: 1; }
.magnetic-card.is-clicking { transform: rotateX(var(--rx)) rotateY(var(--ry)) translateY(2px) scale(0.992); }
@keyframes holo-idle {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -7px; }
}
@keyframes holo-sparkle {
  0% { filter: brightness(0.95); background-position: 0 0, 0 0, 10px 4px, 4px 8px, 0 14px; }
  50% { filter: brightness(1.22); background-position: 0 0, 8px 10px, 0 0, 12px 4px, 8px 0; }
  100% { filter: brightness(1.04); background-position: 0 0, 14px 2px, 6px 14px, 0 0, 14px 8px; }
}
@media (hover: none) and (pointer: coarse) {
  .magnetic-card { animation: holo-idle 7s ease-in-out infinite; cursor: default; }
}
@media (prefers-reduced-motion: reduce) {
  .magnetic-card { animation: none; transform: none; transition: none; }
  .magnetic-card::before,
  .magnetic-card::after { display: none; }
}

/* iOS 26 inspired Liquid Glass buttons: layered blur, edge shine, and soft refraction. */
.site-nav,
.read-link {
  --glass-x: 50%;
  --glass-y: 50%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.16)),
    rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(22px) saturate(190%) contrast(1.04);
  backdrop-filter: blur(22px) saturate(190%) contrast(1.04);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.82),
    inset 0 -1px 1px rgba(24, 32, 42, 0.1),
    0 16px 36px rgba(24, 32, 42, 0.12),
    0 3px 10px rgba(255, 255, 255, 0.22);
}
.site-nav::before,
.site-nav::after,
.read-link::before,
.read-link::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}
.site-nav::before,
.read-link::before {
  z-index: -1;
  background:
    radial-gradient(circle at var(--glass-x) var(--glass-y), rgba(255,255,255,0.92), rgba(255,255,255,0.28) 24%, transparent 48%),
    linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.46) 34%, rgba(15,118,110,0.12) 48%, rgba(163,63,47,0.14) 62%, transparent 100%);
  opacity: 0.42;
  mix-blend-mode: screen;
}
.site-nav::after,
.read-link::after {
  z-index: 1;
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.78),
    inset -1px -1px 0 rgba(24, 32, 42, 0.08),
    inset 0 0 18px rgba(255, 255, 255, 0.2);
  opacity: 0.92;
}
.site-nav {
  padding: 6px;
  border-radius: 999px;
}
.site-nav a {
  position: relative;
  z-index: 2;
  border: 1px solid transparent;
  background: transparent;
  color: rgba(23, 33, 43, 0.76);
  transition: background 160ms ease, color 160ms ease, transform 160ms ease, border-color 160ms ease;
}
.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--accent-dark);
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.32);
  transform: translateY(-1px);
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.68), 0 6px 16px rgba(24,32,42,0.08);
}
.read-link {
  z-index: 0;
  border-radius: 999px;
  min-height: 44px;
  padding: 0 18px;
  color: rgba(18, 75, 69, 0.92);
  transform: translateY(0);
  transition: transform 160ms ease, box-shadow 180ms ease, color 160ms ease;
}
.read-link:hover,
.read-link:focus-visible {
  color: #0b3f3a;
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.9),
    inset 0 -1px 1px rgba(24, 32, 42, 0.1),
    0 20px 44px rgba(15, 118, 110, 0.18),
    0 8px 18px rgba(24, 32, 42, 0.1);
  outline: none;
}
.read-link:active,
.site-nav a:active { transform: translateY(1px) scale(0.985); }
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .site-nav,
  .read-link { background: rgba(255, 253, 248, 0.88); }
}
@media (prefers-reduced-motion: reduce) {
  .site-nav a,
  .read-link { transition: none; }
}

/* Minimal custom cursor: small precise dot plus liquid-glass ring on hover/click. */
@media (hover: hover) and (pointer: fine) {
  .has-custom-cursor,
  .has-custom-cursor * { cursor: none !important; }

  .cursor-orb {
    --cursor-x: 50vw;
    --cursor-y: 50vh;
    --dot-x: 50vw;
    --dot-y: 50vh;
    position: fixed;
    inset: 0;
    z-index: 2147483647;
    pointer-events: none;
    opacity: 0;
    transition: opacity 160ms ease;
  }
  .cursor-orb.is-visible { opacity: 1; }
  .cursor-orb::before,
  .cursor-orb span {
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    border-radius: 50%;
    pointer-events: none;
    will-change: transform;
  }
  .cursor-orb::before {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.62);
    background:
      radial-gradient(circle at 35% 30%, rgba(255,255,255,0.82), rgba(255,255,255,0.18) 38%, transparent 72%),
      rgba(255, 255, 255, 0.16);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    backdrop-filter: blur(12px) saturate(180%);
    box-shadow:
      inset 0 1px 1px rgba(255,255,255,0.76),
      inset 0 -1px 1px rgba(24,32,42,0.12),
      0 10px 24px rgba(24,32,42,0.14);
    transform: translate3d(calc(var(--cursor-x) - 17px), calc(var(--cursor-y) - 17px), 0) scale(1);
    transition: width 160ms ease, height 160ms ease, transform 160ms ease, border-color 160ms ease, background 160ms ease;
  }
  .cursor-orb span {
    width: 6px;
    height: 6px;
    background: #17212b;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.4), 0 0 16px rgba(15,118,110,0.3);
    transform: translate3d(calc(var(--dot-x) - 3px), calc(var(--dot-y) - 3px), 0);
    transition: transform 120ms ease, background 160ms ease, width 160ms ease, height 160ms ease;
  }
  .cursor-orb.is-link::before {
    width: 52px;
    height: 52px;
    border-color: rgba(15, 118, 110, 0.36);
    background:
      radial-gradient(circle at 35% 30%, rgba(255,255,255,0.9), rgba(255,255,255,0.2) 40%, transparent 74%),
      rgba(15, 118, 110, 0.12);
    transform: translate3d(calc(var(--cursor-x) - 26px), calc(var(--cursor-y) - 26px), 0) scale(1);
  }
  .cursor-orb.is-card::before {
    width: 64px;
    height: 64px;
    border-color: rgba(200, 155, 60, 0.42);
    transform: translate3d(calc(var(--cursor-x) - 32px), calc(var(--cursor-y) - 32px), 0) scale(1);
  }
  .cursor-orb.is-link span,
  .cursor-orb.is-card span { background: var(--accent-dark); }
  .cursor-orb.is-down::before {
    transform: translate3d(calc(var(--cursor-x) - 17px), calc(var(--cursor-y) - 17px), 0) scale(0.72);
    background: rgba(163, 63, 47, 0.16);
  }
  .cursor-orb.is-down span {
    width: 10px;
    height: 10px;
    background: var(--rust);
    transform: translate3d(calc(var(--dot-x) - 5px), calc(var(--dot-y) - 5px), 0);
  }
}

/* iOS 26 style cursor lens: thin, readable, and mostly transparent over text. */
@media (hover: hover) and (pointer: fine) {
  .cursor-orb::before {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.46);
    background:
      radial-gradient(circle at 34% 26%, rgba(255,255,255,0.5), rgba(255,255,255,0.12) 22%, transparent 46%),
      radial-gradient(circle at 68% 76%, rgba(15,118,110,0.08), transparent 42%),
      rgba(255, 255, 255, 0.045);
    -webkit-backdrop-filter: blur(7px) saturate(135%) contrast(1.02);
    backdrop-filter: blur(7px) saturate(135%) contrast(1.02);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.54),
      inset 0 -1px 0 rgba(24,32,42,0.07),
      0 7px 18px rgba(24,32,42,0.08);
    transform: translate3d(calc(var(--cursor-x) - 15px), calc(var(--cursor-y) - 15px), 0) scale(1);
  }
  .cursor-orb span {
    width: 3px;
    height: 3px;
    background: rgba(23, 33, 43, 0.42);
    box-shadow: none;
    transform: translate3d(calc(var(--dot-x) - 1.5px), calc(var(--dot-y) - 1.5px), 0);
  }
  .cursor-orb.is-link::before {
    width: 46px;
    height: 46px;
    border-color: rgba(255, 255, 255, 0.58);
    background:
      radial-gradient(circle at 32% 24%, rgba(255,255,255,0.58), rgba(255,255,255,0.13) 24%, transparent 48%),
      radial-gradient(circle at 70% 78%, rgba(15,118,110,0.12), transparent 44%),
      rgba(255, 255, 255, 0.055);
    -webkit-backdrop-filter: blur(8px) saturate(145%) contrast(1.03);
    backdrop-filter: blur(8px) saturate(145%) contrast(1.03);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.62),
      inset 0 -1px 0 rgba(24,32,42,0.08),
      0 10px 22px rgba(24,32,42,0.09);
    transform: translate3d(calc(var(--cursor-x) - 23px), calc(var(--cursor-y) - 23px), 0) scale(1);
  }
  .cursor-orb.is-card::before {
    width: 54px;
    height: 54px;
    border-color: rgba(255, 255, 255, 0.62);
    background:
      radial-gradient(circle at 32% 24%, rgba(255,255,255,0.6), rgba(255,255,255,0.12) 24%, transparent 50%),
      radial-gradient(circle at 72% 80%, rgba(200,155,60,0.12), transparent 44%),
      rgba(255, 255, 255, 0.05);
    transform: translate3d(calc(var(--cursor-x) - 27px), calc(var(--cursor-y) - 27px), 0) scale(1);
  }
  .cursor-orb.is-link span,
  .cursor-orb.is-card span { background: rgba(18, 75, 69, 0.5); }
  .cursor-orb.is-down::before {
    transform: translate3d(calc(var(--cursor-x) - 15px), calc(var(--cursor-y) - 15px), 0) scale(0.82);
    background: rgba(255, 255, 255, 0.035);
    border-color: rgba(163, 63, 47, 0.38);
  }
  .cursor-orb.is-down span {
    width: 5px;
    height: 5px;
    background: rgba(163, 63, 47, 0.72);
    transform: translate3d(calc(var(--dot-x) - 2.5px), calc(var(--dot-y) - 2.5px), 0);
  }
}
