.panel {
  background: var(--card);
  border: 1px solid var(--stroke);
  padding: 1.8rem;
  border-radius: 24px;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
:root {
  color-scheme: dark;
  font-family: 'Space Grotesk', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --bg: #060619;
  --bg-soft: #0f1028;
  --accent: #6e5bff;
  --accent-2: #2cf4b6;
  --cyan: #00b7ff;
  --violet: #a15df8;
  --text: #e7f3ff;
  --muted: #a2b3d9;
  --card: rgba(15, 16, 40, 0.85);
  --stroke: rgba(255, 255, 255, 0.08);
  --glow: 0 0 20px rgba(108, 91, 255, 0.4);
}

:root {
  color-scheme: dark;
  font-family: 'Space Grotesk', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --bg: #050512;
  --bg-soft: #0f1028;
  --accent: #7450ff;
  --accent-2: #2cf4b6;
  --cyan: #00b7ff;
  --violet: #a15df8;
  --text: #e7f3ff;
  --muted: #a2b3d9;
  --card: rgba(15, 16, 40, 0.85);
  --stroke: rgba(255, 255, 255, 0.08);
  --glow: 0 0 30px rgba(108, 91, 255, 0.35);
}

html {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, 
              transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top right, #0c0d2e, var(--bg));
  color: var(--text);
  overflow-x: hidden;
  animation: pageFadeIn 0.6s ease-in;
  cursor: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='8' fill='%237450ff' opacity='0.3'/%3E%3Ccircle cx='12' cy='12' r='4' fill='%237450ff'/%3E%3Ccircle cx='12' cy='12' r='1.5' fill='%23e7f3ff'/%3E%3C/svg%3E") 12 12, auto;
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

body.loading {
  overflow: hidden;
}

#main-content {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s ease-in, visibility 0.6s ease-in;
}

#main-content.main-content-hidden {
  opacity: 0;
  visibility: hidden;
}

#main-content.main-content-visible {
  opacity: 1;
  visibility: visible;
}

.blur-field {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
}

.blur-field .blur {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.6;
  animation: drift 18s infinite ease-in-out alternate;
}

.blur-one {
  top: 5%;
  left: 5%;
  background: rgba(162, 82, 255, 0.8);
}

.blur-two {
  bottom: 15%;
  right: 10%;
  background: rgba(0, 157, 255, 0.75);
  animation-delay: 3s;
}

.blur-three {
  top: 35%;
  right: 30%;
  background: rgba(35, 255, 209, 0.6);
  animation-delay: 6s;
}

canvas#particles {
  position: fixed;
  inset: 0;
  z-index: -2;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(55, 95, 255, 0.15), transparent 45%);
  pointer-events: none;
  z-index: -1;
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, #0a0b1f, #050512);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.6s ease-out, visibility 0.6s ease-out;
  cursor: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='8' fill='%237450ff' opacity='0.3'/%3E%3Ccircle cx='12' cy='12' r='4' fill='%237450ff'/%3E%3Ccircle cx='12' cy='12' r='1.5' fill='%23e7f3ff'/%3E%3C/svg%3E") 12 12, auto;
}

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

.loading-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.loading-cube {
  width: 80px;
  height: 80px;
  position: relative;
  transform-style: preserve-3d;
  animation: loadingCubeSpin 2s infinite linear;
}

.loading-cube-face {
  position: absolute;
  width: 80px;
  height: 80px;
  background: linear-gradient(140deg, rgba(120, 0, 255, 0.9), rgba(15, 53, 123, 0.95));
  border: 2px solid rgba(221, 196, 255, 0.5);
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(128, 61, 255, 0.6);
}

.loading-cube-face:nth-child(1) {
  transform: translateZ(40px);
}
.loading-cube-face:nth-child(2) {
  transform: rotateY(180deg) translateZ(40px);
}
.loading-cube-face:nth-child(3) {
  transform: rotateY(90deg) translateZ(40px);
}
.loading-cube-face:nth-child(4) {
  transform: rotateY(-90deg) translateZ(40px);
}
.loading-cube-face:nth-child(5) {
  transform: rotateX(90deg) translateZ(40px);
}
.loading-cube-face:nth-child(6) {
  transform: rotateX(-90deg) translateZ(40px);
}

.loading-text {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, #7450ff, #00b7ff, #a15df8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: loadingTextPulse 2s ease-in-out infinite;
}

.loading-text span {
  background: linear-gradient(135deg, #a15df8, #7450ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.loading-bar {
  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}

.loading-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 999px;
  width: 0%;
  animation: loadingProgress 2s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(116, 80, 255, 0.6);
}

@keyframes loadingCubeSpin {
  from {
    transform: rotateX(0deg) rotateY(0deg);
  }
  to {
    transform: rotateX(360deg) rotateY(360deg);
  }
}

