/* PEI-SYSTEMS - Tech/Gamedev Style Design System */
/* Modern, technological design with 3D effects, glitch, neomorphism, and smooth animations */

:root {
  /* Color Palette - Dark tech theme */
  --vexo-bg: #0a0a0a;
  --vexo-bg-alt: #0f0f0f;
  --vexo-surface: #151515;
  --vexo-surface-elevated: #1a1a1a;
  --vexo-text: #e8dcc4;
  --vexo-text-muted: #9a8a6f;
  --vexo-accent: #d4a574;
  --vexo-accent-dark: #b8945f;
  --vexo-glow: rgba(212, 165, 116, 0.4);
  --vexo-glow-strong: rgba(212, 165, 116, 0.6);
  --vexo-border: rgba(212, 165, 116, 0.15);
  --vexo-border-strong: rgba(212, 165, 116, 0.3);
  
  /* Gradients */
  --vexo-gradient-primary: linear-gradient(135deg, #d4a574 0%, #c9a882 100%);
  --vexo-gradient-glow: radial-gradient(circle, rgba(212, 165, 116, 0.3) 0%, transparent 70%);
  
  /* Typography - Tech font stack */
  --vexo-font-display: clamp(2.5rem, 5vw + 1rem, 4.5rem);
  --vexo-font-h1: clamp(2rem, 4vw + 0.5rem, 3.5rem);
  --vexo-font-h2: clamp(1.75rem, 3vw + 0.5rem, 2.5rem);
  --vexo-font-h3: clamp(1.5rem, 2vw + 0.25rem, 2rem);
  --vexo-font-body: clamp(1rem, 0.5vw + 0.75rem, 1.125rem);
  --vexo-font-small: clamp(0.875rem, 0.25vw + 0.75rem, 1rem);
  
  /* Spacing - Asymmetric scale */
  --vexo-space-xs: clamp(0.5rem, 1vw, 0.75rem);
  --vexo-space-sm: clamp(0.75rem, 1.5vw, 1.25rem);
  --vexo-space-md: clamp(1.25rem, 2.5vw, 2rem);
  --vexo-space-lg: clamp(2rem, 4vw, 3.5rem);
  --vexo-space-xl: clamp(3rem, 6vw, 5rem);
  --vexo-space-2xl: clamp(4rem, 8vw, 7rem);
  
  /* Border radius - Tech style */
  --vexo-radius-sm: 4px;
  --vexo-radius-md: 8px;
  --vexo-radius-lg: 12px;
  --vexo-radius-xl: 16px;
  
  /* Shadows - Neomorphic & Glow */
  --vexo-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --vexo-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
  --vexo-shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.6);
  --vexo-shadow-glow: 0 0 20px var(--vexo-glow);
  --vexo-shadow-glow-strong: 0 0 40px var(--vexo-glow-strong);
  
  /* Transitions */
  --vexo-transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --vexo-transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --vexo-transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: var(--vexo-font-body);
  line-height: 1.6;
  color: var(--vexo-text);
  background-color: var(--vexo-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Skip Link */
.vexo-skip {
  position: absolute;
  top: -100px;
  left: var(--vexo-space-md);
  z-index: 1000;
  padding: var(--vexo-space-sm) var(--vexo-space-md);
  background: var(--vexo-surface);
  color: var(--vexo-text);
  border: 1px solid var(--vexo-border);
  border-radius: var(--vexo-radius-md);
  text-decoration: none;
  transition: top var(--vexo-transition-fast);
}

.vexo-skip:focus {
  top: var(--vexo-space-md);
}

/* Header - Sticky with scroll effect */
.vexo-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--vexo-border);
  transition: all var(--vexo-transition-base);
}

.vexo-header.is-scrolled {
  background: rgba(10, 10, 10, 0.95);
  box-shadow: var(--vexo-shadow-md);
}

.vexo-header__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--vexo-space-md) var(--vexo-space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--vexo-space-lg);
}

.vexo-logo {
  display: flex;
  align-items: center;
  gap: var(--vexo-space-sm);
  text-decoration: none;
  color: var(--vexo-text);
  font-weight: 700;
  font-size: var(--vexo-font-h3);
  transition: all var(--vexo-transition-base);
}

.vexo-logo__text {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.5rem);
  white-space: nowrap;
}

.vexo-logo:hover {
  color: var(--vexo-accent);
  transform: scale(1.05);
}

.vexo-logo__icon {
  width: 48px;
  height: 48px;
  position: relative;
  transition: all var(--vexo-transition-base);
  filter: drop-shadow(0 4px 12px rgba(212, 165, 116, 0.3));
}

.vexo-logo__icon::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(212, 165, 116, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity var(--vexo-transition-base);
  z-index: -1;
}

