/* EXPERIMENTAL VARIABLES */
:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;

  --accent-1: #6366f1; /* Indigo */
  --accent-2: #8b5cf6; /* Violet */
  --accent-3: #ec4899; /* Pink */
  --accent-gradient: linear-gradient(135deg, var(--accent-1), var(--accent-2), var(--accent-3));

  --font-display: 'Syne', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
  --font-mono: 'Inter', sans-serif;

  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-in-out-expo: cubic-bezier(0.87, 0, 0.13, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
}

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

/* LOADER */
.loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  transition: opacity 0.8s var(--ease-out-expo), visibility 0.8s;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-text {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 800;
  display: flex;
  gap: 5px;
}

.loader-text span {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  animation: loader-letter 0.6s var(--ease-out-expo) forwards;
}

.loader-text span:nth-child(1) { animation-delay: 0.1s; }
.loader-text span:nth-child(2) { animation-delay: 0.2s; }
.loader-text span:nth-child(3) { animation-delay: 0.3s; }
.loader-text span:nth-child(4) { animation-delay: 0.4s; }

@keyframes loader-letter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.loader-bar {
  width: 200px;
  height: 2px;
  background: var(--gray-800);
  position: relative;
  overflow: hidden;
}

.loader-bar::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: var(--accent-gradient);
  animation: loader-progress 2s var(--ease-in-out-expo) forwards;
}

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

/* CUSTOM CURSOR */
.cursor {
  width: 8px;
  height: 8px;
  background: var(--white);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transition: transform 0.1s ease;
}

.cursor-follower {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.3s var(--ease-out-expo), width 0.3s, height 0.3s, border-color 0.3s;
}

.cursor-follower.hovering {
  width: 80px;
  height: 80px;
  border-color: var(--accent-2);
}

/* NAVIGATION */
.nav-experimental {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 25px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  mix-blend-mode: difference;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.logo-svg {
  width: 40px;
  height: 40px;
  animation: logo-rotate 20s linear infinite;
}

@keyframes logo-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.nav-center {
  display: flex;
  gap: 30px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--gray-400);
}

.nav-menu-btn {
  width: 50px;
  height: 50px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: none;
  transition: all 0.3s ease;
}

.nav-menu-btn:hover {
  border-color: var(--white);
  transform: scale(1.1);
}

.menu-line {
  width: 20px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}

.nav-menu-btn.active .menu-line:first-child {
  transform: rotate(45deg) translate(3px, 3px);
}

.nav-menu-btn.active .menu-line:last-child {
  transform: rotate(-45deg) translate(3px, -3px);
}

/* FULLSCREEN MENU */
.fullscreen-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
}

.fullscreen-menu.active {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

.menu-bg {
  position: absolute;
  inset: 0;
  background: var(--black);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.8s var(--ease-in-out-expo);
}

.fullscreen-menu.active .menu-bg {
  transform: scaleY(1);
}

.menu-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px;
}

.menu-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.menu-link {
  display: flex;
  align-items: baseline;
  gap: 30px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.5s, transform 0.5s var(--ease-out-expo);
}

.fullscreen-menu.active .menu-link {
  opacity: 1;
  transform: translateY(0);
}

.fullscreen-menu.active .menu-link:nth-child(1) { transition-delay: 0.3s; }
.fullscreen-menu.active .menu-link:nth-child(2) { transition-delay: 0.4s; }
.fullscreen-menu.active .menu-link:nth-child(3) { transition-delay: 0.5s; }
.fullscreen-menu.active .menu-link:nth-child(4) { transition-delay: 0.6s; }

.menu-link::before {
  content: attr(data-index);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gray-500);
}

.link-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.link-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  transition: all 0.3s ease;
}

.menu-link:hover .link-title {
  color: var(--accent-2);
  transform: translateX(20px);
}

.menu-footer {
  position: absolute;
  bottom: 50px;
  left: 100px;
  right: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  transition: opacity 0.5s 0.7s;
}

.fullscreen-menu.active .menu-footer {
  opacity: 1;
}

.menu-socials {
  display: flex;
  gap: 30px;
}

.menu-socials a {
  font-size: 0.875rem;
  color: var(--gray-400);
  transition: color 0.3s;
}

.menu-socials a:hover {
  color: var(--white);
}

.menu-email {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--gray-400);
}