@keyframes loadingTextPulse {
  0%, 100% {
    transform: scale(1);
    filter: brightness(1);
  }
  50% {
    transform: scale(1.05);
    filter: brightness(1.2);
  }
}

@keyframes loadingProgress {
  0% {
    width: 0%;
    transform: translateX(0);
  }
  50% {
    width: 70%;
    transform: translateX(0);
  }
  100% {
    width: 100%;
    transform: translateX(0);
  }
}

/* Smooth Animations */
.fade-in {
  animation: fadeIn 0.8s ease-out forwards;
  opacity: 0;
}

.slide-in-up {
  animation: slideInUp 0.8s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

.slide-in-left {
  animation: slideInLeft 0.8s ease-out forwards;
  opacity: 0;
  transform: translateX(-30px);
}

.slide-in-right {
  animation: slideInRight 0.8s ease-out forwards;
  opacity: 0;
  transform: translateX(30px);
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

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

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Stagger animations for children */
.stagger-children > * {
  opacity: 0;
  animation: fadeIn 0.6s ease-out forwards;
}

.stagger-children > *:nth-child(1) { animation-delay: 0.1s; }
.stagger-children > *:nth-child(2) { animation-delay: 0.2s; }
.stagger-children > *:nth-child(3) { animation-delay: 0.3s; }
.stagger-children > *:nth-child(4) { animation-delay: 0.4s; }
.stagger-children > *:nth-child(5) { animation-delay: 0.5s; }
.stagger-children > *:nth-child(6) { animation-delay: 0.6s; }
.stagger-children > *:nth-child(7) { animation-delay: 0.7s; }
.stagger-children > *:nth-child(8) { animation-delay: 0.8s; }

/* Enhanced transitions for all interactive elements */
a, button, .btn-link {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

a {
  cursor: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='8' fill='%237450ff' opacity='0.3'/%3E%3Ccircle cx='12' cy='12' r='4' fill='%237450ff'/%3E%3Ccircle cx='12' cy='12' r='1.5' fill='%23e7f3ff'/%3E%3C/svg%3E") 12 12, pointer;
}

a:hover, button:hover, .btn-link:hover {
  transform: translateY(-2px);
}

a:active, button:active, .btn-link:active {
  transform: translateY(0);
  transition: all 0.1s ease !important;
}

/* Page content fade-in */
main {
  animation: contentFadeIn 0.6s ease-out;
}

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

/* Smooth card transitions */
.grid article,
.pricing-cards article,
.selector-card,
.pricing-card {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.grid article:hover,
.pricing-cards article:hover,
.pricing-card:hover {
  transform: translateY(-8px) scale(1.02);
}

/* Smooth navigation transitions */
nav a {
  position: relative;
  transition: color 0.3s ease, transform 0.3s ease;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

nav a:hover::after {
  width: 100%;
}

nav a:hover {
  transform: translateY(-2px);
}

/* Smooth dropdown transitions */
.dropdown-menu {
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0.3s ease !important;
}

.dropdown-menu a {
  transition: background-color 0.2s ease, transform 0.2s ease, padding-left 0.2s ease;
  cursor: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='8' fill='%232cf4b6' opacity='0.4'/%3E%3Ccircle cx='12' cy='12' r='4' fill='%232cf4b6'/%3E%3Ccircle cx='12' cy='12' r='1.5' fill='%23e7f3ff'/%3E%3C/svg%3E") 12 12, pointer;
}

.dropdown-menu a:hover {
  transform: translateX(4px);
  padding-left: 1.2rem;
}

.dropdown-disabled {
  color: rgba(162, 179, 217, 0.6);
  padding: 0.3rem 0.4rem;
  border-radius: 10px;
  display: block;
  cursor: not-allowed;
  opacity: 1;
  user-select: none;
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem clamp(1rem, 6vw, 6rem);
  backdrop-filter: blur(16px);
  background: rgba(6, 6, 25, 0.7);
  border-bottom: 1px solid var(--stroke);
  z-index: 10;
}

.logo {
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, #7450ff, #00b7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo span {
  background: linear-gradient(135deg, #a15df8, #7450ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
  align-items: center;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-block;
}

nav a:hover {
  color: var(--text);
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 16px;
}

.nav-trigger {
  border: none;
  background: transparent;
  color: var(--muted);
  font: inherit;
  cursor: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='8' fill='%232cf4b6' opacity='0.4'/%3E%3Ccircle cx='12' cy='12' r='4' fill='%232cf4b6'/%3E%3Ccircle cx='12' cy='12' r='1.5' fill='%23e7f3ff'/%3E%3C/svg%3E") 12 12, pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: color 0.2s ease;
  padding: 0;
  margin: 0;
  line-height: 1;
}

.nav-trigger::after {
  content: '▾';
  font-size: 0.7rem;
  transform: translateY(-1px);
}

.nav-dropdown:hover .nav-trigger,
.nav-trigger:focus-visible {
  color: var(--text);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.6rem);
  left: 50%;
  transform: translate(-50%, -10px);
  background: rgba(6, 6, 25, 0.95);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 1rem;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(16px);
}

.dropdown-category {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.category-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0;
}

.category-hosting {
  color: #3b82f6;
}

.category-vps {
  color: rgba(34, 197, 94, 1);
}

.dropdown-items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
  color: var(--text);
  cursor: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='8' fill='%232cf4b6' opacity='0.4'/%3E%3Ccircle cx='12' cy='12' r='4' fill='%232cf4b6'/%3E%3Ccircle cx='12' cy='12' r='1.5' fill='%23e7f3ff'/%3E%3C/svg%3E") 12 12, pointer;
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.dropdown-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--text);
}

.dropdown-item-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
}

.dropdown-item-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.2;
}

.dropdown-item-subtitle {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.2;
}

.dropdown-menu .dropdown-disabled {
  color: rgba(162, 179, 217, 0.6);
  padding: 0.25rem 0.4rem;
  border-radius: 10px;
  display: block;
  cursor: not-allowed;
  opacity: 1;
  user-select: none;
  pointer-events: none;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

button,
.btn-link,
.cart-link {
  border: none;
  border-radius: 999px;
  padding: 0.65rem 1.4rem;
  font-family: inherit;
  font-weight: 600;
  cursor: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='8' fill='%232cf4b6' opacity='0.4'/%3E%3Ccircle cx='12' cy='12' r='4' fill='%232cf4b6'/%3E%3Ccircle cx='12' cy='12' r='1.5' fill='%23e7f3ff'/%3E%3C/svg%3E") 12 12, pointer;
  background: transparent;
  color: var(--text);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.3s ease !important;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

button.primary,
.btn-link.primary,
.cart-link.primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #05030e;
  box-shadow: var(--glow);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

button.primary:hover,
.btn-link.primary:hover,
.cart-link.primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(108, 91, 255, 0.5);
}

button.accent {
  background: var(--violet);
}

button.ghost,
.cart-link {
  border: 1px solid var(--stroke);
  color: var(--text);
}

button.ghost.dark {
  background: rgba(255, 255, 255, 0.05);
}

button:hover {
  transform: translateY(-2px);
}

.profile-chip {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, rgba(116, 80, 255, 0.9), rgba(0, 183, 255, 0.9));
  font-weight: 700;
  color: #05030e;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  text-transform: uppercase;
}

.profile-avatar-large {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(116, 80, 255, 0.9), rgba(44, 244, 182, 0.9));
  font-weight: 700;
  font-size: 3rem;
  color: #05030e;
  letter-spacing: 0.02em;
  box-shadow: 0 20px 60px rgba(116, 80, 255, 0.4);
  text-transform: uppercase;
  border: 3px solid rgba(116, 80, 255, 0.3);
  position: relative;
}

