@charset "UTF-8";
:root {
  --primary-purple: #8B5CF6;
  --secondary-purple: #A78BFA;
  --deep-purple: #6366F1;
  --light-purple: #C4B5FD;
  --accent-purple: #7C3AED;
  --text-white: #FFFFFF;
  --text-gray: #9CA3AF;
  --purple-glow: rgba(139, 92, 246, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: radial-gradient(circle at 50% 0%, #1f1c2c, #090c1d 60%, #000000 100%);
  color: var(--text-white);
  overflow-x: hidden;
  min-height: 100vh;
}

/* Hero Container */
.vzx-hero-container {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: linear-gradient(135deg, #0a0e1a 0%, #1a1d2e 50%, #0f1419 100%);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  width: 100%;
  max-width: 100vw;
}

/* CSS Custom Properties */
.vzx-hero-container {
  --vzx-primary-purple: #8b5cf6;
  --vzx-secondary-purple: #a855f7;
  --vzx-accent-purple: #c084fc;
  --vzx-light-purple: #ddd6fe;
  --vzx-coral-purple: #d946ef;
  --vzx-text-primary: #ffffff;
  --vzx-text-secondary: #e2e8f0;
  --vzx-bg-dark: #0a0e1a;
}

.vzx-hero-wrapper {
  position: relative;
  min-height: 100vh;
  width: 100%;
  max-width: 100%;
}

/* Hide mobile toggle checkbox */
.vzx-mobile-toggle {
  display: none;
}

/* STICKY NAVIGATION WITH SCROLL BEHAVIOR */
.vzx-nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(10px, 2vw, 0px) clamp(20px, 8vw, 120px);
  background: linear-gradient(135deg, rgba(10, 14, 26, 0.95) 0%, rgba(26, 29, 46, 0.95) 50%, rgba(15, 20, 25, 0.95) 100%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
          backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-sizing: border-box;
  /* Scroll behavior states */
  /* Enhanced background when scrolled */
}
.vzx-nav-header.vzx-nav-hidden {
  transform: translateY(-100%);
  opacity: 0;
}
.vzx-nav-header.vzx-nav-visible {
  transform: translateY(0);
  opacity: 1;
}
.vzx-nav-header.vzx-nav-scrolled {
  background: linear-gradient(135deg, rgba(10, 14, 26, 0.98) 0%, rgba(26, 29, 46, 0.98) 50%, rgba(15, 20, 25, 0.98) 100%);
  -webkit-backdrop-filter: blur(25px) saturate(200%);
          backdrop-filter: blur(25px) saturate(200%);
  border-bottom: 1px solid rgba(139, 92, 246, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Logo */
.vzx-logo-brand {
  display: flex;
  height: clamp(40px, 6vw, 60px);
  width: auto;
  aspect-ratio: 1;
  flex-shrink: 0;
  z-index: 1002;
}
.vzx-logo-brand img {
  width: 162px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767px) {
  .vzx-logo-brand img {
    width: 104px;
  }
}

/* Desktop Navigation */
.vzx-nav-desktop {
  display: flex;
  align-items: center;
}

.vzx-nav-menu {
  display: flex;
  gap: clamp(1rem, 3vw, 2.5rem);
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.vzx-nav-link {
  color: var(--vzx-text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: clamp(14px, 1.2vw, 16px);
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
}
.vzx-nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--vzx-accent-purple);
  transition: width 0.3s ease;
}
.vzx-nav-link:hover {
  color: var(--vzx-accent-purple);
}
.vzx-nav-link:hover::after {
  width: 100%;
}

/* Contact Button */
.vzx-contact-btn {
  background: var(--vzx-primary-purple);
  color: white;
  padding: clamp(8px, 1.5vw, 12px) clamp(16px, 2.5vw, 24px);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(13px, 1.1vw, 15px);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}
.vzx-contact-btn:hover {
  background: var(--vzx-secondary-purple);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

/* Burger Button */
.vzx-burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  cursor: pointer;
  z-index: 1002;
  padding: 4px;
  background: transparent;
  border: none;
}

.vzx-burger-line {
  width: 20px;
  height: 2px;
  background: var(--vzx-text-primary);
  margin: 2px 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

/* Burger Animation */
.vzx-mobile-toggle:checked ~ .vzx-burger-btn .vzx-burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.vzx-mobile-toggle:checked ~ .vzx-burger-btn .vzx-burger-line:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.vzx-mobile-toggle:checked ~ .vzx-burger-btn .vzx-burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.vzx-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: linear-gradient(135deg, rgba(10, 14, 26, 0.98) 0%, rgba(26, 29, 46, 0.98) 50%, rgba(15, 20, 25, 0.98) 100%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
          backdrop-filter: blur(20px) saturate(180%);
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vzx-mobile-toggle:checked ~ .vzx-mobile-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.vzx-mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
  padding: 2rem;
  width: 100%;
  max-width: 400px;
}

.vzx-mobile-link {
  color: var(--vzx-text-primary);
  text-decoration: none;
  font-size: clamp(24px, 5vw, 32px);
  font-weight: 600;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}
.vzx-mobile-link:hover {
  color: var(--vzx-accent-purple);
  transform: translateY(20px) scale(1.05);
}

.vzx-mobile-contact {
  background: var(--vzx-primary-purple);
  color: white;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(18px, 4vw, 22px);
  transition: all 0.3s ease;
  margin-top: 1rem;
  opacity: 0;
  transform: translateY(20px);
}
.vzx-mobile-contact:hover {
  background: var(--vzx-secondary-purple);
  transform: translateY(16px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

/* Animate mobile menu items */
.vzx-mobile-toggle:checked ~ .vzx-mobile-menu .vzx-mobile-link,
.vzx-mobile-toggle:checked ~ .vzx-mobile-menu .vzx-mobile-contact {
  opacity: 1;
  transform: translateY(0);
}

.vzx-mobile-toggle:checked ~ .vzx-mobile-menu .vzx-mobile-link:nth-child(1) {
  transition-delay: 0.1s;
}

.vzx-mobile-toggle:checked ~ .vzx-mobile-menu .vzx-mobile-link:nth-child(2) {
  transition-delay: 0.2s;
}

.vzx-mobile-toggle:checked ~ .vzx-mobile-menu .vzx-mobile-link:nth-child(3) {
  transition-delay: 0.3s;
}

.vzx-mobile-toggle:checked ~ .vzx-mobile-menu .vzx-mobile-link:nth-child(4) {
  transition-delay: 0.4s;
}

.vzx-mobile-toggle:checked ~ .vzx-mobile-menu .vzx-mobile-contact {
  transition-delay: 0.5s;
}

/* MAIN HERO CONTENT */
.vzx-hero-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: clamp(120px, 17vh, 160px) clamp(20px, 8vw, 120px) clamp(40px, 8vh, 80px);
  gap: clamp(2rem, 8vw, 8rem);
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.vzx-content-section {
  max-width: 100%;
  width: 100%;
}

.vzx-hero-title {
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  font-weight: 800;
  line-height: 0.95;
  margin: 0 0 1rem 0;
  color: var(--vzx-text-primary);
  letter-spacing: -0.02em;
}

.vzx-title-accent {
  color: var(--vzx-primary-purple);
  display: block;
}

.vzx-hero-subtitle {
  font-size: clamp(1.25rem, 4vw, 1.875rem);
  font-weight: 600;
  margin: 1rem 0 1.5rem 0;
  color: var(--vzx-text-secondary);
  line-height: 1.2;
}

.vzx-accent-text {
  color: var(--vzx-primary-purple);
}

.vzx-hero-description {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  color: var(--vzx-text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.vzx-description-highlight {
  font-weight: 600;
  color: var(--vzx-text-primary);
}

.vzx-partners-list {
  display: flex;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.vzx-partner-tag {
  color: var(--vzx-text-secondary);
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  opacity: 0.8;
  white-space: nowrap;
}

.vzx-cta-buttons {
  display: flex;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  margin-top: 2rem;
  flex-wrap: wrap;
}

.vzx-primary-btn,
.vzx-secondary-btn {
  padding: clamp(12px, 2.5vw, 16px) clamp(20px, 4vw, 32px);
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  transition: all 0.3s ease;
  white-space: nowrap;
  text-align: center;
  min-width: 140px;
}

.vzx-primary-btn {
  background: var(--vzx-primary-purple);
  color: white;
  border: 2px solid var(--vzx-primary-purple);
}
.vzx-primary-btn:hover {
  background: var(--vzx-secondary-purple);
  border-color: var(--vzx-secondary-purple);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.vzx-secondary-btn {
  background: transparent;
  color: var(--vzx-primary-purple);
  border: 2px solid var(--vzx-primary-purple);
}
.vzx-secondary-btn:hover {
  background: var(--vzx-primary-purple);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.2);
}

/* WebGL Section - FIXED FOR NO TRUNCATION */
.vzx-blob-section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  padding: clamp(1rem, 4vw, 2rem);
  box-sizing: border-box;
}

.vzx-webgl-container {
  position: relative;
  width: 100%;
  max-width: clamp(280px, 80vw, 500px);
  height: clamp(280px, 80vw, 500px);
  border-radius: 30px;
  overflow: hidden;
  filter: drop-shadow(0 20px 40px rgba(139, 92, 246, 0.3)) drop-shadow(0 10px 20px rgba(139, 92, 246, 0.2));
  /* Ensure it stays within viewport */
  max-height: 70vh;
  aspect-ratio: 1;
}

#vzxWebGLCanvas {
  width: 100%;
  height: 100%;
  display: block;
}

.vzx-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--vzx-primary-purple);
  font-weight: 600;
  z-index: 1;
  font-size: clamp(14px, 2vw, 16px);
}

/* Scroll Indicator */
.vzx-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--vzx-text-secondary);
  font-size: clamp(1.5rem, 3vw, 2rem);
  opacity: 0.5;
  animation: vzxBounce 2s infinite;
}

@keyframes vzxBounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-8px);
  }
  60% {
    transform: translateX(-50%) translateY(-4px);
  }
}
/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1024px) {
  .vzx-hero-main {
    gap: clamp(3rem, 6vw, 5rem);
  }
}
@media (max-width: 768px) {
  .vzx-nav-desktop {
    display: none;
  }
  .vzx-burger-btn {
    display: flex;
  }
  .vzx-contact-btn {
    display: none;
  }
  .vzx-hero-main {
    grid-template-columns: 1fr;
    text-align: center;
    gap: clamp(2rem, 6vw, 3rem);
    padding: clamp(100px, 15vh, 120px) clamp(16px, 5vw, 40px) clamp(40px, 8vh, 60px);
    justify-items: center;
    align-items: center;
  }
  .vzx-content-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 600px;
  }
  .vzx-partners-list {
    justify-content: center;
  }
  .vzx-cta-buttons {
    justify-content: center;
    align-items: center;
  }
  /* Ensure blob section is centered and contained */
  .vzx-blob-section {
    order: 2;
    padding: clamp(1rem, 3vw, 2rem);
  }
  .vzx-content-section {
    order: 1;
  }
}
@media (max-width: 640px) {
  /* Enhanced center alignment for smaller screens */
  .vzx-hero-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: clamp(100px, 15vh, 120px) clamp(20px, 6vw, 40px) clamp(40px, 8vh, 60px);
  }
  .vzx-content-section {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  .vzx-hero-title {
    text-align: center;
  }
  .vzx-hero-subtitle {
    text-align: center;
  }
  .vzx-hero-description {
    text-align: center;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
  }
  .vzx-partners-list {
    justify-content: center;
    width: 100%;
  }
  .vzx-cta-buttons {
    justify-content: center;
    width: 100%;
  }
  /* Blob section improvements for small screens */
  .vzx-blob-section {
    width: 100%;
    margin: 0 auto;
    padding: 1rem;
  }
}
@media (max-width: 480px) {
  .vzx-nav-header {
    padding: 14px 20px;
  }
  .vzx-hero-main {
    padding: 106px 16px 40px;
    gap: 2rem;
  }
  .vzx-content-section {
    max-width: 100%;
    padding: 0 8px;
  }
  .vzx-partners-list {
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem 0;
  }
  .vzx-cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }
  .vzx-cta-buttons .vzx-primary-btn,
  .vzx-cta-buttons .vzx-secondary-btn {
    width: 100%;
    max-width: 280px;
    justify-self: center;
  }
  /* Blob section for very small screens */
  .vzx-webgl-container {
    max-width: min(260px, 90vw);
    height: min(260px, 90vw);
    max-height: 50vh;
  }
}
/* Prevent body scroll when mobile menu is open */
.vzx-mobile-toggle:checked ~ * body {
  overflow: hidden;
}

