/* ==========================================================================
   NETHERHOST CORE STYLESHEET - FULL SITE
   ========================================================================== */

/* --- Custom Adobe Fonts Loaded Locally --- */
@font-face {
  font-family: 'Obviously';
  src: url('fonts/Obviously.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Obviously';
  src: url('fonts/Obviously-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Proxima Nova';
  src: url('fonts/ProximaNova-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Proxima Nova';
  src: url('fonts/ProximaNova-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

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

html {
  scroll-behavior: smooth;
}

html:focus-within {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
}

:root {
  /* Colors */
  --bg-color: #0b0b12;
  --surface-dark: #10101a;
  --surface-medium: #131321;
  --surface-light: #1c1c2e;
  
  --primary-purple: #8b3dff;
  --primary-purple-hover: #a855ff;
  --primary-purple-glow: rgba(139, 61, 255, 0.4);
  
  --text-white: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.6);
  --text-disabled: rgba(255, 255, 255, 0.3);
  
  --accent-green: #10b981;
  --accent-green-bg: rgba(16, 185, 129, 0.12);
  
  --border-color: rgba(255, 255, 255, 0.08);
  --border-color-hover: rgba(255, 255, 255, 0.14);
  --border-purple-glow: rgba(139, 61, 255, 0.3);

  /* Fonts */
  --font-headings: 'Obviously', 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-body: 'Proxima Nova', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Spacing & Sizing */
  --max-width-content: 1440px;
  --header-height: 72px;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-color);
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  overflow-x: clip;
}

body {
  overflow-x: clip;
  overscroll-behavior-x: none;
  background-color: var(--bg-color);
}

/* Hide entrance targets until GSAP initializes (prevents flash/snap) */
html.has-js:not(.animations-ready) .hero-headline,
html.has-js:not(.animations-ready) .hero-subtitle,
html.has-js:not(.animations-ready) .hero-ctas .btn,
html.has-js:not(.animations-ready) .social-proof,
html.has-js:not(.animations-ready) .feature-strip,
html.has-js:not(.animations-ready) .pricing-intro-left > *,
html.has-js:not(.animations-ready) .pricing-intro-right,
html.has-js:not(.animations-ready) .pricing-card,
html.has-js:not(.animations-ready) .comparison-section .section-header > *,
html.has-js:not(.animations-ready) .comparison-card,
html.has-js:not(.animations-ready) .comparison-cta,
html.has-js:not(.animations-ready) .how-it-works-section .section-header > *,
html.has-js:not(.animations-ready) .step-card,
html.has-js:not(.animations-ready) .specs-info > *,
html.has-js:not(.animations-ready) .specs-metric-item,
html.has-js:not(.animations-ready) .locations-card,
html.has-js:not(.animations-ready) .panel-preview-section .section-header > *,
html.has-js:not(.animations-ready) .panel-mockup,
html.has-js:not(.animations-ready) .faq-section .section-header > *,
html.has-js:not(.animations-ready) .faq-item-accordion,
html.has-js:not(.animations-ready) .footer-cta-panel,
html.has-js:not(.animations-ready) .footer-brand-col,
html.has-js:not(.animations-ready) .footer-link-col,
html.has-js:not(.animations-ready) .footer-bottom-row {
  opacity: 0;
  visibility: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(6, 5, 10, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
  z-index: 130;
}

body > :not(.header) {
  transition: filter 0.28s ease, opacity 0.28s ease, transform 0.28s ease;
}

body.desktop-nav-open > :not(.header) {
  filter: blur(12px) brightness(0.52);
  transform: scale(1.01);
}

body.mobile-nav-open {
  overflow: hidden;
  touch-action: none;
}

/* --- Common Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 800;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
  background: var(--surface-light);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-purple);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.625rem 1.25rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
  gap: 8px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn-purple {
  background: linear-gradient(135deg, #c084fc 0%, #8b3dff 52%, #7c3aed 100%);
  color: var(--text-white);
  box-shadow:
    0 14px 26px rgba(83, 24, 163, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    inset 0 -1px 0 rgba(45, 8, 92, 0.9);
}

.btn-purple:hover {
  transform: translateY(-1px) scale(1.01);
  box-shadow:
    0 18px 34px rgba(105, 36, 197, 0.42),
    0 0 0 1px rgba(223, 197, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -1px 0 rgba(39, 8, 80, 0.95);
}

.btn-purple:active {
  transform: translateY(0) scale(0.985);
}

.btn-purple::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.18), transparent 34%),
    radial-gradient(circle at 82% 100%, rgba(255, 255, 255, 0.08), transparent 38%);
  pointer-events: none;
  z-index: -1;
}

.btn-purple::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.16) 48%, transparent 100%);
  transform: translateX(-120%);
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.btn-purple:hover::after {
  transform: translateX(120%);
}

.btn-purple .icon,
.btn-purple svg {
  color: #fff;
}

.btn-outline-login {
  background-color: transparent;
  border-color: var(--border-color);
  color: var(--text-white);
}

.btn-outline-login:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: var(--border-color-hover);
}

.btn-outline {
  background-color: rgba(255, 255, 255, 0.03);
  border-color: var(--border-color);
  color: var(--text-white);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.07);
  border-color: var(--border-color-hover);
  transform: translateY(-1px);
}

.btn-dark-outline {
  background-color: rgba(16, 16, 26, 0.5);
  border-color: var(--border-color);
  color: var(--text-white);
}

.btn-dark-outline:hover {
  background-color: rgba(25, 25, 38, 0.8);
  border-color: var(--border-color-hover);
  transform: translateY(-1px);
}

.btn-full {
  width: 100%;
  padding: 0.75rem 1.5rem;
}

.btn-large {
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  border-radius: 10px;
}

.btn-glow {
  box-shadow: 0 4px 15px rgba(139, 61, 255, 0.25);
}

.btn-glow:hover {
  box-shadow: 0 8px 30px rgba(139, 61, 255, 0.45);
}

.icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.icon.chevron {
  transition: transform 0.2s ease;
}

.btn:hover .icon.chevron {
  transform: translateX(3px);
}

/* --- Global Section Containers --- */
.section-container {
  width: 100%;
  max-width: var(--max-width-content);
  margin: 0 auto;
  padding: 0 4.5rem;
}

.section-header {
  margin-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section-header.center {
  align-items: center;
  text-align: center;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--primary-purple-hover);
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-white);
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 600px;
}

/* ==========================================================================
   1. HEADER / NAVIGATION (REFINED)
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  transform: none;
  width: 100%;
  max-width: none;
  height: 74px;
  z-index: 330;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  background-color: rgba(9, 8, 15, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
  display: flex;
  align-items: center;
  transition: none;
}

.header-container {
  width: 100%;
  height: 100%;
  max-width: var(--max-width-content);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.logo-mark {
  width: auto;
  height: 32.5px;
  transition: transform 0.3s ease;
}

.logo:hover .logo-mark {
  transform: rotate(-5deg) scale(1.05);
}

.logo-text {
  font-family: var(--font-headings);
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, var(--text-white) 0%, rgba(255,255,255,0.7) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 1.8vw, 1.75rem);
  flex: 1;
  min-width: 0;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 0.4rem 0;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--text-white);
}

.nav-link.active {
  color: var(--text-white);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.55rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(192, 132, 252, 0.2), rgba(139, 61, 255, 0.95), rgba(192, 132, 252, 0.2));
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.875rem;
  flex-shrink: 0;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 24px;
  height: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 110;
  padding: 0;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--text-white);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-toggle.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobile-menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 340;
  display: block !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  background: rgba(4, 4, 8, 0.76);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  cursor: pointer;
}

.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100%;
  background: #09080f;
  border-left: none;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  will-change: transform;
}

.mobile-nav:not(.open) {
  overflow: hidden;
}

.mobile-nav:not(.open) .mobile-nav-panel {
  transform: translate3d(100%, 0, 0);
}

.mobile-nav-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(139, 61, 255, 0.14), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 24%);
  pointer-events: none;
}

.mobile-nav-panel-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(10, 10, 15, 0.96);
}

.mobile-nav-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
}

.mobile-nav-close {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-white);
  cursor: pointer;
}

.mobile-nav-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}

.mobile-nav-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-nav-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-nav-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.28rem;
  min-height: 60px;
  padding: 1rem 0;
  border-radius: 0;
  font-family: var(--font-body);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  transition: color 0.22s ease, transform 0.22s ease;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: transparent;
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  color: var(--primary-purple);
  background: transparent;
  transform: translateX(4px);
}

.mobile-nav-link-title {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text-white);
}

.mobile-nav-link-desc {
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.5);
}

.mobile-nav-footer-bar {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 1rem 1.25rem 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(10, 10, 15, 0.98);
  box-shadow: 0 -18px 30px rgba(0, 0, 0, 0.24);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
}

/* ==========================================================================
   2. HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  width: 100%;
  height: 780px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-height);
  background-color: var(--bg-color);
}

/* Video Background Layer */
.video-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 1s ease;
}

/* Dark Gradients to isolate cube visual and make text readable */
.video-gradient-overlay-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    #0b0b12 0%, 
    #0b0b12 30%, 
    rgba(11, 11, 18, 0.8) 50%, 
    rgba(11, 11, 18, 0.2) 75%, 
    rgba(11, 11, 18, 0) 100%
  );
  z-index: 2;
}

.video-gradient-overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(0deg, 
    #0b0b12 0%, 
    rgba(11, 11, 18, 0.6) 40%, 
    rgba(11, 11, 18, 0) 100%
  );
  z-index: 2;
}

.video-gradient-overlay-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 180px;
  background: linear-gradient(180deg, 
    #0b0b12 0%, 
    rgba(11, 11, 18, 0.8) 40%, 
    rgba(11, 11, 18, 0) 100%
  );
  z-index: 2;
  pointer-events: none;
}

/* Hero Content Grid */
.hero-container {
  width: 100%;
  max-width: var(--max-width-content);
  margin: 0 auto;
  padding: 0 4.5rem;
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  height: 100%;
}

