@font-face {
  font-family: 'Arista 2.0';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/Arista2.0.woff') format('woff');
}

@font-face {
  font-family: 'Arista 2.0';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/Arista2.0light.woff') format('woff');
}

:root {
  --brand: #00aeef;
  --dark: #05070a;
  --darker: #010103;
}

@property --border-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.nav-pulse-border {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  padding: 1.5px;
  background: conic-gradient(
    from var(--border-angle),
    transparent 0%,
    transparent 2%,
    rgba(0, 174, 239, 0.08) 3.5%,
    rgba(0, 174, 239, 0.45) 5%,
    rgba(0, 174, 239, 0.08) 6.5%,
    transparent 8%,
    transparent 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.6s ease;
  will-change: --border-angle;
}

.nav-pulse-border.active {
  opacity: 1;
  animation: nav-pulse-sweep 2.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes nav-pulse-sweep {
  0% {
    --border-angle: var(--pulse-start, 0deg);
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    --border-angle: calc(var(--pulse-start, 0deg) + 360deg);
    opacity: 0;
  }
}

html,
body {
  margin: 0;
  padding: 0;
  background-color: var(--darker);
  color: #fff;
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--darker);
}
::-webkit-scrollbar-thumb {
  background: var(--brand);
  border-radius: 5px;
  border: 1px solid #010103;
}
::-webkit-scrollbar-thumb:hover {
  background: rgb(15, 135, 214);
}

.theme-transitioning body,
.theme-transitioning main,
.theme-transitioning section,
.theme-transitioning header,
.theme-transitioning nav,
.theme-transitioning footer {
  transition:
    background-color 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

@keyframes preloader-glow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.2;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.4;
    background: radial-gradient(
      circle,
      rgba(103, 232, 249, 0.2) 0%,
      transparent 60%
    );
  }
}
@keyframes preloader-breathe {
  0%,
  100% {
    transform: scale(1);
    filter: brightness(1);
  }
  50% {
    transform: scale(1.05);
    filter: brightness(1.2);
  }
}
#preloader.fluid-reveal-exit {
  background: transparent !important;
}
#preloader.fluid-reveal-exit #preloader-logo-container {
  transform: scale(3) translateY(-10px);
  filter: blur(20px);
  opacity: 0;
}
#preloader.fluid-reveal-exit #preloader-text {
  opacity: 0;
}
body.preloader-active {
  overflow: hidden;
}

.reveal-up {
  opacity: 0;
  visibility: hidden;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0px);
  }
}
.animate-float-slow {
  animation: float 5s ease-in-out infinite;
  will-change: transform;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.animate-gradient {
  animation: gradient 8s ease infinite;
}

@keyframes blob {
  0% {
    transform: translate(0px, 0px) scale(1);
  }
  33% {
    transform: translate(30px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
  100% {
    transform: translate(0px, 0px) scale(1);
  }
}
.animate-blob {
  animation: blob 15s infinite alternate ease-in-out;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.pulse-glow {
  filter: drop-shadow(0 0 8px rgba(0, 174, 239, 0.5));
}

.glass-panel {
  box-shadow:
    0 10px 30px -10px rgba(0, 0, 0, 0.5),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  backdrop-filter: blur(10px);
  contain: layout style paint;
}

.service-card {
  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 174, 239, 0.4);
  background-color: rgba(255, 255, 255, 0.05);
}

.hide-scrollbar::-webkit-scrollbar,
.hide-scrollbar-faq::-webkit-scrollbar {
  display: none;
}
.hide-scrollbar,
.hide-scrollbar-faq {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease-out,
    padding 0.3s ease;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-icon {
  transition: transform 0.3s ease;
}

.toggle-checkbox:checked {
  right: 0;
  border-color: #68d391;
}
.toggle-checkbox:checked + .toggle-label {
  background-color: var(--brand);
}
.toggle-checkbox {
  right: 0;
  z-index: 1;
  border-color: #e2e8f0;
  transition: all 0.3s;
}
.toggle-label {
  background-color: rgba(255, 255, 255, 0.2);
  transition: all 0.3s;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 5 - 2rem * 5));
  } 
}
.testimonial-track {
  display: flex;
  width: calc((250px * 10) + (2rem * 10));
  animation: scroll-left 40s linear infinite;
  will-change: transform;
}
.testimonial-track:hover {
  animation-play-state: paused;
}
@media (min-width: 768px) {
  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-350px * 5 - 2rem * 5));
    }
  }
  .testimonial-track {
    width: calc((350px * 10) + (2rem * 10));
  }
}

@keyframes chat-wave {
  0%,
  100% {
    transform: rotate(0deg);
  }
  15% {
    transform: rotate(14deg);
  }
  30% {
    transform: rotate(-8deg);
  }
  45% {
    transform: rotate(10deg);
  }
  60% {
    transform: rotate(-4deg);
  }
  75% {
    transform: rotate(6deg);
  }
}
.chat-wave-icon {
  animation: chat-wave 2.5s ease-in-out infinite;
  transform-origin: 70% 80%;
}

@keyframes btt-spin {
  0% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-3px);
  }
  100% {
    transform: translateY(0);
  }
}
.btt-active #btt-arrow {
  animation: btt-spin 0.6s ease-out;
}

@keyframes hero-accent-slide {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero-badge-glow {
  box-shadow:
    0 0 20px rgba(0, 174, 239, 0.06),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.hero-gradient-text {
  background-size: 200% 100%;
  animation: hero-gradient-shift 6s ease-in-out infinite;
  will-change: background-position;
}
@keyframes hero-gradient-shift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes domain-spin {
  to {
    transform: rotate(360deg);
  }
}
.domain-spinner {
  animation: domain-spin 0.8s linear infinite;
}

@keyframes domain-result-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.domain-result-card {
  animation: domain-result-in 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes domain-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 174, 239, 0.3);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(0, 174, 239, 0);
  }
}
.domain-available-pulse {
  animation: domain-pulse 2s ease-in-out infinite;
}

#domain-search-input:focus ~ .domain-search-glow,
#domain-search-box:focus-within #domain-search-glow {
  opacity: 1 !important;
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-6px);
  }
  40% {
    transform: translateX(6px);
  }
  60% {
    transform: translateX(-4px);
  }
  80% {
    transform: translateX(4px);
  }
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.capability-ticker {
  animation: ticker-scroll 35s linear infinite;
  will-change: transform;
}
.capability-ticker:hover {
  animation-play-state: paused;
}

.pillar-row {
  background: linear-gradient(
    160deg,
    rgba(5, 7, 12, 0.6),
    rgba(10, 14, 22, 0.4)
  );
  backdrop-filter: blur(8px);
}
.pillar-row:hover {
  transform: translateY(-2px);
  background: linear-gradient(
    160deg,
    rgba(8, 12, 20, 0.8),
    rgba(10, 14, 22, 0.5)
  );
}

.stat-counter-card {
  backdrop-filter: blur(8px);
}

.hw2-tab-btn.active > .bg-\[var\(--cat-color\)\],
.faq-tab-btn.active > .bg-\[var\(--cat-color\)\] {
  opacity: 0.12;
}
.hw2-tab-btn.active > .border-\[var\(--cat-color\)\],
.faq-tab-btn.active > .border-\[var\(--cat-color\)\] {
  opacity: 0.35;
}

.hw2-tab-btn.active > div:not([class*="absolute"]),
.faq-tab-btn.active > div:not([class*="absolute"]) {
  color: var(--cat-color);
}

.hw2-tab-btn.active > span,
.faq-tab-btn.active > span {
  color: #fff;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-item.open .faq-question > div:last-child {
  background-color: color-mix(
    in srgb,
    var(--cat-color, #00aeef) 10%,
    transparent
  );
  color: var(--cat-color, #00aeef);
  border-color: color-mix(in srgb, var(--cat-color, #00aeef) 30%, transparent);
}

.faq-item:hover .faq-question h4 {
  color: var(--cat-color, #00aeef);
}

.faq-item:hover .faq-question > div:first-child {
  transform: scaleX(1);
}

.faq-content-pane[id="faq-general"] {
  --cat-color: #00aeef;
}
.faq-content-pane[id="faq-hosting"] {
  --cat-color: #3b82f6;
}
.faq-content-pane[id="faq-gaming"] {
  --cat-color: #a855f7;
}
.faq-content-pane[id="faq-dev-design"] {
  --cat-color: #f43f5e;
}
.faq-content-pane[id="faq-cloud"] {
  --cat-color: #10b981;
}

.grid-rows-\[0fr\] {
  grid-template-rows: 0fr;
}
.grid-rows-\[1fr\] {
  grid-template-rows: 1fr;
}

#hw2-web-hosting {
  --cat-color: #00aeef;
}
#hw2-game-servers {
  --cat-color: #a855f7;
}
#hw2-web-design {
  --cat-color: #f43f5e;
}
#hw2-marketing {
  --cat-color: #f59e0b;
}
#hw2-cloud-automation {
  --cat-color: #06b6d4;
}

