/* ============================================================================
   busy beer — premium dark glassmorphic redesign (Middle Place style)
   ============================================================================ */

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 1000;
}
.skip-link:focus {
  left: 16px; top: 16px; padding: 12px 18px;
  background: #fff; color: #0d0d0d; border-radius: 12px;
  font-weight: 600; box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

:root {
  color-scheme: dark;

  /* Colors */
  --bg-color: #0d0d0d;
  --surface: #1c1c1e;
  --card-bg: rgba(25, 25, 25, 0.6);
  --surface-glass: rgba(28, 28, 30, 0.45);
  --glass-border: rgba(255, 255, 255, 0.1);
  --text-main: #f5f5f7;
  --text-secondary: #e0e0e5;
  --text-muted: #ceced2;
  --text-faint: #636366;
  --border: rgba(255, 255, 255, 0.05);

  /* Busy Beer Specific Accents */
  --accent: #f2a33c; /* Amber */
  --accent-hover: #f5b662;

  --shadow-float: 0 20px 40px rgba(0,0,0,0.4);
  --shadow-bento: 0 8px 30px rgba(0,0,0,0.4), 0 1px 3px rgba(0,0,0,0.2);
  --shadow-bento-hover: 0 14px 40px rgba(0,0,0,0.6), 0 4px 12px rgba(0,0,0,0.3);

  /* Rainbow Accents for Mesh and text */
  --color-1: #f2a33c; /* Amber */
  --color-2: #5856d6; /* Indigo */
  --color-3: #50e3c2; /* Teal */
  --color-4: #ff375f; /* Pink */
  --color-5: #af52de; /* Purple */

  /* Radii */
  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 40px;
  --radius-pill: 999px;

  /* Typography */
  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Rounded", "Helvetica Neue", sans-serif;

  /* Motion */
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease: cubic-bezier(0.25, 1, 0.5, 1);
  --maxw: 760px;
  --maxw-wide: 1180px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0; padding: 0;
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-sans);
  font-size: 19px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Page Background */
.page-bg {
  position: fixed; inset: 0; z-index: -1;
  overflow: hidden; background-color: var(--bg-color); pointer-events: none;
}
.noise-overlay {
  position: absolute; inset: 0; z-index: 1; opacity: 0.15; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='1'/%3E%3C/svg%3E");
}
.mesh-blob {
  position: absolute; filter: blur(80px); opacity: 0.3; border-radius: 50%;
  animation: float 25s infinite ease-in-out alternate;
  will-change: transform; z-index: 0;
}
.blob-1 { top: -10%; left: -10%; width: 60vw; height: 60vw; background: var(--color-1); animation-delay: 0s; }
.blob-2 { top: 30%; right: -20%; width: 70vw; height: 70vw; background: var(--color-2); animation-delay: -5s; }
.blob-3 { bottom: -20%; left: 10%; width: 80vw; height: 60vw; background: var(--color-3); animation-delay: -10s; }
.blob-4 { top: 10%; left: 30%; width: 50vw; height: 50vw; background: var(--color-4); animation-delay: -15s; }

@keyframes float {
  0% { transform: translate(0, 0) scale(1) rotate(0deg); }
  33% { transform: translate(8%, -8%) scale(1.1) rotate(5deg); }
  66% { transform: translate(-8%, 12%) scale(0.9) rotate(-5deg); }
  100% { transform: translate(4%, 4%) scale(1.05) rotate(2deg); }
}
@keyframes float-subtle {
  0% { transform: translate(0, 0) scale(1) rotate(0deg); }
  33% { transform: translate(3%, -3%) scale(1.02) rotate(2deg); }
  66% { transform: translate(-3%, 4%) scale(0.98) rotate(-2deg); }
  100% { transform: translate(2%, 2%) scale(1.01) rotate(1deg); }
}

a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-hover); }
img { max-width: 100%; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.wrap-wide { max-width: var(--maxw-wide); margin: 0 auto; padding: 0 24px; }

/* Typography */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.1; margin-bottom: 0.5em; letter-spacing: -0.02em; color: var(--text-main); }
h1 { font-size: clamp(48px, 8vw, 80px); letter-spacing: -0.03em; margin-bottom: 24px; }
h2 { font-size: clamp(32px, 5vw, 48px); margin-top: 1.5em; margin-bottom: 24px; }