.hero-content {
  max-width: 680px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Headline */
.hero-headline {
  font-family: var(--font-headings);
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--text-white);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-word {
  display: inline-block;
  will-change: transform, opacity;
  vertical-align: baseline;
  padding: 0.06em;
}

.text-purple-accent {
  display: inline;
}

.text-purple-accent:not(:has(.hero-word)),
.text-purple-accent .hero-word {
  background-image: linear-gradient(180deg, #f5ecff 0%, #d8b4fe 34%, #a855f7 68%, #7c3aed 100%);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.text-purple-accent .hero-word {
  display: inline-block;
  line-height: 1.08;
  padding-block: 0.1em;
  padding: 0.06em;
  transform: translateZ(0);
}

/* Subtitle */
.hero-subtitle {
  font-size: 1.125rem;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 2.25rem;
}

/* CTAs */
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

/* Social Proof */
.social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar-stack {
  display: flex;
  align-items: center;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg-color);
  margin-left: -8px;
}

.avatar:first-child {
  margin-left: 0;
}

.proof-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stars {
  display: flex;
  align-items: center;
  gap: 2px;
}

.star-icon {
  width: 14px;
  height: 14px;
  color: #fbbf24;
}

.proof-text {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* Mute Control */
.mute-button {
  position: absolute;
  right: 4.5rem;
  bottom: 4.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(16, 16, 26, 0.4);
  border: 1px solid var(--border-color);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 12;
  transition: all 0.2s ease-in-out;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.mute-button:hover {
  background-color: rgba(139, 61, 255, 0.2);
  border-color: rgba(139, 61, 255, 0.5);
  transform: scale(1.05);
}

.mute-button svg {
  width: 18px;
  height: 18px;
}

/* ==========================================================================
   3. FEATURE STRIP
   ========================================================================== */
.feature-strip-section {
  width: 100%;
  max-width: var(--max-width-content);
  margin: -50px auto 72px auto; /* Overlapping hero */
  padding: 0 4.5rem;
  position: relative;
  z-index: 20;
}

.feature-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(11, 11, 18, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 1.5rem 1rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.feature-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 1rem;
  transition: all 0.2s ease;
}

.feature-icon-wrapper {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, #c084fc 0%, #8b3dff 58%, #7c3aed 100%);
  border: 1px solid rgba(203, 162, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s ease;
  box-shadow:
    0 12px 24px rgba(76, 19, 153, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.feature-item:hover .feature-icon-wrapper {
  transform: translateY(-1px) scale(1.03);
  box-shadow:
    0 18px 34px rgba(98, 32, 188, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.feature-icon {
  width: 20px;
  height: 20px;
  color: #fff;
}

.feature-text {
  display: flex;
  flex-direction: column;
}

.feature-title {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 2px;
}

.feature-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.feature-divider {
  width: 1px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  flex-shrink: 0;
}

/* ==========================================================================
   4. PRICING SECTION
   ========================================================================== */
.pricing-section {
  position: relative;
  width: 100%;
  background-color: var(--bg-color);
  padding: 120px 0; /* 120px padding top/bottom */
  z-index: 10;
}

.pricing-container {
  width: 100%;
  max-width: 1280px; /* Max-width 1280px */
  margin: 0 auto;
  padding: 0 2rem;
}

.pricing-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3.5rem;
}

.pricing-intro-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.pricing-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--primary-purple-hover);
  margin-bottom: 10px;
}

.pricing-heading {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-white);
  margin-bottom: 12px;
}

.pricing-subtitle {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 520px;
}

.pricing-intro-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.85rem;
  flex-shrink: 0;
}

.pricing-control-group {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  width: 100%;
  max-width: 360px;
}

.pricing-control-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  align-self: flex-start;
}

.location-toggle-container {
  width: 100%;
}

.location-toggle-container .billing-toggle-btn {
  flex: 1;
  justify-content: center;
  white-space: nowrap;
}

.location-label-short {
  display: none;
}

.location-more-regions {
  margin: 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.35;
  align-self: flex-start;
}

.pricing-carousel {
  width: 100%;
}

/* Billing Toggle Slider */
.billing-toggle-container {
  background-color: rgba(11, 11, 18, 0.6);
  border: 1px solid var(--border-color);
  padding: 4px;
  border-radius: 99px;
  display: flex;
  align-items: center;
}

.billing-toggle-btn {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px 20px;
  border-radius: 99px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  gap: 8px;
}

.billing-toggle-btn.active {
  color: var(--text-white);
  background-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.savings-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--accent-green);
  background-color: var(--accent-green-bg);
  padding: 2px 8px;
  border-radius: 99px;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

/* Pricing Cards Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: stretch;
  min-width: 0;
}

.pricing-grid--home {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1120px;
  margin-inline: auto;
}

.pricing-card {
  min-width: 0;
  position: relative;
  background:
    radial-gradient(circle at top right, rgba(161, 98, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(18, 17, 29, 1) 0%, rgba(12, 11, 18, 1) 100%);
  border: 1px solid rgba(255, 255, 255, 0.02);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 2rem 1.75rem 1.75rem 1.75rem;
  min-height: 100%;
  height: 100%;
  cursor: pointer;
  /* Top-left inset glow + sharp clean inner border highlight */
  box-shadow: inset 25px 25px 50px -10px rgba(255, 255, 255, 0.04), 
              inset 0px 0px 0px 1px rgba(255, 255, 255, 0.05), 
              0 8px 24px rgba(0, 0, 0, 0.15);
}

.pricing-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 6, 12, 0.08) 0%, rgba(7, 6, 12, 0.76) 62%, rgba(7, 6, 12, 0.95) 100%),
    radial-gradient(circle at 72% 44%, rgba(173, 112, 255, 0.2), transparent 22%);
  z-index: 2;
  pointer-events: none;
}

.pricing-card:hover {
  border-color: rgba(255, 255, 255, 0.04);
  /* Top-left inset glow brightens and shifts to soft purple highlight on hover, no lift-up */
  box-shadow: inset 30px 30px 60px -5px rgba(139, 61, 255, 0.15), 
              inset 0px 0px 0px 1px rgba(255, 255, 255, 0.12), 
              0 12px 30px rgba(0, 0, 0, 0.2);
}

.card-content-wrapper {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  height: 100%;
  min-height: 0;
  position: relative;
  z-index: 3;
}

.card-header {
  margin-bottom: 1.25rem;
  min-height: 5.5rem;
}

.title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 6px;
  min-height: 1.75rem;
}

.card-title {
  font-family: var(--font-headings);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-white);
}

.card-description {
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--text-muted);
  margin-top: 6px;
  max-width: 100%;
  min-height: 2.6rem;
}

.card-body {
  margin-bottom: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.price-container {
  display: flex;
  align-items: baseline;
  min-height: 3rem;
}

.price-from {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-right: 0.35rem;
  align-self: center;
}

.price-symbol {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-white);
  margin-right: 2px;
  align-self: center;
}

.price-amount {
  font-family: var(--font-headings);
  font-size: 2.5rem; /* Large and sharp as in screenshot */
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.02em;
  line-height: 1;
}

/* Pricing cards carousel + location controls */
.shop-flow-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.shop-flow-step {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.9rem;
  min-height: 100%;
  padding: 1rem 1rem 1.05rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.015)),
    rgba(14, 12, 21, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 10px 24px rgba(0, 0, 0, 0.24);
  transition: border-color 0.22s ease, background-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.shop-flow-step.is-active {
  border-color: rgba(139, 61, 255, 0.3);
  background:
    radial-gradient(circle at top left, rgba(139, 61, 255, 0.16), transparent 55%),
    rgba(24, 16, 38, 0.96);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 16px 34px rgba(61, 24, 112, 0.22);
}

.shop-flow-step:hover {
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.shop-flow-number {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text-white);
  background: linear-gradient(180deg, rgba(139, 61, 255, 0.42), rgba(95, 41, 178, 0.52));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 8px 18px rgba(88, 35, 168, 0.22);
  flex-shrink: 0;
}

.shop-flow-copy {
  min-width: 0;
}

.shop-flow-title {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.shop-flow-desc {
  display: block;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.plan-specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin: auto 0 0;
  min-height: 5.5rem;
}

.plan-specs li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.35;
}

.plan-specs li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(139, 61, 255, 0.85);
  flex-shrink: 0;
}

.plan-location-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.625rem 0.875rem;
  margin-top: 0.95rem;
  margin-bottom: 1rem;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.plan-location-tags-label {
  flex: 0 0 auto;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  white-space: nowrap;
}

.plan-location-tag-list {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.plan-location-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.65rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
  padding: 0.38rem 0.72rem;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  line-height: 1;
}

.plan-location-tag.is-active {
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(139, 61, 255, 0.38);
  background: rgba(139, 61, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.pricing-card.is-selected {
  border-color: rgba(139, 61, 255, 0.34);
  box-shadow: inset 30px 30px 60px -5px rgba(139, 61, 255, 0.1),
              inset 0 0 0 1px rgba(139, 61, 255, 0.16),
              0 12px 30px rgba(0, 0, 0, 0.2);
}

.pricing-card[data-plan] {
  cursor: pointer;
}

.pricing-card[data-plan] .shop-action {
  cursor: pointer;
}

/* Selected setup summary (frontend shop preview) */
.selected-setup {
  margin-top: 2rem;
  padding: 1.35rem 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(139, 61, 255, 0.18);
  background:
    radial-gradient(circle at top left, rgba(139, 61, 255, 0.12), transparent 45%),
    rgba(11, 11, 18, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 12px 32px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.selected-setup-header {
  margin-bottom: 1rem;
}

.selected-setup-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-purple-hover);
  margin-bottom: 0.35rem;
}

.selected-setup-note {
  display: none;
}

.selected-setup-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem 1.25rem;
  margin: 0 0 1.25rem;
}

.selected-setup-item dt {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-disabled);
  margin-bottom: 0.25rem;
}

.selected-setup-item dd {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-white);
  line-height: 1.35;
}

.selected-setup-price dd {
  font-family: var(--font-headings);
  font-size: 1.125rem;
  color: var(--primary-purple-hover);
}

/* Preview modals */
body.preview-modal-open {
  overflow: hidden;
}

.preview-modal-root {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.preview-modal-root[hidden] {
  display: none !important;
}

.preview-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(4, 4, 8, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
}

.preview-modal {
  position: relative;
  width: min(100%, 440px);
  max-height: min(88vh, 560px);
  overflow: auto;
  padding: 1.75rem 1.5rem 1.5rem;
  border-radius: 20px;
  border: 1px solid rgba(139, 61, 255, 0.22);
  background:
    radial-gradient(circle at top right, rgba(139, 61, 255, 0.14), transparent 42%),
    rgba(12, 12, 20, 0.96);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.preview-modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.preview-modal-close span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  background: rgba(255, 255, 255, 0.75);
  transform-origin: center;
}

.preview-modal-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.preview-modal-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.preview-modal-close:focus-visible,
.preview-modal-backdrop:focus-visible {
  outline: 2px solid rgba(139, 61, 255, 0.65);
  outline-offset: 2px;
}

.preview-modal-eyebrow {
  display: none;
}

.preview-modal-title {
  font-family: var(--font-headings);
  font-size: clamp(1.25rem, 4vw, 1.5rem);
  font-weight: 800;
  color: var(--text-white);
  margin: 0 0 0.75rem;
  padding-right: 2.5rem;
}

.preview-modal-body {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.preview-modal-body p {
  margin: 0 0 0.75rem;
}

.preview-modal-body p:last-child {
  margin-bottom: 0;
}

.preview-modal-muted {
  color: rgba(255, 255, 255, 0.55) !important;
  font-size: 0.875rem !important;
}

.preview-modal-list {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
}

.preview-modal-list li {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
  padding: 0.25rem 0;
}

.preview-modal-actions {
  margin-top: 1.25rem;
}

.preview-modal-actions .btn {
  width: 100%;
  min-height: 44px;
}

.btn:focus-visible,
.billing-toggle-btn:focus-visible,
.faq-trigger:focus-visible,
.mobile-accordion-trigger:focus-visible {
  outline: 2px solid rgba(139, 61, 255, 0.65);
  outline-offset: 2px;
}

.price-period {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-disabled);
  margin-left: 4px;
}

.card-footer {
  margin-top: auto;
  width: 100%;
  display: flex;
  align-items: stretch;
}

.card-footer .btn {
  width: 100%;
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* 3D Visual Decoration inside card - full bleed cover, transparent blend */
.cube-decoration {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
  opacity: 0.92;
  filter: saturate(1.08) contrast(1.04);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease, filter 0.5s ease;
}

.pricing-card:hover .cube-decoration {
  transform: scale(1.015);
  opacity: 1;
  filter: saturate(1.12) contrast(1.08);
}

.free-card .cube-decoration {
  object-position: center;
  transform: none;
}

.starter-card .cube-decoration,
.custom-card .cube-decoration {
  object-position: center;
  transform: none;
}

.performance-card .cube-decoration {
  object-position: center;
  transform: none;
}

.premium-card .cube-decoration {
  object-position: center;
  transform: none;
}

@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-6px) rotate(2deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

/* Free Card specific glowing styles from screenshot */
.free-card {
  border: 1px solid rgba(139, 61, 255, 0.25);
  background: linear-gradient(135deg, #121220 0%, #0d0d18 100%);
  /* Inside glow from top-left */
  box-shadow: inset 30px 30px 60px -15px rgba(139, 61, 255, 0.25), 0 10px 30px rgba(0, 0, 0, 0.5);
}

.free-card:hover {
  border-color: rgba(139, 61, 255, 0.45);
  box-shadow: inset 35px 35px 70px -10px rgba(139, 61, 255, 0.35), 0 15px 40px rgba(139, 61, 255, 0.15);
}

/* Popular Badge */
.popular-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-purple-hover);
  background-color: rgba(139, 61, 255, 0.15);
  border: 1px solid rgba(139, 61, 255, 0.3);
  padding: 3px 10px;
  border-radius: 99px;
}

/* ==========================================================================
   5. FREE VS PAID COMPARISON SECTION
   ========================================================================== */
.comparison-section {
  padding: 72px 0;
  background-color: var(--bg-color);
  position: relative;
  z-index: 10;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.comparison-card {
  position: relative;
  background-color: var(--surface-dark);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 3rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.comparison-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.comp-card-glow-overlay {
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.03;
  z-index: 1;
}

.comp-card-glow-overlay.purple-glow {
  background-color: var(--primary-purple);
  opacity: 0.08;
}

.comp-header {
  margin-bottom: 2.25rem;
  position: relative;
  z-index: 2;
}

.comp-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 8px;
}

.comp-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.comp-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  z-index: 2;
}

.comp-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--text-white);
}

