/* ============================================
   EMERCOM - Modern Status Page & Monitoring
   A stunning, unique website design
   ============================================ */

/* CSS Custom Properties */
:root {
    /* Colors - Dark Theme with Emerald Accent (matching Emercom app) */
    --color-bg: #0f1419;
    --color-bg-elevated: #192734;
    --color-bg-card: #192734;
    --color-bg-card-hover: #1e2d3d;
    --color-border: #38444d;
    --color-border-light: #2f3b47;

    --color-text: #e1e8ed;
    --color-text-secondary: #8899a6;
    --color-text-muted: #657786;

    --color-primary: #5196CE;
    --color-primary-light: #6BA8D9;
    --color-primary-dark: #3D7AAF;
    --color-primary-glow: rgba(81, 150, 206, 0.4);

    --color-accent: #F88C21;
    --color-accent-light: #FAA44D;
    --color-accent-dark: #D97610;

    --color-success: #4CAF87;
    --color-warning: #E2B039;
    --color-error: #D32F2F;
    --color-info: #64B5F6;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #5196CE 0%, #6BA8D9 50%, #8BBDE5 100%);
    --gradient-hero: linear-gradient(180deg, rgba(81, 150, 206, 0.15) 0%, transparent 50%);
    --gradient-card: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    --gradient-text: linear-gradient(135deg, #5196CE 0%, #6BA8D9 50%, #8BBDE5 100%);

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.5), 0 2px 4px -2px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -4px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 8px 10px -6px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px var(--color-primary-glow);

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
}

/* ============================================
   CURSOR GLOW EFFECT (Desktop)
   ============================================ */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 60%;
    background: radial-gradient(circle, var(--color-primary-glow) 0%, transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
    mix-blend-mode: screen;
}

@media (hover: hover) {
    .cursor-glow {
        opacity: 0.1;
    }
}

/* Ambient Background */
.ambient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--color-primary-glow) 0%, transparent 70%);
    top: -200px;
    left: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    top: 50%;
    right: -100px;
    animation-delay: -7s;
}

.orb-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
    bottom: -200px;
    left: 30%;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -30px) scale(1.05); }
    50% { transform: translate(20px, 40px) scale(0.95); }
    75% { transform: translate(-30px, 20px) scale(1.02); }
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: var(--transition-base);
    backdrop-filter: blur(12px);
    background: rgba(15, 20, 25, 0.85);
    border-bottom: 1px solid transparent;
}

.nav.scrolled {
    border-bottom-color: var(--color-border);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    color: var(--color-text);
}

.logo-img {
    height: 32px;
    width: auto;
}

/* Legacy styles kept for compatibility */
.logo-icon {
    width: 32px;
    height: 32px;
    color: var(--color-primary);
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-link {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-base);
    border-radius: var(--radius-full);
}

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

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-text);
    border-radius: var(--radius-full);
    transition: var(--transition-base);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-bg);
    z-index: 999;
    padding: var(--space-xl);
    transform: translateX(100%);
    transition: var(--transition-base);
    display: none;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.mobile-menu-links a {
    color: var(--color-text);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 500;
}

.mobile-menu-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--color-border);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.625rem 1.25rem;
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
    white-space: nowrap;
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #000;
    box-shadow: var(--shadow-md), 0 0 20px var(--color-primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 0 30px var(--color-primary-glow);
}

.btn-ghost {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border-light);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-text-muted);
}

.btn-large {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-full {
    width: 100%;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: var(--space-4xl);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 600px;
    background: var(--gradient-hero);
    pointer-events: none;
}

/* Hero Grid Background */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 50% at 50% 0%, black 30%, transparent 70%);
    animation: gridMove 20s linear infinite;
    pointer-events: none;
}

@keyframes gridMove {
    0% { background-position: 0 0; }
    100% { background-position: 60px 60px; }
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: rgba(81, 150, 206, 0.1);
    border: 1px solid rgba(81, 150, 206, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-primary-light);
    margin-bottom: var(--space-xl);
    animation: fadeInUp 0.6s ease-out;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    position: relative;
}

.pulse-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--color-primary);
    border-radius: 50%;
    animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(3); opacity: 0; }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero-title-line {
    display: block;
}

.hero-title-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--color-text-secondary);
    max-width: 680px;
    margin: 0 auto var(--space-2xl);
    line-height: 1.7;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-subtitle strong {
    color: var(--color-text);
    font-weight: 600;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-3xl);
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.hero-stat {
    text-align: center;
}

.hero-stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text);
    font-family: var(--font-mono);
}

.hero-stat-label {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--color-border);
}

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

