/* ==========================================================================
   NetMirror Official - Novora 3D SaaS Unified Design System
   Color Palette:
   - Body Background: #f8fafc (Crisp Off-White Slate)
   - Card Background: #ffffff (Pure Crisp White)
   - Border Color: #e2e8f0 (Subtle Slate Border)
   - Primary Accent: #2563eb / #1d4ed8 (Royal Sapphire Blue)
   - Secondary Accent: #7c3aed / #6366f1 (Vibrant Purple / Indigo)
   - Dark Slate Text: #0f172a / #334155
   - Muted Text: #64748b
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@700&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
}

:root {
  --bg-body: #f8fafc;
  --bg-card: #ffffff;
  --border-subtle: #e2e8f0;
  --border-focus: #94a3b8;
  
  --primary-blue: #2563eb;
  --primary-blue-hover: #1d4ed8;
  --primary-blue-light: #eff6ff;
  --primary-blue-border: #bfdbfe;
  
  --accent-purple: #7c3aed;
  --accent-purple-hover: #6d28d9;
  --accent-purple-light: #f5f3ff;
  --accent-purple-border: #ddd6fe;

  --safety-blue: #2563eb;
  --safety-blue-hover: #1d4ed8;
  --safety-blue-light: #eff6ff;
  --safety-blue-border: #bfdbfe;
  
  --amber-warning: #92400e;
  --amber-light: #fffbeb;
  --amber-border: #fde68a;

  --text-heading: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-light: #94a3b8;

  --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.07), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --container-max: 1200px;
}

/* Ambient Animated Tech Background & Viewport Containment */
html {
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-body);
  background-image: 
    radial-gradient(at 0% 0%, rgba(37, 99, 235, 0.04) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(124, 58, 237, 0.04) 0px, transparent 50%),
    radial-gradient(at 50% 100%, rgba(37, 99, 235, 0.03) 0px, transparent 50%);
  background-attachment: fixed;
  color: var(--text-body);
  line-height: 1.65;
  font-weight: 400;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

/* Background Ambient Glow Wrapper (Hard Contained to prevent horizontal scrolling on mobile) */
.ambient-glow-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  max-width: 100vw;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

/* Subtle Animated Ambient Glow Blobs */
.ambient-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  pointer-events: none;
  z-index: -1;
  animation: floatAmbient 16s ease-in-out infinite alternate;
}

.ambient-glow-1 {
  top: -100px;
  right: -100px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.18), rgba(239, 246, 255, 0));
}

.ambient-glow-2 {
  top: 400px;
  left: -150px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.14), rgba(245, 243, 255, 0));
  animation-duration: 20s;
  animation-direction: alternate-reverse;
}

@keyframes floatAmbient {
  0% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(35px) scale(1.08); }
  100% { transform: translateY(-20px) scale(0.95); }
}

/* Word Break & Overflow Protection for Technical Strings */
code, pre, .hash-display, [style*="font-family: monospace"] {
  word-break: break-all;
  overflow-wrap: anywhere;
  max-width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: color 0.15s ease, background-color 0.15s ease;
}

a:hover {
  color: var(--primary-blue-hover);
}

/* Distinct styling for inline body links for WCAG 2.1 AA accessibility */
p a, li a, td a, .article-body a:not(.btn):not(.btn-pill-golden):not(.toc-item):not(.hero-mirror-btn):not(.tag-pill):not(.card-action):not(.tab-btn) {
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}

p a:hover, li a:hover, td a:hover, .article-body a:not(.btn):not(.btn-pill-golden):not(.toc-item):hover {
  text-decoration-thickness: 2px;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-heading);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 800; margin-bottom: 1rem; }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-top: 2rem; margin-bottom: 1rem; }
h3 { font-size: clamp(1.2rem, 2vw, 1.4rem); margin-top: 1.5rem; margin-bottom: 0.75rem; }
h4 { font-size: 1.1rem; margin-top: 1.25rem; margin-bottom: 0.5rem; }

p {
  margin-bottom: 1.2rem;
  color: var(--text-body);
}

strong {
  font-weight: 700;
  color: var(--text-heading);
}

ul, ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
}

/* Layout Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.main-content {
  flex: 1 0 auto;
  padding-top: 1.5rem;
  padding-bottom: 4rem;
}

/* Top Trust Bar */
.top-notice-bar {
  background-color: var(--primary-blue-light);
  border-bottom: 1px solid var(--primary-blue-border);
  color: #1e40af;
  font-size: 0.825rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  text-align: center;
}

.top-notice-bar span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* Global Navigation Header */
.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-subtle);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-logo {
  height: 38px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--text-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 0.25rem;
  position: relative;
  transition: color 0.15s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-blue);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--primary-blue);
  border-radius: 2px;
}

.nav-cta-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 28%, #7c3aed 70%, #9333ea 100%);
  background-size: 240% 240%;
  animation: dualColorFlow 6s ease-in-out infinite alternate, buttonPulseGlow 3.5s ease-in-out infinite;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.65rem 1.35rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 3px 12px rgba(30, 58, 138, 0.28),
    0 6px 18px rgba(124, 58, 237, 0.24);
  text-shadow: 0 1px 2px rgba(15, 23, 42, 0.3);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease, filter 0.2s ease;
}

.nav-cta-btn > * {
  position: relative;
  z-index: 3;
}

.nav-cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -130%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.32) 50%, transparent 100%);
  transform: skewX(-22deg);
  pointer-events: none;
  z-index: 2;
  animation: buttonShimmerSweep 5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.nav-cta-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 6px 18px rgba(30, 58, 138, 0.4),
    0 12px 28px rgba(147, 51, 234, 0.4);
}

.nav-cta-btn:active {
  transform: translateY(1px);
  filter: brightness(0.96);
  box-shadow: inset 0 2px 4px rgba(15, 23, 42, 0.3);
}

.mobile-menu-toggle {
  display: none;
  background: #ffffff;
  border: 1.5px solid var(--border-subtle);
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  border-radius: var(--radius-md);
  cursor: pointer;
  color: var(--text-heading);
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.mobile-menu-toggle:hover {
  background: var(--bg-body);
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

/* Breadcrumbs */
.breadcrumb-nav {
  padding: 1rem 0;
  font-size: 0.875rem;
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0.5rem;
  color: var(--text-muted);
}

.breadcrumb-separator {
  color: var(--text-light);
}

.breadcrumb-list a {
  color: var(--text-body);
  font-weight: 500;
}

.breadcrumb-list a:hover {
  color: var(--primary-blue);
}

.breadcrumb-current {
  color: var(--primary-blue);
  font-weight: 600;
}

/* Editorial Hero Section */
.hero-section {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-badge-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.775rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
}

.badge-blue {
  background-color: var(--primary-blue-light);
  color: var(--primary-blue);
  border: 1px solid var(--primary-blue-border);
}

.badge-purple {
  background-color: var(--accent-purple-light);
  color: var(--accent-purple);
  border: 1px solid var(--accent-purple-border);
}

.badge-amber {
  background-color: var(--amber-light);
  color: var(--amber-warning);
  border: 1px solid var(--amber-border);
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--text-body);
  margin-bottom: 1.75rem;
  font-weight: 400;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

/* Core Keyframes for Dual-Color Animated Buttons */
@keyframes dualColorFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes buttonShimmerSweep {
  0%, 20% {
    left: -130%;
    opacity: 0;
  }
  35% {
    opacity: 0.65;
  }
  65% {
    left: 200%;
    opacity: 0.65;
  }
  65.1%, 100% {
    left: 200%;
    opacity: 0;
  }
}

@keyframes buttonPulseGlow {
  0%, 100% {
    box-shadow: 
      inset 0 1px 0 rgba(255, 255, 255, 0.35),
      0 4px 14px rgba(30, 58, 138, 0.32),
      0 8px 24px rgba(124, 58, 237, 0.28);
  }
  50% {
    box-shadow: 
      inset 0 1px 0 rgba(255, 255, 255, 0.45),
      0 6px 20px rgba(30, 58, 138, 0.42),
      0 12px 32px rgba(147, 51, 234, 0.4);
  }
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, filter 0.2s ease;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  text-decoration: none;
}

.btn > * {
  position: relative;
  z-index: 3;
}

.btn svg {
  transition: transform 0.2s ease;
}

.btn:hover svg {
  transform: scale(1.08);
}

.btn-blue,
.btn-dual,
.btn-primary {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 28%, #7c3aed 70%, #9333ea 100%);
  background-size: 240% 240%;
  animation: dualColorFlow 6s ease-in-out infinite alternate, buttonPulseGlow 3.5s ease-in-out infinite;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 4px 14px rgba(30, 58, 138, 0.32),
    0 8px 24px rgba(124, 58, 237, 0.28);
  text-shadow: 0 1px 2px rgba(15, 23, 42, 0.3);
}

.btn-blue::before,
.btn-dual::before,
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -130%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.32) 50%, transparent 100%);
  transform: skewX(-22deg);
  pointer-events: none;
  z-index: 2;
  animation: buttonShimmerSweep 5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.btn-blue:hover,
.btn-dual:hover,
.btn-primary:hover {
  transform: translateY(-2.5px);
  filter: brightness(1.08);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 8px 24px rgba(30, 58, 138, 0.45),
    0 16px 36px rgba(147, 51, 234, 0.45);
}

