:root {
  /* --- Unique Cinematic Palette (Animated) --- */
  --accent-1: #3b82f6; /* Executive Blue */
  --accent-2: #6366f1; /* Professional Indigo */
  --accent-3: #0ea5e9; /* Positive Sky Blue */
  --accent-gradient: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  --accent-glow: rgba(59, 130, 246, 0.4);
  --accent: var(--accent-1);

  --bg-main: #ffffff;
  --bg-secondary: rgba(255, 255, 255, 0.4); /* Glassy neutral base */
  --text-main: #111827; /* Darker slate for elite readability */
  --text-muted: #4b5563;

  --glass-surface: rgba(255, 255, 255, 0.45); /* More transparent for glass feel */
  --glass-border: rgba(255, 255, 255, 0.5); /* Crisp white border */
  --glass-highlight: rgba(255, 255, 255, 0.82);
  --glass-blur: blur(25px); /* Stronger blur for elite glass look */
  /* Keep existing glass-highlight */

  --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.03);
  --shadow-md: 0 12px 24px rgba(15, 23, 42, 0.05);
  --shadow-lg: 0 20px 48px rgba(15, 23, 42, 0.08);

  --spacing: clamp(4rem, 8vw, 10rem);
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
  --anim-speed: 0.6s;
  --trans-fast: 0.3s var(--ease);
  --trans-slow: 0.8s var(--ease);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-main);
  border-left: 1px solid var(--glass-border);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--accent-1), var(--accent-2), var(--accent-1));
  background-size: 100% 200%;
  border-radius: 100px;
  border: 3px solid var(--bg-main);
  animation: scrollbarFlow 3s linear infinite;
}

@keyframes scrollbarFlow {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 0% 200%;
  }
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-1);
  border: 1px solid var(--bg-main);
  box-shadow: 0 0 10px var(--accent-1);
}


/* Base Restarts & Styling */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  padding: 0;
  background-color: var(--bg-main);
  background: 
    radial-gradient(at 0% 0%, rgba(16, 185, 129, 0.08) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(14, 165, 233, 0.08) 0px, transparent 50%),
    radial-gradient(at 50% 100%, rgba(79, 70, 229, 0.05) 0px, transparent 50%);
  color: var(--text-main);
  transition: background-color 0.5s var(--ease);
  position: relative;
  overflow-x: hidden;
  opacity: 1; 
  transition: opacity 0.8s var(--ease);
  min-height: 100vh;
  cursor: none !important; /* Critical: Hide default cursor */
}

/* Ensure no element shows the default cursor */
* {
  cursor: none !important;
}

/* Except for specific browser/OS requirements, though we try to force custom */
html {
  cursor: none !important;
}

body.loading {
  overflow: hidden;
}

body.no-scroll {
  overflow: hidden;
}

body.loaded {
  opacity: 1;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  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.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.015;
  pointer-events: none;
  z-index: 1000;
}

/* --- Cinematic Reveal Engine --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s var(--ease);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.stagger-reveal>* {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s var(--ease);
}

.stagger-reveal.active>* {
  opacity: 1;
  transform: translateY(0);
}

.stagger-reveal.active>*:nth-child(1) {
  transition-delay: 0.1s;
}

.stagger-reveal.active>*:nth-child(2) {
  transition-delay: 0.2s;
}

.stagger-reveal.active>*:nth-child(3) {
  transition-delay: 0.3s;
}

.stagger-reveal.active>*:nth-child(4) {
  transition-delay: 0.4s;
}

.stagger-reveal.active>*:nth-child(5) {
  transition-delay: 0.5s;
}

/* --- Cinematic Keyframes --- */
@keyframes accentFlow {
  0% {
    color: var(--accent-1);
  }

  50% {
    color: var(--accent-2);
  }

  100% {
    color: var(--accent-1);
  }
}

@keyframes breath {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(99, 102, 241, 0);
  }

  50% { transform: scale(1.02); box-shadow: 0 0 20px rgba(99, 102, 241, 0.1); }
}

/* --- Refined Reveal Engine --- */
.reveal, .fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  will-change: opacity, transform;
}

.reveal.active, .fade-up.active, .reveal.is-visible, .fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-reveal > * {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s var(--ease);
}