.profile-avatar-large::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(116, 80, 255, 0.3), rgba(44, 244, 182, 0.3));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.profile-avatar-large:hover::before {
  opacity: 1;
}

.profile-avatar-small {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(116, 80, 255, 0.9), rgba(44, 244, 182, 0.9));
  font-weight: 700;
  font-size: 1.1rem;
  color: #05030e;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 12px rgba(116, 80, 255, 0.3);
  text-transform: uppercase;
  border: 2px solid rgba(116, 80, 255, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.profile-avatar-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
}

.profile-avatar-small span {
  position: relative;
  z-index: 1;
}

.profile-avatar-small:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(116, 80, 255, 0.5);
}

.profile-avatar-header {
  display: flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
}

.user-menu-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.user-menu-wrapper::after {
  content: '';
  position: absolute;
  top: 100%;
  right: 0;
  width: 200px;
  height: 15px;
  background: transparent;
  z-index: 999;
}

.user-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: rgba(6, 6, 25, 0.95);
  border: 1px solid var(--stroke);
  border-radius: 12px;
  padding: 0.5rem;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(16px);
  z-index: 1000;
  visibility: hidden;
}

.user-menu-wrapper:hover .user-dropdown-menu,
.user-menu-wrapper:focus-within .user-dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
}

.user-dropdown-menu:hover {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
}

.user-dropdown-header {
  padding: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 1px solid var(--stroke);
  margin-bottom: 0.25rem;
  pointer-events: none;
  user-select: none;
}