/* Hero Visual */
.hero-visual {
    max-width: 1000px;
    margin: var(--space-4xl) auto 0;
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.dashboard-preview {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl), 0 0 60px rgba(81, 150, 206, 0.1);
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--color-border);
}

.dashboard-dots {
    display: flex;
    gap: 6px;
}

.dashboard-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-text-muted);
}

.dashboard-dots span:nth-child(1) { background: #ef4444; }
.dashboard-dots span:nth-child(2) { background: #eab308; }
.dashboard-dots span:nth-child(3) { background: #3d916f; }

.dashboard-url {
    flex: 1;
    text-align: center;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    font-family: var(--font-mono);
}

.dashboard-content {
    padding: var(--space-xl);
}

.status-header-preview {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.company-logo-preview {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: #000;
}

.company-name-preview {
    font-size: 1.25rem;
    font-weight: 600;
}

.status-banner-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    font-weight: 600;
    margin-bottom: var(--space-xl);
}

.status-banner-preview svg {
    width: 20px;
    height: 20px;
}

.status-banner-preview.status-operational {
    background: rgba(81, 150, 206, 0.1);
    color: var(--color-info);
    border: 1px solid rgba(81, 150, 206, 0.3);
}

.services-preview {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.service-item-preview {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-md);
}

.service-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.service-dot.operational { background: var(--color-success); }
.service-dot.degraded { background: var(--color-warning); }
.service-dot.outage { background: var(--color-error); }

.service-item-preview .service-name {
    flex: 1;
    font-weight: 500;
}

.service-item-preview .service-uptime {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.uptime-chart-preview {
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-md);
    padding: var(--space-md);
}

.uptime-bars {
    display: flex;
    gap: 3px;
    margin-bottom: var(--space-sm);
}

.uptime-bars span {
    flex: 1;
    height: 24px;
    border-radius: 3px;
}

.uptime-bars span.up { background: var(--color-success); }
.uptime-bars span.degraded { background: var(--color-warning); }
.uptime-bars span.down { background: var(--color-error); }

.uptime-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

/* Floating Cards */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    animation: floatCard 6s ease-in-out infinite;
}

.floating-card-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card-icon svg {
    width: 20px;
    height: 20px;
}

.floating-card-icon.alert {
    background: rgba(239, 68, 68, 0.1);
    color: var(--color-error);
}

.floating-card-icon.success {
    background: rgba(81, 150, 206, 0.1);
    color: var(--color-success);
}

.floating-card-content {
    display: flex;
    flex-direction: column;
}

.floating-card-title {
    font-weight: 600;
    font-size: 0.875rem;
}

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

.floating-card-time {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-left: auto;
}

.floating-alert {
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.floating-resolved {
    top: 30%;
    right: -8%;
    animation-delay: -2s;
}

.floating-monitor {
    bottom: 15%;
    left: -10%;
    animation-delay: -4s;
}

.ping-animation {
    display: flex;
    align-items: center;
    gap: 4px;
}

.ping-animation span {
    width: 4px;
    height: 16px;
    background: var(--color-primary);
    border-radius: var(--radius-full);
    animation: pingBar 1s ease-in-out infinite;
}

.ping-animation span:nth-child(1) { animation-delay: 0s; }
.ping-animation span:nth-child(2) { animation-delay: 0.15s; }
.ping-animation span:nth-child(3) { animation-delay: 0.3s; }

@keyframes pingBar {
    0%, 100% { transform: scaleY(0.5); opacity: 0.5; }
    50% { transform: scaleY(1); opacity: 1; }
}

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

/* ============================================
   TRUST SECTION
   ============================================ */
.trust-section {
    padding: var(--space-3xl) 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    background: rgba(255, 255, 255, 0.01);
}

.trust-label {
    text-align: center;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-xl);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3xl);
    flex-wrap: wrap;
    opacity: 0.5;
}

.trust-logo {
    color: var(--color-text-muted);
    transition: var(--transition-base);
}

.trust-logo:hover {
    color: var(--color-text);
}

.trust-logo svg {
    height: 32px;
    width: auto;
}

/* ============================================
   PROBLEM/SOLUTION SECTION
   ============================================ */
.problem-section {
    padding: var(--space-4xl) 0;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.problem-card, .solution-card {
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    height: 100%;
}

.problem-card {
    background: rgba(245, 19, 11, 0.05);
    border: 1px solid rgba(245, 11, 11, 0.2);
}

.solution-card {
    background: rgba(81, 150, 206, 0.05);
    border: 1px solid rgba(81, 150, 206, 0.2);
}

.problem-icon, .solution-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
}

.problem-icon {
    background: rgba(239, 68, 68, 0.1);
    color: var(--color-error);
}

.solution-icon {
    background: rgba(81, 150, 206, 0.1);
    color: var(--color-success);
}

.problem-icon svg, .solution-icon svg {
    width: 24px;
    height: 24px;
}

.problem-card h3, .solution-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.problem-card p, .solution-card p {
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.arrow-connector {
    color: var(--color-text-muted);
}

.arrow-connector svg {
    width: 32px;
    height: 32px;
}

/* ============================================
   DOWNTIME COSTS SECTION
   ============================================ */
.downtime-costs-section {
    padding: var(--space-4xl) 0;
    background: linear-gradient(180deg, transparent 0%, rgba(239, 68, 68, 0.02) 50%, transparent 100%);
}

.costs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.cost-card {
    padding: var(--space-xl);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.cost-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-error) 0%, var(--color-warning) 100%);
    opacity: 0.6;
}

