/* ============================================================
   TOP page (index.html)
   Ambient layers, loader, cursor chrome, FV, sections.
   JS hooks stay as data attributes (top.js); styling lives here.
   ============================================================ */

/* ── Keyframes ─────────────────────────────────────────────── */

@keyframes glowPulse { 0%, 100% { opacity: .5; } 50% { opacity: 1; } }
@keyframes marq { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes blobA { 0%, 100% { transform: translate(0, 0) scale(1, 1) rotate(0deg); } 30% { transform: translate(9vw, -6vh) scale(1.28, .78) rotate(14deg); } 60% { transform: translate(-6vw, 8vh) scale(.84, 1.22) rotate(-11deg); } }
@keyframes blobB { 0%, 100% { transform: translate(0, 0) scale(1, 1) rotate(0deg); } 25% { transform: translate(-11vw, 6vh) scale(1.32, .72) rotate(-18deg); } 70% { transform: translate(6vw, -9vh) scale(.8, 1.18) rotate(11deg); } }
@keyframes blobC { 0%, 100% { transform: translate(0, 0) scale(1, 1) rotate(0deg); } 40% { transform: translate(12vw, 10vh) scale(1.38, .68) rotate(21deg); } 75% { transform: translate(-8vw, -6vh) scale(.88, 1.26) rotate(-15deg); } }
@keyframes blobD { 0%, 100% { transform: translate(0, 0) scale(1, 1); } 35% { transform: translate(-12vw, -10vh) scale(1.22, .84); } 65% { transform: translate(10vw, 7vh) scale(.78, 1.32); } }
@keyframes ambDrift { 0%, 100% { transform: translate(0, 0); } 30% { transform: translate(44vw, -20vh); } 60% { transform: translate(14vw, -46vh); } }
@keyframes grainShift { 0% { transform: translate(0, 0); } 25% { transform: translate(-1.6%, 1.1%); } 50% { transform: translate(1.2%, -1.8%); } 75% { transform: translate(-0.8%, 1.6%); } 100% { transform: translate(0, 0); } }

@media (prefers-reduced-motion: reduce) {
  [data-ambfluid] div,
  [data-grain] {
    animation: none !important;
  }
}

/* ── Fixed ambient layers ──────────────────────────────────── */

.amb-fluid {
  position: fixed;
  inset: -8%;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  background: var(--bg);
  filter: blur(44px) contrast(1.65);
  transform: translateZ(0);
}

.amb-fluid__drift {
  position: absolute;
  inset: 0;
  animation: ambDrift 46s ease-in-out infinite;
}

.amb-fluid__drift div {
  position: absolute;
  border-radius: 50%;
  mix-blend-mode: screen;
}

.amb-fluid__blob-a {
  left: 2%;
  bottom: 4%;
  width: 70vw;
  height: 70vw;
  background: radial-gradient(circle at 44% 42%, #fff4e2 0%, #e8a33d 24%, #b45309 48%, rgba(10, 10, 10, 0) 70%);
  opacity: .75;
  animation: blobA 15s ease-in-out infinite;
}

.amb-fluid__blob-b {
  left: 14%;
  bottom: 12%;
  width: 53vw;
  height: 53vw;
  background: radial-gradient(circle at 46% 44%, #fff4e2 0%, #e8a33d 22%, #b45309 46%, rgba(10, 10, 10, 0) 68%);
  opacity: .65;
  animation: blobB 18.3s ease-in-out infinite;
  animation-delay: -9s;
}

.amb-fluid__blob-c {
  left: 8%;
  bottom: -2%;
  width: 41vw;
  height: 41vw;
  background: radial-gradient(circle at 42% 40%, #fff4e2 0%, #e8a33d 26%, #b45309 50%, rgba(10, 10, 10, 0) 70%);
  opacity: .6;
  animation: blobC 10.4s ease-in-out infinite;
  animation-delay: -5s;
}

.amb-fluid__blob-d {
  left: 20%;
  bottom: 2%;
  width: 30vw;
  height: 30vw;
  background: radial-gradient(circle at 45% 45%, #fff4e2 0%, #e8a33d 24%, #b45309 48%, rgba(10, 10, 10, 0) 68%);
  opacity: .5;
  animation: blobD 12.5s ease-in-out infinite;
  animation-delay: -13s;
}

.fx-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

[data-dust] {
  opacity: 0;
}

.grain {
  position: fixed;
  inset: -10%;
  z-index: 900;
  pointer-events: none;
  opacity: .05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift .9s steps(4) infinite;
}

/* ── Cursor chrome (JS positions; CSS paints) ──────────────── */

.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  width: 300px;
  height: 300px;
  margin: -150px 0 0 -150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 163, 61, .14) 0%, rgba(232, 163, 61, .05) 45%, rgba(10, 10, 10, 0) 70%);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 997;
  opacity: 0;
  transition: opacity .5s;
}

.cursor-ring {
  position: fixed;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  margin: -14px 0 0 -14px;
  border-radius: 50%;
  border: 1px solid rgba(232, 163, 61, .65);
  pointer-events: none;
  z-index: 998;
  opacity: 0;
  transition: opacity .3s;
}

.cursor-pill {
  position: fixed;
  left: 0;
  top: 0;
  width: 68px;
  height: 68px;
  margin: -34px 0 0 -34px;
  border-radius: 50%;
  background: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .08em;
  color: var(--bg);
  pointer-events: none;
  z-index: 998;
  opacity: 0;
  transform: scale(.5);
  transition: opacity .25s, transform .25s;
}

/* ── Loader ────────────────────────────────────────────────── */

.loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: opacity .6s cubic-bezier(.22, 1, .36, 1);
}

.loader__clip {
  overflow: hidden;
}

.loader__logo {
  display: inline-block;
  transform: translateY(115%);
  transition: transform .6s cubic-bezier(.22, 1, .36, 1);
  font-family: var(--font-en);
  font-weight: 300;
  font-size: 30px;
  letter-spacing: .08em;
  color: var(--text);
}

.loader__counter {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .3em;
  color: var(--text-dim);
}

/* ── Header / nav (transparent at top; JS adds bg on scroll) ─ */

.top-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px var(--gutter);
  transition: background .35s, backdrop-filter .35s, padding .35s;
}