.comp-features li.disabled {
  color: var(--text-disabled);
}

.comp-check-icon {
  width: 18px;
  height: 18px;
  color: var(--accent-green);
  flex-shrink: 0;
}

.comp-cross-icon {
  width: 18px;
  height: 18px;
  color: rgba(239, 68, 68, 0.6);
  flex-shrink: 0;
}

.comparison-cta {
  display: flex;
  justify-content: center;
}

.client-area-cta-spaced {
  margin-top: 34px;
}

/* Premium styled card glow */
.comparison-card.premium-style {
  background: linear-gradient(180deg, #0b0b12 0%, #10101f 100%);
  border-color: rgba(139, 61, 255, 0.2);
}

.comparison-card.premium-style:hover {
  border-color: rgba(139, 61, 255, 0.4);
  box-shadow: 0 10px 30px rgba(139, 61, 255, 0.05);
}

/* ==========================================================================
   6. HOW IT WORKS SECTION
   ========================================================================== */
.how-it-works-section {
  padding: 72px 0;
  background:
    linear-gradient(180deg, rgba(8, 7, 13, 0.46) 0%, rgba(8, 7, 13, 0.68) 100%),
    url('images/get-online.webp') center top/cover no-repeat;
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.how-it-works-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 36%, rgba(12, 10, 22, 0.04), rgba(8, 7, 13, 0.22) 52%, rgba(8, 7, 13, 0.54) 100%);
  pointer-events: none;
}

.how-it-works-section .section-container {
  position: relative;
  z-index: 1;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.step-card {
  background-color: rgba(18, 19, 32, 0.72);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
  transition: all 0.3s ease;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.step-card:hover {
  border-color: var(--border-color-hover);
}

.step-number {
  font-family: var(--font-headings);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(139, 61, 255, 0.15);
  line-height: 1;
  margin-bottom: 1.25rem;
  background: linear-gradient(180deg, rgba(139, 61, 255, 0.35) 0%, rgba(139, 61, 255, 0.05) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.step-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   7. LOCATIONS & Specs SECTION
   ========================================================================== */
.specs-section {
  padding: 80px 0;
  background-color: var(--bg-color);
  position: relative;
  z-index: 10;
}

.specs-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.specs-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.specs-metric-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
  width: 100%;
}

.specs-metric-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.metric-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: rgba(139, 61, 255, 0.08);
  border: 1px solid rgba(139, 61, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary-purple-hover);
}

.metric-icon-box svg {
  width: 22px;
  height: 22px;
}

.specs-metric-item h4 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 6px;
}

.specs-metric-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Latency board card */
.locations-card {
  background-color: var(--surface-dark);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.locations-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 6px;
}

.locations-card-subtitle {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.ping-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-height: 285px;
  overflow-y: auto;
  padding-right: 6px;
}

.ping-list::-webkit-scrollbar {
  width: 6px;
}

.ping-list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 4px;
}

.ping-list::-webkit-scrollbar-thumb {
  background: rgba(133, 51, 244, 0.3);
  border-radius: 4px;
}

.ping-list::-webkit-scrollbar-thumb:hover {
  background: rgba(133, 51, 244, 0.6);
}

.ping-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  transition: all 0.2s ease;
}

.ping-item:hover {
  background-color: rgba(139, 61, 255, 0.03);
  border-color: rgba(139, 61, 255, 0.1);
  transform: translateX(4px);
}

.ping-country {
  display: flex;
  align-items: center;
  gap: 14px;
}

.flag-icon {
  font-size: 1.5rem;
}

.ping-node-name {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-white);
}

.ping-status-text {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.ping-value-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ping-bar {
  width: 4px;
  height: 14px;
  border-radius: 2px;
  display: inline-block;
}

.ping-bar.excellent { background-color: var(--accent-green); box-shadow: 0 0 8px var(--accent-green); }
.ping-bar.good { background-color: #eab308; box-shadow: 0 0 8px #eab308; }
.ping-bar.fair { background-color: #f97316; box-shadow: 0 0 8px #f97316; }

.ping-ms {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--text-white);
  width: 50px;
  text-align: right;
}

.locations-card-footer {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.shield-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-green);
  background-color: var(--accent-green-bg);
  padding: 4px 12px;
  border-radius: 99px;
}

/* ==========================================================================
   8. PANEL PREVIEW / CUSTOMER DASHBOARD TEASER
   ========================================================================== */
.panel-preview-section {
  padding: 80px 0;
  background-color: #08070d;
  position: relative;
  z-index: 10;
}

.panel-mockup {
  width: 100%;
  background-color: #0b0a10;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
  margin-top: 4rem;
}

.panel-mockup-header {
  background-color: #0f0e16;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  padding: 0.875rem 1.5rem;
  display: flex;
  align-items: center;
  position: relative;
}

.window-controls {
  display: flex;
  gap: 8px;
  position: absolute;
  left: 1.5rem;
}

.window-controls span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.window-controls span:nth-child(1) { background-color: #ff5f56; }
.window-controls span:nth-child(2) { background-color: #ffbd2e; }
.window-controls span:nth-child(3) { background-color: #27c93f; }

.panel-server-title {
  width: 100%;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.panel-mockup-body {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 520px;
}

/* Panel Sidebar */
.panel-sidebar {
  background-color: #0c0b12;
  border-right: 1px solid rgba(255, 255, 255, 0.03);
  padding: 1.75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 0.9375rem;
  color: var(--text-white);
  letter-spacing: 0.04em;
  padding-left: 0.5rem;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all 0.2s ease;
}

.sidebar-link svg {
  width: 16px;
  height: 16px;
  color: var(--text-muted);
}

.sidebar-link:hover, .sidebar-link.active {
  color: var(--text-white);
  background-color: rgba(255, 255, 255, 0.04);
}

.sidebar-link.active svg {
  color: var(--primary-purple-hover);
}

/* Panel Content */
.panel-main {
  background-color: #09080e;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.panel-ribbon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.server-display-name {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-white);
}

.server-node-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.panel-status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 6px 14px;
  border-radius: 99px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.status-dot.online { background-color: var(--accent-green); box-shadow: 0 0 10px var(--accent-green); }
.status-dot.offline { background-color: #ef4444; box-shadow: 0 0 10px #ef4444; }
.status-dot.starting { background-color: #eab308; box-shadow: 0 0 10px #eab308; }

.status-text {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Action Controls */
.panel-actions-bar {
  display: flex;
  gap: 10px;
}

.panel-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8125rem;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  color: var(--text-white);
}

.panel-action-btn.start { background-color: rgba(16, 185, 129, 0.15); border-color: rgba(16, 185, 129, 0.25); }
.panel-action-btn.start:hover { background-color: rgba(16, 185, 129, 0.25); }

.panel-action-btn.restart { background-color: rgba(234, 179, 8, 0.1); border-color: rgba(234, 179, 8, 0.2); }
.panel-action-btn.restart:hover { background-color: rgba(234, 179, 8, 0.2); }

.panel-action-btn.stop { background-color: rgba(239, 68, 68, 0.1); border-color: rgba(239, 68, 68, 0.2); }
.panel-action-btn.stop:hover { background-color: rgba(239, 68, 68, 0.2); }

/* Resource Usage Tiles */
.panel-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.metric-tile {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  padding: 1.25rem;
}

.tile-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.tile-value-row {
  display: flex;
  align-items: baseline;
  margin-bottom: 12px;
}

.tile-value {
  font-family: var(--font-headings);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
}

.tile-total {
  font-size: 0.8125rem;
  color: var(--text-disabled);
  margin-left: 4px;
}

.metric-progress-bg {
  width: 100%;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 99px;
  overflow: hidden;
}

.metric-progress-bar {
  height: 100%;
  background-color: var(--primary-purple);
  border-radius: 99px;
  transition: width 0.4s ease;
}

/* Console Logs */
.panel-console {
  background-color: #06050a;
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.console-header {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.console-log {
  font-family: monospace;
  font-size: 0.8125rem;
  line-height: 1.6;
  max-height: 180px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 0.5rem;
}

.log-line {
  word-break: break-all;
}

.log-line.text-system { color: #888; }
.log-line.text-success { color: var(--accent-green); }
.log-line.text-info { color: #38bdf8; }
.log-line.text-warning { color: #eab308; }

/* ==========================================================================
   9. FAQ SECTION
   ========================================================================== */
.faq-section {
  padding: 80px 0;
  background-color: var(--bg-color);
  position: relative;
  z-index: 10;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item-accordion {
  background-color: var(--surface-dark);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.25s ease;
}

.faq-item-accordion:hover {
  border-color: var(--border-color-hover);
}

.faq-trigger {
  width: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--text-white);
  transition: color 0.2s ease;
}

.faq-trigger:hover {
  color: var(--primary-purple-hover);
}

.faq-chevron {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

/* Expanded state indicators */
.faq-item-accordion.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--primary-purple-hover);
}

.faq-item-accordion.open {
  border-color: rgba(139, 61, 255, 0.25);
  background-color: rgba(11, 11, 18, 0.8);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0 1.5rem;
}

.faq-content p {
  padding-bottom: 1.5rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   10. PREMIUM FOOTER & CTA SECTION
   ========================================================================== */
.premium-footer-section {
  position: relative;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  padding: 8rem 0 0 0;
  z-index: 10;
  overflow: hidden;
  background-image: url('images/footer.webp');
}

.footer-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, 
    #0b0b12 0%, 
    rgba(11, 11, 18, 0.25) 25%, 
    rgba(11, 11, 18, 0.15) 50%, 
    rgba(11, 11, 18, 0.8) 85%, 
    #0b0b12 100%
  );
  z-index: 1;
  pointer-events: none;
}

.footer-section-container {
  position: relative;
  width: 100%;
  max-width: var(--max-width-content);
  margin: 0 auto;
  padding: 0 4.5rem;
  z-index: 2;
}

/* Elevated CTA Panel */
.footer-cta-panel {
  background:
    linear-gradient(180deg, rgba(10, 9, 17, 0.22), rgba(10, 9, 17, 0.76)),
    url('images/cta-bg.png') center/cover no-repeat,
    rgba(16, 16, 26, 0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 5rem 3rem;
  text-align: center;
  margin-bottom: 6rem;
  position: relative;
  overflow: hidden;
  box-shadow: 
    inset 25px 25px 50px -10px rgba(255, 255, 255, 0.04), 
    inset 0px 0px 0px 1px rgba(255, 255, 255, 0.05),
    0 30px 60px rgba(0, 0, 0, 0.6);
}

.footer-cta-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  margin: 0 auto;
}

.footer-cta-heading {
  font-family: var(--font-headings);
  font-size: 3rem;
  font-weight: 900;
  color: var(--text-white);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.footer-cta-subtext {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2.25rem;
}

.footer-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* Actual Footer */
.footer-nav-block {
  width: 100%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 1.25rem;
  margin-bottom: 1.75rem;
  max-width: 320px;
}

.social-icons {
  display: flex;
  gap: 14px;
}

.social-icons a,
.social-icons button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.2s ease;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  padding: 0;
  font: inherit;
  line-height: 1;
  box-shadow: none;
}

.social-icons a:hover,
.social-icons button:hover {
  color: var(--text-white);
  background-color: rgba(139, 61, 255, 0.15);
  border-color: rgba(139, 61, 255, 0.3);
}

/* Links Columns */
.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-link-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-title {
  font-family: var(--font-headings);
  font-size: 0.8125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-white);
  margin-bottom: 8px;
}

.footer-link-col a,
.footer-link-col button {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
  font: inherit;
  text-align: left;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
}

button.preview-action {
  font: inherit;
  color: inherit;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
}

.footer-link-col a:hover,
.footer-link-col button:hover {
  color: var(--primary-purple-hover);
}

/* Bottom Copyright Row */
.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
  font-size: 0.75rem;
  color: var(--text-disabled);
  flex-wrap: wrap;
  gap: 12px;
}

/* ==========================================================================
   MEGA MENU STYLES
   ========================================================================== */

/* Nav Item Wrapper */
.nav-item {
  position: static; /* Allows mega menus to position relative to the header container */
  display: inline-flex;
  align-items: stretch; /* Stretch to full height of header */
  height: 100%;
}

/* Nav links triggers */
.nav-link-btn {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0 1rem;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  height: 100%;
}

.nav-link-btn::after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
  opacity: 0.6;
  margin-left: 2px;
}

.nav-item:hover .nav-link-btn {
  color: var(--text-white);
}

.nav-item.open .nav-link-btn {
  color: var(--text-white);
}

.nav-item:hover .nav-link-btn::after {
  transform: translateY(1px) rotate(225deg);
}

.nav-item.open .nav-link-btn::after {
  transform: translateY(1px) rotate(225deg);
}

/* Sticky Header Scroll Modifiers */
.header.sticky {
  top: 0;
  background-color: rgba(9, 8, 15, 0.94) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28) !important;
}

/* Mega Menu Container */
.mega-menu {
  position: absolute;
  top: calc(100% - 4px); /* slightly overlaps header to prevent mouse leave gap */
  left: 50%;
  transform: translateX(-50%) translateY(10px) scale(0.98);
  width: 1020px;
  max-width: calc(100vw - 2.5rem);
  background: rgba(10, 8, 18, 0.94);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(139, 61, 255, 0.15);
  border-radius: 20px;
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.6), 
    0 0 40px rgba(139, 61, 255, 0.03),
    inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  z-index: 140;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.2s;
  pointer-events: none;
}

/* Invisible hover bridge to keep menu open while moving cursor downward */
.mega-menu::before {
  content: '';
  position: absolute;
  top: -28px;
  left: 0;
  width: 100%;
  height: 32px;
  background: transparent;
  z-index: 2;
}

.nav-item.open ~ .nav-item .mega-menu {
  pointer-events: none;
}

.nav-item:hover .mega-menu,
.nav-item.open .mega-menu,
.mega-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0) scale(1);
  pointer-events: auto;
}

/* Mega Menu Grid Layout */
.mega-menu-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  overflow: hidden;
  border-radius: 20px;
}

.mega-menu-inner.single-panel {
  grid-template-columns: 1fr;
}

.mega-menu-left {
  padding: 2.25rem;
}

.mega-menu-full {
  padding: 2.25rem;
}

.mega-menu-header {
  margin-bottom: 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  padding-bottom: 1rem;
}

.mega-menu-title {
  font-family: var(--font-headings);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--text-white);
  display: block;
}

.mega-menu-subtitle {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Links & Cards */
.mega-menu-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mega-menu-links.two-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.mega-menu-link-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.02);
  text-decoration: none;
  transition: all 0.2s ease;
  font: inherit;
  text-align: left;
  appearance: none;
  -webkit-appearance: none;
  border-width: 1px;
  cursor: pointer;
}