/* FIXED BOOKING MODAL STYLES */
.vzx-booking-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.vzx-booking-modal.vzx-modal-open {
  opacity: 1;
  visibility: visible;
}

.vzx-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.vzx-modal-container {
  position: relative;
  background: linear-gradient(135deg, rgba(10, 14, 26, 0.95) 0%, rgba(26, 29, 46, 0.95) 50%, rgba(15, 20, 25, 0.95) 100%);
  -webkit-backdrop-filter: blur(25px) saturate(200%);
          backdrop-filter: blur(25px) saturate(200%);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 24px;
  width: 90%;
  max-width: 1000px;
  max-height: 90vh;
  overflow: hidden;
  transform: scale(0.9) translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 80px rgba(139, 92, 246, 0.1);
}
.vzx-modal-open .vzx-modal-container {
  transform: scale(1) translateY(0);
}

.vzx-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(168, 85, 247, 0.05) 100%);
}

.vzx-modal-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--vzx-text-primary);
  margin: 0;
  background: linear-gradient(135deg, var(--vzx-text-primary) 0%, var(--vzx-primary-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* FIXED CLOSE BUTTON */
.vzx-modal-close {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--vzx-text-primary);
  cursor: pointer;
  padding: 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
}
.vzx-modal-close:hover {
  background: rgba(255, 92, 92, 0.2);
  border-color: rgba(255, 92, 92, 0.4);
  color: #ff5c5c;
  transform: scale(1.05);
}
.vzx-modal-close svg {
  width: 20px;
  height: 20px;
}

.vzx-modal-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 32px;
  max-height: 70vh;
  overflow-y: auto;
}
.vzx-modal-content::-webkit-scrollbar {
  width: 6px;
}
.vzx-modal-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}
.vzx-modal-content::-webkit-scrollbar-thumb {
  background: var(--vzx-primary-purple);
  border-radius: 3px;
}
.vzx-modal-content::-webkit-scrollbar-thumb:hover {
  background: var(--vzx-secondary-purple);
}

.vzx-modal-left {
  display: flex;
  flex-direction: column;
}

.vzx-form-group {
  margin-bottom: 24px;
}

.vzx-form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--vzx-text-primary);
  margin-bottom: 8px;
}

.vzx-form-input,
.vzx-form-select,
.vzx-form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--vzx-text-primary);
  font-size: 14px;
  transition: all 0.3s ease;
  box-sizing: border-box;
}
.vzx-form-input:focus,
.vzx-form-select:focus,
.vzx-form-textarea:focus {
  outline: none;
  border-color: var(--vzx-primary-purple);
  background: rgba(139, 92, 246, 0.1);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}
.vzx-form-input::-moz-placeholder, .vzx-form-select::-moz-placeholder, .vzx-form-textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.vzx-form-input::placeholder,
.vzx-form-select::placeholder,
.vzx-form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* FIXED DROPDOWN OPTIONS - VISIBLE NOW */
.vzx-form-select {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px 12px;
  padding-right: 40px;
  /* FIXED: Dark background for options */
  /* For different browsers */
}
.vzx-form-select option {
  background: #1a1d2e !important;
  color: #ffffff !important;
  padding: 10px !important;
  border: none !important;
}
.vzx-form-select option:checked {
  background: var(--vzx-primary-purple) !important;
  color: white !important;
}
.vzx-form-select option:hover {
  background: rgba(139, 92, 246, 0.3) !important;
  color: white !important;
}

.vzx-form-textarea {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}

.vzx-calendar-section {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.vzx-calendar-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--vzx-text-primary);
  margin: 0 0 20px 0;
}

.vzx-calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.vzx-calendar-nav {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  color: var(--vzx-primary-purple);
  width: 32px;
  height: 32px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
.vzx-calendar-nav:hover {
  background: rgba(139, 92, 246, 0.2);
  transform: scale(1.1);
}

.vzx-calendar-month {
  font-size: 16px;
  font-weight: 600;
  color: var(--vzx-text-primary);
  margin: 0;
}

.vzx-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 20px;
}

.vzx-calendar-day-header {
  padding: 8px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--vzx-text-secondary);
  opacity: 0.7;
}

.vzx-calendar-day {
  padding: 8px;
  text-align: center;
  cursor: pointer;
  border-radius: 8px;
  font-size: 14px;
  color: var(--vzx-text-secondary);
  transition: all 0.3s ease;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vzx-calendar-day:hover {
  background: rgba(139, 92, 246, 0.1);
  color: var(--vzx-text-primary);
}
.vzx-calendar-day.vzx-day-available {
  color: var(--vzx-text-primary);
  background: rgba(255, 255, 255, 0.05);
}
.vzx-calendar-day.vzx-day-available:hover {
  background: rgba(139, 92, 246, 0.2);
  transform: scale(1.1);
}
.vzx-calendar-day.vzx-day-selected {
  background: var(--vzx-primary-purple);
  color: white;
  font-weight: 600;
}
.vzx-calendar-day.vzx-day-selected:hover {
  background: var(--vzx-secondary-purple);
}
.vzx-calendar-day.vzx-day-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.vzx-calendar-day.vzx-day-disabled:hover {
  background: transparent;
  color: var(--vzx-text-secondary);
  transform: none;
}

.vzx-time-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--vzx-text-primary);
  margin: 0 0 12px 0;
}

.vzx-time-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.vzx-time-slot {
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--vzx-text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}
.vzx-time-slot:hover {
  background: rgba(139, 92, 246, 0.1);
  border-color: var(--vzx-primary-purple);
  color: var(--vzx-text-primary);
  transform: translateY(-1px);
}
.vzx-time-slot.vzx-time-selected {
  background: var(--vzx-primary-purple);
  border-color: var(--vzx-primary-purple);
  color: white;
}
.vzx-time-slot.vzx-time-selected:hover {
  background: var(--vzx-secondary-purple);
}

.vzx-selected-time {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}
.vzx-selected-time h4 {
  color: var(--vzx-primary-purple);
  font-size: 16px;
  margin: 0 0 8px 0;
  font-weight: 600;
}
.vzx-selected-time p {
  color: var(--vzx-text-primary);
  margin: 0;
  font-size: 14px;
  font-weight: 500;
}

.vzx-modal-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  padding: 24px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
}

.vzx-modal-cancel {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--vzx-text-secondary);
  padding: 12px 24px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}
.vzx-modal-cancel:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--vzx-text-primary);
  border-color: rgba(255, 255, 255, 0.3);
}

.vzx-modal-submit {
  background: linear-gradient(135deg, var(--vzx-primary-purple) 0%, var(--vzx-secondary-purple) 100%);
  border: none;
  color: white;
  padding: 12px 24px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.vzx-modal-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}
.vzx-modal-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.vzx-modal-submit:disabled:hover {
  transform: none;
  box-shadow: none;
}

.vzx-button-icon {
  transition: transform 0.3s ease;
}

.vzx-modal-submit:hover .vzx-button-icon {
  transform: translateX(2px);
}

/* CONFIRMATION MODAL STYLES */
.vzx-confirmation-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.vzx-confirmation-modal.vzx-confirmation-open {
  opacity: 1;
  visibility: visible;
}

.vzx-confirmation-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(25px) saturate(200%);
  -webkit-backdrop-filter: blur(25px) saturate(200%);
}