.top-header__logo {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.top-header__logo-name {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 21px;
  letter-spacing: .04em;
  color: var(--text);
}

.top-header__logo-suffix {
  font-family: var(--font-en);
  font-weight: 300;
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--text-dim);
}

@media (hover: hover) {
  .top-header__logo:hover .top-header__logo-name,
  .top-header__logo:hover .top-header__logo-suffix {
    color: var(--amber);
  }
}

.top-header nav {
  display: flex;
  gap: 36px;
}

.top-header nav a {
  font-family: var(--font-mincho);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .2em;
  color: var(--text-muted);
}

@media (hover: hover) {
  .top-header nav a:hover {
    color: var(--amber);
  }
}

/* SP: hamburger button (hidden on desktop) */
.top-header.menu-open {
  z-index: 160;
}

.menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 44px;
  height: 44px;
  padding: 10px;
  margin: -10px -10px -10px 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  z-index: 160;
  position: relative;
}

.menu-btn span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--text);
  transition: transform .35s cubic-bezier(.22, 1, .36, 1), opacity .35s;
}

.menu-btn.is-open span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-btn.is-open span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* SP: fullscreen overlay menu */
.sp-menu {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 11vw;
  background: rgba(10, 10, 10, 0.96);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .45s cubic-bezier(.22, 1, .36, 1), visibility .45s;
}

.sp-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.sp-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.sp-menu__nav a {
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-family: var(--font-mincho);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: .26em;
  color: var(--text);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s cubic-bezier(.22, 1, .36, 1), transform .5s cubic-bezier(.22, 1, .36, 1);
}

.sp-menu.is-open .sp-menu__nav a {
  opacity: 1;
  transform: none;
}

.sp-menu.is-open .sp-menu__nav a:nth-child(2) { transition-delay: .06s; }
.sp-menu.is-open .sp-menu__nav a:nth-child(3) { transition-delay: .12s; }
.sp-menu.is-open .sp-menu__nav a:nth-child(4) { transition-delay: .18s; }
.sp-menu.is-open .sp-menu__nav a:nth-child(5) { transition-delay: .24s; }

.sp-menu__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--amber);
}

.sp-menu__foot {
  position: absolute;
  left: 11vw;
  right: 11vw;
  bottom: 34px;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .06em;
  color: var(--text-dim);
}

/* ── Layout shell ──────────────────────────────────────────── */

.top-main {
  position: relative;
  z-index: 1;
}

.section-eyebrow {
  font-family: var(--font-mincho);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .2em;
  color: var(--amber);
  margin-bottom: 14px;
}

.section-title {
  margin: 0;
  font-family: var(--font-en);
  font-weight: 300;
  font-size: clamp(44px, 4.4vw, 64px);
  letter-spacing: .02em;
  color: var(--text);
}

/* ── FV ────────────────────────────────────────────────────── */

.fv {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 720px;
  overflow: hidden;
}

.fv__tag {
  position: absolute;
  right: var(--gutter);
  top: 150px;
  text-align: right;
  z-index: 2;
  font-weight: 300;
  font-size: 15px;
  letter-spacing: .14em;
  color: var(--text);
  text-shadow: 0 1px 14px rgba(10, 10, 10, .85);
}

.fv__tag em {
  font-style: normal;
  color: var(--amber);
  font-weight: 500;
}

