/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --clr-bg:           #fbfbfd;
  --clr-bg-2:         #ffffff;
  --clr-surface:      rgba(255, 255, 255, 0.7);
  --clr-surface-hover:rgba(255, 255, 255, 0.9);
  --clr-border:       rgba(0, 0, 0, 0.05);
  --clr-border-accent:rgba(0, 102, 204, 0.2);
  --clr-accent:       #0066cc;
  --clr-accent-2:     #2997ff;
  --clr-text:         #1d1d1f;
  --clr-text-muted:   #86868b;
  --clr-text-dim:     #a1a1a6;

  --grad-accent:      linear-gradient(135deg, #0066cc 0%, #2997ff 100%);
  --grad-subtle:      linear-gradient(135deg, rgba(0,102,204,.06) 0%, rgba(41,151,255,.04) 100%);
  --grad-shimmer:     linear-gradient(105deg,
                        transparent 30%,
                        rgba(255,255,255,.8) 50%,
                        transparent 70%);

  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  --space-1:  .25rem;
  --space-2:  .5rem;
  --space-3:  .75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-card:  0 2px 32px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.04);
  --shadow-glow:  0 0 48px rgba(0,212,255,.1);

  --ease:        cubic-bezier(.4, 0, .2, 1);
  --ease-out:    cubic-bezier(0, 0, .2, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);

  --max-width: 1280px;
  --nav-h:     60px;
}

/* ============================================================
   RESET + BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: auto; -webkit-text-size-adjust: 100%; }

body {
  background-color: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: none; /* hidden — replaced by custom cursor */
}

/* Show default cursor on touch devices */
@media (hover: none) { body { cursor: auto; } }

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; cursor: none; }
ul[role="list"] { list-style: none; }
.mono { font-family: var(--font-mono); }

/* Dot grid backdrop */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,212,255,.05) 1px, transparent 1px);
  background-size: 48px 48px;
  z-index: -2;
  pointer-events: none;
}

/* ============================================================
   NOISE OVERLAY — grain texture
   ============================================================ */
.noise-overlay {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .038;
  pointer-events: none;
  z-index: 9998;
  animation: grain 9s steps(12) infinite;
}

@keyframes grain {
  0%   { transform: translate(0,0); }
  11%  { transform: translate(-6%,-11%); }
  22%  { transform: translate(-14%,4%); }
  33%  { transform: translate(8%,-24%); }
  44%  { transform: translate(-4%,24%); }
  55%  { transform: translate(-13%,9%); }
  66%  { transform: translate(13%,0%); }
  77%  { transform: translate(0%,16%); }
  88%  { transform: translate(4%,34%); }
  100% { transform: translate(-11%,11%); }
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor__dot {
  width: 5px;
  height: 5px;
  background: var(--clr-accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 200ms var(--ease), height 200ms var(--ease),
              background 200ms var(--ease);
  will-change: transform;
}

.cursor__ring {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(0,212,255,.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 300ms var(--ease), height 300ms var(--ease),
              border-color 300ms var(--ease), opacity 200ms;
  will-change: transform;
}

.cursor__ring.is-hovering {
  width: 52px;
  height: 52px;
  border-color: rgba(0,212,255,.9);
}

.cursor__dot.is-hovering {
  width: 8px;
  height: 8px;
  background: #fff;
}

.cursor__ring.is-clicking {
  width: 22px;
  height: 22px;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
}

h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.05rem, 2.2vw, 1.3rem); font-weight: 700; letter-spacing: -.02em; }

p {
  font-weight: 300;
  line-height: 1.72;
  color: var(--clr-text-muted);
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-8);
}

.section-header {
  margin-bottom: var(--space-12);
}

.section-header h2 {
  margin-top: var(--space-4);
  max-width: 640px;
}

.section-eyebrow {
  font-family: var(--font-mono);
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .12em;
  color: var(--clr-accent);
  opacity: .8;
}

/* ============================================================
   GLASS CARD — premium glassmorphism
   ============================================================ */
.glass-card {
  position: relative;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(30px) saturate(200%);
  -webkit-backdrop-filter: blur(30px) saturate(200%);
  box-shadow: 0 20px 40px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.02);
  overflow: hidden;
  transition: transform 600ms var(--ease-spring),
              border-color 400ms var(--ease),
              background 400ms var(--ease),
              box-shadow 400ms var(--ease);
  transform: translateZ(0); /* Hardware acceleration */
}