.stagger-reveal.active > * {
  opacity: 1;
  transform: translateY(0);
}

.stagger-reveal.active > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-reveal.active > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-reveal.active > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-reveal.active > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-reveal.active > *:nth-child(5) { transition-delay: 0.5s; }

@keyframes slideInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}



/* Custom Performance Radar Cursor */
.cursor-dot {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 999999;
  opacity: 0;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px #fff;
  mix-blend-mode: difference; /* Critical: visible on all backgrounds */
}

.cursor-outline {
  width: 50px;
  height: 50px;
  border: 1px dashed var(--accent);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 999998;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s var(--ease), opacity 0.3s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Gaming Crosshair Brackets */
.cursor-outline::before,
.cursor-outline::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  mask: conic-gradient(from 45deg, transparent 0% 20%, #000 20% 30%, transparent 30% 70%, #000 70% 80%, transparent 80% 100%);
  -webkit-mask: conic-gradient(from 45deg, transparent 0% 20%, #000 20% 30%, transparent 30% 70%, #000 70% 80%, transparent 80% 100%);
  transition: all 0.5s var(--ease);
  opacity: 0.6;
}

.cursor-outline::after {
  transform: rotate(90deg) scale(1.1);
  border-color: var(--accent-2);
}

/* Gaming Crosshair Brackets */
.cursor-outline::before,
.cursor-outline::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  mask: conic-gradient(from 45deg, transparent 0% 20%, #000 20% 30%, transparent 30% 70%, #000 70% 80%, transparent 80% 100%);
  -webkit-mask: conic-gradient(from 45deg, transparent 0% 20%, #000 20% 30%, transparent 30% 70%, #000 70% 80%, transparent 80% 100%);
  transition: all 0.5s var(--ease);
  opacity: 0.6;
}

.cursor-outline::after {
  transform: rotate(90deg) scale(1.1);
  border-color: var(--accent-2);
}

.cursor-trail {
  width: 4px;
  height: 4px;
  background: var(--accent-2);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  opacity: 0.3;
  filter: blur(1px);
}

.cursor-trail:nth-child(even) {
  background: var(--accent-3);
}

@keyframes radarRotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.cursor-dot.active {
  width: 6px;
  height: 6px;
  background: #fff;
  box-shadow: 0 0 30px #fff, 0 0 60px var(--accent-glow);
}

.cursor-outline.active {
  width: 80px;
  height: 80px;
  border-color: var(--accent);
  background: rgba(59, 130, 246, 0.03);
  backdrop-filter: blur(8px);
}

.cursor-outline.active::before,
.cursor-outline.active::after {
  width: 100%;
  height: 100%;
  border-width: 2px;
  opacity: 1;
  filter: drop-shadow(0 0 8px var(--accent));
}

/* Click Shockwave Effect */
.cursor-ripple {
  position: fixed;
  width: 10px;
  height: 10px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  animation: rippleAnim 0.6s var(--ease) forwards;
}

@keyframes rippleAnim {
  to {
    width: 100px;
    height: 100px;
    opacity: 0;
    border-width: 0.5px;
  }
}

/* Viewfinder Morph */
.cursor-outline.viewfinder {
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cursor-outline.viewfinder::before,
.cursor-outline.viewfinder::after {
  mask: none;
  -webkit-mask: none;
  border-radius: 0;
  width: 20px;
  height: 20px;
  border: none;
}

.cursor-outline.viewfinder::before {
  top: -5px;
  left: -5px;
  border-top: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
}

.cursor-outline.viewfinder::after {
  bottom: -5px;
  right: -5px;
  border-bottom: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  transform: none;
}

/* Effects: Glow */
.glow-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle at var(--gx, 50%) var(--gy, 50%), rgba(14, 165, 233, 0.08) 0%, transparent 60%);
  transition: background 0.1s;
}

/* Global Typography */
h1,
h2,
h3 {
  line-height: 1.1;
  margin: 0 0 1rem 0;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--text-main);
}

h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
}

p {
  color: var(--text-muted);
  font-size: 1.125rem;
}

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

.giant-text {
  font-size: clamp(4rem, 10vw, 8rem);
  margin-bottom: 2rem;
  font-weight: 900;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 5%;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 0.5rem 0;
}