.btn-blue:active,
.btn-dual:active,
.btn-primary:active {
  transform: translateY(1px);
  filter: brightness(0.96);
  box-shadow: 
    inset 0 2px 4px rgba(15, 23, 42, 0.3),
    0 2px 8px rgba(30, 58, 138, 0.35);
}

.btn-outline {
  background-color: #ffffff;
  color: #1e3a8a !important;
  border: 1.5px solid #cbd5e1;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-outline:hover {
  background-color: #fdfcff;
  border-color: #7c3aed;
  color: #7c3aed !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(124, 58, 237, 0.16);
}

.hero-trust-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.trust-item svg {
  color: var(--primary-blue);
}

.hero-visual {
  position: relative;
}

.hero-image-wrapper {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 0.75rem;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.hero-image-wrapper img {
  border-radius: calc(var(--radius-lg) - 4px);
  width: 100%;
  object-fit: cover;
}

/* Quick Specs Card */
.specs-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2.5rem;
}

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

.spec-box {
  background: var(--bg-body);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1rem;
  display: flex;
  flex-direction: column;
}

.spec-label {
  font-size: 0.775rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.spec-value {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-heading);
}

.spec-value.blue-text {
  color: var(--primary-blue);
}

/* Content Layout: Main & Aside */
.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 2.5rem;
  align-items: start;
}

.article-body {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  min-width: 0;
  box-sizing: border-box;
}

.sidebar-sticky {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  min-width: 0;
  box-sizing: border-box;
}

.sidebar-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  box-sizing: border-box;
  overflow: hidden;
}

/* Feature Cards Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin: 1.75rem 0;
}

.feature-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-blue-border);
}

.feature-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background-color: var(--primary-blue-light);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.925rem;
  color: var(--text-body);
  margin-bottom: 0;
}

/* Devices Quick Links Grid */
.devices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin: 1.5rem 0 2rem;
}

.device-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.device-card:hover {
  border-color: var(--primary-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.device-icon-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.device-icon-circle {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--bg-body);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
}

.device-card h4 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--text-heading);
}

.device-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.device-card .device-action {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
}

/* Step-by-Step Installation Cards */
.installation-steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 1.75rem 0;
}

.step-card {
  background: var(--bg-body);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1.25rem;
  align-items: start;
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--primary-blue);
  color: #ffffff;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(37, 99, 235, 0.3);
}

.step-content h4 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}

.step-content p {
  margin-bottom: 0;
  font-size: 0.925rem;
}

/* Comparison Tables */
.table-responsive {
  overflow-x: auto;
  margin: 1.75rem 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  background: #ffffff;
}

.custom-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.925rem;
}

.custom-table th, .custom-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
}

.custom-table th {
  background-color: var(--bg-body);
  font-weight: 700;
  color: var(--text-heading);
  text-transform: uppercase;
  font-size: 0.775rem;
  letter-spacing: 0.05em;
}

.custom-table tbody tr:hover {
  background-color: #f8fafc;
}

.custom-table td strong {
  color: var(--text-heading);
}

.check-yes {
  color: var(--primary-blue);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.check-no {
  color: #b91c1c;
  font-weight: 600;
}

/* FAQ Accordion Section */
.faq-accordion {
  margin: 1.75rem 0;
}

.faq-item {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  background-color: #ffffff;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.15rem 1.25rem;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-heading);
  text-align: left;
  cursor: pointer;
  gap: 1rem;
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
  color: var(--primary-blue);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  padding: 0 1.25rem;
  color: var(--text-body);
}

.faq-item.active .faq-answer {
  max-height: 800px;
  padding-bottom: 1.25rem;
  transition: max-height 0.35s ease-in-out;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

/* Checksum Display Box */
.checksum-container {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin: 1rem 0 1.5rem;
  box-shadow: var(--shadow-sm);
}

.checksum-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.checksum-code {
  display: block;
  background: var(--bg-body);
  border: 1px solid var(--border-subtle);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.85rem;
  color: var(--text-heading);
  word-break: break-all;
}

.btn-copy {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.25rem 0.65rem;
  font-size: 0.775rem;
  font-weight: 600;
  color: var(--text-body);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: all 0.15s ease;
}

.btn-copy:hover {
  background-color: var(--bg-body);
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

/* Download Gateway Components */
.download-hero {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-md);
  margin-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
}

.download-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1e3a8a, #2563eb, #7c3aed, #9333ea);
}

.download-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 900px) {
  .download-hero {
    padding: 1.5rem 1rem;
    border-radius: var(--radius-lg);
  }
  .download-hero-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .download-hero-grid > * {
    min-width: 0;
    max-width: 100%;
  }
}

.countdown-box {
  background: linear-gradient(145deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1.5px solid #cbd5e1;
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  margin: 1.5rem 0;
  text-align: center;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  position: relative;
  max-width: 100%;
}

@media (max-width: 640px) {
  .countdown-box {
    padding: 1.25rem 0.85rem;
  }
}

.timer-circle-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}

.timer-circle {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #ffffff;
  border: 3.5px solid #2563eb;
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.22), inset 0 2px 4px rgba(15, 23, 42, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  font-weight: 800;
  color: #1e3a8a;
  font-family: var(--font-main);
  transition: all 0.3s ease;
  animation: timerPulse 1s ease-in-out infinite alternate;
}

@keyframes timerPulse {
  0% { transform: scale(1); box-shadow: 0 0 15px rgba(37, 99, 235, 0.2); }
  100% { transform: scale(1.04); box-shadow: 0 0 25px rgba(124, 58, 237, 0.35); }
}

.countdown-progress {
  width: 100%;
  height: 6px;
  background: #e2e8f0;
  border-radius: 999px;
  overflow: hidden;
  margin: 0.85rem 0 0.5rem;
}

.countdown-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #2563eb, #7c3aed);
  transition: width 1s linear;
  border-radius: 999px;
}

.mirrors-group {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

/* 3D Showcase Visual with Floating Badges */
.showcase-visual-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.showcase-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(124, 58, 237, 0.12));
  padding: 10px;
  border: 1px solid rgba(124, 58, 237, 0.2);
  box-shadow: 
    0 16px 36px -8px rgba(37, 99, 235, 0.18),
    0 24px 48px -12px rgba(124, 58, 237, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.showcase-frame:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 20px 42px -6px rgba(37, 99, 235, 0.24),
    0 28px 56px -10px rgba(124, 58, 237, 0.26);
}

.showcase-img {
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius-xl) - 6px);
  display: block;
}

.floating-chip {
  position: absolute;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(226, 232, 240, 0.9);
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  font-size: 0.775rem;
  font-weight: 700;
  color: var(--text-heading);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
  z-index: 10;
  animation: floatChip 5s ease-in-out infinite alternate;
}

.floating-chip-1 {
  top: 12%;
  left: -8px;
  animation-delay: 0s;
}

.floating-chip-2 {
  bottom: 15%;
  right: -8px;
  animation-delay: 2.5s;
}

.floating-chip-3 {
  bottom: 30%;
  left: -12px;
  animation-delay: 1.2s;
}

@keyframes floatChip {
  0% { transform: translateY(0); }
  100% { transform: translateY(-7px); }
}

@media (max-width: 640px) {
  .floating-chip {
    display: none;
  }
}

/* Feature Panorama Showcase Card */
.panorama-showcase-box {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin: 2.5rem 0;
}

.panorama-img-wrap {
  position: relative;
  background: #0f172a;
}

.panorama-img {
  width: 100%;
  height: auto;
  display: block;
}

.panorama-overlay-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.panorama-content {
  padding: 1.75rem;
}

/* Installation Step Cards */
.install-step-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.install-step-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
}

.install-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e3a8a, #2563eb 50%, #7c3aed);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.install-step-body {
  flex: 1;
}

.install-step-body h4 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-size: 1.1rem;
  color: var(--text-heading);
}

.install-step-body p {
  margin-bottom: 0.5rem;
  color: var(--text-body);
  font-size: 0.925rem;
}

/* Checksum Display Box */
.checksum-container {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin: 1rem 0 1.5rem;
  box-shadow: var(--shadow-sm);
}

.checksum-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.checksum-header span {
  font-size: 0.775rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
}

.checksum-code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.85rem;
  color: var(--text-heading);
  background: var(--bg-body);
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  word-break: break-all;
  border: 1px solid var(--border-subtle);
  display: block;
}

.btn-copy {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  color: var(--text-body);
  font-size: 0.775rem;
  font-weight: 600;
  padding: 0.28rem 0.65rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: all 0.15s ease;
}

.btn-copy:hover {
  background: #f1f5f9;
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

/* Callout Info Boxes */
.callout {
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  border-left: 4px solid;
}

.callout-info {
  background-color: var(--primary-blue-light);
  border-color: var(--primary-blue);
  color: #1e3a8a;
}

.callout-success {
  background-color: var(--primary-blue-light);
  border-color: var(--primary-blue);
  color: #1e3a8a;
}

.callout-warning {
  background-color: var(--amber-light);
  border-color: var(--amber-warning);
  color: #78350f;
}

.callout h4 {
  margin-top: 0;
  margin-bottom: 0.35rem;
}

/* Editorial Author Box */
.author-box {
  background: var(--bg-body);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 2.5rem;
}

.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: var(--primary-blue);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.author-info h4,
.author-info .author-name {
  margin: 0 0 0.2rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-heading);
}

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

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

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

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-heading);
}