.hw2-step:hover > div:first-child {
  border-color: var(--cat-color) !important;
  box-shadow: 0 0 25px color-mix(in srgb, var(--cat-color) 25%, transparent);
  transform: translateY(-4px);
}

.hw2-step:hover > div:first-child > div:first-child {
  opacity: 0.15;
}

.hw2-step:hover > div:first-child > div:nth-child(2) {
  opacity: 1;
}

.hw2-step:hover > div:first-child > span {
  color: #fff;
}

.hw2-step:hover > div:last-child {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.6);
  border-top-color: color-mix(in srgb, var(--cat-color) 30%, transparent);
}

.hw2-step:hover > div:last-child > div:first-child {
  opacity: 1;
}

.hw2-step:hover > div:last-child > div:nth-child(2) {
  color: color-mix(in srgb, var(--cat-color) 5%, transparent);
  transform: scale(1.1);
}

.hw2-step:hover > div:last-child > h4 {
  color: var(--cat-color);
}

.hw2-step:hover > div:last-child > p {
  color: rgba(255, 255, 255, 0.7);
}

#menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translateY(0.5rem);
}
#menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
#menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-0.5rem);
}

#main-header:hover #swiss-tab {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.6);
}

.testimonial-fade-edge {
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}
@media (min-width: 768px) {
  .testimonial-fade-edge {
    -webkit-mask-image: linear-gradient(
      to right,
      transparent 0%,
      black 6%,
      black 94%,
      transparent 100%
    );
    mask-image: linear-gradient(
      to right,
      transparent 0%,
      black 6%,
      black 94%,
      transparent 100%
    );
  }
}

@property --axon-btn-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
.axon-btn-border-anim {
  background: conic-gradient(
    from var(--axon-btn-angle),
    transparent 0%,
    transparent 30%,
    rgba(0, 174, 239, 0.6) 36%,
    rgba(99, 102, 241, 0.4) 42%,
    rgba(103, 232, 249, 0.5) 48%,
    transparent 54%,
    transparent 100%
  );
  animation: axon-btn-rotate 4s linear infinite;
}
@keyframes axon-btn-rotate {
  to {
    --axon-btn-angle: 360deg;
  }
}
.axon-btn-primary:hover {
  transform: translateY(-3px);
}

.axon-particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.a4-feat {
  position: relative;
  cursor: help;
}

