@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Syne:wght@700;800;900&display=swap');

/* --- CUSTOM PROPERTIES --- */
:root {
  --bg-primary: #000000;
  --bg-secondary: #08080c;
  --bg-tertiary: #111116;
  
  --accent-purple: #8b5cf6;
  --accent-purple-light: #c084fc;
  --accent-purple-dim: rgba(139, 92, 246, 0.12);
  
  --text-primary: #ffffff;
  --text-secondary: #e2e0e8;
  --text-muted: #757480;
  
  --border-color: rgba(255, 255, 255, 0.05);
  --border-hover: rgba(255, 255, 255, 0.15);
  
  --font-heading: 'Syne', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- BASIC RESET & GLOBAL --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-primary);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  position: relative;
}

/* --- SUBTLE BACKGROUND GLOWS (3 BLOBS ONLY) --- */
.bg-glow-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.glow-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(160px);
  opacity: 0.18;
  background: radial-gradient(circle, var(--accent-purple) 0%, transparent 70%);
}

.glow-blob-1 {
  top: -10%;
  right: -10%;
  width: 600px;
  height: 600px;
  animation: float-blob-1 25s infinite alternate;
}

.glow-blob-2 {
  bottom: -10%;
  left: -10%;
  width: 700px;
  height: 700px;
  animation: float-blob-2 30s infinite alternate;
}

.glow-blob-3 {
  top: 35%;
  left: 35%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-purple-light) 0%, transparent 70%);
  opacity: 0.08;
}

@keyframes float-blob-1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-100px, 80px) scale(1.1); }
}

@keyframes float-blob-2 {
  0% { transform: translate(0, 0) scale(1.1); }
  100% { transform: translate(100px, -100px) scale(0.9); }
}

/* --- CUSTOM CURSOR --- */
.custom-cursor {
  width: 6px;
  height: 6px;
  background-color: #ffffff;
  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: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.08s cubic-bezier(0.25, 1, 0.5, 1), width 0.3s, height 0.3s, background-color 0.3s, border-color 0.3s;
}

.custom-cursor.hovered {
  width: 4px;
  height: 4px;
  background-color: var(--accent-purple-light);
}

.custom-cursor-follower.hovered {
  width: 52px;
  height: 52px;
  background-color: rgba(255, 255, 255, 0.05);
  border-color: #ffffff;
}

/* --- CUSTOM SCROLLBAR --- */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border-radius: 3px;
}

/* --- PRELOADER --- */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--bg-primary);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.8s;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-logo {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -3px;
  margin-bottom: 20px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(20px);
  animation: preloader-fade-in-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.2s;
}

.preloader-bar-container {
  width: 180px;
  height: 1px;
  background-color: var(--bg-tertiary);
  position: relative;
  overflow: hidden;
}

.preloader-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: #ffffff;
  animation: preloader-progress 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.4s;
}

@keyframes preloader-fade-in-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes preloader-progress {
  to {
    width: 100%;
  }
}

/* --- BADASS BIG TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.04em;
}

h3, h4, h5, h6 {
  line-height: 1.25;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

.display-1 {
  font-size: clamp(2.5rem, 6.2vw, 5.2rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.85;
}

.display-2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 40%, rgba(255, 255, 255, 0.5) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Typography Line Mask Reveal */
.line-mask {
  overflow: hidden;
  display: block;
}