.form-control {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  font-family: inherit;
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: #ffffff;
  color: var(--text-heading);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

/* Global Footer */
.site-footer {
  background-color: #ffffff;
  border-top: 1px solid var(--border-subtle);
  padding: 4rem 0 2rem;
  margin-top: auto;
  font-size: 0.925rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-heading);
  margin-top: 0;
  margin-bottom: 1.25rem;
}

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

.footer-links a {
  color: var(--text-muted);
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--primary-blue);
}

.footer-disclaimer-box {
  background: var(--bg-body);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  font-size: 0.825rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.85rem;
  color: var(--text-light);
  gap: 1rem;
}

/* Mobile Drawer Overlay */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 998;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-drawer.open {
  display: block;
}

.mobile-drawer-content {
  background: #ffffff;
  padding: 1.5rem 1.25rem 2rem;
  border-bottom: 2px solid var(--primary-blue);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.2);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav-link {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-heading);
  padding: 0.85rem 0.5rem;
  min-height: 44px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border-subtle);
  text-decoration: none;
  transition: color 0.15s ease, background 0.15s ease;
}

.mobile-nav-link:hover, .mobile-nav-link:active {
  color: var(--primary-blue);
  padding-left: 0.75rem;
}

/* Toast Message */
.toast-notice {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: var(--text-heading);
  color: #ffffff;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 100;
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.25s ease;
  pointer-events: none;
}

.toast-notice.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Grid Helper Classes */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}

.blog-featured-card {
  background: #ffffff;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.08);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
}

.app-screenshot-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1.75rem;
  align-items: center;
}

.predownload-checks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-heading);
}

/* Table Responsive Container Defaults */
.table-responsive, [style*="overflow-x: auto"] {
  width: 100%;
  max-width: 100%;
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .content-layout {
    grid-template-columns: 1fr;
  }
  .sidebar-sticky {
    position: static;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .blog-featured-card {
    grid-template-columns: 1fr;
  }
  .blog-featured-card > div:first-child {
    padding: 1.5rem 1.25rem !important;
  }
  .blog-featured-card > div:last-child {
    height: 220px !important;
    min-height: 220px !important;
    border-left: none !important;
    border-top: 1px solid var(--border-subtle);
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 74px; /* clearance for mobile sticky download bar */
  }
  .nav-menu, .nav-cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-section {
    padding: 1.5rem;
  }
  .article-body {
    padding: 1.5rem 1.15rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .app-screenshot-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

@media (max-width: 640px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .streamer-features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .features-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }
  .version-comparator-card {
    padding: 1.25rem 1rem;
  }
  .version-select-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  .version-select-row > div:last-child {
    margin-left: 0 !important;
    width: 100%;
    justify-content: space-between;
  }
  #versionCompareSelect {
    flex: 1;
    max-width: 220px;
  }
}

@media (max-width: 420px) {
  .predownload-checks-grid {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}

/* ==========================================================================
   Advanced Modern Tech-Editorial Components & Micro-Interactions
   ========================================================================== */

/* Live Server Status Radar Badge */
.live-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.35rem 0.85rem;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-body);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease;
}

.live-status-badge:hover {
  border-color: var(--primary-blue);
}

.pulse-dot {
  width: 9px;
  height: 9px;
  background-color: var(--primary-blue);
  border-radius: 50%;
  position: relative;
  display: inline-block;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  border: 2px solid var(--primary-blue);
  animation: pulseRadar 1.8s cubic-bezier(0.24, 0, 0.38, 1) infinite;
}

@keyframes pulseRadar {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(2.3); opacity: 0; }
}

/* Mobile Sticky Bottom Download Bar */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-subtle);
  padding: 0.65rem 1.25rem;
  z-index: 99;
  box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.08);
}

.mobile-sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.mobile-sticky-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.mobile-sticky-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--bg-body);
  padding: 4px;
  border: 1px solid var(--border-subtle);
}

.mobile-sticky-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.2;
}

.mobile-sticky-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .mobile-sticky-bar {
    display: block;
  }
}

/* Downloader Numeric Code Box (for Smart TVs) */
.downloader-code-box {
  background: linear-gradient(135deg, #ffffff, var(--primary-blue-light));
  border: 1.5px solid var(--primary-blue-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin: 1.75rem 0;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.shortcode-pill {
  font-family: ui-monospace, SFMono-Regular, monospace;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary-blue);
  background: #ffffff;
  padding: 0.4rem 1.25rem;
  border-radius: var(--radius-md);
  border: 2px dashed var(--primary-blue);
  letter-spacing: 2px;
}

/* Blog Layout & Cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.blog-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-blue-border);
}

.blog-card-thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid var(--border-subtle);
}

.blog-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta-bar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.775rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.blog-category-tag {
  font-size: 0.725rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  background: var(--primary-blue-light);
  color: var(--primary-blue);
}

.blog-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-heading);
  margin: 0.4rem 0 0.6rem;
  line-height: 1.35;
}

.blog-card-title a {
  color: inherit;
}

.blog-card-title a:hover {
  color: var(--primary-blue);
}

.blog-card-excerpt {
  font-size: 0.9rem;
  color: var(--text-body);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* User Reviews / Community Trust Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.testimonial-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.user-avatar-initials {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary-blue-light);
  color: var(--primary-blue);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.user-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-heading);
  line-height: 1.2;
}

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

.star-rating {
  color: #f59e0b;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.55;
  margin: 0;
  font-style: italic;
}

/* Table of Contents Box */
.toc-box {
  background: var(--bg-body);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
}

.toc-title {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-heading);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.9rem;
}

.toc-list a {
  color: var(--text-body);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.toc-list a:hover {
  color: var(--primary-blue);
  transform: translateX(3px);
}

/* ==========================================================================
   Hero Platform Quick Tabs
   ========================================================================== */
.hero-tabs-container {
  margin: 1.5rem 0;
  background: var(--bg-body);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 0.5rem;
}

.platform-tabs-nav {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 0.25rem;
}
.platform-tabs-nav::-webkit-scrollbar {
  display: none;
}

.platform-tab-btn {
  background: transparent;
  border: 1px solid transparent;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-body);
  cursor: pointer;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}

.platform-tab-btn:hover {
  color: var(--primary-blue);
  background: rgba(37, 99, 235, 0.05);
}

.platform-tab-btn.active {
  background: #ffffff;
  color: var(--primary-blue);
  border-color: var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.platform-tab-panel {
  display: none;
  padding: 1rem 0.5rem 0.5rem;
  animation: fadeInTab 0.25s ease forwards;
}

.platform-tab-panel.active {
  display: block;
}

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

/* ==========================================================================
   Device Compatibility Checker Widget
   ========================================================================== */
.compatibility-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  margin: 2.5rem 0;
  position: relative;
  overflow: hidden;
}

.compatibility-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-purple));
}

.device-pills-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.25rem 0;
}

.device-pill-btn {
  background: var(--bg-body);
  border: 1px solid var(--border-subtle);
  border-radius: 9999px;
  padding: 0.5rem 1.15rem;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-body);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: all 0.2s ease;
}

.device-pill-btn:hover {
  border-color: var(--primary-blue-border);
  color: var(--primary-blue);
  transform: translateY(-1px);
}

.device-pill-btn.active {
  background: var(--primary-blue);
  color: #ffffff;
  border-color: var(--primary-blue);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.compatibility-result {
  background: var(--bg-body);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
}

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

.compat-spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.compat-spec-item {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.85rem;
}

.compat-spec-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
  display: block;
}

.compat-spec-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-heading);
}

/* ==========================================================================
   Live FAQ Instant Search Bar
   ========================================================================== */
.faq-search-box {
  position: relative;
  margin: 1.25rem 0 1.75rem;
}

.faq-search-input {
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 2.75rem;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-heading);
  background: #ffffff;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.faq-search-input:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.faq-search-icon {
  position: absolute;
  left: 0.95rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.faq-search-clear {
  position: absolute;
  right: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.25rem;
  display: none;
}

.faq-search-clear:hover {
  color: var(--text-heading);
}

.faq-no-results {
  display: none;
  background: var(--bg-body);
  border: 1px dashed var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ==========================================================================
   Streaming Bitrate & Hardware Matrix
   ========================================================================== */
.bitrate-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin: 1rem 0;
}

.bitrate-table th {
  background: var(--bg-body);
  padding: 0.85rem 1rem;
  text-align: left;
  font-weight: 700;
  border-bottom: 2px solid var(--border-subtle);
  color: var(--text-heading);
}

.bitrate-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-body);
}

.bitrate-table tbody tr:hover {
  background: rgba(37, 99, 235, 0.02);
}