.mega-menu-link-card:hover {
  background-color: rgba(139, 61, 255, 0.06);
  border-color: rgba(139, 61, 255, 0.18);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(139, 61, 255, 0.04);
}

.mega-menu-link-icon {
  width: 36px;
  height: 36px;
  background-color: rgba(139, 61, 255, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-purple);
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.mega-menu-link-card:hover .mega-menu-link-icon {
  background-color: rgba(139, 61, 255, 0.2);
  color: var(--text-white);
  box-shadow: 0 0 10px rgba(139, 61, 255, 0.3);
}

.mega-link-title {
  display: block;
  font-family: var(--font-headings);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 2px;
}

.mega-link-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Locations cards */
.location-item-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 1rem;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.02);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.22s ease, background-color 0.22s ease;
}

a.location-item-card:hover {
  border-color: rgba(139, 61, 255, 0.24);
  background-color: rgba(139, 61, 255, 0.06);
}

a.location-item-card:focus-visible {
  outline: 2px solid rgba(139, 61, 255, 0.65);
  outline-offset: 2px;
}

button.location-item-card {
  width: 100%;
  font: inherit;
  text-align: left;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

button.location-item-card.pending {
  opacity: 0.78;
}

button.location-item-card:focus-visible {
  outline: 2px solid rgba(139, 61, 255, 0.65);
  outline-offset: 2px;
}

.location-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.location-status-dot.active {
  background-color: #10b981;
  box-shadow: 0 0 8px #10b981;
}

.location-status-dot.info {
  background-color: #3b82f6;
  box-shadow: 0 0 8px #3b82f6;
}

.location-item-title {
  display: block;
  font-family: var(--font-headings);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 2px;
}

.location-item-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Features Grid */
.features-mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature-mega-card {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 0.875rem;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.02);
  transition: all 0.2s ease;
  text-decoration: none;
  color: inherit;
}

.feature-mega-card:hover {
  background-color: rgba(139, 61, 255, 0.05);
  border-color: rgba(139, 61, 255, 0.15);
  transform: translateY(-1px);
}

.feature-mega-card:focus-visible {
  outline: 2px solid rgba(139, 61, 255, 0.65);
  outline-offset: 2px;
}

.feature-mega-icon {
  width: 36px;
  height: 36px;
  padding: 8px;
  color: #fff;
  margin-top: 0;
  flex-shrink: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, #c084fc 0%, #8b3dff 58%, #7c3aed 100%);
  box-shadow:
    0 12px 22px rgba(79, 21, 155, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.feature-mega-title {
  display: block;
  font-family: var(--font-headings);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 2px;
}

.feature-mega-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Right Side Panels */
.mega-menu-right-panel {
  position: relative;
  background-color: rgba(139, 61, 255, 0.02);
  border-left: 1px solid rgba(255, 255, 255, 0.03);
  padding: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-size: 138%;
  background-position: center;
}

.mega-menu-right-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 8, 14, 0.28) 0%, rgba(9, 8, 14, 0.78) 100%);
  z-index: 1;
}

.mega-menu-right-panel::after {
  display: none;
}

#menu-free-servers .mega-menu-right-panel {
  background-image: url('images/free-header.webp');
  background-position: center;
}

.mega-menu-right-panel.paid-panel {
  background-image: url('images/paid-header.webp');
  background-position: center;
}

.mega-menu-right-panel.info-panel {
  background-image: url('images/locations-header.webp');
  background-position: center;
}

.mega-menu-right-panel.support-panel {
  background-image: url('images/support-header.webp');
  background-position: center;
}

.right-panel-content {
  text-align: center;
  max-width: 240px;
  position: relative;
  z-index: 2;
}

.right-panel-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 100px;
  background-color: rgba(139, 61, 255, 0.12);
  border: 1px solid rgba(139, 61, 255, 0.2);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.right-panel-tag.price-tag {
  background-color: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.2);
}

.right-panel-title {
  font-family: var(--font-headings);
  font-size: 1.125rem;
  font-weight: 900;
  color: var(--text-white);
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

/* Locations right bullet panel */
.right-panel-content.info-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  max-width: 100%;
}

.info-bullet {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.bullet-icon {
  width: 18px;
  height: 18px;
  color: var(--primary-purple);
  flex-shrink: 0;
}

/* Support panel status */
.status-pill-glow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 100px;
  background-color: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.15);
  font-size: 0.8125rem;
  color: #10b981;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.status-pill-glow .glow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #10b981;
  box-shadow: 0 0 8px #10b981;
  animation: pulse-dot 2s infinite;
}

/* Mobile Accordion Styles */
.mobile-nav-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  flex: 1;
  min-height: 0;
  gap: 0.5rem;
  overflow-y: auto;
  padding: 1rem 1.25rem 1.5rem;
  position: relative;
  z-index: 2;
  -webkit-overflow-scrolling: touch;
}

.mobile-accordion-item {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0;
  background: transparent;
  overflow: hidden;
  transition: all 0.22s ease;
}

.mobile-accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 60px;
  padding: 1.1rem 0;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}

.mobile-accordion-trigger.active {
  color: var(--primary-purple);
}

.mobile-accordion-item:has(.mobile-accordion-trigger.active) {
  border-color: rgba(255, 255, 255, 0.05);
  background: transparent;
}

.mobile-accordion-label {
  flex: 1;
}

.mobile-accordion-trigger svg {
  width: 16px;
  height: 16px;
  color: var(--text-muted);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.mobile-accordion-trigger.active svg {
  transform: rotate(180deg);
  color: var(--primary-purple);
}

.mobile-accordion-content {
  height: 0;
  opacity: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding-left: 1rem;
  border-left: 2px solid rgba(139, 61, 255, 0.15);
  margin: 0.2rem 0 1rem 0.2rem;
}

.mobile-sub-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  padding: 0.65rem 0.5rem;
  border-radius: 8px;
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mobile-sub-link::before {
  content: "•";
  color: rgba(139, 61, 255, 0.4);
  font-size: 0.8rem;
}

.mobile-sub-link:active, .mobile-sub-link:hover {
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.03);
  transform: translateX(4px);
}

button.mobile-sub-link {
  width: 100%;
  font: inherit;
  text-align: left;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: none;
}

button.mobile-sub-link:focus-visible {
  outline: 2px solid rgba(139, 61, 255, 0.65);
  outline-offset: 2px;
}

.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  width: 100%;
}

.mobile-nav-actions .btn {
  width: 100%;
  min-height: 52px;
  justify-content: center;
}

.mobile-nav-footer {
  text-align: center;
  padding-top: 0.9rem;
}

.mobile-nav-footer .uptime-badge {
  justify-content: center;
}

.uptime-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.status-indicator-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #10b981;
  box-shadow: 0 0 6px #10b981;
}

@keyframes pulse-dot {
  0% { opacity: 0.6; }
  50% { opacity: 1; }
  100% { opacity: 0.6; }
}

/* ==========================================================================
   RESPONSIVE LAYOUTS (BREAKPOINTS)
   ========================================================================== */