.user-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 8px;
  text-decoration: none;
  color: var(--text);
  font-size: 0.9rem;
  transition: background 0.2s ease, color 0.2s ease;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  width: 100%;
  text-align: left;
}

.user-dropdown-item:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent-2);
}

.dropdown-icon-small {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: currentColor;
}

.cart-link span {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  margin-left: 0.5rem;
  font-size: 0.8rem;
}

main {
  padding: clamp(2rem, 6vw, 6rem);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  padding: 3rem 0 4rem;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 7vw, 4.8rem);
  margin: 0.5rem 0 1rem;
}

.hero-copy .lead {
  color: var(--muted);
  line-height: 1.6;
  max-width: 38ch;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin: 2rem 0 1rem;
  flex-wrap: wrap;
}

.eyebrow {
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--muted);
}

.btn-link {
  padding-inline: 1.6rem;
}

.deeplink {
  color: var(--cyan);
  text-decoration: none;
  font-weight: 600;
}

.hero-visual {
  position: relative;
  min-height: 320px;
  display: grid;
  place-items: center;
}

.chip-wrapper {
  width: 280px;
  height: 280px;
  perspective: 1200px;
  perspective-origin: 50% 50%;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.7));
  position: relative;
  margin: 0 auto;
}

.chip-wrapper::after {
  content: '';
  position: absolute;
  inset: -30px;
  border-radius: 8px;
  background: radial-gradient(ellipse, rgba(116, 15, 255, 0.55), rgba(17, 15, 45, 0));
  filter: blur(30px);
  z-index: -1;
  animation: auraPulse 6s ease-in-out infinite;
}

.cpu-chip {
  width: 200px;
  height: 200px;
  position: relative;
  transform-style: preserve-3d;
  transform: translate3d(0, 0, 0) rotateX(-15deg) rotateY(-15deg);
  animation: chip-float 6s ease-in-out infinite;
  margin: 40px auto;
}

.chip-top {
  width: 200px;
  height: 200px;
  background: 
    linear-gradient(135deg, rgba(116, 15, 255, 0.95), rgba(15, 53, 123, 0.98)),
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2), transparent 60%);
  border: 3px solid rgba(116, 227, 255, 0.6);
  border-radius: 8px;
  position: relative;
  transform: translateZ(20px);
  box-shadow:
    inset 0 0 40px rgba(0, 0, 0, 0.6),
    inset 0 0 15px rgba(255, 255, 255, 0.3),
    0 0 30px rgba(128, 61, 255, 0.7),
    0 10px 40px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.chip-logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  text-shadow: 0 0 10px rgba(116, 227, 255, 0.8);
}

.chip-text {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #74e3ff, #a15df8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.15em;
  margin-bottom: 4px;
}

.chip-number {
  font-size: 4rem;
  font-weight: 900;
  background: linear-gradient(135deg, #7450ff, #00b7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  text-shadow: 0 0 20px rgba(116, 227, 255, 0.6);
}

.chip-details {
  font-size: 0.9rem;
  color: rgba(116, 227, 255, 0.8);
  letter-spacing: 0.2em;
  margin-top: 8px;
  font-weight: 600;
}

.chip-pins {
  position: absolute;
  width: 200px;
  height: 20px;
  bottom: -20px;
  left: 0;
  transform: translateZ(-10px);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pin-row {
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, 
    transparent 2%,
    rgba(116, 227, 255, 0.4) 2%,
    rgba(116, 227, 255, 0.4) 98%,
    transparent 98%
  );
  background-size: 8px 100%;
  background-repeat: repeat-x;
  box-shadow: 0 0 8px rgba(116, 227, 255, 0.3);
}

.chip-glow {
  position: absolute;
  width: 240px;
  height: 240px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateZ(-30px);
  background: radial-gradient(ellipse, rgba(116, 15, 255, 0.4), transparent 70%);
  filter: blur(20px);
  animation: chip-glow-pulse 3s ease-in-out infinite;
  z-index: -1;
}

@keyframes chip-float {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotateX(-15deg) rotateY(-15deg);
  }
  50% {
    transform: translate3d(0, -10px, 0) rotateX(-12deg) rotateY(-18deg);
  }
}

@keyframes chip-glow-pulse {
  0%, 100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) translateZ(-30px) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) translateZ(-30px) scale(1.1);
  }
}

.orbital {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  animation: orbit 10s infinite linear;
}


@keyframes facePulse {
  0% {
    box-shadow:
      inset 0 0 40px rgba(0, 0, 0, 0.6),
      inset 0 0 15px rgba(255, 255, 255, 0.4),
      0 0 30px rgba(128, 61, 255, 0.7),
      inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  }
  100% {
    box-shadow:
      inset 0 0 40px rgba(0, 0, 0, 0.6),
      inset 0 0 15px rgba(255, 255, 255, 0.5),
      0 0 50px rgba(128, 61, 255, 1),
      inset 0 0 0 1px rgba(255, 255, 255, 0.3);
  }
}