.vexo-logo__icon svg {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  z-index: 1;
}

/* Frosted glass effect enhancement */
.vexo-logo__icon svg path:first-of-type {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.vexo-logo:hover .vexo-logo__icon {
  transform: scale(1.05);
  filter: drop-shadow(0 6px 20px rgba(212, 165, 116, 0.5)) 
          drop-shadow(0 2px 8px rgba(201, 168, 130, 0.3));
}

.vexo-logo:hover .vexo-logo__icon::before {
  opacity: 1;
}

.vexo-logo:hover .vexo-logo__icon svg g {
  transform: translate(1px, -1px);
  transition: transform var(--vexo-transition-base);
}

/* Animation for neon glow - amber/sand палітра */
@keyframes neonPulse {
  0%, 100% {
    opacity: 0.8;
    filter: drop-shadow(0 0 4px rgba(212, 165, 116, 0.6));
  }
  50% {
    opacity: 1;
    filter: drop-shadow(0 0 8px rgba(245, 212, 158, 0.9));
  }
}

.vexo-logo__icon svg path:nth-of-type(3) {
  animation: neonPulse 2.5s ease-in-out infinite;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .vexo-logo__icon svg path:nth-of-type(3) {
    animation: none;
  }
  
  .vexo-logo:hover .vexo-logo__icon {
    transform: scale(1.02);
  }
}

.vexo-nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: var(--vexo-space-xs);
}

.vexo-nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--vexo-text);
  transition: all var(--vexo-transition-fast);
}

.vexo-nav__menu {
  display: flex;
  align-items: center;
  gap: var(--vexo-space-md);
  list-style: none;
}

.vexo-nav__menu a {
  position: relative;
  padding: var(--vexo-space-xs) var(--vexo-space-sm);
  color: var(--vexo-text-muted);
  font-size: var(--vexo-font-small);
  font-weight: 500;
  text-decoration: none;
  transition: all var(--vexo-transition-fast);
}

.vexo-nav__menu a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--vexo-accent);
  transition: width var(--vexo-transition-base);
}

.vexo-nav__menu a:hover,
.vexo-nav__menu a:focus-visible {
  color: var(--vexo-accent);
}

.vexo-nav__menu a:hover::before,
.vexo-nav__menu a:focus-visible::before {
  width: 100%;
}

.vexo-nav__cta {
  padding: var(--vexo-space-xs) var(--vexo-space-md) !important;
  background: var(--vexo-gradient-primary);
  color: var(--vexo-bg) !important;
  border-radius: var(--vexo-radius-md);
  font-weight: 600;
}

.vexo-nav__cta::before {
  display: none;
}

.vexo-nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--vexo-shadow-glow);
}

/* Hero Section - Full bleed with tech visuals */
.vexo-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--vexo-space-2xl) + 80px) var(--vexo-space-lg) var(--vexo-space-2xl);
  overflow: hidden;
}

.vexo-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.vexo-hero__grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(212, 165, 116, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 165, 116, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

.vexo-hero__glow {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 500px;
  height: 500px;
  background: var(--vexo-gradient-glow);
  border-radius: 50%;
  filter: blur(80px);
  animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.1); }
}

.vexo-hero__container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--vexo-space-2xl);
  align-items: center;
}

.vexo-hero__content {
  display: flex;
  flex-direction: column;
  gap: var(--vexo-space-lg);
}

.vexo-hero__badge {
  display: inline-flex;
  align-items: center;
  padding: var(--vexo-space-xs) var(--vexo-space-md);
  background: var(--vexo-surface);
  border: 1px solid var(--vexo-border);
  border-radius: var(--vexo-radius-full);
  width: fit-content;
  position: relative;
  overflow: hidden;
}

.vexo-hero__badge::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.2), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.vexo-hero__badge-text {
  position: relative;
  z-index: 1;
  font-size: var(--vexo-font-small);
  color: var(--vexo-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.vexo-hero__title {
  font-size: var(--vexo-font-display);
  line-height: 1.1;
  font-weight: 800;
  color: var(--vexo-text);
  display: flex;
  flex-direction: column;
  gap: var(--vexo-space-xs);
}

.vexo-hero__title-line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.vexo-hero__title-line:nth-child(1) { animation-delay: 0.1s; }
.vexo-hero__title-line:nth-child(2) { animation-delay: 0.2s; }
.vexo-hero__title-line:nth-child(3) { animation-delay: 0.3s; }

.vexo-hero__title-line--accent {
  background: var(--vexo-gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.vexo-hero__title-line--accent::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--vexo-gradient-primary);
  opacity: 0.3;
  animation: underlineGrow 1s ease-out 0.5s forwards;
  transform: scaleX(0);
  transform-origin: left;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes underlineGrow {
  to { transform: scaleX(1); }
}

.vexo-hero__subtitle {
  font-size: var(--vexo-font-body);
  color: var(--vexo-text-muted);
  max-width: 65ch;
  line-height: 1.8;
}

.vexo-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--vexo-space-md);
}

.vexo-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--vexo-space-lg);
  margin-top: var(--vexo-space-md);
}