.cost-card:hover {
    transform: translateY(-4px);
    border-color: rgba(239, 68, 68, 0.3);
}

.cost-icon {
    width: 48px;
    height: 48px;
    background: rgba(238, 216, 22, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    color: var(--color-error);
}

.cost-icon svg {
    width: 24px;
    height: 24px;
}

.cost-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--color-text);
}

.cost-card p {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.cost-card p strong {
    color: var(--color-text);
    font-weight: 600;
}

.costs-cta {
    text-align: center;
    padding: var(--space-xl);
    background: rgba(81, 150, 206, 0.05);
    border: 1px solid rgba(81, 150, 206, 0.2);
    border-radius: var(--radius-xl);
}

.costs-cta p {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    margin: 0;
}

.costs-cta p strong {
    color: var(--color-primary-light);
}

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

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

/* ============================================
   SECTION COMMON STYLES
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: rgba(81, 150, 206, 0.1);
    border: 1px solid rgba(81, 150, 206, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-primary-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-lg);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-md);
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    padding: var(--space-4xl) 0;
    background: linear-gradient(180deg, transparent 0%, rgba(81, 150, 206, 0.03) 50%, transparent 100%);
}

.features-tabs {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-3xl);
    flex-wrap: wrap;
}

.feature-tab {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    color: var(--color-text-secondary);
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-base);
}

.feature-tab svg {
    width: 20px;
    height: 20px;
}

.feature-tab:hover {
    border-color: var(--color-text-muted);
    color: var(--color-text);
}

.feature-tab.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: #000;
}

.feature-content {
    display: none;
    animation: fadeIn 0.4s ease-out;
}

.feature-content.active {
    display: block;
}

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

.feature-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.feature-info h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.feature-info > p {
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.feature-list {
    list-style: none;
    margin-bottom: var(--space-xl);
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-sm) 0;
}

.feature-list li svg {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-list li strong {
    color: var(--color-text);
}

/* Feature Highlight Box */
.feature-highlight {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: rgba(81, 150, 206, 0.05);
    border: 1px solid rgba(81, 150, 206, 0.2);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-xl);
}

.highlight-icon {
    width: 40px;
    height: 40px;
    background: rgba(81, 150, 206, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-primary);
}

.highlight-icon svg {
    width: 20px;
    height: 20px;
}

.highlight-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.highlight-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-text);
}

.highlight-text {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* Feature Visuals */
.feature-visual {
    position: relative;
}

/* Status Page Mockup */
.status-page-mockup {
    position: relative;
}

.mockup-browser {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.browser-bar {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--color-border);
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.browser-dots span:nth-child(1) { background: #ef4444; }
.browser-dots span:nth-child(2) { background: #eab308; }
.browser-dots span:nth-child(3) { background: #3d916f; }

.browser-url {
    flex: 1;
    text-align: center;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    font-family: var(--font-mono);
}

.browser-content {
    padding: var(--space-lg);
}

.status-page-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.sp-logo {
    width: 36px;
    height: 36px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #000;
}

.status-page-header h4 {
    font-size: 1rem;
    font-weight: 600;
}

.status-overall {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-lg);
}

.status-overall svg {
    width: 18px;
    height: 18px;
}

.status-overall.operational {
    background: rgba(81, 150, 206, 0.1);
    color: var(--color-info);
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.service-row {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-sm);
    font-size: 0.875rem;
}

.service-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.service-indicator.operational { background: var(--color-success); }
.service-indicator.degraded { background: var(--color-warning); }

.service-row span:nth-child(2) {
    flex: 1;
}

.service-status {
    font-size: 0.75rem;
    color: var(--color-success);
}

.service-status.degraded {
    color: var(--color-warning);
}

.incident-preview {
    background: rgba(245, 158, 11, 0.05);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: var(--radius-md);
    padding: var(--space-md);
}

.incident-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-sm);
    background: rgba(245, 158, 11, 0.2);
    border-radius: var(--radius-sm);
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--color-warning);
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
}

.incident-preview h5 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.incident-preview p {
    font-size: 0.75rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-sm);
}

