:root {
  --motion-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --motion-fast: 180ms;
  --motion-base: 320ms;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
input, textarea, select, pre, code, .ip-ua-code, .ip-master-value, [data-copyable] {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}
body > header { z-index: 60 !important; }
::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 380ms;
  animation-timing-function: var(--motion-ease);
  mix-blend-mode: normal;
}
::view-transition-old(root) { animation-name: theme-fade-out; }
::view-transition-new(root) { animation-name: theme-fade-in; }
@keyframes theme-fade-out { to { opacity: 0; } }
@keyframes theme-fade-in { from { opacity: 0; } }
html.theme-transitioning body,
html.theme-transitioning header,
html.theme-transitioning main > section,
html.theme-transitioning footer,
html.theme-transitioning .pricing-card,
html.theme-transitioning .enterprise-card,
html.theme-transitioning .dropdown-panel,
html.theme-transitioning #mobile-drawer-sheet {
  transition: background-color 380ms var(--motion-ease), color 380ms var(--motion-ease), border-color 380ms var(--motion-ease), box-shadow 380ms var(--motion-ease);
}
.theme-toggle-btn.is-switching > span { animation: theme-icon-swap 420ms var(--motion-ease); }
@keyframes theme-icon-swap {
  0% { opacity: 1; transform: rotate(0deg) scale(1); }
  45% { opacity: 0; transform: rotate(28deg) scale(.72); }
  100% { opacity: 1; transform: rotate(0deg) scale(1); }
}
.header-blur-layer-1 {
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0,0,0,.96) 55%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, rgba(0,0,0,.96) 55%, transparent 100%);
  transform: translateZ(0);
}
.header-blur-layer-2,
.header-blur-layer-3,
.header-blur-layer-4,
.header-blur-layer-5,
.header-blur-layer-6 { display: none; }
.logo-icon-header {
  height: 21.5px;
}
.logo-icon-mobile {
  height: 19px;
}
.cpu-progress-bar {
  width: 41.8%;
}
.ram-progress-bar {
  width: 68.2%;
}
.nvme-progress-bar {
  width: 82%;
}
.footer-watermark-base {
  color: rgba(0, 0, 0, 0.05) !important;
  transition: opacity 0.3s ease;
}
html.dark .footer-watermark-base,
.dark .footer-watermark-base {
  color: rgba(255, 255, 255, 0.05) !important;
}
#footer-spotlight-layer {
  opacity: 1 !important;
  pointer-events: none;
  color: #09090b !important;
  filter: none !important;
  -webkit-filter: none !important;
}
html.dark #footer-spotlight-layer,
.dark #footer-spotlight-layer {
  color: #ffffff !important;
  filter: none !important;
  -webkit-filter: none !important;
}
.footer-newsletter-pill {
  display: flex;
  align-items: center;
  width: 100%;
  background: #ffffff;
  border: 1px solid #e4e4e7;
  border-radius: 12px;
  padding: 4px 5px 4px 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;
}
.dark .footer-newsletter-pill {
  background: #111115;
  border-color: #27272a;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
.footer-newsletter-pill:focus-within {
  border-color: #09090b;
  box-shadow: 0 0 0 3px rgba(9, 9, 11, 0.08);
}
.dark .footer-newsletter-pill:focus-within {
  border-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.14);
}
.footer-newsletter-icon {
  color: #a1a1aa;
  display: flex;
  align-items: center;
  margin-right: 8px;
  flex-shrink: 0;
}
.footer-newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: 13.5px;
  color: #09090b;
  min-width: 0;
  padding: 6px 0;
}
.dark .footer-newsletter-input {
  color: #ffffff;
}
.footer-newsletter-input::placeholder {
  color: #a1a1aa;
}
.footer-newsletter-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #09090b;
  color: #ffffff;
  font-size: 12.5px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.15s ease;
}
.dark .footer-newsletter-btn {
  background: #ffffff;
  color: #09090b;
}
.footer-newsletter-btn:hover {
  opacity: 0.92;
  transform: translateY(-0.5px);
}
.footer-newsletter-btn:active {
  transform: scale(0.98);
}
.footer-newsletter-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: #71717a;
  margin-top: 8px;
}
.dark .footer-newsletter-meta {
  color: #a1a1aa;
}
.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  display: inline-block;
}
#header-dropdown-container {
  position: fixed !important;
  top: 56px !important;
  left: 50vw !important;
  display: block !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none !important;
  transform: translateX(-50%) translateY(-8px) scale(.99);
  transform-origin: top center;
  transition: opacity 0.18s cubic-bezier(0.16, 1, 0.3, 1), transform 0.18s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.18s linear;
  will-change: opacity, transform;
  z-index: 100000;
}
#header-dropdown-container::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
  background: transparent;
  pointer-events: auto;
}
#header-dropdown-container.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto !important;
  transform: translateX(-50%) translateY(0) scale(1);
}
#header-dropdown-container.is-closing {
  opacity: 0;
  visibility: hidden;
  pointer-events: none !important;
  transform: translateX(-50%) translateY(-6px) scale(.99);
  transition: opacity 0.15s cubic-bezier(0.16, 1, 0.3, 1), transform 0.15s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.15s linear;
}
@keyframes dropdownFirstOpen {
  0% {
    opacity: 0;
    transform: translateY(-6px) scale(0.99);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes dropdownContentSlideRight {
  0% {
    opacity: 0.4;
    transform: translateX(24px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes dropdownContentSlideLeft {
  0% {
    opacity: 0.4;
    transform: translateX(-24px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
#header-dropdown-container.first-open .dropdown-panel {
  animation: dropdownFirstOpen 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}
#header-dropdown-container.slide-to-right .dropdown-panel,
#header-dropdown-container.slide-to-left .dropdown-panel {
  animation: none !important;
  opacity: 1 !important;
  transform: none !important;
}
#header-dropdown-container.slide-to-right .dropdown-panel > div {
  animation: dropdownContentSlideRight 0.22s cubic-bezier(0.16, 1, 0.3, 1) both;
}
#header-dropdown-container.slide-to-left .dropdown-panel > div {
  animation: dropdownContentSlideLeft 0.22s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.dropdown-panel {
  width: 960px;
  max-width: calc(100vw - 32px);
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid #e4e4e7;
  border-radius: 18px;
  box-shadow: 0 28px 56px -12px rgba(0, 0, 0, 0.14), 0 8px 20px -4px rgba(0, 0, 0, 0.06);
  padding: 24px;
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.22s ease;
}
.dark .dropdown-panel {
  background: rgba(9, 9, 11, 0.96) !important;
  border-color: #27272a !important;
  box-shadow: 0 36px 72px -16px rgba(0, 0, 0, 0.95), 0 10px 24px -4px rgba(0, 0, 0, 0.6) !important;
}
.dropdown-menu-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  color: #27272a;
}
.dark .dropdown-menu-item {
  color: #f4f4f5;
}
.dropdown-menu-item:hover {
  background: #f4f4f5;
  transform: translateX(4px);
  color: #09090b;
}
.dark .dropdown-menu-item:hover {
  background: #18181b;
  transform: translateX(4px);
  color: #ffffff;
}
.dropdown-icon-wrapper {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #f4f4f5;
  color: #18181b;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  border: 1px solid #e4e4e7;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}
.dark .dropdown-icon-wrapper {
  background: #121216;
  border-color: #27272a;
  color: #d4d4d8;
}
.dropdown-menu-item:hover .dropdown-icon-wrapper {
  background: #09090b;
  border-color: #09090b;
  color: #ffffff;
  transform: scale(1.06);
}
.dark .dropdown-menu-item:hover .dropdown-icon-wrapper {
  background: #ffffff;
  border-color: #ffffff;
  color: #09090b;
  transform: scale(1.06);
}
@keyframes dropdownContentSwap {
  from { opacity: .55; transform: translateY(3px); }
  to { opacity: 1; transform: translateY(0); }
}
.theme-toggle-btn {
  height: 34px !important;
  width: 34px !important;
  min-height: 34px !important;
  min-width: 34px !important;
  max-height: 34px !important;
  max-width: 34px !important;
  border-radius: 9px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
}
.login-action-btn {
  height: 34px !important;
  border-radius: 9px !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 16px !important;
}
.nav-backdrop-overlay {
  position: fixed;
  inset: 0;
  top: 58px;
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px) saturate(145%);
  -webkit-backdrop-filter: blur(12px) saturate(145%);
  transition: opacity var(--motion-base) var(--motion-ease);
  will-change: opacity;
}
.dark .nav-backdrop-overlay {
  background-color: rgba(0, 0, 0, 0.55);
}
.nav-backdrop-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
#mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
#mobile-drawer.active {
  opacity: 1;
  pointer-events: auto;
}
#mobile-drawer-sheet {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 380px;
  max-width: 100vw;
  height: 100%;
  height: 100dvh;
  background: #ffffff;
  border-right: 1px solid #e4e4e7;
  box-shadow: 24px 0 60px rgba(0, 0, 0, 0.25);
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  overflow: hidden;
}
.dark #mobile-drawer-sheet {
  background: #09090b;
  border-right-color: #27272a;
  box-shadow: 24px 0 60px rgba(0, 0, 0, 0.85);
}
#mobile-drawer.active #mobile-drawer-sheet {
  transform: translateX(0);
}
.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px 8px;
  min-height: 56px;
  box-sizing: border-box;
}
@keyframes mobileCloseSpin {
  0% {
    opacity: 0;
    transform: rotate(0deg) scale(0.75);
  }
  100% {
    opacity: 1;
    transform: rotate(360deg) scale(1);
  }
}
@keyframes mobileBackArrowSpin {
  0% {
    opacity: 0;
    transform: translateX(-15px) rotate(-180deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0) rotate(0deg);
  }
}
.mobile-drawer-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #09090b;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  user-select: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.dark .mobile-drawer-back-btn {
  color: #ffffff;
}
#mobile-drawer-sheet.is-drilldown .mobile-drawer-back-btn {
  opacity: 1;
  pointer-events: auto;
}
#mobile-drawer-sheet.is-drilldown .mobile-drawer-back-btn svg {
  animation: mobileBackArrowSpin 0.5s cubic-bezier(0.25, 1, 0.35, 1) both;
}
.mobile-drawer-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 0;
  background: #f4f4f5;
  color: #71717a;
  opacity: 0;
  transition: background 0.2s ease, color 0.2s ease;
}
#mobile-drawer.active .mobile-drawer-close-btn {
  opacity: 1;
}
#mobile-drawer.active .mobile-drawer-close-btn svg {
  animation: mobileCloseSpin 0.75s cubic-bezier(0.25, 1, 0.35, 1) both;
}
.dark .mobile-drawer-close-btn {
  background: #18181b;
  color: #a1a1aa;
}
.mobile-drawer-close-btn:hover,
.mobile-drawer-close-btn:active {
  background: #09090b;
  color: #ffffff;
}
.dark .mobile-drawer-close-btn:hover,
.dark .mobile-drawer-close-btn:active {
  background: #ffffff;
  color: #09090b;
}
.mobile-drawer-client-login {
  padding: 6px 24px 14px;
}
.mobile-client-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid #d4d4d8;
  border-radius: 6px;
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  color: #52525b;
  background: transparent;
  transition: all 0.2s ease;
}
.dark .mobile-client-btn {
  border-color: #3f3f46;
  color: #d4d4d8;
}
.mobile-client-btn:hover {
  background: #09090b;
  color: #ffffff;
  border-color: #09090b;
}
.dark .mobile-client-btn:hover {
  background: #ffffff;
  color: #09090b;
  border-color: #ffffff;
}
.mobile-drawer-main-view {
  padding: 16px 28px 40px;
  overflow-y: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-sizing: border-box;
  animation: mobileViewFadeIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-nav-category-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 500;
  color: #09090b;
  cursor: pointer;
  padding: 6px 0;
  transition: color 0.2s ease, transform 0.15s ease;
  user-select: none;
}
.dark .mobile-nav-category-row {
  color: #f4f4f5;
}
.mobile-nav-category-row:hover,
.mobile-nav-category-row:active {
  color: #2563eb;
  transform: translateX(4px);
}
.dark .mobile-nav-category-row:hover,
.dark .mobile-nav-category-row:active {
  color: #60a5fa;
}
.mobile-cat-arrow {
  color: #a1a1aa;
}
.mobile-direct-link-row {
  padding: 4px 0;
}
.mobile-direct-link {
  font-size: 19px;
  font-weight: 500;
  color: #52525b;
  text-decoration: none;
  transition: color 0.2s ease;
  display: block;
}
.dark .mobile-direct-link {
  color: #a1a1aa;
}
.mobile-direct-link:hover,
.mobile-direct-link:active {
  color: #09090b;
}
.dark .mobile-direct-link:hover,
.dark .mobile-direct-link:active {
  color: #ffffff;
}
.mobile-drawer-sub-view {
  padding: 12px 28px 40px;
  overflow-y: auto;
  flex: 1;
  display: none;
  flex-direction: column;
  box-sizing: border-box;
  animation: mobileSubViewSlide 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes mobileSubViewSlide {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes mobileViewFadeIn {
  from {
    opacity: 0;
    transform: translateX(-15px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.mobile-sub-header-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #09090b;
  margin-bottom: 20px;
  padding-bottom: 12px;
  position: relative;
}
.dark .mobile-sub-header-title {
  color: #ffffff;
}
.mobile-sub-header-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: #09090b;
}
.dark .mobile-sub-header-title::after {
  background: #ffffff;
}
.mobile-sub-content-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.dark .mobile-subgroup-title {
  color: #a1a1aa;
  border-color: rgba(255, 255, 255, 0.08);
}
.mobile-sub-link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 6px 0;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  text-decoration: none;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}
.mobile-sub-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.04);
  color: #09090b;
  flex-shrink: 0;
  margin-top: 1px;
}
.dark .mobile-sub-icon {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}
.mobile-sub-content {
  flex: 1;
  min-width: 0;
}
.mobile-sub-link:hover,
.mobile-sub-link:active {
  transform: translateX(4px);
}
.mobile-sub-title {
  font-size: 15px;
  font-weight: 600;
  color: #09090b;
  margin-bottom: 3px;
  line-height: 1.3;
  transition: color 0.2s ease;
}
.dark .mobile-sub-title {
  color: #ffffff;
}
.mobile-sub-link:hover .mobile-sub-title,
.mobile-sub-link:active .mobile-sub-title {
  color: #2563eb;
}
.dark .mobile-sub-link:hover .mobile-sub-title,
.dark .mobile-sub-link:active .mobile-sub-title {
  color: #60a5fa;
}
.mobile-sub-desc {
  font-size: 12.5px;
  color: #71717a;
  line-height: 1.4;
}
.dark .mobile-sub-desc {
  color: #a1a1aa;
}
.mobile-direct-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 500;
  color: #09090b;
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.2s ease;
}
.dark .mobile-direct-link {
  color: #f4f4f5;
}
.mobile-direct-link:hover {
  color: #2563eb;
}
.dark .mobile-direct-link:hover {
  color: #60a5fa;
}
.dark .mobile-sub-card:hover,
.dark .mobile-sub-card:active {
  background: #18181e;
  border-color: #27272f;
}
#console-tab-container {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
#console-tab-container::-webkit-scrollbar {
  display: none;
}
#console-tab-container button {
  white-space: nowrap !important;
  flex-shrink: 0 !important;
}
.fleet-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 12px;
}
@media (min-width: 1024px) {
  .fleet-cards-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    padding: 14px;
  }
}
.fleet-square-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 13px;
  border: 1px solid #f0f0f4;
  background: rgba(250, 250, 250, 0.85);
  padding: 13px;
  transition: all 0.2s ease;
  min-height: 125px;
  box-sizing: border-box;
}
.dark .fleet-square-card {
  border-color: #222228;
  background: rgba(19, 19, 23, 0.85);
}
.fleet-square-card:hover {
  border-color: #e4e4e7;
  transform: translateY(-1px);
}
.dark .fleet-square-card:hover {
  border-color: #33333e;
}
.beam-page {
  min-height: calc(100vh - 58px);
  overflow: hidden;
  background: #fff;
}
.dark .beam-page { background: #000000; }
.beam-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: calc(100vh - 58px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 128px 24px 88px;
}
.beam-grid {
  position: absolute;
  inset: -34% -12%;
  z-index: -4;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px;
  transform: rotate(-45deg) scale(1.12);
  transform-origin: center;
  -webkit-mask-image: radial-gradient(ellipse 76% 76% at 50% 48%, #000 16%, rgba(0,0,0,.9) 58%, transparent 88%);
  mask-image: radial-gradient(ellipse 76% 76% at 50% 48%, #000 16%, rgba(0,0,0,.9) 58%, transparent 88%);
}
.beam-grid-lane {
  position: relative;
  display: block;
  min-width: 0;
}
.beam-grid-lane::before,
.beam-grid-lane::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: repeating-linear-gradient(
    to bottom,
    rgba(24, 24, 27, .19) 0 2px,
    transparent 2px 6px
  );
}
.beam-grid-lane::before { left: 0; }
.beam-grid-lane::after { right: 0; }
.beam-grid-lane-highlight {
  background: linear-gradient(to bottom, transparent 12%, rgba(244,244,245,.8) 52%, transparent 90%);
}
.dark .beam-grid-lane::before,
.dark .beam-grid-lane::after {
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, .13) 0 2px,
    transparent 2px 6px
  );
}
.dark .beam-grid-lane-highlight {
  background: linear-gradient(to bottom, transparent 12%, rgba(39,39,42,.72) 52%, transparent 90%);
}
.beam-vignette {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 50% 48%, transparent 0, transparent 34%, rgba(255,255,255,.54) 66%, #fff 91%),
    linear-gradient(to bottom, rgba(255,255,255,.64), transparent 36%);
  pointer-events: none;
}
.dark .beam-vignette {
  background:
    radial-gradient(circle at 50% 48%, transparent 0, transparent 34%, rgba(9,9,11,.48) 66%, #09090b 91%),
    linear-gradient(to bottom, rgba(9,9,11,.68), transparent 36%);
}
.beam-copy {
  position: relative;
  z-index: 8;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.beam-copy h1 {
  max-width: 950px;
  margin: 0;
  color: #3f3f46;
  font-size: clamp(42px, 6.1vw, 78px);
  font-weight: 620;
  letter-spacing: -.055em;
  line-height: .99;
  text-wrap: balance;
}
.beam-copy h1 > span {
  display: inline-block;
  color: #09090b;
  filter: drop-shadow(0 1px 3px rgba(27,37,80,.14));
}
.dark .beam-copy h1 { color: #d4d4d8; }
.dark .beam-copy h1 > span { color: #fff; }
.hero-flip-words {
  --hero-flip-width: auto;
  position: relative;
  display: inline-grid !important;
  width: var(--hero-flip-width);
  max-width: 100%;
  grid-template-areas: "word";
  overflow: hidden;
  padding: .08em .06em .12em;
  margin: -.08em -.06em -.12em;
  vertical-align: bottom;
  white-space: nowrap;
  text-align: left;
  isolation: isolate;
  perspective: 800px;
}
.hero-flip-word {
  grid-area: word;
  display: inline-flex;
  align-items: baseline;
  justify-content: flex-start;
  min-width: 0;
  color: inherit;
  white-space: nowrap;
  transform-origin: 48% 54%;
  will-change: transform, opacity, filter;
}
.hero-flip-letter {
  display: inline-block;
  color: inherit;
  filter: none;
  will-change: transform, opacity, filter;
}
.hero-flip-space {
  width: .27em;
}
.hero-flip-words[data-flip-state="holding"] .hero-flip-dot {
  animation: heroFlipDotBlink 1.25s cubic-bezier(.45, 0, .55, 1) infinite;
  will-change: opacity;
}
@keyframes heroFlipDotBlink {
  0%, 28%, 100% { opacity: 1; }
  62% { opacity: .16; }
}
.hero-flip-sizer {
  position: absolute;
  inset: 0 auto auto 0;
  display: inline-block;
  width: max-content;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
}
.hero-flip-words[data-flip-state="holding"] .hero-flip-word,
.hero-flip-words[data-flip-state="static"] .hero-flip-word {
  will-change: auto;
}
.beam-copy > p {
  max-width: 560px;
  margin: 24px auto 0;
  color: #52525b;
  font-size: 16px;
  line-height: 1.55;
  text-wrap: balance;
}
.dark .beam-copy > p { color: #d4d4d8; }
.beam-actions {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 32px 0 76px;
}
.beam-button {
  position: relative;
  z-index: 10;
  display: inline-flex;
  width: 208px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 650;
  line-height: 1;
  text-decoration: none;
  transition: transform .2s ease, opacity .2s ease, background .2s ease, border-color .2s ease;
}
.beam-button-primary {
  color: #fff;
  background: #09090b;
  box-shadow: 0 5px 18px rgba(0,0,0,.16), inset 0 1px rgba(255,255,255,.16);
}
.dark .beam-button-primary { color: #09090b; background: #fff; }
.beam-button-primary:hover { opacity: .92; transform: translateY(-2px); }
.beam-button-secondary {
  color: #09090b;
  border: 1px solid #e4e4e7;
  background: rgba(255,255,255,.9);
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.dark .beam-button-secondary {
  color: #fff;
  border-color: #3f3f46;
  background: #27272a;
}
.beam-button-secondary:hover { transform: translateY(-2px); background: #f4f4f5; }
.dark .beam-button-secondary:hover { background: #3f3f46; }
.beam-layer {
  position: absolute;
  inset: 0;
  z-index: 7;
  overflow: hidden;
  pointer-events: none;
}
.hero-light-beam {
  --beam-start-x: 0px;
  --beam-end-x: 700px;
  --beam-duration: 8s;
  position: absolute;
  top: 80px;
  left: calc(50% - 385px);
  width: 1px;
  height: 58px;
  border-radius: 999px;
  background: linear-gradient(to top, #f97316, #eab308 52%, transparent);
  filter: drop-shadow(0 0 5px rgba(249,115,22,.58));
  transform-origin: 50% 100%;
  animation: beamTravel var(--beam-duration) linear 0s infinite;
  transition: opacity .08s linear;
}
.hero-light-beam.is-collided { opacity: 0; }
@keyframes beamTravel {
  from { transform: translate(var(--beam-start-x), -220px) rotate(-45deg); }
  to { transform: translate(var(--beam-end-x), 900px) rotate(-45deg); }
}
.beam-particles {
  position: absolute;
  inset: 0;
}
.beam-burst {
  position: absolute;
  z-index: 25;
  width: 8px;
  height: 8px;
  transform: translate(-50%, -50%);
}
.beam-burst::before {
  content: "";
  position: absolute;
  top: 2px;
  left: -36px;
  width: 80px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(to right, transparent, #f97316, transparent);
  filter: blur(3px);
  animation: burstFlash 1s ease-out forwards;
}
.beam-particle {
  --particle-x: 0px;
  --particle-y: -30px;
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: linear-gradient(to bottom, #f97316, #eab308);
  box-shadow: 0 0 7px rgba(249,115,22,.72);
  animation: particleFly var(--particle-duration, 1.2s) ease-out forwards;
}
@keyframes burstFlash { 0% { opacity: 0; transform: scaleX(.35); } 20% { opacity: 1; } 100% { opacity: 0; transform: scaleX(1); } }
@keyframes particleFly { 0% { opacity: 1; transform: translate(0,0) scale(1); } 100% { opacity: 0; transform: translate(var(--particle-x),var(--particle-y)) scale(.4); } }
.beam-product-frame {
  position: relative;
  z-index: 6;
  width: min(1180px, calc(100vw - 48px));
  padding: 14px;
  border: 1px solid rgba(212,212,216,.62);
  border-radius: 32px;
  background: rgba(244,244,245,.77);
  box-shadow: 0 32px 80px -35px rgba(0,0,0,.34);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.dark .beam-product-frame {
  border-color: rgba(63,63,70,.82);
  background: rgba(39,39,42,.56);
  box-shadow: 0 40px 110px -38px rgba(0,0,0,.95);
}
.beam-product-inner {
  padding: 8px;
  overflow: hidden;
  border: 1px solid #e4e4e7;
  border-radius: 24px;
  background: #fff;
}
.dark .beam-product-inner { border-color: #3f3f46; background: #09090b; }
.cloud-console {
  position: relative;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  min-height: 590px;
  overflow: hidden;
  border: 1px solid #e4e4e7;
  border-radius: 20px;
  background: #fafafa;
  color: #18181b;
  text-align: left;
}
.dark .cloud-console { border-color: #27272a; background: #0c0c0f; color: #f4f4f5; }
.console-sidebar {
  display: flex;
  flex-direction: column;
  padding: 22px 15px 16px;
  border-right: 1px solid #e4e4e7;
  background: #fff;
}
.dark .console-sidebar { border-color: #27272a; background: #101014; }
.console-brand { display: flex; align-items: center; gap: 8px; padding: 0 9px 26px; font-size: 15px; font-weight: 750; letter-spacing: -.03em; }
.console-brand svg { width: 20px; height: 20px; }
.console-sidebar nav { display: grid; gap: 4px; }
.console-sidebar nav a { display: flex; align-items: center; gap: 10px; padding: 9px 10px; border-radius: 8px; color: #71717a; font-size: 12px; font-weight: 580; text-decoration: none; }
.console-sidebar nav a.active { color: #18181b; background: #f4f4f5; }
.dark .console-sidebar nav a { color: #a1a1aa; }
.dark .console-sidebar nav a.active { color: #fff; background: #27272a; }
.console-nav-icon { width: 15px; color: #a1a1aa; font-size: 15px; text-align: center; }
.console-project { display: flex; align-items: center; gap: 9px; margin-top: auto; padding: 12px 9px 3px; border-top: 1px solid #f0f0f2; }
.dark .console-project { border-color: #27272a; }
.console-project-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 4px rgba(34,197,94,.12); }
.console-project div { display: grid; }
.console-project small { color: #a1a1aa; font-size: 9px; }
.console-project strong { font-size: 11px; font-weight: 650; }
.console-main { min-width: 0; background: #fafafa; }
.dark .console-main { background: #0c0c0f; }
.console-topbar { display: flex; height: 62px; align-items: center; justify-content: space-between; padding: 0 24px; border-bottom: 1px solid #e4e4e7; background: rgba(255,255,255,.84); }
.dark .console-topbar { border-color: #27272a; background: rgba(16,16,20,.88); }
.console-topbar > div:first-child { display: grid; }
.console-topbar small { color: #a1a1aa; font-size: 9px; }
.console-topbar strong { font-size: 12px; }
.console-top-actions { display: flex; align-items: center; gap: 8px; color: #71717a; }
.console-top-actions > span { display: grid; width: 28px; height: 28px; place-items: center; border: 1px solid #e4e4e7; border-radius: 7px; background: #fff; font-size: 11px; }
.dark .console-top-actions > span { border-color: #3f3f46; background: #18181b; }
.console-top-actions .console-avatar { color: #fff; border: 0; background: #18181b; font-size: 9px; font-weight: 700; }
.dark .console-top-actions .console-avatar { color: #18181b; background: #f4f4f5; }
.console-content { padding: 26px; }
.console-title-row { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.console-title-row h2 { margin: 0; font-size: 20px; font-weight: 670; letter-spacing: -.025em; }
.console-title-row p { margin: 4px 0 0; color: #71717a; font-size: 11px; }
.console-title-row button { display: inline-flex; align-items: center; gap: 6px; height: 34px; padding: 0 13px; border: 0; border-radius: 8px; color: #fff; background: #18181b; font-size: 10px; font-weight: 650; }
.dark .console-title-row button { color: #18181b; background: #fff; }
.console-stats { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 12px; margin-top: 22px; }
.console-stats article { display: grid; min-width: 0; padding: 15px; border: 1px solid #e4e4e7; border-radius: 11px; background: #fff; }
.dark .console-stats article { border-color: #27272a; background: #121216; }
.console-stats span { color: #71717a; font-size: 10px; }
.console-stats strong { margin-top: 8px; font-size: 22px; letter-spacing: -.03em; }
.console-stats small { overflow: hidden; margin-top: 9px; color: #a1a1aa; font-size: 8.5px; text-overflow: ellipsis; white-space: nowrap; }
.status-live { display: inline-block; width: 5px; height: 5px; margin-right: 4px; border-radius: 50%; background: #22c55e; }
.console-stats .trend-good { color: #16a34a; }
.console-panels { display: grid; grid-template-columns: minmax(0,1.8fr) minmax(220px,.8fr); gap: 12px; margin-top: 12px; }
.console-panels > article { min-width: 0; padding: 17px; border: 1px solid #e4e4e7; border-radius: 11px; background: #fff; }
.dark .console-panels > article { border-color: #27272a; background: #121216; }
.panel-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.panel-heading > div { display: grid; }
.panel-heading span { font-size: 11px; font-weight: 650; }
.panel-heading small { margin-top: 3px; color: #a1a1aa; font-size: 8.5px; }
.panel-heading strong { font-size: 16px; }
.panel-heading button { border: 0; color: #a1a1aa; background: transparent; }
.traffic-chart { width: 100%; height: 196px; margin-top: 10px; overflow: visible; }
.chart-grid line { stroke: #e4e4e7; stroke-width: 1; stroke-dasharray: 3 5; }
.dark .chart-grid line { stroke: #27272a; }
.chart-area { fill: url(#chartFill); }
.chart-line { fill: none; stroke: #f59e0b; stroke-width: 2.2; stroke-linecap: round; }
.chart-labels { display: flex; justify-content: space-between; color: #a1a1aa; font-size: 8px; }
.console-regions ul { display: grid; gap: 7px; margin: 16px 0 0; padding: 0; list-style: none; }
.console-regions li { display: grid; grid-template-columns: 31px minmax(0,1fr) auto; align-items: center; gap: 9px; padding: 7px 0; border-bottom: 1px solid #f0f0f2; }
.dark .console-regions li { border-color: #27272a; }
.console-regions li:last-child { border-bottom: 0; }
.region-code { display: grid; width: 30px; height: 30px; place-items: center; border-radius: 8px; color: #a16207; background: #fef3c7; font-size: 8px; font-weight: 800; }
.dark .region-code { color: #fbbf24; background: rgba(245,158,11,.13); }
.console-regions li div { display: grid; }
.console-regions li strong { font-size: 9.5px; }
.console-regions li small { color: #a1a1aa; font-size: 8px; }
.console-regions li em { color: #71717a; font-size: 9px; font-style: normal; }
.console-sidebar nav a { cursor: pointer; transition: color .18s ease, background .18s ease, transform .18s ease; }
.console-sidebar nav a:hover { color: #18181b; background: #f4f4f5; transform: translateX(2px); }
.dark .console-sidebar nav a:hover { color: #fff; background: #1f1f24; }
.console-view-enter { animation: consoleViewIn .28s cubic-bezier(.16,1,.3,1) both; }
@keyframes consoleViewIn { from { opacity: 0; transform: translateY(7px); } to { opacity: 1; transform: translateY(0); } }
.console-data-panel {
  margin-top: 12px;
  padding: 17px;
  border: 1px solid #e4e4e7;
  border-radius: 11px;
  background: #fff;
}
.dark .console-data-panel { border-color: #27272a; background: #121216; }
.console-data-panel.compact-panel { margin-top: 12px; padding: 16px 18px; }
.console-data-panel .panel-heading button { padding: 6px 10px; border: 1px solid #e4e4e7; border-radius: 7px; color: #52525b; background: #fff; font-size: 9px; cursor: pointer; }
.dark .console-data-panel .panel-heading button { border-color: #3f3f46; color: #d4d4d8; background: #18181b; }
.console-table { display: grid; margin-top: 12px; }
.console-table-row { display: grid; grid-template-columns: 1.45fr 1fr 1fr .78fr; align-items: center; gap: 12px; min-height: 43px; border-top: 1px solid #f0f0f2; font-size: 9.5px; }
.dark .console-table-row { border-color: #27272a; }
.console-table-row strong { overflow: hidden; font-size: 9.5px; text-overflow: ellipsis; white-space: nowrap; }
.console-table-row span { color: #71717a; }
.console-table-row em { color: #16a34a; font-style: normal; }
.console-table-head { min-height: 30px; border-top: 0; color: #a1a1aa; font-size: 8px; text-transform: uppercase; letter-spacing: .05em; }
.status-warn { display: inline-block; width: 5px; height: 5px; margin-right: 4px; border-radius: 50%; background: #f59e0b; }
.console-storage-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 12px; margin-top: 12px; }
.storage-volume { display: flex; align-items: center; gap: 14px; min-width: 0; padding: 18px 15px; border: 1px solid #e4e4e7; border-radius: 11px; background: #fff; }
.dark .storage-volume { border-color: #27272a; background: #121216; }
.storage-volume > div:last-child { display: grid; min-width: 0; }
.storage-volume > div:last-child span { font-size: 9px; font-weight: 650; }
.storage-volume > div:last-child strong { margin-top: 5px; font-size: 12px; }
.storage-volume > div:last-child small { overflow: hidden; margin-top: 4px; color: #a1a1aa; font-size: 7.5px; text-overflow: ellipsis; white-space: nowrap; }
.volume-ring { display: grid; width: 54px; height: 54px; flex: 0 0 54px; place-items: center; border-radius: 50%; background: conic-gradient(#f59e0b 0 76%, #f4f4f5 76% 100%); position: relative; }
.volume-ring::after { content: ""; position: absolute; inset: 6px; border-radius: 50%; background: #fff; }
.dark .volume-ring { background: conic-gradient(#f59e0b 0 76%, #27272a 76% 100%); }
.dark .volume-ring::after { background: #121216; }
.volume-ring span { position: relative; z-index: 1; font-size: 8px; font-weight: 750; }
.volume-ring-alt { background: conic-gradient(#8b5cf6 0 61%, #f4f4f5 61% 100%); }
.dark .volume-ring-alt { background: conic-gradient(#8b5cf6 0 61%, #27272a 61% 100%); }
.volume-ring-cool { background: conic-gradient(#06b6d4 0 45%, #f4f4f5 45% 100%); }
.dark .volume-ring-cool { background: conic-gradient(#06b6d4 0 45%, #27272a 45% 100%); }
.health-label { display: flex; align-items: center; color: #16a34a; font-size: 9px; }
.network-map { position: relative; min-height: 270px; margin-top: 12px; overflow: hidden; border: 1px solid #e4e4e7; border-radius: 11px; background: radial-gradient(circle at 50% 46%, rgba(245,158,11,.08), transparent 34%), #fff; }
.dark .network-map { border-color: #27272a; background: radial-gradient(circle at 50% 46%, rgba(245,158,11,.1), transparent 34%), #121216; }
.network-map svg { position: absolute; inset: 14px 5%; width: 90%; height: calc(100% - 28px); }
.network-links path { fill: none; stroke: #d4d4d8; stroke-width: 1.3; stroke-dasharray: 4 5; vector-effect: non-scaling-stroke; }
.dark .network-links path { stroke: #3f3f46; }
.network-node { position: absolute; display: grid; min-width: 66px; padding: 8px 9px; border: 1px solid #e4e4e7; border-radius: 9px; background: rgba(255,255,255,.94); box-shadow: 0 6px 18px rgba(0,0,0,.06); transform: translate(-50%,-50%); }
.dark .network-node { border-color: #3f3f46; background: rgba(24,24,27,.95); box-shadow: 0 8px 24px rgba(0,0,0,.35); }
.network-node i { position: absolute; top: 9px; right: 9px; width: 5px; height: 5px; border-radius: 50%; background: #22c55e; }
.network-node strong { font-size: 9px; }
.network-node small { margin-top: 3px; color: #a1a1aa; font-size: 7.5px; }
.node-sin { left: 13%; top: 50%; }
.node-fra { left: 49%; top: 24%; }
.node-core { left: 49%; top: 58%; min-width: 84px; border-color: rgba(245,158,11,.55); }
.node-nyc { left: 87%; top: 38%; }
.node-blr { left: 87%; top: 72%; }
.console-toast { position: absolute; right: 22px; bottom: 20px; z-index: 40; display: flex; align-items: center; gap: 8px; padding: 10px 13px; border: 1px solid #d4d4d8; border-radius: 9px; color: #18181b; background: rgba(255,255,255,.96); box-shadow: 0 16px 36px rgba(0,0,0,.15); font-size: 10px; opacity: 0; transform: translateY(8px); transition: opacity .2s ease, transform .2s ease; }
.dark .console-toast { border-color: #3f3f46; color: #f4f4f5; background: rgba(24,24,27,.97); }
.console-toast.show { opacity: 1; transform: translateY(0); }
.pricing-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0 96px;
  color: #171717;
  background: #fff;
  scroll-margin-top: 72px;
}
.dark .pricing-section { color: #f5f5f5; background: #000000; }
.pricing-shell { width: min(1280px, calc(100% - 32px)); margin: 0 auto; }
.pricing-shell > h2 {
  margin: 0;
  padding-top: 16px;
  color: #262626;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.035em;
  text-align: center;
}
.dark .pricing-shell > h2 { color: #f5f5f5; }
.pricing-intro {
  max-width: 448px;
  margin: 16px auto 0;
  color: #525252;
  font-size: 16px;
  line-height: 1.65;
  text-align: center;
}
.dark .pricing-intro { color: #d4d4d4; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  padding: 72px 32px 32px;
}
.pricing-card {
  min-width: 0;
  padding: 12px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  transition: transform 380ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 380ms cubic-bezier(0.16, 1, 0.3, 1), border-color 380ms ease;
  will-change: transform, box-shadow;
}
.pricing-card:hover {
  transform: translateY(-4px);
}
.pricing-card-featured {
  border-color: rgba(255,255,255,.9);
  background: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,.11), 0 0 0 1px rgba(0,0,0,.06);
}
.pricing-card-featured:hover {
  box-shadow: 0 20px 42px rgba(0,0,0,.16), 0 0 0 1px rgba(0,0,0,.08);
}
.dark .pricing-card-featured {
  border-color: transparent;
  background: #262626;
  box-shadow: 0 12px 32px rgba(0,0,0,.42), 0 0 0 1px rgba(255,255,255,.07);
}
.dark .pricing-card-featured:hover {
  box-shadow: 0 24px 50px rgba(0,0,0,.65), 0 0 0 1px rgba(255,255,255,.15);
}
.pricing-card-body { display: flex; height: 100%; flex-direction: column; padding: 16px; }
.pricing-card h3 { margin: 0; color: #0a0a0a; font-size: 18px; font-weight: 500; line-height: 1.4; }
.dark .pricing-card h3 { color: #fff; }
.pricing-card-description { min-height: 21px; margin: 4px 0 0; color: #525252; font-size: 14px; line-height: 1.5; }
.dark .pricing-card-description { color: #a3a3a3; }
.pricing-price { display: flex; align-items: flex-end; gap: 8px; margin: 24px 0; }
.pricing-price strong { color: #262626; font-size: clamp(34px, 3vw, 40px); font-weight: 500; line-height: 1; letter-spacing: -.04em; font-variant-numeric: tabular-nums; }
.dark .pricing-price strong { color: #fafafa; }
.pricing-price span { padding-bottom: 2px; color: #737373; font-size: 14px; }
.dark .pricing-price span { color: #a3a3a3; }
.pricing-cta,
.enterprise-cta {
  width: 100%;
  min-height: 38px;
  margin: 0 0 8px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 3px;
  color: #171717;
  background: #fff;
  box-shadow: 0 5px 14px rgba(0,0,0,.08), 0 0 0 1px rgba(0,0,0,.05);
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.pricing-cta:hover,
.enterprise-cta:hover { background: #fafafa; box-shadow: 0 8px 22px rgba(0,0,0,.12), 0 0 0 1px rgba(0,0,0,.06); transform: translateY(-1px); }
.pricing-cta:active,
.enterprise-cta:active { transform: scale(.98); }
.dark .pricing-cta { border-color: rgba(255,255,255,.06); color: #f5f5f5; background: #171717; box-shadow: 0 5px 16px rgba(0,0,0,.35), 0 0 0 1px rgba(255,255,255,.05); }
.dark .pricing-cta:hover { background: #202024; }
.pricing-cta-featured { color: #fff; background: #0a0a0a; box-shadow: none; }
.pricing-cta-featured:hover { color: #fff; background: #1f1f1f; }
.dark .pricing-cta-featured { color: #0a0a0a; background: #fff; }
.dark .pricing-cta-featured:hover { color: #0a0a0a; background: #e5e5e5; }
.pricing-features,
.enterprise-features { margin: 0; padding: 0; list-style: none; }
.pricing-features { margin-top: 4px; }
.pricing-features li,
.enterprise-features li { display: flex; align-items: flex-start; gap: 8px; color: #525252; font-size: 14px; font-weight: 500; line-height: 1.45; }
.dark .pricing-features li,
.dark .enterprise-features li { color: #a3a3a3; }
.pricing-features li { margin: 20px 0; }
.pricing-check {
  display: inline-grid;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin-top: 2px;
  place-items: center;
  border-radius: 50%;
  color: #d4d4d8;
  background: #404040;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
}
.enterprise-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 80px;
  margin-top: 32px;
  overflow: hidden;
  padding: 32px;
  border: 1px solid #d4d4d4;
  border-radius: 3px;
  background: transparent;
}
.dark .enterprise-card { border-color: #262626; }
.enterprise-copy h3 { margin: 0 0 8px; color: #171717; font-size: clamp(20px, 2vw, 24px); font-weight: 500; letter-spacing: -.02em; }
.dark .enterprise-copy h3 { color: #f5f5f5; }
.enterprise-copy p { margin: 0 0 24px; color: #525252; font-size: 14px; line-height: 1.6; }
.dark .enterprise-copy p { color: #a3a3a3; }
.enterprise-cta { width: auto; min-width: 128px; margin: 0; padding: 0 24px; }
.dark .enterprise-cta { border-color: rgba(255,255,255,.12); color: #0a0a0a; background: #fff; }
.dark .enterprise-cta:hover { background: #e5e5e5; }
.enterprise-features { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); align-content: center; gap: 20px 22px; }
.enterprise-features li { margin: 0; }
.pricing-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1000;
  max-width: min(360px, calc(100vw - 32px));
  padding: 12px 16px;
  border: 1px solid #d4d4d4;
  border-radius: 6px;
  color: #171717;
  background: rgba(255,255,255,.96);
  box-shadow: 0 18px 46px rgba(0,0,0,.18);
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease;
}
.dark .pricing-toast { border-color: #404040; color: #f5f5f5; background: rgba(23,23,23,.97); }
.pricing-toast.show { opacity: 1; transform: translateY(0); }
.inline-features-section {
  padding: 96px 32px 110px;
  background: #fff;
  scroll-margin-top: 72px;
}
.dark .inline-features-section { background: #000000; }
.inline-features-shell { width: min(992px,100%); margin: 0 auto; }
.inline-features-heading { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.inline-features-heading h2 { margin: 0; color: #262626; font-size: clamp(30px,3vw,36px); font-weight: 600; line-height: 1.16; letter-spacing: -.04em; }
.dark .inline-features-heading h2 { color: #f5f5f5; }
.inline-features-heading p { max-width: 620px; margin: 16px auto 0; color: #737373; font-size: 14px; line-height: 1.65; }
.dark .inline-features-heading p { color: #a3a3a3; }
.inline-features-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); }
.inline-feature-item { display: flex; min-height: 109px; align-items: flex-start; gap: 8px; padding: 24px; border-color: #e5e5e5; transition: color .2s ease; }
.dark .inline-feature-item { border-color: #262626; }
.inline-feature-item:nth-child(-n+3) { border-bottom: 1px solid #e5e5e5; }
.dark .inline-feature-item:nth-child(-n+3) { border-bottom-color: #262626; }
.inline-feature-item:nth-child(3n+1) { padding-left: 0; border-right: 1px solid #e5e5e5; }
.inline-feature-item:nth-child(3n+2) { border-right: 1px solid #e5e5e5; }
.inline-feature-item:nth-child(3n) { padding-right: 0; }
.dark .inline-feature-item:nth-child(3n+1),.dark .inline-feature-item:nth-child(3n+2) { border-right-color: #262626; }
.inline-feature-item svg { width: 16px; height: 16px; margin-top: 2px; flex: 0 0 16px; fill: none; stroke: #a3a3a3; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: stroke .2s ease,transform .2s ease; }
.dark .inline-feature-item svg { stroke: #737373; }
.inline-feature-item p { margin: 0; color: #737373; font-size: 14px; line-height: 1.55; }
.dark .inline-feature-item p { color: #a3a3a3; }
.inline-feature-item strong { color: #404040; font-weight: 700; }
.dark .inline-feature-item strong { color: #d4d4d4; }
.inline-feature-item:hover svg { stroke: #f59e0b; transform: translateY(-1px); }
.infra-map-section {
  padding: 120px 24px 132px;
  overflow: hidden;
  color: #262626;
  background: #fff;
  scroll-margin-top: 72px;
}
.dark .infra-map-section { color: #f5f5f5; background: #000000; }
.infra-map-shell { width: min(1200px,100%); margin: 0 auto; }
.infra-map-heading { max-width: 760px; margin: 0 auto; text-align: center; }
.section-eyebrow { margin: 0 0 14px; color: #b45309; font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.dark .section-eyebrow { color: #f59e0b; }
.infra-map-heading h2 { margin: 0; font-size: clamp(32px,4vw,48px); font-weight: 600; line-height: 1.08; letter-spacing: -.045em; }
.infra-map-heading > p:last-child { max-width: 650px; margin: 20px auto 0; color: #737373; font-size: 16px; line-height: 1.65; }
.dark .infra-map-heading > p:last-child { color: #a3a3a3; }
.infra-map-stage { position: relative; width: 100%; margin-top: 66px; aspect-ratio: 1200 / 520; isolation: isolate; }
.infra-map-stage::before { position: absolute; inset: 10% 5%; z-index: -1; border-radius: 50%; background: radial-gradient(ellipse at center,rgba(245,158,11,.08),transparent 67%); content: ""; filter: blur(28px); }
.infra-map-stage > img,.infra-map-routes,.infra-map-nodes { position: absolute; inset: 0; width: 100%; height: 100%; }
.infra-map-stage > img { display: block; opacity: .5; object-fit: contain; }
.dark .infra-map-stage > img { opacity: .62; }
.infra-map-routes { overflow: visible; }
.infra-route-lines path { fill: none; stroke: url(#infra-route-gradient); stroke-width: 2; stroke-linecap: round; stroke-dasharray: 1; stroke-dashoffset: 1; filter: drop-shadow(0 0 5px rgba(245,158,11,.22)); transition: stroke-dashoffset 1.35s cubic-bezier(.16,1,.3,1); }
.infra-map-stage.is-visible .infra-route-lines path { stroke-dashoffset: 0; }
.infra-map-node { position: absolute; display: block; width: 0; height: 0; transform: translate(-50%,-50%); }
.infra-map-node i { position: absolute; left: -5px; top: -5px; width: 10px; height: 10px; border: 2px solid #fff; border-radius: 50%; background: #f59e0b; box-shadow: 0 0 0 5px rgba(245,158,11,.14),0 0 18px rgba(245,158,11,.45); }
.dark .infra-map-node i { border-color: #0a0a0a; }
.infra-map-node b { position: absolute; left: 10px; top: -21px; padding: 3px 7px; border: 1px solid #e5e5e5; border-radius: 999px; color: #525252; background: rgba(255,255,255,.88); box-shadow: 0 4px 18px rgba(0,0,0,.04); font-size: 10px; font-weight: 600; line-height: 1; white-space: nowrap; backdrop-filter: blur(7px); }
.dark .infra-map-node b { border-color: #292929; color: #d4d4d4; background: rgba(10,10,10,.86); }
.infra-map-note { position: absolute; right: 0; bottom: 1%; margin: 0; color: #a3a3a3; font-size: 11px; letter-spacing: .01em; }
.dark .infra-map-note { color: #737373; }
.faq-lines-section { padding: 120px 24px 128px; background: #fff; scroll-margin-top: 72px; }
.dark .faq-lines-section { background: #000000; }
.faq-lines-heading { max-width: 832px; margin: 0 auto; text-align: center; }
.faq-lines-heading h2 { margin: 0; color: #262626; font-size: clamp(30px,3vw,36px); font-weight: 600; line-height: 1.25; letter-spacing: -.04em; }
.dark .faq-lines-heading h2 { color: #f5f5f5; }
.faq-lines-heading p { max-width: 672px; margin: 16px auto 0; color: #737373; font-size: 16px; line-height: 1.5; }
.dark .faq-lines-heading p { color: #d4d4d4; }
.faq-lines-groups { width: min(768px,100%); margin: 60px auto 0; }
.faq-lines-group + .faq-lines-group { margin-top: 64px; }
.faq-lines-group h3 { margin: 0 0 24px; color: #404040; font-size: 18px; font-weight: 500; line-height: 1.55; }
.dark .faq-lines-group h3 { color: #d4d4d4; }
.faq-lines-item { border-top: 1px dashed #d4d4d4; }
.dark .faq-lines-item { border-top-color: #333; }
.faq-lines-item:last-child { border-bottom: 1px dashed #d4d4d4; }
.dark .faq-lines-item:last-child { border-bottom-color: #333; }
.faq-lines-question { display: flex; width: 100%; min-height: 56px; align-items: center; justify-content: space-between; gap: 24px; padding: 0; border: 0; color: #525252; background: transparent; font: inherit; font-size: 14px; font-weight: 400; line-height: 1.45; text-align: left; cursor: pointer; transition: color .2s ease; }
.dark .faq-lines-question { color: #d4d4d4; }
.faq-lines-question:hover,.faq-lines-question[aria-expanded="true"] { color: #09090b; }
.dark .faq-lines-question:hover,.dark .faq-lines-question[aria-expanded="true"] { color: #fff; }
.faq-lines-question svg { width: 16px; height: 16px; flex: 0 0 16px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; transition: transform .35s cubic-bezier(.16,1,.3,1); }
.faq-lines-question[aria-expanded="true"] svg { transform: rotate(45deg); }
.faq-lines-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 340ms cubic-bezier(0.16, 1, 0.3, 1), opacity 240ms ease;
  overflow: hidden;
  opacity: 0;
}
.faq-lines-answer > p {
  min-height: 0;
  overflow: hidden;
  max-width: 680px;
  margin: 0;
  padding: 0 44px 0 0;
  color: #737373;
  font-size: 14px;
  line-height: 1.65;
  transition: padding-bottom 340ms cubic-bezier(0.16, 1, 0.3, 1);
}
.dark .faq-lines-answer > p { color: #a3a3a3; }
.faq-lines-item.is-open .faq-lines-answer,
.faq-lines-question[aria-expanded="true"] + .faq-lines-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}
.faq-lines-item.is-open .faq-lines-answer > p,
.faq-lines-question[aria-expanded="true"] + .faq-lines-answer > p {
  padding-bottom: 20px;
}
.final-cta-section { padding: 112px 24px 140px; overflow: hidden; color: #262626; background: #fff; }
.dark .final-cta-section { color: #f5f5f5; background: #000000; }
.final-cta-grid { position: relative; display: grid; width: min(1280px,100%); min-height: 310px; grid-template-columns: minmax(0,2fr) minmax(300px,1fr); margin: 0 auto; border-top: 1px dashed #d4d4d4; border-bottom: 1px dashed #d4d4d4; }
.dark .final-cta-grid { border-color: #333; }
.final-cta-grid::before,.final-cta-grid::after { position: absolute; top: -36px; bottom: -36px; width: 0; border-left: 1px dashed #d4d4d4; content: ""; pointer-events: none; }
.dark .final-cta-grid::before,.dark .final-cta-grid::after { border-left-color: #333; }
.final-cta-grid::before { left: 0; }
.final-cta-grid::after { right: 0; }
.final-cta-copy { display: flex; min-width: 0; flex-direction: column; justify-content: center; padding: 44px 56px; }
.final-cta-copy h2 { max-width: 740px; margin: 0; font-size: clamp(32px,3.2vw,44px); font-weight: 600; line-height: 1.08; letter-spacing: -.045em; }
.final-cta-copy > p { max-width: 680px; margin: 18px 0 0; color: #737373; font-size: 15px; line-height: 1.65; }
.dark .final-cta-copy > p { color: #a3a3a3; }
.final-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.final-cta-actions a { display: inline-flex; min-height: 42px; align-items: center; justify-content: center; gap: 8px; padding: 0 16px; border-radius: 8px; font-size: 14px; font-weight: 600; text-decoration: none; transition: transform .2s ease,opacity .2s ease,background .2s ease,border-color .2s ease; }
.final-cta-actions a:hover { transform: translateY(-1px); }
.final-cta-actions svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.final-cta-primary { border: 1px solid #09090b; color: #fff; background: #09090b; box-shadow: inset 0 1px 0 rgba(255,255,255,.14),0 6px 16px rgba(0,0,0,.12); }
.final-cta-primary:hover { opacity: .88; }
.dark .final-cta-primary { border-color: #f5f5f5; color: #09090b; background: #f5f5f5; }
.final-cta-secondary { border: 1px solid #e5e5e5; color: #404040; background: #fff; }
.final-cta-secondary:hover { border-color: #d4d4d4; background: #fafafa; }
.dark .final-cta-secondary { border-color: #303030; color: #e5e5e5; background: #111; }
.dark .final-cta-secondary:hover { border-color: #404040; background: #171717; }
.final-cta-support { display: flex; min-width: 0; flex-direction: column; justify-content: center; padding: 48px 54px; border-left: 1px dashed #d4d4d4; }
.dark .final-cta-support { border-left-color: #333; }
.final-cta-support h3 { margin: 0; color: #404040; font-size: 17px; font-weight: 650; line-height: 1.35; }
.dark .final-cta-support h3 { color: #e5e5e5; }
.final-cta-support > p { margin: 12px 0 0; color: #737373; font-size: 13px; line-height: 1.6; }
.dark .final-cta-support > p { color: #a3a3a3; }
.final-cta-support ul { display: grid; gap: 9px; margin: 20px 0 0; padding: 0; list-style: none; }
.final-cta-support li { position: relative; padding-left: 17px; color: #525252; font-size: 12px; line-height: 1.4; }
.dark .final-cta-support li { color: #d4d4d4; }
.final-cta-support li::before { position: absolute; left: 1px; top: .55em; width: 5px; height: 5px; border-radius: 50%; background: #f59e0b; content: ""; }
.site-footer { overflow: hidden; border-top: 1px solid #e5e5e5; color: #262626; background: #fff; }
.dark .site-footer { border-top-color: #202020; color: #f5f5f5; background: #000000; }
.site-footer-shell { width: min(1280px, calc(100% - 48px)); margin: 0 auto; padding: 72px 0 44px; }
.site-footer-top-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}
.site-footer-brand { display: inline-flex; align-items: center; justify-content: center; gap: 9px; color: #171717; font-size: 26px; font-weight: 760; line-height: 1; letter-spacing: -.045em; text-decoration: none; }
.dark .site-footer-brand { color: #fafafa; }
.site-footer-brand svg { width: 28px; height: 28px; flex: 0 0 28px; }
.site-footer-bio {
  font-size: 14.5px;
  line-height: 1.65;
  color: #52525b;
  margin: 14px 0 24px;
  max-width: 580px;
}
.dark .site-footer-bio {
  color: #a1a1aa;
}
.site-footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.social-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: #f4f4f5;
  border: 1px solid #e4e4e7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #71717a;
  text-decoration: none;
  transition: all 0.2s ease;
}
.dark .social-icon-btn {
  background: #18181b;
  border-color: #27272a;
  color: #a1a1aa;
}
.social-icon-btn:hover {
  background: #09090b;
  color: #ffffff;
  border-color: #09090b;
  transform: translateY(-2px);
}
.dark .social-icon-btn:hover {
  background: #ffffff;
  color: #09090b;
  border-color: #ffffff;
  transform: translateY(-2px);
}
.site-footer-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid #e5e5e5;
}
.dark .site-footer-links-grid {
  border-top-color: #202020;
}
.site-footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.site-footer-column h3 { margin: 0 0 6px; color: #09090b; font-size: 14px; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; }
.dark .site-footer-column h3 { color: #ffffff; }
.site-footer-column a { position: relative; color: #737373; font-size: 14px; line-height: 1.45; text-decoration: none; transition: color .2s ease, transform .2s ease; }
.dark .site-footer-column a { color: #8f8f8f; }
.site-footer-column a:hover { color: #09090b; transform: translateX(3px); }
.dark .site-footer-column a:hover { color: #fff; }
.site-footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #737373;
}
.dark .site-footer-bottom {
  border-top-color: #202020;
  color: #8f8f8f;
}
.site-footer-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 500;
  color: #059669;
}
.dark .site-footer-status {
  color: #34d399;
}
.site-footer-status .status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
  animation: pulseDot 2s infinite ease-in-out;
}
@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: 0.7; }
}
@media (max-width: 900px) {
  .inline-features-section { padding: 80px 24px 92px; }
  .inline-features-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .inline-feature-item,.inline-feature-item:nth-child(3n+1),.inline-feature-item:nth-child(3n+2),.inline-feature-item:nth-child(3n) { padding: 24px; border-right: 0; border-bottom: 1px solid #e5e5e5; }
  .dark .inline-feature-item,.dark .inline-feature-item:nth-child(3n+1),.dark .inline-feature-item:nth-child(3n+2),.dark .inline-feature-item:nth-child(3n) { border-bottom-color: #262626; }
  .inline-feature-item:nth-child(odd) { padding-left: 0; border-right: 1px solid #e5e5e5; }
  .dark .inline-feature-item:nth-child(odd) { border-right-color: #262626; }
  .inline-feature-item:nth-child(even) { padding-right: 0; }
  .inline-feature-item:nth-last-child(-n+2) { border-bottom: 0; }
  .infra-map-section { padding: 100px 20px 108px; }
  .infra-map-stage { margin-top: 52px; }
  .infra-map-node b { display: none; }
  .faq-lines-section { padding: 96px 24px 108px; }
  .final-cta-section { padding: 96px 20px 120px; }
  .final-cta-grid { grid-template-columns: minmax(0,3fr) minmax(260px,2fr); }
  .final-cta-copy { padding: 44px 38px; }
  .final-cta-support { padding: 42px 34px; }
  .site-footer-shell { width: min(100% - 40px,1280px); padding: 64px 0 40px; }
  .site-footer-links-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 44px 32px; }
}
@media (max-width: 640px) {
  .inline-features-section { padding: 72px 20px 80px; }
  .inline-features-heading { margin-bottom: 42px; }
  .inline-features-heading h2,.faq-lines-heading h2 { font-size: 30px; }
  .inline-features-grid { grid-template-columns: 1fr; }
  .inline-feature-item,.inline-feature-item:nth-child(3n+1),.inline-feature-item:nth-child(3n+2),.inline-feature-item:nth-child(3n),.inline-feature-item:nth-child(odd),.inline-feature-item:nth-child(even) { min-height: auto; padding: 21px 0; border-right: 0; border-bottom: 1px solid #e5e5e5; }
  .dark .inline-feature-item,.dark .inline-feature-item:nth-child(odd) { border-right: 0; border-bottom-color: #262626; }
  .inline-feature-item:last-child { border-bottom: 0; }
  .infra-map-section { padding: 84px 14px 90px; }
  .infra-map-heading { padding: 0 6px; }
  .infra-map-heading h2 { font-size: 32px; }
  .infra-map-heading > p:last-child { margin-top: 16px; font-size: 14px; }
  .infra-map-stage { width: calc(100% + 88px); margin: 42px -44px 0; aspect-ratio: 1200 / 560; }
  .infra-map-note { left: 44px; right: 44px; bottom: -22px; text-align: center; font-size: 10px; line-height: 1.4; }
  .infra-map-node:last-child { margin-left: -8px; }
  .infra-map-node i { width: 8px; height: 8px; left: -4px; top: -4px; border-width: 1px; }
  .faq-lines-section { padding: 86px 20px 96px; }
  .faq-lines-heading p { font-size: 14px; }
  .faq-lines-groups { margin-top: 52px; }
  .faq-lines-group + .faq-lines-group { margin-top: 52px; }
  .faq-lines-question { min-height: 60px; gap: 18px; }
  .final-cta-section { padding: 80px 20px 100px; }
  .final-cta-grid { min-height: 0; grid-template-columns: 1fr; }
  .final-cta-grid::before,.final-cta-grid::after { top: -28px; bottom: -28px; }
  .final-cta-copy { padding: 38px 24px 34px; }
  .final-cta-copy h2 { font-size: 32px; }
  .final-cta-copy > p { margin-top: 16px; font-size: 14px; }
  .final-cta-actions { flex-direction: column; margin-top: 26px; }
  .final-cta-actions a { width: 100%; min-height: 44px; }
  .final-cta-support { padding: 30px 24px 36px; border-top: 1px dashed #d4d4d4; border-left: 0; }
  .dark .final-cta-support { border-top-color: #333; border-left: 0; }
  .site-footer-shell { width: min(100% - 32px,1280px); padding: 48px 0 32px; }
  .site-footer-top-brand { margin-bottom: 36px; }
  .site-footer-links-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 36px 16px; padding-top: 32px; }
  .site-footer-column { gap: 10px; }
  .site-footer-column h3 { font-size: 13.5px; margin-bottom: 4px; }
  .site-footer-column a { font-size: 13.5px; line-height: 1.35; padding: 2px 0; }
  .site-footer-bottom { margin-top: 36px; padding-top: 18px; flex-direction: column; align-items: center; text-align: center; gap: 10px; }
}
@media (max-width: 400px) {
  .site-footer-links-grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 900px) {
  .pricing-section { padding: 64px 0 76px; }
  .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 56px 16px 24px; }
  .pricing-card:last-of-type { grid-column: 1 / -1; }
  .enterprise-card { grid-template-columns: 1fr; gap: 34px; }
  .enterprise-features { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .beam-hero { padding: 104px 18px 64px; }
  .beam-actions { margin-bottom: 58px; }
  .beam-product-frame { width: min(860px, calc(100vw - 28px)); padding: 9px; border-radius: 24px; }
  .beam-product-inner { padding: 5px; border-radius: 18px; }
  .cloud-console { grid-template-columns: 1fr; min-height: 500px; border-radius: 15px; }
  .console-sidebar { display: none; }
  .console-content { padding: 19px; }
  .console-stats { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .console-panels { grid-template-columns: 1fr; }
  .console-regions { display: none; }
}
@media (max-width: 640px) {
  .pricing-section { padding: 54px 0 64px; }
  .pricing-shell { width: min(100% - 20px, 1280px); }
  .pricing-shell > h2 { padding: 10px 16px 0; font-size: 28px; }
  .pricing-intro { margin-top: 14px; padding: 0 14px; font-size: 14px; }
  .pricing-grid { grid-template-columns: 1fr; gap: 12px; padding: 40px 0 16px; }
  .pricing-card,
  .pricing-card:last-of-type { grid-column: auto; padding: 8px; }
  .pricing-card-body { padding: 16px 14px; }
  .pricing-card-description { min-height: auto; }
  .pricing-cta,
  .enterprise-cta { min-height: 44px; }
  .pricing-features li { margin: 18px 0; }
  .enterprise-card { gap: 30px; margin-top: 22px; padding: 24px 20px; }
  .enterprise-cta { width: 100%; }
  .enterprise-features { grid-template-columns: 1fr; gap: 17px; }
  .pricing-toast { right: 16px; bottom: 16px; }
  .beam-hero { min-height: auto; padding: 88px 14px 48px; }
  .beam-grid { inset: -22% -92%; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
  .beam-copy h1 { font-size: clamp(39px,12vw,54px); line-height: 1.02; }
  .beam-copy > p { margin-top: 20px; padding: 0 6px; font-size: 14px; line-height: 1.55; }
  .beam-actions { flex-direction: column; gap: 10px; margin: 28px 0 52px; padding: 0 18px; }
  .beam-button { width: 100%; max-width: 360px; }
  .beam-product-frame { width: calc(100vw - 20px); padding: 6px; border-radius: 20px; }
  .beam-product-inner { padding: 4px; border-radius: 15px; }
  .cloud-console { min-height: 410px; border-radius: 12px; }
  .console-topbar { height: 50px; padding: 0 13px; }
  .console-top-actions > span:not(.console-avatar) { display: none; }
  .console-content { padding: 13px; }
  .console-title-row h2 { font-size: 15px; }
  .console-title-row p { font-size: 9px; }
  .console-title-row button { height: 30px; padding: 0 9px; font-size: 8px; }
  .console-stats { gap: 7px; margin-top: 14px; }
  .console-stats article { padding: 10px; }
  .console-stats strong { font-size: 17px; }
  .console-stats small { margin-top: 5px; font-size: 7px; }
  .console-panels { margin-top: 7px; }
  .console-panels > article { padding: 11px; }
  .traffic-chart { height: 130px; }
  .hero-light-beam { left: calc(50% - 270px); }
}
.contact-hero-section {
  position: relative;
  overflow: hidden;
  padding: 64px 24px 44px;
  text-align: center;
  background: transparent;
}
.contact-hero-shell {
  max-width: 860px;
  margin: 0 auto;
}
.contact-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 15px;
  border-radius: 999px;
  border: 1px solid #e4e4e7;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #52525b;
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 22px;
}
.dark .contact-hero-badge {
  border-color: #27272a;
  background: rgba(24, 24, 27, 0.75);
  color: #d4d4d8;
}
.contact-hero-title {
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 750;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: #09090b;
  margin: 0 0 18px;
}
.dark .contact-hero-title {
  color: #ffffff;
}
.contact-hero-desc {
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.65;
  color: #71717a;
  max-width: 680px;
  margin: 0 auto 34px;
}
.dark .contact-hero-desc {
  color: #a1a1aa;
}
.contact-metrics-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 32px;
  padding: 14px 28px;
  border-radius: 14px;
  border: 1px solid #e4e4e7;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  max-width: 800px;
  margin: 0 auto;
}
.dark .contact-metrics-bar {
  border-color: #27272a;
  background: rgba(18, 18, 22, 0.7);
}
.contact-metric-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #52525b;
}
.dark .contact-metric-item {
  color: #d4d4d8;
}
.contact-metric-item strong {
  color: #09090b;
  font-weight: 700;
}
.dark .contact-metric-item strong {
  color: #ffffff;
}
.contact-metric-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: #f59e0b;
}
.contact-main-section {
  padding: 32px 24px 96px;
  position: relative;
}
.contact-main-shell {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(340px, 1fr);
  gap: 36px;
  align-items: start;
}
.contact-form-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e4e4e7;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.dark .contact-form-card {
  background: #050507;
  border-color: #1a1a1f;
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.95);
}
.contact-card-header {
  margin-bottom: 26px;
}
.contact-card-header h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #09090b;
  margin: 0 0 6px;
}
.dark .contact-card-header h2 {
  color: #ffffff;
}
.contact-card-header p {
  font-size: 13.5px;
  color: #71717a;
  margin: 0;
}
.dark .contact-card-header p {
  color: #a1a1aa;
}
.inquiry-pills-wrap {
  margin-bottom: 24px;
}
.inquiry-pills-label {
  display: block;
  font-size: 12.5px;
  font-weight: 650;
  color: #3f3f46;
  margin-bottom: 10px;
}
.dark .inquiry-pills-label {
  color: #d4d4d8;
}
.inquiry-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.inquiry-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 9px;
  font-size: 12.5px;
  font-weight: 550;
  cursor: pointer;
  border: 1px solid #e4e4e7;
  background: #f4f4f5;
  color: #52525b;
  transition: all 0.18s cubic-bezier(0.16, 1, 0.3, 1);
}
.dark .inquiry-pill-btn {
  border-color: #27272a;
  background: #18181b;
  color: #a1a1aa;
}
.inquiry-pill-btn:hover {
  border-color: #d4d4d8;
  color: #09090b;
  background: #ebebee;
}
.dark .inquiry-pill-btn:hover {
  border-color: #3f3f46;
  color: #ffffff;
  background: #202024;
}
.inquiry-pill-btn.is-selected {
  border-color: #09090b;
  background: #09090b;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.dark .inquiry-pill-btn.is-selected {
  border-color: #ffffff;
  background: #ffffff;
  color: #09090b;
  box-shadow: 0 4px 14px rgba(255, 255, 255, 0.15);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-row-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.contact-field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-field-group label {
  font-size: 12.5px;
  font-weight: 600;
  color: #3f3f46;
  display: flex;
  align-items: center;
  gap: 4px;
}
.dark .contact-field-group label {
  color: #d4d4d8;
}
.contact-field-group label span.required-star {
  color: #ef4444;
}
.contact-input,
.contact-select,
.contact-textarea {
  width: 100%;
  padding: 10px 14px;
  font-size: 13.5px;
  font-family: inherit;
  border-radius: 9px;
  border: 1px solid #e4e4e7;
  background: #ffffff;
  color: #09090b;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  box-sizing: border-box;
}
.dark .contact-input,
.dark .contact-select,
.dark .contact-textarea {
  border-color: #27272a;
  background: #141418;
  color: #f4f4f5;
}
.contact-input::placeholder,
.contact-textarea::placeholder {
  color: #a1a1aa;
}
.contact-input:focus,
.contact-select:focus,
.contact-textarea:focus {
  border-color: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}
.contact-textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.5;
}
.priority-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.priority-label-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid #e4e4e7;
  background: #f4f4f5;
  color: #71717a;
  font-size: 12px;
  font-weight: 550;
  cursor: pointer;
  transition: all 0.15s ease;
  user-select: none;
}
.dark .priority-label-btn {
  border-color: #27272a;
  background: #18181b;
  color: #a1a1aa;
}
.priority-label-btn:hover {
  color: #09090b;
  border-color: #d4d4d8;
}
.dark .priority-label-btn:hover {
  color: #ffffff;
  border-color: #3f3f46;
}
.priority-label-btn.is-active {
  border-color: #f59e0b;
  background: rgba(245, 158, 11, 0.08);
  color: #d97706;
}
.dark .priority-label-btn.is-active {
  border-color: #f59e0b;
  background: rgba(245, 158, 11, 0.14);
  color: #fbbf24;
}
.contact-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 24px;
  border-radius: 9px;
  border: 1px solid #09090b;
  background: #09090b;
  color: #ffffff;
  font-size: 14px;
  font-weight: 650;
  cursor: pointer;
  transition: all 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  margin-top: 4px;
}
.dark .contact-submit-btn {
  border-color: #ffffff;
  background: #ffffff;
  color: #09090b;
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.12);
}
.contact-submit-btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}
.contact-submit-btn:active {
  transform: scale(0.99);
}
.contact-submit-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}
.contact-privacy-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: #71717a;
  margin-top: 6px;
  text-align: center;
}
.dark .contact-privacy-note {
  color: #a1a1aa;
}
.contact-channels-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-channel-card {
  background: #ffffff;
  border: 1px solid #e4e4e7;
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: backdrop-filter 0.25s ease, -webkit-backdrop-filter 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.dark .contact-channel-card {
  background: #050507;
  border-color: #1a1a1f;
}
.contact-channel-card:hover {
  border-color: #d4d4d8;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.dark .contact-channel-card:hover {
  border-color: #2b2b31;
  background: rgba(8, 8, 10, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.channel-card-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}
.channel-icon-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #e4e4e7;
  background: #f4f4f5;
  color: #09090b;
  flex-shrink: 0;
}
.dark .channel-icon-badge {
  border-color: #27272a;
  background: #18181b;
  color: #ffffff;
}
.channel-card-top h3 {
  font-size: 16px;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: #09090b;
  margin: 0 0 3px;
}
.dark .channel-card-top h3 {
  color: #ffffff;
}
.channel-card-top p {
  font-size: 13px;
  color: #71717a;
  margin: 0;
  line-height: 1.45;
}
.dark .channel-card-top p {
  color: #a1a1aa;
}
.channel-action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 9px;
  border: 1px solid #f0f0f2;
  background: #fafafa;
}
.dark .channel-action-row {
  border-color: #222226;
  background: #151518;
}
.channel-email-text {
  font-size: 13px;
  font-family: inherit;
  font-weight: 600;
  color: #09090b;
  text-decoration: none;
}
.dark .channel-email-text {
  color: #ffffff;
}
.channel-copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid #e4e4e7;
  background: #ffffff;
  color: #52525b;
  font-size: 11.5px;
  cursor: pointer;
  transition: all 0.15s ease;
}
.dark .channel-copy-btn {
  border-color: #27272a;
  background: #18181b;
  color: #a1a1aa;
}
.channel-copy-btn:hover {
  color: #09090b;
  border-color: #d4d4d8;
}
.dark .channel-copy-btn:hover {
  color: #ffffff;
  border-color: #3f3f46;
}
.datacenter-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}
.datacenter-item {
  padding: 10px 12px;
  border-radius: 9px;
  border: 1px solid #f0f0f2;
  background: #fafafa;
}
.dark .datacenter-item {
  border-color: #222226;
  background: #151518;
}
.datacenter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2px;
}
.datacenter-name {
  font-size: 12.5px;
  font-weight: 650;
  color: #09090b;
}
.dark .datacenter-name {
  color: #ffffff;
}
.datacenter-tag {
  font-size: 10px;
  font-weight: 700;
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
  padding: 1px 6px;
  border-radius: 4px;
}
.datacenter-sub {
  font-size: 11px;
  color: #71717a;
}
.dark .datacenter-sub {
  color: #a1a1aa;
}
.contact-success-state {
  text-align: center;
  padding: 32px 16px;
}
.contact-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
  margin-bottom: 18px;
}
.contact-success-state h3 {
  font-size: 22px;
  font-weight: 700;
  color: #09090b;
  margin: 0 0 10px;
}
.dark .contact-success-state h3 {
  color: #ffffff;
}
.contact-success-state p {
  font-size: 14px;
  color: #71717a;
  max-width: 440px;
  margin: 0 auto 24px;
  line-height: 1.6;
}
.dark .contact-success-state p {
  color: #a1a1aa;
}
.ticket-badge {
  display: inline-block;
  font-family: monospace;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 8px;
  background: #f4f4f5;
  color: #09090b;
  border: 1px solid #e4e4e7;
  margin-bottom: 24px;
}
.dark .ticket-badge {
  background: #18181b;
  color: #f4f4f5;
  border-color: #27272a;
}
@media (max-width: 900px) {
  .contact-main-shell {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .contact-form-card {
    padding: 24px;
  }
}
@media (max-width: 640px) {
  .contact-hero-section {
    padding: 48px 16px 32px;
  }
  .contact-row-2 {
    grid-template-columns: 1fr;
  }
  .priority-options {
    grid-template-columns: 1fr;
  }
  .datacenter-grid {
    grid-template-columns: 1fr;
  }
}
.legal-page-section {
  padding: 60px 24px 100px;
  position: relative;
}
.dark .legal-page-section {
  background: #000000;
}
.legal-page-shell {
  max-width: 920px;
  margin: 0 auto;
}
.legal-header {
  text-align: center;
  margin-bottom: 36px;
}
.legal-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: 999px;
  border: 1px solid #e4e4e7;
  background: rgba(255, 255, 255, 0.85);
  color: #52525b;
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 18px;
}
.dark .legal-badge {
  border-color: #1a1a1f;
  background: #08080a;
  color: #d4d4d8;
}
.legal-title {
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 750;
  letter-spacing: -0.035em;
  color: #09090b;
  margin: 0 0 14px;
  line-height: 1.15;
}
.dark .legal-title {
  color: #ffffff;
}
.legal-subtitle {
  font-size: 15px;
  line-height: 1.6;
  color: #71717a;
  max-width: 620px;
  margin: 0 auto;
}
.dark .legal-subtitle {
  color: #a1a1aa;
}
.legal-nav-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 44px;
}
.legal-nav-tab {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 9px;
  border: 1px solid #e4e4e7;
  background: #f4f4f5;
  color: #52525b;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.18s cubic-bezier(0.16, 1, 0.3, 1);
}
.dark .legal-nav-tab {
  border-color: #1a1a1f;
  background: #08080a;
  color: #a1a1aa;
}
.legal-nav-tab:hover {
  border-color: #d4d4d8;
  color: #09090b;
  background: #ebebee;
}
.dark .legal-nav-tab:hover {
  border-color: #2b2b31;
  color: #ffffff;
  background: #121216;
}
.legal-nav-tab.is-active {
  border-color: #09090b;
  background: #09090b;
  color: #ffffff;
}
.dark .legal-nav-tab.is-active {
  border-color: #ffffff;
  background: #ffffff;
  color: #000000;
}
.legal-card {
  background: #ffffff;
  border: 1px solid #e4e4e7;
  border-radius: 20px;
  padding: 44px 48px;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.04);
}
.dark .legal-card {
  background: #050507;
  border-color: #1a1a1f;
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.95);
}
.legal-meta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  margin-bottom: 30px;
  border-bottom: 1px solid #f0f0f2;
  font-size: 13px;
  color: #71717a;
}
.dark .legal-meta-bar {
  border-color: #1a1a1f;
  color: #a1a1aa;
}
.legal-section {
  margin-bottom: 36px;
}
.legal-section:last-child {
  margin-bottom: 0;
}
.legal-section h2 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #09090b;
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.dark .legal-section h2 {
  color: #ffffff;
}
.legal-section p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #52525b;
  margin: 0 0 14px;
}
.dark .legal-section p {
  color: #d4d4d8;
}
.legal-section ul,
.legal-section ol {
  margin: 0 0 18px;
  padding-left: 20px;
}
.legal-section li {
  font-size: 14px;
  line-height: 1.65;
  color: #52525b;
  margin-bottom: 8px;
}
.dark .legal-section li {
  color: #d4d4d8;
}
.legal-section li strong {
  color: #18181b;
}
.dark .legal-section li strong {
  color: #ffffff;
}
.legal-callout {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 12px;
  border: 1px solid #f0f0f2;
  background: #fafafa;
  margin: 20px 0;
}
.dark .legal-callout {
  border-color: #1a1a1f;
  background: #08080a;
}
.legal-callout-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(245, 158, 11, 0.1);
  color: #d97706;
  flex-shrink: 0;
  margin-top: 2px;
}
.dark .legal-callout-icon {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
}
.legal-callout-content {
  flex: 1;
}
.legal-callout-content strong {
  display: block;
  font-size: 14px;
  color: #09090b;
  margin-bottom: 4px;
}
.dark .legal-callout-content strong {
  color: #ffffff;
}
.legal-callout-content p {
  font-size: 13px;
  color: #71717a;
  margin: 0;
  line-height: 1.5;
}
.dark .legal-callout-content p {
  color: #a1a1aa;
}
@media (max-width: 768px) {
  .legal-page-section {
    padding: 44px 16px 72px;
  }
  .legal-card {
    padding: 26px 20px;
    border-radius: 16px;
  }
  .legal-meta-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}
.about-hero-section {
  padding: 80px 0 56px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}
.dark .about-hero-section {
  background: #000000;
}
.about-shell {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}
.about-hero-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 36px;
}
.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: 999px;
  border: 1px solid #e4e4e7;
  background: #f4f4f5;
  color: #52525b;
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 22px;
}
.dark .about-badge {
  border-color: #27272a;
  background: #121216;
  color: #d4d4d8;
}
.hero-pulse-dot {
  width: 6.5px;
  height: 6.5px;
  border-radius: 50%;
  background: #09090b;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
  animation: heroPulseAnim 2.2s infinite;
}
.dark .hero-pulse-dot {
  background: #ffffff;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}
@keyframes heroPulseAnim {
  0% { transform: scale(0.95); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.6; }
}
.about-hero-title {
  font-size: clamp(34px, 4.6vw, 56px);
  font-weight: 780;
  letter-spacing: -0.04em;
  color: #09090b;
  line-height: 1.1;
  margin: 0 0 18px;
  text-wrap: balance;
}
.dark .about-hero-title {
  color: #ffffff;
}
.about-hero-subtitle {
  font-size: clamp(15px, 1.8vw, 17.5px);
  line-height: 1.65;
  color: #52525b;
  max-width: 720px;
  margin: 0 auto;
  text-wrap: balance;
}
.dark .about-hero-subtitle {
  color: #a1a1aa;
}
.product-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 28px auto 36px;
  flex-wrap: wrap;
}
.hero-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  background: rgba(0, 0, 0, 0.02);
  font-size: 12px;
  font-weight: 600;
  color: #52525b;
}
.dark .hero-trust-pill {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #a1a1aa;
}
.about-metrics-bar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  padding: 24px 32px;
  border-radius: 18px;
  border: 1px solid #e4e4e7;
  background: #ffffff;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.04);
}
.dark .about-metrics-bar {
  background: rgba(10, 10, 15, 0.8);
  border-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.1), 0 20px 45px -15px rgba(0, 0, 0, 0.9);
}
.about-metric-item {
  text-align: center;
  flex: 1;
  min-width: 140px;
}
.about-metric-val {
  font-size: 28px;
  font-weight: 750;
  letter-spacing: -0.03em;
  color: #09090b;
}
.dark .about-metric-val {
  color: #ffffff;
}
.about-metric-lbl {
  font-size: 12.5px;
  font-weight: 600;
  color: #71717a;
  margin-top: 4px;
}
.dark .about-metric-lbl {
  color: #a1a1aa;
}
.about-metric-divider {
  width: 1px;
  height: 38px;
  background: #e4e4e7;
}
.dark .about-metric-divider {
  background: rgba(255, 255, 255, 0.08);
}
.about-mission-section {
  padding: 80px 0 90px;
  background: #ffffff;
}
.dark .about-mission-section {
  background: #000000;
}
.about-mission-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.about-mission-card {
  background: #ffffff;
  border: 1px solid #e4e4e7;
  border-radius: 20px;
  padding: 38px 40px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.04);
}
.dark .about-mission-card {
  background: #050507;
  border-color: #1a1a1f;
  box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.95);
}
.about-card-tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #71717a;
  margin-bottom: 12px;
}
.dark .about-card-tag {
  color: #a1a1aa;
}
.about-mission-card h2 {
  font-size: 24px;
  font-weight: 720;
  letter-spacing: -0.03em;
  color: #09090b;
  line-height: 1.25;
  margin: 0 0 16px;
}
.dark .about-mission-card h2 {
  color: #ffffff;
}
.about-mission-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #52525b;
  margin: 0 0 14px;
}
.dark .about-mission-card p {
  color: #d4d4d8;
}
.about-mission-card p:last-of-type {
  margin-bottom: 0;
}
.about-philosophy-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #f0f0f2;
}
.dark .about-philosophy-points {
  border-color: #1a1a1f;
}
.about-point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 550;
  color: #27272a;
}
.dark .about-point {
  color: #f4f4f5;
}
.about-point svg {
  flex-shrink: 0;
  color: #10b981;
}
.about-team-section {
  padding: 90px 0 100px;
  background: #ffffff;
}
.dark .about-team-section {
  background: #000000;
}
.about-section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 52px;
}
.about-section-title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 750;
  letter-spacing: -0.035em;
  color: #09090b;
  margin: 0 0 14px;
  line-height: 1.2;
}
.dark .about-section-title {
  color: #ffffff;
}
.about-section-subtitle {
  font-size: 15px;
  line-height: 1.65;
  color: #71717a;
  margin: 0 auto;
}
.dark .about-section-subtitle {
  color: #a1a1aa;
}
.about-team-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}
.team-card {
  background: #ffffff;
  border: 1px solid #e4e4e7;
  border-radius: 18px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.dark .team-card {
  background: #050507;
  border-color: #1a1a1f;
}
.team-card:hover {
  border-color: #d4d4d8;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.dark .team-card:hover {
  border-color: #2b2b31;
  background: rgba(8, 8, 10, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.team-card-image-wrap {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  border-radius: 12px;
  overflow: hidden;
  background: #f4f4f5;
  border: 1px solid #e4e4e7;
  margin-bottom: 14px;
}
.dark .team-card-image-wrap {
  background: #08080a;
  border-color: #1a1a1f;
}
.team-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(100%) contrast(1.05);
  -webkit-filter: grayscale(100%) contrast(1.05);
  opacity: 0.92;
  transition: filter 0.4s cubic-bezier(0.16, 1, 0.3, 1), -webkit-filter 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}
.team-card:hover .team-avatar {
  filter: grayscale(0%) contrast(1);
  -webkit-filter: grayscale(0%) contrast(1);
  opacity: 1;
  transform: scale(1.04);
}
.team-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.site-header-logo {
  height: 30px !important;
  max-height: 30px !important;
  width: auto !important;
  max-width: 185px !important;
  object-fit: contain !important;
  vertical-align: middle;
}
.site-header-logo-mobile {
  height: 25px !important;
  max-height: 25px !important;
  width: auto !important;
  max-width: 155px !important;
  object-fit: contain !important;
  vertical-align: middle;
}
.site-footer-logo {
  height: 34px !important;
  max-height: 34px !important;
  width: auto !important;
  max-width: 210px !important;
  object-fit: contain !important;
}
.console-brand-logo {
  height: 20px !important;
  max-height: 20px !important;
  width: auto !important;
  max-width: 130px !important;
  object-fit: contain !important;
}
.logo-light-mode {
  display: block !important;
}
.logo-dark-mode {
  display: none !important;
}
.dark .logo-light-mode {
  display: none !important;
}
.dark .logo-dark-mode {
  display: block !important;
}
.team-role-badge {
  display: inline-flex;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 650;
  padding: 3px 8px;
  border-radius: 6px;
  background: #f4f4f5;
  color: #52525b;
  border: 1px solid #e4e4e7;
  margin-bottom: 8px;
}
.dark .team-role-badge {
  background: #09090c;
  border-color: #1c1c20;
  color: #a1a1aa;
}
.team-name {
  font-size: 17px;
  font-weight: 720;
  letter-spacing: -0.025em;
  color: #09090b;
  margin: 0 0 6px;
}
.dark .team-name {
  color: #ffffff;
}
.team-bio {
  font-size: 12.5px;
  line-height: 1.55;
  color: #71717a;
  margin: 0 0 12px;
  flex: 1;
}
.dark .team-bio {
  color: #a1a1aa;
}
.team-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: auto;
}
.team-skill-tag {
  font-size: 10.5px;
  font-weight: 550;
  padding: 2px 7px;
  border-radius: 5px;
  background: #f4f4f5;
  color: #71717a;
  border: 1px solid #e4e4e7;
}
.dark .team-skill-tag {
  background: #09090c;
  border-color: #1a1a1f;
  color: #8f8f96;
}
.about-values-section {
  padding: 80px 0 90px;
  background: #ffffff;
}
.dark .about-values-section {
  background: #000000;
}
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.about-val-card {
  background: #ffffff;
  border: 1px solid #e4e4e7;
  border-radius: 18px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}
.dark .about-val-card {
  background: #050507;
  border-color: #1a1a1f;
}
.about-val-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #e4e4e7;
  background: #f4f4f5;
  color: #09090b;
  margin-bottom: 20px;
}
.dark .about-val-icon {
  border-color: #1a1a1f;
  background: #08080a;
  color: #ffffff;
}
.about-val-card h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #09090b;
  margin: 0 0 10px;
}
.dark .about-val-card h3 {
  color: #ffffff;
}
.about-val-card p {
  font-size: 13.5px;
  line-height: 1.65;
  color: #71717a;
  margin: 0;
}
.dark .about-val-card p {
  color: #a1a1aa;
}
.about-cta-section {
  padding: 60px 0 100px;
  background: #ffffff;
}
.dark .about-cta-section {
  background: #000000;
}
.about-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 44px 50px;
  border-radius: 20px;
  border: 1px solid #e4e4e7;
  background: #fafafa;
}
.dark .about-cta-card {
  background: #050507;
  border-color: #1a1a1f;
}
.about-cta-content h2 {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 720;
  letter-spacing: -0.03em;
  color: #09090b;
  margin: 0 0 8px;
}
.dark .about-cta-content h2 {
  color: #ffffff;
}
.about-cta-content p {
  font-size: 14px;
  color: #71717a;
  margin: 0;
  max-width: 580px;
  line-height: 1.6;
}
.dark .about-cta-content p {
  color: #a1a1aa;
}
.about-cta-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.about-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border-radius: 9px;
  font-size: 13.5px;
  font-weight: 650;
  text-decoration: none;
  background: #09090b;
  color: #ffffff;
  border: 1px solid #09090b;
  transition: opacity 0.18s ease;
}
.dark .about-btn-primary {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}
.about-btn-primary:hover {
  opacity: 0.9;
}
.about-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border-radius: 9px;
  font-size: 13.5px;
  font-weight: 650;
  text-decoration: none;
  background: #ffffff;
  color: #09090b;
  border: 1px solid #e4e4e7;
  transition: all 0.18s ease;
}
.dark .about-btn-secondary {
  background: #08080a;
  color: #ffffff;
  border-color: #1a1a1f;
}
.about-btn-secondary:hover {
  background: #f4f4f5;
  border-color: #d4d4d8;
}
.dark .about-btn-secondary:hover {
  background: #141418;
  border-color: #2b2b31;
}
@media (max-width: 1024px) {
  .about-team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .about-mission-grid {
    grid-template-columns: 1fr;
  }
  .about-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-values-grid {
    grid-template-columns: 1fr;
  }
  .about-cta-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 24px;
  }
  .about-cta-actions {
    width: 100%;
    flex-direction: column;
  }
  .about-cta-actions a {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .about-team-grid {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  ::view-transition-old(root),
  ::view-transition-new(root),
  .theme-toggle-btn.is-switching > span,
  #header-dropdown-container.is-swapping .dropdown-panel { animation: none; }
  #header-dropdown-container,
  .nav-backdrop-overlay,
  #mobile-drawer,
  #mobile-drawer-sheet,
  .mobile-sub-grid,
  .hero-flip-word,
  .hero-flip-letter { transition: none; }
  .hero-flip-word,
  .hero-flip-letter { will-change: auto; }
  .hero-flip-dot { animation: none !important; opacity: 1 !important; }
  .hero-light-beam { display: none; }
  .beam-particle, .beam-burst::before { animation: none; }
  .beam-button,
  .pricing-cta,
  .enterprise-cta,
  .pricing-toast,
  .inline-feature-item svg,
  .infra-route-lines path,
  .final-cta-actions a,
  .site-footer-enterprise,
  .site-footer-column a,
  .faq-lines-question,
  .faq-lines-question svg,
  .faq-lines-answer,
  .inquiry-pill-btn,
  .contact-submit-btn,
  .contact-channel-card { transition: none; }
}
.ip-inspector-page {
  width: 100%;
  min-height: 100vh;
  background-color: #ffffff;
  color: #09090b;
  padding-bottom: 80px;
}
.dark .ip-inspector-page {
  background-color: #000000;
  color: #f4f4f5;
}
.ip-shell {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}
.ip-hero-section {
  padding: 60px 0 32px 0;
  text-align: center;
}
.ip-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 12.5px;
  font-weight: 600;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: #059669;
  margin-bottom: 20px;
}
.dark .ip-hero-badge {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.3);
  color: #34d399;
}
.ip-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.8);
  animation: ipPulse 2s infinite ease-in-out;
}
@keyframes ipPulse {
  0%, 100% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
}
.ip-hero-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin: 0 0 14px 0;
}
.ip-hero-subtitle {
  font-size: clamp(15px, 2vw, 17px);
  color: #71717a;
  max-width: 680px;
  margin: 0 auto 36px auto;
  line-height: 1.55;
}
.ip-master-card {
  background: #ffffff;
  border: 1px solid #e4e4e7;
  border-radius: 24px;
  padding: 36px;
  text-align: left;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
  transition: all 0.25s ease;
}
.dark .ip-master-card {
  background: #050507;
  border-color: #1a1a1f;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.8);
}
.ip-master-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.ip-master-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #71717a;
}
.ip-master-status {
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  background: #f4f4f5;
  color: #09090b;
  border: 1px solid #e4e4e7;
}
.dark .ip-master-status {
  background: #121216;
  color: #f4f4f5;
  border-color: #27272a;
}
.ip-master-value-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 28px;
  border-bottom: 1px solid #f4f4f5;
  margin-bottom: 28px;
}
.dark .ip-master-value-row {
  border-bottom-color: #121216;
}
.ip-master-value {
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 800;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #09090b;
}
.dark .ip-master-value {
  color: #ffffff;
}
.ip-copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 10px;
  background: #09090b;
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.dark .ip-copy-btn {
  background: #ffffff;
  color: #09090b;
}
.ip-copy-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
.ip-copy-btn:active {
  transform: scale(0.98);
}
.ip-copy-sm {
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 6px;
}
.ip-master-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}
.ip-master-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-label {
  font-size: 12px;
  font-weight: 600;
  color: #71717a;
}
.stat-value {
  font-size: 15px;
  font-weight: 600;
  color: #09090b;
  word-break: break-word;
}
.dark .stat-value {
  color: #f4f4f5;
}
.ip-master-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid #f4f4f5;
}
.dark .ip-master-actions {
  border-top-color: #121216;
}
.ip-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 600;
  background: #f4f4f5;
  color: #09090b;
  border: 1px solid #e4e4e7;
  cursor: pointer;
  transition: all 0.2s ease;
}
.dark .ip-action-btn {
  background: #121216;
  color: #f4f4f5;
  border-color: #1f1f23;
}
.ip-action-btn:hover {
  background: #e4e4e7;
}
.dark .ip-action-btn:hover {
  background: #1a1a1f;
}
.ip-spin-icon.spinning {
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  100% { transform: rotate(360deg); }
}
.ip-panels-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}
@media (max-width: 860px) {
  .ip-panels-grid {
    grid-template-columns: 1fr;
  }
}
.ip-panel-card {
  background: #ffffff;
  border: 1px solid #e4e4e7;
  border-radius: 20px;
  padding: 28px;
  transition: all 0.25s ease;
}
.dark .ip-panel-card {
  background: #050507;
  border-color: #1a1a1f;
}
.ip-panel-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f4f4f5;
}
.dark .ip-panel-header {
  border-bottom-color: #121216;
}
.ip-panel-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f4f5;
  color: #09090b;
  border: 1px solid #e4e4e7;
  flex-shrink: 0;
}
.dark .ip-panel-icon {
  background: #0c0c0e;
  color: #ffffff;
  border-color: #1f1f23;
}
.ip-panel-title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
}
.ip-panel-sub {
  font-size: 12.5px;
  color: #71717a;
  margin: 2px 0 0 0;
}
.ip-spec-list {
  display: flex;
  flex-direction: column;
}
.ip-spec-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid #f4f4f5;
}
.dark .ip-spec-row {
  border-bottom-color: #0d0d10;
}
.ip-spec-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.spec-name {
  font-size: 13.5px;
  color: #71717a;
  font-weight: 500;
}
.spec-val {
  font-size: 13.5px;
  font-weight: 600;
  color: #09090b;
  text-align: right;
  word-break: break-word;
  max-width: 60%;
}
.dark .spec-val {
  color: #f4f4f5;
}
.ip-bgp-card {
  background: #ffffff;
  border: 1px solid #e4e4e7;
  border-radius: 20px;
  padding: 28px;
  margin-bottom: 24px;
}
.dark .ip-bgp-card {
  background: #050507;
  border-color: #1a1a1f;
}
.ip-bgp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.bgp-node {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 14px;
  background: #f8f8fa;
  border: 1px solid #e4e4e7;
  transition: all 0.2s ease;
}
.dark .bgp-node {
  background: #0a0a0c;
  border-color: #151518;
}
.bgp-node:hover {
  border-color: #cbd5e1;
}
.dark .bgp-node:hover {
  border-color: #27272a;
}
.bgp-node-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.bgp-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #71717a;
}
.bgp-title {
  font-size: 14.5px;
  font-weight: 700;
  color: #09090b;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dark .bgp-title {
  color: #f4f4f5;
}
.bgp-sub {
  font-size: 11.5px;
  color: #71717a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bgp-status {
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}
.bgp-status-good {
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.25);
}
.bgp-status-active {
  background: rgba(59, 130, 246, 0.12);
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.25);
}
.ip-ua-card {
  background: #ffffff;
  border: 1px solid #e4e4e7;
  border-radius: 16px;
  padding: 20px 24px;
}
.dark .ip-ua-card {
  background: #050507;
  border-color: #1a1a1f;
}
.ip-ua-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.ip-ua-code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12.5px;
  line-height: 1.5;
  color: #52525b;
  word-break: break-all;
  background: #f8f8fa;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #e4e4e7;
}
.dark .ip-ua-code {
  color: #a1a1aa;
  background: #0a0a0c;
  border-color: #151518;
}
.ip-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(30px);
  background: #09090b;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 9999px;
  font-size: 13.5px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 99999;
}
.dark .ip-toast {
  background: #ffffff;
  color: #09090b;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
}
.ip-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
#security-gate-overlay {
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: #000000 !important;
  z-index: 2147483647 !important;
  display: none !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 24px !important;
  box-sizing: border-box !important;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  font-family: inherit;
}
#security-gate-overlay.is-active {
  display: flex !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  visibility: visible !important;
}
.security-gate-card {
  background: #08080a;
  border: 1px solid #1c1c22;
  border-radius: 28px;
  padding: 48px 36px 36px 36px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.9), 0 0 50px rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.security-gate-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #111115;
  border: 1px solid #22222a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a1a1aa;
  margin-bottom: 28px;
}
.security-gate-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #71717a;
  margin-bottom: 12px;
}
.security-gate-title {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
  color: #ffffff;
  margin: 0 0 6px 0;
  text-transform: uppercase;
}
.security-gate-sub {
  font-size: 26px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.02em;
  color: #71717a;
  line-height: 1;
  margin: 0 0 20px 0;
}
.security-gate-desc {
  font-size: 14.5px;
  color: #a1a1aa;
  line-height: 1.55;
  max-width: 320px;
  margin: 0 0 32px 0;
}
.security-gate-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  margin-bottom: 32px;
}
.security-gate-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 20px;
  border-radius: 9999px;
  background: #ffffff;
  color: #09090b;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}
.security-gate-primary:hover {
  background: #e4e4e7;
  transform: translateY(-1px);
}
.security-gate-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 20px;
  border-radius: 9999px;
  background: transparent;
  color: #f4f4f5;
  border: 1px solid #27272a;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}
.security-gate-secondary:hover {
  background: #18181b;
  border-color: #3f3f46;
}
.security-gate-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.security-gate-links {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12.5px;
  color: #71717a;
}
.security-gate-links a {
  color: #71717a;
  text-decoration: none;
  transition: color 0.15s ease;
}
.security-gate-copy {
  font-size: 11.5px;
  color: #52525b;
}
#spa-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2.5px;
  width: 0%;
  background: linear-gradient(90deg, #3b82f6, #6366f1, #a855f7);
  z-index: 9999999;
  transition: width 0.22s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
  pointer-events: none;
  box-shadow: 0 0 10px rgba(99, 102, 241, 0.8), 0 0 5px rgba(59, 130, 246, 0.6);
}
::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 0.18s;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}
.product-features-section {
  padding: 64px 0 76px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  background: transparent;
}
.dark .product-features-section {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.product-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
}
@media (max-width: 1024px) {
  .product-bento-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .product-bento-grid {
    grid-template-columns: 1fr;
  }
}
.product-bento-card {
  background: #ffffff;
  border: 1px solid #e4e4e7;
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: default;
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease, background-color 240ms ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}
.dark .product-bento-card {
  background: #09090b;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}
.product-bento-card:hover {
  transform: translateY(-2px);
  border-color: #cbd5e1;
  box-shadow: 0 6px 16px -4px rgba(0, 0, 0, 0.06);
}
.dark .product-bento-card:hover {
  border-color: rgba(255, 255, 255, 0.16);
  background: #0e0e12;
  box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.5);
}
.product-bento-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: background-color 240ms ease;
}
.dark .product-bento-icon {
  border-color: rgba(255, 255, 255, 0.08);
}
.product-bento-icon.blue { background: rgba(59, 130, 246, 0.08); color: #3b82f6; }
.product-bento-icon.emerald { background: rgba(16, 185, 129, 0.08); color: #10b981; }
.product-bento-icon.purple { background: rgba(168, 85, 247, 0.08); color: #a855f7; }
.product-bento-icon.amber { background: rgba(245, 158, 11, 0.08); color: #f59e0b; }
.product-bento-icon.cyan { background: rgba(6, 182, 212, 0.08); color: #06b6d4; }
.product-bento-icon.rose { background: rgba(244, 63, 94, 0.08); color: #f43f5e; }
.product-bento-card:hover .product-bento-icon.blue { background: rgba(59, 130, 246, 0.14); }
.product-bento-card:hover .product-bento-icon.emerald { background: rgba(16, 185, 129, 0.14); }
.product-bento-card:hover .product-bento-icon.purple { background: rgba(168, 85, 247, 0.14); }
.product-bento-card:hover .product-bento-icon.amber { background: rgba(245, 158, 11, 0.14); }
.product-bento-card:hover .product-bento-icon.cyan { background: rgba(6, 182, 212, 0.14); }
.product-bento-card:hover .product-bento-icon.rose { background: rgba(244, 63, 94, 0.14); }
.product-bento-tag {
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #71717a;
  margin-bottom: 6px;
}
.dark .product-bento-tag {
  color: #a1a1aa;
}
.product-bento-card h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #09090b;
  margin: 0 0 8px;
  line-height: 1.35;
}
.dark .product-bento-card h3 {
  color: #ffffff;
}
.product-bento-card p {
  font-size: 13.5px;
  line-height: 1.6;
  color: #52525b;
  margin: 0;
}
.dark .product-bento-card p {
  color: #94a3b8;
}
.billing-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 28px auto 0;
}
.billing-toggle-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  border-radius: 999px;
  background: #f4f4f5;
  border: 1px solid #e4e4e7;
}
.dark .billing-toggle-pill {
  background: #121216;
  border-color: #27272a;
}
.billing-toggle-btn {
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  background: transparent;
  color: #71717a;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.dark .billing-toggle-btn {
  color: #a1a1aa;
}
.billing-toggle-btn.is-active {
  background: #ffffff;
  color: #09090b;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.dark .billing-toggle-btn.is-active {
  background: #27272a;
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.billing-discount-badge {
  font-size: 10.5px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
  background: #18181b;
  color: #ffffff;
}
.dark .billing-discount-badge {
  background: #ffffff;
  color: #09090b;
}
.comparison-section {
  padding: 80px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}
.dark .comparison-section {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.comparison-table-shell {
  border: 1px solid #e4e4e7;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.comparison-table-shell:hover {
  border-color: #d4d4d8;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}
.dark .comparison-table-shell {
  background: #09090b;
  border-color: #27272a;
}
.dark .comparison-table-shell:hover {
  border-color: #3f3f46;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 13.5px;
}
.comparison-table th, 
.comparison-table td {
  padding: 16px 22px;
  border-bottom: 1px solid #e4e4e7;
}
.dark .comparison-table th, 
.dark .comparison-table td {
  border-bottom-color: #1e1e24;
}
.comparison-table thead th {
  background: #fafafa;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: -0.01em;
  color: #09090b;
  border-bottom: 1px solid #e4e4e7;
}
.dark .comparison-table thead th {
  background: #121216;
  color: #ffffff;
  border-bottom-color: #27272a;
}
.comparison-table tbody tr {
  cursor: default;
}
.comparison-table tbody td {
  background-color: transparent;
  transition: background 0.24s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.24s ease, color 0.24s ease, transform 0.24s cubic-bezier(0.16, 1, 0.3, 1);
  color: #52525b;
}
.dark .comparison-table tbody td {
  color: #a1a1aa;
}
.comparison-table tbody tr:hover td {
  background: #f8fafc;
  color: #09090b;
  border-bottom-color: #d4d4d8;
}
.dark .comparison-table tbody tr:hover td {
  background: #141419;
  color: #ffffff;
  border-bottom-color: #27272a;
}
.comparison-feature-name {
  font-weight: 600;
  color: #09090b;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.24s cubic-bezier(0.16, 1, 0.3, 1), color 0.24s ease;
}
.dark .comparison-feature-name {
  color: #ffffff;
}
.comparison-table tbody tr:hover .comparison-feature-name {
  transform: translateX(6px);
  color: #000000;
}
.dark .comparison-table tbody tr:hover .comparison-feature-name {
  transform: translateX(6px);
  color: #ffffff;
}
.comparison-table tbody tr:hover td:first-child {
  border-left: 3px solid #09090b;
  padding-left: 19px;
}
.dark .comparison-table tbody tr:hover td:first-child {
  border-left: 3px solid #ffffff;
  padding-left: 19px;
}
.tech-stack-strip {
  padding: 48px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  text-align: center;
}
.dark .tech-stack-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.tech-stack-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.tech-stack-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 12px;
  border: 1px solid #e4e4e7;
  background: #ffffff;
  font-size: 13px;
  font-weight: 600;
  color: #27272a;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}
.floating-whatsapp-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  align-items: center;
  pointer-events: auto;
}
.floating-whatsapp-fab {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  cursor: pointer;
  position: relative;
}
.floating-whatsapp-circle {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #09090b;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 25px -4px rgba(0, 0, 0, 0.12), 0 4px 10px -2px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.dark .floating-whatsapp-circle {
  background: #0f1013;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 35px -4px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.05);
}
.floating-whatsapp-fab:hover .floating-whatsapp-circle {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 18px 40px -4px rgba(0, 0, 0, 0.22);
}
.dark .floating-whatsapp-fab:hover .floating-whatsapp-circle {
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 20px 48px -4px rgba(0, 0, 0, 0.9), 0 0 20px rgba(255, 255, 255, 0.1);
}
.floating-whatsapp-online-dot {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  border: 2px solid #ffffff;
}
.dark .floating-whatsapp-online-dot {
  border-color: #0f1013;
}
.floating-whatsapp-tooltip {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 6px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.1);
  color: #09090b;
  opacity: 0;
  transform: translateX(10px);
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}
.dark .floating-whatsapp-tooltip {
  background: rgba(15, 16, 19, 0.92);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px -4px rgba(0, 0, 0, 0.6);
  color: #f4f4f5;
}
.floating-whatsapp-fab:hover .floating-whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}
.whatsapp-tooltip-text {
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.2;
}
.whatsapp-tooltip-sub {
  font-size: 10.5px;
  color: #22c55e;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.whatsapp-tooltip-sub::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #22c55e;
}
@media (max-width: 640px) {
  .floating-whatsapp-container {
    bottom: 20px;
    right: 20px;
  }
  .floating-whatsapp-circle {
    width: 48px;
    height: 48px;
  }
  .floating-whatsapp-tooltip {
    display: none;
  }
}