.badge-res {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}
.badge-4k { background: #fef3c7; color: #92400e; border: 1px solid #fde68a; }
.badge-1080p { background: #eff6ff; color: #1e40af; border: 1px solid #bfdbfe; }
.badge-720p { background: #f5f3ff; color: #5b21b6; border: 1px solid #ddd6fe; }
.badge-480p { background: #f1f5f9; color: #475569; border: 1px solid #cbd5e1; }

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

.hw-tier-card {
  background: var(--bg-body);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}

.hw-tier-card h4 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ==========================================================================
   Desktop-to-Mobile QR Code Download Card
   ========================================================================== */
.qr-code-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.qr-code-card .qr-svg-wrap {
  background: #f8fafc;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1rem;
  display: inline-block;
  margin: 0.75rem 0;
}

@media (max-width: 991px) {
  .qr-code-card {
    display: none;
  }
}

/* ==========================================================================
   NOVORA-INSPIRED 3D SAAS REDESIGN STYLES
   ========================================================================== */

/* Typography & Gradient Accents */
.gradient-text {
  background: linear-gradient(135deg, #2563eb 0%, #ec4899 50%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-style: italic;
  font-weight: 800;
}

.cursive-gradient-text {
  font-family: 'Caveat', cursive, sans-serif;
  font-size: 1.3em;
  font-weight: 700;
  background: linear-gradient(135deg, #0284c7 0%, #a855f7 45%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  letter-spacing: normal;
  line-height: 1;
  padding: 0 0.15em;
  transform: rotate(-2deg);
}

.pill-badge {
  background: #ede9fe;
  color: #4f46e5;
  border-radius: 9999px;
  padding: 0.35rem 1.15rem;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
  border: 1px solid #ddd6fe;
}

/* Pill Buttons with Circular Icon Badges */
.btn-pill-primary {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 28%, #7c3aed 70%, #9333ea 100%);
  background-size: 240% 240%;
  animation: dualColorFlow 6s ease-in-out infinite alternate, buttonPulseGlow 3.5s ease-in-out infinite;
  color: #ffffff !important;
  border-radius: 9999px;
  padding: 0.9rem 1.85rem;
  font-weight: 700;
  font-size: 1.025rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 4px 15px rgba(30, 58, 138, 0.35),
    0 8px 25px rgba(124, 58, 237, 0.3);
  cursor: pointer;
  text-decoration: none;
  text-shadow: 0 1px 2px rgba(15, 23, 42, 0.3);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, filter 0.2s ease;
}

.btn-pill-primary > * {
  position: relative;
  z-index: 3;
}

.btn-pill-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -130%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.32) 50%, transparent 100%);
  transform: skewX(-22deg);
  pointer-events: none;
  z-index: 2;
  animation: buttonShimmerSweep 5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.btn-pill-primary:hover {
  transform: translateY(-2.5px);
  filter: brightness(1.08);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 8px 25px rgba(30, 58, 138, 0.45),
    0 16px 36px rgba(147, 51, 234, 0.45);
}

.btn-pill-primary:active {
  transform: translateY(1px);
  filter: brightness(0.96);
  box-shadow: 
    inset 0 2px 4px rgba(15, 23, 42, 0.3),
    0 2px 8px rgba(30, 58, 138, 0.35);
}

.btn-pill-secondary {
  position: relative;
  background: #ffffff;
  color: #1e3a8a !important;
  border: 1.5px solid #cbd5e1;
  border-radius: 9999px;
  padding: 0.85rem 1.75rem;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
  cursor: pointer;
  text-decoration: none;
}

.btn-pill-secondary:hover {
  background: #fdfcff;
  border-color: #7c3aed;
  color: #7c3aed !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.16);
}

.circle-icon-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(4px);
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-pill-primary:hover .circle-icon-badge {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.35);
}

.circle-play-badge {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--primary-blue);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   Hero Section: 3-Column Layout
   ========================================================================== */
.hero-v2-section {
  padding: 2.5rem 0 3.5rem;
  position: relative;
}

.hero-v2-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 280px;
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 1100px) {
  .hero-v2-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-v2-pathway {
    grid-column: span 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .pathway-list {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap;
    gap: 1rem !important;
  }
  .pathway-dashed-line {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .hero-v2-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-v2-pathway {
    grid-column: span 1;
  }
  .pathway-list {
    flex-direction: column !important;
  }
  .header-action-group {
    display: none !important;
  }
  .hero-halo-ring {
    max-width: 320px;
    margin: 0 auto;
  }
  .floating-badge {
    padding: 0.35rem 0.65rem;
    font-size: 0.725rem;
  }
}

.hero-v2-copy h1 {
  font-size: clamp(2.2rem, 3.8vw, 3.25rem);
  line-height: 1.18;
  font-weight: 800;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}

.hero-v2-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-v2-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

/* Hero Center Column: 3D Megaphone / Media Visual with Halo */
.hero-v2-center {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-halo-ring {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1 / 1;
  height: auto;
  border-radius: 36px;
  background: linear-gradient(135deg, #e0e7ff 0%, #ede9fe 50%, #fdf2f8 100%);
  box-shadow: 0 20px 50px rgba(99, 102, 241, 0.18), inset 0 0 30px rgba(255, 255, 255, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  animation: floatHero 7s ease-in-out infinite;
}

.hero-3d-asset {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 34px;
}

@keyframes floatHero {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

/* Floating Micro-Badges */
.floating-badge {
  position: absolute;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.5rem 0.85rem;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-heading);
  z-index: 2;
  white-space: nowrap;
}

.badge-float-1 {
  top: 15px;
  left: -20px;
  animation: floatBadge1 5s ease-in-out infinite;
}

.badge-float-2 {
  bottom: 25px;
  right: -20px;
  animation: floatBadge2 6s ease-in-out infinite;
}

@media (max-width: 640px) {
  .floating-badge {
    display: none !important;
  }
}

@keyframes floatBadge1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes floatBadge2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* Hero Right Column: Connected Pathway Stepper */
.hero-v2-pathway {
  position: relative;
}

.pathway-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pathway-dashed-line {
  position: absolute;
  left: 20px;
  top: 25px;
  bottom: 25px;
  width: 2px;
  border-left: 2px dashed #cbd5e1;
  z-index: 0;
}

.pathway-node-card {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  transition: all 0.2s ease;
}

.pathway-node-card:hover {
  transform: translateX(4px);
  border-color: var(--primary-blue-border);
  box-shadow: var(--shadow-md);
}

.pathway-icon-node {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ffffff;
}
.node-purple { background: linear-gradient(135deg, #8b5cf6, #6d28d9); box-shadow: 0 4px 10px rgba(139, 92, 246, 0.3); }
.node-blue   { background: linear-gradient(135deg, #3b82f6, #1d4ed8); box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3); }
.node-coral  { background: linear-gradient(135deg, #f43f5e, #e11d48); box-shadow: 0 4px 10px rgba(244, 63, 94, 0.3); }
.node-indigo { background: linear-gradient(135deg, #6366f1, #4f46e5); box-shadow: 0 4px 10px rgba(99, 102, 241, 0.3); }
.node-teal   { background: linear-gradient(135deg, #6366f1, #4f46e5); box-shadow: 0 4px 10px rgba(99, 102, 241, 0.3); }

.pathway-text-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.15rem;
  line-height: 1.2;
}

.pathway-text-sub {
  font-size: 0.775rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* ==========================================================================
   Platform Trust Marquee Bar
   ========================================================================== */
.platform-marquee-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 1.25rem 2.5rem;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  margin: 2rem 0 4rem;
}

.marquee-logos-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.marquee-brand-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
  font-size: 1.1rem;
  color: #334155;
  letter-spacing: -0.01em;
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.marquee-brand-item:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* ==========================================================================
   Core Capabilities: 4-Card Grid
   ========================================================================== */
.section-dot-title {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.section-main-title {
  text-align: center;
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.section-main-sub {
  text-align: center;
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 3rem;
}

.capabilities-v2-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

@media (max-width: 1024px) {
  .capabilities-v2-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .capabilities-v2-grid {
    grid-template-columns: 1fr;
  }
}

.capability-v2-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 2.25rem 1.75rem;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.capability-v2-card:hover {
  transform: translateY(-8px);
  border-color: #cbd5e1;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
}

.cap-icon-3d-box {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.cap-icon-purple { background: linear-gradient(135deg, #ede9fe, #ddd6fe); color: #7c3aed; }
.cap-icon-blue   { background: linear-gradient(135deg, #e0f2fe, #bae6fd); color: #0284c7; }
.cap-icon-coral  { background: linear-gradient(135deg, #ffe4e6, #fecdd3); color: #e11d48; }
.cap-icon-indigo,
.cap-icon-teal   { background: linear-gradient(135deg, #e0e7ff, #c7d2fe); color: #4338ca; }

.capability-v2-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 0.75rem;
  color: var(--text-heading);
}

.capability-v2-card p {
  font-size: 0.925rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.card-arrow-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-blue);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: transform 0.2s ease;
}

.card-arrow-link:hover {
  transform: translateX(4px);
  color: var(--primary-blue-hover);
}

/* ==========================================================================
   Horizontal Blue Feature Banner Card
   ========================================================================== */
.promo-banner-card {
  background: linear-gradient(135deg, #1d4ed8 0%, #0284c7 100%);
  border-radius: 24px;
  padding: 3rem;
  color: #ffffff;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin: 4rem 0;
  box-shadow: 0 20px 45px rgba(29, 78, 216, 0.25);
  position: relative;
  overflow: hidden;
}

@media (max-width: 900px) {
  .promo-banner-card {
    grid-template-columns: 1fr;
    padding: 2.25rem 1.75rem;
    text-align: center;
  }
  .promo-banner-card .btn-pill-white {
    margin: 0 auto;
  }
}

.promo-banner-copy h2 {
  color: #ffffff;
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 1rem;
}

.promo-banner-copy p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 2rem;
}

.btn-pill-white {
  background: #ffffff;
  color: #1d4ed8 !important;
  border-radius: 9999px;
  padding: 0.85rem 1.85rem;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn-pill-white:hover {
  background: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.promo-banner-visual img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   Case Study & Real Benchmarks: 3 Pastel Stat Cards
   ========================================================================== */
.benchmarks-v2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0 4rem;
}

@media (max-width: 900px) {
  .benchmarks-v2-grid {
    grid-template-columns: 1fr;
  }
}

.benchmark-v2-card {
  border-radius: 20px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}

.benchmark-v2-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.benchmark-card-purple {
  background: #f5f3ff;
  border: 1px solid #ede9fe;
}
.benchmark-card-peach {
  background: #fff7ed;
  border: 1px solid #ffedd5;
}
.benchmark-card-indigo,
.benchmark-card-teal {
  background: #f5f7ff;
  border: 1px solid #e0e7ff;
}

.bench-icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.bench-icon-purple { background: #ede9fe; color: #7c3aed; }
.bench-icon-peach  { background: #ffedd5; color: #ea580c; }
.bench-icon-indigo,
.bench-icon-teal   { background: #e0e7ff; color: #4338ca; }

.bench-category {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.bench-metric {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.bench-metric-purple { color: #7c3aed; }
.bench-metric-peach  { color: #ea580c; }
.bench-metric-indigo,
.bench-metric-teal   { color: #4338ca; }

.bench-desc {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

/* ==========================================================================
   Golden Bottom Conversion Banner
   ========================================================================== */
.golden-cta-banner {
  background: #fffbeb;
  border: 1px solid #fef08a;
  border-radius: 16px;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin: 2.5rem 0 3.5rem;
  box-shadow: 0 4px 18px rgba(245, 158, 11, 0.08);
}

@media (max-width: 768px) {
  .golden-cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
}

.golden-cta-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

@media (max-width: 768px) {
  .golden-cta-left {
    flex-direction: column;
  }
}

.golden-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f59e0b;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25);
}

.golden-cta-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.2rem;
}

.golden-cta-sub {
  font-size: 0.88rem;
  color: #64748b;
  margin: 0;
}

.btn-pill-golden {
  background: #f59e0b;
  color: #111827 !important;
  border-radius: 9999px;
  padding: 0.75rem 1.85rem;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-pill-golden:hover {
  background: #d97706;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(245, 158, 11, 0.4);
}

/* ==========================================================================
   Dual-Tone Animated Footer (Novora Reference Parity)
   Color transition: Deep Obsidian Navy (#07091e) to Electric Purple (#7e22ce)
   ========================================================================== */
.site-footer-dualtone {
  position: relative;
  background: linear-gradient(105deg, #07091e 0%, #0c1135 32%, #3b1373 62%, #6b21a8 82%, #7e22ce 100%);
  background-size: 180% 180%;
  animation: dualToneFlow 12s ease-in-out infinite alternate;
  color: #e2e8f0;
  padding: 4.5rem 0 2rem;
  margin-top: auto;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@keyframes dualToneFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Ambient Radial Glow on the Purple Side */
.site-footer-dualtone::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -5%;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192, 132, 252, 0.22) 0%, rgba(126, 34, 206, 0) 70%);
  pointer-events: none;
  animation: pulsePurpleGlow 7s ease-in-out infinite alternate;
}

@keyframes pulsePurpleGlow {
  0% { transform: scale(0.95) translateY(0); opacity: 0.6; }
  100% { transform: scale(1.15) translateY(-25px); opacity: 0.95; }
}

.footer-dt-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

@media (max-width: 1024px) {
  .footer-dt-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-dt-brand {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .footer-dt-grid {
    grid-template-columns: 1fr;
  }
  .footer-dt-brand {
    grid-column: span 1;
  }
}

.footer-dt-brand-title {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.4rem;
}

.footer-dt-logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0284c7 0%, #3b82f6 40%, #8b5cf6 70%, #ec4899 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  font-weight: 900;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.35);
  flex-shrink: 0;
}

.footer-dt-logo-text {
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.footer-dt-tagline {
  font-size: 0.725rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #cbd5e1;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-dt-bio {
  font-size: 0.875rem;
  color: #cbd5e1;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  max-width: 320px;
}

.footer-dt-social-row {
  display: flex;
  gap: 0.6rem;
}

.footer-dt-social-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-dt-social-btn:hover {
  background: #ffffff;
  color: #6b21a8;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 16px rgba(255, 255, 255, 0.25);
}

.footer-dt-col h4,
.footer-dt-col .footer-dt-heading {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.footer-dt-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-dt-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.875rem;
  transition: color 0.15s ease, transform 0.15s ease;
  display: inline-block;
}

.footer-dt-links a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-dt-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  font-size: 0.825rem;
  color: rgba(255, 255, 255, 0.65);
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   Zero-Wall-of-Text & Interactive Experience Modules (Google EEAT Upgrades)
   ========================================================================== */

/* 1. Key Takeaway Summary Pill Box */
.key-takeaway-card {
  background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
  border: 1.5px solid var(--primary-blue-border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  margin: 1rem 0 1.75rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.takeaway-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}

.takeaway-badge {
  font-size: 0.725rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--primary-blue);
  color: #ffffff;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

.takeaway-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-heading);
  margin: 0;
}

.takeaway-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.6rem;
}

.takeaway-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.45;
}

.takeaway-bullet {
  color: var(--primary-blue);
  font-weight: 800;
  flex-shrink: 0;
}

/* 2. Interactive Sideloading Wizard */
.wizard-card {
  background: #ffffff;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  margin: 2rem 0;
  box-shadow: var(--shadow-md);
}

.wizard-tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  border-bottom: 1.5px solid var(--border-subtle);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.wizard-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.15rem;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border-subtle);
  background: #f8fafc;
  color: var(--text-heading);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.wizard-tab-btn:hover {
  border-color: var(--primary-blue-border);
  background: var(--primary-blue-light);
  color: var(--primary-blue);
}

.wizard-tab-btn.active {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #7c3aed 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.28);
}

.wizard-panel {
  display: none;
}

.wizard-panel.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

.wizard-progress-bar-wrap {
  background: #f1f5f9;
  border-radius: var(--radius-full);
  height: 10px;
  overflow: hidden;
  margin: 1rem 0 1.5rem;
  position: relative;
}

.wizard-progress-fill {
  background: linear-gradient(90deg, #2563eb, #7c3aed);
  height: 100%;
  width: 0%;
  border-radius: var(--radius-full);
  transition: width 0.35s ease;
}

.wizard-progress-text {
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.35rem;
}

.wizard-steps-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.wizard-step-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #f8fafc;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.15rem;
  transition: all 0.2s ease;
  cursor: pointer;
}

.wizard-step-item:hover {
  border-color: var(--primary-blue-border);
  background: #ffffff;
}

.wizard-step-item.is-done {
  background: #eff6ff;
  border-color: #bfdbfe;
}

.wizard-step-checkbox {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.2s ease;
}

.wizard-step-item.is-done .wizard-step-checkbox {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  color: #ffffff;
}

.wizard-step-content {
  flex-grow: 1;
}

.wizard-step-content h4 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  color: var(--text-heading);
}

.wizard-step-content p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.5;
}

.code-copy-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #eff6ff;
  border: 1.5px dashed #93c5fd;
  border-radius: var(--radius-md);
  padding: 0.35rem 0.75rem;
  font-family: monospace;
  font-weight: 800;
  color: #1e40af;
  font-size: 1.1rem;
  margin: 0.4rem 0;
}

/* 3. First-Party Hardware Benchmark Lab */
.lab-benchmark-card {
  background: #ffffff;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  margin: 2rem 0;
  box-shadow: var(--shadow-sm);
}

.lab-meta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-subtle);
}

.bench-table-wrap {
  overflow-x: auto;
}

.bench-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.875rem;
}

.bench-table th {
  background: #f8fafc;
  padding: 0.85rem 1rem;
  text-align: left;
  font-weight: 700;
  color: var(--text-heading);
  border-bottom: 2px solid var(--border-subtle);
  white-space: nowrap;
}

.bench-table td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-body);
  vertical-align: middle;
}

.bench-table tr:hover td {
  background: #f8fafc;
}

.bench-badge-clean {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: #eff6ff;
  color: #1e40af;
  border: 1px solid #bfdbfe;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.775rem;
}

.hw-model-name {
  font-weight: 700;
  color: var(--text-heading);
  display: block;
}

.hw-soc-sub {
  font-size: 0.775rem;
  color: var(--text-muted);
}

/* 4. Live SHA-256 Checksum Verifier Tool */
.checksum-tool-box {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1.5px solid var(--primary-blue-border);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  margin: 2rem 0;
  box-shadow: var(--shadow-sm);
}

.checksum-tool-input-row {
  display: flex;
  gap: 0.75rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.checksum-test-input {
  flex-grow: 1;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  font-family: monospace;
  font-size: 0.875rem;
  color: var(--text-heading);
  outline: none;
  transition: border-color 0.2s ease;
}

.checksum-test-input:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.checksum-result-badge {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-lg);
  display: none;
  margin-top: 1rem;
}

.checksum-result-badge.match {
  display: block;
  background: #eff6ff;
  border: 1.5px solid #bfdbfe;
  color: #1e40af;
}

.checksum-result-badge.mismatch {
  display: block;
  background: #fffbeb;
  border: 1.5px solid #fde68a;
  color: #92400e;
}

/* 5. Android Permissions & Security Transparency Matrix */
.permissions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin: 1.5rem 0;
}

.permission-col-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.permission-col-card.allowed {
  border: 1.5px solid #bfdbfe;
}

.permission-col-card.blocked {
  border: 1.5px solid #fde68a;
}

.permission-col-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

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

.permission-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
}

.perm-icon-pill {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 800;
}

.perm-icon-allowed {
  background: #eff6ff;
  color: #2563eb;
  border: 1px solid #bfdbfe;
}

.perm-icon-blocked {
  background: #fef2f2;
  color: #ef4444;
  border: 1px solid #fecaca;
}

/* 6. Stream Bandwidth & Data Consumption Calculator */
.calc-card {
  background: #ffffff;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  margin: 2rem 0;
  box-shadow: var(--shadow-sm);
}

.calc-quality-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.calc-quality-btn {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border-subtle);
  background: #f8fafc;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-heading);
  cursor: pointer;
  transition: all 0.2s ease;
}

.calc-quality-btn.active {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}

.calc-slider-wrap {
  margin: 1.5rem 0;
}

.calc-slider {
  width: 100%;
  height: 6px;
  border-radius: var(--radius-full);
  background: #e2e8f0;
  outline: none;
  accent-color: #2563eb;
}

.calc-output-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.calc-metric-box {
  background: #f8fafc;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1rem;
  text-align: center;
}

.calc-metric-label {
  font-size: 0.775rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.calc-metric-val {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-blue);
  letter-spacing: -0.02em;
}

/* 7. Interactive Troubleshooting Decision Tree */
.troubleshoot-tree-card {
  background: #ffffff;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  margin: 2rem 0;
  box-shadow: var(--shadow-sm);
}

.issue-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.issue-pill-btn {
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border-subtle);
  background: #f8fafc;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-heading);
  cursor: pointer;
  transition: all 0.2s ease;
}

.issue-pill-btn:hover {
  border-color: var(--primary-blue-border);
  color: var(--primary-blue);
}

.issue-pill-btn.active {
  background: #1e40af;
  color: #ffffff;
  border-color: #1e40af;
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.25);
}

.troubleshoot-panel {
  display: none;
}

.troubleshoot-panel.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

.issue-diagnosis-box {
  background: #f8fafc;
  border-left: 4px solid var(--primary-blue);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
}

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

.issue-step-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.issue-step-card strong {
  color: var(--primary-blue);
  display: block;
  margin-bottom: 0.35rem;
}

/* ==========================================================================
   Homepage Recreated 3D Showcase, Real App Tour & Animated Marquee
   Strictly Indigo (#2563eb) & Purple (#7c3aed) Palette - Zero Green
   ========================================================================== */

/* 1. Hero Floating Micro-Badge 3 */
.badge-float-3 {
  bottom: -15px;
  left: 20px;
  animation: floatBadge3 6.5s ease-in-out infinite;
}

@keyframes floatBadge3 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

/* 2. Dual-Tone Animated Buttons */
.btn-dual-animated {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 50%, #2563eb 100%);
  background-size: 200% 100%;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  border: none;
  box-shadow: 0 4px 18px rgba(37, 99, 235, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: shimmerDual 4s ease infinite;
  cursor: pointer;
}

.btn-dual-animated:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.45);
  color: #ffffff !important;
}

@keyframes shimmerDual {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* 3. Live Animated Streaming Title Ticker Marquee */
.streaming-ticker-section {
  margin: 2.5rem 0 3.5rem;
  overflow: hidden;
  position: relative;
}

.streaming-ticker-box {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: var(--radius-xl);
  padding: 1.25rem 0;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.streaming-ticker-box::before,
.streaming-ticker-box::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 3;
  pointer-events: none;
}

.streaming-ticker-box::before {
  left: 0;
  background: linear-gradient(90deg, #0f172a 0%, transparent 100%);
}

.streaming-ticker-box::after {
  right: 0;
  background: linear-gradient(270deg, #0f172a 0%, transparent 100%);
}

.streaming-ticker-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
  padding: 0 1.5rem;
}

.ticker-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #a855f7;
  box-shadow: 0 0 10px #a855f7;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.streaming-ticker-label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #c084fc;
}

.streaming-ticker-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: tickerMarquee 42s linear infinite;
}

.streaming-ticker-track:hover {
  animation-play-state: paused;
}

.ticker-pill-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  color: #f8fafc;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.ticker-pill-item:hover {
  background: rgba(124, 58, 237, 0.25);
  border-color: #a855f7;
  transform: translateY(-2px);
  color: #ffffff;
}

.ticker-pill-tag {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.35);
  color: #93c5fd;
  border: 1px solid rgba(147, 197, 253, 0.3);
}

.ticker-pill-tag.tag-hotstar {
  background: rgba(124, 58, 237, 0.35);
  color: #d8b4fe;
  border-color: rgba(216, 180, 254, 0.3);
}

.ticker-pill-tag.tag-dubbed {
  background: rgba(37, 99, 235, 0.35);
  color: #60a5fa;
  border-color: rgba(96, 165, 250, 0.3);
}

@keyframes tickerMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* 4. Authentic App Tour Section Container */
.home-app-tour-section {
  margin-bottom: 4rem;
}

/* 5. Recreated 3D Panorama Card */
.home-panorama-card {
  background: #ffffff;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(99, 102, 241, 0.12);
  margin-bottom: 2.5rem;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-panorama-card:hover {
  box-shadow: 0 25px 60px rgba(99, 102, 241, 0.18);
  border-color: var(--primary-blue-border);
}

.home-panorama-img-wrap {
  position: relative;
  overflow: hidden;
  background: #0f172a;
}

.home-panorama-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-panorama-card:hover .home-panorama-img {
  transform: scale(1.02);
}

.home-panorama-badge {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(124, 58, 237, 0.4);
  color: #f8fafc;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.home-panorama-content {
  padding: 1.75rem 2rem;
}

.home-panorama-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
}

.home-pano-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--bg-body);
  border: 1px solid var(--border-subtle);
  color: var(--text-heading);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
}

.home-pano-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-blue);
}

.home-panorama-content h3 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-heading);
  letter-spacing: -0.01em;
}

.home-panorama-content p {
  margin: 0;
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* 6. Interactive Tour Tabs & Screen Panels */
.home-tour-container {
  background: #ffffff;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2.5rem;
}

.home-tour-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #f8fafc;
  border-bottom: 1.5px solid var(--border-subtle);
}

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

.home-tour-tab-btn {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  border-right: 1px solid var(--border-subtle);
  cursor: pointer;
  text-align: left;
  transition: all 0.25s ease;
  font-family: inherit;
  position: relative;
}

.home-tour-tab-btn:last-child {
  border-right: none;
}

.home-tour-tab-btn .tab-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.home-tour-tab-btn .tab-text {
  display: flex;
  flex-direction: column;
}

.home-tour-tab-btn .tab-text strong {
  font-size: 0.95rem;
  color: var(--text-heading);
  font-weight: 700;
  line-height: 1.3;
}

.home-tour-tab-btn .tab-text small {
  font-size: 0.775rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.home-tour-tab-btn:hover {
  background: #ede9fe;
}

.home-tour-tab-btn:hover .tab-text strong {
  color: #7c3aed;
}

.home-tour-tab-btn.active {
  background: linear-gradient(135deg, #1e40af 0%, #6d28d9 100%);
  color: #ffffff;
}

.home-tour-tab-btn.active .tab-text strong {
  color: #ffffff;
}

.home-tour-tab-btn.active .tab-text small {
  color: #e0e7ff;
}

.home-tour-tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #a855f7;
}

/* Tour Panel Content */
.home-tour-panel {
  display: none;
  padding: 2.25rem;
}

.home-tour-panel.active {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 2.5rem;
  align-items: center;
  animation: fadeTourIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

@media (max-width: 900px) {
  .home-tour-panel.active {
    grid-template-columns: 1fr;
    padding: 1.5rem;
    gap: 1.75rem;
  }
}

/* Real In-App Mockup Phone Frame */
.home-phone-mockup {
  position: relative;
  background: #0f172a;
  padding: 10px;
  border-radius: 36px;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.22), 0 0 0 2px rgba(124, 58, 237, 0.3);
  text-align: center;
  max-width: 310px;
  margin: 0 auto;
}

.home-phone-mockup img {
  width: 100%;
  height: auto;
  border-radius: 28px;
  display: block;
}

.home-phone-caption {
  font-size: 0.75rem;
  color: #cbd5e1;
  margin-top: 0.6rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

/* Panel Right Side Content */
.home-tour-copy {
  display: flex;
  flex-direction: column;
}

.home-tour-provider-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}

.provider-pill {
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1e40af;
}

.provider-pill.purple-pill {
  background: #ede9fe;
  border-color: #ddd6fe;
  color: #6d28d9;
}

.home-tour-copy h3 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.3rem, 2.4vw, 1.75rem);
  font-weight: 800;
  color: var(--text-heading);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.home-tour-copy p.lead-desc {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.home-tour-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.home-tour-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.885rem;
}

.home-tour-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ede9fe;
  border: 1.5px solid #c4b5fd;
  color: #7c3aed;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

.home-tour-feature-item strong {
  color: var(--text-heading);
  display: block;
  margin-bottom: 0.15rem;
}

.home-tour-feature-item span {
  color: var(--text-body);
  line-height: 1.45;
}

/* 7. Interactive Feature Pillars (4 Cards) */
.home-pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.home-pillar-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.home-pillar-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary-blue-border);
  box-shadow: 0 12px 30px rgba(99, 102, 241, 0.12);
}

.home-pillar-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  font-size: 1.25rem;
}

.home-pillar-icon.icon-blue {
  background: #eff6ff;
  color: #2563eb;
  border: 1px solid #bfdbfe;
}

.home-pillar-icon.icon-purple {
  background: #ede9fe;
  color: #7c3aed;
  border: 1px solid #ddd6fe;
}

.home-pillar-card h4 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-heading);
}

.home-pillar-card p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.5;
}

/* ==========================================================================
   Desktop PC, Laptop, TV & Version Interactive Components
   Strictly Indigo (#2563eb) & Purple (#7c3aed) Palette - Zero Green
   ========================================================================== */

/* 1. PC & Laptop 3D Hero Card */
.pc-showcase-hero {
  background: #ffffff;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(99, 102, 241, 0.12);
  margin-bottom: 2.5rem;
  position: relative;
}

.pc-showcase-img-wrap {
  position: relative;
  overflow: hidden;
  background: #0f172a;
}

.pc-showcase-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.pc-showcase-hero:hover .pc-showcase-img {
  transform: scale(1.02);
}

.pc-floating-chips {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 3;
}

.pc-chip {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(124, 58, 237, 0.4);
  color: #f8fafc;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.pc-showcase-content {
  padding: 1.75rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

/* 2. Interactive Desktop Keyboard Hotkeys Grid */
.hotkeys-card {
  background: #ffffff;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  margin: 2rem 0;
  box-shadow: var(--shadow-sm);
}

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

.hotkey-item {
  background: #f8fafc;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: all 0.2s ease;
  cursor: pointer;
}

.hotkey-item:hover {
  border-color: var(--primary-blue-border);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.1);
}

.hotkey-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hotkey-kbd {
  display: inline-block;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-bottom: 3px solid #94a3b8;
  border-radius: 6px;
  padding: 0.25rem 0.65rem;
  font-family: monospace;
  font-size: 0.85rem;
  font-weight: 800;
  color: #1e293b;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.hotkey-tag {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #7c3aed;
  background: #ede9fe;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
}

.hotkey-desc {
  font-size: 0.825rem;
  color: var(--text-body);
  line-height: 1.4;
}

/* 3. Interactive Laptop Hardware & Battery Tuner */
.tuner-card {
  background: #ffffff;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  margin: 2rem 0;
  box-shadow: var(--shadow-sm);
}

.tuner-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.tuner-btn {
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border-subtle);
  background: #f8fafc;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-heading);
  cursor: pointer;
  transition: all 0.2s ease;
}

