/* 4web — interactive */

:root {
  --bg: #0a0a0a;
  --fg: #f2f0ea;
  --muted: #7a7872;
  --line: #1e1e1c;
  --line-2: #2a2a28;
  --accent: #ff6a1a;
  --accent-soft: rgba(255, 106, 26, 0.14);
  --wa: #25d366;
  --card: #111110;
  --font-display: "Syne", system-ui, sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --pad: clamp(1.25rem, 4vw, 2.5rem);
  --mx: 50%;
  --my: 50%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100dvh;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.has-cursor {
  cursor: none;
}

body.has-cursor a,
body.has-cursor button {
  cursor: none;
}

/* canvas field */
#field {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 40;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 60;
  background: transparent;
}

.scroll-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), #ffb347);
  transition: width 0.05s linear;
}

/* custom cursor */
.cursor {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}

body.has-cursor .cursor {
  opacity: 1;
}

.cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  margin: -3px 0 0 -3px;
  border-radius: 50%;
  background: var(--accent);
  z-index: 102;
  mix-blend-mode: difference;
}

.cursor-ring {
  position: fixed;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border-radius: 50%;
  border: 1px solid rgba(242, 240, 234, 0.35);
  z-index: 101;
  transition: width 0.35s var(--ease), height 0.35s var(--ease), margin 0.35s var(--ease),
    border-color 0.3s, background 0.3s, transform 0.15s;
}

body.cursor-wa .cursor-ring {
  width: 64px;
  height: 64px;
  margin: -32px 0 0 -32px;
  border-color: var(--wa);
  background: rgba(37, 211, 102, 0.12);
}

body.cursor-click .cursor-ring {
  width: 56px;
  height: 56px;
  margin: -28px 0 0 -28px;
  border-color: var(--accent);
  background: var(--accent-soft);
}

body.cursor-text .cursor-ring {
  width: 72px;
  height: 72px;
  margin: -36px 0 0 -36px;
  border-color: rgba(242, 240, 234, 0.2);
}

body.cursor-grab .cursor-ring {
  width: 70px;
  height: 70px;
  margin: -35px 0 0 -35px;
  border-color: var(--accent);
  border-style: dashed;
}

/* giant parallax 4 */
.big-4 {
  position: fixed;
  right: -4vw;
  top: 8vh;
  font-size: clamp(18rem, 42vw, 34rem);
  font-weight: 800;
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 106, 26, 0.18);
  letter-spacing: -0.08em;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

/* header */
.top {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--pad);
  max-width: 1100px;
  margin: 0 auto;
}

.mark {
  text-decoration: none;
  color: var(--fg);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.04em;
  display: inline-flex;
  align-items: baseline;
  position: relative;
  z-index: 2;
}

.mark-4 {
  color: var(--accent);
  font-weight: 800;
}

.mark-web {
  font-weight: 600;
}

.wa-pill {
  text-decoration: none;
  color: var(--bg);
  background: var(--fg);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  position: relative;
  z-index: 2;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}

.wa-pill:hover {
  background: var(--wa);
  color: #04140a;
}

/* layout */
main {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--pad) clamp(3rem, 8vw, 5rem);
}

/* hero */
.hero {
  min-height: calc(100dvh - 5.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 5vw, 3rem) 0 clamp(3rem, 8vw, 5rem);
  position: relative;
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--wa);
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  animation: pulse 2s ease infinite;
}

.hero-title {
  font-size: clamp(2.75rem, 9vw, 6.5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.045em;
  margin-bottom: 1.75rem;
}

.hero-title .line {
  display: block;
}

.hero-title .line .char {
  display: inline-block;
  transition: transform 0.35s var(--ease), color 0.25s;
  will-change: transform;
}

.hero-title .line:hover .char {
  color: var(--accent);
}

.hero-title .accent {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.hero-title .accent .char {
  color: var(--accent);
}

.lead {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: var(--muted);
  max-width: 22em;
  margin-bottom: 2rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.1rem;
  margin-bottom: 3rem;
}

/* CTA */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--bg);
  background: var(--fg);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  padding: 1rem 1.4rem;
  border-radius: 999px;
  width: fit-content;
  border: none;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  position: relative;
  z-index: 2;
}

.cta:hover {
  background: var(--wa);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.18);
}

.cta-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--wa);
  animation: pulse 2.2s ease infinite;
  flex-shrink: 0;
}

.cta:hover .cta-dot {
  background: #04140a;
  animation: none;
}

.cta-arrow {
  transition: transform 0.3s var(--ease);
}

.cta:hover .cta-arrow {
  transform: translateX(4px);
}

.cta-lg {
  font-size: 1.05rem;
  padding: 1.15rem 1.7rem;
}

