@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&family=Syne:wght@500;700;800&display=swap');

/* Brand Design Variables - Premium Light Theme */
:root {
  --font-sans: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --font-accent: 'Syne', sans-serif;

  /* Helloprint Inspired / Hyderabad Client Palette */
  --color-cyan: #00E4FF;
  --color-magenta: #FF007F;
  --color-yellow: #FFEA00;
  --color-green: #00A859;
  --color-green-hover: #008A47;
  --color-bg: #F8F9FB;
  --color-card: #FFFFFF;
  --color-text-main: #1D1D21;
  --color-text-muted: #565660;
  --color-border: #E5E7EB;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg);
  color: var(--color-text-main);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Custom Cursor (Light theme adaptation) */
.custom-cursor {
  width: 8px;
  height: 8px;
  background-color: var(--color-text-main);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.custom-cursor-follower {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(29, 29, 33, 0.2);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9998;
  mix-blend-mode: difference;
  /* Inverts whatever is behind */
}

/* Cursor hover adjustments */
.custom-cursor.hovered {
  width: 12px;
  height: 12px;
  background-color: var(--color-magenta);
}

.custom-cursor-follower.hovered {
  width: 60px;
  height: 60px;
  border-color: var(--color-cyan);
  background-color: rgba(0, 228, 255, 0.15);
}

.custom-cursor-follower.clickable {
  width: 50px;
  height: 50px;
  border-color: var(--color-magenta);
  background-color: rgba(255, 0, 127, 0.05);
}

.custom-cursor-follower.drag {
  width: 80px;
  height: 80px;
  border-color: var(--color-yellow);
  background-color: rgba(255, 234, 0, 0.1);
}

.custom-cursor-follower.drag::after {
  content: 'DRAG';
  font-family: var(--font-accent);
  color: var(--color-text-main);
  font-size: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  letter-spacing: 2px;
}

/* Lenis resets */
html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overflow: clip;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
  background: rgba(29, 29, 33, 0.12);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-magenta);
}

/* Premium Light glass cards */
.glass {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.04);
}

.glass-card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.08);
}

/* Dynamic CMYK background lighting blobs */
.gradient-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.18;
  mix-blend-mode: multiply;
  /* Perfect blending for light backgrounds */
}

.blob-cyan {
  background: radial-gradient(circle, var(--color-cyan) 0%, transparent 70%);
}

.blob-magenta {
  background: radial-gradient(circle, var(--color-magenta) 0%, transparent 70%);
}

.blob-yellow {
  background: radial-gradient(circle, var(--color-yellow) 0%, transparent 70%);
}

.transition-curtain {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  pointer-events: none;
}

.curtain-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.layer-cyan {
  background-color: var(--color-cyan);
}

.layer-magenta {
  background-color: var(--color-magenta);
}

.layer-yellow {
  background-color: var(--color-yellow);
}

/* Print alignment marks watermark */
.print-grid-lines {
  background-size: 50px 50px;
  background-image:
    linear-gradient(to right, rgba(0, 0, 0, 0.015) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.015) 1px, transparent 1px);
}

.print-mark {
  width: 20px;
  height: 20px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  position: relative;
}

.print-mark::before,
.print-mark::after {
  content: '';
  position: absolute;
  background: rgba(0, 0, 0, 0.08);
}

.print-mark::before {
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  transform: translateX(-50%);
}

.print-mark::after {
  top: 50%;
  left: 0;
  height: 1px;
  width: 100%;
  transform: translateY(-50%);
}

/* Spotlight mouse glow card */
.spotlight-card {
  background-color: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

/* Horizontal slider container */
.horizontal-scroll-container {
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
}

/* Infinite marquee wrap */
@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.animate-marquee {
  display: flex;
  width: max-content;
  animation: marquee-scroll 25s linear infinite;
}

.scroll-pause:hover .animate-marquee {
  animation-play-state: paused;
}

/* Clip mask entry reveals */
.text-mask-reveal {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}