.tuner-btn:hover {
  border-color: var(--primary-blue-border);
  color: var(--primary-blue);
}

.tuner-btn.active {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

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

.tuner-stat-box {
  background: #f8fafc;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1rem;
  text-align: center;
}

.tuner-stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.tuner-stat-value {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-blue);
}

/* 4. Android TV & FireStick Downloader Simulator */
.tv-simulator-card {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
  border: 1px solid rgba(124, 58, 237, 0.4);
  border-radius: var(--radius-xl);
  padding: 2rem;
  color: #f8fafc;
  margin: 2rem 0;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.25);
}

.tv-url-bar-mockup {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 1.25rem 0;
  flex-wrap: wrap;
}

.tv-url-code {
  font-family: monospace;
  font-size: 1.45rem;
  font-weight: 800;
  color: #60a5fa;
  letter-spacing: 0.15em;
}

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

.tv-remote-step {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.tv-remote-step strong {
  display: block;
  color: #c084fc;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.tv-remote-step p {
  margin: 0;
  font-size: 0.825rem;
  color: #cbd5e1;
  line-height: 1.45;
}

/* 5. Version Comparator */
.version-comparator-card {
  background: #ffffff;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  margin: 2.5rem 0;
  box-shadow: var(--shadow-sm);
}

.version-select-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.version-comp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.885rem;
}