.line-mask span {
  display: inline-block;
  transform: translateY(100%);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  background: linear-gradient(135deg, #ffffff 40%, rgba(255, 255, 255, 0.5) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.line-mask.revealed span {
  transform: translateY(0);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 36px;
  border-radius: 40px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: var(--text-primary);
  color: var(--bg-primary);
}

.btn-primary:hover {
  background-color: rgba(255, 255, 255, 0.85);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.02);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.badge {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

/* --- REVEAL ANIMATIONS (MULTI-DIRECTIONAL MOVEMENT) --- */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-right {
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-down {
  opacity: 0;
  transform: translateY(-60px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.revealed,
.reveal-left.revealed,
.reveal-right.revealed,
.reveal-down.revealed {
  opacity: 1;
  transform: translate(0, 0);
}

/* --- CONTAINER & SECTIONS --- */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 30px;
}

.section {
  padding: 120px 0;
}

/* --- NAVBAR HEADER --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 36px 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease, background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.header.header-hidden {
  transform: translateY(-100%);
}

.header.scrolled {
  padding: 20px 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 40px;
  padding: 10px 32px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-link:hover {
  color: var(--text-primary);
}

.mobile-cta-item {
  display: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 20px;
  height: 14px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg) !important;
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0 !important;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg) !important;
}

/* --- CORE BENTO GRID LAYOUT --- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
}

.bento-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 30px;
  padding: 50px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 15px 50px rgba(255, 255, 255, 0.02);
}

/* Grid Column Spans */
.span-12 { grid-column: span 12; }
.span-8 { grid-column: span 8; }
.span-6 { grid-column: span 6; }
.span-4 { grid-column: span 4; }

/* Bento Hero Intro Cell */
.bento-hero-intro {
  min-height: 520px;
  justify-content: center;
  will-change: transform;
}

.bento-hero-title {
  margin-bottom: 24px;
}

.bento-hero-desc {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 620px;
  margin-bottom: 40px;
  opacity: 0.9;
  line-height: 1.5;
}

.bento-hero-cta {
  display: flex;
  gap: 16px;
}

/* Bento Doodle Image Cell & Blueprint Canvas */
.bento-doodle-cell {
  background: radial-gradient(circle at center, #0a0614 0%, var(--bg-secondary) 100%);
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 520px;
  position: relative;
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.bento-doodle-glow {
  position: absolute;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, var(--accent-purple) 0%, transparent 60%);
  opacity: 0.15;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.bento-doodle-img {
  max-width: 85%;
  height: auto;
  z-index: 2;
  animation: float-img 6s ease-in-out infinite;
}

@keyframes float-img {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

/* Crop Marks in Card Corners */
.doodle-crop-mark {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 5;
  pointer-events: none;
}
.doodle-crop-mark.top-left { top: 24px; left: 24px; border-right: none; border-bottom: none; }
.doodle-crop-mark.top-right { top: 24px; right: 24px; border-left: none; border-bottom: none; }
.doodle-crop-mark.bottom-left { bottom: 24px; left: 24px; border-right: none; border-top: none; }
.doodle-crop-mark.bottom-right { bottom: 24px; right: 24px; border-left: none; border-top: none; }

/* Status Bar Info Header */
.doodle-tech-header {
  position: absolute;
  top: 24px;
  left: 45px;
  right: 45px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 5;
  pointer-events: none;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--text-muted);
}
.doodle-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.doodle-status .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #22c55e;
  display: inline-block;
}
.doodle-status .dot.pulse {
  animation: pulse-dot 2s infinite alternate;
}
@keyframes pulse-dot {
  0% { opacity: 0.3; }
  100% { opacity: 1; }
}

/* Image Drawing Canvas Frame */
.doodle-canvas-frame {
  width: 80%;
  height: auto;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 10px;
  border-radius: 16px;
  background-color: rgba(0, 0, 0, 0.2);
  border: 1px dashed rgba(255, 255, 255, 0.08);
  transition: var(--transition-smooth);
}
.bento-doodle-cell:hover .doodle-canvas-frame {
  border-color: rgba(139, 92, 246, 0.25);
  background-color: rgba(0, 0, 0, 0.4);
}

/* Interactive Floating Toolbar */
.doodle-toolbar {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
  padding: 4px;
  border-radius: 30px;
  background-color: rgba(8, 8, 12, 0.85);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 5;
}
.tool-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: none;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}
.tool-btn:hover {
  color: var(--text-primary);
  background-color: rgba(255, 255, 255, 0.06);
}
.tool-btn.active {
  background-color: var(--accent-purple-dim);
  color: var(--accent-purple-light);
  border: 1px solid rgba(139, 92, 246, 0.2);
}

/* Live Coordinate Display Tag */
.doodle-coords {
  position: absolute;
  bottom: 30px;
  right: 45px;
  font-family: monospace;
  font-size: 0.65rem;
  color: var(--text-muted);
  z-index: 5;
  pointer-events: none;
  letter-spacing: 0.5px;
}

/* Bento About Content Cell */
.bento-about-text {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

/* Bento Stats Column */
.bento-stats-cell {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  padding: 30px;
}

.bento-stat-item {
  text-align: center;
  flex: 1;
}

.bento-stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 6px;
  line-height: 1;
}

.bento-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1.5px;
}

/* Bento Services Card Group */
.services-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.service-bento-item {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px;
  transition: var(--transition-smooth);
}

.service-bento-item:hover {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
}

.service-bento-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  margin-bottom: 24px;
  border: 1px solid var(--border-color);
}

.service-bento-icon svg {
  width: 24px;
  height: 24px;
}

.service-bento-title {
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.service-bento-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- BADASS STICKY HORIZONTAL SCROLL GALLERY --- */
.horizontal-scroll-container {
  height: 280vh; /* Sets the vertical scrolling speed/range */
  position: relative;
  background-color: #000000;
}

.horizontal-scroll-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.horizontal-scroll-header-container {
  position: absolute;
  top: 10vh;
  left: 0;
  right: 0;
  z-index: 10;
}

.horizontal-scroll-header {
  padding-bottom: 40px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.horizontal-scroll-track {
  display: flex;
  gap: 30px;
  padding: 0 10vw;
  width: max-content;
  will-change: transform;
}

/* Bento Horizontal Cards */
.portfolio-horizontal-card {
  width: 520px;
  height: 480px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s ease;
  flex-shrink: 0;
}

.portfolio-horizontal-card:hover {
  border-color: var(--border-hover);
}

.portfolio-bento-img-box {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.portfolio-bento-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s;
}

.portfolio-horizontal-card:hover .portfolio-bento-img {
  transform: scale(1.05);
  opacity: 0.85;
}

.portfolio-bento-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 20%, rgba(0, 0, 0, 0.1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  z-index: 2;
}

.portfolio-bento-category {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.portfolio-bento-title {
  font-size: 1.8rem;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1;
}

.portfolio-bento-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  opacity: 0.8;
  line-height: 1.5;
}

.portfolio-bento-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.portfolio-bento-link svg {
  transition: transform 0.3s;
}

.portfolio-horizontal-card:hover .portfolio-bento-link svg {
  transform: translateX(4px);
}

/* --- TIMELINE EXPERIENCE --- */
.experience-bento-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
  height: 100%;
}

.experience-bento-item {
  display: flex;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
}

.experience-bento-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.exp-year {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-muted);
  min-width: 110px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-top: 4px;
}

.exp-info {
  flex: 1;
}

.exp-title {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.exp-company {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* --- TESTIMONIAL CELL --- */
.bento-testimonials-container {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.testimonial-bento-slide {
  min-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-bento-quote {
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 30px;
  font-weight: 300;
}

.testimonial-bento-author {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.test-author-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-primary);
  text-transform: uppercase;
}

.test-author-role {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonial-bento-controls {
  display: flex;
  gap: 8px;
}

.testimonial-bento-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.testimonial-bento-btn:hover {
  background: var(--text-primary);
  color: var(--bg-primary);
  border-color: var(--text-primary);
}

/* --- CONTACT CELL FORM --- */
.contact-bento-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-label {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-input, .form-textarea {
  width: 100%;
  padding: 16px 20px;
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.3);
}

.form-textarea {
  resize: none;
  height: 100px;
}

.contact-info-widget {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
  flex-wrap: wrap;
  gap: 20px;
}

.info-widget-item {
  display: flex;
  flex-direction: column;
}

.info-widget-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.info-widget-value {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 600;
}

/* --- FOOTER --- */
.footer {
  background-color: #000000;
  border-top: 1px solid var(--border-color);
  padding: 60px 0;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--text-primary);
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
}

.footer-social-link:hover {
  background-color: var(--text-primary);
  border-color: var(--text-primary);
  color: var(--bg-primary);
  transform: translateY(-3px);
}

.footer-divider {
  height: 1px;
  background-color: var(--border-color);
  margin-bottom: 40px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.footer-bottom-links {
  display: flex;
  gap: 30px;
}

.footer-bottom-link:hover {
  color: var(--text-primary);
}

/* --- MODAL CASE STUDY DETAILS --- */
.project-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s;
}

.project-modal.active {
  opacity: 1;
  visibility: visible;
}

.project-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.project-modal-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 860px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 30px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9);
  padding: 50px;
  transform: scale(0.94);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-modal-content::-webkit-scrollbar {
  width: 4px;
}

.project-modal-content::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border-radius: 2px;
}

.project-modal.active .project-modal-content {
  transform: scale(1);
}

.project-modal-close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.project-modal-close-btn:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.modal-project-img {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 30px;
  border: 1px solid var(--border-color);
}

.modal-project-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  gap: 20px;
}

.modal-project-tag {
  color: var(--text-muted);
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}

.modal-project-title {
  font-size: 2.2rem;
}

.modal-project-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 30px;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 24px 0;
}

.meta-field-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.meta-field-value {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 600;
}

.modal-project-description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* --- INTERACTIVE 3D BENTO TILT AND PARALLAX CONTROLS --- */
.bento-card {
  transform-style: preserve-3d;
  perspective: 1000px;
}

/* --- INTERACTIVE ESTIMATOR WIDGET --- */
.estimator-scope-select {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  width: 100%;
}
.scope-btn {
  flex: 1;
  padding: 10px 14px;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition-fast);
  text-align: center;
}
.scope-btn:hover {
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--text-secondary);
}
.scope-btn.active {
  background-color: var(--accent-purple-dim);
  border-color: var(--accent-purple);
  color: var(--accent-purple-light);
}
.estimator-slider-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.estimator-slider-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.estimator-range {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: var(--bg-tertiary);
  outline: none;
  cursor: pointer;
}
.estimator-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid var(--accent-purple);
  box-shadow: 0 0 10px var(--accent-purple);
  transition: transform 0.2s;
}
.estimator-range::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}
.estimator-addons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}
.addon-chip {
  padding: 10px 8px;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition-fast);
  text-align: center;
}
.addon-chip:hover {
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--text-secondary);
}
.addon-chip.active {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: #ffffff;
  color: var(--text-primary);
}
.estimator-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
}
.estimator-price-label {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.estimator-price-value {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--text-primary);
  text-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}