.ghost {
  background: transparent;
  border: 1px solid var(--line-2);
  color: var(--fg);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.95rem 1.25rem;
  border-radius: 999px;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}

.ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}

/* ticker */
.ticker {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 0.9rem 0;
  margin: 0 calc(-1 * var(--pad));
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.ticker-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: marquee 28s linear infinite;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker:hover .ticker-track {
  animation-play-state: paused;
  color: var(--accent);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* blocks */
.block {
  border-top: 1px solid var(--line);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.block-head {
  margin-bottom: 1.5rem;
}

.block h2 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.block-sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 28em;
}

/* three paths */
.path-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-top: 1.75rem;
}

@media (max-width: 820px) {
  .path-grid {
    grid-template-columns: 1fr;
  }
}

.path-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  padding: 1.4rem 1.3rem 1.25rem;
  background: var(--card);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-height: 100%;
  transition: border-color 0.3s, transform 0.35s var(--ease), box-shadow 0.35s;
}

.path-card:hover {
  border-color: rgba(255, 106, 26, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

.path-card-hot {
  border-color: rgba(255, 106, 26, 0.35);
  background:
    radial-gradient(ellipse 90% 70% at 100% 0%, rgba(255, 106, 26, 0.12), transparent 55%),
    var(--card);
}

.path-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
}

.path-num {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.08em;
}

.path-card h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 650;
  letter-spacing: -0.03em;
}

.path-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
  flex: 1;
}

.path-cta {
  align-self: flex-start;
  margin-top: 0.5rem;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
  background: none;
  border: none;
  padding: 0;
  transition: transform 0.25s var(--ease), color 0.2s;
}

.path-cta:hover {
  color: var(--fg);
  transform: translateX(4px);
}

/* chips composer */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.75rem 0 1.5rem;
}

.chip {
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg);
  background: transparent;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 0.65rem 1.05rem;
  transition: background 0.25s var(--ease), border-color 0.25s, color 0.25s, transform 0.25s var(--ease);
  user-select: none;
}

.chip:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.chip.is-on {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
  box-shadow: 0 0 24px rgba(255, 106, 26, 0.28);
}

.composer {
  display: grid;
  gap: 1.25rem;
}

.composer-screen {
  background: var(--card);
  border: 1px solid var(--line-2);
  border-radius: 1.1rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.composer-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.composer-dots {
  display: flex;
  gap: 5px;
}

.composer-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line-2);
  display: block;
}

