/* ============================================================
   Design tokens
   ============================================================ */
:root {
  --bg: #ffffff;
  --surface: #f6f6f4;
  --fg: #0a0a0a;
  --fg-muted: rgba(10, 10, 10, 0.62);
  --fg-faint: rgba(10, 10, 10, 0.4);
  --border: rgba(10, 10, 10, 0.1);
  --border-strong: rgba(10, 10, 10, 0.16);

  --accent-green: #f2fce2;
  --accent-peach: #fcf2ed;
  --accent-pink: #fcedf6;
  --accent-lavender: #eff0fc;
  --accent-cyan: #eafbfc;

  --success: #18a34a;

  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --radius-full: 999px;

  --container: 1280px;
  --shadow-sm: 0 1px 2px rgba(10, 10, 10, 0.05);
  --shadow-md: 0 14px 40px rgba(10, 10, 10, 0.08);

  --ease: cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* ============================================================
   Reset
   ============================================================ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input,
textarea,
select {
  font: inherit;
  color: inherit;
}

h1, h2, h3, h4 {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 64px;
}

section {
  padding: 128px 0;
}

@media (max-width: 1023px) {
  section { padding: 80px 0; }
  .container { padding: 0 48px; }
}

@media (max-width: 767px) {
  section { padding: 40px 0; }
  .container { padding: 0 40px; }
}

@media (max-width: 479px) {
  .container { padding: 0 24px; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-faint);
  margin-bottom: 16px;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
}

.section-head h2 {
  font-size: clamp(1.9rem, 1.2vw + 1.5rem, 2.75rem);
}

.section-head p {
  max-width: 420px;
  color: var(--fg-muted);
  font-size: 1.0625rem;
}

@media (max-width: 767px) {
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 36px;
  }
}

/* ============================================================
   Buttons & chips
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: 0.95rem;
  transition: transform 0.35s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}

.btn:active { transform: scale(0.97); }

.btn--primary {
  background: var(--fg);
  color: var(--bg);
}
.btn--primary:hover { background: #262626; }

.btn--ghost {
  background: transparent;
  border: 1px solid var(--border-strong);
}
.btn--ghost:hover { background: var(--surface); }

.btn--sm { padding: 10px 20px; font-size: 0.875rem; }

.chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 11px 6px 12px;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.5;
  color: var(--fg);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip--green { background: var(--accent-green); }
.chip--peach { background: var(--accent-peach); }
.chip--pink { background: var(--accent-pink); }
.chip--lavender { background: var(--accent-lavender); }
.chip--cyan { background: var(--accent-cyan); }

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 10px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--fg-muted);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  position: relative;
  flex-shrink: 0;
}
.status-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--success);
  animation: pulse 2.2s ease-out infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(2.6); opacity: 0; }
}

/* ============================================================
   Navigation
   ============================================================ */
.site-header {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 0 20px;
}

.nav {
  width: 100%;
  max-width: 880px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 10px 10px 22px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
}

.nav-logo {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 9px 16px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg-muted);
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

.nav-link:hover { color: var(--fg); background: var(--surface); }
.nav-link.active { color: var(--fg); background: var(--surface); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-burger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-burger span,
.nav-burger span::before,
.nav-burger span::after {
  content: "";
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--fg);
  position: relative;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-burger span::before { position: absolute; top: -6px; }
.nav-burger span::after { position: absolute; top: 6px; }

.nav-burger.is-open span { background: transparent; }
.nav-burger.is-open span::before { transform: translateY(6px) rotate(45deg); }
.nav-burger.is-open span::after { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--bg);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.mobile-menu a {
  font-family: "Inter", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  padding: 14px 0;
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-cta .btn--ghost { display: none; }
  .nav-burger { display: flex; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  padding: 200px 0 100px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2.25rem, 4vw + 1.5rem, 5rem);
  max-width: 920px;
  margin: 28px auto 24px;
}

.hero .lede {
  max-width: 560px;
  margin: 0 auto 36px;
  color: var(--fg-muted);
  font-size: 1.125rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero .chip-row {
  justify-content: center;
}

@media (max-width: 767px) {
  .hero { padding: 150px 0 60px; }
}

/* ============================================================
   Work section (matches source: divider line + "Work" heading
   + filter tabs, then a plain image/title/excerpt card grid)
   ============================================================ */
.section-divider {
  height: 2px;
  background: var(--fg);
  width: 0;
  transition: width 1.1s var(--ease);
  margin-bottom: 48px;
}
.section-divider.is-visible { width: 100%; }

.work-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  margin-bottom: 64px;
}

.work-header h2 { font-size: 1.75rem; }
.work-header a.work-header-title:hover { opacity: 0.6; }

.filter-tabs {
  display: flex;
  gap: 6px;
}

.filter-tab {
  height: 40px;
  padding: 0 18px;
  border-radius: var(--radius-full);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid var(--border-strong);
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease);
}
.filter-tab:hover { background: var(--surface); }
.filter-tab.is-active { background: var(--fg); color: var(--bg); border-color: var(--fg); }