.version-comp-table th,
.version-comp-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border-subtle);
  text-align: left;
}

.version-comp-table th {
  background: #f8fafc;
  color: var(--text-heading);
  font-weight: 700;
}

.version-comp-table tr:hover {
  background: #f8fafc;
}

.version-comp-highlight {
  color: var(--primary-blue);
  font-weight: 800;
}

/* 6. Blog Instant Category Filter Bar */
.blog-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0 2rem;
}

.blog-filter-btn {
  padding: 0.5rem 1.15rem;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border-subtle);
  background: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-heading);
  cursor: pointer;
  transition: all 0.2s ease;
}

.blog-filter-btn:hover {
  border-color: var(--primary-blue-border);
  color: var(--primary-blue);
}

.blog-filter-btn.active {
  background: #1e40af;
  color: #ffffff;
  border-color: #1e40af;
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.25);
}

/* 7. Android TV & FireStick 3D Showcase Card */
.tv-showcase-hero {
  background: #ffffff;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(99, 102, 241, 0.12);
  margin-bottom: 2.5rem;
  position: relative;
}

.tv-showcase-img-wrap {
  position: relative;
  overflow: hidden;
  background: #0f172a;
}

.tv-showcase-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.tv-showcase-hero:hover .tv-showcase-img {
  transform: scale(1.02);
}