/* Shimmer sweep on hover */
.glass-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-shimmer);
  background-size: 200% 100%;
  background-position: -100% 0;
  opacity: 0;
  transition: opacity 400ms var(--ease), background-position 600ms var(--ease);
  pointer-events: none;
  z-index: 1;
  border-radius: inherit;
}

.glass-card:hover {
  border-color: rgba(0,212,255,.18);
  background: var(--clr-surface-hover);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

.glass-card:hover::after {
  opacity: 1;
  background-position: 200% 0;
}

/* ============================================================
   BUTTON SYSTEM
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: .65rem 1.35rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .9rem;
  letter-spacing: .01em;
  text-decoration: none;
  transition: all 260ms var(--ease);
  border: none;
  outline: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  background: rgba(255,255,255,.06);
  transition: opacity 200ms;
}

.btn:hover::before { opacity: 1; }

.btn--primary {
  background: var(--clr-text);
  color: var(--clr-bg);
  font-weight: 500;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}
.btn--primary:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  transform: translateY(-1px);
  background: #333336;
}
.btn--primary:focus-visible {
  outline: 2px solid var(--clr-accent);
  outline-offset: 3px;
}

.btn--ghost {
  background: transparent;
  color: var(--clr-text);
  border: 1px solid rgba(0,0,0,.1);
}
.btn--ghost:hover {
  border-color: rgba(0,0,0,.2);
  background: rgba(0,0,0,0.02);
  transform: translateY(-1px);
}
.btn--ghost:focus-visible {
  outline: 2px solid var(--clr-accent);
  outline-offset: 3px;
}

.btn--sm { padding: .45rem 1rem; font-size: .8rem; }

/* Tags */
.tech-tags { display: flex; flex-wrap: wrap; gap: var(--space-2); }

.tag {
  font-family: var(--font-mono);
  font-size: .65rem;
  font-weight: 400;
  padding: .18rem .5rem;
  border-radius: var(--radius-xs);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  color: var(--clr-text-muted);
  letter-spacing: .04em;
}

.tag--accent {
  background: rgba(0,212,255,.07);
  border-color: rgba(0,212,255,.2);
  color: var(--clr-accent);
}

/* Traffic light dots */
.dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.dot--red    { background: #ff5f57; }
.dot--yellow { background: #febc2e; }
.dot--green  { background: #28c840; }

/* ============================================================
   NAVIGATION
   ============================================================ */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  transition: background 300ms var(--ease), border-color 300ms var(--ease);
  border-bottom: 1px solid transparent;
}

header.scrolled {
  background: rgba(251, 251, 253, 0.8);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom-color: var(--clr-border);
}

.nav__inner {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-8);
  height: 100%;
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav-logo {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 400;
  color: var(--clr-text);
  letter-spacing: .04em;
  transition: color 200ms;
  flex-shrink: 0;
}
.nav-logo:hover { color: var(--clr-accent); }
.logo-bracket { color: var(--clr-accent); }

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  margin-left: auto;
}

.nav__links a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: .85rem;
  color: var(--clr-text-muted);
  transition: color 200ms;
  letter-spacing: .01em;
}
.nav__links a:hover { color: var(--clr-text); }
.nav__links a:focus-visible {
  outline: 2px solid var(--clr-accent);
  outline-offset: 4px;
  border-radius: 2px;
}

/* ============================================================
   HERO — editorial layout
   ============================================================ */
#hero {
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-12);
  padding: calc(var(--nav-h) + var(--space-16)) var(--space-8) var(--space-20);
  max-width: var(--max-width);
  margin-inline: auto;
  width: 100%;
  position: relative;
  perspective: 1000px;
}

.hero-glass-panel {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140%;
  height: 140%;
  transform: translate(-50%, -50%) translateZ(-100px);
  background: radial-gradient(circle at 40% 40%, rgba(0, 102, 204, 0.08) 0%, transparent 40%),
              radial-gradient(circle at 70% 60%, rgba(255, 149, 0, 0.05) 0%, transparent 40%);
  backdrop-filter: blur(100px);
  z-index: -1;
  border-radius: 50%;
  animation: floatZLight 12s infinite alternate ease-in-out;
}