@keyframes orbit {
  from {
    transform: rotateZ(0deg);
  }
  to {
    transform: rotateZ(360deg);
  }
}

@keyframes drift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(60px, -80px, 0) scale(1.15);
  }
}

@keyframes auraPulse {
  0% {
    opacity: 0.6;
    transform: scale(0.9);
  }
  100% {
    opacity: 0.9;
    transform: scale(1.05);
  }
}

@keyframes facePulse {
  0% {
    box-shadow:
      inset 0 0 40px rgba(0, 0, 0, 0.55),
      inset 0 0 10px rgba(255, 255, 255, 0.35),
      0 0 20px rgba(165, 87, 255, 0.45);
  }
  100% {
    box-shadow:
      inset 0 0 55px rgba(0, 0, 0, 0.35),
      inset 0 0 18px rgba(255, 255, 255, 0.45),
      0 0 35px rgba(100, 201, 255, 0.7);
  }
}

.offerings,
.host-selector,
.pricing,
.portal-links {
  margin-top: 4rem;
}

.offerings h2,
.host-selector h2,
.pricing h2,
.portal-links h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 0.5rem;
}

.section-lead {
  color: var(--muted);
  max-width: 50ch;
}

.grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.grid article,
.pricing-cards article {
  background: var(--card);
  border: 1px solid var(--stroke);
  padding: 1.8rem;
  border-radius: 24px;
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.grid article::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(110, 91, 255, 0.25), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.grid article:hover::before {
  opacity: 1;
}

.grid h3,
.pricing h3 {
  margin-top: 0;
}

.grid ul,
.pricing ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  color: var(--muted);
  display: grid;
  gap: 0.4rem;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.pricing .price {
  font-size: 2.5rem;
  margin: 0.2rem 0 1rem;
}

.pricing .price span {
  font-size: 1rem;
  color: var(--muted);
}

.pricing article.featured,
.pricing-card.featured {
  border-color: rgba(108, 91, 255, 0.8);
  box-shadow: var(--glow);
  transform: translateY(-6px);
}

.host-selector .selector-grid,
.portal-links .portal-card-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.selector-card {
  perspective: 1200px;
  position: relative;
  height: 320px;
}

.selector-card > div {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1.75rem;
  border: 1px solid var(--stroke);
  background: var(--card);
  backdrop-filter: blur(12px);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  backface-visibility: hidden;
}

.selector-card .card-front {
  transform: rotateY(0deg);
}

.selector-card .card-reveal {
  transform: rotateY(-180deg);
  opacity: 0;
}

.selector-card:hover .card-front,
.selector-card:focus-within .card-front {
  transform: rotateY(180deg);
  opacity: 0;
}

.selector-card:hover .card-reveal,
.selector-card:focus-within .card-reveal {
  transform: rotateY(0deg);
  opacity: 1;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  font-size: 0.8rem;
  color: var(--muted);
}

.card-actions {
  margin-top: auto;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.accent-link {
  color: var(--accent-2);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-decoration: none;
}

.selector-card button {
  padding-inline: 1rem;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 1.8rem;
  border: 1px solid var(--stroke);
  background: var(--card);
  backdrop-filter: blur(12px);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.3);
}

.pricing-card .hover-panel {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.pricing-card:hover .hover-panel {
  opacity: 1;
  transform: translateY(0);
}

.host-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.host-tags span {
  padding: 0.2rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  font-size: 0.85rem;
}

/* Testimonials Section */
.testimonials {
  margin-top: 6rem;
  padding: clamp(3rem, 6vw, 5rem) 0;
  text-align: center;
}

.testimonials h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
  color: var(--text);
}

.testimonials .section-lead {
  color: var(--muted);
  margin-bottom: 3rem;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(10, 12, 30, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  text-align: left;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border-color: rgba(116, 227, 255, 0.3);
}

.testimonial-text {
  color: var(--text);
  line-height: 1.6;
  font-size: 0.95rem;
  flex: 1;
  margin: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.3), rgba(34, 197, 94, 0.1));
  border: 2px solid rgba(34, 197, 94, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-avatar span {
  font-size: 1.25rem;
  font-weight: 600;
  color: rgba(34, 197, 94, 1);
}

.testimonial-info h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.testimonial-info p {
  margin: 0.25rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
}

/* Features Deserve Section */
.features-deserve {
  margin-top: 6rem;
  padding: clamp(3rem, 6vw, 5rem) 0;
  text-align: center;
}

.features-deserve h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
  color: var(--text);
}

.features-deserve .section-lead {
  color: var(--muted);
  margin-bottom: 3rem;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: rgba(10, 12, 30, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border-color: rgba(34, 197, 94, 0.3);
}

.feature-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(34, 197, 94, 1);
  flex-shrink: 0;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
}

.feature-card h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .feature-card {
    padding: 2rem 1.5rem;
  }
  
  .feature-icon {
    width: 56px;
    height: 56px;
  }
}