/* --- Tablet Breakpoint (768px - 1023px) --- */
@media screen and (max-width: 1180px) {
  html,
  body {
    overflow-x: clip;
    overscroll-behavior-x: none;
  }

  /* Common Grid paddings */
  .section-container, .header-container, .hero-container, .feature-strip-section, .pricing-container, .footer-container, .footer-bottom-container, .footer-section-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  
  /* Header */
  .header {
    top: 12px;
    width: calc(100% - 24px);
    height: 60px;
    border-radius: 8px;
  }
  
  .nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  /* Hero */
  .hero-section {
    height: 720px;
  }
  
  .hero-headline {
    font-size: 4rem;
  }

  /* Feature Strip */
  .feature-strip-section {
    margin-top: -30px;
  }
  
  .feature-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 1.75rem;
  }
  
  .feature-divider {
    display: none;
  }

  /* Pricing Intro */
  .pricing-intro {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .pricing-intro-right,
  .pricing-control-group,
  .location-toggle-container,
  .billing-toggle-container {
    max-width: 100%;
    width: 100%;
    align-items: stretch;
  }

  .pricing-control-label,
  .location-more-regions {
    align-self: stretch;
  }

  .shop-flow-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .pricing-grid--home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
  }

  .pricing-grid--home .pricing-card:last-child {
    grid-column: 1 / -1;
    max-width: 24rem;
    justify-self: center;
    width: 100%;
  }

  /* Comparison */
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Steps Works */
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Specs Locations */
  .specs-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  /* Panel Mockup */
  .panel-mockup-body {
    grid-template-columns: 180px 1fr;
  }
  
  .panel-metrics-grid {
    grid-template-columns: 1fr;
    gap: 0.875rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}

@media screen and (max-width: 1360px) {
  .header-container,
  .hero-container,
  .section-container,
  .feature-strip-section,
  .footer-section-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .nav {
    gap: 1rem;
  }

  .header-actions {
    gap: 0.625rem;
  }

  .hero-headline {
    font-size: 4.25rem;
  }
}

@media screen and (max-width: 430px) {
  .hero-headline {
    font-size: clamp(2rem, 9.2vw, 2.5rem);
  }

  .section-title {
    font-size: clamp(1.65rem, 7vw, 2rem);
  }

  .selected-setup-grid {
    grid-template-columns: 1fr;
  }

  .feature-strip {
    grid-template-columns: 1fr;
  }

  .shop-flow-step {
    grid-template-columns: 1fr;
  }

  .shop-flow-number {
    margin-bottom: 0.15rem;
  }
}

/* --- Mobile Breakpoint (Under 768px) --- */
@media screen and (max-width: 767px) {
  .btn,
  .billing-toggle-btn,
  .location-option,
  .faq-trigger,
  .mobile-menu-toggle,
  .mobile-accordion-trigger,
  .preview-modal-close,
  .preview-modal-actions .btn,
  #checkoutPreviewBtn {
    min-height: 44px;
  }

  /* Common Grid paddings */
  .section-container, .header-container, .hero-container, .feature-strip-section, .pricing-container, .footer-container, .footer-bottom-container, .footer-section-container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  
  .header {
    top: 0;
    width: 100%;
    height: 64px;
    border-radius: 0;
  }

  .premium-footer-section {
    background-image: url('images/footer.webp') !important;
    background-position: center top !important;
    background-size: cover !important;
    padding-top: 5rem !important;
  }

  .section-title {
    font-size: 2rem;
  }
  
  .section-header {
    margin-bottom: 2.25rem;
  }

  /* Header actions */
  .header-actions .btn {
    display: none; /* Hidden, moved inside mobile drawer overlay */
  }

  .mobile-nav {
    padding: 0;
  }

  .mobile-nav-panel {
    width: 100%;
    max-width: 100%;
    border-left: none;
  }

  .mobile-nav-panel-header {
    padding: 0.95rem 1rem;
  }

  body.mobile-nav-open .skip-link {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  /* Hero Section */
  .hero-section {
    height: auto;
    min-height: 100vh;
    padding-bottom: 4rem;
  }
  
  .video-gradient-overlay-left {
    background: linear-gradient(180deg,
      #050409 0%,
      rgba(5, 4, 9, 0.92) 45%,
      rgba(5, 4, 9, 0.78) 70%,
      #050409 100%
    );
  }

  .video-gradient-overlay-bottom {
    height: 55%;
    background: linear-gradient(0deg,
      #050409 0%,
      rgba(5, 4, 9, 0.85) 35%,
      rgba(5, 4, 9, 0) 100%
    );
  }

  .hero-content {
    width: 100%;
    text-align: center;
    align-items: center;
    margin-top: 3rem;
  }
  
  .hero-headline {
    font-size: 2.5rem;
    text-align: center;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    max-width: 100%;
  }

  .hero-ctas {
    width: 100%;
    flex-direction: column;
  }
  
  .hero-ctas .btn {
    width: 100%;
  }
  
  .social-proof {
    flex-direction: column;
    align-items: center;
  }

  .mute-button {
    right: 1.25rem;
    bottom: 1.25rem;
    width: 44px;
    height: 44px;
  }

  /* Feature Strip */
  .feature-strip-section {
    margin-top: -20px;
    margin-bottom: 40px;
  }
  
  .feature-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.9rem;
    padding: 1.15rem;
    border-radius: 16px;
  }
  
  .feature-item {
    align-items: flex-start;
    padding: 0.2rem;
    gap: 10px;
    min-width: 0;
  }

  .feature-divider {
    display: none;
  }
  
  .feature-icon-wrapper {
    width: 32px;
    height: 32px;
    border-radius: 6px;
  }
  
  .feature-icon {
    width: 16px;
    height: 16px;
  }

  .feature-text {
    min-width: 0;
  }

  .feature-title {
    line-height: 1.15;
  }

  .feature-desc {
    line-height: 1.35;
  }

  /* Pricing Intro */
  .pricing-intro-right,
  .pricing-control-group {
    width: 100%;
    max-width: 100%;
    align-items: stretch;
  }

  .pricing-control-label,
  .location-more-regions {
    align-self: stretch;
  }

  .location-label-long {
    display: none;
  }

  .location-label-short {
    display: inline;
  }

  .billing-toggle-container {
    width: 100% !important;
    max-width: 100%;
  }
  
  .billing-toggle-btn {
    flex: 1;
    justify-content: center;
  }

  .pricing-carousel {
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0;
    margin-inline: 0;
    padding-inline: 0;
    padding-bottom: 0.75rem;
    scrollbar-width: none;
  }

  .pricing-carousel::-webkit-scrollbar {
    display: none;
  }

  .pricing-grid {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0.9rem;
    width: auto;
    min-width: 0;
    overflow-x: visible;
    padding: 0;
    margin: 0;
  }

  .pricing-card {
    flex: 0 0 calc(100vw - 2.5rem);
    width: calc(100vw - 2.5rem);
    max-width: 24rem;
    scroll-snap-align: start;
    flex-shrink: 0;
    padding: 1.5rem 1.25rem;
    box-sizing: border-box;
  }

  .cube-decoration {
    object-position: 15% center;
  }

  .shop-flow-strip {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
  }

  .shop-flow-step {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 0.875rem;
    padding: 1rem 1rem 1.05rem;
    border-radius: 18px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.015)),
      rgba(13, 11, 20, 0.92);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
  }

  .shop-flow-step.is-active {
    border-color: rgba(139, 61, 255, 0.3);
    background:
      radial-gradient(circle at top left, rgba(139, 61, 255, 0.16), transparent 55%),
      rgba(24, 16, 38, 0.96);
  }

  .shop-flow-number {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    font-size: 0.95rem;
    background: linear-gradient(180deg, rgba(139, 61, 255, 0.42), rgba(95, 41, 178, 0.5));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .shop-flow-title {
    font-size: 1.08rem;
    margin-bottom: 0.22rem;
  }

  .shop-flow-desc {
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .selected-setup {
    padding: 1.25rem 1rem;
    border-radius: 20px;
  }

  .selected-setup-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .selected-setup-item {
    padding-bottom: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .selected-setup-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }

  .selected-setup-item dd {
    font-size: 1rem;
  }

  .selected-setup-price dd {
    font-size: 1.85rem;
  }

  .card-description {
    max-width: 100%;
  }

  .plan-location-tags {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .plan-location-tag-list {
    width: 100%;
  }

  /* Comparison */
  .comparison-card {
    padding: 1.5rem;
  }
  
  .comp-title {
    font-size: 1.5rem;
  }

  /* Step Card */
  .step-card {
    padding: 1.5rem;
  }

  /* Specifications locations */
  .locations-card {
    padding: 1.5rem;
  }
  
  .ping-item {
    padding: 0.75rem 1rem;
  }

  /* Panel Mockup Dashboard */
  .panel-preview-section {
    overflow-x: clip;
    padding: 48px 0;
  }

  .panel-mockup,
  .panel-mockup-header,
  .panel-mockup-body,
  .panel-sidebar,
  .sidebar-nav,
  .panel-main,
  .panel-ribbon,
  .panel-actions-bar,
  .panel-action-btn,
  .panel-metrics-grid,
  .metric-tile,
  .panel-console,
  .console-log {
    box-sizing: border-box;
    min-width: 0;
    max-width: 100%;
  }

  .panel-mockup-body {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .panel-main {
    min-width: 0;
    padding: 1rem 0.95rem 0.95rem;
    gap: 1rem;
  }

  .panel-mockup {
    margin-top: 2rem;
    border-radius: 18px;
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.5);
    max-width: 100%;
  }

  .panel-ribbon {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
    padding-bottom: 1rem;
  }

  .server-display-name {
    font-size: 1.15rem;
    line-height: 1.1;
  }

  .panel-actions-bar {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .panel-action-btn {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 0.9rem;
    font-size: 0.85rem;
  }

  .panel-metrics-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .panel-metrics-grid .metric-tile:last-child {
    grid-column: auto;
  }

  .metric-tile {
    padding: 0.85rem;
  }

  .tile-value {
    font-size: 1.35rem;
  }

  .panel-console {
    padding: 0.85rem;
  }

  .console-log {
    font-size: 0.68rem;
    line-height: 1.45;
    max-height: 110px;
    overflow-x: hidden;
  }

  .log-line {
    white-space: pre-wrap;
    word-break: break-all;
    overflow-wrap: break-word;
  }

  .panel-mockup-header {
    padding: 0.8rem 0.95rem 0.8rem 3.5rem;
    min-height: 52px;
  }

  .window-controls {
    left: 0.95rem;
    gap: 6px;
  }

  .panel-server-title {
    text-align: left;
    font-size: 0.72rem;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .panel-sidebar {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding: 1rem 0.95rem 0.85rem;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0.75rem;
  }
  
  .sidebar-brand {
    display: none !important; /* Hide brand to give maximum navigation area */
  }
  
  .sidebar-nav {
    flex-direction: row;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    min-width: 0;
    justify-content: flex-start;
    gap: 0.55rem;
    padding-bottom: 0.25rem;
    scroll-padding-inline: 0.95rem;
    scrollbar-width: none;
  }

  .sidebar-nav::-webkit-scrollbar {
    display: none;
  }
  
  .sidebar-link {
    white-space: nowrap;
    min-width: max-content;
    flex: 0 0 auto;
    padding: 0.68rem 0.82rem;
    border-radius: 12px;
    gap: 0.5rem;
    font-size: 0.75rem;
  }
  
  .sidebar-link svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
  }
  
  .panel-status-indicator {
    width: auto;
    justify-content: flex-start;
    min-height: 40px;
    padding: 0.45rem 0.8rem;
  }

  /* FAQ Accordion */
  .faq-trigger {
    padding: 1.25rem;
    font-size: 0.95rem;
  }

  /* Elevated CTA Mobile Overrides */
  .footer-cta-panel {
    padding: 3rem 1.25rem;
    margin-bottom: 4rem;
    border-radius: 22px;
  }
  
  .footer-cta-heading {
    font-size: clamp(2rem, 10vw, 2.5rem);
  }
  
  .footer-cta-subtext {
    font-size: 0.95rem;
  }

  .footer-cta-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .footer-cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Footer Mobile Overrides */
  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-brand-col {
    gap: 0.95rem;
  }

  .footer-tagline {
    max-width: 28rem;
    margin: 0;
    font-size: 1rem;
    line-height: 1.55;
  }

  .footer-link-col {
    gap: 0.85rem;
  }

  .footer-link-col a,
  .footer-link-col button {
    font-size: 1rem;
    line-height: 1.45;
  }
  
  .footer-bottom-row {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding-bottom: calc(2rem + env(safe-area-inset-bottom, 0px));
  }

  .footer-brand-col .logo {
    display: inline-flex;
    align-items: center;
  }
}

@media screen and (max-width: 520px) {
  .panel-sidebar {
    padding-inline: 0.8rem;
  }

  .sidebar-link {
    padding: 0.62rem 0.74rem;
    font-size: 0.72rem;
  }

  .server-display-name {
    font-size: 1.18rem;
  }

  .panel-actions-bar {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .panel-action-btn,
  .panel-action-btn.stop {
    width: 100%;
    grid-column: auto;
  }

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

  .panel-metrics-grid .metric-tile:last-child {
    grid-column: auto;
  }

  .panel-main {
    padding: 0.85rem 0.75rem;
  }

  .panel-console {
    padding: 0.85rem 0.75rem;
  }
}

/* --- Accessibility: Respect prefers-reduced-motion --- */
@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }
  
  .video-bg-container {
    background-image: url('images/free-header.webp');
    background-size: cover;
    background-position: center;
  }
  
  .cube-decoration {
    animation: none;
  }

  html.has-js:not(.animations-ready) .hero-headline,
  html.has-js:not(.animations-ready) .hero-subtitle,
  html.has-js:not(.animations-ready) .hero-ctas .btn,
  html.has-js:not(.animations-ready) .social-proof,
  html.has-js:not(.animations-ready) .feature-strip,
  html.has-js:not(.animations-ready) .pricing-intro-left > *,
  html.has-js:not(.animations-ready) .pricing-intro-right,
  html.has-js:not(.animations-ready) .pricing-card,
  html.has-js:not(.animations-ready) .comparison-section .section-header > *,
  html.has-js:not(.animations-ready) .comparison-card,
  html.has-js:not(.animations-ready) .comparison-cta,
  html.has-js:not(.animations-ready) .how-it-works-section .section-header > *,
  html.has-js:not(.animations-ready) .step-card,
  html.has-js:not(.animations-ready) .specs-info > *,
  html.has-js:not(.animations-ready) .specs-metric-item,
  html.has-js:not(.animations-ready) .locations-card,
  html.has-js:not(.animations-ready) .panel-preview-section .section-header > *,
  html.has-js:not(.animations-ready) .panel-mockup,
  html.has-js:not(.animations-ready) .faq-section .section-header > *,
  html.has-js:not(.animations-ready) .faq-item-accordion,
  html.has-js:not(.animations-ready) .footer-cta-panel,
  html.has-js:not(.animations-ready) .footer-brand-col,
  html.has-js:not(.animations-ready) .footer-link-col,
  html.has-js:not(.animations-ready) .footer-bottom-row {
    opacity: 1;
    visibility: visible;
  }
  
  .btn:hover, .pricing-card:hover, .step-card:hover {
    transform: none !important;
  }
}

/* ==========================================================================
   MOTION + WEBGL ENHANCEMENTS
   ========================================================================== */

.hero-section,
.video-bg-container,
.pricing-card,
.comparison-card,
.step-card,
.locations-card,
.panel-mockup,
.footer-cta-panel {
  isolation: isolate;
}

.hero-webgl-layer {
  display: none !important;
}

.hero-webgl-canvas {
  display: none !important;
}

.feature-strip,
.pricing-card,
.comparison-card,
.step-card,
.locations-card,
.panel-mockup,
.footer-cta-panel,
.btn {
  transform: translateZ(0);
  transform-style: preserve-3d;
  will-change: transform;
  backface-visibility: hidden;
}

.pricing-card::after,
.comparison-card::after,
.step-card::after,
.locations-card::after,
.panel-mockup::after,
.footer-cta-panel::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 24%, transparent 78%, rgba(168, 85, 255, 0.08));
  opacity: 0.55;
}