.display { 
  font-size: clamp(64px, 10vw, 110px); 
  font-weight: 800; 
  letter-spacing: -0.04em;
  line-height: 1.02;
  margin-bottom: 24px;
}
.display .grad {
  background: linear-gradient(110deg, var(--color-1), var(--color-4), var(--color-2), var(--color-3), var(--color-1));
  background-size: 300% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: shine 8s linear infinite, text-breathe 4s ease-in-out infinite alternate;
  display: inline-block;
}
@keyframes shine {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}
@keyframes text-breathe {
  0% { transform: scale(1); }
  100% { transform: scale(1.02); }
}

h2.section-h { font-size: clamp(40px, 6vw, 64px); margin-bottom: 16px; font-weight: 800; letter-spacing: -0.04em; margin-top: 0; }
.kicker {
  font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--color-1); margin-bottom: 16px; display: inline-block;
}
p { margin: 0 0 20px; }
.lede { 
  font-size: clamp(20px, 3vw, 26px); 
  color: var(--text-secondary); 
  font-weight: 500; 
  line-height: 1.4; 
  margin: 0 auto 48px; 
}
em.ink { font-style: normal; color: var(--color-1); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--surface-glass);
  backdrop-filter: blur(22px) saturate(160%); -webkit-backdrop-filter: blur(22px) saturate(160%);
  border-bottom: 1px solid var(--border); box-shadow: inset 0 -1px 0 rgba(255,255,255,0.05);
}
.site-header .wrap-wide { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand {
  display: flex; align-items: center; gap: 14px;
  font-weight: 800; font-size: 22px; color: var(--text-main); letter-spacing: -0.02em;
}
.brand-icon {
  width: 38px; height: 38px; border-radius: 10px;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.15));
  transition: transform 0.6s var(--spring), filter 0.6s var(--spring);
}
.brand:hover .brand-icon { transform: scale(1.15) rotate(-8deg); filter: drop-shadow(0 8px 16px rgba(0,0,0,0.3)); }
.nav { display: flex; gap: 32px; font-weight: 600; font-size: 16px; align-items: center; }
.nav a { color: var(--text-main); transition: opacity 0.2s ease; position: relative; }
.nav a::after {
  content: ''; position: absolute; width: 0; height: 2px; bottom: -4px; left: 0;
  background-color: var(--accent); transition: width 0.3s var(--spring); border-radius: 2px;
}
.nav a:hover { opacity: 1; }
.nav a:hover::after { width: 100%; }
.nav .nav-cta { color: var(--bg-color); background: var(--text-main); padding: 8px 18px; border-radius: var(--radius-pill); font-weight: 700; }
.nav .nav-cta::after { display: none; }
.nav .nav-cta:hover { background: var(--text-muted); }

/* Buttons */
.cta-row { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-top: 36px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--text-main); color: var(--bg-color); font-weight: 700; font-size: 19px;
  padding: 18px 40px; border-radius: var(--radius-pill); transition: all 0.5s var(--spring);
  box-shadow: var(--shadow-float); border: none; cursor: pointer; letter-spacing: -0.01em;
  position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; top: 50%; left: 50%; width: 150%; height: 150%;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
  transform: translate(-50%, -50%) scale(0); opacity: 0; transition: transform 0.6s var(--ease), opacity 0.6s var(--ease); pointer-events: none;
}
.btn:hover::after { transform: translate(-50%, -50%) scale(1); opacity: 1; }
.btn:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 30px 60px rgba(0,0,0,0.5); color: var(--bg-color); }
.btn:active { transform: translateY(0) scale(0.98); }

.btn--ghost { background: transparent; color: var(--text-main); border: 1px solid var(--border); box-shadow: none; }
.btn--ghost:hover { background: rgba(255,255,255,0.06); color: var(--text-main); box-shadow: none; }

.text-link { color: var(--text-main); font-weight: 600; text-decoration: none; font-size: 19px; display: inline-flex; align-items: center; gap: 6px; transition: all 0.3s ease; }
.text-link:hover { opacity: 0.8; gap: 10px; }

/* App Store badge */
.appstore {
  display: inline-flex; align-items: center; gap: 12px; text-decoration: none;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px); color: var(--text-main);
  padding: 11px 22px 11px 18px; border-radius: 18px;
  transition: transform 0.4s var(--spring), background 0.2s, box-shadow 0.4s var(--ease);
}
.appstore:hover { transform: translateY(-3px) scale(1.02); background: rgba(255,255,255,0.12); box-shadow: 0 14px 30px rgba(0,0,0,0.4); }
.appstore svg { width: 28px; height: 28px; fill: var(--text-main); }
.appstore .as-text { line-height: 1.05; text-align: left; }
.appstore .as-small { display: block; font-size: 11px; font-weight: 600; opacity: 0.8; letter-spacing: 0.05em; }
.appstore .as-big   { display: block; font-size: 20px; font-weight: 700; letter-spacing: -0.01em; }