.tv-floating-chips {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 3;
}

.tv-chip {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(124, 58, 237, 0.4);
  color: #f8fafc;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.tv-showcase-content {
  padding: 1.75rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

/* ==========================================================================
   God-Tier High-Utility Components (Zero Green, Strict Indigo & Purple)
   ========================================================================== */

/* 1. Hero App Profile & Quick-Download Card */
.hero-app-profile-card {
  background: #ffffff;
  border: 1.5px solid #dbeafe;
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

.hero-profile-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.hero-profile-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35);
  flex-shrink: 0;
}

.hero-profile-title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1.2;
}

.hero-profile-sub {
  font-size: 0.775rem;
  color: var(--text-muted);
  font-weight: 600;
}

.hero-profile-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  background: #f8fafc;
  padding: 0.75rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  font-size: 0.78rem;
}

.hero-meta-cell {
  display: flex;
  flex-direction: column;
}

.hero-meta-label {
  color: var(--text-muted);
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.hero-meta-val {
  color: var(--text-heading);
  font-weight: 700;
}

.hero-profile-mirrors-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.hero-mirror-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1e40af;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.5rem 0.65rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.hero-mirror-btn:hover {
  background: #dbeafe;
  color: #1e3a8a;
  transform: translateY(-1px);
}

.hero-sha-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f1f5f9;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.65rem;
  font-size: 0.75rem;
  font-family: monospace;
  color: #334155;
}

/* 2. 6-Feature Streamer Grid */
.streamer-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.streamer-feature-card {
  background: #ffffff;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.streamer-feature-card:hover {
  transform: translateY(-4px);
  border-color: #93c5fd;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.08);
}

.streamer-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}

.streamer-feature-icon.icon-blue {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #2563eb;
}

.streamer-feature-icon.icon-purple {
  background: #ede9fe;
  border: 1px solid #ddd6fe;
  color: #7c3aed;
}

.streamer-feature-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-heading);
}

.streamer-feature-card p {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
  flex-grow: 1;
}

.streamer-feature-highlight {
  font-size: 0.8rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.streamer-feature-highlight.blue {
  color: #2563eb;
}

.streamer-feature-highlight.purple {
  color: #7c3aed;
}

/* 3. Device Compatibility & Settings Checker Tool */
.device-compat-tool {
  background: #ffffff;
  border: 1.5px solid #bfdbfe;
  border-radius: var(--radius-xl);
  padding: 2rem;
  margin: 2.5rem 0;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.06);
}

.compat-tabs-row {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  padding-bottom: 0.75rem;
  margin-top: 1.25rem;
  margin-bottom: 1.5rem;
  scrollbar-width: thin;
}

.compat-tab-btn {
  background: #f8fafc;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-body);
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.25s ease;
}

.compat-tab-btn:hover {
  border-color: #93c5fd;
  background: #eff6ff;
  color: #1e40af;
}

.compat-tab-btn.active {
  background: #2563eb;
  border-color: #2563eb;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.compat-card {
  display: none;
  background: #f8fafc;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.compat-card.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

.compat-verdict-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 1.25rem;
}

.compat-verdict-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-heading);
}

.compat-specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.compat-spec-item {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
}

.compat-spec-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.compat-spec-val {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-heading);
}

.compat-instructions-box {
  background: #ffffff;
  border-left: 4px solid #2563eb;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1rem 1.25rem;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-body);
}

/* 4. ISP Throttling & DNS Fix Selector */
.isp-unblocker-tool {
  background: #ffffff;
  border: 1.5px solid #ddd6fe;
  border-radius: var(--radius-xl);
  padding: 2rem;
  margin: 2.5rem 0;
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.06);
}

.isp-select-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 1rem 0 1.5rem;
}

.isp-pill-btn {
  background: #f8fafc;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 0.5rem 1.15rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-body);
  cursor: pointer;
  transition: all 0.2s ease;
}