.nav-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--glass-surface);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  padding: 1rem 5%;
  border-radius: 100px;
  margin: 1rem 2rem;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

/* --- Scroll Progress Bar --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--accent-gradient);
  z-index: 100000;
  box-shadow: 0 0 15px var(--accent-glow);
  transition: width 0.1s linear;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 101;
}

.menu-toggle .line {
  width: 100%;
  height: 2px;
  background: var(--text-main);
  transition: all 0.3s var(--ease);
  border-radius: 2px;
}

.menu-toggle.active .line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active .line:nth-child(2) {
  transform: translateY(-9px) rotate(-45deg);
}

.logo {
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -0.5px;
  color: var(--text-main);
}

.logo .dot {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--trans-fast);
}

.nav-links a:hover {
  color: var(--accent);
}

/* Buttons & Links */
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 1.1rem 2.2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--trans-slow);
}

.btn-outline {
  border: 1px solid var(--accent);
  color: var(--accent);
  animation: breath 3s var(--ease) infinite;
  transition: all 0.5s var(--ease);
}

.btn-outline:hover {
  background: var(--accent);
  color: #fff !important;
  box-shadow: 0 10px 20px rgba(14, 165, 233, 0.3);
  transform: scale(1.05);
}

.btn-solid {
  background: var(--accent-gradient);
  color: #ffffff !important;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
  border: none;
}

.btn-solid:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(14, 165, 233, 0.3);
}

.btn-ghost {
  color: var(--text-main);
  padding: 1rem;
}

.btn-small {
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
}

.link-hover {
  position: relative;
  text-decoration: none;
  color: var(--text-main);
}

.link-hover::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent-gradient);
  transition: width var(--trans-fast);
}

.link-hover:hover::after {
  width: 100%;
}

.link-hover:hover {
  color: var(--accent);
}


/* Sections */
section {
  padding: var(--spacing) 0;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 15vh;
  background: radial-gradient(circle at 70% 30%, rgba(37, 99, 235, 0.05), transparent 60%);
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  width: 100%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
  background: radial-gradient(circle at center, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
}

.abstract-globe {
  position: relative;
  width: 300px;
  height: 300px;
  transform-style: preserve-3d;
  animation: rotateGlobe 20s linear infinite;
}

.ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transition: all 1s var(--ease);
}

.ring:nth-child(1) {
  transform: rotateY(0deg) rotateX(10deg);
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.ring:nth-child(2) {
  transform: rotateY(60deg) rotateX(-20deg);
  border: 1.5px dashed rgba(99, 102, 241, 0.1);
  animation: rotateXonly 10s linear infinite;
}

.ring:nth-child(3) {
  transform: rotateY(120deg) rotateX(30deg);
  border: 1px solid rgba(6, 182, 212, 0.15);
  box-shadow: inset 0 0 20px rgba(99, 102, 241, 0.05);
}

.ring:nth-child(4) {
  transform: rotateY(180deg) rotateX(-40deg);
  border: 1px solid rgba(6, 182, 212, 0.15);
  animation: rotateYonly 15s linear infinite;
}

.ring:nth-child(5) {
  transform: rotateX(90deg);
  border: 2px solid rgba(99, 102, 241, 0.15);
  box-shadow: 0 0 30px rgba(99, 102, 241, 0.08);
}

.visual-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  background: radial-gradient(circle at 30% 30%, #fff 0%, rgba(14, 165, 233, 0.4) 50%, rgba(14, 165, 233, 0.8) 100%);
  border-radius: 50%;
  box-shadow:
    0 0 40px rgba(14, 165, 233, 0.4),
    inset -10px -10px 20px rgba(0, 0, 0, 0.05),
    inset 10px 10px 20px rgba(255, 255, 255, 0.8);
  animation: pulseCore 3s ease-in-out infinite alternate, levitate 6s ease-in-out infinite;
}

@keyframes levitate {
  0% {
    transform: translate(-50%, -50%) translateY(0);
  }

  50% {
    transform: translate(-50%, -50%) translateY(-15px);
  }

  100% {
    transform: translate(-50%, -50%) translateY(0);
  }
}

@keyframes rotateXonly {
  from {
    transform: rotateY(60deg) rotateX(-20deg) rotateZ(0);
  }

  to {
    transform: rotateY(60deg) rotateX(-20deg) rotateZ(360deg);
  }
}

@keyframes rotateYonly {
  from {
    transform: rotateY(180deg) rotateX(-40deg) rotateZ(0);
  }

  to {
    transform: rotateY(180deg) rotateX(-40deg) rotateZ(-360deg);
  }
}

/* Orbiting elements */
.orbit {
  position: absolute;
  top: -20px;
  left: -20px;
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  border-radius: 50%;
  border: 1px dashed rgba(14, 165, 233, 0.15);
  transform-style: preserve-3d;
  animation: orbitSpin 10s linear infinite;
}

.orbit-2 {
  top: -60px;
  left: -60px;
  width: calc(100% + 120px);
  height: calc(100% + 120px);
  animation: orbitSpin 15s linear infinite reverse;
}

.orbit-dot {
  position: absolute;
  top: 50%;
  left: -5px;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(14, 165, 233, 0.5);
}

@keyframes rotateGlobe {
  from {
    transform: rotateX(20deg) rotateY(0deg);
  }

  to {
    transform: rotateX(20deg) rotateY(360deg);
  }
}

@keyframes pulseCore {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.7;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 1;
  }
}