/* Sections & Bands */
.band { padding: 120px 0; position: relative; z-index: 10; }
.band--tight { padding-bottom: 80px; }
.section-header { text-align: center; margin-bottom: 60px; max-width: 800px; margin-inline: auto; }
.section-header .lede { margin-top: 20px; margin-bottom: 0; }

/* Hero */
.hero { padding: 90px 0 80px; text-align: center; }
.hero-copy { max-width: 1000px; margin: 0 auto; }
.hero .lede { max-width: 700px; }
.hero .cta-row { justify-content: center; }
.hero-art {
  margin: 60px auto 0; max-width: 1100px; position: relative;
  mask-image: linear-gradient(to bottom, black calc(100% - 120px), transparent calc(100% - 40px));
  -webkit-mask-image: linear-gradient(to bottom, black calc(100% - 120px), transparent calc(100% - 40px));
  padding-bottom: 40px;
}
.hero-phones { width: 100%; height: auto; animation: hero-float 8s ease-in-out infinite; filter: drop-shadow(0 30px 60px rgba(0,0,0,0.4)); }
@keyframes hero-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }

/* Bento Grid */
.bento-grid {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px;
  grid-auto-rows: minmax(320px, auto);
}
.bento-card {
  position: relative; background: var(--surface-glass);
  backdrop-filter: blur(30px) saturate(180%); -webkit-backdrop-filter: blur(30px) saturate(180%);
  border-radius: var(--radius-lg); padding: 48px;
  box-shadow: var(--shadow-bento), inset 0 0 0 1px var(--glass-border);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  overflow: hidden; display: flex; flex-direction: column;
}
.bento-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-bento-hover), inset 0 0 0 1.5px rgba(255,255,255,0.2);
}
.span-12 { grid-column: span 12; }
.span-8  { grid-column: span 8; }
.span-7  { grid-column: span 7; }
.span-6  { grid-column: span 6; }
.span-5  { grid-column: span 5; }
.span-4  { grid-column: span 4; }
.row-2 { grid-row: span 2; }
.row-span-2 { grid-row: span 2; }

@media (max-width: 1024px) {
  .span-8, .span-7, .span-6, .span-5, .span-4 { grid-column: span 12; }
  .row-2, .row-span-2 { grid-row: span 1; }
  .bento-grid { grid-auto-rows: auto; }
}

.bento-card h3 { font-size: clamp(28px, 3.5vw, 36px); margin-bottom: 16px; z-index: 2; position: relative; }
.bento-card p { color: var(--text-secondary); font-size: 20px; z-index: 2; position: relative; max-width: 24em; line-height: 1.5; }
.bento-art { margin-top: 40px; flex-grow: 1; display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; overflow: visible; }

.card-split { flex-direction: row; gap: 40px; }
.card-split > .copy { flex: 1; min-width: 260px; display: flex; flex-direction: column; justify-content: center; z-index: 2; }
.card-split > .bento-art { flex: 1; margin: 0; align-items: center; justify-content: flex-end; }
@media (max-width: 900px) {
  .card-split { flex-direction: column; }
  .card-split > .bento-art { justify-content: center; margin-top: 20px; }
}

.card-mini { justify-content: center; min-height: 220px; padding: 40px; text-align: center; }
.card-mini h3 { font-size: 24px; }
.card-mini p { font-size: 17px; margin: 0; margin-inline: auto; }

