* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Sora', sans-serif; overflow-x: hidden; }

/* Neo-brutalist shadow classes */
.shadow-brutal {
  border: 3px solid #1a1a2e;
  box-shadow: 5px 5px 0px #1a1a2e;
}
.shadow-brutal-sm {
  border: 2.5px solid #1a1a2e;
  box-shadow: 4px 4px 0px #1a1a2e;
}
.shadow-brutal-lg {
  border: 3px solid #1a1a2e;
  box-shadow: 6px 6px 0px #1a1a2e;
}

/* Hover lift for brutal shadows */
.brutal-hover {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.brutal-hover:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0px #1a1a2e;
}

/* Marquee */
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-track {
  display: flex;
  animation: marquee 20s linear infinite;
  width: max-content;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(.16,1,.3,1), transform 0.6s cubic-bezier(.16,1,.3,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Phone placeholder */
.phone-placeholder {
  border-radius: 32px;
  overflow: hidden;
  border: 3px solid #1a1a2e;
  box-shadow: 6px 6px 0px #1a1a2e;
  background: #1a1a2e;
  transition: z-index 0s;
  cursor: default;
}
.phone-placeholder:hover {
  z-index: 30;
}
.phone-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