.portal-links .portal-card-grid article,
.pricing-links .portal-card-grid article {
  background: var(--card);
  border: 1px solid var(--stroke);
  padding: 1.8rem;
  border-radius: 24px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.3s ease;
}

.portal-links .portal-card-grid article:hover {
  transform: translateY(-6px);
}

.pricing-showcase {
  padding: clamp(2rem, 6vw, 5rem);
  display: grid;
  gap: 2rem;
}

.pricing-showcase .page-hero {
  margin: 0;
}

.pricing-cards-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.pricing-card-modern {
  position: relative;
  background: rgba(10, 12, 30, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.pricing-card-modern:hover {
  transform: translateY(-8px);
}

.pricing-card-modern::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, transparent, transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 0;
}

.pricing-card-modern:hover::before {
  opacity: 1;
}

/* Color Themes */
.pricing-card-modern.theme-green {
  border-color: rgba(34, 197, 94, 0.3);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.05), rgba(10, 12, 30, 0.95));
}

.pricing-card-modern.theme-green::before {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.5), rgba(34, 197, 94, 0.2));
}

.pricing-card-modern.theme-green:hover {
  box-shadow: 0 25px 70px rgba(34, 197, 94, 0.25);
}

.pricing-card-modern.theme-orange {
  border-color: rgba(249, 115, 22, 0.3);
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.05), rgba(10, 12, 30, 0.95));
}

.pricing-card-modern.theme-orange::before {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.5), rgba(249, 115, 22, 0.2));
}

.pricing-card-modern.theme-orange:hover {
  box-shadow: 0 25px 70px rgba(249, 115, 22, 0.25);
}

.pricing-card-modern.theme-blue {
  border-color: rgba(59, 130, 246, 0.3);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(10, 12, 30, 0.95));
}

.pricing-card-modern.theme-blue::before {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.5), rgba(59, 130, 246, 0.2));
}

.pricing-card-modern.theme-blue:hover {
  box-shadow: 0 25px 70px rgba(59, 130, 246, 0.25);
}

.pricing-card-modern.theme-red {
  border-color: rgba(239, 68, 68, 0.3);
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), rgba(10, 12, 30, 0.95));
}

.pricing-card-modern.theme-red::before {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.5), rgba(239, 68, 68, 0.2));
}

.pricing-card-modern.theme-red:hover {
  box-shadow: 0 25px 70px rgba(239, 68, 68, 0.25);
}

/* Card Icon */
.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 0.5rem;
  flex-shrink: 0;
}

.card-icon svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.pricing-card-modern.theme-green .card-icon {
  background: #22c55e;
  color: white;
}

.pricing-card-modern.theme-orange .card-icon {
  background: #f97316;
  color: white;
}

.pricing-card-modern.theme-blue .card-icon {
  background: #3b82f6;
  color: white;
}

.pricing-card-modern.theme-red .card-icon {
  background: #ef4444;
  color: white;
}

/* Badge */
.card-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: white;
  z-index: 1;
}

.pricing-card-modern.theme-green .card-badge {
  background: #22c55e;
}

.pricing-card-modern.theme-orange .card-badge {
  background: #f97316;
}

.pricing-card-modern.theme-blue .card-badge {
  background: #3b82f6;
}

.pricing-card-modern.theme-red .card-badge {
  background: #ef4444;
}

.pricing-card-modern h3 {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
}

.card-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin: -0.5rem 0 0.5rem 0;
}

.price-line {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0.5rem 0;
}

.pricing-card-modern.theme-green .price-line {
  color: #22c55e;
}

.pricing-card-modern.theme-orange .price-line {
  color: #f97316;
}

.pricing-card-modern.theme-blue .price-line {
  color: #3b82f6;
}

.pricing-card-modern.theme-red .price-line {
  color: #ef4444;
}

.price-line span {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  margin-left: 0.3rem;
  font-weight: 500;
}

.price-note {
  color: var(--muted);
  margin: 0;
}

.spec-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.5;
}

.spec-bullets li {
  display: flex;
  align-items: flex-start;
}

.spec-bullets li::before {
  content: '•';
  margin-right: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.2rem;
  line-height: 1;
  margin-top: 0.1rem;
}

.spec-bullets strong,
.spec-bullets b {
  font-weight: 700;
  color: white;
}