.a4-tooltip-content {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: max-content;
  max-width: 250px;
  background: rgba(10, 15, 26, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom-color: rgba(0, 174, 239, 0.4);
  color: rgba(255, 255, 255, 0.9);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.725rem;
  line-height: 1.4;
  text-transform: none;
  letter-spacing: normal;
  font-family: "Inter", sans-serif;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 50;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
  text-align: center;
  font-weight: 400;
}

.a4-feat:hover .a4-tooltip-content {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

[data-theme="light"] .a4-tooltip-content {
  background: rgba(255, 255, 255, 0.95);
  color: #374151;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom-color: #00aeef;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}
[data-theme="light"] .a4-tooltip-content::after {
  border-color: #00aeef transparent transparent transparent;
}

@keyframes axp-scan{0%{top:-100%}100%{top:200%}}
@keyframes axp-pulse{0%,100%{box-shadow:0 0 20px rgba(0,174,239,0.15),inset 0 0 20px rgba(0,174,239,0.03)}50%{box-shadow:0 0 40px rgba(0,174,239,0.3),inset 0 0 30px rgba(0,174,239,0.06)}}
@keyframes axp-rotate{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}
@keyframes axp-fadeUp{from{opacity:0;transform:translateY(12px)}to{opacity:1;transform:translateY(0)}}
@keyframes axp-ring{0%{transform:scale(0.8);opacity:1}100%{transform:scale(2.2);opacity:0}}

#axon-protect-overlay{position:fixed;inset:0;z-index:99999;display:flex;align-items:center;justify-content:center;background:rgba(2,6,14,0.92);backdrop-filter:blur(24px);-webkit-backdrop-filter:blur(24px);opacity:0;transition:opacity .4s cubic-bezier(0.16,1,0.3,1)}
#axon-protect-overlay.axp-active{opacity:1}

.axp-card{position:relative;max-width:440px;width:92%;background:linear-gradient(165deg,rgba(10,18,32,0.98),rgba(8,12,24,0.98));border:1px solid rgba(0,174,239,0.12);border-radius:1.25rem;overflow:hidden;transform:scale(0.88) translateY(20px);transition:transform .5s cubic-bezier(0.16,1,0.3,1);box-shadow:0 32px 80px rgba(0,0,0,0.6),0 0 60px rgba(0,174,239,0.06)}
#axon-protect-overlay.axp-active .axp-card{transform:scale(1) translateY(0)}

.axp-scanline{position:absolute;left:0;right:0;height:40%;background:linear-gradient(180deg,transparent,rgba(0,174,239,0.04),transparent);animation:axp-scan 3s ease-in-out infinite;pointer-events:none;z-index:1}
.axp-grid-bg{position:absolute;inset:0;background-image:radial-gradient(rgba(0,174,239,0.06) 1px,transparent 1px);background-size:24px 24px;opacity:0.5;pointer-events:none}
.axp-accent-bar{height:2px;background:linear-gradient(90deg,transparent,#00aeef,#06b6d4,#818cf8,transparent);opacity:0.8}

.axp-shield-wrap{position:relative;width:80px;height:80px;margin:2rem auto 1.5rem;display:flex;align-items:center;justify-content:center}
.axp-shield-ring{position:absolute;inset:-8px;border-radius:50%;border:1.5px solid rgba(0,174,239,0.2);animation:axp-pulse 3s ease-in-out infinite}
.axp-shield-ring-outer{position:absolute;inset:-16px;border-radius:50%;border:1px dashed rgba(0,174,239,0.1);animation:axp-rotate 20s linear infinite}
.axp-shield-icon{width:64px;height:64px;border-radius:1rem;background:rgba(0,174,239,0.08);border:1px solid rgba(0,174,239,0.18);display:flex;align-items:center;justify-content:center;position:relative;z-index:2}
.axp-shield-ping{position:absolute;inset:0;border-radius:1rem;border:1.5px solid rgba(0,174,239,0.4);animation:axp-ring 2s cubic-bezier(0,0,0.2,1) infinite;z-index:1}

.axp-title{color:#fff;font-size:1.35rem;font-weight:700;margin:0 0 .5rem;letter-spacing:-0.03em}
.axp-subtitle{display:inline-flex;align-items:center;gap:6px;padding:4px 12px;border-radius:6px;background:rgba(239,68,68,0.1);border:1px solid rgba(239,68,68,0.15);color:#f87171;font-size:.7rem;font-weight:600;text-transform:uppercase;letter-spacing:0.08em;margin-bottom:1.25rem}

.axp-msg{color:rgba(255,255,255,0.45);font-size:.82rem;line-height:1.65;margin:0 0 1.75rem}
.axp-msg strong{color:#00aeef;font-weight:600}

.axp-close-btn{display:inline-flex;align-items:center;gap:.5rem;padding:.7rem 1.75rem;border-radius:.65rem;border:1px solid rgba(0,174,239,0.25);background:rgba(0,174,239,0.08);color:#00aeef;font-size:.82rem;font-weight:600;cursor:pointer;transition:all .25s cubic-bezier(0.16,1,0.3,1);letter-spacing:0.01em;position:relative;overflow:hidden}
.axp-close-btn:hover{background:rgba(0,174,239,0.15);border-color:rgba(0,174,239,0.4);box-shadow:0 0 25px rgba(0,174,239,0.15);transform:translateY(-1px)}
.axp-close-btn:active{transform:translateY(0) scale(0.98)}
.axp-close-shimmer{position:absolute;top:0;left:-100%;width:100%;height:100%;background:linear-gradient(90deg,transparent,rgba(0,174,239,0.08),transparent);transition:left .5s}
.axp-close-btn:hover .axp-close-shimmer{left:100%}

.axp-footer{display:flex;align-items:center;justify-content:center;gap:6px;padding:1rem;border-top:1px solid rgba(255,255,255,0.04);color:rgba(255,255,255,0.2);font-size:.65rem;letter-spacing:0.04em}
.axp-footer svg{opacity:0.3}

.axp-dmca{display:flex;justify-content:center;margin-bottom:1.5rem}
.axp-dmca a{display:inline-flex;padding:8px 18px;border-radius:.6rem;background:rgba(255,255,255,0.04);border:1px solid rgba(255,255,255,0.08);transition:all .2s}
.axp-dmca a:hover{background:rgba(255,255,255,0.08);border-color:rgba(255,255,255,0.15)}
.axp-dmca img{height:20px;width:auto;opacity:0.75;transition:opacity .2s}
.axp-dmca a:hover img{opacity:1}

.axp-row1{animation:axp-fadeUp .4s .1s both}
.axp-row2{animation:axp-fadeUp .4s .2s both}
.axp-row3{animation:axp-fadeUp .4s .3s both}
.axp-row4{animation:axp-fadeUp .4s .4s both}
.axp-row5{animation:axp-fadeUp .4s .5s both}

.v6w {
  position: relative;
}

.v6bgtx {
  position: absolute;
  top: 0;
  bottom: 0;
  padding: 0 32px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 18px;
  font-size: 75px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.015);
  pointer-events: none;
  z-index: 0;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}
.v6c:hover .v6bgtx {
  color: rgba(255, 255, 255, 0.035);
}
.v6l .v6bgtx {
  right: 0;
  transform: translateX(30px);
  justify-content: flex-end;
}
.v6r .v6bgtx {
  left: 0;
  transform: translateX(-30px);
  justify-content: flex-start;
}
.v6c:hover.v6l .v6bgtx {
  transform: translateX(10px);
}
.v6c:hover.v6r .v6bgtx {
  transform: translateX(-10px);
}

.v6c {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(
    135deg,
    rgba(14, 19, 31, 0.85) 0%,
    rgba(8, 11, 18, 0.95) 100%
  );
  backdrop-filter: blur(20px);
  cursor: pointer;
  outline: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 18px;
  overflow: visible;
}
.v6c:hover {
  border-color: var(--ch);
  background: linear-gradient(
    135deg,
    rgba(16, 22, 36, 0.95) 0%,
    rgba(10, 13, 22, 1) 100%
  );
  box-shadow:
    0 12px 30px -8px rgba(0, 0, 0, 0.6),
    0 0 25px -5px var(--ch);
  z-index: 20;
}
.v6c::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--ch), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 18px 18px 0 0;
  z-index: 6;
}
.v6c:hover::before {
  opacity: 0.7;
}
.v6c::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: radial-gradient(ellipse at center, var(--ch) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: 1;
}
.v6c:hover::after {
  opacity: 0.04;
}

.v6l:hover {
  transform: translate(-6px, -2px);
}
.v6r:hover {
  transform: translate(6px, -2px);
}

.v6ci {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px;
  height: 100%;
}
.v6ico {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.v6tx {
  display: flex;
  flex-direction: column;
  min-width: 0;
  justify-content: center;
}
.v6tt {
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.2;
  margin-bottom: 2px;
}
.v6tg {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
}

.v6receptor {
  position: absolute;
  z-index: 8;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rh);
  box-shadow:
    0 0 8px var(--rh),
    0 0 16px var(--rh);
  opacity: 0.4;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: v6rec-pulse 3s ease-in-out infinite;
  display: none;
}
@media (min-width: 1024px) {
  .v6receptor {
    display: block;
  }
}

.v6rec-right {
  right: -4px;
}
.v6rec-left {
  left: -4px;
}

.v6rec-active {
  opacity: 1 !important;
  width: 12px !important;
  height: 12px !important;
  box-shadow:
    0 0 15px var(--rh),
    0 0 30px var(--rh),
    0 0 50px var(--rh) !important;
}

@keyframes v6rec-pulse {
  0%,
  100% {
    opacity: 0.3;
    box-shadow: 0 0 4px var(--rh);
  }
  50% {
    opacity: 0.65;
    box-shadow:
      0 0 10px var(--rh),
      0 0 20px var(--rh);
  }
}

.v6lc {
  position: relative;
  z-index: 10;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(8, 11, 20, 0.9);
  border: 2px solid rgba(0, 174, 239, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 80px rgba(0, 174, 239, 0.2),
    inset 0 0 40px rgba(0, 174, 239, 0.1);
  backdrop-filter: blur(10px);
}
.v6li {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(0, 174, 239, 0.5));
}

.v6pr {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1.5px solid rgba(0, 174, 239, 0.15);
  pointer-events: none;
  animation: v6rp 3.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.v6pr1 {
  width: 160px;
  height: 160px;
  animation-delay: 0s;
}
.v6pr2 {
  width: 160px;
  height: 160px;
  animation-delay: 1.15s;
}
.v6pr3 {
  width: 160px;
  height: 160px;
  animation-delay: 2.3s;
}
@keyframes v6rp {
  0% {
    width: 160px;
    height: 160px;
    opacity: 0.6;
    border-color: rgba(0, 174, 239, 0.3);
  }
  100% {
    width: 450px;
    height: 450px;
    opacity: 0;
    border-color: rgba(0, 174, 239, 0);
  }
}
@media (max-width: 1023px) {
  .v6pr1 {
    width: 120px;
    height: 120px;
  }
  .v6pr2 {
    width: 120px;
    height: 120px;
  }
  .v6pr3 {
    width: 120px;
    height: 120px;
  }
  @keyframes v6rp {
    0% {
      width: 120px;
      height: 120px;
      opacity: 0.6;
      border-color: rgba(0, 174, 239, 0.3);
    }
    100% {
      width: 350px;
      height: 350px;
      opacity: 0;
      border-color: rgba(0, 174, 239, 0);
    }
  }
}

.v6c {
  animation: v6in 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.v6l:nth-child(1) {
  animation-delay: 0s;
}
.v6r:nth-child(1) {
  animation-delay: 0s;
}
.v6l:nth-child(2) {
  animation-delay: 0.1s;
}
.v6r:nth-child(2) {
  animation-delay: 0.1s;
}
.v6l:nth-child(3) {
  animation-delay: 0.2s;
}
.v6r:nth-child(3) {
  animation-delay: 0.2s;
}
.v6l:nth-child(4) {
  animation-delay: 0.3s;
}
.v6r:nth-child(4) {
  animation-delay: 0.3s;
}
.v6l:nth-child(5) {
  animation-delay: 0.4s;
}
.v6r:nth-child(5) {
  animation-delay: 0.4s;
}
.v6l:nth-child(6) {
  animation-delay: 0.5s;
}
.v6r:nth-child(6) {
  animation-delay: 0.5s;
}
.v6l:nth-child(7) {
  animation-delay: 0.6s;
}
.v6r:nth-child(7) {
  animation-delay: 0.6s;
}

@keyframes v6in {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

#v6mc::-webkit-scrollbar {
  width: 6px;
}
#v6mc::-webkit-scrollbar-track {
  background: transparent;
  margin-top: 30px;
  margin-bottom: 30px;
}
#v6mc::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.hw2-content-pane.active-pane {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.active-pane .hw2-step {
  animation: hw2FadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}
.active-pane .hw2-step-delay-0 {
  animation-delay: 0.1s;
}
.active-pane .hw2-step-delay-1 {
  animation-delay: 0.2s;
}
.active-pane .hw2-step-delay-2 {
  animation-delay: 0.3s;
}
.active-pane .hw2-step-delay-3 {
  animation-delay: 0.4s;
}

@keyframes hw2FadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hw2-progress-line {
  transform-origin: left center;
  transform: scaleX(0);
  will-change: transform;
}
.active-pane .hw2-progress-line {
  animation: hw2LineGrow 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

@keyframes hw2LineGrow {
  0% { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}

@media (max-width: 1023px) {
  .hw2-progress-line {
    transform-origin: top center;
    transform: scaleY(0);
  }
  .active-pane .hw2-progress-line {
    animation: hw2LineGrowMobile 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
  }
  @keyframes hw2LineGrowMobile {
    0% { transform: scaleY(0); }
    100% { transform: scaleY(1); }
  }
}

.faq-content-pane {
  display: none;
}

.faq-content-pane.active-pane {
  display: block;
}

.active-pane .faq-item {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.active-pane .faq-item.faq-visible {
  opacity: 1;
  transform: translateY(0);
}

.wcu-v2-card {
  position: relative;
  cursor: default;
}
.wcu-v2-card:hover .wcu-v2-num,
.wcu-v2-card.wcu-active .wcu-v2-num {
  -webkit-text-stroke: 1px var(--ac);
  color: var(--ac);
  opacity: 0.2;
  transform: translateY(-5px);
}
.wcu-v2-card:hover > div:first-child,
.wcu-v2-card.wcu-active > div:first-child {
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow:
    0 20px 40px -10px rgba(0, 0, 0, 0.8),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.05);
  transform: translateY(-4px);
}

.wcu-v2-card:hover h3,
.wcu-v2-card.wcu-active h3 {
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.wcu-v2-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--ac);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.7s ease-out;
}
.wcu-v2-card:hover .wcu-v2-line,
.wcu-v2-card.wcu-active .wcu-v2-line {
  transform: scaleX(1);
}

.wcu-v2-arrow {
  color: var(--ac);
  transition: all 0.5s ease;
  transform: translateX(-1rem);
  opacity: 0;
}
.wcu-v2-card:hover .wcu-v2-arrow,
.wcu-v2-card.wcu-active .wcu-v2-arrow {
  opacity: 1;
  transform: translateX(0);
  background-color: color-mix(in srgb, var(--ac) 10%, transparent);
  border-color: color-mix(in srgb, var(--ac) 30%, transparent);
}

@media (min-width: 1024px) {
  .wcu-v2-card:nth-child(even) {
    padding-left: 40px;
  }
  .wcu-sticky {
    position: sticky;
    top: 9rem;
  }
}

#wiz-overlay {
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
#wiz-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.wiz-step {
  display: none;
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition:
    opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.wiz-step.active {
  display: block;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.wiz-svc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.25rem 0.5rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.015);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}
.wiz-svc-ripple {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle at var(--rx, 50%) var(--ry, 50%),
    var(--svc) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.wiz-svc-card:hover .wiz-svc-ripple {
  opacity: 0.08;
}
.wiz-svc-card:hover {
  border-color: color-mix(in srgb, var(--svc) 35%, transparent);
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 35px -10px color-mix(in srgb, var(--svc) 20%, transparent);
}
.wiz-svc-card.selected {
  border-color: var(--svc);
  background: color-mix(in srgb, var(--svc) 8%, transparent);
  box-shadow:
    0 0 40px color-mix(in srgb, var(--svc) 15%, transparent),
    inset 0 1px 0 color-mix(in srgb, var(--svc) 12%, transparent);
  transform: scale(0.97);
  animation: svcPop 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes svcPop {
  0% {
    transform: scale(0.92);
  }
  50% {
    transform: scale(1.04);
  }
  100% {
    transform: scale(1);
  }
}

.wiz-svc-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--svc);
  background: color-mix(in srgb, var(--svc) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--svc) 20%, transparent);
  transition: all 0.3s ease;
}
.wiz-svc-card.selected .wiz-svc-icon,
.wiz-svc-card:hover .wiz-svc-icon {
  box-shadow: 0 0 20px color-mix(in srgb, var(--svc) 25%, transparent);
}
.wiz-svc-name {
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  line-height: 1.2;
  transition: color 0.3s ease;
}
.wiz-svc-card:hover .wiz-svc-name,
.wiz-svc-card.selected .wiz-svc-name {
  color: #fff;
}

.wiz-svc-check {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--svc);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.wiz-svc-card.selected .wiz-svc-check {
  opacity: 1;
  transform: scale(1);
  animation: checkPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes checkPop {
  0% {
    transform: scale(0) rotate(-45deg);
  }
  60% {
    transform: scale(1.3) rotate(5deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}

.wiz-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.wiz-label {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.35);
  font-family: "Inter", sans-serif;
}
.wiz-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.02);
  color: #fff;
  font-size: 0.875rem;
  font-family: "Inter", sans-serif;
  outline: none;
  transition: all 0.3s ease;
  -webkit-appearance: none;
}
.wiz-input::placeholder {
  color: rgba(255, 255, 255, 0.12);
}
.wiz-input:focus {
  border-color: rgba(0, 174, 239, 0.4);
  background: rgba(0, 174, 239, 0.03);
  box-shadow:
    0 0 25px rgba(0, 174, 239, 0.08),
    0 0 0 3px rgba(0, 174, 239, 0.05);
}
.wiz-input.error {
  border-color: rgba(239, 68, 68, 0.5);
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.08);
  animation: inputShake 0.4s ease;
}
@keyframes inputShake {
  0%,
  100% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-4px);
  }
  40% {
    transform: translateX(4px);
  }
  60% {
    transform: translateX(-3px);
  }
  80% {
    transform: translateX(3px);
  }
}
.wiz-textarea {
  resize: vertical;
  min-height: 80px;
}
select.wiz-input {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='rgba(255,255,255,0.3)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
select.wiz-input option {
  background: #0a0e18;
  color: #fff;
}

.wiz-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.wiz-pill {
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.015);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
  position: relative;
  overflow: hidden;
}
.wiz-pill:hover {
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-1px);
}
.wiz-pill.active {
  border-color: rgba(0, 174, 239, 0.5);
  background: rgba(0, 174, 239, 0.08);
  color: #fff;
  box-shadow: 0 0 15px rgba(0, 174, 239, 0.1);
  animation: pillPop 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes pillPop {
  0% {
    transform: scale(0.95);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.wiz-back-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.wiz-back-btn:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  transform: translateX(-2px);
}
.wiz-next-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 1rem;
  border: 1px solid rgba(0, 174, 239, 0.3);
  background: rgba(0, 174, 239, 0.08);
  color: #00aeef;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.wiz-next-btn:hover {
  background: rgba(0, 174, 239, 0.15);
  border-color: rgba(0, 174, 239, 0.5);
  color: #fff;
  box-shadow: 0 0 25px rgba(0, 174, 239, 0.15);
  transform: translateX(3px);
}

.wiz-submit-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 2rem;
  border-radius: 1rem;
  border: none;
  background: linear-gradient(135deg, #00aeef, #06b6d4);
  color: #010103;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.wiz-submit-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.wiz-submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 174, 239, 0.35);
}
.wiz-submit-btn:hover:not(:disabled)::before {
  transform: translateX(100%);
}
.wiz-submit-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  filter: grayscale(0.5);
}

.wiz-review-card {
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.015);
  padding: 1.25rem;
}
.wiz-review-card h4 {
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.wiz-review-edit {
  margin-left: auto;
  font-size: 0.55rem;
  color: rgba(0, 174, 239, 0.5);
  cursor: pointer;
  transition: color 0.2s ease;
  letter-spacing: 0.15em;
  font-weight: 700;
  text-transform: uppercase;
}
.wiz-review-edit:hover {
  color: #00aeef;
}
.wiz-review-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.35rem 0;
  font-size: 0.78rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.wiz-review-row:last-child {
  border-bottom: none;
}
.wiz-review-row .r-label {
  color: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
  margin-right: 1rem;
}
.wiz-review-row .r-value {
  color: rgba(255, 255, 255, 0.75);
  text-align: right;
  word-break: break-word;
}

.wiz-success-icon {
  animation: successBounce 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes successBounce {
  0% {
    opacity: 0;
    transform: scale(0.3) rotate(-20deg);
  }
  60% {
    transform: scale(1.1) rotate(5deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}
.wiz-check-svg {
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
  animation: drawCheck 0.6s 0.3s ease forwards;
}
@keyframes drawCheck {
  to {
    stroke-dashoffset: 0;
  }
}

.wiz-error {
  font-size: 0.7rem;
  color: #ef4444;
  margin-top: 0.25rem;
  animation: fadeSlide 0.3s ease;
}
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wiz-captcha-box.verified {
  border-color: rgba(34, 197, 94, 0.3);
  background: rgba(34, 197, 94, 0.03);
}

@media (max-width: 640px) {
  .wiz-svc-card {
    padding: 1rem 0.25rem;
  }
  .wiz-svc-icon {
    width: 2.25rem;
    height: 2.25rem;
  }
  .wiz-svc-name {
    font-size: 0.55rem;
  }
  .wiz-svc-check {
    width: 18px;
    height: 18px;
    top: 4px;
    right: 4px;
  }
}

.a4 {
  background: transparent;
}

.a4-watermark {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
[data-theme="light"] .a4-watermark {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.07) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.a4-heading {
  color: #ffffff;
}
[data-theme="light"] .a4-heading {
  color: var(--text-primary, #0f172a) !important;
}

.a4-text {
  font-family: "Inter", sans-serif;
  color: rgba(255, 255, 255, 0.6);
}
.a4-text strong {
  color: #fff;
  font-weight: 600;
}
[data-theme="light"] .a4-text {
  color: var(--text-tertiary, #475569) !important;
}
[data-theme="light"] .a4-text strong {
  color: var(--text-primary, #0f172a) !important;
}

.a4-text-muted {
  font-family: "Inter", sans-serif;
  color: rgba(255, 255, 255, 0.45);
}
[data-theme="light"] .a4-text-muted {
  color: var(--text-muted, #94a3b8) !important;
}

.a4-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #00aeef;
  padding: 12px 24px;
  border-radius: 12px;
  background: rgba(0, 174, 239, 0.08);
  border: 1px solid rgba(0, 174, 239, 0.2);
  transition: all 0.3s;
}
.a4-cta-link:hover {
  background: rgba(0, 174, 239, 0.15);
  border-color: rgba(0, 174, 239, 0.3);
  box-shadow: 0 0 20px rgba(0, 174, 239, 0.2);
}
[data-theme="light"] .a4-cta-link {
  background: rgba(0, 174, 239, 0.1);
  border-color: rgba(0, 174, 239, 0.25);
}
[data-theme="light"] .a4-cta-link:hover {
  background: rgba(0, 174, 239, 0.15);
  border-color: rgba(0, 174, 239, 0.4);
  box-shadow: 0 0 20px rgba(0, 174, 239, 0.15);
}

.a4-stats-cluster {
  background: rgba(10, 15, 25, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1.5rem;
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.5);
}
[data-theme="light"] .a4-stats-cluster {
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
}

.a4-stat-card {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
.a4-stat-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}
.a4-stat-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--sc);
  opacity: 0.3;
  transition: opacity 0.3s;
}
.a4-stat-card:hover .a4-stat-accent {
  opacity: 1;
  box-shadow: 0 0 15px var(--sc);
}

.a4-stat-card:hover .a4-stat-value {
  color: var(--sc);
  text-shadow: 0 0 15px color-mix(in srgb, var(--sc) 50%, transparent);
}

.a4-stat-value {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 4px;
}
.a4-stat-label {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

[data-theme="light"] .a4-stat-card {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.03);
}
[data-theme="light"] .a4-stat-card:hover {
  background: #fff;
  border-color: rgba(15, 23, 42, 0.15);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}
[data-theme="light"] .a4-stat-value {
  color: var(--text-primary, #0f172a);
}
[data-theme="light"] .a4-stat-label {
  color: var(--text-muted, #94a3b8);
}
[data-theme="light"] .a4-stat-card:hover .a4-stat-value {
  color: var(--sc);
}

@media (min-width: 768px) {
  .a4-stat-card {
    padding: 2rem 1.5rem;
  }
  .a4-stat-value {
    font-size: 2.5rem;
  }
  .a4-stat-label {
    font-size: 12px;
  }
}

[data-theme="light"] .a4-connector-dot {
  background: var(--bg-body, #f0f4f8) !important;
}

.a4-pillar {
  position: relative;
  height: 100%;
}
.a4-pillar-inner {
  height: 100%;
  background: rgba(10, 15, 25, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.a4-pillar-glow {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}
.a4-pillar:hover .a4-pillar-inner {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
  background: rgba(15, 20, 30, 0.85);
}
.a4-pillar:hover .a4-pillar-glow {
  opacity: 1;
}

.a4-pillar-num {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: 4rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
  transition: color 0.5s;
}
.a4-pillar:hover .a4-pillar-num {
  color: rgba(255, 255, 255, 0.06);
}

.a4-pillar-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ic);
  margin-bottom: 2rem;
  position: relative;
  transition: all 0.5s;
}
.a4-pillar-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}
.a4-pillar:hover .a4-pillar-icon {
  background: color-mix(in srgb, var(--ic) 15%, transparent);
  border-color: color-mix(in srgb, var(--ic) 40%, transparent);
  transform: scale(1.05);
  box-shadow: 0 0 20px color-mix(in srgb, var(--ic) 25%, transparent);
}

.a4-pillar-title {
  font-family: "Space Grotesk", font-sans;
  font-weight: 700;
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.a4-pillar-text {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2rem;
  flex-grow: 1;
}
.a4-pillar-text strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.a4-pillar-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.a4-feat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}
.a4-feat svg {
  color: var(--brand); 
}

[data-theme="light"] .a4-pillar-inner {
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
}
[data-theme="light"] .a4-pillar:hover .a4-pillar-inner {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(15, 23, 42, 0.15);
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
}
[data-theme="light"] .a4-pillar-num {
  color: rgba(15, 23, 42, 0.03);
}
[data-theme="light"] .a4-pillar:hover .a4-pillar-num {
  color: rgba(15, 23, 42, 0.05);
}
[data-theme="light"] .a4-pillar-icon {
  background: rgba(15, 23, 42, 0.03);
  border-color: rgba(15, 23, 42, 0.08);
}
[data-theme="light"] .a4-pillar-title {
  color: var(--text-primary, #0f172a);
}
[data-theme="light"] .a4-pillar-text {
  color: var(--text-tertiary, #475569);
}
[data-theme="light"] .a4-pillar-text strong {
  color: var(--text-primary, #0f172a);
}
[data-theme="light"] .a4-pillar-features {
  border-top-color: rgba(15, 23, 42, 0.08);
}
[data-theme="light"] .a4-feat {
  color: var(--text-secondary, #334155);
}
.a4-feat-excluded {
  color: rgba(255, 255, 255, 0.4);
}
.a4-feat-excluded svg:first-child {
  color: #ef4444;
}
[data-theme="light"] .a4-feat-excluded {
  color: rgba(51, 65, 85, 0.45);
}
[data-theme="light"] .a4-feat-excluded svg:first-child {
  color: #dc2626;
}

.a4-closing-box {
  position: relative;
  background: rgba(5, 8, 15, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2rem;
  padding: 3rem 2.5rem;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.a4-closing-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #00aeef, #a855f7, #10b981);
}
.a4-closing-logo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}
.a4-closing-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 1rem;
}
.a4-closing-text {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
}

[data-theme="light"] .a4-closing-box {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(15, 23, 42, 0.1);
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.05);
}
[data-theme="light"] .a4-closing-logo {
  background: rgba(255, 255, 255, 0.5);
  border-color: rgba(15, 23, 42, 0.15);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.05);
}
[data-theme="light"] .a4-closing-title {
  color: var(--text-primary, #0f172a);
}
[data-theme="light"] .a4-closing-text {
  color: var(--text-tertiary, #475569);
}

@media (min-width: 768px) {
  .a4-closing-box {
    padding: 4rem;
  }
  .a4-closing-title {
    font-size: 2.25rem;
  }
  .a4-closing-logo {
    width: 110px;
    height: 110px;
  }
}

.a4-tag {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
}
[data-theme="light"] .a4-tag {
  background: rgba(15, 23, 42, 0.03);
  border-color: rgba(15, 23, 42, 0.1);
  color: var(--text-tertiary, #475569);
}

[data-theme="light"] .ft-v2-newsletter {
  background: rgba(255, 255, 255, 0.9) !important;
  border-color: rgba(15, 23, 42, 0.1) !important;
  box-shadow: 0 4px 15px -4px rgba(15, 23, 42, 0.05);
}
[data-theme="light"] .ft-v2-newsletter:hover,
[data-theme="light"] .ft-v2-newsletter:focus-within {
  background: #ffffff !important;
  border-color: rgba(0, 174, 239, 0.4) !important;
  box-shadow: 0 8px 25px -5px rgba(0, 174, 239, 0.15) !important;
}
[data-theme="light"] .ft-v2-newsletter input {
  color: #1e293b !important;
}
[data-theme="light"] .ft-v2-newsletter input::placeholder {
  color: #94a3b8 !important;
}
[data-theme="light"] .ft-v2-newsletter .text-white\/30 {
  color: #94a3b8 !important;
}
[data-theme="light"] .ft-v2-newsletter:focus-within .text-white\/30 {
  color: #00aeef !important;
}

[data-theme="light"] .ft-v2-contact-icon {
  background: rgba(15, 23, 42, 0.04) !important;
  border-color: rgba(15, 23, 42, 0.08) !important;
}
[data-theme="light"] .group:hover .ft-v2-contact-icon {
  background: var(--hover-bg, rgba(15, 23, 42, 0.08)) !important;
  border-color: var(--hover-border, rgba(15, 23, 42, 0.15)) !important;
}
[data-theme="light"] .group:hover .ft-v2-contact-text {
  color: #0f172a !important;
}

.ticker-track {
  width: max-content;
  will-change: transform;
}

@keyframes marquee-left {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes marquee-right {
  0% {
    transform: translate3d(-50%, 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

.animate-marquee-left {
  animation: marquee-left 45s linear infinite;
}

.animate-marquee-right {
  animation: marquee-right 45s linear infinite;
}

#ecosystem-ticker:hover .animate-marquee-left,
#ecosystem-ticker:hover .animate-marquee-right {
  animation-play-state: paused;
}

.animate-axon-pulse {
  animation: axon-shoot 6s cubic-bezier(0.8, 0, 0.2, 1) infinite;
  will-change: transform, opacity;
}

@keyframes axon-shoot {
  0% {
    transform: translateX(-200px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: translateX(110vw);
    opacity: 0;
  }
}

.ticker-brutal {
  position: relative;
  user-select: none;
}

.ticker-brutal svg {
  transform: translateZ(0);
  will-change: transform, color;
}
/* ── Blog Section Styles ── */

/* Card hover glow effect */
.blog-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(
        600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(0, 174, 239, 0.06),
        transparent 40%
    );
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 0;
}
.blog-card:hover::before {
    opacity: 1;
}

/* Card header bar hover */
.blog-card:hover .blog-card-header {
    filter: brightness(1.2);
}
.blog-card-header {
    transition: filter 0.4s ease;
}

/* ── Article Content Styles ── */

.blog-content h2 {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.75rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.875rem;
    border-bottom: 1px solid rgba(0, 174, 239, 0.15);
    position: relative;
}

.blog-content h2::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, rgba(0, 174, 239, 0.8), transparent);
    border-radius: 2px;
}

.blog-content h3 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.35rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 3px solid rgba(0, 174, 239, 0.5);
}

.blog-content h4 {
    color: rgba(0, 174, 239, 0.8);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.blog-content p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.85;
    margin-bottom: 1.5rem;
}

.blog-content strong {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.blog-content a {
    color: #00AEEF;
    text-decoration: none;
    text-underline-offset: 3px;
    transition: all 0.2s ease;
}

.blog-content a:hover {
    text-decoration: underline;
    text-shadow: 0 0 12px rgba(0, 174, 239, 0.3);
}

/* Blockquotes */
.blog-content blockquote {
    border-left: 3px solid rgba(0, 174, 239, 0.5);
    background: rgba(0, 174, 239, 0.04);
    margin: 2rem 0;
    padding: 1.25rem 1.5rem;
    border-radius: 0 12px 12px 0;
    font-style: italic;
}

.blog-content blockquote p {
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0;
}

.blog-content blockquote p:not(:last-child) {
    margin-bottom: 0.75rem;
}

/* Horizontal rules */
.blog-content hr {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 174, 239, 0.3), transparent);
    margin: 3rem 0;
    position: relative;
}

.blog-content hr::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(0, 174, 239, 0.4);
    box-shadow: 0 0 8px rgba(0, 174, 239, 0.3);
}

/* Lists */
.blog-content ul,
.blog-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.blog-content ul li,
.blog-content ol li {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.625rem;
    line-height: 1.75;
    padding-left: 0.25rem;
}

.blog-content ul li::marker {
    color: rgba(0, 174, 239, 0.6);
}

.blog-content ol li::marker {
    color: rgba(0, 174, 239, 0.7);
    font-weight: 600;
}

/* Code blocks */
.blog-content pre {
    position: relative;
    overflow-x: auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    margin: 2rem 0;
    padding: 2.5rem 1.5rem 1.5rem;
}

.blog-content pre::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px 12px 0 0;
}

.blog-content pre::after {
    content: '●  ●  ●';
    position: absolute;
    top: 0.45rem;
    left: 1rem;
    font-size: 8px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.15);
}

.blog-content pre code {
    background: none;
    padding: 0;
    border-radius: 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Inline code */
.blog-content code {
    color: rgba(0, 174, 239, 0.85);
    background: rgba(0, 174, 239, 0.08);
    padding: 0.15rem 0.45rem;
    border-radius: 5px;
    font-size: 0.875em;
    border: 1px solid rgba(0, 174, 239, 0.1);
}

/* Images */
.blog-content img {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 8px 30px -8px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    margin: 2rem 0;
}

.blog-content img:hover {
    transform: scale(1.01);
}

/* Tables */
.blog-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.blog-content th,
.blog-content td {
    padding: 0.875rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-content th {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.blog-content td {
    color: rgba(255, 255, 255, 0.55);
}

.blog-content tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.015);
}

.blog-content tr:hover td {
    background: rgba(0, 174, 239, 0.03);
}

/* Reading progress bar */
#reading-progress {
    will-change: width;
}


/* ─────────────────────────────────────────── */
/* ── Blog Light Theme Overrides ───────────── */
/* ─────────────────────────────────────────── */

/* Card overrides */
[data-theme="light"] .blog-card {
    border-color: rgba(0, 0, 0, 0.08) !important;
}
[data-theme="light"] .blog-card .bg-white\/\[0\.02\] {
    background: rgba(255, 255, 255, 0.8);
}
[data-theme="light"] .blog-card-header {
    background: rgba(0, 0, 0, 0.02) !important;
}
[data-theme="light"] .blog-card-title,
[data-theme="light"] .blog-card-title a {
    color: #1a1a2e !important;
}
[data-theme="light"] .blog-card-title a:hover {
    color: #00AEEF !important;
}
[data-theme="light"] .blog-card-desc {
    color: rgba(0, 0, 0, 0.55) !important;
}
[data-theme="light"] .blog-card-meta {
    color: rgba(0, 0, 0, 0.4) !important;
}
[data-theme="light"] .blog-card .border-t {
    border-color: rgba(0, 0, 0, 0.06);
}

/* Article content light theme */
[data-theme="light"] .blog-content h2 {
    color: #1a1a2e;
    border-bottom-color: rgba(0, 174, 239, 0.12);
}
[data-theme="light"] .blog-content h2::after {
    background: linear-gradient(to right, rgba(0, 174, 239, 0.6), transparent);
}
[data-theme="light"] .blog-content h3 {
    color: #1a1a2e;
    border-left-color: rgba(0, 174, 239, 0.4);
}
[data-theme="light"] .blog-content h4 {
    color: rgba(0, 174, 239, 0.7);
}
[data-theme="light"] .blog-content p {
    color: rgba(0, 0, 0, 0.65);
}
[data-theme="light"] .blog-content strong {
    color: #1a1a2e;
}
[data-theme="light"] .blog-content a {
    color: #00AEEF;
}
[data-theme="light"] .blog-content a:hover {
    text-shadow: 0 0 12px rgba(0, 174, 239, 0.2);
}

/* Light blockquote */
[data-theme="light"] .blog-content blockquote {
    background: rgba(0, 174, 239, 0.04);
    border-left-color: rgba(0, 174, 239, 0.4);
}
[data-theme="light"] .blog-content blockquote p {
    color: rgba(0, 0, 0, 0.55);
}

/* Light hr */
[data-theme="light"] .blog-content hr {
    background: linear-gradient(to right, transparent, rgba(0, 174, 239, 0.2), transparent);
}
[data-theme="light"] .blog-content hr::after {
    background: rgba(0, 174, 239, 0.3);
    box-shadow: 0 0 6px rgba(0, 174, 239, 0.2);
}

/* Light lists */
[data-theme="light"] .blog-content ul li,
[data-theme="light"] .blog-content ol li {
    color: rgba(0, 0, 0, 0.65);
}
[data-theme="light"] .blog-content ul li::marker {
    color: rgba(0, 174, 239, 0.5);
}
[data-theme="light"] .blog-content ol li::marker {
    color: rgba(0, 174, 239, 0.6);
}

/* Light code */
[data-theme="light"] .blog-content pre {
    background: #f8f9fa;
    border-color: rgba(0, 0, 0, 0.08);
}
[data-theme="light"] .blog-content pre::before {
    background: rgba(0, 0, 0, 0.03);
    border-bottom-color: rgba(0, 0, 0, 0.06);
}
[data-theme="light"] .blog-content pre::after {
    color: rgba(0, 0, 0, 0.2);
}
[data-theme="light"] .blog-content pre code {
    color: #333;
}
[data-theme="light"] .blog-content code {
    color: #0090c5;
    background: rgba(0, 174, 239, 0.07);
    border-color: rgba(0, 174, 239, 0.1);
}

/* Light images */
[data-theme="light"] .blog-content img {
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 30px -8px rgba(0, 0, 0, 0.12);
}

/* Light tables */
[data-theme="light"] .blog-content table {
    border-color: rgba(0, 0, 0, 0.08);
}
[data-theme="light"] .blog-content th {
    background: rgba(0, 0, 0, 0.04);
    color: #1a1a2e;
    border-bottom-color: rgba(0, 0, 0, 0.08);
}
[data-theme="light"] .blog-content td {
    color: rgba(0, 0, 0, 0.6);
    border-bottom-color: rgba(0, 0, 0, 0.05);
}
[data-theme="light"] .blog-content tr:nth-child(even) td {
    background: rgba(0, 0, 0, 0.015);
}
[data-theme="light"] .blog-content tr:hover td {
    background: rgba(0, 174, 239, 0.03);
}

/* Card date/bullet light override */
[data-theme="light"] .blog-card-header .text-white\/35 {
    color: rgba(0, 0, 0, 0.4) !important;
}
[data-theme="light"] .blog-card-header .text-white\/20 {
    color: rgba(0, 0, 0, 0.2) !important;
}
.gw-type-tab.active {
  background: rgba(66, 133, 244, 0.12);
  border-color: rgba(66, 133, 244, 0.35);
}
.gw-type-tab.active span {
  color: #fff;
}
.gw-user-preset.active {
  background: rgba(66, 133, 244, 0.15);
  border-color: rgba(66, 133, 244, 0.4);
  color: #4285f4;
}
.gw-billing-toggle.annual .gw-toggle-dot {
  transform: translateX(28px);
}
.gw-billing-label.active-billing {
  color: rgba(255, 255, 255, 0.9);
}
[data-theme="light"] .gw-whyus-axon-text {
  color: #0f172a;
}

@keyframes gw-orbit-float {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-6px); }
}
@keyframes gw-orb-drift-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}
@keyframes gw-orb-drift-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-25px, 25px) scale(0.97); }
  66% { transform: translate(20px, -15px) scale(1.03); }
}
@keyframes gw-ring-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.gw-orb-1 { animation: gw-orb-drift-1 20s ease-in-out infinite; }
.gw-orb-2 { animation: gw-orb-drift-2 25s ease-in-out infinite; }
.gw-orb-3 { animation: gw-orb-drift-1 30s ease-in-out infinite reverse; }

.gw-orbit-node {
  animation: gw-orbit-float 4s ease-in-out infinite;
}

.gw-orbit-rings circle:nth-child(2) {
  animation: gw-ring-rotate 120s linear infinite;
  transform-origin: 290px 290px;
}
.gw-orbit-rings circle:nth-child(3) {
  animation: gw-ring-rotate 180s linear infinite reverse;
  transform-origin: 290px 290px;
}

@media (max-width: 640px) {
  .gw-orbit-container { width: 100% !important; max-width: 360px; }
  .gw-orbit-node span { display: none; }
}
#cmd-overlay {
  opacity: 0;
  transition: opacity 0.15s ease;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  align-items: flex-start;
  padding-top: 14vh;
}

#cmd-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.cmd-modal-shell {
  width: 95%;
  max-width: 640px;
  max-height: 70vh;
  background: rgba(8, 8, 13, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 25px 60px -12px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.03);
  transform: scale(0.97) translateY(-10px);
  opacity: 0;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.15s ease;
}