.vzx-confirmation-container {
  position: relative;
  background: linear-gradient(135deg, rgba(10, 14, 26, 0.97) 0%, rgba(26, 29, 46, 0.97) 50%, rgba(15, 20, 25, 0.97) 100%);
  -webkit-backdrop-filter: blur(30px) saturate(200%);
          backdrop-filter: blur(30px) saturate(200%);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 24px;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow: hidden;
  transform: scale(0.8) translateY(30px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 100px rgba(139, 92, 246, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.vzx-confirmation-open .vzx-confirmation-container {
  transform: scale(1) translateY(0);
}

.vzx-confirmation-header {
  text-align: center;
  padding: 32px 32px 24px 32px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(168, 85, 247, 0.1) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vzx-confirmation-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px auto;
  background: linear-gradient(135deg, var(--vzx-primary-purple) 0%, var(--vzx-secondary-purple) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.4);
  animation: checkmark-bounce 0.6s ease-out 0.2s both;
}
.vzx-confirmation-icon svg {
  color: white;
  stroke-width: 3;
}

@keyframes checkmark-bounce {
  0% {
    transform: scale(0) rotate(-180deg);
    opacity: 0;
  }
  50% {
    transform: scale(1.2) rotate(-90deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}
.vzx-confirmation-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--vzx-text-primary);
  margin: 0 0 8px 0;
  background: linear-gradient(135deg, var(--vzx-text-primary) 0%, var(--vzx-primary-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vzx-confirmation-subtitle {
  font-size: 16px;
  color: var(--vzx-text-secondary);
  margin: 0;
  opacity: 0.9;
}

.vzx-confirmation-content {
  padding: 24px 32px;
  max-height: 60vh;
  overflow-y: auto;
}
.vzx-confirmation-content::-webkit-scrollbar {
  width: 6px;
}
.vzx-confirmation-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}
.vzx-confirmation-content::-webkit-scrollbar-thumb {
  background: var(--vzx-primary-purple);
  border-radius: 3px;
}
.vzx-confirmation-content::-webkit-scrollbar-thumb:hover {
  background: var(--vzx-secondary-purple);
}

.vzx-booking-details {
  display: grid;
  gap: 16px;
  margin-bottom: 24px;
}

.vzx-detail-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
  animation: detail-slide-in 0.5s ease-out both;
}
.vzx-detail-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(139, 92, 246, 0.2);
  transform: translateY(-2px);
}
.vzx-detail-card.vzx-detail-featured {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.3);
}
.vzx-detail-card.vzx-detail-featured .vzx-detail-icon {
  background: var(--vzx-primary-purple);
  color: white;
}
.vzx-detail-card.vzx-detail-full {
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.vzx-detail-card.vzx-detail-full .vzx-detail-info {
  width: 100%;
}

@keyframes detail-slide-in {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.vzx-detail-card:nth-child(1) {
  animation-delay: 0.1s;
}

.vzx-detail-card:nth-child(2) {
  animation-delay: 0.2s;
}

.vzx-detail-card:nth-child(3) {
  animation-delay: 0.3s;
}

.vzx-detail-card:nth-child(4) {
  animation-delay: 0.4s;
}

.vzx-detail-card:nth-child(5) {
  animation-delay: 0.5s;
}

.vzx-detail-card:nth-child(6) {
  animation-delay: 0.6s;
}

.vzx-detail-card:nth-child(7) {
  animation-delay: 0.7s;
}

.vzx-detail-icon {
  width: 48px;
  height: 48px;
  background: rgba(139, 92, 246, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.vzx-detail-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vzx-detail-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--vzx-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.8;
}

.vzx-detail-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--vzx-text-primary);
  line-height: 1.4;
}
.vzx-detail-value.vzx-detail-message {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--vzx-text-secondary);
  max-height: 80px;
  overflow-y: auto;
}

.vzx-confirmation-note {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(168, 85, 247, 0.05) 100%);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.vzx-note-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.vzx-note-content {
  flex: 1;
}
.vzx-note-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--vzx-text-primary);
  margin: 0 0 12px 0;
}
.vzx-note-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.vzx-note-content ul li {
  font-size: 14px;
  color: var(--vzx-text-secondary);
  margin-bottom: 8px;
  padding-left: 16px;
  position: relative;
  line-height: 1.4;
}
.vzx-note-content ul li:before {
  content: "•";
  color: var(--vzx-primary-purple);
  font-weight: bold;
  position: absolute;
  left: 0;
}
.vzx-note-content ul li:last-child {
  margin-bottom: 0;
}

.vzx-confirmation-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
}

.vzx-confirmation-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--vzx-text-secondary);
  padding: 12px 20px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.vzx-confirmation-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--vzx-text-primary);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}
.vzx-confirmation-secondary svg {
  opacity: 0.7;
}

.vzx-confirmation-primary {
  background: linear-gradient(135deg, var(--vzx-primary-purple) 0%, var(--vzx-secondary-purple) 100%);
  border: none;
  color: white;
  padding: 12px 24px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}
.vzx-confirmation-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}
.vzx-confirmation-primary svg {
  transition: transform 0.3s ease;
}
.vzx-confirmation-primary:hover svg {
  transform: translateX(2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .vzx-modal-container {
    width: 95%;
    max-height: 95vh;
  }
  .vzx-modal-header {
    padding: 20px 24px;
  }
  .vzx-modal-title {
    font-size: 20px;
  }
  .vzx-modal-content {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
    max-height: 60vh;
  }
  .vzx-calendar-section {
    padding: 20px;
  }
  .vzx-time-grid {
    grid-template-columns: 1fr;
  }
  .vzx-modal-footer {
    padding: 20px 24px;
    flex-direction: column-reverse;
    gap: 12px;
  }
  .vzx-modal-footer .vzx-modal-cancel,
  .vzx-modal-footer .vzx-modal-submit {
    width: 100%;
    justify-content: center;
  }
  .vzx-confirmation-container {
    width: 95%;
    max-height: 95vh;
  }
  .vzx-confirmation-header {
    padding: 24px 24px 20px 24px;
  }
  .vzx-confirmation-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
  }
  .vzx-confirmation-icon svg {
    width: 32px;
    height: 32px;
  }
  .vzx-confirmation-title {
    font-size: 24px;
  }
  .vzx-confirmation-content {
    padding: 20px 24px;
    max-height: 65vh;
  }
  .vzx-detail-card {
    padding: 14px 16px;
    gap: 12px;
  }
  .vzx-detail-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  .vzx-confirmation-footer {
    padding: 20px 24px;
    flex-direction: column;
    gap: 12px;
  }
  .vzx-confirmation-footer .vzx-confirmation-secondary,
  .vzx-confirmation-footer .vzx-confirmation-primary {
    width: 100%;
    justify-content: center;
  }
}
/* ADD THIS TO THE END OF YOUR _hero.scss FILE */
/* Don't change any of your existing styles - just add this section */
/* ===== ADAPTIVE METABALL SOLUTION ===== */
/* Static Image Styles */
.vzx-static-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30px;
  display: none; /* Hidden by default */
  animation: mobileFloat 4s ease-in-out infinite;
}

/* Mobile floating animation */
@keyframes mobileFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) rotate(1deg);
  }
  50% {
    transform: translateY(-5px) rotate(0deg);
  }
  75% {
    transform: translateY(-15px) rotate(-1deg);
  }
}
/* ADAPTIVE MEDIA QUERIES */
@media (max-width: 768px) {
  /* Mobile: Show image, hide canvas */
  #vzxWebGLCanvas {
    display: none !important;
  }
  .vzx-static-image {
    display: block !important;
  }
}
@media (min-width: 769px) {
  /* Desktop: Show canvas, hide image */
  #vzxWebGLCanvas {
    display: block !important;
  }
  .vzx-static-image {
    display: none !important;
  }
}
/* ===== END ADAPTIVE SOLUTION ===== */
/* SIMPLE RESPONSIVE METABALL CONTAINER */
.vzx-webgl-container {
  position: relative;
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
  filter: drop-shadow(0 20px 40px rgba(139, 92, 246, 0.3)) drop-shadow(0 10px 20px rgba(139, 92, 246, 0.2));
  margin: 0 auto;
  aspect-ratio: 1;
  /* Desktop */
  max-width: 500px;
  height: 500px;
}

#vzxWebGLCanvas,
.vzx-static-image {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

/* Large Desktop */
@media (min-width: 1400px) {
  .vzx-webgl-container {
    max-width: 550px;
    height: 550px;
  }
}
/* Laptop */
@media (max-width: 1200px) {
  .vzx-webgl-container {
    max-width: 450px;
    height: 450px;
  }
}
/* Tablet Portrait */
@media (max-width: 1024px) {
  .vzx-webgl-container {
    max-width: 400px;
    height: 400px;
  }
}
/* Tablet Landscape / Small Laptop */
@media (max-width: 1024px) and (orientation: landscape) {
  .vzx-webgl-container {
    max-width: 350px;
    height: 350px;
    max-height: 60vh;
  }
}
/* Mobile Portrait */
@media (max-width: 768px) {
  .vzx-webgl-container {
    max-width: 320px;
    height: 320px;
    max-height: 50vh;
  }
}
/* Mobile Landscape */
@media (max-width: 768px) and (orientation: landscape) {
  .vzx-webgl-container {
    max-width: 280px;
    height: 280px;
    max-height: 70vh;
  }
}
/* Small Mobile */
@media (max-width: 480px) {
  .vzx-webgl-container {
    max-width: 280px;
    height: 280px;
    max-height: 45vh;
  }
}
/* Very Small Mobile Landscape */
@media (max-width: 480px) and (orientation: landscape) {
  .vzx-webgl-container {
    max-width: 250px;
    height: 250px;
    max-height: 60vh;
  }
}
.vornyx-contact-section {
  --vornyx-primary-purple: #8b5cf6;
  --vornyx-dark-purple: #6d28d9;
  --vornyx-text-primary: #ffffff;
  --vornyx-text-secondary: #a1a1aa;
  --vornyx-input-bg: rgba(255, 255, 255, 0.05);
  --vornyx-input-border: rgba(255, 255, 255, 0.1);
  --vornyx-card-bg: rgba(255, 255, 255, 0.08);
  --vornyx-backdrop-blur: blur(20px);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 25%, #6d28d9 50%, #8b5cf6 75%, #a855f7 100%);
  min-height: 100vh;
  color: var(--vornyx-text-primary);
  position: relative;
  overflow: hidden;
}

.vornyx-contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.vornyx-contact-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  z-index: 10;
}

.vornyx-contact-logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--vornyx-text-primary);
}

.vornyx-contact-auth-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.vornyx-contact-auth-text {
  color: var(--vornyx-text-secondary);
  font-size: 0.9rem;
}

.vornyx-contact-help-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--vornyx-text-primary);
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.vornyx-contact-help-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--vornyx-primary-purple);
}

.vornyx-contact-left-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  max-width: 500px;
}

.vornyx-contact-form-container h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, var(--vornyx-text-primary) 0%, var(--vornyx-primary-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vornyx-contact-form-group {
  margin-bottom: 1.5rem;
}

.vornyx-contact-form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--vornyx-text-secondary);
}

.vornyx-contact-input-wrapper {
  position: relative;
}

.vornyx-contact-form-input {
  width: 100%;
  background: var(--vornyx-input-bg);
  border: 1px solid var(--vornyx-input-border);
  border-radius: 0.75rem;
  padding: 1rem 1rem 1rem 3rem;
  color: var(--vornyx-text-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
  -webkit-backdrop-filter: var(--vornyx-backdrop-blur);
          backdrop-filter: var(--vornyx-backdrop-blur);
  box-sizing: border-box;
}

.vornyx-contact-form-input:focus {
  outline: none;
  border-color: var(--vornyx-primary-purple);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
}

.vornyx-contact-form-input::-moz-placeholder {
  color: var(--vornyx-text-secondary);
}

.vornyx-contact-form-input::placeholder {
  color: var(--vornyx-text-secondary);
}

.vornyx-contact-input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--vornyx-text-secondary);
  font-size: 1.1rem;
}

.vornyx-contact-form-input.vornyx-contact-textarea {
  resize: vertical;
  min-height: 120px;
  padding-top: 1rem;
}

.vornyx-contact-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--vornyx-primary-purple) 0%, var(--vornyx-dark-purple) 100%);
  border: none;
  border-radius: 0.75rem;
  padding: 1rem;
  color: var(--vornyx-text-primary);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.vornyx-contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(139, 92, 246, 0.4);
}

.vornyx-contact-divider {
  display: flex;
  align-items: center;
  margin: 2rem 0;
  color: var(--vornyx-text-secondary);
  font-size: 0.9rem;
}

.vornyx-contact-divider::before,
.vornyx-contact-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.vornyx-contact-divider span {
  margin: 0 1rem;
}