.fv__text {
  position: absolute;
  left: var(--gutter);
  bottom: 120px;
  z-index: 2;
}

.fv__title {
  margin: 0;
  font-family: var(--font-en);
  font-weight: 300;
  font-size: clamp(64px, 8.2vw, 124px);
  line-height: 1.06;
  letter-spacing: .015em;
  color: var(--text);
}

.fv__line-clip {
  display: block;
  overflow: hidden;
  padding: .14em 0 .12em;
  margin: -.14em 0 -.12em;
}

.fv__title [data-fvline] {
  display: inline-block;
}

.fv__title em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
}

.fv__sub {
  margin-top: 26px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .34em;
  color: var(--text-dim);
}

.fv__sub .x {
  color: var(--amber);
}

.fv__copyright {
  position: absolute;
  right: var(--gutter);
  bottom: 30px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  z-index: 2;
}

/* ── ABOUT ─────────────────────────────────────────────────── */

.about {
  position: relative;
  padding: 160px var(--gutter) 150px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 72px;
}

.about__body {
  max-width: 640px;
}

.about__lead {
  margin: 0;
  font-weight: 300;
  font-size: 19px;
  line-height: 2.1;
  letter-spacing: .07em;
  color: var(--text);
}

.about__para {
  margin: 32px 0 0;
  font-weight: 300;
  font-size: 16px;
  line-height: 2;
  letter-spacing: .06em;
  color: var(--text);
}

.about__para + .about__para {
  margin-top: 28px;
}

.about__para em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 1.12em;
  letter-spacing: .02em;
  color: var(--amber);
}

.about__founder {
  margin-top: 52px;
  border-top: 1px solid var(--line);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  flex-wrap: wrap;
}

.about__founder-name {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: .08em;
  color: var(--text);
}

.about__founder-role {
  margin-top: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
}

.about__values {
  display: flex;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .06em;
  color: var(--text-dim);
}

.about__values .sep {
  color: var(--amber);
}

/* ── SERVICES ──────────────────────────────────────────────── */

.services {
  position: relative;
  padding: 0 var(--gutter) 160px;
}

.services .section-title {
  margin-bottom: 64px;
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.svc {
  border-top: 1px solid var(--line);
  padding: 36px 20px 40px;
  margin: 0 -20px;
  transition: background .4s;
}

.svc h3 {
  margin: 0;
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 30px;
  letter-spacing: .02em;
  color: var(--text);
}

.svc p {
  margin: 22px 0 0;
  font-weight: 300;
  font-size: 15px;
  line-height: 2;
  letter-spacing: .06em;
  color: var(--text-muted);
}

.svc__tags {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.svc__tags span {
  padding: 5px 12px;
  border: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .04em;
  color: var(--text-muted);
}

.svc__more {
  margin-top: 30px;
}

.svc__more a {
  font-weight: 400;
  font-size: 14px;
  letter-spacing: .08em;
  color: var(--amber);
  border-bottom: 1px solid var(--amber-line);
  padding-bottom: 4px;
}

@media (hover: hover) {
  .svc__more a:hover {
    color: #f8ce85;
  }
}

/* ── WORKS ─────────────────────────────────────────────────── */

.works {
  position: relative;
  padding: 0 var(--gutter) 160px;
}

.works .section-title {
  margin-bottom: 44px;
}

.works__marquee {
  margin: 0 calc(-1 * var(--gutter)) 56px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  white-space: nowrap;
}

.works__marquee-track {
  display: inline-flex;
  animation: marq 40s linear infinite;
  padding: 13px 0;
}

.works__marquee-track span {
  font-family: var(--font-en);
  font-weight: 300;
  font-size: 13px;
  letter-spacing: .3em;
  color: var(--text-dim);
  padding-right: 2em;
}

.works__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.work-card {
  display: block;
  border: 1px solid var(--line);
  background: var(--surface);
}

.work-card__clip {
  display: block;
  overflow: hidden;
}

.work-card__thumb {
  display: block;
  aspect-ratio: 4 / 3;
  background: #1c1c1c;
  transition: transform .6s cubic-bezier(.22, 1, .36, 1);
  position: relative;
}

.work-card__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Empty-state caption; remove once the thumbnail image is in. */
.work-card__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  text-align: center;
  white-space: normal;
  font-weight: 300;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: .06em;
  color: var(--text-dim);
}

.work-card__body {
  display: block;
  padding: 20px 20px 24px;
}

.work-card__tag {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .06em;
  color: var(--text-muted);
}

.work-card__title {
  display: table;
  margin-top: 14px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: .04em;
  color: var(--text);
  background-image: linear-gradient(var(--amber), var(--amber));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 1px;
  transition: background-size .5s cubic-bezier(.22, 1, .36, 1);
}

.work-card__client {
  display: block;
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
}

/* ── PROCESS ───────────────────────────────────────────────── */

.process {
  position: relative;
  padding: 0 var(--gutter) 160px;
}

.process .section-title {
  margin-bottom: 64px;
}

.process__list {
  max-width: 880px;
  border-left: 1px solid var(--line);
}

.process__step {
  padding: 40px 40px 44px;
}

.process__step + .process__step {
  border-top: 1px solid var(--line);
}

.process__step h3 {
  margin: 0;
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 26px;
  letter-spacing: .02em;
  color: var(--text);
}

.process__step h3 span {
  font-family: var(--font-mincho);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: .2em;
  color: var(--text-muted);
  margin-left: 12px;
}

.process__step p {
  margin: 18px 0 0;
  font-weight: 300;
  font-size: 15px;
  line-height: 2;
  letter-spacing: .06em;
  color: var(--text-muted);
  max-width: 620px;
}

.process__formula {
  margin: 56px 0 0;
  font-family: var(--font-mincho);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: .22em;
  color: var(--text);
}

.process__formula .x {
  color: var(--amber);
}

.process__formula small {
  font-family: var(--font-jp);
  font-weight: 300;
  font-size: 13px;
  letter-spacing: .1em;
  color: var(--text-dim);
  margin-left: 16px;
}

/* ── CONTACT ───────────────────────────────────────────────── */

.contact {
  position: relative;
  padding: 0 var(--gutter) 140px;
}

.contact .section-title {
  margin-bottom: 28px;
}

.contact__note {
  margin: 0 0 56px;
  font-weight: 300;
  font-size: 15px;
  line-height: 2;
  letter-spacing: .06em;
  color: var(--text-muted);
}

.contact__row {
  display: block;
  border-top: 1px solid var(--line);
  padding: 40px 0;
  transition: transform .3s cubic-bezier(.22, 1, .36, 1);
}

.contact__row:last-of-type {
  border-bottom: 1px solid var(--line);
}

.contact__row > span {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  gap: 24px;
}

.contact__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--text-dim);
}