#cmd-overlay.active .cmd-modal-shell {
  transform: scale(1) translateY(0);
  opacity: 1;
}

#cmd-results {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 174, 239, 0.3) transparent;
}

#cmd-results::-webkit-scrollbar { width: 4px; }
#cmd-results::-webkit-scrollbar-track { background: transparent; }
#cmd-results::-webkit-scrollbar-thumb { background: rgba(0, 174, 239, 0.3); border-radius: 4px; transition: background 0.2s; }
#cmd-results::-webkit-scrollbar-thumb:hover { background: rgba(0, 174, 239, 0.6); }

.cmd-item { position: relative; }

.cmd-item.active {
  background: rgba(255, 255, 255, 0.05);
}

.cmd-item.active > div:first-child {
  transform: scale(1.4);
}

.cmd-item.active .cmd-arrow {
  opacity: 1;
  transform: translateX(0);
  color: rgba(255, 255, 255, 0.4);
}

.cmd-arrow {
  opacity: 0;
  transform: translateX(-4px);
  font-size: 18px;
  line-height: 1;
}

[data-theme="light"] #cmd-overlay {
  background: rgba(148, 163, 184, 0.45);
}

[data-theme="light"] .cmd-modal-shell {
  background: rgba(255, 255, 255, 0.96);
  border-color: var(--border-color);
  box-shadow: var(--shadow-strong), 0 0 0 1px var(--border-color);
}