@media (max-width: 479px) {
  .filter-tab { height: 32px; padding: 0 14px; font-size: 0.875rem; }
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 32px;
  row-gap: 80px;
}

@media (max-width: 1023px) { .work-grid { row-gap: 48px; } }
@media (max-width: 767px) { .work-grid { grid-template-columns: 1fr; row-gap: 32px; } }

.work-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}

a.work-card:hover { opacity: 0.75; transform: skew(0.72deg, 0.72deg); }
a.work-card:active { transform: scale(0.99); }
.work-grid > li.is-hidden { display: none; }

.work-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767px) { .work-card-media { border-radius: 0; } }

.work-card-media::before {
  content: attr(data-mono);
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 6rem;
  color: rgba(10, 10, 10, 0.08);
}

.work-card-title-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 24px;
}

.work-card-title-row h3 {
  font-size: clamp(1.125rem, 0.5vw + 1rem, 1.5rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.work-card-arrow {
  font-size: clamp(1.125rem, 0.5vw + 1rem, 1.5rem);
}

.work-card-excerpt {
  font-size: clamp(1.125rem, 0.5vw + 1rem, 1.5rem);
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
}

/* generic placeholder cover, reused for case-study inline images */
.cover {
  position: relative;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cover::before {
  content: attr(data-mono);
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 9rem;
  color: rgba(10, 10, 10, 0.07);
}

.cover--1 { background: linear-gradient(135deg, var(--accent-green), var(--accent-cyan)); }
.cover--2 { background: linear-gradient(135deg, var(--accent-pink), var(--accent-lavender)); }
.cover--3 { background: linear-gradient(135deg, var(--accent-peach), var(--accent-pink)); }
.cover--4 { background: linear-gradient(135deg, var(--accent-lavender), var(--accent-green)); }
.cover--5 { background: linear-gradient(135deg, var(--accent-cyan), var(--accent-peach)); }
.cover--6 { background: linear-gradient(135deg, var(--accent-green), var(--accent-pink)); }

/* ============================================================
   Testimonials
   ============================================================ */
.testimonial-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1023px) {
  .testimonial-track { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .testimonial-track { grid-template-columns: 1fr; }
}

.testimonial-card {
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card p.quote {
  font-size: 1rem;
  color: var(--fg);
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
}

.testimonial-person .name {
  font-weight: 500;
  font-size: 0.9rem;
}
.testimonial-person .role {
  font-size: 0.8125rem;
  color: var(--fg-faint);
}

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
  border-radius: var(--radius-lg);
  background: var(--fg);
  color: var(--bg);
  padding: 80px 40px;
  text-align: center;
}

.cta-band h2 {
  color: var(--bg);
  font-size: clamp(1.9rem, 2vw + 1rem, 3rem);
  margin-bottom: 16px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.65);
  max-width: 460px;
  margin: 0 auto 32px;
}

.cta-band .btn--primary {
  background: var(--bg);
  color: var(--fg);
}
.cta-band .btn--primary:hover { background: #e9e9e9; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  padding: 70px 0 40px;
  border-top: 1px solid var(--border);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.footer-top h3 {
  font-size: 1.6rem;
  max-width: 380px;
}

.footer-links {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.footer-col h4 {
  font-family: "Inter", sans-serif;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fg-faint);
  margin-bottom: 14px;
}

.footer-col a,
.footer-col span {
  display: block;
  font-size: 0.9375rem;
  color: var(--fg-muted);
  padding: 5px 0;
  transition: color 0.2s var(--ease);
}
.footer-col a:hover { color: var(--fg); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--fg-faint);
  flex-wrap: wrap;
}

/* ============================================================
   About page
   ============================================================ */
.about-hero {
  padding: 160px 0 100px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

@media (max-width: 900px) {
  .about-hero { padding: 140px 0 60px; }
  .about-grid { grid-template-columns: 1fr; }
}

.about-hero h1 { font-size: clamp(2.2rem, 3vw + 1rem, 3.2rem); margin-bottom: 20px; }
.about-hero p { color: var(--fg-muted); font-size: 1.0625rem; margin-bottom: 16px; }

.portrait {
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--accent-lavender), var(--accent-pink));
  display: flex;
  align-items: center;
  justify-content: center;
}

.portrait span {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 5rem;
  color: rgba(10, 10, 10, 0.12);
}

.timeline {
  display: flex;
  flex-direction: column;
}

.timeline-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
}
.timeline-item:last-child { border-bottom: 1px solid var(--border); }