.contact__value {
  display: block;
  overflow: hidden;
  height: 1.14em;
  font-family: var(--font-en);
  font-weight: 300;
  font-size: 21px;
  line-height: 1.14;
  letter-spacing: .02em;
}

.contact__value [data-roll] {
  display: block;
  transition: transform .35s cubic-bezier(.65, 0, .35, 1);
}

.contact__value [data-roll] span {
  display: block;
  color: var(--text);
}

.contact__value [data-roll] span + span {
  color: var(--amber);
}

.contact__arrow {
  font-size: 16px;
  color: var(--amber);
}

/* ── Footer ────────────────────────────────────────────────── */

.top-footer {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px var(--gutter) 36px;
  border-top: 1px solid var(--line);
}

.top-footer span,
.top-footer a {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-dim);
}

.top-footer a {
  letter-spacing: .1em;
}

@media (hover: hover) {
  .top-footer a:hover {
    color: var(--amber);
  }
}

/* ── Scroll meta (left rail) ───────────────────────────────── */

.scroll-meta {
  position: fixed;
  left: 26px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 60;
  pointer-events: none;
}

.scroll-meta__word {
  writing-mode: vertical-rl;
  font-family: var(--font-mincho);
  font-size: 10px;
  letter-spacing: .42em;
  color: var(--text-dim);
}

.scroll-meta__pct {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-dim);
}

/* ── Responsive ────────────────────────────────────────────── */

@media (max-width: 1100px) {
  .works__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .top-header nav {
    display: none;
  }

  .menu-btn {
    display: flex;
  }

  .scroll-meta {
    display: none;
  }

  .fv__tag {
    top: 114px;
    font-size: 13px;
  }

  .fv__text {
    bottom: 110px;
  }

  .fv {
    min-height: 620px;
  }

  .fv__title {
    font-size: 12.5vw;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 96px 20px 72px;
  }

  .services,
  .works,
  .process,
  .contact {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 88px;
  }

  .services__grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .works__grid {
    grid-template-columns: 1fr;
  }

  .works__marquee {
    margin-left: -20px;
    margin-right: -20px;
  }

  .process__list .process__step {
    padding-left: 24px;
    padding-right: 0;
  }

  .contact__row > span {
    grid-template-columns: 56px 1fr auto;
    gap: 10px;
  }

  .contact__value {
    font-size: clamp(14px, 4.4vw, 21px);
  }

  .top-footer {
    padding-bottom: 40px;
  }
}

/* Touch devices: ring/pill are mouse-only; the glow follows the finger
   instead (touch handlers in top.js), so it stays available here. */
@media (hover: none), (pointer: coarse) {
  .cursor-ring,
  .cursor-pill {
    display: none !important;
  }
}