[data-theme="light"] #cmd-input {
  color: var(--text-primary);
}

[data-theme="light"] #cmd-input::placeholder {
  color: var(--text-muted);
}

[data-theme="light"] #cmd-results {
  scrollbar-color: rgba(0, 174, 239, 0.25) transparent;
}

[data-theme="light"] #cmd-results::-webkit-scrollbar-thumb {
  background: rgba(0, 174, 239, 0.25);
}

[data-theme="light"] #cmd-results::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 174, 239, 0.5);
}

[data-theme="light"] .cmd-item.active {
  background: rgba(0, 174, 239, 0.06);
}

[data-theme="light"] .cmd-item.active .cmd-arrow {
  color: var(--text-tertiary);
}

[data-theme="light"] .cmd-item .text-sm {
  color: var(--text-secondary);
}

[data-theme="light"] .cmd-item .text-xs {
  color: var(--text-muted);
}

[data-theme="light"] .cmd-item .text-\[10px\] {
  color: var(--text-muted);
}

[data-theme="light"] #cmd-results > .border-b {
  border-color: var(--border-color);
}

[data-theme="light"] #cmd-results .text-\[10px\].uppercase {
  color: var(--text-muted);
}

[data-theme="light"] #cmd-overlay svg {
  color: var(--text-muted);
}