.vexo-stat {
  display: flex;
  flex-direction: column;
  gap: var(--vexo-space-xs);
}

.vexo-stat__value {
  font-size: var(--vexo-font-h1);
  font-weight: 800;
  color: var(--vexo-accent);
  line-height: 1;
}

.vexo-stat__label {
  font-size: var(--vexo-font-small);
  color: var(--vexo-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Buttons - Tech style with 3D effect */
.vexo-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--vexo-space-sm);
  padding: var(--vexo-space-sm) var(--vexo-space-lg);
  font-size: var(--vexo-font-body);
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--vexo-border);
  border-radius: var(--vexo-radius-md);
  background: var(--vexo-surface);
  color: var(--vexo-text);
  cursor: pointer;
  transition: all var(--vexo-transition-base);
  position: relative;
  overflow: hidden;
}

.vexo-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--vexo-gradient-primary);
  opacity: 0;
  transition: opacity var(--vexo-transition-base);
}

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

.vexo-btn svg {
  position: relative;
  z-index: 1;
  transition: transform var(--vexo-transition-base);
}

.vexo-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--vexo-shadow-glow);
  border-color: var(--vexo-accent);
}

.vexo-btn:hover svg {
  transform: translateX(4px);
}

.vexo-btn--primary {
  background: var(--vexo-gradient-primary);
  color: var(--vexo-bg);
  border: none;
}

.vexo-btn--primary::before {
  opacity: 1;
  background: linear-gradient(135deg, #c9a882 0%, #d4a574 100%);
}

.vexo-btn--primary:hover {
  box-shadow: var(--vexo-shadow-glow-strong);
  transform: translateY(-3px) scale(1.02);
}

.vexo-btn--secondary {
  background: transparent;
}

.vexo-btn--secondary:hover::before {
  opacity: 0.1;
}

/* Hero Visual - 3D Cube */
.vexo-hero__visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.vexo-hero__cube {
  position: relative;
  width: 200px;
  height: 200px;
  transform-style: preserve-3d;
  animation: cubeRotate 20s infinite linear;
}

@keyframes cubeRotate {
  0% { transform: rotateX(0deg) rotateY(0deg); }
  100% { transform: rotateX(360deg) rotateY(360deg); }
}

.vexo-hero__cube-face {
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--vexo-gradient-primary);
  border: 2px solid var(--vexo-accent);
  opacity: 0.8;
  box-shadow: var(--vexo-shadow-glow);
}

.vexo-hero__cube-face:nth-child(1) {
  transform: rotateY(0deg) translateZ(100px);
}

.vexo-hero__cube-face:nth-child(2) {
  transform: rotateY(90deg) translateZ(100px);
}

.vexo-hero__cube-face:nth-child(3) {
  transform: rotateY(180deg) translateZ(100px);
}

.vexo-hero__particles {
  position: absolute;
  inset: 0;
}

.vexo-hero__particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--vexo-accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--vexo-glow);
  animation: particleFloat 8s infinite ease-in-out;
}

.vexo-hero__particles span:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.vexo-hero__particles span:nth-child(2) {
  top: 60%;
  right: 20%;
  animation-delay: 2s;
}

.vexo-hero__particles span:nth-child(3) {
  bottom: 30%;
  left: 30%;
  animation-delay: 4s;
}

.vexo-hero__particles span:nth-child(4) {
  top: 40%;
  right: 40%;
  animation-delay: 6s;
}

.vexo-hero__particles span:nth-child(5) {
  bottom: 20%;
  right: 10%;
  animation-delay: 1s;
}

@keyframes particleFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(30px, -50px) scale(1.5);
    opacity: 1;
  }
}

/* Sections */
.vexo-section {
  position: relative;
  padding: var(--vexo-space-2xl) var(--vexo-space-lg);
}

.vexo-section--alt {
  background: var(--vexo-bg-alt);
}

.vexo-section__container {
  max-width: 1400px;
  margin: 0 auto;
}