.vornyx-contact-social-btn {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 1rem;
  color: var(--vornyx-text-primary);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  -webkit-backdrop-filter: var(--vornyx-backdrop-blur);
          backdrop-filter: var(--vornyx-backdrop-blur);
}

.vornyx-contact-social-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--vornyx-primary-purple);
}

.vornyx-contact-right-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 2rem;
}

.vornyx-contact-hero-content {
  text-align: center;
  margin-bottom: 4rem;
}

.vornyx-contact-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.vornyx-contact-hero-title .vornyx-contact-highlight {
  color: var(--vornyx-primary-purple);
  text-decoration: underline;
  text-decoration-color: var(--vornyx-primary-purple);
  text-decoration-thickness: 4px;
  text-underline-offset: 8px;
}

.vornyx-contact-hero-title .vornyx-contact-italic {
  font-style: italic;
  font-weight: 400;
}

.vornyx-contact-social-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}

.vornyx-contact-social-card {
  background: var(--vornyx-card-bg);
  -webkit-backdrop-filter: var(--vornyx-backdrop-blur);
          backdrop-filter: var(--vornyx-backdrop-blur);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 1.5rem;
  min-width: 200px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.vornyx-contact-social-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
  border-color: var(--vornyx-primary-purple);
}

.vornyx-contact-social-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.vornyx-contact-social-card:hover::before {
  left: 100%;
}

.vornyx-contact-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.vornyx-contact-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--vornyx-text-primary);
}

.vornyx-contact-card-icon {
  font-size: 1.5rem;
  padding: 0.5rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
}

.vornyx-contact-card-stats {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.vornyx-contact-card-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--vornyx-text-primary);
}

.vornyx-contact-card-change {
  font-size: 0.9rem;
  font-weight: 500;
}

.vornyx-contact-card-change.vornyx-contact-positive {
  color: #10b981;
}

.vornyx-contact-card-change.vornyx-contact-negative {
  color: #ef4444;
}

.vornyx-contact-floating-animation {
  animation: vornyx-contact-floating 3s ease-in-out infinite;
}

.vornyx-contact-floating-animation:nth-child(2) {
  animation-delay: 1s;
}

@keyframes vornyx-contact-floating {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}
@media (max-width: 1024px) {
  .vornyx-contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .vornyx-contact-hero-title {
    font-size: 2.5rem;
  }
  .vornyx-contact-social-cards {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
}
@media (max-width: 640px) {
  .vornyx-contact-container {
    padding: 0 1rem;
  }
  .vornyx-contact-left-section {
    padding: 1rem;
  }
  .vornyx-contact-hero-title {
    font-size: 2rem;
  }
  .vornyx-contact-social-cards {
    flex-direction: column;
  }
}
.vornyx-contact-section {
  margin-top: 74px;
  --vornyx-primary-purple: #8b5cf6;
  --vornyx-dark-purple: #6d28d9;
  --vornyx-text-primary: #ffffff;
  --vornyx-text-secondary: #a1a1aa;
  --vornyx-input-bg: rgba(255, 255, 255, 0.05);
  --vornyx-input-border: rgba(255, 255, 255, 0.1);
  --vornyx-card-bg: rgba(255, 255, 255, 0.08);
  --vornyx-backdrop-blur: blur(20px);
  --section-padding: clamp(1rem, 4vw, 2rem);
  --content-gap: clamp(1.5rem, 4vw, 3rem);
  --form-gap: clamp(1rem, 2.5vw, 1.5rem);
  --h1-size: clamp(1.875rem, 5vw, 2.5rem);
  --h2-size: clamp(2rem, 6vw, 3.5rem);
  --body-size: clamp(0.875rem, 2vw, 1rem);
  --small-size: clamp(0.75rem, 1.5vw, 0.9rem);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 25%, #6d28d9 50%, #8b5cf6 75%, #a855f7 100%);
  min-height: 100vh;
  color: var(--vornyx-text-primary);
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .vornyx-contact-section {
    background-attachment: scroll;
    min-height: 100svh;
  }
}

.vornyx-contact-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--section-padding);
  z-index: 100;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
@media (max-width: 640px) {
  .vornyx-contact-header {
    padding: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
  }
}
@media (max-width: 480px) {
  .vornyx-contact-header {
    flex-direction: column;
    text-align: center;
    padding: 0.75rem;
  }
}

.vornyx-contact-logo {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 600;
  color: var(--vornyx-text-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}
.vornyx-contact-logo:hover {
  color: var(--vornyx-primary-purple);
}

.vornyx-contact-auth-buttons {
  display: flex;
  gap: clamp(0.5rem, 2vw, 1rem);
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .vornyx-contact-auth-buttons {
    justify-content: center;
    width: 100%;
  }
}

.vornyx-contact-auth-text {
  color: var(--vornyx-text-secondary);
  font-size: var(--small-size);
}
@media (max-width: 640px) {
  .vornyx-contact-auth-text {
    display: none;
  }
}

.vornyx-contact-help-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--vornyx-text-primary);
  padding: clamp(0.5rem, 1.5vw, 0.75rem) clamp(1rem, 3vw, 1.5rem);
  border-radius: 0.5rem;
  font-size: var(--small-size);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  min-height: 44px;
  min-width: 44px;
}
.vornyx-contact-help-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--vornyx-primary-purple);
  transform: translateY(-1px);
}
.vornyx-contact-help-btn:active {
  transform: translateY(0);
}
@media (max-width: 480px) {
  .vornyx-contact-help-btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }
}

.vornyx-contact-container {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 100vh;
  max-width: 1400px;
  margin: 0 auto;
  padding: calc(80px + var(--section-padding)) var(--section-padding) var(--section-padding);
  gap: var(--content-gap);
}
@media (min-width: 1024px) {
  .vornyx-contact-container {
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    padding: var(--section-padding);
    align-items: center;
    gap: 4rem;
  }
}
@media (min-width: 1400px) {
  .vornyx-contact-container {
    gap: 6rem;
  }
}
@media (max-width: 1023px) and (orientation: landscape) {
  .vornyx-contact-container {
    padding-top: calc(60px + 1rem);
    gap: 2rem;
  }
}

.vornyx-contact-left-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .vornyx-contact-left-section {
    margin: 0;
    max-width: none;
  }
}

.vornyx-contact-form-container {
  width: 100%;
}
.vornyx-contact-form-container h1 {
  font-size: var(--h1-size);
  font-weight: 700;
  margin-bottom: clamp(1.5rem, 4vw, 2rem);
  background: linear-gradient(135deg, var(--vornyx-text-primary) 0%, var(--vornyx-primary-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  text-align: center;
}
@media (min-width: 1024px) {
  .vornyx-contact-form-container h1 {
    text-align: left;
  }
}

.vornyx-contact-form-group {
  margin-bottom: var(--form-gap);
  width: 100%;
}
.vornyx-contact-form-group label {
  display: block;
  margin-bottom: clamp(0.375rem, 1vw, 0.5rem);
  font-size: var(--small-size);
  font-weight: 500;
  color: var(--vornyx-text-secondary);
}

.vornyx-contact-input-wrapper {
  position: relative;
  width: 100%;
}

.vornyx-contact-form-input {
  width: 100%;
  background: var(--vornyx-input-bg);
  border: 1px solid var(--vornyx-input-border);
  border-radius: clamp(0.5rem, 2vw, 0.75rem);
  padding: clamp(0.875rem, 2.5vw, 1rem) clamp(0.875rem, 2.5vw, 1rem) clamp(0.875rem, 2.5vw, 1rem) clamp(2.5rem, 6vw, 3rem);
  color: var(--vornyx-text-primary);
  font-size: var(--body-size);
  transition: all 0.3s ease;
  -webkit-backdrop-filter: var(--vornyx-backdrop-blur);
          backdrop-filter: var(--vornyx-backdrop-blur);
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  min-height: 48px;
}
.vornyx-contact-form-input:focus {
  outline: none;
  border-color: var(--vornyx-primary-purple);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
  transform: translateY(-1px);
}
.vornyx-contact-form-input::-moz-placeholder {
  color: var(--vornyx-text-secondary);
  opacity: 0.8;
}
.vornyx-contact-form-input::placeholder {
  color: var(--vornyx-text-secondary);
  opacity: 0.8;
}
@supports (-webkit-touch-callout: none) {
  .vornyx-contact-form-input[type=email] {
    -webkit-text-size-adjust: 100%;
  }
}
@media (max-width: 480px) {
  .vornyx-contact-form-input {
    font-size: 16px;
    padding: 1rem 1rem 1rem 2.75rem;
  }
}

.vornyx-contact-input-icon {
  position: absolute;
  left: clamp(0.75rem, 2vw, 1rem);
  top: 50%;
  transform: translateY(-50%);
  color: var(--vornyx-text-secondary);
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  pointer-events: none;
  transition: color 0.3s ease;
}
.vornyx-contact-input-wrapper:focus-within .vornyx-contact-input-icon {
  color: var(--vornyx-primary-purple);
}

.vornyx-contact-form-input.vornyx-contact-textarea {
  resize: vertical;
  min-height: clamp(100px, 20vw, 120px);
  max-height: 200px;
  padding-top: clamp(0.875rem, 2.5vw, 1rem);
  line-height: 1.5;
}
@media (max-width: 480px) {
  .vornyx-contact-form-input.vornyx-contact-textarea {
    min-height: 120px;
    padding-top: 1rem;
  }
}

.vornyx-contact-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--vornyx-primary-purple) 0%, var(--vornyx-dark-purple) 100%);
  border: none;
  border-radius: clamp(0.5rem, 2vw, 0.75rem);
  padding: clamp(0.875rem, 2.5vw, 1rem);
  color: var(--vornyx-text-primary);
  font-size: var(--body-size);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: clamp(1rem, 2.5vw, 1.5rem);
  position: relative;
  overflow: hidden;
  min-height: 48px;
}
.vornyx-contact-submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}
.vornyx-contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(139, 92, 246, 0.4);
}
.vornyx-contact-submit-btn:hover::before {
  left: 100%;
}
.vornyx-contact-submit-btn:active {
  transform: translateY(0);
}
@media (max-width: 480px) {
  .vornyx-contact-submit-btn {
    padding: 1rem;
    font-size: 1rem;
    margin-top: 1.5rem;
  }
}
.vornyx-contact-submit-btn.loading {
  pointer-events: none;
  opacity: 0.8;
}
.vornyx-contact-submit-btn.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.vornyx-contact-divider {
  display: flex;
  align-items: center;
  margin: clamp(1.5rem, 4vw, 2rem) 0;
  color: var(--vornyx-text-secondary);
  font-size: var(--small-size);
}
.vornyx-contact-divider::before, .vornyx-contact-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}
.vornyx-contact-divider span {
  margin: 0 clamp(0.75rem, 2vw, 1rem);
  white-space: nowrap;
}