[data-theme="light"] #cmd-modal > .border-b {
  border-color: var(--border-color);
}

[data-theme="light"] #cmd-modal > .border-b svg {
  color: var(--text-muted);
}

[data-theme="light"] #cmd-close-btn {
  color: var(--text-tertiary);
}

[data-theme="light"] #cmd-modal kbd {
  color: var(--text-muted);
  border-color: var(--border-color);
}

@media (max-width: 639px) {
  #cmd-overlay {
    padding-top: 0;
    align-items: stretch;
    background: rgba(5, 5, 10, 0.98);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .cmd-modal-shell {
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    height: 100%;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    transform: none;
    opacity: 1;
  }

  #cmd-overlay.active .cmd-modal-shell {
    transform: none;
  }

  #cmd-results {
    flex: 1;
    max-height: none;
  }

  [data-theme="light"] #cmd-overlay {
    background: rgba(240, 244, 248, 0.98);
  }

  [data-theme="light"] .cmd-modal-shell {
    background: transparent;
  }
}
.status-hub-monitors {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 174, 239, 0.2) transparent;
}
.status-hub-monitors::-webkit-scrollbar {
  width: 4px;
}
.status-hub-monitors::-webkit-scrollbar-track {
  background: transparent;
}
.status-hub-monitors::-webkit-scrollbar-thumb {
  background: rgba(0, 174, 239, 0.2);
  border-radius: 4px;
}
.status-hub-monitors::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 174, 239, 0.4);
}