.vexo-section__header {
  text-align: center;
  margin-bottom: var(--vexo-space-2xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.vexo-section__label {
  display: inline-block;
  padding: var(--vexo-space-xs) var(--vexo-space-md);
  background: var(--vexo-surface);
  border: 1px solid var(--vexo-border);
  border-radius: var(--vexo-radius-full);
  font-size: var(--vexo-font-small);
  color: var(--vexo-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: var(--vexo-space-md);
}

.vexo-section__title {
  font-size: var(--vexo-font-h1);
  font-weight: 800;
  margin-bottom: var(--vexo-space-md);
  color: var(--vexo-text);
  line-height: 1.2;
}

.vexo-section__intro {
  font-size: var(--vexo-font-body);
  color: var(--vexo-text-muted);
  line-height: 1.8;
}

/* Scroll Reveal */
[data-scroll-reveal] {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-scroll-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Services Section - New Design */
.vexo-services-new {
  position: relative;
  overflow: hidden;
}

.vexo-services-new__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.vexo-services-new__pattern {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(212, 165, 116, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 165, 116, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: patternShift 30s linear infinite;
}

@keyframes patternShift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(60px, 60px); }
}

.vexo-services-new__wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--vexo-space-xl);
  margin-top: var(--vexo-space-xl);
}

/* Featured Service Cards - All cards same style */
.vexo-service-featured {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--vexo-space-xl);
  padding: var(--vexo-space-2xl);
  background: var(--vexo-surface);
  border: 2px solid var(--vexo-border);
  border-radius: var(--vexo-radius-xl);
  transition: all var(--vexo-transition-slow);
  overflow: hidden;
  width: 100%;
}

.vexo-service-featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--vexo-gradient-primary);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--vexo-transition-slow);
}

.vexo-service-featured:hover {
  transform: translateX(8px);
  border-color: var(--vexo-accent);
  box-shadow: var(--vexo-shadow-glow-strong);
}

.vexo-service-featured:hover::before {
  transform: scaleY(1);
}

.vexo-service-featured__side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--vexo-space-md);
}

.vexo-service-featured__number {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--vexo-gradient-primary);
  color: var(--vexo-bg);
  border-radius: 50%;
  font-size: var(--vexo-font-h2);
  font-weight: 800;
  box-shadow: var(--vexo-shadow-glow);
  position: relative;
  z-index: 1;
}

.vexo-service-featured__line {
  flex: 1;
  width: 2px;
  background: var(--vexo-border);
  border-radius: var(--vexo-radius-full);
  position: relative;
}

.vexo-service-featured__line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--vexo-gradient-primary);
  border-radius: var(--vexo-radius-full);
  transition: height var(--vexo-transition-slow);
}

.vexo-service-featured:hover .vexo-service-featured__line::after {
  height: 100%;
}

.vexo-service-featured__main {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--vexo-space-xl);
  align-items: start;
}

.vexo-service-featured__icon-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
  flex-shrink: 0;
}

.vexo-service-featured__icon {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--vexo-surface-elevated);
  border: 2px solid var(--vexo-border);
  border-radius: var(--vexo-radius-lg);
  color: var(--vexo-accent);
  filter: drop-shadow(0 0 12px var(--vexo-glow));
  transition: all var(--vexo-transition-base);
}

.vexo-service-featured:hover .vexo-service-featured__icon {
  transform: scale(1.1) rotate(5deg);
  border-color: var(--vexo-accent);
  box-shadow: var(--vexo-shadow-glow);
}

.vexo-service-featured__glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, var(--vexo-glow) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--vexo-transition-base);
  z-index: 1;
}

.vexo-service-featured:hover .vexo-service-featured__glow {
  opacity: 1;
}

.vexo-service-featured__content {
  display: flex;
  flex-direction: column;
  gap: var(--vexo-space-md);
}

.vexo-service-featured__title {
  font-size: var(--vexo-font-h1);
  font-weight: 800;
  color: var(--vexo-text);
  margin: 0;
  line-height: 1.2;
}

.vexo-service-featured__desc {
  font-size: var(--vexo-font-body);
  color: var(--vexo-text-muted);
  line-height: 1.8;
  margin: 0;
}

.vexo-service-featured__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--vexo-space-sm);
  margin-top: var(--vexo-space-sm);
}

.vexo-tag {
  padding: var(--vexo-space-xs) var(--vexo-space-md);
  background: var(--vexo-surface-elevated);
  border: 1px solid var(--vexo-border);
  border-radius: var(--vexo-radius-full);
  font-size: var(--vexo-font-small);
  color: var(--vexo-text-muted);
  transition: all var(--vexo-transition-fast);
}

.vexo-service-featured:hover .vexo-tag {
  border-color: var(--vexo-accent);
  color: var(--vexo-accent);
  background: rgba(212, 165, 116, 0.1);
}


/* Case Study - New Design */
.vexo-case-study-new {
  position: relative;
  overflow: hidden;
}

.vexo-case-study-new__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.vexo-case-study-new__gradient {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(100px);
  animation: gradientFloat 20s ease-in-out infinite;
}

@keyframes gradientFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, -50px) scale(1.1); }
}

.vexo-case-study-new__grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(212, 165, 116, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 165, 116, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridMove 25s linear infinite;
}