.isp-pill-btn:hover {
  border-color: #c4b5fd;
  background: #f5f3ff;
  color: #6d28d9;
}

.isp-pill-btn.active {
  background: #7c3aed;
  border-color: #7c3aed;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.isp-fix-card {
  display: none;
  background: #fdf4ff;
  border: 1px solid #f0abfc;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  color: #4a044e;
}

.isp-fix-card.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

.isp-fix-title {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.isp-fix-steps {
  margin: 0.75rem 0 0;
  padding-left: 1.25rem;
  font-size: 0.9rem;
  line-height: 1.6;
}

.isp-dns-code {
  background: #ffffff;
  border: 1px solid #e9d5ff;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-family: monospace;
  font-weight: 700;
  color: #7c3aed;
}

/* ==============================================================================
   GOD-TIER DOWNLOAD ANIMATION & VIP RELEASE RADAR (100% Zero-Green Palette)
   ============================================================================== */

/* Download Button Active Interaction State */
.btn-download-animating {
  position: relative;
  overflow: hidden !important;
  pointer-events: none;
  box-shadow: 0 0 25px rgba(37, 99, 235, 0.6) !important;
}

.btn-download-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.85), rgba(124, 58, 237, 0.9));
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.btn-download-label {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-spinner {
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: btnSpin 0.7s linear infinite;
  display: inline-block;
}

@keyframes btnSpin {
  to { transform: rotate(360deg); }
}

/* Release Radar Modal Overlay */
.radar-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s ease;
}

.radar-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Modal Card Structure */
.radar-modal-card {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: calc(100vh - 2.5rem);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  margin: auto;
  background: linear-gradient(150deg, #0f172a 0%, #1e1b4b 60%, #172554 100%);
  border: 1.5px solid rgba(124, 58, 237, 0.4);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 25px 60px -15px rgba(37, 99, 235, 0.5), 0 0 40px rgba(124, 58, 237, 0.2);
  color: #f8fafc;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  scrollbar-width: thin;
}

.radar-modal-overlay.active .radar-modal-card {
  transform: scale(1) translateY(0);
}

/* Close Button (Google Tap Target 44x44px Compliant) */
.radar-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #cbd5e1;
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
}

.radar-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  transform: rotate(90deg);
}

/* Animated Bell Icon Header */
.radar-icon-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-right: 2.75rem;
}

.radar-bell-badge {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.5);
  flex-shrink: 0;
}

.radar-bell-svg {
  animation: bellSwing 2s ease-in-out infinite;
  transform-origin: top center;
}

@keyframes bellSwing {
  0% { transform: rotate(0); }
  10% { transform: rotate(14deg); }
  20% { transform: rotate(-14deg); }
  30% { transform: rotate(10deg); }
  40% { transform: rotate(-10deg); }
  50% { transform: rotate(5deg); }
  60% { transform: rotate(-5deg); }
  70% { transform: rotate(0); }
  100% { transform: rotate(0); }
}

.radar-tagline {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #93c5fd;
  margin-bottom: 0.2rem;
}

.radar-title {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
  margin: 0;
}

.radar-subtitle {
  font-size: 0.875rem;
  color: #cbd5e1;
  line-height: 1.55;
  margin: 0.65rem 0 1.15rem 0;
}

.radar-subtitle strong {
  color: #ffffff;
}

/* Platform Choice Selector Chips */
.radar-platform-title {
  font-size: 0.775rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #94a3b8;
  margin-bottom: 0.5rem;
}

.radar-chips-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 1.15rem;
}

.radar-chip {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 0.5rem 0.65rem;
  cursor: pointer;
  user-select: none;
  transition: all 0.2s ease;
  font-size: 0.8rem;
  color: #e2e8f0;
}

.radar-chip:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(147, 197, 253, 0.4);
}

.radar-chip input[type="checkbox"] {
  accent-color: #2563eb;
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  cursor: pointer;
}

.radar-chip.active {
  background: rgba(37, 99, 235, 0.2);
  border-color: #3b82f6;
  color: #ffffff;
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.3);
}

/* Form Input Field */
.radar-form-group {
  margin-bottom: 0.85rem;
}

.radar-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.radar-input-icon {
  position: absolute;
  left: 1rem;
  color: #94a3b8;
  pointer-events: none;
}

.radar-input {
  width: 100%;
  background: rgba(15, 23, 42, 0.8);
  border: 1.5px solid #334155;
  border-radius: 12px;
  padding: 0.85rem 1rem 0.85rem 2.85rem;
  color: #ffffff;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.2s ease;
}

.radar-input:focus {
  border-color: #3b82f6;
  background: #0f172a;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.35);
}

.radar-input::placeholder {
  color: #64748b;
}

/* Push Notification Opt-in Box */
.radar-push-optin {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 10px;
  padding: 0.75rem 0.85rem;
  margin-bottom: 1.15rem;
  font-size: 0.825rem;
  color: #ddd6fe;
  cursor: pointer;
}

.radar-push-optin input {
  margin-top: 0.15rem;
  accent-color: #7c3aed;
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  cursor: pointer;
}

/* Submit Action Button */
.radar-submit-btn {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 0.9rem 1.5rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
}

.radar-privacy-note {
  text-align: center;
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

/* Mobile Specific Optimizations for Release Radar Modal */
@media (max-width: 640px) {
  .radar-modal-overlay {
    padding: 0.75rem;
    align-items: flex-start;
  }
  .radar-modal-card {
    padding: 1.4rem 1.1rem;
    border-radius: 16px;
    max-height: calc(100vh - 1.5rem);
    margin: auto 0;
  }
  .radar-close-btn {
    top: 0.65rem;
    right: 0.65rem;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    font-size: 1.4rem;
  }
  .radar-icon-header {
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding-right: 2.5rem;
  }
  .radar-bell-badge {
    width: 42px;
    height: 42px;
    border-radius: 10px;
  }
  .radar-bell-badge svg {
    width: 22px;
    height: 22px;
  }
  .radar-title {
    font-size: 1.15rem !important;
    line-height: 1.25;
  }
  .radar-subtitle {
    font-size: 0.8rem;
    line-height: 1.45;
    margin: 0.4rem 0 0.75rem;
  }
  .radar-platform-title {
    font-size: 0.725rem;
    margin-bottom: 0.35rem;
  }
  .radar-chips-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.35rem;
    margin-bottom: 0.75rem;
  }
  .radar-chip {
    padding: 0.4rem 0.5rem;
    font-size: 0.72rem;
    border-radius: 8px;
  }
  .radar-chip input[type="checkbox"] {
    width: 14px;
    height: 14px;
    min-width: 14px;
    min-height: 14px;
  }
  .radar-form-group {
    margin-bottom: 0.65rem;
  }
  .radar-input {
    padding: 0.75rem 0.85rem 0.75rem 2.4rem;
    font-size: 0.9rem;
    border-radius: 10px;
  }
  .radar-push-optin {
    padding: 0.55rem 0.7rem;
    font-size: 0.75rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
  }
  .radar-submit-btn {
    padding: 0.8rem 1.25rem;
    font-size: 0.925rem;
    border-radius: 10px;
  }
  .radar-privacy-note {
    font-size: 0.7rem;
    margin-top: 0.55rem;
  }
  .radar-success-title {
    font-size: 1.25rem;
  }
  .radar-success-desc {
    font-size: 0.85rem;
  }
}

/* Success Confirmation State */
.radar-success-view {
  display: none;
  text-align: center;
  padding: 1.5rem 0.5rem;
}

.radar-success-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e40af, #7c3aed);
  border: 2px solid #60a5fa;
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  animation: radarPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes radarPop {
  0% { transform: scale(0); }
  80% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.radar-success-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.radar-success-desc {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 440px;
  margin: 0 auto 1.5rem auto;
}

.radar-success-desc strong {
  color: #93c5fd;
}

.radar-guide-shortcut {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 0.65rem 1.2rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.radar-guide-shortcut:hover {
  background: rgba(37, 99, 235, 0.3);
  border-color: #3b82f6;
  color: #93c5fd;
}

/* Inline Release Radar Box (for /download page) */
.radar-inline-card {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
  border: 1.5px solid rgba(124, 58, 237, 0.35);
  border-radius: var(--radius-lg);
  padding: 2rem;
  color: #ffffff;
  margin-top: 2rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.radar-inline-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

/* ==========================================================================
   Global Mobile Hardening & Viewport Protection (<= 768px, <= 640px, <= 480px)
   ========================================================================== */
@media (max-width: 768px) {
  .blog-grid,
  .streamer-features-grid,
  .features-grid,
  .comparison-grid,
  .contact-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 640px) {
  .device-compat-tool {
    padding: 1.25rem 1rem !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .checksum-tool-box {
    padding: 1.25rem 1rem !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .checksum-tool-input-row {
    flex-direction: column !important;
  }
  .checksum-tool-input-row .btn {
    width: 100% !important;
    text-align: center;
    white-space: normal !important;
  }
  .radar-inline-card {
    padding: 1.4rem 1.1rem !important;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 0.85rem !important;
    padding-right: 0.85rem !important;
  }
  .streamer-feature-card,
  .blog-card,
  .feature-card,
  .card,
  .quick-stat-box,
  .spec-table-container {
    min-width: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .blog-card-thumb {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }
  .compat-tabs-row {
    max-width: 100% !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
  }
}