.status-hub-region-label {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 0 2px;
  color: rgba(255, 255, 255, 0.2);
}

.status-hub-monitor-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 8px;
  margin: 0 -8px;
  border-radius: 8px;
  transition: background 0.15s;
}
.status-hub-monitor-row:hover {
  background: rgba(255, 255, 255, 0.04);
}

#status-hub-backdrop {
  background: rgba(0, 0, 0, 0.6);
}

@media (max-width: 767px) {
  #live-status-widget {
    top: auto !important;
    bottom: 5.5rem !important;
    transform: none !important;
    left: 0 !important;
  }
  #status-hub-trigger {
    padding: 6px 6px 6px 10px !important;
    gap: 5px !important;
    border-radius: 0 0.75rem 0.75rem 0 !important;
  }
  #status-hub-trigger .status-hub-ping {
    display: none !important;
  }
  #status-hub-dot {
    width: 8px !important;
    height: 8px !important;
  }
  #status-hub-dot .status-hub-dot-inner {
    width: 8px !important;
    height: 8px !important;
  }
  #status-hub-label {
    font-size: 7px !important;
    letter-spacing: 0.1em !important;
  }
  #status-hub-panel {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(5, 8, 15, 0.98) !important;
  }
  #status-hub-monitors {
    max-height: 65vh !important;
  }
}
.infra-map {
  position: relative;
  z-index: 1;
}

#infra-map {
  background: #080b14;
}
#infra-map .leaflet-control-attribution { display: none; }
#infra-map .leaflet-control-zoom { display: none; }
#infra-map .leaflet-tile-pane { filter: brightness(0.7) saturate(0.3); }

.infra-marker-main {
  width: 16px !important;
  height: 16px !important;
  margin-left: -8px !important;
  margin-top: -8px !important;
  background: #00AEEF;
  border-radius: 50%;
  border: 2px solid rgba(0, 174, 239, 0.4);
  box-shadow:
    0 0 8px rgba(0, 174, 239, 0.7),
    0 0 20px rgba(0, 174, 239, 0.35),
    0 0 45px rgba(0, 174, 239, 0.15);
  animation: infra-pulse 3s ease-in-out infinite;
  cursor: pointer;
  transition: all 0.3s ease;
}
.infra-marker-main:hover {
  transform: scale(1.3);
  box-shadow:
    0 0 12px rgba(0, 174, 239, 0.9),
    0 0 30px rgba(0, 174, 239, 0.5),
    0 0 60px rgba(0, 174, 239, 0.2);
}
.infra-marker-main::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid rgba(0, 174, 239, 0.25);
  animation: infra-ripple 3.5s ease-out infinite;
  pointer-events: none;
}