.vexo-case-study-new__wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--vexo-space-2xl);
}

/* Visual Section */
.vexo-case-study-new__visual {
  position: relative;
  width: 100%;
}

.vexo-case-study-new__image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--vexo-radius-xl);
  overflow: hidden;
  border: 2px solid var(--vexo-border);
  background: var(--vexo-surface);
}

.vexo-case-study-new__image {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--vexo-surface-elevated) 0%, var(--vexo-surface) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.vexo-case-study-new__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.7) 100%);
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: var(--vexo-space-lg);
}

.vexo-case-study-new__badge {
  padding: var(--vexo-space-sm) var(--vexo-space-lg);
  background: var(--vexo-gradient-primary);
  color: var(--vexo-bg);
  border-radius: var(--vexo-radius-full);
  font-size: var(--vexo-font-small);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: var(--vexo-shadow-glow);
}

.vexo-case-study-new__decoration {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  background: var(--vexo-gradient-primary);
  border-radius: 50%;
  opacity: 0.1;
  filter: blur(60px);
  animation: decorationPulse 4s ease-in-out infinite;
}

@keyframes decorationPulse {
  0%, 100% { transform: scale(1); opacity: 0.1; }
  50% { transform: scale(1.2); opacity: 0.2; }
}

/* Content Section */
.vexo-case-study-new__content {
  display: flex;
  flex-direction: column;
  gap: var(--vexo-space-xl);
}

.vexo-case-study-new__header {
  display: flex;
  flex-direction: column;
  gap: var(--vexo-space-md);
}

.vexo-case-study-new__meta {
  display: flex;
  align-items: center;
  gap: var(--vexo-space-md);
}

.vexo-case-study-new__category {
  padding: var(--vexo-space-xs) var(--vexo-space-md);
  background: var(--vexo-surface-elevated);
  border: 1px solid var(--vexo-border);
  border-radius: var(--vexo-radius-full);
  font-size: var(--vexo-font-small);
  color: var(--vexo-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.vexo-case-study-new__year {
  padding: var(--vexo-space-xs) var(--vexo-space-md);
  background: var(--vexo-surface-elevated);
  border: 1px solid var(--vexo-border);
  border-radius: var(--vexo-radius-full);
  font-size: var(--vexo-font-small);
  color: var(--vexo-text-muted);
  font-weight: 600;
}

.vexo-case-study-new__title {
  font-size: var(--vexo-font-display);
  font-weight: 800;
  color: var(--vexo-text);
  line-height: 1.1;
  margin: 0;
}

.vexo-case-study-new__subtitle {
  font-size: var(--vexo-font-h3);
  color: var(--vexo-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Challenge & Solution */
.vexo-case-study-new__challenge,
.vexo-case-study-new__solution {
  padding: var(--vexo-space-xl);
  background: var(--vexo-surface);
  border: 1px solid var(--vexo-border);
  border-radius: var(--vexo-radius-lg);
  border-left: 4px solid var(--vexo-accent);
  transition: all var(--vexo-transition-base);
}

.vexo-case-study-new__challenge:hover,
.vexo-case-study-new__solution:hover {
  transform: translateX(8px);
  border-color: var(--vexo-accent);
  box-shadow: var(--vexo-shadow-glow);
}

.vexo-case-study-new__challenge-title,
.vexo-case-study-new__solution-title {
  font-size: var(--vexo-font-h3);
  font-weight: 700;
  color: var(--vexo-accent);
  margin: 0 0 var(--vexo-space-md);
}

.vexo-case-study-new__challenge-text,
.vexo-case-study-new__solution-text {
  font-size: var(--vexo-font-body);
  color: var(--vexo-text-muted);
  line-height: 1.8;
  margin: 0;
}

/* Results */
.vexo-case-study-new__results {
  padding: var(--vexo-space-xl);
  background: var(--vexo-surface);
  border: 1px solid var(--vexo-border);
  border-radius: var(--vexo-radius-lg);
}

.vexo-case-study-new__results-title {
  font-size: var(--vexo-font-h3);
  font-weight: 700;
  color: var(--vexo-text);
  margin: 0 0 var(--vexo-space-lg);
}

.vexo-case-study-new__results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--vexo-space-lg);
}

.vexo-case-study-new__result-item {
  display: flex;
  align-items: center;
  gap: var(--vexo-space-md);
  padding: var(--vexo-space-md);
  background: var(--vexo-surface-elevated);
  border: 1px solid var(--vexo-border);
  border-radius: var(--vexo-radius-md);
  transition: all var(--vexo-transition-base);
}

.vexo-case-study-new__result-item:hover {
  transform: translateY(-4px);
  border-color: var(--vexo-accent);
  box-shadow: var(--vexo-shadow-glow);
}

.vexo-case-study-new__result-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--vexo-gradient-primary);
  color: var(--vexo-bg);
  border-radius: var(--vexo-radius-md);
  flex-shrink: 0;
  box-shadow: var(--vexo-shadow-glow);
}