@media (max-width: 700px) {
  .timeline-item { grid-template-columns: 1fr; gap: 6px; }
}

.timeline-item .period {
  color: var(--fg-faint);
  font-size: 0.9rem;
}

.timeline-item h3 { font-size: 1.15rem; margin-bottom: 4px; }
.timeline-item .role { color: var(--fg-muted); font-size: 0.9375rem; }

/* ============================================================
   Portfolio listing
   ============================================================ */
.portfolio-hero {
  padding: 160px 0 60px;
}
.portfolio-hero h1 { font-size: clamp(2.2rem, 3vw + 1rem, 3.4rem); margin-bottom: 16px; }
.portfolio-hero p { color: var(--fg-muted); max-width: 520px; font-size: 1.0625rem; margin-bottom: 32px; }

/* ============================================================
   Case study
   ============================================================ */
.case-hero {
  padding: 160px 0 0;
}

.case-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin-bottom: 32px;
  transition: gap 0.25s var(--ease);
}
.case-back:hover { gap: 12px; color: var(--fg); }

.case-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.case-hero h1 {
  font-size: clamp(2.2rem, 3.5vw + 1rem, 3.75rem);
  max-width: 760px;
  margin-bottom: 20px;
}

.case-hero .lede {
  color: var(--fg-muted);
  font-size: 1.125rem;
  max-width: 620px;
  margin-bottom: 48px;
}

.case-cover {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--accent-green), var(--accent-lavender));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.case-cover span {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: clamp(3rem, 8vw, 8rem);
  color: rgba(10, 10, 10, 0.08);
}

.case-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 36px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 80px;
}

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

.case-facts dt {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fg-faint);
  margin-bottom: 8px;
}
.case-facts dd { font-size: 1.0625rem; font-weight: 500; }
.case-facts dd a { text-decoration: underline; text-underline-offset: 3px; }

.case-section {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 56px;
  margin-bottom: 88px;
}

@media (max-width: 900px) {
  .case-section { grid-template-columns: 1fr; gap: 20px; }
}

.case-section h2 { font-size: 1.6rem; }
.case-section .body { max-width: 640px; }
.case-section .body p { color: var(--fg-muted); font-size: 1.0625rem; margin-bottom: 20px; }

.case-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 28px;
}

.case-quote {
  padding: 56px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 88px;
}

.case-quote blockquote {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.4rem, 1.5vw + 1rem, 2rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  max-width: 760px;
  margin-bottom: 24px;
}

.next-project {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 48px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  margin-bottom: 100px;
  gap: 24px;
  flex-wrap: wrap;
}

.next-project .label {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fg-faint);
  margin-bottom: 8px;
}

.next-project h3 { font-size: 1.8rem; }

/* ============================================================
   Contact
   ============================================================ */
.contact-hero {
  padding: 170px 0 40px;
  text-align: center;
}
.contact-hero h1 { font-size: clamp(2.4rem, 3.5vw + 1rem, 3.6rem); margin-bottom: 16px; }
.contact-hero p { color: var(--fg-muted); max-width: 480px; margin: 0 auto; font-size: 1.0625rem; }

.email-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 40px 0 100px;
}

.email-display {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.3rem, 2vw + 0.5rem, 2rem);
  font-weight: 500;
  padding: 18px 28px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-strong);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding-bottom: 120px;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg-muted);
}

.field input,
.field textarea,
.field select {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  background: var(--bg);
  transition: border-color 0.2s var(--ease);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--fg);
}

.field textarea { resize: vertical; min-height: 120px; }

.form-note {
  font-size: 0.875rem;
  color: var(--success);
  min-height: 20px;
}

.contact-side h3 { font-size: 1.15rem; margin-bottom: 14px; }
.contact-side p { color: var(--fg-muted); margin-bottom: 28px; }

.social-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}
.social-list a {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
  transition: gap 0.2s var(--ease), color 0.2s var(--ease);
}
.social-list a:hover { color: var(--fg-muted); }

/* ============================================================
   Reveal-on-scroll
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   Cursor follow bubble
   ============================================================ */
.cursor-bubble {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  pointer-events: none;
  width: 84px;
  height: 84px;
  margin-left: -42px;
  margin-top: -42px;
  border-radius: 50%;
  background: var(--fg);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 500;
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.cursor-bubble.is-active {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 900px) {
  .cursor-bubble { display: none; }
}