.infra-marker-secondary {
  width: 10px !important;
  height: 10px !important;
  margin-left: -5px !important;
  margin-top: -5px !important;
  background: var(--mk-color, rgba(0, 174, 239, 0.5));
  border-radius: 50%;
  border: 1.5px solid color-mix(in srgb, var(--mk-color, #00AEEF) 50%, transparent);
  box-shadow: 0 0 8px color-mix(in srgb, var(--mk-color, #00AEEF) 40%, transparent);
  cursor: pointer;
  transition: all 0.3s ease;
  animation: infra-pulse-soft 4s ease-in-out infinite;
}
.infra-marker-secondary:hover {
  transform: scale(1.4);
  background: var(--mk-color, #00AEEF);
  box-shadow:
    0 0 12px color-mix(in srgb, var(--mk-color, #00AEEF) 70%, transparent),
    0 0 28px color-mix(in srgb, var(--mk-color, #00AEEF) 35%, transparent);
}

.infra-tooltip {
  background: rgba(5, 10, 20, 0.9) !important;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 174, 239, 0.25) !important;
  border-radius: 8px !important;
  padding: 6px 14px !important;
  color: rgba(255, 255, 255, 0.9) !important;
  font-family: 'Space Grotesk', sans-serif !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.03em !important;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.5),
    0 0 15px rgba(0, 174, 239, 0.1) !important;
  white-space: nowrap !important;
}
.infra-tooltip::before {
  border-top-color: rgba(0, 174, 239, 0.25) !important;
}
.infra-tooltip-main {
  border-color: rgba(0, 174, 239, 0.4) !important;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(0, 174, 239, 0.15) !important;
}

.infra-arc {
  fill: none;
  stroke: rgba(0, 174, 239, 0.15);
  stroke-width: 1.2;
  stroke-dasharray: 6 4;
  pointer-events: none;
}
.infra-arc-main {
  stroke: rgba(0, 174, 239, 0.22);
  stroke-width: 1.5;
}
.infra-arc-active {
  stroke: rgba(0, 174, 239, 0.5) !important;
  stroke-width: 2 !important;
  stroke-dasharray: none !important;
}

@keyframes infra-pulse {
  0%, 100% {
    box-shadow:
      0 0 8px rgba(0, 174, 239, 0.7),
      0 0 20px rgba(0, 174, 239, 0.35),
      0 0 45px rgba(0, 174, 239, 0.15);
  }
  50% {
    box-shadow:
      0 0 12px rgba(0, 174, 239, 0.9),
      0 0 30px rgba(0, 174, 239, 0.5),
      0 0 55px rgba(0, 174, 239, 0.2);
  }
}

@keyframes infra-pulse-soft {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

@keyframes infra-ripple {
  0% { width: 16px; height: 16px; opacity: 0.5; }
  100% { width: 50px; height: 50px; opacity: 0; }
}

.infra-stat {
  position: relative;
  padding: 1.5rem 1.25rem 1.25rem;
  text-align: center;
  overflow: hidden;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.infra-stat::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--stat-color), transparent);
  opacity: 0.3;
  transition: opacity 0.4s ease;
}
.infra-stat:hover {
  border-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.025);
}
.infra-stat:hover::before { opacity: 0.7; }

.infra-stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: white;
  line-height: 1;
  letter-spacing: -0.02em;
  transition: all 0.35s ease;
}
.infra-stat:hover .infra-stat-value {
  color: var(--stat-color);
  text-shadow: 0 0 20px color-mix(in srgb, var(--stat-color) 40%, transparent);
}
.infra-stat-prefix { font-weight: 400; opacity: 0.7; }
.infra-stat-suffix { font-size: 1rem; font-weight: 500; opacity: 0.6; margin-left: 2px; }
.infra-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 0.35rem;
}

.infra-stat-bar {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--stat-color);
  border-radius: 1px;
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0.5;
  box-shadow: 0 0 8px var(--stat-color);
}
.infra-stat:hover .infra-stat-bar { width: 60%; opacity: 0.8; }

@media (max-width: 767px) {
  #infra-map { height: 320px !important; }
  .infra-stat-value { font-size: 1.75rem; }
  .infra-stat { padding: 1.15rem 1rem 1rem; }
  .infra-marker-main { width: 12px !important; height: 12px !important; margin-left: -6px !important; margin-top: -6px !important; }
  .infra-marker-secondary { width: 7px !important; height: 7px !important; margin-left: -3.5px !important; margin-top: -3.5px !important; }
}

[data-theme="light"] #infra-map { background: #e8ecf0; }
[data-theme="light"] #infra-map .leaflet-tile-pane { filter: brightness(1.1) saturate(0.5) contrast(0.9); }
[data-theme="light"] .infra-map { border-color: rgba(15, 23, 42, 0.08); }
[data-theme="light"] .infra-tooltip {
  background: rgba(255, 255, 255, 0.92) !important;
  border-color: rgba(0, 174, 239, 0.2) !important;
  color: var(--text-primary) !important;
  box-shadow: var(--shadow-medium) !important;
}
[data-theme="light"] .infra-stat {
  background: rgba(255, 255, 255, 0.5);
  border-color: rgba(15, 23, 42, 0.06);
}
[data-theme="light"] .infra-stat:hover {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(15, 23, 42, 0.1);
  box-shadow: var(--shadow-medium);
}
[data-theme="light"] .infra-stat-value { color: var(--text-primary); }
[data-theme="light"] .infra-stat-label { color: var(--text-tertiary); }
.cs-img-slot {
  position: relative;
  border: 2px dashed rgba(255, 255, 255, 0.14);
  border-radius: 1rem;
  background:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.015) 0 12px, transparent 12px 24px),
    rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-align: center;
  padding: 1.5rem;
  min-height: 180px;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.cs-img-slot:hover {
  border-color: rgba(0, 174, 239, 0.35);
}

.cs-img-slot svg {
  opacity: 0.25;
}

.cs-img-slot .cs-slot-label {
  font-family: "Space Grotesk", monospace;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.cs-img-slot .cs-slot-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  max-width: 260px;
  line-height: 1.5;
}

.cs-img-slot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.9rem;
}

.cs-stat-value {
  background: linear-gradient(90deg, #00aeef, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cs-timeline {
  position: relative;
}

.cs-timeline::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, rgba(0, 174, 239, 0.5), rgba(99, 102, 241, 0.2), transparent);
}

@media (min-width: 768px) {
  .cs-timeline::before {
    left: 23px;
  }
}

.cs-ba-col {
  position: relative;
  overflow: hidden;
}

.cs-ba-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 10;
  font-family: "Space Grotesk", monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.cs-shot-scroll {
  height: 480px;
  overflow-y: auto;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 174, 239, 0.4) transparent;
}

@media (min-width: 768px) {
  .cs-shot-scroll {
    height: 560px;
  }
}

.cs-shot-scroll::-webkit-scrollbar {
  width: 6px;
}

.cs-shot-scroll::-webkit-scrollbar-thumb {
  background: rgba(0, 174, 239, 0.35);
  border-radius: 999px;
}

.cs-shot-scroll img {
  display: block;
  width: 100%;
  height: auto;
}

.cs-scroll-hint {
  position: absolute;
  bottom: 12px;
  right: 14px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: "Space Grotesk", monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 4px 10px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  pointer-events: none;
}

.cs-card-media {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cs-card-media img.cs-card-shot {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.group:hover .cs-card-media img.cs-card-shot {
  transform: scale(1.03);
}

.cs-logo-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 0.75rem;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.cs-logo-badge img {
  height: 28px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
}

.cs-chip {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  font-family: "Space Grotesk", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  background: rgba(1, 1, 3, 0.72);
  border: 1px solid rgba(0, 174, 239, 0.4);
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

html[data-theme="light"] .cs-img-slot {
  border-color: rgba(15, 23, 42, 0.18);
  background:
    repeating-linear-gradient(45deg, rgba(15, 23, 42, 0.02) 0 12px, transparent 12px 24px),
    rgba(15, 23, 42, 0.03);
}

html[data-theme="light"] .cs-img-slot .cs-slot-label {
  color: rgba(15, 23, 42, 0.4);
}

html[data-theme="light"] .cs-img-slot .cs-slot-desc {
  color: rgba(15, 23, 42, 0.5);
}