.vexo-case-study-new__result-content {
  display: flex;
  flex-direction: column;
  gap: var(--vexo-space-xs);
}

.vexo-case-study-new__result-value {
  font-size: var(--vexo-font-h2);
  font-weight: 800;
  color: var(--vexo-accent);
  line-height: 1;
}

.vexo-case-study-new__result-label {
  font-size: var(--vexo-font-small);
  color: var(--vexo-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Stats */
.vexo-case-study-new__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--vexo-space-lg);
  padding: var(--vexo-space-xl);
  background: var(--vexo-surface);
  border: 2px solid var(--vexo-border);
  border-radius: var(--vexo-radius-xl);
}

.vexo-case-study-new__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--vexo-space-xs);
  flex: 1;
}

.vexo-case-study-new__stat-number {
  font-size: var(--vexo-font-display);
  font-weight: 800;
  color: var(--vexo-accent);
  line-height: 1;
  filter: drop-shadow(0 0 10px var(--vexo-glow));
}

.vexo-case-study-new__stat-label {
  font-size: var(--vexo-font-small);
  color: var(--vexo-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.vexo-case-study-new__stat-divider {
  width: 1px;
  height: 60px;
  background: var(--vexo-border);
}

/* Portfolio Grid - Masonry style */
.vexo-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--vexo-space-lg);
  margin-top: var(--vexo-space-xl);
}

.vexo-portfolio-item {
  position: relative;
  background: var(--vexo-surface);
  border: 1px solid var(--vexo-border);
  border-radius: var(--vexo-radius-xl);
  overflow: hidden;
  transition: all var(--vexo-transition-base);
  cursor: pointer;
}

.vexo-portfolio-item:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--vexo-accent);
  box-shadow: var(--vexo-shadow-glow-strong);
}

.vexo-portfolio-item__image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--vexo-surface-elevated);
  overflow: hidden;
}

.vexo-portfolio-item__overlay {
  position: absolute;
  inset: 0;
  background: var(--vexo-gradient-primary);
  opacity: 0;
  transition: opacity var(--vexo-transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vexo-portfolio-item:hover .vexo-portfolio-item__overlay {
  opacity: 0.9;
}

.vexo-portfolio-item__category {
  color: var(--vexo-bg);
  font-weight: 700;
  font-size: var(--vexo-font-h3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.vexo-portfolio-item__content {
  padding: var(--vexo-space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--vexo-space-sm);
}

.vexo-portfolio-item__title {
  font-size: var(--vexo-font-h3);
  font-weight: 700;
  color: var(--vexo-text);
  margin: 0;
}

.vexo-portfolio-item__desc {
  color: var(--vexo-text-muted);
  line-height: 1.7;
  margin: 0;
}

.vexo-portfolio-item__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--vexo-space-xs);
  margin-top: var(--vexo-space-xs);
}

.vexo-portfolio-item__tags span {
  padding: var(--vexo-space-xs) var(--vexo-space-sm);
  background: var(--vexo-surface-elevated);
  border: 1px solid var(--vexo-border);
  border-radius: var(--vexo-radius-sm);
  font-size: var(--vexo-font-small);
  color: var(--vexo-text-muted);
}

/* Process - Vertical timeline */
.vexo-process {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: var(--vexo-space-xl) 0;
}

.vexo-process__line {
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--vexo-border);
}

.vexo-process__item {
  position: relative;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: var(--vexo-space-lg);
  margin-bottom: var(--vexo-space-2xl);
  padding-left: var(--vexo-space-md);
}

.vexo-process__number {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--vexo-gradient-primary);
  color: var(--vexo-bg);
  border-radius: 50%;
  font-size: var(--vexo-font-h3);
  font-weight: 800;
  box-shadow: var(--vexo-shadow-glow);
  position: relative;
  z-index: 1;
}

.vexo-process__content {
  display: flex;
  flex-direction: column;
  gap: var(--vexo-space-sm);
  padding-top: var(--vexo-space-sm);
}

.vexo-process__title {
  font-size: var(--vexo-font-h3);
  font-weight: 700;
  color: var(--vexo-text);
  margin: 0;
}

.vexo-process__desc {
  color: var(--vexo-text-muted);
  line-height: 1.8;
  margin: 0;
}

.vexo-process__list {
  list-style: none;
  margin-top: var(--vexo-space-sm);
  display: flex;
  flex-direction: column;
  gap: var(--vexo-space-xs);
}

.vexo-process__list li {
  position: relative;
  padding-left: var(--vexo-space-md);
  color: var(--vexo-text-muted);
  font-size: var(--vexo-font-small);
}