/* --- COMMAND CENTER DASHBOARD GRID --- */
.dashboard-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  width: 100%;
  align-items: center;
}

/* --- SPOTIFY PLAYER & EQUALIZER --- */
.spotify-vibe-widget {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  border-right: 1px solid var(--border-color);
  padding-right: 24px;
}
.spotify-vinyl-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
  position: relative;
}
.vinyl-disc {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, #222 20%, #050505 60%, #111 100%);
  border: 4px solid #1a1a1a;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), inset 0 0 10px rgba(255, 255, 255, 0.05);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spin-vinyl 15s linear infinite;
  animation-play-state: paused;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.bento-card:hover .vinyl-disc {
  animation-play-state: running;
}
.vinyl-center {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--accent-purple);
  border: 4px solid #000;
  box-shadow: inset 0 0 5px rgba(255, 255, 255, 0.3);
}
.vinyl-groove {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.02);
}
.groove-1 { width: 110px; height: 110px; }
.groove-2 { width: 80px; height: 80px; }

@keyframes spin-vinyl {
  to { transform: rotate(360deg); }
}

.spotify-track-info {
  text-align: center;
}
.spotify-song {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-primary);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.spotify-artist {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.equalizer-wave {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 3px;
  height: 24px;
  margin-top: 15px;
}
.equalizer-bar {
  width: 2px;
  height: 6px;
  background-color: var(--accent-purple-light);
  border-radius: 1px;
  animation: pulse-eq 1.2s ease-in-out infinite alternate;
  will-change: height;
}
.eq-bar-1 { animation-delay: 0.1s; }
.eq-bar-2 { animation-delay: 0.4s; }
.eq-bar-3 { animation-delay: 0.2s; }
.eq-bar-4 { animation-delay: 0.6s; }
.eq-bar-5 { animation-delay: 0.3s; }

@keyframes pulse-eq {
  0% { height: 4px; }
  100% { height: 24px; }
}

/* --- ACTIVE WORLD CLOCK & MAGNETIC TARGET --- */
.clock-widget {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.clock-face-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 15px 0;
}
.clock-display {
  font-family: monospace;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--text-primary);
  background-color: var(--bg-tertiary);
  padding: 14px 20px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  letter-spacing: 1px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.4);
}
.magnetic-track-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  position: relative;
  height: 80px;
}
.magnetic-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
  position: relative;
}
.magnetic-circle:hover {
  border-color: var(--accent-purple-light);
  background-color: var(--accent-purple-dim);
}
.magnetic-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--text-primary);
}
.magnetic-circle:hover .magnetic-dot {
  background-color: var(--accent-purple-light);
  box-shadow: 0 0 10px var(--accent-purple);
}