.pricing-card-modern.theme-green .spec-bullets strong,
.pricing-card-modern.theme-green .spec-bullets b {
  color: #22c55e;
}

.pricing-card-modern.theme-orange .spec-bullets strong,
.pricing-card-modern.theme-orange .spec-bullets b {
  color: #f97316;
}

.pricing-card-modern.theme-blue .spec-bullets strong,
.pricing-card-modern.theme-blue .spec-bullets b {
  color: #3b82f6;
}

.pricing-card-modern.theme-red .spec-bullets strong,
.pricing-card-modern.theme-red .spec-bullets b {
  color: #ef4444;
}

.spec-bullets.inline {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
}

.spec-bullets.inline li::before {
  content: none;
}

.pricing-card-modern .btn-link {
  margin-top: auto;
  padding: 0.875rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.pricing-card-modern.theme-green .btn-link {
  background: #22c55e;
  color: white;
}

.pricing-card-modern.theme-green .btn-link:hover {
  background: #16a34a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4);
}

.pricing-card-modern.theme-orange .btn-link {
  background: #f97316;
  color: white;
}

.pricing-card-modern.theme-orange .btn-link:hover {
  background: #ea580c;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4);
}

.pricing-card-modern.theme-blue .btn-link {
  background: #3b82f6;
  color: white;
}

.pricing-card-modern.theme-blue .btn-link:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.pricing-card-modern.theme-red .btn-link {
  background: #ef4444;
  color: white;
}

.pricing-card-modern.theme-red .btn-link:hover {
  background: #dc2626;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(239, 68, 68, 0.4);
}

.pricing-card-modern button {
  margin-top: auto;
}

.plan-stack {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.plan-stack article {
  border: 1px solid var(--stroke);
  border-radius: 22px;
  padding: 1.2rem 1.5rem;
  background: rgba(10, 12, 30, 0.8);
}

.plan-stack h4 {
  margin: 0 0 0.5rem 0;
}

.plan-stack ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.plan-stack .plan-price {
  margin-top: 0.6rem;
  font-weight: 700;
}

.price-list {
  display: grid;
  gap: 1.2rem;
}

.price-list article {
  border: 1px solid var(--stroke);
  border-radius: 22px;
  padding: 1.5rem;
  background: rgba(10, 12, 30, 0.85);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.price-list .list-head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.price-list .emoji {
  font-size: 1.3rem;
}

.mc-plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.mc-card {
  position: relative;
  background: linear-gradient(160deg, rgba(10, 12, 30, 0.95), rgba(7, 8, 22, 0.9));
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.mc-card.popular {
  border-color: rgba(44, 244, 182, 0.6);
  box-shadow: 0 25px 45px rgba(44, 244, 182, 0.15);
}

.mc-card h3 {
  margin: 0;
  font-size: 2.4rem;
}

.mc-card h3 span {
  font-size: 1rem;
  color: var(--muted);
  margin-left: 0.4rem;
}

.mc-price {
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0;
}

.mc-price span {
  font-size: 1rem;
  color: var(--muted);
  margin-left: 0.4rem;
}

.mc-note {
  color: var(--muted);
  margin: 0;
}

.mc-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.mc-card.plan-card {
  gap: 0.75rem;
}

.mc-card.plan-card button {
  margin-top: auto;
}

.mc-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.mc-bullets li::before {
  content: '→';
  margin-right: 0.4rem;
  color: var(--accent-2);
}

.mc-card .badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(90deg, var(--accent-2), var(--cyan));
  color: #041016;
  padding: 0.2rem 0.9rem;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.vps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.vps-card {
  background: rgba(15, 16, 40, 0.92);
  border-radius: 26px;
  border: 1px solid var(--stroke);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.vps-card .card-heading {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}

.vps-card .emoji {
  font-size: 1.2rem;
}

.vps-card h3 {
  margin: 0;
}

.cpu-select,
.vps-select {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: rgba(6, 6, 25, 0.95);
  backdrop-filter: blur(12px);
  color: var(--text);
  padding: 0.75rem 1rem;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23a2b3d9' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.cpu-select:hover,
.vps-select:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background-color: rgba(6, 6, 25, 1);
}

.cpu-select:focus,
.vps-select:focus {
  outline: none;
  border-color: rgba(116, 80, 255, 0.6);
  box-shadow: 0 0 0 2px rgba(116, 80, 255, 0.2);
}

.cpu-select option,
.vps-select option {
  background: rgba(6, 6, 25, 0.95);
  color: var(--text);
  padding: 0.5rem;
}

.vps-card .price-line {
  font-size: 1.1rem;
  font-weight: 700;
}

.contact-card {
  text-align: center;
  gap: 1rem;
}

.contact-card p {
  margin: 0;
  color: var(--muted);
}

.subpage {
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 4rem);
  display: grid;
  gap: 2rem;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: var(--muted);
  max-width: 60ch;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.feature-list li {
  list-style: none;
  padding: 1rem 1.25rem;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.02);
}

.checkout-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  align-items: start;
}

form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.65rem 0.85rem;
  background: rgba(6, 6, 19, 0.6);
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(108, 91, 255, 0.6);
  border-color: rgba(108, 91, 255, 0.4);
}

textarea {
  min-height: 100px;
  line-height: 1.5;
}

.form-feedback {
  min-height: 1.25rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.cart-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 0.75rem 1rem;
}

.cart-item button {
  padding: 0.3rem 0.75rem;
}

.empty-state {
  color: var(--muted);
  text-align: center;
  margin: 1rem 0 0;
}

.totals {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.totals p {
  display: flex;
  justify-content: space-between;
  margin: 0;
  font-weight: 600;
}

.totals .grand {
  font-size: 1.1rem;
}

.receipt-note {
  border: 1px dashed var(--stroke);
  border-radius: 16px;
  padding: 1rem;
  color: var(--muted);
}

button.wide {
  width: 100%;
  justify-content: center;
}

.note {
  color: var(--muted);
  font-size: 0.95rem;
}

footer {
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
  background: rgba(0, 0, 0, 0.4);
  border-top: 1px solid rgba(116, 227, 255, 0.1);
  margin-top: 4rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-brand .logo {
  font-size: 1.5rem;
  margin: 0;
}

.footer-brand p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.9rem;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(116, 227, 255, 0.1);
  color: var(--text);
  transition: all 0.3s ease;
  border: 1px solid rgba(116, 227, 255, 0.2);
}

.footer-social a:hover {
  background: rgba(116, 227, 255, 0.2);
  border-color: rgba(116, 227, 255, 0.4);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

.footer-column h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text);
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-column ul li a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  display: inline-block;
}

.footer-column ul li a:hover {
  color: var(--accent);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(116, 227, 255, 0.1);
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-brand p {
    max-width: 100%;
  }
}

/* About Page Styles */
.about-page {
  padding: clamp(2rem, 6vw, 6rem);
  max-width: 1200px;
  margin: 0 auto;
}

.about-hero {
  text-align: center;
  margin-bottom: 4rem;
}

.about-hero h1 {
  font-size: clamp(2.8rem, 7vw, 4.8rem);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #7450ff, #00b7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.owner-section {
  margin: 4rem 0;
}

.profiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

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

.owner-card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 32px;
  padding: 3rem;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.owner-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(116, 80, 255, 0.2);
}

.profile-image-wrapper {
  position: relative;
  width: 200px;
  height: 200px;
}

.profile-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  border: 4px solid rgba(116, 227, 255, 0.3);
  box-shadow: 
    0 0 40px rgba(116, 227, 255, 0.4),
    inset 0 0 20px rgba(116, 227, 255, 0.1);
  background: radial-gradient(circle, rgba(116, 15, 255, 0.3), rgba(15, 53, 123, 0.5));
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.profile-image img[src]:not([src=""]) {
  opacity: 1;
}

.profile-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(116, 15, 255, 0.2), rgba(15, 53, 123, 0.4));
  transition: opacity 0.3s ease;
}