.vornyx-contact-social-btn {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: clamp(0.5rem, 2vw, 0.75rem);
  padding: clamp(0.875rem, 2.5vw, 1rem);
  color: var(--vornyx-text-primary);
  font-size: var(--body-size);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.375rem, 1vw, 0.5rem);
  -webkit-backdrop-filter: var(--vornyx-backdrop-blur);
          backdrop-filter: var(--vornyx-backdrop-blur);
  min-height: 48px;
}
.vornyx-contact-social-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--vornyx-primary-purple);
  transform: translateY(-1px);
}
.vornyx-contact-social-btn:active {
  transform: translateY(0);
}
@media (max-width: 480px) {
  .vornyx-contact-social-btn {
    padding: 1rem;
    font-size: 1rem;
  }
}

.vornyx-contact-right-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
}
@media (min-width: 1024px) {
  .vornyx-contact-right-section {
    padding: var(--section-padding);
  }
}

.vornyx-contact-hero-content {
  margin-bottom: clamp(2rem, 6vw, 4rem);
  width: 100%;
}

.vornyx-contact-hero-title {
  font-size: var(--h2-size);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
}
.vornyx-contact-hero-title .vornyx-contact-highlight {
  color: var(--vornyx-primary-purple);
  text-decoration: underline;
  text-decoration-color: var(--vornyx-primary-purple);
  text-decoration-thickness: clamp(2px, 0.5vw, 4px);
  text-underline-offset: clamp(4px, 1vw, 8px);
}
.vornyx-contact-hero-title .vornyx-contact-italic {
  font-style: italic;
  font-weight: 400;
}

.vornyx-contact-social-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 3vw, 1.5rem);
  width: 100%;
  max-width: 400px;
}
@media (min-width: 640px) {
  .vornyx-contact-social-cards {
    grid-template-columns: 1fr 1fr;
    max-width: 500px;
  }
}
@media (min-width: 1024px) {
  .vornyx-contact-social-cards {
    grid-template-columns: 1fr;
    max-width: 300px;
  }
}
@media (min-width: 1200px) {
  .vornyx-contact-social-cards {
    grid-template-columns: 1fr 1fr;
    max-width: 400px;
  }
}

.vornyx-contact-social-card {
  background: var(--vornyx-card-bg);
  -webkit-backdrop-filter: var(--vornyx-backdrop-blur);
          backdrop-filter: var(--vornyx-backdrop-blur);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: clamp(1rem, 3vw, 1.5rem);
  padding: clamp(1rem, 3vw, 1.5rem);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  min-height: 100px;
}
.vornyx-contact-social-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}
.vornyx-contact-social-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
  border-color: var(--vornyx-primary-purple);
}
.vornyx-contact-social-card:hover::before {
  left: 100%;
}
.vornyx-contact-social-card:active {
  transform: translateY(-2px) scale(1.01);
}
@media (max-width: 480px) {
  .vornyx-contact-social-card {
    padding: 1.25rem;
  }
  .vornyx-contact-social-card:hover {
    transform: translateY(-2px);
  }
}

.vornyx-contact-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
}

.vornyx-contact-card-title {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  font-weight: 600;
  color: var(--vornyx-text-primary);
}

.vornyx-contact-card-icon {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  padding: clamp(0.375rem, 1vw, 0.5rem);
  border-radius: clamp(0.5rem, 1.5vw, 0.75rem);
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}
.vornyx-contact-social-card:hover .vornyx-contact-card-icon {
  background: rgba(139, 92, 246, 0.2);
  transform: scale(1.1);
}

.vornyx-contact-card-stats {
  display: flex;
  flex-direction: column;
  gap: clamp(0.25rem, 1vw, 0.5rem);
}

.vornyx-contact-card-value {
  font-size: clamp(1.5rem, 4vw, 1.8rem);
  font-weight: 700;
  color: var(--vornyx-text-primary);
}

.vornyx-contact-card-change {
  font-size: var(--small-size);
  font-weight: 500;
}
.vornyx-contact-card-change.vornyx-contact-positive {
  color: #10b981;
}
.vornyx-contact-card-change.vornyx-contact-negative {
  color: #ef4444;
}

.vornyx-contact-floating-animation {
  animation: vornyx-contact-floating 3s ease-in-out infinite;
}
.vornyx-contact-floating-animation:nth-child(2) {
  animation-delay: 1s;
}

@keyframes vornyx-contact-floating {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .vornyx-contact-floating-animation {
    animation: none;
  }
}
@media (prefers-contrast: high) {
  .vornyx-contact-section {
    --vornyx-input-border: rgba(255, 255, 255, 0.3);
    --vornyx-card-bg: rgba(0, 0, 0, 0.8);
  }
  .vornyx-contact-form-input {
    border-width: 2px;
  }
}
@media print {
  .vornyx-contact-section {
    background: white !important;
    color: black !important;
    min-height: auto;
  }
  .vornyx-contact-container {
    display: block;
    padding: 1rem;
  }
  .vornyx-contact-social-cards,
  .vornyx-contact-header {
    display: none;
  }
}
.vornyx-contact-form-input:focus,
.vornyx-contact-submit-btn:focus,
.vornyx-contact-social-btn:focus,
.vornyx-contact-help-btn:focus {
  outline: 2px solid var(--vornyx-primary-purple);
  outline-offset: 2px;
}

.vornyx-contact-section.loading .vornyx-contact-form-input,
.vornyx-contact-section.loading .vornyx-contact-submit-btn,
.vornyx-contact-section.loading .vornyx-contact-social-btn {
  pointer-events: none;
  opacity: 0.6;
}