@keyframes floatZLight {
  0% { transform: translate(-50%, -50%) translateZ(-150px) scale(0.9); opacity: 0.7; }
  100% { transform: translate(-50%, -50%) translateZ(-50px) scale(1.1); opacity: 1; }
}

.hero-content-wrapper {
  animation: heroEntry 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
  transform: translateZ(50px) translateY(30px);
}

@keyframes heroEntry {
  to { opacity: 1; transform: translateZ(0) translateY(0); }
}

/* Top bar */
.hero__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-8);
}

.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: .8rem;
  color: var(--clr-text-dim);
  display: flex;
  align-items: center;
  gap: .25em;
  flex-wrap: wrap;
}

.hero__eyebrow-prefix { color: var(--clr-text-dim); }

#typewriter {
  color: var(--clr-accent);
  min-width: 1ch;
}

.typewriter-cursor {
  display: inline-block;
  color: var(--clr-accent);
  animation: blink .9s step-end infinite;
  font-weight: 300;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* Floating metrics */
.hero__metrics {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  flex-shrink: 0;
}

.metric {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.metric__number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -.04em;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.metric__label {
  font-family: var(--font-mono);
  font-size: .6rem;
  color: var(--clr-text-dim);
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.metric__divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,.08);
}

/* Dominant hero title */
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 9vw, 8rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.03em;
  color: var(--clr-text);
  /* Mask chars inserted by JS for the reveal animation */
}

/* Letter-reveal: each char wrapped in .char-wrap > .char */
.hero__title .char-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  line-height: 1;
}

.hero__title .char {
  display: inline-block;
  transform-origin: bottom;
}

/* Bottom bar */
.hero__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-8);
}

.hero__subtitle {
  font-size: clamp(.9rem, 1.6vw, 1.05rem);
  font-weight: 300;
  color: var(--clr-text-muted);
  line-height: 1.75;
  max-width: 380px;
}

.hero__ctas {
  display: flex;
  gap: var(--space-3);
  flex-shrink: 0;
}

/* Decorative accent: thin line that bleeds into next section */
.hero__accent-line {
  position: absolute;
  bottom: -40px;
  right: var(--space-8);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, rgba(0,212,255,.3), transparent);
  pointer-events: none;
  z-index: 1;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: var(--space-8);
  left: var(--space-8);
  display: flex;
  align-items: flex-start;
}

.scroll-indicator__line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(0,0,0,.2), transparent);
  animation: scroll-pulse 2.2s ease-in-out infinite;
  transform-origin: top;
}

@keyframes scroll-pulse {
  0%      { transform: scaleY(0); opacity: 1; transform-origin: top; }
  48%     { transform: scaleY(1); opacity: 1; transform-origin: top; }
  49%     { transform-origin: bottom; }
  100%    { transform: scaleY(0); opacity: 0; transform-origin: bottom; }
}

/* ============================================================
   PROBLEMS — feature grid
   ============================================================ */
#problems {
  padding-block: var(--space-20);
  position: relative;
}

.what__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 1000px;
  margin-top: var(--space-10);
}

.what__row {
  display: grid;
  grid-template-columns: 100px 1fr;
  padding-block: var(--space-12);
  border-top: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.4s var(--ease);
}

.what__row:last-child {
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.what__row:hover {
  transform: translateX(10px);
}

.what__label {
  font-size: 0.9rem;
  color: var(--clr-text-dim);
  margin-top: 0.6rem;
  font-weight: 500;
}

.what__content h3 {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--clr-text);
}

.what__content p {
  font-size: 1.125rem;
  color: var(--clr-text-muted);
  margin-top: var(--space-4);
  max-width: 640px;
  line-height: 1.6;
}


/* ============================================================
   PORTFOLIO — Apple Bento Box
   ============================================================ */
#work {
  padding-block: var(--space-20);
  position: relative;
}

/* Bento layout: Perfectly Aligned Apple Grid */
/* ============================================================
   WORK — Asymmetrical Editorial Grid
   ============================================================ */
#work {
  padding-block: var(--space-20);
  position: relative;
}

.asymmetric-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 120px 40px;
  padding-block: var(--space-10);
}

.project-card {
  grid-column: span 12;
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  transition: transform 0.6s var(--ease);
}

.project-card__image-container {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 40px;
  overflow: hidden;
  background: #fbfbfd;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.project-card__image {
  width: 100%;
  height: 100%;
  transition: transform 1s var(--ease);
}