.vexo-process__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--vexo-accent);
  font-weight: bold;
}

/* Testimonials */
.vexo-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--vexo-space-lg);
  margin-top: var(--vexo-space-xl);
}

.vexo-testimonial {
  position: relative;
  padding: var(--vexo-space-xl);
  background: var(--vexo-surface);
  border: 1px solid var(--vexo-border);
  border-radius: var(--vexo-radius-xl);
  margin: 0;
  transition: all var(--vexo-transition-base);
}

.vexo-testimonial:hover {
  transform: translateY(-4px);
  border-color: var(--vexo-accent);
  box-shadow: var(--vexo-shadow-glow);
}

.vexo-testimonial__quote {
  margin-bottom: var(--vexo-space-lg);
}

.vexo-testimonial__quote p {
  font-size: var(--vexo-font-body);
  line-height: 1.8;
  color: var(--vexo-text);
  font-style: italic;
  margin: 0;
}

.vexo-testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--vexo-space-md);
}

.vexo-testimonial__avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--vexo-gradient-primary);
  flex-shrink: 0;
}

.vexo-testimonial__author strong {
  display: block;
  color: var(--vexo-text);
  font-weight: 700;
  margin-bottom: var(--vexo-space-xs);
}

.vexo-testimonial__author span {
  color: var(--vexo-text-muted);
  font-size: var(--vexo-font-small);
}

/* Metrics */
.vexo-metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--vexo-space-lg);
  margin-top: var(--vexo-space-xl);
}

.vexo-metric-large {
  padding: var(--vexo-space-xl);
  background: var(--vexo-surface);
  border: 1px solid var(--vexo-border);
  border-radius: var(--vexo-radius-xl);
  text-align: center;
  transition: all var(--vexo-transition-base);
  position: relative;
  overflow: hidden;
}

.vexo-metric-large::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--vexo-gradient-primary);
  opacity: 0;
  transition: opacity var(--vexo-transition-base);
}

.vexo-metric-large:hover {
  transform: scale(1.05);
  border-color: var(--vexo-accent);
  box-shadow: var(--vexo-shadow-glow-strong);
}

.vexo-metric-large:hover::before {
  opacity: 0.1;
}

.vexo-metric-large__value {
  position: relative;
  z-index: 1;
  font-size: var(--vexo-font-display);
  font-weight: 800;
  color: var(--vexo-accent);
  line-height: 1;
  margin-bottom: var(--vexo-space-sm);
  filter: drop-shadow(0 0 10px var(--vexo-glow));
}

.vexo-metric-large__label {
  position: relative;
  z-index: 1;
  font-size: var(--vexo-font-body);
  color: var(--vexo-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* Contact */
.vexo-contact {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--vexo-space-2xl);
  margin-top: var(--vexo-space-xl);
}

.vexo-contact__form {
  display: flex;
  flex-direction: column;
  gap: var(--vexo-space-lg);
}

.vexo-contact__fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--vexo-space-md);
}

.vexo-field {
  display: flex;
  flex-direction: column;
  gap: var(--vexo-space-xs);
}

.vexo-field--full {
  grid-column: 1 / -1;
}

.vexo-field__label {
  font-size: var(--vexo-font-small);
  font-weight: 600;
  color: var(--vexo-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.vexo-field__input {
  padding: var(--vexo-space-sm) var(--vexo-space-md);
  background: var(--vexo-surface);
  border: 1px solid var(--vexo-border);
  border-radius: var(--vexo-radius-md);
  color: var(--vexo-text);
  font-size: var(--vexo-font-body);
  font-family: inherit;
  transition: all var(--vexo-transition-base);
}

.vexo-field__input:focus {
  outline: none;
  border-color: var(--vexo-accent);
  background: var(--vexo-surface-elevated);
  box-shadow: 0 0 0 3px var(--vexo-glow);
}

.vexo-field__input::placeholder {
  color: var(--vexo-text-muted);
  opacity: 0.5;
}

.vexo-contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--vexo-space-md);
}

.vexo-contact__info {
  padding: var(--vexo-space-xl);
  background: var(--vexo-surface);
  border: 1px solid var(--vexo-border);
  border-radius: var(--vexo-radius-xl);
  display: flex;
  flex-direction: column;
  gap: var(--vexo-space-lg);
  height: fit-content;
}

.vexo-contact__address {
  font-style: normal;
  color: var(--vexo-text);
  line-height: 1.8;
}

.vexo-contact__address strong {
  display: block;
  font-size: var(--vexo-font-h3);
  color: var(--vexo-accent);
  margin-bottom: var(--vexo-space-sm);
}

.vexo-contact__links {
  display: flex;
  flex-direction: column;
  gap: var(--vexo-space-sm);
}