/* Phone frames */
.phone {
  background: #111; padding: 8px; border-radius: 38px;
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.15), 0 30px 60px rgba(0,0,0,0.5);
  position: relative; width: 100%; transform: translateZ(30px); transition: transform 0.6s var(--spring);
}
.bento-card:hover .phone { transform: translateZ(50px) scale(1.03); }
/* Dynamic Island */
.phone.no-island::before { display: none !important; }
.phone img, .phone video { display: block; width: 100%; height: auto; border-radius: 30px; background: #000; }

/* Square Motion Cards */
.square-motion {
  width: 100%; max-width: 320px;
  border-radius: 28px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(255,255,255,0.1);
  transform: translateZ(30px);
  transition: transform 0.6s var(--spring);
}
.bento-card:hover .square-motion { transform: translateZ(50px) scale(1.03); }
.square-motion video { display: block; width: 100%; height: auto; border-radius: 28px; background: #000; }

/* Motion Showcase / Videos */
.motion-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 24px; }
.motion-phone {
  grid-row: span 2; display: flex; flex-direction: column;
  background: var(--surface-glass); border-radius: var(--radius-lg); padding: 36px 40px;
  box-shadow: var(--shadow-bento), inset 0 0 0 1px var(--glass-border);
  backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px);
  min-height: 0;
  align-self: center;
}
.motion-phone .vc-copy h3 { font-size: 32px; margin-bottom: 8px; }
.motion-phone .vc-copy p { color: var(--text-secondary); font-size: 20px; margin-bottom: 32px; }
.motion-phone video { width: 100%; max-width: 100%; height: auto; border-radius: 24px; display: block; box-shadow: 0 30px 60px rgba(0,0,0,0.5); }

.video-card {
  background: var(--surface-glass); border-radius: var(--radius-lg);
  padding: 36px 40px; box-shadow: var(--shadow-bento), inset 0 0 0 1px var(--glass-border);
  backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px); overflow: hidden; display: flex; flex-direction: column;
}
.video-card .vc-copy h3 { font-size: 26px; margin-bottom: 8px; }
.video-card .vc-copy p { color: var(--text-secondary); font-size: 18px; margin-bottom: 32px; }
.video-card .vc-media { margin: 0; display: flex; justify-content: center; }
.video-card .vc-media video { width: 100%; max-width: 460px; height: auto; display: block; border-radius: 24px; box-shadow: 0 20px 40px rgba(0,0,0,0.3); }

@media (max-width: 900px) {
  .motion-grid { grid-template-columns: 1fr; }
  .motion-phone { grid-row: auto; max-width: 400px; margin: 0 auto; }
}

/* Story Hero Video */
.story-hero { display: flex; justify-content: center; align-items: center; margin-top: 20px; }
@media (min-width: 900px) {
  .story-split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
  .story-split .section-header { text-align: left; margin-bottom: 0; }
  .story-split .section-header .lede { margin: 20px 0 0; }
  .story-split .story-hero { margin-top: 0; justify-content: flex-end; }
}
.story-hero video { 
  width: 100%; max-width: 320px; height: auto;
  border-radius: 40px; box-shadow: 0 40px 80px rgba(0,0,0,0.5);
  animation: float-subtle 10s ease-in-out infinite alternate;
}

/* Gallery Loop */
.gallery {
  display: flex; gap: 40px; overflow: hidden; padding: 20px 0 80px;
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}
.gallery-group { display: flex; gap: 40px; align-items: center; animation: scroll-x 60s linear infinite; }
.gallery .phone { flex: 0 0 280px; width: 280px; }
@keyframes scroll-x { from { transform: translateX(0); } to { transform: translateX(calc(-100% - 40px)); } }

/* Privacy */
.privacy-card { text-align: center; max-width: 820px; margin: 0 auto; padding: 60px 40px; }
.privacy-card .display { font-size: clamp(40px, 7vw, 76px); margin-bottom: 24px; line-height: 1.1; }
.privacy-card .lede { margin: 0 auto 36px; max-width: 620px; }
.privacy-points { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.chip {
  font-size: 16px; font-weight: 600; color: var(--text-main);
  background: var(--surface-glass); border: 1px solid var(--glass-border);
  padding: 10px 20px; border-radius: var(--radius-pill);
  backdrop-filter: blur(10px);
}

/* Responsible Note */
.note-block {
  background: rgba(242, 163, 60, 0.15); border: 1px solid rgba(242, 163, 60, 0.3);
  border-left: 4px solid var(--color-1);
  border-radius: var(--radius-md); padding: 26px 32px; max-width: 880px; margin: 0 auto;
  box-shadow: var(--shadow-bento);
}
.note-block p { font-size: 18px; color: var(--text-main); margin-bottom: 8px; font-weight: 500; }
.note-block p:last-child { margin-bottom: 0; }
.note-block strong { color: var(--color-1); font-weight: 800; }

/* Closer */
.closer { text-align: center; padding: 20px 0 60px; }
.app-icon-large {
  width: 160px; height: 160px; border-radius: 36px; margin: 0 auto 36px; display: block;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5); animation: float 8s ease-in-out infinite alternate;
}
.closer h2 { margin-bottom: 20px; }
.closer .lede { max-width: 600px; margin: 0 auto 16px; }
.platform { color: var(--text-faint); font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; font-size: 14px; margin-top: 24px; }