.flag-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-size: 0.9375rem;
  letter-spacing: 0.08em;
  color: var(--text-white);
  background: linear-gradient(180deg, rgba(139, 61, 255, 0.18), rgba(139, 61, 255, 0.06));
  border: 1px solid rgba(139, 61, 255, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.ping-ms {
  min-width: 58px;
  text-align: right;
}

@media screen and (max-width: 767px) {
  .hero-webgl-layer {
    display: none !important;
  }

  .flag-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    font-size: 0.8125rem;
  }

  .social-icons {
    gap: 12px;
  }

  .social-icons a,
  .social-icons button {
    width: 44px;
    height: 44px;
  }

  .footer-link-col a,
  .footer-link-col button {
    min-height: 34px;
  }
}

@media screen and (max-width: 479px) {
  .feature-strip {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-webgl-layer {
    display: none;
  }
}

/* Shared inner pages */
.skip-link {
  position: fixed;
  top: -100px;
  left: 14px;
  z-index: 220;
  padding: 12px 16px;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-weight: 700;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.skip-link:focus, .skip-link:focus-visible {
  top: 14px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: top 0.2s ease, opacity 0.2s ease, visibility 0.2s ease;
}
body.desktop-nav-open .skip-link,
body.mobile-nav-open .skip-link {
  top: -100px;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none;
}
.nav-link-btn.is-current{color:var(--text-white)}
.nav-link-btn.is-current::after{opacity:1}
.mobile-accordion-trigger.is-current{color:var(--text-white);border-color:rgba(139,61,255,.3);background:rgba(139,61,255,.12)}
.page-hero{position:relative;padding:calc(var(--header-height) + 56px) 0 56px;overflow:clip}
.page-hero--with-media{min-height:72svh}
.page-hero-media{position:absolute;inset:0;background-position:center;background-size:cover;opacity:.88}
.page-hero-container{position:relative;z-index:1}
.page-hero-copy{max-width:760px}
.page-title{font-family:var(--font-headings);font-size:clamp(3rem,7vw,6.8rem);line-height:.94;letter-spacing:-.05em;max-width:12ch}
.page-subtitle{margin-top:20px;max-width:640px;color:rgba(255,255,255,.72);font-size:clamp(1.05rem,2vw,1.35rem);line-height:1.65}
.page-hero-actions{margin-top:32px}
.trust-pill-row{display:flex;flex-wrap:wrap;gap:12px;margin-top:24px}
.trust-pill,.mini-status-pill,.location-chip,.status-badge,.latency-badge{display:inline-flex;align-items:center;gap:8px;min-height:42px;padding:10px 16px;border:1px solid rgba(255,255,255,.12);border-radius:999px;background:rgba(14,14,24,.78);color:rgba(255,255,255,.84);font-size:.95rem;font-weight:600}
.content-section{position:relative;padding:36px 0}
.surface-card,.inline-cta-panel,.page-location-note{position:relative;overflow:hidden;border:1px solid rgba(255,255,255,.08);border-radius:28px;background:linear-gradient(180deg,rgba(30,25,52,.62),rgba(12,12,20,.96)),linear-gradient(180deg,rgba(255,255,255,.03),rgba(255,255,255,0));box-shadow:0 28px 80px rgba(6,5,10,.4),inset 0 1px 0 rgba(255,255,255,.04)}
.surface-card{padding:30px}
.surface-card::after,.inline-cta-panel::after,.page-location-note::after{content:"";position:absolute;inset:0;pointer-events:none;background:linear-gradient(135deg,rgba(139,61,255,.08),transparent 42%,rgba(255,255,255,.02))}
.two-col-grid{display:grid;grid-template-columns:minmax(0,1.2fr) minmax(0,.8fr);gap:28px;align-items:start}
.stacked-info-column,.feature-copy-list,.support-action-stack{display:grid;gap:18px}
.card-kicker-row{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:12px;margin-bottom:18px}
.form-preview-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;margin-top:24px}
.fake-field{min-height:96px;padding:18px;border-radius:22px;border:1px solid rgba(255,255,255,.08);background:rgba(255,255,255,.03);display:flex;flex-direction:column;justify-content:space-between;gap:12px}
.fake-field span{color:rgba(255,255,255,.52);font-size:.88rem;text-transform:uppercase;letter-spacing:.08em}
.fake-field strong{font-size:1.08rem;line-height:1.4}
.fake-field--full{grid-column:1/-1}
.configurator-note{display:grid;gap:18px;margin-top:24px}
.configurator-note p,.route-map-note,.location-footnote,.page-location-note p{color:rgba(255,255,255,.66);line-height:1.7}
.icon-list-grid,.page-location-grid,.legal-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px}
.mini-feature-card,.location-spotlight-card,.legal-card{position:relative;min-height:100%;padding:22px;border-radius:24px;border:1px solid rgba(255,255,255,.08);background:rgba(255,255,255,.025)}
.mini-feature-card strong,.location-spotlight-card h3,.legal-card h2{display:block;margin-bottom:10px;font-family:var(--font-headings);font-size:1.45rem;letter-spacing:-.02em}
.mini-feature-card span,.location-spotlight-card p,.legal-card p,.feature-copy-list p,.mini-step-card p,.page-location-note span{color:rgba(255,255,255,.66);line-height:1.7}
.sequence-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px;margin-top:18px}
.mini-step-card{min-height:180px;padding:22px;border-radius:24px;background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.08)}
.mini-step-card span{display:inline-flex;align-items:center;justify-content:center;width:48px;height:48px;border-radius:18px;margin-bottom:16px;background:rgba(139,61,255,.22);color:var(--text-white);font-family:var(--font-headings);font-size:1rem}
.mini-step-card strong,.feature-copy-list strong{display:block;margin-bottom:8px;color:var(--text-white);font-family:var(--font-headings);font-size:1.15rem}
.page-location-note{display:grid;gap:8px;padding:20px 24px;margin-bottom:24px}
.page-location-note span{color:var(--text-white);font-family:var(--font-headings);font-size:1rem}
.page-pricing-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
.page-pricing-grid .pricing-card{cursor:default}
.page-pricing-grid .price-container::after{content:'';display:block;margin-top:.95rem;padding-top:.95rem;margin-bottom:1rem;border-top:1px solid rgba(255,255,255,.06)}
.page-pricing-grid .plan-specs{min-height:8.75rem}
.table-wrap{overflow-x:auto;border-radius:28px;border:1px solid rgba(255,255,255,.08);background:rgba(255,255,255,.02)}
.comparison-table{width:100%;min-width:720px;border-collapse:collapse}
.comparison-table th,.comparison-table td{padding:18px 20px;border-bottom:1px solid rgba(255,255,255,.08);text-align:left}
.comparison-table thead th{color:var(--text-white);font-family:var(--font-headings);font-size:1rem;background:rgba(139,61,255,.08)}
.comparison-table tbody td{color:rgba(255,255,255,.74)}
.route-map-card{min-height:520px}
.route-grid-visual{position:relative;width:100%;max-width:100%;min-width:0;aspect-ratio:1376/618;margin-top:24px;border-radius:26px;overflow:hidden;border:1px solid rgba(255,255,255,.08);background-image:linear-gradient(180deg,rgba(9,8,15,.55) 0%,rgba(9,8,15,.28) 38%,rgba(9,8,15,.4) 72%,rgba(9,8,15,.72) 100%),url("images/world-map-network.jpg");background-size:100% 100%;background-position:center;background-repeat:no-repeat}
.map-pin{position:absolute;transform:translate(-50%,-100%);display:flex;flex-direction:column;align-items:center;cursor:default;z-index:2;max-width:min(42vw,9.5rem)}
.map-pin-marker{position:relative;width:10px;height:10px;flex-shrink:0}
.map-pin-dot{position:absolute;inset:0;border-radius:50%;background:#c084fc;box-shadow:0 0 10px 2px rgba(192,132,252,.9)}
.map-pin-pulse{position:absolute;inset:0;border-radius:50%;background:rgba(167,139,250,.55);animation:map-pin-pulse-ring 2.4s cubic-bezier(.215,.61,.355,1) infinite}
@keyframes map-pin-pulse-ring{0%{transform:scale(1);opacity:.9}80%,100%{transform:scale(3.4);opacity:0}}
.map-pin-label{margin-bottom:8px;padding:6px 10px;border-radius:10px;background:rgba(12,11,20,.88);border:1px solid rgba(255,255,255,.12);box-shadow:0 6px 18px rgba(0,0,0,.35);text-align:center;transition:border-color .2s ease,transform .2s ease;max-width:100%}
.map-pin-name{display:block;font-family:var(--font-headings);font-size:.72rem;font-weight:700;letter-spacing:.03em;color:var(--text-white);line-height:1.2;white-space:nowrap}
.map-pin-ping{display:block;font-size:.68rem;font-weight:600;color:#a78bfa;margin-top:1px}
.map-pin:hover .map-pin-label{border-color:rgba(192,132,252,.5);transform:translateY(-2px)}
.map-pin:hover .map-pin-dot{background:#fff}
.map-pin--below{transform:translate(-50%,0)}
.map-pin--below .map-pin-marker{order:-1}
.map-pin--below .map-pin-label{margin-bottom:0;margin-top:8px}
.map-pin--below:hover .map-pin-label{transform:translateY(2px)}
.route-map-legend{display:flex;flex-wrap:wrap;gap:8px 18px;margin-top:14px}
.route-map-legend-item{display:flex;align-items:center;gap:7px;font-size:.78rem;color:rgba(255,255,255,.6)}
.route-map-legend-dot{width:7px;height:7px;border-radius:50%;background:#c084fc;box-shadow:0 0 6px rgba(192,132,252,.8);flex-shrink:0}
@media (max-width:767px){
  .network-map-visual{min-width:0;max-width:100%}
  .network-map-visual .section-title{font-size:clamp(1.45rem,6.5vw,2rem);line-height:1.2;max-width:100%;overflow-wrap:anywhere;word-break:break-word}
  .route-grid-visual{
    min-height:0!important;
    width:100%;
    max-width:100%;
    aspect-ratio:1376/618;
    border-radius:18px;
    margin-top:28px;
    /* Let Obsidian's above-pin label sit in the gap above the map instead of being clipped */
    overflow:visible;
  }
  .route-grid-visual::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:0;
    border-radius:inherit;
    pointer-events:none;
    background-image:linear-gradient(180deg,rgba(9,8,15,.55) 0%,rgba(9,8,15,.28) 38%,rgba(9,8,15,.4) 72%,rgba(9,8,15,.72) 100%),url("images/world-map-network.jpg");
    background-size:100% 100%;
    background-position:center;
    background-repeat:no-repeat;
  }
  .route-grid-visual{
    background-image:none;
    border-color:rgba(255,255,255,.1);
  }
  .map-pin{z-index:2}
  /* On mobile: Silver/Blaze/Quartz below pin; Obsidian + Emerald above pin to reduce overlap */
  .map-pin:not([data-node="obsidian"]):not([data-node="emerald"]),
  .map-pin.map-pin--below:not([data-node="obsidian"]):not([data-node="emerald"]){
    transform:translate(-50%,0);
    max-width:min(34vw,6.75rem);
  }
  .map-pin:not([data-node="obsidian"]):not([data-node="emerald"]) .map-pin-marker{order:-1}
  .map-pin:not([data-node="obsidian"]):not([data-node="emerald"]) .map-pin-label,
  .map-pin.map-pin--below:not([data-node="obsidian"]):not([data-node="emerald"]) .map-pin-label{
    margin-bottom:0;
    margin-top:4px;
    padding:3px 6px;
  }
  .map-pin:not([data-node="obsidian"]):not([data-node="emerald"]):hover .map-pin-label,
  .map-pin.map-pin--below:not([data-node="obsidian"]):not([data-node="emerald"]):hover .map-pin-label{transform:translateY(1px)}
  .map-pin[data-node="obsidian"],
  .map-pin[data-node="emerald"]{
    transform:translate(-50%,-100%);
    max-width:min(34vw,6.75rem);
  }
  .map-pin[data-node="obsidian"] .map-pin-marker,
  .map-pin[data-node="emerald"] .map-pin-marker{order:0}
  .map-pin[data-node="obsidian"] .map-pin-label,
  .map-pin[data-node="emerald"] .map-pin-label{
    margin-bottom:5px;
    margin-top:0;
    padding:3px 6px;
  }
  .map-pin[data-node="obsidian"]:hover .map-pin-label,
  .map-pin[data-node="emerald"]:hover .map-pin-label{transform:translateY(-2px)}
  .map-pin-name{font-size:.55rem;letter-spacing:.02em}
  .map-pin-ping{font-size:.52rem}
  .map-pin-marker{width:8px;height:8px}
  /* Spread pins so labels don't stack / clip at edges */
  .map-pin[data-node="silver"]{left:13%!important;top:18%!important}
  .map-pin[data-node="blaze"]{left:28%!important;top:40%!important}
  .map-pin[data-node="obsidian"]{left:48%!important;top:22%!important}
  .map-pin[data-node="quartz"]{left:58%!important;top:42%!important}
  .map-pin[data-node="emerald"]{left:82%!important;top:34%!important}
}
@media (max-width:420px){
  .route-grid-visual{margin-top:32px}
  .map-pin{max-width:min(32vw,5.75rem)}
  .map-pin .map-pin-label{padding:2px 5px}
  .map-pin-name{font-size:.48rem}
  .map-pin-ping{font-size:.46rem}
  .map-pin[data-node="blaze"]{left:30%!important;top:42%!important}
  .map-pin[data-node="obsidian"]{left:48%!important;top:24%!important}
  .map-pin[data-node="quartz"]{left:56%!important;top:46%!important}
  .map-pin[data-node="emerald"]{left:84%!important;top:36%!important}
}
.route-node{position:absolute;width:140px;height:140px;display:grid;place-items:center;border-radius:50%;border:1px solid rgba(255,255,255,.14);background:rgba(15,15,26,.84);box-shadow:0 0 30px rgba(139,61,255,.2);font-family:var(--font-headings);text-align:center;padding:12px}
.route-node:nth-child(1){top:26px;left:28px}
.route-node:nth-child(2){top:100px;right:36px}
.route-node:nth-child(3){bottom:28px;left:50%;transform:translateX(-50%)}
.route-line{position:absolute;height:2px;background:linear-gradient(90deg,rgba(139,61,255,.16),rgba(181,113,255,.9),rgba(139,61,255,.16));transform-origin:left center}
.route-line--one{top:120px;left:150px;width:48%;transform:rotate(8deg)}
.route-line--two{top:210px;left:42%;width:28%;transform:rotate(54deg)}
.route-line--three{left:24%;bottom:124px;width:34%;transform:rotate(28deg)}
.location-meta-row{display:flex;flex-wrap:wrap;gap:10px;margin-top:18px}
.status-badge.online::before{content:"";width:9px;height:9px;border-radius:50%;background:#10b981;box-shadow:0 0 18px rgba(16,185,129,.6)}
.legal-hero{padding-bottom:20px}
.legal-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
.legal-card h2{font-size:1.6rem}
.inline-cta-section{padding:36px 0 72px}
.inline-cta-panel{padding:38px 36px;text-align:center;background:linear-gradient(180deg,rgba(10,9,17,.34),rgba(10,9,17,.82)),url('images/cta-bg.png') center/cover no-repeat,rgba(18,14,28,.88)}
.support-action-stack .btn{justify-content:center}
.page-breadcrumbs{display:flex;flex-wrap:wrap;align-items:center;gap:10px;margin-bottom:26px;color:rgba(255,255,255,.58);font-size:.95rem}
.page-breadcrumbs a{color:rgba(255,255,255,.74);transition:color .2s ease}
.page-breadcrumbs a:hover,.page-breadcrumbs a:focus-visible{color:var(--text-white)}
.free-page-hero{padding-bottom:24px;background:
linear-gradient(180deg,rgba(9,8,15,.84),rgba(9,8,15,.3)),
radial-gradient(circle at 78% 34%,rgba(139,61,255,.16),transparent 28%)}
.free-page-hero-media{background-position:center right;background-size:cover;opacity:1}
.free-hero-shell{display:grid;grid-template-columns:minmax(0,1fr);gap:20px;align-items:center}
.free-page-title{max-width:8ch}
.free-page-subtitle{max-width:62ch}
.free-benefit-row{display:flex;flex-wrap:wrap;gap:14px;margin-top:30px}
.free-benefit-pill{display:flex;align-items:center;gap:14px;min-width:180px;padding:14px 16px;border-radius:22px;border:1px solid rgba(255,255,255,.08);background:rgba(255,255,255,.03)}
.free-benefit-icon{display:grid;place-items:center;width:40px;height:40px;border-radius:14px;background:linear-gradient(180deg,rgba(185,123,255,.28),rgba(118,43,255,.38));color:#fff;box-shadow:0 16px 32px rgba(120,54,255,.28)}
.free-benefit-pill strong,.free-card-title,.free-plan-card h3,.free-location-card h3,.free-faq-cta h3,.legal-summary-card h2,.legal-policy-card h2{display:block;font-family:var(--font-headings);color:var(--text-white);letter-spacing:-.02em}
.free-benefit-pill span{display:block;color:rgba(255,255,255,.66);font-size:.9rem;line-height:1.4}
.free-config-grid{display:grid;grid-template-columns:minmax(0,1.2fr) minmax(300px,.8fr);gap:28px;align-items:start}
.free-config-card,.free-includes-card,.free-plan-card,.free-location-card,.free-faq-cta,.legal-summary-card,.legal-policy-card{background:
linear-gradient(180deg,rgba(28,22,50,.74),rgba(10,10,18,.96)),
linear-gradient(180deg,rgba(255,255,255,.04),rgba(255,255,255,0))}
.free-config-header p,.free-card-footnote,.free-preview-field small,.free-choice-block small,.free-location-card p,.free-location-card li,.legal-summary-card p,.legal-policy-card p{color:rgba(255,255,255,.64);line-height:1.7}
.free-preview-stack{display:grid;gap:18px;margin:26px 0 24px}
.free-preview-field,.free-choice-block{display:grid;gap:10px;padding:18px 18px 16px;border-radius:22px;border:1px solid rgba(255,255,255,.08);background:rgba(255,255,255,.025)}
.free-preview-field span,.free-choice-label{color:rgba(255,255,255,.58);font-size:.82rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase}
.free-preview-field strong{font-size:1.08rem;color:var(--text-white)}
.free-preview-select{position:relative;padding-right:54px}
.free-preview-select::after{content:"";position:absolute;top:27px;right:22px;width:12px;height:12px;border-right:2px solid rgba(255,255,255,.58);border-bottom:2px solid rgba(255,255,255,.58);transform:rotate(45deg)}
.free-chip-row{display:flex;flex-wrap:wrap;gap:10px}
.free-choice-chip,.free-ram-chip{display:inline-flex;flex-direction:column;align-items:center;justify-content:center;gap:4px;padding:13px 16px;border-radius:18px;border:1px solid rgba(255,255,255,.08);background:rgba(255,255,255,.025);color:rgba(255,255,255,.8);text-align:center}
.free-choice-chip{min-height:46px;flex-direction:row;font-weight:600}
.free-choice-chip.is-active,.free-ram-chip.is-active{border-color:rgba(177,111,255,.56);background:linear-gradient(180deg,rgba(139,61,255,.2),rgba(139,61,255,.08));box-shadow:0 14px 34px rgba(118,43,255,.18)}
.free-ram-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px}
.free-ram-chip strong{font-family:var(--font-headings);font-size:1.05rem}
.free-ram-chip small{text-transform:uppercase;letter-spacing:.08em;color:rgba(255,255,255,.58)}
.free-card-footnote{text-align:center;margin-top:14px;font-size:.94rem}
.free-includes-list,.free-plan-list,.free-location-card ul{margin:0;padding:0;list-style:none}
.free-includes-list{display:grid;gap:14px;margin-top:22px}
.free-includes-list li{display:grid;gap:3px;padding-left:30px;position:relative}
.free-includes-list li::before,.free-plan-list li::before,.free-location-card li::before{content:"";position:absolute;left:0;top:.58rem;width:9px;height:9px;border-radius:50%;background:#8f42ff;box-shadow:0 0 16px rgba(143,66,255,.5)}
.free-includes-list strong{font-size:1rem;color:var(--text-white)}
.free-includes-list span,.free-plan-list li{color:rgba(255,255,255,.66);line-height:1.65}
.free-steve-art{display:block;width:min(100%,240px);height:auto;margin:24px 0 0 auto}
.free-steps-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}
.free-step-card{position:relative;display:grid;gap:14px;min-height:220px;padding:24px;border-radius:26px;border:1px solid rgba(255,255,255,.08);background:rgba(255,255,255,.025);box-shadow:inset 0 1px 0 rgba(255,255,255,.04)}
.free-step-number{display:grid;place-items:center;width:52px;height:52px;border-radius:16px;background:linear-gradient(180deg,rgba(193,137,255,.3),rgba(128,52,255,.32));font-family:var(--font-headings);font-size:1rem}
.free-step-card strong{font-family:var(--font-headings);font-size:1.2rem}
.free-step-card p{color:rgba(255,255,255,.66);line-height:1.7}
.free-plan-grid,.legal-summary-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:22px}
.free-plan-top{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:12px;margin-bottom:18px}
.free-plan-list{display:grid;gap:12px}
.free-plan-list li{position:relative;padding-left:24px}
.free-plan-price{display:flex;align-items:flex-end;gap:10px;margin-top:24px}
.free-plan-price strong{font-family:var(--font-headings);font-size:clamp(2.2rem,4vw,3.6rem);line-height:.95}
.free-plan-price span{color:rgba(255,255,255,.62)}
.premium-upgrade-card{border-color:rgba(177,111,255,.22)}
.free-location-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px}
.free-location-card{display:grid;gap:18px}
.free-location-card div{display:grid;gap:6px}
.free-location-card p{font-size:.95rem}
.free-location-card ul{display:grid;gap:8px}
.free-location-card li{position:relative;padding-left:22px}
.free-location-card.is-featured{border-color:rgba(177,111,255,.42);box-shadow:0 22px 64px rgba(12,8,26,.28)}
.free-faq-grid{display:grid;grid-template-columns:minmax(0,1fr) minmax(280px,.8fr);gap:24px;align-items:start}
.free-faq-cta h3{font-size:2rem;line-height:1.08;margin:14px 0 18px}
.legal-hero-extended{padding-bottom:30px}
.legal-copy{max-width:880px}
.legal-page-title{max-width:none}
.legal-meta-row{display:flex;flex-wrap:wrap;gap:12px;margin-top:24px}
.legal-summary-grid{grid-template-columns:repeat(4,minmax(0,1fr))}
.legal-summary-card h2{font-size:1.35rem;margin-bottom:12px}
.legal-article-stack{display:grid;gap:18px}
.legal-policy-card h2{margin-bottom:12px;font-size:1.8rem}
.legal-policy-card p + p{margin-top:12px}
@media (max-width:1180px){.two-col-grid,.page-pricing-grid,.icon-list-grid,.page-location-grid,.legal-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.route-grid-visual{min-height:0}}
@media (max-width:1180px){.two-col-grid,.page-pricing-grid,.icon-list-grid,.page-location-grid,.legal-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.route-grid-visual{min-height:0}.free-hero-shell,.free-config-grid,.free-faq-grid,.free-plan-grid,.legal-summary-grid{grid-template-columns:minmax(0,1fr)}.free-location-grid,.free-steps-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media (max-width:767px){.page-hero{padding-top:calc(var(--header-height) + 34px);padding-bottom:28px}.page-hero--with-media{min-height:auto}.page-title{max-width:none;font-size:clamp(2.6rem,15vw,4.4rem)}.page-subtitle{margin-top:16px;font-size:1rem;line-height:1.75}.content-section,.inline-cta-section{padding:20px 0 28px}.surface-card,.inline-cta-panel{padding:22px 18px;border-radius:24px}.two-col-grid,.page-pricing-grid,.icon-list-grid,.page-location-grid,.legal-grid,.form-preview-grid,.sequence-grid,.free-config-grid,.free-faq-grid,.free-plan-grid,.legal-summary-grid{grid-template-columns:minmax(0,1fr)}.fake-field,.mini-step-card{min-height:auto}.route-grid-visual{min-height:0}.route-node{width:116px;height:116px;font-size:.88rem}.route-node:nth-child(1){top:22px;left:16px}.route-node:nth-child(2){top:124px;right:16px}.route-node:nth-child(3){bottom:24px}.route-line--one{top:122px;left:104px;width:42%}.route-line--two{top:242px;left:48%;width:20%}.route-line--three{left:26%;bottom:132px;width:24%}.inline-cta-panel{text-align:left}.inner-page .page-pricing-grid{display:grid;gap:1rem}.inner-page .page-pricing-grid .pricing-card{flex:initial;width:100%;max-width:none}.page-breadcrumbs{margin-bottom:20px;font-size:.88rem}.free-page-hero{padding-bottom:14px}.free-page-hero-media{background-position:66% center}.free-benefit-row{display:grid;grid-template-columns:minmax(0,1fr);gap:12px}.free-benefit-pill{min-width:0}.free-preview-stack{gap:14px}.free-chip-row{gap:8px}.free-choice-chip{width:100%;justify-content:center}.free-ram-grid,.free-steps-grid,.free-location-grid{grid-template-columns:minmax(0,1fr)}.free-step-card{min-height:auto}.free-plan-top,.free-plan-price{align-items:flex-start}.free-steve-art{width:min(100%,170px);margin:18px auto 0}.legal-policy-card h2{font-size:1.45rem}}
@media (max-width:479px){.free-config-card,.free-includes-card,.free-plan-card,.free-location-card,.free-faq-cta,.legal-summary-card,.legal-policy-card{padding:18px 16px}.free-page-title{font-size:clamp(2.3rem,15vw,3.6rem)}.free-choice-chip{font-size:.94rem}.free-ram-chip{padding:12px}.free-step-number{width:46px;height:46px}.free-faq-cta h3{font-size:1.58rem}.free-preview-select{padding-right:42px}.free-preview-select::after{right:18px}}

/* Form Input & Select Stylings */
.config-input-text, .config-select {
  width: 100%;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 12px;
  color: #ffffff !important;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
  outline: none;
  box-sizing: border-box;
}

.config-input-text:focus, .config-select:focus {
  border-color: rgba(167, 139, 250, 0.5) !important;
  box-shadow: 0 0 12px rgba(139, 61, 255, 0.22);
  background: rgba(255, 255, 255, 0.06) !important;
}

.config-select {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  cursor: pointer;
  padding-right: 40px;
}

.config-select option {
  background-color: #0b0b12;
  color: #ffffff;
  padding: 8px;
}

.free-preview-select::after {
  top: 50% !important;
  transform: translateY(-50%) rotate(45deg) !important;
  pointer-events: none;
}

/* ==========================================================================
   NETWORK TELEMETRY DASHBOARD & GUIDE CARDS
   ========================================================================== */

.network-dashboard-card {
  padding: 40px !important;
  background: rgba(11, 11, 18, 0.4) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.03) !important;
  border-radius: 32px !important;
  overflow: hidden;
  max-width: 100%;
  min-width: 0;
}

.network-dashboard-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  min-width: 0;
  max-width: 100%;
}

.network-map-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
  max-width: 100%;
}