/* HERO */
.hero-experimental {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: orb-float 10s ease-in-out infinite;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: var(--accent-1);
  top: -200px;
  right: -100px;
  animation-delay: 0s;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: var(--accent-2);
  bottom: -100px;
  left: 10%;
  animation-delay: -3s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: var(--accent-3);
  top: 40%;
  left: 50%;
  animation-delay: -6s;
}

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 100px 100px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gray-400);
  margin-bottom: 30px;
}

.label-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-2);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 800;
  line-height: 0.95;
  margin-bottom: 60px;
}

.title-line {
  display: flex;
  gap: 30px;
  overflow: hidden;
}

.title-word {
  display: inline-block;
  transform: translateY(100%);
  animation: title-reveal 1s var(--ease-out-expo) forwards;
}

.title-word:nth-child(1) { animation-delay: 0.1s; }
.title-word:nth-child(2) { animation-delay: 0.2s; }
.title-line:nth-child(2) .title-word:nth-child(1) { animation-delay: 0.3s; }
.title-line:nth-child(2) .title-word:nth-child(2) { animation-delay: 0.4s; }

@keyframes title-reveal {
  to { transform: translateY(0); }
}

.title-word.outline {
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}

.title-word.gradient {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.hero-desc {
  font-size: 1.125rem;
  color: var(--gray-400);
  line-height: 1.8;
  max-width: 400px;
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gray-500);
}

.scroll-line {
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, var(--accent-2), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.5; }
}

.hero-3d-element {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
}

.floating-shape {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: shape-rotate 15s linear infinite;
}

.shape-1 {
  width: 300px;
  height: 300px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  top: 50px;
  left: 50px;
}

.shape-2 {
  width: 200px;
  height: 200px;
  top: 100px;
  left: 100px;
  animation-direction: reverse;
  animation-duration: 20s;
}

.shape-3 {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  top: 150px;
  left: 150px;
  background: var(--accent-gradient);
  border: none;
  animation-duration: 10s;
}

@keyframes shape-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* MARQUEE */
.marquee-section {
  padding: 30px 0;
  border-top: 1px solid var(--gray-800);
  border-bottom: 1px solid var(--gray-800);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  overflow: hidden;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.marquee-content span {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.marquee-dot {
  font-size: 0.5rem !important;
  color: var(--accent-2);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* SECTIONS */
.section-header {
  margin-bottom: 80px;
}

.section-number {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent-2);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 15px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--gray-500);
}

/* WORK SECTION */
.work-section {
  padding: 150px 80px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.work-item {
  position: relative;
  cursor: none;
}

.work-item.featured {
  grid-row: span 2;
}

.work-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 4/3;
}

.work-item.featured .work-image {
  aspect-ratio: 4/5;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    hsl(var(--hue), 70%, 20%),
    hsl(var(--hue), 70%, 10%)
  );
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.8s var(--ease-out-expo);
}

.work-item:hover .image-placeholder {
  transform: scale(1.05);
}

.placeholder-text {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.1);
}

.work-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  opacity: 0;
  transition: opacity 0.5s;
}

.work-item:hover .work-overlay {
  opacity: 1;
}