@keyframes orbitSpin {
  0% {
    transform: rotateZ(0deg) rotateX(70deg);
  }

  100% {
    transform: rotateZ(360deg) rotateX(70deg);
  }
}

@keyframes breath {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.4);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(14, 165, 233, 0);
  }
}

.hero-badge {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: rgba(37, 99, 235, 0.05);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent-1);
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
}

.hero-subtitle {
  max-width: 600px;
  margin-bottom: 3rem;
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

/* Infinite Marquee */
.marquee-section {
  padding: 5rem 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  overflow: hidden;
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.01);
}

.marquee-inner {
  display: flex;
  width: max-content;
  animation: scrollMarquee 30s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding-right: 4rem;
}

.marquee-content span {
  font-size: clamp(1.5rem, 3vw, 2.8rem);
  font-weight: 800;
  color: var(--text-main);
  opacity: 0.15;
  white-space: nowrap;
  letter-spacing: -1px;
}

.marquee-content .star {
  font-size: 1.2rem;
  color: var(--accent);
  opacity: 0.5;
}

@keyframes scrollMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Bento Arsenal Grid UI */
.arsenal-grid-section {
  padding: 8rem 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.arsenal-header {
  margin-bottom: 4rem;
  text-align: center;
}

.arsenal-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(14, 165, 233, 0.1);
  color: var(--accent);
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(14, 165, 233, 0.2);
}

.arsenal-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: 1.5rem;
}

.bento-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--glass-surface);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  flex-direction: column;
}

.bento-card.large {
  grid-row: span 2;
}

.bento-card.wide {
  grid-column: span 2;
}

.bento-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 30px 60px rgba(14, 165, 233, 0.1);
}

.card-glass {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), transparent);
  pointer-events: none;
}

.card-grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(14, 165, 233, 0.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(14, 165, 233, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.5;
  pointer-events: none;
}

.card-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}

.card-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-secondary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  color: var(--accent);
  border: 1px solid var(--glass-border);
  transition: all 0.4s var(--ease);
}

.bento-card:hover .card-icon {
  background: var(--accent);
  color: #fff;
  transform: scale(1.1) rotate(5deg);
}