.composer-dots i:nth-child(1) { background: #ff5f57; }
.composer-dots i:nth-child(2) { background: #febc2e; }
.composer-dots i:nth-child(3) { background: #28c840; }

.composer-body {
  padding: 1.35rem 1.2rem 1.5rem;
  min-height: 140px;
  background:
    radial-gradient(ellipse 80% 60% at var(--mx) var(--my), rgba(255, 106, 26, 0.07), transparent 55%),
    var(--card);
}

.bubble {
  display: inline-block;
  max-width: min(100%, 34em);
  background: #1a2e22;
  border: 1px solid rgba(37, 211, 102, 0.25);
  color: #e8f5ec;
  padding: 0.9rem 1.1rem;
  border-radius: 1.1rem 1.1rem 1.1rem 0.25rem;
  font-size: 1rem;
  line-height: 1.45;
  animation: bubbleIn 0.4s var(--ease);
}

.bubble-tags {
  display: block;
  margin-top: 0.35rem;
  color: var(--accent);
  font-weight: 600;
  min-height: 1.3em;
}

.caret {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--accent);
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: blink 1s step-end infinite;
}

.composer-hint {
  margin-top: 0.9rem;
  font-size: 0.85rem;
  color: var(--muted);
  transition: opacity 0.3s;
}

.composer-hint.is-hidden {
  opacity: 0;
}

.cta-send {
  justify-self: start;
}

@keyframes bubbleIn {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes blink {
  50% { opacity: 0; }
}

/* service cards */
.cards {
  list-style: none;
  display: grid;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.card {
  display: grid;
  grid-template-columns: 3rem 1fr auto;
  gap: 1rem;
  align-items: start;
  padding: 1.15rem 1.2rem;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 1rem;
  transition: border-color 0.3s, background 0.3s, transform 0.35s var(--ease), box-shadow 0.35s;
  overflow: hidden;
}

.card:hover,
.card.is-open {
  border-color: var(--line-2);
  background: var(--card);
  transform: translateX(4px);
}

.card.is-open {
  border-color: rgba(255, 106, 26, 0.4);
  box-shadow: 0 0 0 1px rgba(255, 106, 26, 0.1), 0 16px 40px rgba(0, 0, 0, 0.25);
}

.card-idx {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.06em;
  padding-top: 0.3rem;
}

.card-main strong {
  display: block;
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 0;
}

.card-main p {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 0;
  transition: max-height 0.4s var(--ease), opacity 0.3s, margin 0.3s;
}

.card.is-open .card-main p {
  max-height: 6em;
  opacity: 1;
  margin-top: 0.45rem;
}

.card-go {
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--muted);
  transition: transform 0.35s var(--ease), color 0.25s;
  line-height: 1;
  padding-top: 0.15rem;
}

.card.is-open .card-go {
  transform: rotate(45deg);
  color: var(--accent);
}

.card-muted strong {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

/* steps interactive */
.steps {
  list-style: none;
  display: grid;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.step {
  border: 1px solid var(--line);
  border-radius: 1rem;
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s;
}

.step.is-active {
  border-color: rgba(255, 106, 26, 0.45);
  background: var(--card);
}

.step-btn {
  width: 100%;
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 0.5rem 1rem;
  align-items: center;
  padding: 1.15rem 1.2rem 0.85rem;
  background: none;
  border: none;
  color: inherit;
  font-family: inherit;
  text-align: left;
  position: relative;
}

.step-btn .num {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.06em;
  grid-row: 1;
}

.step-btn .txt {
  font-size: clamp(1.05rem, 2.5vw, 1.4rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  grid-row: 1;
}

.step-bar {
  grid-column: 1 / -1;
  height: 2px;
  background: var(--line);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 0.35rem;
}

.step-bar i {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), #ffb347);
  transition: width 0.8s var(--ease);
}

.step.is-active .step-bar i {
  width: 100%;
}

.step-detail {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 1.2rem;
  color: var(--muted);
  font-size: 0.95rem;
  transition: max-height 0.4s var(--ease), opacity 0.3s, padding 0.3s;
}

.step.is-active .step-detail {
  max-height: 5em;
  opacity: 1;
  padding: 0 1.2rem 1.15rem;
}

/* magnet zone */
.magnet-stage {
  margin-top: 1.5rem;
  height: min(42vh, 320px);
  border: 1px dashed var(--line-2);
  border-radius: 1.25rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 106, 26, 0.06), transparent 55%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 31px,
      rgba(255, 255, 255, 0.02) 31px,
      rgba(255, 255, 255, 0.02) 32px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 31px,
      rgba(255, 255, 255, 0.02) 31px,
      rgba(255, 255, 255, 0.02) 32px
    );
  touch-action: none;
}

.magnet-orb {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 96px;
  height: 96px;
  margin: -48px 0 0 -48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  font-size: 2.75rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  user-select: none;
  box-shadow: 0 10px 40px rgba(255, 106, 26, 0.35);
  transition: box-shadow 0.25s;
  z-index: 2;
  will-change: transform;
}

.magnet-orb.is-dragging {
  box-shadow: 0 20px 60px rgba(255, 106, 26, 0.5);
  scale: 1.08;
}

.magnet-hint {
  position: absolute;
  bottom: 1rem;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
}

/* close */
.close {
  border-top: 1px solid var(--line);
  padding: clamp(3.5rem, 10vw, 6rem) 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.close-label {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.reply {
  color: var(--muted);
  font-size: 0.9rem;
}

/* footer */
.foot {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--pad) calc(var(--pad) + 4rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.mark-small {
  color: var(--fg);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.sep {
  opacity: 0.4;
}

.foot-burst {
  background: none;
  border: none;
  color: var(--muted);
  font-family: inherit;
  font-size: 0.8rem;
  padding: 0;
  transition: color 0.2s;
}

.foot-burst:hover {
  color: var(--accent);
}

/* FAB */
.fab {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 30;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--wa);
  color: #04140a;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  animation: fabIn 0.6s var(--ease) 1.2s both;
}

.fab:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

@keyframes fabIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* particles burst container */
.burst-particle {
  position: fixed;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 90;
}

/* reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

/* anim */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45); }
  70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker-track { animation: none; }
  .cta-dot, .live-dot { animation: none; }
  [data-reveal] { opacity: 1; transform: none; }
  body.has-cursor { cursor: auto; }
  body.has-cursor a,
  body.has-cursor button { cursor: pointer; }
  .cursor { display: none; }
}

@media (max-width: 720px) {
  body.has-cursor { cursor: auto; }
  body.has-cursor a,
  body.has-cursor button { cursor: pointer; }
  .cursor { display: none; }
  .big-4 { opacity: 0.5; font-size: 40vw; }
  .card {
    grid-template-columns: 2.5rem 1fr auto;
  }
}

::selection {
  background: var(--accent);
  color: var(--bg);
}