.network-stats-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 24px;
  padding: 24px;
  backdrop-filter: blur(10px);
}

.stats-panel-title {
  font-family: var(--font-headings);
  font-size: 1.15rem;
  color: var(--text-white);
  margin: 0;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.telemetry-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.telemetry-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 16px;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

.telemetry-item:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(139, 92, 246, 0.25);
}

.telemetry-item-header {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.telemetry-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.6);
  animation: telemetry-blink 2s infinite ease-in-out;
}

@keyframes telemetry-blink {
  0% { opacity: 0.4; }
  50% { opacity: 1; }
  100% { opacity: 0.4; }
}

.telemetry-name {
  font-family: var(--font-headings);
  font-size: 0.95rem;
  color: var(--text-white);
}

.telemetry-latency {
  margin-left: auto;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: #a78bfa;
  font-weight: 600;
  background: rgba(139, 92, 246, 0.1);
  padding: 3px 8px;
  border-radius: 8px;
  border: 1px solid rgba(139, 92, 246, 0.15);
}

.telemetry-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.8rem;
}

.telemetry-details span {
  color: rgba(255, 255, 255, 0.4);
}

.telemetry-details strong {
  color: var(--text-white);
  font-weight: 500;
  text-align: right;
}

.three-col-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.selector-guide-card {
  padding: 32px !important;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 24px !important;
  background: rgba(255, 255, 255, 0.015) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease !important;
}