.card-text h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.card-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.card-corner {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 20px;
  height: 20px;
  border-top: 3px solid var(--accent);
  border-right: 3px solid var(--accent);
  opacity: 0.6; /* Higher base visibility */
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bento-card:hover .card-corner {
  opacity: 1;
  width: 25px;
  height: 25px;
  transform: translate(5px, -5px);
  filter: drop-shadow(0 0 8px var(--accent));
}

/* Global Cleanliness: Hide complex graphics for "Simple & Cool" look */
.item-visual, .stat-pill, .huge-number, .tech-circle {
  display: none !important;
}

/* Responsive Grid */
@media (max-width: 992px) {
  .arsenal-bento {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
}

/* Sections */
section {
  padding: var(--spacing) 0;
  position: relative;
}

@media (max-width: 768px) {
  .arsenal-bento {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .bento-card.large, .bento-card.wide {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* Dynamic Arsenal-Themed Video Accordion */
.video-accordion-section {
  overflow: hidden;
  background: var(--bg-primary);
}

.video-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(15, 23, 42, 0.2) 100%);
  pointer-events: none;
  z-index: 1;
}
/* Video Accordion Base Styles (Restored and Segmented) */
.video-accordion-section .accordion-gallery {
  display: flex;
  height: 550px;
  gap: 1rem;
  margin-top: 3rem;
}

.video-accordion-section .accordion-item {
  flex: 0.5;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.7s cubic-bezier(0.25, 1, 0.3, 1), background 0.4s var(--ease);
  background: var(--glass-surface);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
}

.video-accordion-section .accordion-item.active {
  flex: 5;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.video-accordion-section .accordion-item:hover:not(.active) {
  flex: 0.8;
  background: rgba(255, 255, 255, 0.5);
}

.video-accordion-section .item-content {
  position: absolute;
  inset: 0;
  padding: 2.5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: all 0.5s var(--ease);
}

.playbook-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 1.5rem;
  transition: background 0.4s var(--ease), transform 0.4s var(--ease), border-color 0.4s;
}

.accordion-item:hover .playbook-icon,
.accordion-item.active .playbook-icon {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.1) translateY(-5px);
}

.playbook-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--text-main);
  transition: fill 0.4s;
}

.accordion-item:hover .playbook-icon svg,
.accordion-item.active .playbook-icon svg {
  fill: #000;
}

.video-item .item-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  filter: grayscale(30%) brightness(0.9);
  background-position: center;
  background-size: cover;
  transition: all 0.6s var(--ease);
}

.video-item .item-content {
  background: linear-gradient(to top, rgba(15, 23, 42, 0.05) 0%, transparent 60%);
}

.video-item:hover .item-bg,
.video-item.active .item-bg {
  filter: grayscale(0%) brightness(1.1);
}


/* Fullscreen Reel Modal */
.reel-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease);
}

.reel-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-bg {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}



.modal-content {
  position: relative;
  z-index: 1005;
  width: 90vw;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  transform: translateY(40px) scale(0.95);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reel-modal.is-open .modal-content {
  transform: translateY(0) scale(1);
}

.video-wrapper {
  max-width: 100%;
  max-height: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: inline-flex;
}

.video-wrapper video {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  margin-top: 2rem;
}

.social-links a {
  color: #fff;
  font-size: 1.25rem;
}

.premium-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.input-wrapper {
  position: relative;
}

.input-wrapper input,
.input-wrapper textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--glass-border);
  color: #fff;
  padding: 1rem 0;
  font-family: inherit;
  font-size: 1.125rem;
  outline: none;
  transition: var(--trans-fast);
}

.focus-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background: #fff;
  transition: width 0.4s var(--ease);
}

.input-wrapper input:focus~.focus-border,
.input-wrapper textarea:focus~.focus-border {
  width: 100%;
}

.submit-btn {
  background: transparent;
  border: 1px solid var(--glass-border);
  color: #fff;
  border-radius: 100px;
  cursor: pointer;
  padding: 1.5rem;
  display: block;
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.submit-btn::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: #fff;
  transition: height 0.4s var(--ease);
  z-index: 0;
}

.submit-btn:hover::before {
  height: 100%;
}

.submit-btn:hover .btn-text {
  color: #000;
}

.btn-text {
  position: relative;
  z-index: 1;
}

.contact-section {
  padding: 10rem 0;
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 5rem;
}

.contact-card {
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  padding: 3rem;
  border-radius: 32px;
  box-shadow: var(--shadow-md);
  transition: var(--trans-slow);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.form-group {
  margin-bottom: 2rem;
}

label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.75rem;
}

input,
textarea {
  width: 100%;
  background: var(--bg-primary);
  border: 1px solid var(--glass-border);
  padding: 1.25rem;
  border-radius: 12px;
  color: var(--text-main);
  font-family: inherit;
  transition: var(--trans-fast);
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

/* --- Command Center UI --- */
.command-center-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  color: var(--text-main);
}

.command-card {
  display: flex;
  flex-direction: column;
  background: var(--glass-surface);
  border: 1px solid var(--glass-border);
  padding: 2.5rem;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  color: var(--text-main);
  backdrop-filter: var(--glass-blur);
}