.project-card:hover .project-card__image {
  transform: scale(1.05);
}

.project-card:hover {
  transform: translateY(-8px);
}

/* Gradients for placeholders */
.placeholder-gradient-1 { background: linear-gradient(135deg, #e3e3e3 0%, #ffffff 100%); }
.placeholder-gradient-2 { background: linear-gradient(135deg, #f5f5f7 0%, #e8e8ed 100%); }
.placeholder-gradient-3 { background: linear-gradient(135deg, #ffffff 0%, #f0f0f5 100%); }

.project-card__content {
  padding-inline: var(--space-2);
}

.project-card__content h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-top: var(--space-2);
  letter-spacing: -0.03em;
  color: var(--clr-text);
}

.project-card__content p {
  font-size: 1.125rem;
  color: var(--clr-text-muted);
  line-height: 1.5;
  max-width: 480px;
  margin-top: var(--space-2);
}

.portfolio__year {
  display: block;
  font-size: 0.9rem;
  color: var(--clr-text-dim);
  letter-spacing: 0.1em;
}

/* Desktop asymmetrical placement */
@media (min-width: 1024px) {
  .project-card--large { 
    grid-column: 1 / 10; 
  }
  .project-card--medium.offset-up { 
    grid-column: 7 / 13; 
    margin-top: -160px;
    z-index: 2;
  }
  .project-card--medium.offset-down { 
    grid-column: 2 / 8; 
    margin-top: 40px; 
  }
}


/* Cleanup of old portfolio card styles */

/* ============================================================
   CONTACT SECTION
   ============================================================ */
#contact {
  padding-block: var(--space-24);
}

#contact::before {
  content: '// 03';
  display: block;
  font-family: var(--font-mono);
  font-size: .65rem;
  color: rgba(0,212,255,.15);
  letter-spacing: .1em;
  margin-bottom: -.8rem;
}

.contact__inner {
  padding: var(--space-16) var(--space-12);
  max-width: 760px;
}

.contact__inner .section-eyebrow { display: block; margin-bottom: var(--space-4); }

.contact__inner h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: var(--space-5);
}

.contact__sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--clr-text-muted);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: var(--space-10);
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  border-top: 1px solid var(--clr-border);
  padding-block: var(--space-8);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

.footer__copy {
  font-size: .75rem;
  color: var(--clr-text-dim);
  letter-spacing: .04em;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: .8rem;
  font-weight: 400;
  color: var(--clr-text-muted);
  transition: color 200ms;
}
.footer__social:hover { color: var(--clr-accent); }
.footer__social:focus-visible {
  outline: 2px solid var(--clr-accent);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 1100px)
   ============================================================ */
/* Removed bento media queries */

/* ============================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --space-24: 4.5rem;
    --space-16: 3rem;
  }

  .container { padding-inline: var(--space-5); }

  .nav__links { display: none; }
  .nav__inner { justify-content: space-between; }

  #hero {
    padding-inline: var(--space-5);
    gap: var(--space-6);
  }

  .hero__top { flex-direction: column; gap: var(--space-4); }
  .hero__metrics { align-self: flex-start; }

  .hero__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-6);
  }

  .hero__ctas { flex-wrap: wrap; }

  .hero__accent-line { display: none; }

  .what__row {
    grid-template-columns: 1fr;
    gap: var(--space-2);
    padding-block: var(--space-8);
  }

  .what__content h3 {
    font-size: 1.75rem;
  }

  .asymmetric-grid {
    gap: 60px 20px;
  }

  .project-card__content h3 {
    font-size: 2rem;
  }

  .project-card--medium.offset-up,
  .project-card--medium.offset-down {
    margin-top: 0;
  }

  .contact__inner { padding: var(--space-8) var(--space-5); }

  .contact__actions {
    flex-direction: column;
  }

  .footer__inner { flex-direction: column; align-items: flex-start; gap: var(--space-3); }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .noise-overlay { animation: none; }
  .typewriter-cursor { animation: none; opacity: 1; }
  #bg-canvas { display: none; }
  .scroll-indicator { display: none; }
  .cursor { display: none; }
  body { cursor: auto; }
  a { cursor: auto; }
}

/* Touch devices — restore cursor */
@media (hover: none) {
  body, a, button { cursor: auto; }
  .cursor { display: none; }
}