/* Footer */
.site-footer { background: transparent; color: var(--text-secondary); padding: 60px 0; border-top: 1px solid var(--border); }
.site-footer .wrap-wide { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; }
.brand-foot { font-weight: 800; color: var(--text-main); font-size: 22px; letter-spacing: -0.02em; }
.footer-links { display: flex; gap: 32px; flex-wrap: wrap; }
.footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 16px; font-weight: 600; transition: color 0.2s; }
.footer-links a:hover { color: var(--text-main); }
.copy { color: var(--text-faint); font-size: 14px; width: 100%; font-weight: 500; }

/* Legal Pages */
.legal { max-width: 840px; padding: 100px 24px; position: relative; z-index: 2; margin-inline: auto; }
.legal h1 { font-size: clamp(48px, 8vw, 72px); letter-spacing: -0.04em; margin-bottom: 16px; background: linear-gradient(135deg, #fff 0%, #888 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.legal .updated { font-size: 14px; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 800; color: var(--color-1); margin-bottom: 48px; display: block; }
.legal > p { color: var(--text-secondary); font-size: 20px; line-height: 1.6; margin-bottom: 24px; }
.legal h2 { font-size: 32px; margin: 60px 0 20px; color: var(--text-main); }
.legal h3 { font-size: 24px; margin: 32px 0 16px; }
.legal ul { color: var(--text-secondary); font-size: 20px; line-height: 1.6; margin: 0 0 24px 24px; }
.legal li { margin-bottom: 12px; }
.legal .lede-block { font-size: 22px; color: var(--text-main); font-weight: 500; margin-bottom: 32px; }

.callout {
  background: var(--surface-glass); border: 1px solid var(--glass-border);
  border-left: 4px solid var(--color-1); border-radius: var(--radius-md); padding: 28px 32px; margin: 0 0 40px; box-shadow: var(--shadow-bento);
}
.callout p { font-size: 18px; color: var(--text-main); margin-bottom: 12px; }
.callout p:last-child { margin-bottom: 0; }
.callout strong { color: var(--color-1); }

.toc {
  background: var(--card-bg); border: 1px solid var(--glass-border); border-radius: var(--radius-lg);
  padding: 40px; margin: 40px 0 60px; box-shadow: var(--shadow-bento); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
}
.toc h2 { font-size: 18px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--text-faint); margin: 0 0 24px; }
.toc ol { columns: 2; column-gap: 40px; margin: 0; padding-left: 24px; }
.toc li { margin-bottom: 14px; font-size: 18px; }
.toc a { color: var(--text-main); text-decoration: none; font-weight: 500; }
.toc a:hover { color: var(--color-1); }

.legal table { width: 100%; border-collapse: collapse; margin: 24px 0 32px; font-size: 18px; }
.legal th, .legal td { text-align: left; padding: 16px 20px; border-bottom: 1px solid var(--border); vertical-align: top; }
.legal th { color: var(--text-main); font-weight: 700; background: rgba(255,255,255,0.03); }
.legal td { color: var(--text-secondary); }

/* Playful Trailing Cursor */
.cursor-blob {
  position: fixed; top: -100px; left: -100px; width: 180px; height: 180px;
  border-radius: 50%; pointer-events: none; z-index: 9999;
  mix-blend-mode: screen; filter: blur(28px); will-change: transform;
  opacity: 0; transition: opacity 0.5s ease, filter 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  body:hover .cursor-blob { opacity: 0.6; }
}
.cursor-blob:nth-of-type(1) { background: var(--color-1); }
.cursor-blob:nth-of-type(2) { background: var(--color-2); }
.cursor-blob:nth-of-type(3) { background: var(--color-3); }
.cursor-blob:nth-of-type(4) { background: var(--color-4); }
.cursor-blob.burst-color { filter: blur(20px) brightness(1.5); }

/* Scroll reveal */
.will-reveal { opacity: 0; transform: translateY(40px) scale(0.96); transition: opacity 0.8s var(--ease), transform 0.8s var(--spring); }
.is-revealed { opacity: 1; transform: translateY(0) scale(1); }
@media (prefers-reduced-motion: reduce) {
  .will-reveal { opacity: 1; transform: none; transition: none; }
  .hero-phones, .app-icon-large { animation: none; }
  .gallery-group { animation: none; }
  .mesh-blob { animation: none; }
  html { scroll-behavior: auto; }
}