.incident-time {
    font-size: 0.6875rem;
    color: var(--color-text-muted);
}

.notification-mockup {
    position: absolute;
    bottom: -20px;
    right: -30px;
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 280px;
    animation: floatCard 4s ease-in-out infinite;
}

.notif-icon {
    width: 36px;
    height: 36px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--color-info);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notif-icon svg {
    width: 18px;
    height: 18px;
}

.notif-content strong {
    display: block;
    font-size: 0.75rem;
    margin-bottom: 2px;
}

.notif-content p {
    font-size: 0.6875rem;
    color: var(--color-text-muted);
    margin: 0;
}

/* Monitoring Mockup */
.monitoring-mockup {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.world-map {
    position: relative;
    padding: var(--space-xl);
    min-height: 240px;
}

.map-svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.1;
}

.map-path {
    fill: none;
    stroke: var(--color-text-muted);
    stroke-width: 1;
}

.monitor-point {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.point-pulse {
    position: absolute;
    width: 24px;
    height: 24px;
    background: var(--color-primary);
    border-radius: 50%;
    opacity: 0;
    animation: pointPulse 2s ease-out infinite;
}

.point-dot {
    width: 12px;
    height: 12px;
    background: var(--color-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-primary-glow);
    position: relative;
    z-index: 1;
}

.point-label {
    margin-top: var(--space-sm);
    font-size: 0.6875rem;
    text-align: center;
    color: var(--color-text-secondary);
    white-space: nowrap;
    background: var(--color-bg-card);
    padding: 2px 6px;
    border-radius: var(--radius-sm);
}

@keyframes pointPulse {
    0% { transform: scale(0.5); opacity: 0.8; }
    100% { transform: scale(2); opacity: 0; }
}

.response-chart {
    padding: var(--space-lg);
    border-top: 1px solid var(--color-border);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
    font-size: 0.8125rem;
}

.chart-avg {
    color: var(--color-text-muted);
    font-family: var(--font-mono);
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 80px;
}

.chart-bar {
    flex: 1;
    background: var(--color-primary);
    border-radius: 2px 2px 0 0;
    opacity: 0.7;
    transition: var(--transition-base);
}

.chart-bar:hover {
    opacity: 1;
}

.chart-bar.spike {
    background: var(--color-warning);
}

/* ================================================
   LIVE DASHBOARD SIM - Uptime Monitoring Animation
   ================================================ */

.dashboard-sim {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.dash-browser {
    overflow: hidden;
}

.browser-bar {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-sm) var(--space-md);
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--color-border);
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.browser-dots span:nth-child(1) { background: #ef4444; }
.browser-dots span:nth-child(2) { background: #eab308; }
.browser-dots span:nth-child(3) { background: #3d916f; }

.browser-url {
    flex: 1;
    text-align: center;
    font-size: 0.6875rem;
    color: var(--color-text-muted);
    font-family: var(--font-mono);
    background: rgba(0, 0, 0, 0.2);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
}

.dash-content {
    display: flex;
    min-height: 320px;
}

.dash-sidebar {
    width: 48px;
    background: rgba(0, 0, 0, 0.2);
    border-right: 1px solid var(--color-border);
    padding: var(--space-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.sidebar-logo {
    width: 32px;
    height: 32px;
    background: var(--color-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    color: white;
    margin-bottom: var(--space-sm);
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.nav-item {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    color: var(--color-text-muted);
    transition: var(--transition-base);
}

.nav-item.active {
    background: rgba(81, 150, 206, 0.2);
    color: var(--color-primary);
}

.nav-item svg {
    width: 16px;
    height: 16px;
}

.dash-main {
    flex: 1;
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

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

.header-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text);
}

.header-badge {
    font-size: 0.625rem;
    padding: 3px 8px;
    border-radius: 10px;
    font-weight: 500;
}

.header-badge.operational {
    background: rgba(34, 197, 94, 0.15);
    color: var(--color-success);
}

/* Resource list */
.resource-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-md);
    padding: 2px;
}

.resource-row {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: var(--color-bg-card);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    animation: rowCheck 8s ease-in-out infinite;
    animation-delay: var(--delay);
}

@keyframes rowCheck {
    0%, 10% { background: var(--color-bg-card); }
    12%, 20% { background: rgba(81, 150, 206, 0.1); }
    22%, 100% { background: var(--color-bg-card); }
}

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

.resource-status.success {
    background: var(--color-success);
    box-shadow: 0 0 6px rgba(34, 197, 94, 0.5);
}

.resource-status.checking {
    background: var(--color-primary);
    animation: checkingPulse 1s ease-in-out infinite;
}

@keyframes checkingPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.resource-name {
    flex: 1;
    font-family: var(--font-mono);
    color: var(--color-text);
}

.resource-type {
    color: var(--color-text-muted);
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.resource-time {
    font-family: var(--font-mono);
    color: var(--color-success);
    min-width: 40px;
    text-align: right;
}

/* Response graph */
.response-graph-container {
    background: rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-md);
    padding: var(--space-sm) var(--space-md);
}

.graph-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.6875rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-sm);
}

.graph-period {
    font-family: var(--font-mono);
    font-size: 0.625rem;
}

.graph-area {
    position: relative;
    height: 60px;
    overflow: hidden;
}

.response-graph {
    width: 100%;
    height: 100%;
}

.graph-fill {
    fill: url(#graphGradient);
}

.graph-line {
    fill: none;
    stroke: var(--color-primary);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: drawGraph 3s ease-out forwards;
}

@keyframes drawGraph {
    to { stroke-dashoffset: 0; }
}

.graph-cursor {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-primary);
    box-shadow: 0 0 8px var(--color-primary-glow);
    animation: cursorSweep 6s linear infinite;
    opacity: 0.8;
}


@keyframes cursorSweep {
    0% { left: 0; }
    100% { left: 100%; }
}

/* Uptime display */
.uptime-row {
    display: flex;
    gap: var(--space-lg);
    padding-top: var(--space-sm);
    border-top: 1px solid var(--color-border);
}

.uptime-metric {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.metric-label {
    font-size: 0.625rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.metric-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text);
    display: flex;
    align-items: baseline;
}

.metric-value.mono {
    font-family: var(--font-mono);
}

.metric-value .digit {
    display: inline-block;
}

.metric-value .digit.tick {
    animation: digitFlicker 8s ease-in-out infinite;
}

.metric-value .digit.tick:nth-child(4) {
    animation-delay: 0s;
}

.metric-value .digit.tick:nth-child(5) {
    animation-delay: 4s;
}

@keyframes digitFlicker {
    0%, 48%, 52%, 100% { opacity: 1; }
    49%, 51% { opacity: 0.3; }
}

.metric-value .dot,
.metric-value .percent {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--color-text-muted);
}

/* Responsive adjustments for dashboard sim */
@media (max-width: 768px) {
    .dash-content {
        min-height: 280px;
    }

    .dash-sidebar {
        width: 40px;
        padding: var(--space-xs);
    }

    .sidebar-logo {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }

    .nav-item {
        width: 28px;
        height: 28px;
    }

    .nav-item svg {
        width: 14px;
        height: 14px;
    }

    .dash-main {
        padding: var(--space-sm);
    }

    .resource-row {
        padding: var(--space-xs) var(--space-sm);
        font-size: 0.6875rem;
    }

    .graph-area {
        height: 50px;
    }

    .uptime-row {
        flex-direction: column;
        gap: var(--space-sm);
    }
}

/* Terminal Mockup */
.terminal-mockup {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--color-border);
}

.terminal-dots {
    display: flex;
    gap: 6px;
}

.terminal-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.terminal-dots span:nth-child(1) { background: #ef4444; }
.terminal-dots span:nth-child(2) { background: #eab308; }
.terminal-dots span:nth-child(3) { background: #3d916f; }

.terminal-header > span {
    flex: 1;
    text-align: center;
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.terminal-content {
    padding: var(--space-lg);
    font-family: var(--font-mono);
    font-size: 0.8125rem;
}

.terminal-line {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.terminal-prompt {
    color: var(--color-primary);
}

.terminal-command {
    color: var(--color-text);
}

.terminal-output {
    margin-bottom: var(--space-lg);
    padding-left: var(--space-lg);
}

.check-result {
    display: flex;
    gap: var(--space-xl);
    padding: var(--space-xs) 0;
}

.check-location {
    width: 80px;
    color: var(--color-text-muted);
}

.check-status {
    width: 80px;
}

.check-status.success {
    color: var(--color-success);
}

.check-status.error {
    color: var(--color-error);
}

.check-time {
    color: var(--color-text-muted);
}

.terminal-output.trace {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    color: var(--color-text-muted);
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-it-works-section {
    padding: var(--space-4xl) 0;
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 200px;
    max-width: 260px;
    padding: var(--space-xl);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
    transition: var(--transition-base);
}

.step-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-border-light);
}

.step-card.highlight {
    background: rgba(81, 150, 206, 0.05);
    border-color: rgba(81, 150, 206, 0.3);
}

.step-number {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.step-icon {
    width: 56px;
    height: 56px;
    background: rgba(81, 150, 206, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    color: var(--color-primary);
}

.step-icon svg {
    width: 28px;
    height: 28px;
}

.step-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.step-card p {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.step-connector {
    display: flex;
    align-items: center;
    color: var(--color-text-muted);
    padding-top: var(--space-3xl);
}

.step-connector svg {
    width: 60px;
    height: 20px;
}

/* ============================================
   USE CASES SECTION
   ============================================ */
.use-cases-section {
    padding: var(--space-4xl) 0;
    background: linear-gradient(180deg, transparent 0%, rgba(81, 150, 206, 0.02) 50%, transparent 100%);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.use-case-card {
    padding: var(--space-xl);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    transition: var(--transition-base);
    position: relative;
}

.use-case-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-border-light);
}

.use-case-card.featured {
    background: linear-gradient(135deg, rgba(81, 150, 206, 0.1) 0%, rgba(81, 150, 206, 0.02) 100%);
    border-color: rgba(81, 150, 206, 0.3);
}

.featured-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: var(--space-xs) var(--space-md);
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    font-size: 0.6875rem;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.use-case-icon {
    width: 48px;
    height: 48px;
    background: rgba(81, 150, 206, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    color: var(--color-primary);
}

.use-case-icon svg {
    width: 24px;
    height: 24px;
}

.use-case-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.use-case-subtitle {
    font-size: 0.875rem;
    color: var(--color-primary);
    font-style: italic;
    margin-bottom: var(--space-md);
}

.use-case-card > p:not(.use-case-subtitle) {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.use-case-features {
    list-style: none;
}

.use-case-features li {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    padding: var(--space-xs) 0;
    border-top: 1px solid var(--color-border);
}

.use-case-features li:first-child {
    border-top: none;
}

/* ============================================
   FREE TOOLS SECTION
   ============================================ */
.free-tools-section {
    padding: var(--space-4xl) 0;
}

.tools-demo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.tool-input-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
}

.tool-tabs {
    display: flex;
    gap: var(--space-xs);
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
}

.tool-tab {
    padding: var(--space-sm) var(--space-md);
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
}

.tool-tab:hover {
    border-color: var(--color-text-muted);
    color: var(--color-text);
}

.tool-tab.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #000;
}

.tool-input-group {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.tool-input {
    flex: 1;
    padding: var(--space-md) var(--space-lg);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    color: var(--color-text);
    font-size: 0.9375rem;
    font-family: var(--font-mono);
    outline: none;
    transition: var(--transition-fast);
}

.tool-input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px var(--color-primary-glow);
}

.tool-input::placeholder {
    color: var(--color-text-muted);
}

.tool-options {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.tool-checkbox {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    cursor: pointer;
}

.tool-checkbox input {
    width: 16px;
    height: 16px;
    accent-color: var(--color-primary);
}

.tool-results-preview {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-lg);
    font-weight: 500;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.result-card {
    padding: var(--space-md);
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    text-align: center;
}

.result-card.success {
    border-left: 3px solid var(--color-success);
}

.result-card.warning {
    border-left: 3px solid var(--color-warning);
}

.result-card.error {
    border-left: 3px solid var(--color-error);
}

.result-location {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-xs);
}

.result-status {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-success);
    margin-bottom: var(--space-xs);
}

.result-card.warning .result-status {
    color: var(--color-warning);
}

.result-card.error .result-status {
    color: var(--color-error);
}

.result-time {
    font-size: 0.8125rem;
    color: var(--color-text-secondary);
    font-family: var(--font-mono);
}

.tools-cta {
    text-align: center;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
    padding: var(--space-4xl) 0;
    background: linear-gradient(180deg, transparent 0%, rgba(81, 150, 206, 0.03) 50%, transparent 100%);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
}

.toggle-label {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
}

.save-badge {
    display: inline-block;
    padding: 2px 8px;
    background: rgba(81, 150, 206, 0.1);
    border-radius: var(--radius-full);
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-left: var(--space-xs);
}

.toggle-switch {
    position: relative;
    width: 48px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    transition: var(--transition-base);
}

.toggle-slider::before {
    content: '';
    position: absolute;
    height: 18px;
    width: 18px;
    left: 2px;
    bottom: 2px;
    background: var(--color-text-muted);
    border-radius: 50%;
    transition: var(--transition-base);
}

.toggle-switch input:checked + .toggle-slider {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(24px);
    background: #000;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    padding: var(--space-xl);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    position: relative;
    transition: var(--transition-base);
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-border-light);
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(81, 150, 206, 0.1) 0%, rgba(81, 150, 206, 0.02) 100%);
    border-color: rgba(81, 150, 206, 0.3);
    transform: scale(1.02);
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-4px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: var(--space-xs) var(--space-md);
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    font-size: 0.6875rem;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.pricing-header {
    margin-bottom: var(--space-lg);
}

.pricing-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.pricing-header p {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

.pricing-price {
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid var(--color-border);
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
}

.price-period {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
}

.pricing-features {
    list-style: none;
    margin-bottom: var(--space-xl);
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
}

.pricing-features li svg {
    width: 18px;
    height: 18px;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    padding: var(--space-4xl) 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.testimonial-card {
    padding: var(--space-xl);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    transition: var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-border-light);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: var(--space-lg);
    color: #fbbf24;
}

.testimonial-stars svg {
    width: 16px;
    height: 16px;
}

.testimonial-text {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.author-avatar {
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #000;
    font-size: 0.875rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    font-size: 0.9375rem;
}

.author-role {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: var(--space-4xl) 0;
}

.cta-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--space-3xl);
    align-items: center;
    padding: var(--space-3xl);
    background: linear-gradient(135deg, rgba(81, 150, 206, 0.15) 0%, rgba(81, 150, 206, 0.05) 100%);
    border: 1px solid rgba(81, 150, 206, 0.3);
    border-radius: var(--radius-2xl);
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.cta-content p {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-xl);
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

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

.cta-status-indicator {
    position: relative;
    width: 160px;
    height: 160px;
}

.status-ring {
    width: 100%;
    height: 100%;
    animation: rotate 20s linear infinite;
}

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

.status-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.status-percent {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
}

.status-label {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: var(--space-4xl) 0 var(--space-xl);
    border-top: 1px solid var(--color-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.footer-brand .logo {
    margin-bottom: var(--space-lg);
}

.footer-brand > p {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: var(--space-md);
}

.social-links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text-secondary);
    transition: var(--transition-fast);
}

.social-links a:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.social-links a svg {
    width: 18px;
    height: 18px;
}

.footer-links h4 {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: var(--transition-fast);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-xl);
    border-top: 1px solid var(--color-border);
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.uptime-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.8125rem;
    color: var(--color-text-secondary);
}

.pulse-dot.green {
    background: #3d916f;
}

.pulse-dot.green::before {
    background: #3d916f;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .feature-showcase {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .feature-visual {
        order: -1;
    }

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

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-buttons {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--space-lg);
    }

    .hero-stat-divider {
        display: none;
    }

    .problem-grid {
        grid-template-columns: 1fr;
    }

    .arrow-connector {
        transform: rotate(90deg);
        padding: var(--space-md) 0;
    }

    .steps-grid {
        flex-direction: column;
    }

    .step-connector {
        display: none;
    }

    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .tools-demo {
        grid-template-columns: 1fr;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }

    .floating-card {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
    }

    .tool-input-group {
        flex-direction: column;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .features-tabs {
        flex-direction: column;
    }

    .feature-tab {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   GLOBAL NETWORK MAP SECTION
   ============================================ */
.global-network-section {
    padding: var(--space-4xl) 0;
    overflow: hidden;
    position: relative;
}

/* Network Benefits */
.network-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-3xl);
}

.network-benefit {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    transition: var(--transition-base);
}

.network-benefit:hover {
    border-color: rgba(81, 150, 206, 0.3);
    transform: translateY(-2px);
}

.benefit-icon {
    width: 44px;
    height: 44px;
    background: rgba(81, 150, 206, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-primary);
}

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

.benefit-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--color-text);
}

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

@media (max-width: 1024px) {
    .network-benefits {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .network-benefit {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

.world-map-container {
    position: relative;
    width: calc(100% - var(--space-lg) * 2);
    max-width: 1280px;
    margin: 0 auto;
    aspect-ratio: 2 / 1;
    margin-bottom: var(--space-3xl);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

/* Dotted World Map */
#networkMap {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-xl);
    z-index: 1;
}

.dot-map-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-xl);
}

/* Tooltip styling */
.dot-map-tooltip {
    position: absolute;
    z-index: 10;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 12px 16px;
    box-shadow: var(--shadow-lg);
    pointer-events: none;
    min-width: 160px;
}

.dot-map-tooltip .tooltip-name {
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.dot-map-tooltip .tooltip-count {
    color: var(--color-primary-light);
    font-size: 11px;
    margin-bottom: 6px;
}

.dot-map-tooltip .tooltip-badges {
    display: flex;
    gap: 4px;
    margin-bottom: 8px;
}

.dot-map-tooltip .badge-ipv4 {
    display: inline-block;
    padding: 2px 6px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    background: var(--color-primary);
    color: #fff;
}

.dot-map-tooltip .badge-ipv6 {
    display: inline-block;
    padding: 2px 6px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    background: #9b59b6;
    color: #fff;
}

.dot-map-tooltip .badge-none {
    display: inline-block;
    padding: 2px 6px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    background: var(--color-bg-elevated);
    color: var(--color-text-muted);
}

.dot-map-tooltip .tooltip-status {
    display: inline-block;
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    background: var(--color-success);
    color: var(--color-bg);
    font-weight: 500;
}

.dot-map-tooltip .badge-flair {
    display: inline-block;
    margin-left: 6px;
    padding: 1px 6px;
    border-radius: var(--radius-sm);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    vertical-align: middle;
}

.dot-map-tooltip .badge-flair-new {
    background: rgba(81, 150, 206, 0.3);
    color: var(--color-primary-light);
}

.dot-map-tooltip .badge-flair-soon {
    background: rgba(81, 150, 206, 0.15);
    color: var(--color-text-muted);
}


/* Server Markers */
.server-markers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.server-marker {
    position: absolute;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 10;
}

.marker-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: var(--color-primary-glow);
    border-radius: 50%;
    animation: markerPulse 2s ease-out infinite;
}

@keyframes markerPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.marker-dot {
    position: relative;
    width: 12px;
    height: 12px;
    background: var(--color-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-primary), 0 0 20px var(--color-primary-glow);
    z-index: 2;
    transition: var(--transition-base);
}

.server-marker:hover .marker-dot {
    transform: scale(1.5);
    box-shadow: 0 0 15px var(--color-primary), 0 0 30px var(--color-primary-glow);
}

.server-marker.featured .marker-dot {
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #8BBDE5 100%);
}

.marker-label {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: var(--space-sm) var(--space-md);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    pointer-events: none;
    margin-bottom: var(--space-sm);
    box-shadow: var(--shadow-lg);
    z-index: 100;
}

.marker-label::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--color-bg-card);
}

.server-marker:hover .marker-label {
    opacity: 1;
    visibility: visible;
}

.marker-city {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-text);
}