.command-card:hover {
  background: rgba(14, 165, 233, 0.05);
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.1);
}

.command-card h3 {
  color: var(--text-main);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  font-size: 1.4rem;
  list-style: none;
  text-decoration: none;
}

.command-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  text-decoration: none;
}

.contact-val {
  color: var(--text-main);
  font-weight: bold;
  font-size: 1.1rem;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 5px;
  width: fit-content;
  text-decoration: none;
}

.command-card:hover .contact-val {
  color: var(--accent);
}

.card-id {
  font-family: monospace;
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-decoration: none;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.tech-tag {
  color: var(--accent);
  background: rgba(37, 99, 235, 0.08);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  width: fit-content;
  margin-top: auto;
}

/* Footer */
.footer {
  padding: 5rem 0;
  border-top: 1px solid var(--glass-border);
  background: var(--bg-secondary);
}

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

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  transition: var(--trans-fast);
  background: var(--glass-surface);
}

.social-icon:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-3px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 3rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 0.875rem;
}

/* Video Modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.modal-content {
  position: relative;
  width: 100%;
  max-width: 1000px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
}

.close-modal {
  position: absolute;
  top: clamp(1.5rem, 5vh, 3rem);
  left: clamp(1.5rem, 5vw, 3rem);
  z-index: 1010;
  background: var(--bg-secondary);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  color: var(--text-main);
  box-shadow: var(--shadow-md);
  padding: 0.8rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: monospace;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 4px;
  overflow: hidden;
  text-transform: uppercase;
  white-space: nowrap;
}

.close-modal:hover {
  background: rgba(14, 165, 233, 0.2);
  border-color: var(--accent);
  box-shadow: 0 0 25px rgba(14, 165, 233, 0.3);
  transform: translateY(-2px);
}

.btn-scan {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(99, 102, 241, 0.05), transparent);
  background-size: 100% 200%;
  animation: hudScan 3s linear infinite;
  pointer-events: none;
}

@keyframes hudScan {
  0% {
    background-position: 0% -100%;
  }

  100% {
    background-position: 0% 100%;
  }
}

.btn-corners::before,
.btn-corners::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-color: var(--accent);
  border-style: solid;
}

.btn-corners::before {
  top: 0;
  left: 0;
  border-width: 1px 0 0 1px;
}

.btn-corners::after {
  bottom: 0;
  right: 0;
  border-width: 0 1px 1px 0;
}

.close-modal .btn-text {
  position: relative;
  z-index: 1;
}

.close-modal svg {
  position: relative;
  z-index: 1;
  transition: transform 0.6s var(--ease);
}

.close-modal:hover svg {
  transform: rotate(90deg);
  color: var(--accent);
}

/* Section Common */
.section-title {
  margin-bottom: 1.5rem;
}

/* Reveal Animations */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  will-change: opacity, transform;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive adjustments */
@media screen and (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }

  .hero-content {
    align-items: center;
  }

  .hero-visual {
    display: none;
  }

  .hero-badge, .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 768px) {
  .nav-wrapper {
    margin: 0.75rem 1rem;
    padding: 0.75rem 1.5rem;
  }

  .nav-links {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    background: var(--glass-surface);
    backdrop-filter: var(--glass-blur);
    flex-direction: column;
    padding: 10vh 2rem 5vh;
    gap: 2rem;
    transition: all 0.6s var(--ease);
    border-bottom: 1px solid var(--glass-border);
    z-index: 90;
    opacity: 0;
    visibility: hidden;
  }

  .nav-links.active {
    top: 0;
    opacity: 1;
    visibility: visible;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    padding-top: 20vh;
  }

  .hero-title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
    gap: 1.5rem;
  }

  .btn {
    width: 100%;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .marquee-content span {
    font-size: 1.5rem;
  }

  .video-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .modal-content {
    height: 100vh;
    max-width: 100%;
    border-radius: 0;
  }

  .video-wrapper {
    border-radius: 0;
    border: none;
  }

  .close-modal {
    top: 1rem;
    left: 1rem;
    padding: 0.6rem 1rem;
    font-size: 0.65rem;
  }

  /* Accordion Response: Converted back to Grid for Mobile to show all videos */
  .accordion-gallery {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    height: auto !important;
    gap: 1rem !important;
  }

  .accordion-item {
    height: auto !important;
    aspect-ratio: 9/16 !important;
    width: 100% !important;
    flex: none !important;
    border-radius: 16px !important;
  }

  /* Remove active sizing on mobile grid */
  .accordion-item.active {
    height: auto !important;
  }

  .huge-number {
    font-size: 4rem;
  }

  .section-title {
    font-size: 2.25rem;
    text-align: center;
  }

  .reels-header, .arsenal-header, .restaurant-intro, .web-dev-header {
    text-align: center;
    margin-bottom: 3rem;
  }

  .container {
    padding: 0 1.5rem;
  }
}