.vornyx-newsletter {
  min-height: 100vh;
  background: #18171a;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 5vw 8vw 0 8vw;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  position: relative;
  overflow: hidden;
}
.vornyx-newsletter__content {
  margin-bottom: 5vh;
  position: relative;
  z-index: 2;
}
.vornyx-newsletter__content h1 {
  font-size: 4.7rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin: 0;
}
.vornyx-newsletter__content h1 .pink {
  background: linear-gradient(90deg, #ff4c8b 30%, #ffa360 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.vornyx-newsletter__content h1 .purple {
  background: linear-gradient(90deg, #ae60ff 40%, #8338ec 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.vornyx-newsletter__dot {
  display: inline-block;
  margin-top: 2rem;
  margin-left: 0.5rem;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ae60ff 0%, #ff4c8b 70%, #ffa360 100%);
  box-shadow: 0 2px 16px 0 rgba(174, 96, 255, 0.11);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% {
    transform: scale(1);
  }
  60% {
    transform: scale(1.2);
  }
}
.vornyx-newsletter__form {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: none;
  padding: 0;
  min-width: 370px;
  max-width: 100%;
  z-index: 2;
}
.vornyx-newsletter__form .vornyx-newsletter__subtitle {
  color: #fff;
  font-size: 1.23rem;
  margin-bottom: 1.3rem;
  font-weight: 500;
}
.vornyx-newsletter__form .vornyx-newsletter__label {
  font-size: 1.02rem;
  color: #aaa;
  margin-bottom: 0.3rem;
  margin-top: 0.2rem;
  letter-spacing: 0.03em;
  font-weight: 400;
}
.vornyx-newsletter__form .vornyx-newsletter__inputgroup {
  display: flex;
  align-items: stretch;
  width: 100%;
}
.vornyx-newsletter__form .vornyx-newsletter__input {
  padding: 1.1rem 1.3rem;
  width: 220px;
  border-radius: 2.2rem 0 0 2.2rem;
  border: none;
  outline: none;
  font-size: 1.18rem;
  background: rgba(35, 33, 40, 0.9098039216);
  color: #f6f6f6;
  letter-spacing: 0.01em;
  border-bottom: 2px solid #512b81;
  transition: border-color 0.2s, box-shadow 0.18s;
  box-shadow: 0 1px 10px 0 rgba(174, 96, 255, 0.0666666667) inset;
}
.vornyx-newsletter__form .vornyx-newsletter__input:focus {
  border-bottom: 2px solid #ae60ff;
  box-shadow: 0 1px 18px 0 rgba(174, 96, 255, 0.2666666667) inset;
}
.vornyx-newsletter__form .vornyx-newsletter__button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.1rem 2.4rem;
  border-radius: 0 2.2rem 2.2rem 0;
  border: none;
  outline: none;
  font-size: 1.17rem;
  font-weight: 600;
  margin-left: -0.85rem;
  background: linear-gradient(92deg, #9333ea 2%, #ae60ff 45%, #ff4c8b 98%);
  color: #fff;
  box-shadow: 0 4px 22px 0 rgba(174, 96, 255, 0.1450980392), 0 1px 18px rgba(255, 255, 255, 0.0784313725) inset;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.17s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.15s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.15s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.vornyx-newsletter__form .vornyx-newsletter__button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.5333333333) 0%, transparent 80%);
  opacity: 0.18;
  pointer-events: none;
  z-index: 1;
}
.vornyx-newsletter__form .vornyx-newsletter__button:hover, .vornyx-newsletter__form .vornyx-newsletter__button:focus {
  background: linear-gradient(98deg, #ae60ff 2%, #9333ea 98%);
  box-shadow: 0 8px 32px 0 rgba(174, 96, 255, 0.2588235294), 0 2px 20px rgba(255, 255, 255, 0.0666666667) inset;
  transform: translateY(-2px) scale(1.02);
}
.vornyx-newsletter__form .vornyx-newsletter__button .arrow {
  margin-left: 0.3rem;
  stroke: #fff;
  opacity: 0.82;
  transition: transform 0.16s;
}
.vornyx-newsletter__form .vornyx-newsletter__button:hover .arrow {
  transform: translateX(5px) scale(1.05);
}
.vornyx-newsletter__msg {
  font-size: 1.08rem;
  margin-top: 0.85rem;
  color: #ae60ff;
  min-height: 1.5em;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.18s;
}
.vornyx-newsletter__brand {
  position: absolute;
  left: 7vw;
  bottom: 2.5vw;
  color: #ae60ff;
  font-size: 1.08rem;
  font-weight: 600;
  opacity: 0.95;
  letter-spacing: 0.09em;
  z-index: 1;
}

@media (max-width: 900px) {
  .vornyx-newsletter {
    padding: 4vw 3vw 0 3vw;
  }
  .vornyx-newsletter__form {
    min-width: unset;
    width: 100%;
  }
  .vornyx-newsletter__form .vornyx-newsletter__input {
    width: 55vw;
    min-width: 140px;
  }
  .vornyx-newsletter__brand {
    font-size: 1rem;
    left: 5vw;
  }
}
@media (max-width: 600px) {
  .vornyx-newsletter {
    padding: 2vw 2vw 0 2vw;
  }
  .vornyx-newsletter__content h1 {
    font-size: 2.2rem;
  }
  .vornyx-newsletter__dot {
    width: 16px;
    height: 16px;
  }
  .vornyx-newsletter__form .vornyx-newsletter__input {
    font-size: 0.98rem;
  }
  .vornyx-newsletter__form .vornyx-newsletter__button {
    font-size: 1.02rem;
  }
  .vornyx-newsletter__brand {
    font-size: 0.86rem;
    left: 3vw;
  }
}
.vornyx-newsletter {
  --primary-purple: #ae60ff;
  --secondary-purple: #9333ea;
  --accent-purple: #8338ec;
  --pink-primary: #ff4c8b;
  --orange-accent: #ffa360;
  --bg-primary: #18171a;
  --bg-secondary: #232128e8;
  --text-primary: #ffffff;
  --text-secondary: #f6f6f6;
  --text-muted: #aaa;
  --border-accent: #512b81;
  --section-padding: clamp(1rem, 3vw, 5vw);
  --content-spacing: clamp(1.5rem, 3vh, 3vh);
  --form-gap: clamp(0.75rem, 2vw, 1.3rem);
  --element-gap: clamp(0.25rem, 1vw, 0.5rem);
  --h1-size: clamp(2.5rem, 8vw, 4.7rem);
  --subtitle-size: clamp(1rem, 3vw, 1.23rem);
  --body-size: clamp(1rem, 3vw, 1.25rem);
  --label-size: clamp(0.85rem, 2vw, 1.02rem);
  --button-size: clamp(1rem, 2.5vw, 1.2rem);
  --brand-size: clamp(0.9rem, 2.5vw, 1.08rem);
  min-height: 80vh;
  min-height: 80svh;
  background: var(--bg-primary);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(1rem, 3vw, 3rem) var(--section-padding);
  font-family: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .vornyx-newsletter {
    background-attachment: scroll;
    min-height: 70vh;
    padding: clamp(1.5rem, 4vw, 2rem) var(--section-padding);
  }
}
@media (min-width: 768px) {
  .vornyx-newsletter {
    align-items: stretch;
    padding-top: clamp(2rem, 4vh, 4vh);
    padding-bottom: clamp(2rem, 4vh, 4vh);
  }
}
@media (min-width: 1024px) {
  .vornyx-newsletter {
    flex-direction: row;
    align-items: center;
    min-height: 85vh;
  }
}
.vornyx-newsletter__content {
  margin-bottom: var(--content-spacing);
  position: relative;
  z-index: 2;
  width: 100%;
}
@media (min-width: 1024px) {
  .vornyx-newsletter__content {
    flex: 1;
    margin-bottom: 0;
    margin-right: clamp(2rem, 6vw, 6rem);
  }
}
.vornyx-newsletter__content h1 {
  font-size: var(--h1-size);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.vornyx-newsletter__content h1 .pink {
  background: linear-gradient(90deg, var(--pink-primary) 30%, var(--orange-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
.vornyx-newsletter__content h1 .purple {
  background: linear-gradient(90deg, var(--primary-purple) 40%, var(--accent-purple) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
.vornyx-newsletter__dot {
  display: inline-block;
  margin-top: clamp(1rem, 3vw, 2rem);
  margin-left: clamp(0.25rem, 1vw, 0.5rem);
  width: clamp(18px, 4vw, 26px);
  height: clamp(18px, 4vw, 26px);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--pink-primary) 70%, var(--orange-accent) 100%);
  box-shadow: 0 2px 16px 0 rgba(174, 96, 255, 0.11);
  animation: pulse-dot 2s infinite;
}
@media (prefers-reduced-motion: reduce) {
  .vornyx-newsletter__dot {
    animation: none;
  }
}
@keyframes pulse-dot {
  0%, 100% {
    transform: scale(1);
  }
  60% {
    transform: scale(1.2);
  }
}
.vornyx-newsletter__form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: none;
  padding: 0;
  width: 100%;
  max-width: 500px;
  z-index: 2;
}
@media (min-width: 768px) {
  .vornyx-newsletter__form {
    margin-left: auto;
    min-width: 400px;
  }
}
@media (min-width: 1024px) {
  .vornyx-newsletter__form {
    flex: 0 0 auto;
    margin-left: 0;
  }
}
.vornyx-newsletter__form .vornyx-newsletter__subtitle {
  color: var(--text-primary);
  font-size: var(--subtitle-size);
  margin-bottom: var(--form-gap);
  font-weight: 500;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
}
.vornyx-newsletter__form .vornyx-newsletter__label {
  font-size: var(--label-size);
  color: var(--text-muted);
  margin-bottom: clamp(0.25rem, 1vw, 0.3rem);
  margin-top: clamp(0.125rem, 0.5vw, 0.2rem);
  letter-spacing: 0.03em;
  font-weight: 400;
}
.vornyx-newsletter__form .vornyx-newsletter__inputgroup {
  display: flex;
  align-items: stretch;
  width: 100%;
  border-radius: clamp(1.5rem, 4vw, 2.2rem);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
@media (max-width: 480px) {
  .vornyx-newsletter__form .vornyx-newsletter__inputgroup {
    flex-direction: column;
    border-radius: clamp(1rem, 3vw, 1.5rem);
  }
}
.vornyx-newsletter__form .vornyx-newsletter__input {
  padding: clamp(1.25rem, 4vw, 1.5rem) clamp(1.25rem, 4vw, 1.75rem);
  flex: 1;
  min-width: 0;
  border-radius: clamp(1.5rem, 4vw, 2.2rem) 0 0 clamp(1.5rem, 4vw, 2.2rem);
  border: none;
  outline: none;
  font-size: var(--body-size);
  background: var(--bg-secondary);
  color: var(--text-secondary);
  letter-spacing: 0.01em;
  border-bottom: 2px solid var(--border-accent);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 10px 0 rgba(174, 96, 255, 0.11) inset;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  min-height: 56px;
}
.vornyx-newsletter__form .vornyx-newsletter__input::-moz-placeholder {
  color: var(--text-muted);
  opacity: 0.8;
  font-size: var(--body-size);
}
.vornyx-newsletter__form .vornyx-newsletter__input::placeholder {
  color: var(--text-muted);
  opacity: 0.8;
  font-size: var(--body-size);
}
.vornyx-newsletter__form .vornyx-newsletter__input:focus {
  border-bottom: 2px solid var(--primary-purple);
  box-shadow: 0 1px 18px 0 rgba(174, 96, 255, 0.44) inset;
  transform: translateY(-1px);
}
@media (max-width: 480px) {
  .vornyx-newsletter__form .vornyx-newsletter__input {
    border-radius: clamp(1rem, 3vw, 1.5rem) clamp(1rem, 3vw, 1.5rem) 0 0;
    font-size: 16px;
    border-bottom: none;
    border-right: 2px solid var(--border-accent);
    padding: clamp(1.25rem, 4vw, 1.5rem);
    min-height: 56px;
  }
  .vornyx-newsletter__form .vornyx-newsletter__input:focus {
    border-right: 2px solid var(--primary-purple);
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .vornyx-newsletter__form .vornyx-newsletter__input {
    min-width: 250px;
    padding: 1.3rem 1.5rem;
  }
}
.vornyx-newsletter__form .vornyx-newsletter__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--element-gap);
  padding: clamp(1.25rem, 4vw, 1.5rem) clamp(1.75rem, 5vw, 2.5rem);
  border-radius: 0 clamp(1.5rem, 4vw, 2.2rem) clamp(1.5rem, 4vw, 2.2rem) 0;
  border: none;
  outline: none;
  font-size: var(--button-size);
  font-weight: 600;
  background: linear-gradient(92deg, var(--secondary-purple) 2%, var(--primary-purple) 45%, var(--pink-primary) 98%);
  color: var(--text-primary);
  box-shadow: 0 4px 22px 0 rgba(174, 96, 255, 0.25), 0 1px 18px rgba(255, 255, 255, 0.14) inset;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  min-height: 56px;
  min-width: 56px;
}
.vornyx-newsletter__form .vornyx-newsletter__button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.8) 0%, transparent 80%);
  opacity: 0.18;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.3s ease;
}
.vornyx-newsletter__form .vornyx-newsletter__button:hover, .vornyx-newsletter__form .vornyx-newsletter__button:focus-visible {
  background: linear-gradient(98deg, var(--primary-purple) 2%, var(--secondary-purple) 98%);
  box-shadow: 0 8px 32px 0 rgba(174, 96, 255, 0.42), 0 2px 20px rgba(255, 255, 255, 0.1) inset;
  transform: translateY(-2px) scale(1.02);
}
.vornyx-newsletter__form .vornyx-newsletter__button:hover::before, .vornyx-newsletter__form .vornyx-newsletter__button:focus-visible::before {
  opacity: 0.3;
}
.vornyx-newsletter__form .vornyx-newsletter__button:hover .arrow, .vornyx-newsletter__form .vornyx-newsletter__button:focus-visible .arrow {
  transform: translateX(5px) scale(1.05);
}
.vornyx-newsletter__form .vornyx-newsletter__button:active {
  transform: translateY(0) scale(0.98);
}
@media (max-width: 480px) {
  .vornyx-newsletter__form .vornyx-newsletter__button {
    border-radius: 0 0 clamp(1rem, 3vw, 1.5rem) clamp(1rem, 3vw, 1.5rem);
    margin-left: 0;
    padding: clamp(1.25rem, 4vw, 1.5rem);
    min-height: 56px;
  }
  .vornyx-newsletter__form .vornyx-newsletter__button:hover {
    transform: translateY(-1px);
  }
}
@media (min-width: 481px) {
  .vornyx-newsletter__form .vornyx-newsletter__button {
    margin-left: clamp(-0.5rem, -2vw, -0.85rem);
  }
}
.vornyx-newsletter__form .vornyx-newsletter__button .arrow {
  margin-left: clamp(0.125rem, 0.5vw, 0.3rem);
  stroke: var(--text-primary);
  opacity: 0.82;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  width: clamp(20px, 4vw, 24px);
  height: clamp(20px, 4vw, 24px);
}
.vornyx-newsletter__form .vornyx-newsletter__button:focus-visible {
  outline: 2px solid var(--primary-purple);
  outline-offset: 2px;
}
.vornyx-newsletter__msg {
  font-size: clamp(0.9rem, 2.5vw, 1.08rem);
  margin-top: clamp(0.5rem, 2vw, 0.85rem);
  color: var(--primary-purple);
  min-height: 1.5em;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all 0.3s ease;
  line-height: 1.4;
}
.vornyx-newsletter__msg.success {
  color: #10b981;
}
.vornyx-newsletter__msg.error {
  color: #ef4444;
}
.vornyx-newsletter__brand {
  position: absolute;
  left: var(--section-padding);
  bottom: clamp(0.5rem, 2vw, 1.5rem);
  color: var(--primary-purple);
  font-size: var(--brand-size);
  font-weight: 600;
  opacity: 0.95;
  letter-spacing: 0.09em;
  z-index: 1;
}
@media (max-width: 640px) {
  .vornyx-newsletter__brand {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: clamp(1rem, 3vw, 1.5rem);
    text-align: center;
    width: 100%;
  }
}

@media (max-width: 320px) {
  .vornyx-newsletter__content h1 {
    font-size: 2rem;
    line-height: 1.2;
  }
  .vornyx-newsletter__form .vornyx-newsletter__inputgroup {
    border-radius: 1rem;
  }
  .vornyx-newsletter__form .vornyx-newsletter__input,
  .vornyx-newsletter__form .vornyx-newsletter__button {
    padding: 0.875rem 1rem;
    font-size: 0.9rem;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .vornyx-newsletter {
    padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1.5rem, 4vw, 3rem);
  }
  .vornyx-newsletter__form {
    max-width: 100%;
  }
  .vornyx-newsletter__form .vornyx-newsletter__input {
    flex: 1;
    min-width: 220px;
  }
}
@media (min-width: 769px) and (max-width: 1023px) {
  .vornyx-newsletter__content {
    margin-bottom: clamp(2rem, 4vh, 3rem);
  }
  .vornyx-newsletter__form {
    align-self: center;
    max-width: 500px;
  }
}
@media (min-width: 1024px) {
  .vornyx-newsletter__content {
    max-width: 50%;
  }
  .vornyx-newsletter__form {
    max-width: 400px;
  }
}
@media (min-width: 1400px) {
  .vornyx-newsletter {
    padding: clamp(4rem, 8vw, 8rem);
  }
  .vornyx-newsletter__content h1 {
    font-size: 5.5rem;
  }
  .vornyx-newsletter__form {
    max-width: 500px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .vornyx-newsletter__dot {
    animation: none;
  }
  .vornyx-newsletter__form .vornyx-newsletter__button {
    transition: none;
  }
  .vornyx-newsletter__form .vornyx-newsletter__button:hover {
    transform: none;
  }
}
@media (prefers-contrast: high) {
  .vornyx-newsletter {
    --border-accent: #ffffff;
  }
  .vornyx-newsletter__form .vornyx-newsletter__input {
    border-bottom-width: 3px;
  }
}
@media print {
  .vornyx-newsletter {
    background: white !important;
    color: black !important;
    min-height: auto;
    padding: 1rem;
  }
  .vornyx-newsletter__content h1 .pink, .vornyx-newsletter__content h1 .purple {
    -webkit-text-fill-color: black;
    background: none;
  }
  .vornyx-newsletter__dot, .vornyx-newsletter__form {
    display: none;
  }
}
@media (pointer: coarse) {
  .vornyx-newsletter__form .vornyx-newsletter__input,
  .vornyx-newsletter__form .vornyx-newsletter__button {
    min-height: 48px;
  }
}
body {
  background: radial-gradient(circle at 50% 0%, #1f1c2c, #090c1d 60%, #000000 100%);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #eee9ff;
}

.vornyx-work {
  padding: 6rem 2rem 4rem 2rem;
  max-width: 120rem;
  margin: 0 auto;
}
.vornyx-work h1.work_title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  text-align: center;
  letter-spacing: 0.03em;
  background: linear-gradient(90deg, #a259f7 40%, #c797ff 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.vornyx-work .work__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
  gap: 3.5rem 2rem;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 96rem;
}
.vornyx-work .work__list .work__item {
  background: rgba(32, 29, 51, 0.92);
  border: 1.5px solid rgba(161, 89, 247, 0.16);
  border-radius: 2.5rem;
  padding: 3.2rem 2.5rem 2.4rem 2.5rem;
  box-shadow: 0 4px 28px 0 rgba(80, 50, 160, 0.1);
  min-height: 22rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1.2s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
  animation-delay: calc(var(--i, 1) * 0.1s);
  transition: box-shadow 0.2s, border 0.2s, background 0.4s, transform 0.3s;
}
.vornyx-work .work__list .work__item:nth-child(1) {
  --i: 1;
}
.vornyx-work .work__list .work__item:nth-child(2) {
  --i: 2;
}
.vornyx-work .work__list .work__item:nth-child(3) {
  --i: 3;
}
.vornyx-work .work__list .work__item:nth-child(4) {
  --i: 4;
}
.vornyx-work .work__list .work__item:nth-child(5) {
  --i: 5;
}
.vornyx-work .work__list .work__item:nth-child(6) {
  --i: 6;
}
.vornyx-work .work__list .work__item h2 {
  font-size: 2.2rem;
  font-weight: 600;
  color: #c797ff;
  margin-bottom: 1.1rem;
  letter-spacing: 0.02em;
}
.vornyx-work .work__list .work__item p {
  font-size: 1.7rem;
  color: #e4def7;
  line-height: 1.6;
  margin: 0;
}
.vornyx-work .work__list .work__item:hover {
  box-shadow: 0 4px 48px 0 #c797ff;
  border-color: #c797ff;
  background: linear-gradient(110deg, rgba(32, 29, 51, 0.92) 80%, #2a1845 120%);
  transition: box-shadow 0.28s, border 0.2s, background 0.4s;
  transform: translateY(-8px) scale(1.03);
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  60% {
    opacity: 0.9;
    transform: translateY(-6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.vornyx-features {
  max-width: 80rem;
  margin: 0 auto;
  padding: 5rem 2rem 7rem 2rem;
}
.vornyx-features .features__ai {
  background: rgba(37, 23, 59, 0.85);
  border-radius: 2.2rem;
  box-shadow: 0 2px 24px 0 rgba(140, 80, 240, 0.14);
  padding: 3.2rem 2.4rem 2.7rem 2.4rem;
  margin-top: 3.5rem;
  position: relative;
  overflow: hidden;
}
.vornyx-features .features__ai::before {
  content: "";
  position: absolute;
  width: 19rem;
  height: 19rem;
  background: radial-gradient(circle, rgba(199, 151, 255, 0.5333333333) 0%, transparent 70%);
  left: 65%;
  top: -8rem;
  z-index: 0;
  filter: blur(12px);
  animation: floatorb 5.5s ease-in-out infinite alternate;
}
@keyframes floatorb {
  0% {
    left: 60%;
    top: -8rem;
  }
  100% {
    left: 40%;
    top: -2rem;
  }
}
.vornyx-features .features__ai .features__ai--heading {
  font-size: 3.3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: linear-gradient(90deg, #a259f7 25%, #c797ff 75%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 2.3rem;
  z-index: 1;
  position: relative;
}
.vornyx-features .features__ai .features__ai--reason {
  font-size: 1.85rem;
  color: #eee9ff;
  z-index: 1;
  position: relative;
  line-height: 1.65;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.vornyx-features .features__ai .features__ai--reason::first-line {
  font-weight: 500;
  color: #c797ff;
}
.vornyx-features .features__ai .features__ai--reason strong, .vornyx-features .features__ai .features__ai--reason b {
  color: #c797ff;
}

@media (max-width: 700px) {
  .vornyx-work .work__list {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }
  .vornyx-work h1.work_title {
    font-size: 2.6rem;
  }
  .vornyx-features .features__ai--heading {
    font-size: 2.1rem;
  }
  .vornyx-features .features__ai {
    padding: 2rem 1rem;
  }
}
.footer {
  background: radial-gradient(circle at 50% 0%, #1f1c2c, #090c1d 60%, #000 100%);
  padding: 6.4rem 120px 3.2rem;
  color: #b0b3c2;
  font-size: 1.4rem;
}
.footer .footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4.8rem;
  max-width: 120rem;
  margin: 0 auto;
  padding-bottom: 4rem;
}
@media (max-width: 900px) {
  .footer .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3.2rem;
  }
}
@media (max-width: 600px) {
  .footer .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.footer .footer__col ul {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0 0;
}
.footer .footer__col li {
  margin-bottom: 1.2rem;
  color: #b0b3c2;
  font-weight: 400;
  font-size: 1.4rem;
  transition: color 0.2s;
}
.footer .footer__col a {
  color: #b0b3c2;
  text-decoration: none;
  transition: color 0.18s;
}
.footer .footer__col a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer .footer__title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
  line-height: 1.3;
}
.footer .footer__title--company {
  color: #ff4747;
}
.footer .footer__title--services {
  color: #ffb44c;
}
.footer .footer__title--social {
  color: #37a5ff;
}
.footer .footer__title--contact {
  color: #be4cff;
}
.footer .footer__bottom {
  text-align: center;
  color: #848699;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  margin-top: 1.6rem;
  padding-top: 2.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer__social--link li a img {
  width: 32px;
  height: 32px;
}

:root {
  --vornyx-purple: #a259f7;
  --vornyx-accent: #c797ff;
  --vornyx-pink: #ff4747;
  --vornyx-orange: #ffb44c;
  --vornyx-blue: #37a5ff;
  --vornyx-violet: #be4cff;
  --vornyx-dark-bg: radial-gradient(circle at 50% 0%, #1f1c2c, #090c1d 60%, #000000 100%);
  --vornyx-card-bg: rgba(32, 29, 51, 0.92);
  --vornyx-border: rgba(161, 89, 247, 0.16);
  --text-primary: #eee9ff;
  --text-secondary: #e4def7;
  --text-muted: #b0b3c2;
  --text-faded: #848699;
  --section-padding: clamp(1rem, 4vw, 6.4rem);
  --content-padding: clamp(1rem, 3vw, 2rem);
  --grid-gap: clamp(1.5rem, 4vw, 4.8rem);
  --element-gap: clamp(0.75rem, 2vw, 1.6rem);
  --card-padding: clamp(1.5rem, 4vw, 3.2rem);
  --h1-size: clamp(2rem, 6vw, 4rem);
  --h2-size: clamp(1.5rem, 4vw, 2.2rem);
  --h3-size: clamp(1.25rem, 3vw, 1.6rem);
  --body-large: clamp(1.125rem, 3vw, 1.85rem);
  --body-size: clamp(1rem, 2.5vw, 1.4rem);
  --body-small: clamp(0.875rem, 2vw, 1.2rem);
  --features-heading: clamp(2rem, 5vw, 3.3rem);
}

body {
  background: var(--vornyx-dark-bg);
  font-family: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  color: var(--text-primary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.vornyx-work {
  padding: var(--section-padding) var(--content-padding);
  max-width: 120rem;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .vornyx-work {
    padding: clamp(3rem, 8vw, 4rem) var(--content-padding);
  }
}
.vornyx-work h1.work_title {
  font-size: var(--h1-size);
  font-weight: 700;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
  letter-spacing: 0.03em;
  background: linear-gradient(90deg, var(--vornyx-purple) 40%, var(--vornyx-accent) 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
}
.vornyx-work .work__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(1.5rem, 4vw, 3.5rem) clamp(1rem, 3vw, 2rem);
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 96rem;
}
@media (max-width: 640px) {
  .vornyx-work .work__list {
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 4vw, 2.2rem);
  }
}
@media (min-width: 641px) and (max-width: 1024px) {
  .vornyx-work .work__list {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}
.vornyx-work .work__list .work__item {
  background: var(--vornyx-card-bg);
  border: 1.5px solid var(--vornyx-border);
  border-radius: clamp(1.5rem, 4vw, 2.5rem);
  padding: var(--card-padding) clamp(1.5rem, 4vw, 2.5rem) clamp(1.5rem, 3vw, 2.4rem);
  box-shadow: 0 4px 28px 0 rgba(80, 50, 160, 0.1);
  min-height: clamp(18rem, 25vw, 22rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1.2s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
  animation-delay: calc(var(--i, 1) * 0.1s);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
@media (max-width: 768px) {
  .vornyx-work .work__list .work__item {
    min-height: clamp(16rem, 20vw, 18rem);
    padding: clamp(1.5rem, 5vw, 2rem);
  }
}
.vornyx-work .work__list .work__item:nth-child(1) {
  --i: 1;
}
.vornyx-work .work__list .work__item:nth-child(2) {
  --i: 2;
}
.vornyx-work .work__list .work__item:nth-child(3) {
  --i: 3;
}
.vornyx-work .work__list .work__item:nth-child(4) {
  --i: 4;
}
.vornyx-work .work__list .work__item:nth-child(5) {
  --i: 5;
}
.vornyx-work .work__list .work__item:nth-child(6) {
  --i: 6;
}
.vornyx-work .work__list .work__item h2 {
  font-size: var(--h2-size);
  font-weight: 600;
  color: var(--vornyx-accent);
  margin-bottom: clamp(0.75rem, 2vw, 1.1rem);
  letter-spacing: 0.02em;
  line-height: 1.3;
}
.vornyx-work .work__list .work__item p {
  font-size: clamp(1rem, 3vw, 1.7rem);
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}
.vornyx-work .work__list .work__item:hover {
  box-shadow: 0 8px 48px 0 rgba(199, 151, 255, 0.3);
  border-color: var(--vornyx-accent);
  background: linear-gradient(110deg, var(--vornyx-card-bg) 80%, #2a1845 120%);
  transform: translateY(-8px) scale(1.03);
}
@media (max-width: 768px) {
  .vornyx-work .work__list .work__item:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 6px 32px 0 rgba(199, 151, 255, 0.2);
  }
}
@media (max-width: 768px) {
  .vornyx-work .work__list .work__item:active {
    transform: translateY(-2px) scale(0.98);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  60% {
    opacity: 0.9;
    transform: translateY(-6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.vornyx-features {
  max-width: 80rem;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) var(--content-padding) clamp(4rem, 8vw, 7rem);
}
.vornyx-features .features__ai {
  background: rgba(37, 23, 59, 0.85);
  border-radius: clamp(1.5rem, 4vw, 2.2rem);
  box-shadow: 0 2px 24px 0 rgba(140, 80, 240, 0.14);
  padding: var(--card-padding) clamp(1.5rem, 4vw, 2.4rem) clamp(1.5rem, 4vw, 2.7rem);
  margin-top: clamp(2rem, 5vw, 3.5rem);
  position: relative;
  overflow: hidden;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(199, 151, 255, 0.1);
}
.vornyx-features .features__ai::before {
  content: "";
  position: absolute;
  width: clamp(12rem, 20vw, 19rem);
  height: clamp(12rem, 20vw, 19rem);
  background: radial-gradient(circle, rgba(199, 151, 255, 0.5) 0%, transparent 70%);
  left: 65%;
  top: clamp(-5rem, -8vw, -8rem);
  z-index: 0;
  filter: blur(12px);
  animation: floatorb 5.5s ease-in-out infinite alternate;
}
@media (max-width: 768px) {
  .vornyx-features .features__ai::before {
    width: clamp(8rem, 15vw, 12rem);
    height: clamp(8rem, 15vw, 12rem);
    top: clamp(-3rem, -5vw, -5rem);
  }
}
@keyframes floatorb {
  0% {
    left: 60%;
    top: clamp(-5rem, -8vw, -8rem);
  }
  100% {
    left: 40%;
    top: clamp(-1rem, -2vw, -2rem);
  }
}
@media (prefers-reduced-motion: reduce) {
  .vornyx-features .features__ai::before {
    animation: none;
    left: 50%;
    top: clamp(-3rem, -5vw, -5rem);
  }
}
.vornyx-features .features__ai .features__ai--heading {
  font-size: var(--features-heading);
  font-weight: 700;
  letter-spacing: 0.05em;
  background: linear-gradient(90deg, var(--vornyx-purple) 25%, var(--vornyx-accent) 75%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: clamp(1.5rem, 3vw, 2.3rem);
  z-index: 1;
  position: relative;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
}
.vornyx-features .features__ai .features__ai--reason {
  font-size: var(--body-large);
  color: var(--text-primary);
  z-index: 1;
  position: relative;
  line-height: 1.65;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1.2rem);
}
.vornyx-features .features__ai .features__ai--reason strong, .vornyx-features .features__ai .features__ai--reason b {
  color: var(--vornyx-accent);
  font-weight: 600;
}
.vornyx-features .features__ai .features__ai--reason::first-line {
  font-weight: 500;
  color: var(--vornyx-accent);
}

.footer {
  background: var(--vornyx-dark-bg);
  padding: var(--section-padding) var(--content-padding) clamp(2rem, 4vw, 3.2rem);
  color: var(--text-muted);
  font-size: var(--body-size);
}
@media (max-width: 768px) {
  .footer {
    padding: clamp(3rem, 8vw, 4rem) var(--content-padding) clamp(1.5rem, 4vw, 2rem);
  }
}
.footer .footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4.8rem);
  max-width: 120rem;
  margin: 0 auto;
  padding-bottom: clamp(2rem, 5vw, 4rem);
}
@media (min-width: 640px) {
  .footer .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(2rem, 4vw, 3.2rem);
  }
}
@media (min-width: 1024px) {
  .footer .footer__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--grid-gap);
  }
}
.footer .footer__col ul {
  list-style: none;
  padding: 0;
  margin: var(--element-gap) 0 0 0;
}
.footer .footer__col li {
  margin-bottom: clamp(0.75rem, 2vw, 1.2rem);
  color: var(--text-muted);
  font-weight: 400;
  font-size: var(--body-size);
  transition: color 0.3s ease;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .footer .footer__col li {
    margin-bottom: 1rem;
  }
  .footer .footer__col li a {
    display: block;
    padding: 0.25rem 0;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
}
.footer .footer__col a {
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.footer .footer__col a:hover, .footer .footer__col a:focus {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: var(--vornyx-accent);
  text-underline-offset: 4px;
}
.footer .footer__col a:focus-visible {
  outline: 2px solid var(--vornyx-accent);
  outline-offset: 2px;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .footer .footer__col a:active {
    color: var(--vornyx-accent);
    transform: scale(0.98);
  }
}
.footer .footer__title {
  font-size: var(--h3-size);
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  letter-spacing: 0.01em;
  line-height: 1.3;
}
.footer .footer__title--company {
  color: var(--vornyx-pink);
  text-shadow: 0 2px 8px rgba(255, 71, 71, 0.3);
}
.footer .footer__title--services {
  color: var(--vornyx-orange);
  text-shadow: 0 2px 8px rgba(255, 180, 76, 0.3);
}
.footer .footer__title--social {
  color: var(--vornyx-blue);
  text-shadow: 0 2px 8px rgba(55, 165, 255, 0.3);
}
.footer .footer__title--contact {
  color: var(--vornyx-violet);
  text-shadow: 0 2px 8px rgba(190, 76, 255, 0.3);
}
.footer .footer__bottom {
  text-align: center;
  color: var(--text-faded);
  font-size: var(--body-small);
  letter-spacing: 0.02em;
  margin-top: var(--element-gap);
  padding-top: clamp(1.5rem, 3vw, 2.4rem);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .footer__social--link {
    margin: 0px 0px 0px 10px !important;
  }
}
.footer__social--link li a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer__social--link li a img {
  width: clamp(28px, 5vw, 32px);
  height: clamp(28px, 5vw, 32px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  filter: grayscale(0.3) opacity(0.8);
  border-radius: 6px;
}
.footer__social--link li a:hover, .footer__social--link li a:focus {
  transform: translateY(-2px);
}
.footer__social--link li a:hover img, .footer__social--link li a:focus img {
  filter: grayscale(0) opacity(1);
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(199, 151, 255, 0.3);
}
.footer__social--link li a:active {
  transform: translateY(0);
}
@media (max-width: 768px) {
  .footer__social--link li a {
    padding: 0.5rem;
    margin: -0.5rem;
    border-radius: 8px;
    min-height: 48px;
  }
  .footer__social--link li a:hover {
    background: rgba(199, 151, 255, 0.1);
  }
  .footer__social--link li a img {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 374px) {
  .vornyx-work .work__list .work__item {
    min-height: 14rem;
    padding: 1.25rem;
  }
  .vornyx-features .features__ai {
    padding: 1.5rem 1rem;
  }
}
@media (min-width: 375px) and (max-width: 640px) {
  .vornyx-work h1.work_title {
    font-size: clamp(2.5rem, 7vw, 3rem);
  }
  .footer__grid {
    gap: 2.5rem;
  }
}
@media (min-width: 641px) and (max-width: 1024px) {
  .vornyx-work {
    padding: clamp(4rem, 6vw, 5rem) clamp(2rem, 4vw, 3rem);
  }
  .vornyx-features {
    padding: clamp(3rem, 5vw, 4rem) clamp(2rem, 4vw, 3rem) clamp(4rem, 6vw, 5rem);
  }
}
@media (min-width: 1025px) {
  .footer {
    padding: 6.4rem clamp(2rem, 8vw, 12rem) 3.2rem;
  }
  .vornyx-work .work__list {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
}
@media (min-width: 1400px) {
  .vornyx-work {
    padding: 8rem 2rem 6rem;
  }
  .vornyx-work h1.work_title {
    font-size: 4.5rem;
  }
  .vornyx-features .features__ai--heading {
    font-size: 3.8rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .vornyx-work .work__list .work__item {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .vornyx-work .work__list .work__item:hover {
    transform: none;
  }
  .vornyx-features .features__ai::before {
    animation: none;
  }
}
@media (prefers-contrast: high) {
  :root {
    --vornyx-border: rgba(255, 255, 255, 0.3);
    --vornyx-card-bg: rgba(0, 0, 0, 0.8);
  }
  .vornyx-work .work__list .work__item {
    border-width: 2px;
  }
  .footer a:focus-visible {
    outline-width: 3px;
  }
}
@media print {
  .vornyx-work,
  .vornyx-features,
  .footer {
    background: white !important;
    color: black !important;
    padding: 1rem;
  }
  .vornyx-work h1.work_title,
  .vornyx-features .features__ai--heading {
    -webkit-text-fill-color: black;
    background: none;
  }
  .vornyx-work .work__list .work__item {
    -moz-column-break-inside: avoid;
         break-inside: avoid;
    border: 1px solid #ccc;
  }
  .footer__social--link {
    display: none;
  }
}
.vornyx-work .work__list .work__item:focus-visible,
.vornyx-features .features__ai:focus-visible {
  outline: 2px solid var(--vornyx-accent);
  outline-offset: 4px;
}/*# sourceMappingURL=main.css.map */