.selector-guide-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.3) !important;
  background: rgba(255, 255, 255, 0.025) !important;
}

.guide-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a78bfa;
  margin-bottom: 8px;
  transition: transform 0.3s ease;
}

.selector-guide-card:hover .guide-card-icon {
  transform: scale(1.05) rotate(3deg);
  color: var(--text-white);
  background: rgba(139, 92, 246, 0.2);
}

.guide-card-icon svg {
  width: 22px;
  height: 22px;
}

.selector-guide-card h3 {
  font-family: var(--font-headings);
  font-size: 1.2rem;
  color: var(--text-white);
  margin: 0;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.selector-guide-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin: 0;
}

@media screen and (max-width: 991px) {
  .network-dashboard-card {
    padding: 20px !important;
  }
  .network-dashboard-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }
  .three-col-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media screen and (max-width: 479px) {
  .network-dashboard-card {
    padding: 16px !important;
    border-radius: 22px !important;
  }
}

.free-includes-card {
  background: rgb(3, 2, 16) !important;
}

/* ==========================================================================
   MOBILE FULL-SCREEN OVERLAY MENU & HORIZONTAL SCROLL CARDS
   ========================================================================== */

.mobile-nav-scroll-container {
  flex: 1;
  overflow-y: auto;
  padding: 24px 20px 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-section-title {
  font-family: var(--font-headings);
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
}

.mobile-horizontal-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.mobile-horizontal-scroll::-webkit-scrollbar {
  display: none;
}

.mobile-scroll-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 16px 20px;
  min-width: 190px;
  max-width: 240px;
  flex-shrink: 0;
  scroll-snap-align: start;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.mobile-scroll-card:active, .mobile-scroll-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(139, 92, 246, 0.35);
  transform: translateY(-2px);
}

.mobile-scroll-card.active {
  border-color: rgba(139, 92, 246, 0.5);
  background: rgba(139, 92, 246, 0.08);
}

.mobile-scroll-card strong {
  font-family: var(--font-headings);
  font-size: 0.95rem;
  color: var(--text-white);
  font-weight: 700;
}

.mobile-scroll-card span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
}

.mobile-nav-quick-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.mobile-quick-card {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  padding: 0.95rem 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  min-width: 0;
}

.mobile-quick-card strong {
  font-size: 0.88rem;
  color: var(--text-white);
}

.mobile-quick-card span {
  font-size: 0.76rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.5);
}

.mobile-nav-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
}

.mobile-nav-actions .btn {
  width: 100% !important;
  height: 48px;
  border-radius: 8px !important;
}