/* Arsenal Section */
.arsenal-section {
  padding: 10rem 0;
  position: relative;
}

.arsenal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 5rem;
}

.command-card {
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  padding: 3rem;
  border-radius: 32px;
  position: relative;
  overflow: hidden;
  transition: var(--trans-slow);
  box-shadow: var(--shadow-md);
}

.command-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 2rem;
  color: var(--accent);
}

.tech-tag {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  background: rgba(37, 99, 235, 0.05); /* Executive neutral glass */
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(5px);
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: 1.5rem;
}

/* Feature / Work Section */
.work-section {
  padding: 10rem 0;
  background-color: var(--bg-secondary);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 5rem;
}

.video-item {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.6s var(--ease);
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md);
}

.video-item:hover {
  transform: perspective(1000px) rotateX(2deg) rotateY(-2deg) scale(1.02);
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}

.video-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.video-item:hover img {
  transform: scale(1.05);
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.8), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  opacity: 0.9;
  transition: var(--trans-fast);
}

.video-overlay h3 {
  color: #fff;
  margin: 0;
}

.video-overlay p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* --- Restaurant Section: Custom Culinary-Tech UI --- */
.restaurant-section {
  background: var(--bg-primary);
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.restaurant-intro {
  max-width: 800px;
  margin-bottom: 5rem;
}

.restaurant-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  margin-bottom: 8rem;
  align-items: start;
}

/* Strategy Map */
.strategy-map {
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: 32px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.strategy-map::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent-gradient);
}

.strategy-step {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.strategy-step:last-child {
  margin-bottom: 0;
}

.step-day {
  font-family: monospace;
  font-size: 0.8rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  min-width: 100px;
  padding-top: 5px;
  font-weight: 700;
}

.step-info h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.step-info p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Culinary List */
.culinary-tech-list {
  list-style: none;
  padding: 0;
}

.culinary-item {
  padding: 1.5rem;
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: background 0.3s var(--ease);
}

.culinary-item:hover {
  background: rgba(14, 165, 233, 0.03);
}

.culinary-item .bullet {
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-glow);
}



/* Reels Showcase */
.reels-showcase {
  margin-top: 8rem;
}

.reels-grid-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.mini-reel-card {
  aspect-ratio: 9/16;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
}

.mini-reel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.mini-reel-card:hover img {
  transform: scale(1.1);
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.3s;
}

.mini-reel-card:hover .play-overlay {
  opacity: 1;
}

/* --- Web Dev Section: Custom Digital Craft UI --- */
.web-dev-section {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background: var(--bg-main);
}

.web-dev-header {
  max-width: 800px;
  margin-bottom: 5rem;
}

.web-dev-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 5rem;
}

.web-dev-cta-box {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  padding: 5rem;
  text-align: center;
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-lg);
  margin-top: 3rem;
  backdrop-filter: var(--glass-blur);
}

.cta-glass {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(14, 165, 233, 0.1), transparent 60%);
  pointer-events: none;
}

.cta-content h3 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.cta-content p {
  max-width: 800px;
  margin: 0 auto 2.5rem;
  font-size: 1.15rem;
  line-height: 1.6;
}

@media (max-width: 968px) {
  .web-dev-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .web-dev-grid {
    grid-template-columns: 1fr;
  }
  .web-dev-cta-box {
    padding: 3rem 1.5rem;
  }
  .cta-content h3 {
    font-size: 2rem;
  }
}

@media (max-width: 968px) {
  .restaurant-grid {
    grid-template-columns: 1fr;
  }
}