.profile-image img[src]:not([src=""]) ~ .profile-placeholder {
  opacity: 0;
  pointer-events: none;
}

.profile-glow {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(116, 227, 255, 0.3), transparent 70%);
  filter: blur(20px);
  animation: profileGlow 3s ease-in-out infinite;
  z-index: -1;
}

@keyframes profileGlow {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

.owner-info h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #7450ff, #00b7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.owner-title {
  font-size: 1.2rem;
  color: var(--accent-2);
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.owner-description {
  color: var(--muted);
  line-height: 1.8;
  max-width: 60ch;
  margin: 0 auto;
}

.about-content {
  margin-top: 4rem;
}

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

.about-card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 24px;
  padding: 2rem;
  backdrop-filter: blur(12px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-card:hover {
  transform: translateY(-6px);
  border-color: rgba(116, 227, 255, 0.3);
  box-shadow: 0 15px 40px rgba(116, 80, 255, 0.15);
}

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

.about-card p {
  color: var(--muted);
  line-height: 1.7;
}

.about-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about-card ul li {
  color: var(--muted);
  position: relative;
  padding-left: 1.5rem;
}

.about-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-2);
  font-weight: 700;
}

@media (max-width: 960px) {
  .site-header {
    flex-direction: column;
    gap: 1rem;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    text-align: center;
  }

  .hero-copy .lead,
  .hero-actions {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }

  .header-actions {
    justify-content: center;
  }
}