.vexo-contact__links a {
  color: var(--vexo-accent);
  text-decoration: none;
  font-weight: 600;
  transition: all var(--vexo-transition-fast);
}

.vexo-contact__email,
.vexo-contact__phone {
  white-space: nowrap;
  font-size: 0.9em;
}

.vexo-contact__links a:hover {
  text-decoration: underline;
  filter: drop-shadow(0 0 4px var(--vexo-glow));
}

.vexo-contact__links p {
  color: var(--vexo-text-muted);
  font-size: var(--vexo-font-small);
  margin: 0;
}

/* Footer */
.vexo-footer {
  border-top: 1px solid var(--vexo-border);
  padding: var(--vexo-space-2xl) var(--vexo-space-lg);
  background: var(--vexo-bg-alt);
}

.vexo-footer__container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--vexo-space-2xl);
}

.vexo-footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--vexo-space-sm);
}

.vexo-footer__logo {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
  font-weight: 800;
  color: var(--vexo-text);
  white-space: nowrap;
}

.vexo-footer__tagline {
  color: var(--vexo-text-muted);
  font-size: var(--vexo-font-small);
  margin: 0;
}

.vexo-footer__nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--vexo-space-lg);
}

.vexo-footer__nav-group {
  display: flex;
  flex-direction: column;
  gap: var(--vexo-space-sm);
}

.vexo-footer__nav-title {
  font-size: var(--vexo-font-small);
  font-weight: 700;
  color: var(--vexo-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

.vexo-footer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--vexo-space-xs);
}

.vexo-footer__nav-list a {
  color: var(--vexo-text-muted);
  text-decoration: none;
  font-size: var(--vexo-font-small);
  transition: all var(--vexo-transition-fast);
}

.vexo-footer__nav-list a:hover {
  color: var(--vexo-accent);
  transform: translateX(4px);
}

.vexo-footer__meta {
  display: flex;
  flex-direction: column;
  gap: var(--vexo-space-sm);
  justify-content: flex-end;
}

.vexo-footer__copyright,
.vexo-footer__legal {
  color: var(--vexo-text-muted);
  font-size: var(--vexo-font-small);
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .vexo-hero__container {
    grid-template-columns: 1fr;
    gap: var(--vexo-space-xl);
  }

  .vexo-hero__visual {
    height: 400px;
  }

  .vexo-case-study-new__results-grid {
    grid-template-columns: 1fr;
  }

  .vexo-case-study-new__stats {
    flex-direction: column;
    gap: var(--vexo-space-md);
  }

  .vexo-case-study-new__stat-divider {
    width: 60px;
    height: 1px;
  }

  .vexo-contact {
    grid-template-columns: 1fr;
  }

  .vexo-footer__container {
    grid-template-columns: 1fr;
    gap: var(--vexo-space-lg);
  }
}

@media (max-width: 768px) {
  .vexo-nav__toggle {
    display: flex;
  }

  .vexo-nav__menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--vexo-bg);
    border-top: 1px solid var(--vexo-border);
    flex-direction: column;
    padding: var(--vexo-space-lg);
    gap: var(--vexo-space-md);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--vexo-transition-base);
  }

  .vexo-nav__menu.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .vexo-hero {
    min-height: auto;
    padding: calc(var(--vexo-space-xl) + 80px) var(--vexo-space-md) var(--vexo-space-xl);
  }

  .vexo-hero__stats {
    grid-template-columns: 1fr;
    gap: var(--vexo-space-md);
  }

  .vexo-service-featured {
    grid-template-columns: 60px 1fr;
    gap: var(--vexo-space-lg);
    padding: var(--vexo-space-xl);
  }

  .vexo-service-featured__main {
    grid-template-columns: 1fr;
    gap: var(--vexo-space-md);
  }

  .vexo-service-featured__icon-wrapper {
    width: 80px;
    height: 80px;
  }

  .vexo-portfolio-grid {
    grid-template-columns: 1fr;
  }

  .vexo-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .vexo-metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vexo-contact__fields {
    grid-template-columns: 1fr;
  }

  .vexo-footer__nav {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .vexo-section {
    padding: var(--vexo-space-xl) var(--vexo-space-md);
  }

  .vexo-metrics-grid {
    grid-template-columns: 1fr;
  }

  .vexo-case-study-new__results-grid {
    grid-template-columns: 1fr;
  }

  .vexo-case-study-new__stats {
    flex-wrap: wrap;
  }

  .vexo-hero__title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
}

/* Focus States */
*:focus-visible {
  outline: 2px solid var(--vexo-accent);
  outline-offset: 4px;
  border-radius: var(--vexo-radius-sm);
}

button:focus-visible,
a:focus-visible {
  outline-offset: 2px;
}