.overlay-text {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.overlay-arrow {
  width: 40px;
  height: 40px;
  transition: transform 0.3s;
}

.work-item:hover .overlay-arrow {
  transform: translate(5px, -5px);
}

.work-info {
  padding: 25px 0;
}

.work-category {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.work-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 10px 0 5px;
}

.work-year {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 20px 40px;
  border: 1px solid var(--gray-700);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.view-all-btn:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.btn-arrow {
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
}

.view-all-btn:hover .btn-arrow {
  transform: translateX(5px);
}

/* ABOUT SECTION */
.about-section {
  padding: 150px 80px;
  position: relative;
  overflow: hidden;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  margin-bottom: 100px;
}

.about-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.3;
}

.about-title .highlight {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-text {
  color: var(--gray-400);
  line-height: 1.8;
  margin-bottom: 30px;
}

.about-text.large {
  font-size: 1.25rem;
  color: var(--gray-300);
}

.about-stats {
  display: flex;
  gap: 50px;
  padding-top: 40px;
  border-top: 1px solid var(--gray-800);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  display: block;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.about-visual {
  display: flex;
  justify-content: center;
}

.visual-box {
  width: 400px;
  height: 400px;
  border: 1px solid var(--gray-800);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: box-rotate 20s linear infinite;
}

.box-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  animation: box-counter-rotate 20s linear infinite;
}

@keyframes box-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes box-counter-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

/* SERVICES */
.services-section {
  padding: 150px 80px;
  background: var(--gray-900);
}

.services-list {
  display: flex;
  flex-direction: column;
}

.service-item {
  display: grid;
  grid-template-columns: 80px 1fr 1fr 50px;
  gap: 40px;
  align-items: center;
  padding: 50px 0;
  border-bottom: 1px solid var(--gray-800);
  cursor: none;
  transition: all 0.3s ease;
}

.service-item:hover {
  padding-left: 30px;
  background: rgba(255, 255, 255, 0.02);
}

.service-number {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--gray-600);
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.service-item:hover .service-title {
  color: var(--accent-2);
}

.service-desc {
  font-size: 0.9rem;
  color: var(--gray-500);
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-tags span {
  padding: 8px 16px;
  background: var(--gray-800);
  border-radius: 100px;
  font-size: 0.75rem;
  color: var(--gray-400);
}

.service-arrow {
  font-size: 1.5rem;
  color: var(--gray-600);
  transition: all 0.3s;
}

.service-item:hover .service-arrow {
  color: var(--accent-2);
  transform: translateX(10px);
}

/* CTA */
.cta-section {
  padding: 200px 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, var(--accent-1) 0%, transparent 60%);
  opacity: 0.2;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gray-500);
  display: block;
  margin-bottom: 30px;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 60px;
}

.cta-highlight {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-email {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 25px 50px;
  border: 1px solid var(--gray-700);
  border-radius: 100px;
  transition: all 0.3s;
}

.cta-email:hover {
  border-color: var(--accent-2);
  background: rgba(139, 92, 246, 0.1);
}

.email-text {
  font-size: 1.25rem;
}

.email-copy {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  padding: 8px 16px;
  background: var(--gray-800);
  border-radius: 100px;
}

.cta-or {
  margin: 40px 0;
  color: var(--gray-600);
}

.cta-btn {
  display: inline-block;
  padding: 20px 50px;
  background: var(--white);
  color: var(--black);
  font-weight: 600;
  border-radius: 100px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}

.cta-btn:hover {
  transform: scale(1.05);
}

.cta-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.decoration-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  animation: ring-pulse 4s ease-out infinite;
}

.ring-1 { width: 400px; height: 400px; animation-delay: 0s; }
.ring-2 { width: 600px; height: 600px; animation-delay: 1s; }
.ring-3 { width: 800px; height: 800px; animation-delay: 2s; }

@keyframes ring-pulse {
  0% { transform: translate(-50%, -50%) scale(0.8); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

/* FOOTER */
.footer-experimental {
  padding: 100px 80px 40px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--gray-800);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  display: block;
  margin-bottom: 15px;
}

.footer-brand p {
  color: var(--gray-500);
  max-width: 250px;
}

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

.link-col h4 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-500);
  margin-bottom: 20px;
}

.link-col a {
  display: block;
  color: var(--gray-400);
  margin-bottom: 12px;
  transition: color 0.3s;
}

.link-col a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 40px;
  border-top: 1px solid var(--gray-800);
  font-size: 0.875rem;
  color: var(--gray-600);
}

.footer-big-text {
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 30vw;
  font-weight: 800;
  color: var(--gray-900);
  pointer-events: none;
  white-space: nowrap;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-experimental {
    padding: 100px 40px;
  }

  .hero-3d-element {
    display: none;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .work-item.featured {
    grid-row: auto;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-number {
    display: none;
  }

  .service-arrow {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-experimental {
    padding: 20px;
  }

  .nav-center {
    display: none;
  }

  .hero-experimental,
  .work-section,
  .about-section,
  .services-section,
  .cta-section,
  .footer-experimental {
    padding-left: 20px;
    padding-right: 20px;
  }

  .menu-content {
    padding: 100px 30px;
  }

  .menu-footer {
    left: 30px;
    right: 30px;
    flex-direction: column;
    gap: 20px;
  }

  .about-stats {
    flex-direction: column;
    gap: 30px;
  }

  .footer-top {
    flex-direction: column;
    gap: 60px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

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

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

::-webkit-scrollbar-thumb {
  background: var(--gray-700);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gray-600);
}

/* SELECTION */
::selection {
  background: var(--accent-2);
  color: var(--white);
}