.marker-status {
    display: block;
    font-size: 0.6875rem;
    color: var(--color-primary);
}

.marker-count {
    display: block;
    font-size: 0.6875rem;
    color: var(--color-primary-light);
}

/* Network Stats Overlay */
.network-stats {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--space-2xl);
    padding: var(--space-lg) var(--space-2xl);
    background: rgba(15, 20, 25, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    z-index: 20;
}

.network-stat {
    text-align: center;
}

.network-stat .stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-primary);
    font-family: var(--font-mono);
    line-height: 1;
}

.network-stat .stat-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: var(--space-xs);
}

/* Locations Grid */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
    padding: var(--space-2xl);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
}

.location-region h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--color-border);
}

.location-region ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.location-region li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) 0;
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

.location-dot {
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
    flex-shrink: 0;
}

.server-badge {
    font-size: 0.6875rem;
    padding: 2px 6px;
    background: rgba(81, 150, 206, 0.1);
    border-radius: var(--radius-sm);
    color: var(--color-primary);
    margin-left: auto;
}

.server-badge-new {
    background: rgba(81, 150, 206, 0.25);
    color: var(--color-primary-light);
    font-weight: 600;
    text-transform: uppercase;
}

.server-badge-soon {
    background: rgba(81, 150, 206, 0.15);
    color: var(--color-text-muted);
    font-weight: 600;
    text-transform: uppercase;
}

.location-dot-soon {
    background: var(--color-text-muted) !important;
}

/* Responsive Map */
@media (max-width: 1024px) {
    .network-stats {
        gap: var(--space-lg);
        padding: var(--space-md) var(--space-lg);
    }

    .network-stat .stat-value {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .world-map-container {
        margin-bottom: var(--space-xl);
    }

    .server-marker {
        display: none;
    }

    .server-marker:nth-child(-n+6) {
        display: block;
    }

    .network-stats {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        width: 100%;
        justify-content: center;
        margin-top: var(--space-lg);
        border-radius: var(--radius-lg);
    }

    .locations-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
}

@media (max-width: 480px) {
    .network-stats {
        flex-wrap: wrap;
        gap: var(--space-md);
    }

    .network-stat {
        flex: 1 1 40%;
    }

    .network-stat .stat-value {
        font-size: 1.25rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus States */
:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Selection */
::selection {
    background: var(--color-primary);
    color: #000;
}