/* --- STATS CELL DECORATIVE DIVIDER --- */
.stat-separator {
  width: 1px;
  height: 60px;
  background-color: var(--border-color);
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 1100px) {
  .bento-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .span-12, .span-8, .span-6, .span-4 {
    grid-column: span 6;
  }
  .services-container {
    grid-template-columns: 1fr;
  }
  .horizontal-scroll-container {
    height: auto !important;
  }
  .horizontal-scroll-sticky {
    position: relative !important;
    height: auto !important;
    overflow: visible !important;
    padding: 60px 0 !important;
    display: flex !important;
    flex-direction: column !important;
  }
  .horizontal-scroll-header-container {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    z-index: 1 !important;
    margin-bottom: 40px !important;
    padding: 0 30px !important;
  }
  .scroll-slide-instruction {
    display: none !important;
  }
  .horizontal-scroll-track {
    flex-direction: column !important;
    padding: 0 30px !important;
    width: 100% !important;
    transform: none !important;
  }
  .portfolio-horizontal-card {
    width: 100% !important;
    height: auto !important;
    min-height: 400px !important;
  }
}

@media (max-width: 768px) {
  /* 1. App-like layout lock & compact margins */
  html, body {
    overflow-x: hidden !important;
    max-width: 100% !important;
  }
  
  /* Preloader App Scaling */
  .preloader-logo {
    font-size: 2.6rem !important;
    letter-spacing: -1.5px !important;
    margin-bottom: 16px !important;
  }
  
  .preloader-bar-container {
    width: 140px !important;
  }
  
  section {
    padding: 48px 0 !important;
  }
  
  .container {
    padding: 0 16px !important;
  }
  
  /* 2. Compact Grid & Gaps */
  .bento-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  
  .span-12, .span-8, .span-6, .span-4 {
    grid-column: span 1 !important;
  }
  
  .bento-card {
    padding: 24px !important;
  }
  
  /* 3. Sleek Mobile Sticky Header */
  .header {
    padding: 16px 0 !important;
    background-color: rgba(8, 8, 12, 0.85) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid var(--border-color) !important;
    position: fixed !important;
    top: 0 !important;
    z-index: 1000 !important;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease, background-color 0.3s ease !important;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: rgba(8, 8, 12, 0.99);
    border-left: 1px solid var(--border-color);
    flex-direction: column;
    justify-content: center;
    border-radius: 0;
    gap: 30px;
    padding: 40px;
    transition: var(--transition-smooth);
    z-index: 1050;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .mobile-menu-btn {
    display: flex !important;
  }
  
  .nav-actions {
    margin-right: 0 !important;
  }
  
  .mobile-cta-item {
    display: block !important;
    width: 100% !important;
    margin-top: 15px !important;
  }
  
  .nav-mobile-cta {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
    padding: 12px 24px !important;
    display: flex !important;
  }
  
  .nav-desktop-cta {
    display: none !important;
  }
  
  /* 4. Hero Section Mobile CTA Formats */
  .bento-hero-title {
    font-size: 2.2rem !important;
    line-height: 1.15 !important;
    margin-bottom: 16px !important;
    letter-spacing: -1.5px !important;
  }
  
  .line-mask span {
    white-space: normal !important;
  }
  
  .bento-hero-cta {
    flex-direction: column !important;
    width: 100% !important;
    gap: 12px !important;
  }
  
  .bento-hero-cta .btn {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
    padding: 14px 20px !important;
  }
  
  /* 5. Dashboard-style Horizontal Stats */
  .bento-stats-cell {
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 20px !important;
  }
  
  .bento-stat-item {
    flex: 1 !important;
    text-align: center !important;
  }
  
  .bento-stat-number {
    font-size: 1.6rem !important;
    font-weight: 900 !important;
  }
  
  .bento-stat-label {
    font-size: 0.65rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    margin-top: 4px !important;
  }
  
  .stat-separator {
    width: 1px !important;
    height: 36px !important;
    background-color: var(--border-color) !important;
    margin: 0 !important;
  }
  
  /* 6. Mobile List-style Services container */
  .services-container {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }
  
  .service-bento-item {
    padding: 20px 0 !important;
    border-bottom: 1px solid var(--border-color) !important;
  }
  
  .service-bento-item:last-child {
    border-bottom: none !important;
  }
  
  .service-bento-icon {
    width: 42px !important;
    height: 42px !important;
    margin-bottom: 12px !important;
  }
  
  .service-bento-title {
    font-size: 1.15rem !important;
  }
  
  /* 7. Segmented App-style Pricing Estimator */
  .estimator-scope-select {
    display: flex !important;
    flex-direction: row !important;
    background-color: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid var(--border-color) !important;
    padding: 4px !important;
    gap: 4px !important;
    width: 100% !important;
  }
  
  .scope-btn {
    flex: 1 !important;
    padding: 8px 4px !important;
    font-size: 0.75rem !important;
    text-transform: uppercase !important;
  }
  
  .estimator-addons {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
  }
  
  .addon-chip {
    flex: 1 1 calc(50% - 8px) !important;
    font-size: 0.75rem !important;
    padding: 10px 4px !important;
    justify-content: center !important;
  }
  
  .estimator-footer {
    padding-top: 16px !important;
  }
  
  /* 8. Command Center Grid Collapsing */
  .dashboard-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  
  .spotify-vibe-widget {
    border-right: none !important;
    border-bottom: 1px solid var(--border-color) !important;
    padding-right: 0 !important;
    padding-bottom: 24px !important;
  }
  
  .spotify-vinyl-container {
    margin: 12px 0 !important;
  }
  
  .vinyl-disc {
    width: 96px !important;
    height: 96px !important;
  }
  
  .vinyl-center {
    width: 24px !important;
    height: 24px !important;
  }
  
  .vinyl-groove.groove-1 {
    width: 60px !important;
    height: 60px !important;
  }
  
  .clock-display {
    padding: 10px 16px !important;
    font-size: 1.5rem !important;
  }
  
  /* 9. Compact Selected Works vertical stack */
  .horizontal-scroll-track {
    gap: 16px !important;
    padding: 0 !important;
  }
  
  .portfolio-horizontal-card {
    min-height: 350px !important;
  }
  
  .portfolio-bento-overlay {
    padding: 24px !important;
  }
  
  .portfolio-bento-title {
    font-size: 1.35rem !important;
  }
  
  .portfolio-bento-desc {
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
  }
  
  /* 10. Sleek Timeline */
  .timeline-item {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    padding-bottom: 24px !important;
  }
  
  /* 11. Modal Stacks */
  .project-modal-content {
    padding: 24px 16px !important;
  }
  
  .modal-project-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
  }
  
  .modal-project-meta {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  
  .form-row {
    grid-template-columns: 1fr !important;
  }
  
  .footer-top {
    flex-direction: column !important;
    gap: 24px !important;
  }
  
  .footer-bottom {
    flex-direction: column !important;
    gap: 16px !important;
  }
  
  .custom-cursor, .custom-cursor-follower {
    display: none !important;
  }
}

@media (max-width: 500px) {
  .bento-card {
    padding: 20px !important;
  }
  
  .bento-hero-title {
    font-size: 1.7rem !important;
    letter-spacing: -1.5px !important;
  }
  
  .display-1 {
    font-size: 1.8rem !important;
  }
  
  .display-2 {
    font-size: 1.4rem !important;
  }
  
  .bento-stats-cell {
    padding: 16px 12px !important;
  }
  
  .bento-stat-number {
    font-size: 1.35rem !important;
  }
  
  .bento-stat-label {
    font-size: 0.6rem !important;
  }
  
  .addon-chip {
    flex: 1 1 100% !important;
  }
}

/* --- ELITE PREMIUM GEOMETRIC OVERRIDES (SHARP CORNERS ONLY) --- */
*, *::before, *::after {
  border-radius: 0 !important;
}

/* Custom Zoom Magnifying Glass on Interactive Bento Cards */
.bento-card,
.portfolio-horizontal-card {
  cursor: zoom-in !important;
}

/* Force Magnifier Follower to be a minimalist sharp square frame */
.custom-cursor {
  border-radius: 0 !important;
  width: 4px;
  height: 4px;
}

.custom-cursor-follower {
  border-radius: 0 !important;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  background-color: transparent !important;
  transition: transform 0.08s cubic-bezier(0.25, 1, 0.5, 1), width 0.3s, height 0.3s, border-color 0.3s !important;
}

.custom-cursor.hovered {
  width: 4px;
  height: 4px;
  background-color: var(--accent-purple-light);
}

.custom-cursor-follower.hovered {
  width: 38px;
  height: 38px;
  border-color: #ffffff !important;
  background-color: rgba(255, 255, 255, 0.04) !important;
}

/* Disable any distracting card hovers to keep layout raw and static */
.bento-card:hover {
  transform: translateY(-2px) !important; /* Extremely subtle flat vertical lift */
  border-color: var(--border-hover) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
}

/* Let the creative vinyl disk spin continually to feel alive */
.vinyl-disc {
  animation: spin-vinyl 15s linear infinite !important;
  animation-play-state: running !important;
}
