/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* VIMMS Colors */
    --primary-orange: #ff7600;
    --light-orange: #ff9933;
    --dark-orange: #cc5500;
    --technical-blue: #1e3a8a;
    --success-green: #28a745;
    
    /* Dark Mode Colors */
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-tertiary: #1a1a1a;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #a3a3a3;
    --text-muted: #737373;
    
    /* Border Colors */
    --border-primary: rgba(255, 255, 255, 0.1);
    --border-secondary: rgba(255, 255, 255, 0.05);
    
    /* Gradients */
    --gradient-orange: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    --gradient-text: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    --gradient-hero: linear-gradient(135deg, rgba(255, 118, 0, 0.1), rgba(255, 153, 51, 0.05));
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-orange: 0 8px 32px rgba(255, 118, 0, 0.3);
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    
    /* Container */
    --container-max-width: 1200px;
    --container-padding: 2rem;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

body {
    font-family: var(--font-family);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--space-sm);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition-normal);
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-orange);
    color: white;
    box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 118, 0, 0.4);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-primary);
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-secondary);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.nav-logo-link {
    display: inline-block;
    transition: all var(--transition-normal);
    text-decoration: none;
}

.nav-logo-link:hover {
    transform: scale(1.05);
}

.nav-logo {
    height: 2rem;
    width: auto;
    filter: brightness(0) invert(1);
    transition: all var(--transition-normal);
}

.nav-logo-link:hover .nav-logo {
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255, 118, 0, 0.5));
}

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

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

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-orange);
    transition: width var(--transition-normal);
}

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

/* Products dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0.75rem;
    min-width: 200px;
    background: rgba(20, 20, 20, 0.97);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-secondary);
    border-radius: 0.5rem;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
    transform: translateX(-50%) translateY(4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

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

.nav-dropdown-item {
    display: block;
    padding: 0.6rem 1.2rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.15s, background 0.15s;
    white-space: nowrap;
}

.nav-dropdown-item:hover {
    color: var(--primary-orange);
    background: rgba(255, 118, 0, 0.08);
}

.nav-cta {
    background: var(--gradient-orange);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-normal);
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-orange);
}

.nav-dust-link {
    color: #93c5fd;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.35rem 0.85rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 6px;
    transition: all var(--transition-normal);
    white-space: nowrap;
}

.nav-dust-link:hover {
    color: #ffffff;
    border-color: rgba(59, 130, 246, 0.6);
    background: rgba(59, 130, 246, 0.12);
}

/* Language Toggle */
.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lang-toggle {
    display: flex;
    gap: 0.25rem;
    background: var(--bg-card);
    padding: 0.25rem;
    border-radius: 0.375rem;
    border: 1px solid var(--border-primary);
}

.lang-toggle button,
.lang-toggle a {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 0.375rem 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.25rem;
    transition: all var(--transition-fast);
    font-family: var(--font-family);
    text-decoration: none;
}

.lang-toggle button:hover,
.lang-toggle a:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.lang-toggle button.active,
.lang-toggle a.active {
    background: var(--primary-orange);
    color: white;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all var(--transition-normal);
}

/* Hero Section */
.hero {
    --mouse-x: 50%;
    --mouse-y: 50%;
    --mouse-opacity: 0;
    --grid-x: 0px;
    --grid-y: 0px;
    --grid-scale: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
    background: var(--bg-primary);
}

.hero-shader-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.7;
    mix-blend-mode: screen;
    pointer-events: auto;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 118, 0, 0.05) 0%, rgba(255, 153, 51, 0.02) 15%, transparent 30%);
    opacity: var(--mouse-opacity, 0);
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 2;
}

.hero:hover::after {
    opacity: 1;
}

.hero-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 10;
    pointer-events: none; /* Allow mouse events to pass through to canvas */
}

/* Re-enable pointer events for interactive elements */
.hero-container .btn,
.hero-container a,
.hero-container button {
    pointer-events: auto;
}



/* Hero section specific styles (not products section) */
.hero .hero-content {
    max-width: 600px;
}

.hero-title {
    margin-bottom: var(--space-md);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    line-height: 1.6;
}

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

.hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xl);
}

.hero .hero-image {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.25rem;
    padding: 0.75rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.hero .floating-image {
    width: 100%;
    max-width: 400px;
    border-radius: 0.75rem;
    display: block;
}

.hero-card-info {
    padding: 1rem 0.25rem 0.5rem;
    text-align: center;
}

.hero-card-tag {
    display: inline-block;
    background: var(--primary-orange);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    margin-bottom: 0.5rem;
}

.hero-card-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.hero-card-subtitle {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.03em;
}

.hero-card-cta {
    display: inline-block;
    margin-top: 0.75rem;
    padding: 0.45rem 1.2rem;
    background: transparent;
    color: var(--primary-orange);
    font-size: 0.85rem;
    font-weight: 600;
    border: 1.5px solid var(--primary-orange);
    border-radius: 100px;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.hero-card-cta::after {
    content: ' →';
}

.hero-card-cta.secondary {
    color: var(--text-muted);
    border-color: transparent;
}

.hero-card-cta.secondary:hover {
    color: var(--text-secondary);
}

.hero-card-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.hero-card-cta:hover {
    background: rgba(255, 140, 50, 0.1);
    color: var(--light-orange);
    border-color: var(--light-orange);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    width: 100%;
    max-width: 300px;
}

.tech-card {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 0.75rem;
    padding: var(--space-md);
    text-align: center;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
}

.tech-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary-orange);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.tech-icon {
    width: 2rem;
    height: 2rem;
    color: var(--primary-orange);
    margin-bottom: var(--space-xs);
}

/* Section Styles */
section {
    padding: var(--space-3xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    margin-bottom: var(--space-md);
}

.solutions .section-header h2 {
    font-size: 1.6rem;
    font-weight: 600;
}

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

/* What We Do Section */
.what-we-do {
    background: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 1rem;
    padding: var(--space-xl);
    text-align: left;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
}

.service-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary-orange);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
}

.service-icon .icon {
    width: 2rem;
    height: 2rem;
    color: white;
}

.service-card h3 {
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Why VIMMS Section */
.why-vimms {
    background: var(--bg-secondary);
}

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

.benefits {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.benefit {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.benefit-icon {
    width: 3rem;
    height: 3rem;
    color: var(--primary-orange);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.benefit h3 {
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
}

.benefit p {
    color: var(--text-secondary);
}

.why-image img {
    width: 70%;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}

/* Solutions Section */
.solutions {
    background: var(--bg-secondary);
}

/* Value Propositions Section */
.value-props {
    background: var(--bg-secondary);
    padding: var(--space-3xl) 0;
    border-bottom: 1px solid var(--border-secondary);
}

.value-props-title {
    text-align: center;
    margin-bottom: var(--space-xl);
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.value-props-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    max-width: 900px;
    margin: 0 auto;
}

.value-prop {
    text-align: center;
    padding: var(--space-lg);
}

.value-prop-icon {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: var(--space-sm);
}

.value-prop p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .value-props-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
}

/* Main ALARMS Platform Card */
.platform-showcase {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 60px;
    border: 1px solid rgba(255, 118, 0, 0.3);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 107, 0, 0.15);
}

.platform-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), #ff8c00, var(--primary-orange));
    animation: shimmer 3s infinite;
}

.solutions .platform-content {
    display: grid;
    grid-template-columns: 35fr 65fr;
    gap: 40px;
    align-items: center;
}

.platform-info {
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.platform-showcase .logo-container {
    margin: 0;
}

.alarms-logo {
    height: 70px;
    width: auto;
}

.rks-logo-text {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.rks-showcase .platform-content {
    grid-template-columns: 1fr;
}

.platform-showcase .platform-subtitle {
    font-size: 1rem;
    color: #ccc;
    font-weight: 400;
    margin: 0;
    line-height: 1.6;
}

.features-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.features-list li {
    padding: 0;
    padding-left: 15px;
    position: relative;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    border-left: 3px solid var(--primary-orange);
    border-bottom: none;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li::before {
    display: none;
}

.platform-info .cta-button {
    display: inline-block;
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.6rem 1.5rem;
    border: 2px solid var(--primary-orange);
    border-radius: 50px;
    background: transparent;
    transition: all var(--transition-fast);
    text-align: center;
    align-self: flex-start;
    box-shadow: none;
}

.platform-info .cta-button:hover {
    background: var(--primary-orange);
    color: #fff;
    transform: none;
    box-shadow: none;
}

.dashboard-preview {
    background: transparent;
    border-radius: 12px;
    padding: 0;
    border: none;
    box-shadow: none;
    overflow: hidden;
}

.dashboard-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

/* Secondary Services Section */
.secondary-services {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

details.service-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 0;
    border: 1px solid var(--border-primary);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

details.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #4a90e2, #67b5ff);
}

details.service-card > summary {
    list-style: none;
    cursor: pointer;
    padding: 35px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    user-select: none;
}

details.service-card > summary::-webkit-details-marker {
    display: none;
}

.service-toggle-icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
}

.service-toggle-icon::before,
.service-toggle-icon::after {
    content: '';
    position: absolute;
    background: var(--text-secondary);
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.service-toggle-icon::before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.service-toggle-icon::after {
    width: 2px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

details.service-card[open] .service-toggle-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.service-card-content {
    padding: 0 50px 40px;
}

details.service-card:hover {
    border-color: var(--border-secondary);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 0;
}

.service-icon {
    width: 45px;
    height: 45px;
    color: #4a90e2;
    flex-shrink: 0;
}

.service-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
}

.service-card > p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.service-details {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.detail-item {
    background: var(--bg-secondary);
    padding: 25px 20px;
    border-radius: 12px;
    border: 1px solid var(--border-secondary);
    transition: all 0.3s ease;
}

.detail-item:hover {
    border-color: #4a90e2;
    transform: translateY(-2px);
}

.detail-item h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: #4a90e2;
    font-weight: 600;
}

.detail-item p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Service Tags */
.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-secondary);
}

.tag {
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid var(--border-primary);
    transition: all 0.3s ease;
}

.tag:hover {
    background: var(--bg-card-hover);
    color: var(--text-primary);
    border-color: #4a90e2;
}

/* Hide toggle button on desktop */
.service-toggle {
    display: none;
}

/* Products Section */
.products {
    background: var(--bg-primary);
}

/* Hero Product Card */
.hero-product {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 1px solid rgba(255, 118, 0, 0.3);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 107, 0, 0.15);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-product .hero-content {
    width: 100%;
}

/* .hero-product .hero-image {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), rgba(255, 140, 0, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 107, 0, 0.3);
    position: relative;
    overflow: hidden;
} */

.hero-product-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.hero-product::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), #ff8c00, var(--primary-orange));
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.status-badge {
    display: inline-block;
    background: var(--primary-orange);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-product h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--text-primary);
}

.hero-product .product-type {
    color: var(--primary-orange);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.hero-product .description {
    font-size: 1rem;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 30px;
}

.features-grid {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.feature-item {
    background: transparent;
    padding: 0;
    border-radius: 0;
    border: none;
    border-left: 3px solid var(--primary-orange);
    padding-left: 15px;
}

.feature-item strong {
    color: var(--text-primary);
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
}

.feature-item span {
    color: #999;
    font-size: 0.85rem;
    line-height: 1.5;
}

.cta-section {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

/* Product sales info */
.product-sales-info {
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid var(--border-primary);
}

.sales-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.sales-list {
    margin: 0;
    padding: 0;
}

.sales-item {
    padding: 0.6rem 0.75rem;
    border-radius: 0.5rem;
}

.sales-item dt {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.sales-item dd {
    margin: 0;
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.45;
}

.sales-highlight {
    background: rgba(255, 118, 0, 0.06);
    border-left: 2px solid var(--primary-orange);
}

.sales-highlight dt {
    color: var(--primary-orange);
}

.sales-tag {
    display: inline-block;
    background: var(--primary-orange);
    color: #fff;
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.12rem 0.45rem;
    border-radius: 1rem;
    vertical-align: middle;
    margin-right: 0.35rem;
    position: relative;
    top: -1px;
}

/* CTA text links */
.cta-section {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: var(--space-lg);
}

.cta-link {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color var(--transition-fast);
    padding: 0.6rem 1.5rem;
    border: 2px solid var(--primary-orange);
    border-radius: 50px;
    display: inline-block;
    white-space: nowrap;
}

.cta-link:hover {
    background: var(--primary-orange);
    color: #fff;
}

.cta-link.secondary {
    border-color: var(--border-primary);
    color: var(--text-muted);
    font-weight: 500;
}

.cta-link.secondary:hover {
    border-color: var(--text-muted);
    color: var(--text-secondary);
    background: transparent;
}

.cta-button {
    background: var(--primary-orange);
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid var(--primary-orange);
}

.cta-button:hover {
    background: #ff8c00;
    border-color: #ff8c00;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid #666;
    color: #fff;
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #999;
    box-shadow: none;
}

/* Secondary Products Grid */
.secondary-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.product-card {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
}

.product-card:hover {
    border-color: #555;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.product-card .status-badge {
    background: #666;
    font-size: 0.85rem;
    padding: 8px 20px;
}

.product-card h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.product-card .product-type {
    color: var(--primary-orange);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.product-card .description {
    font-size: 1rem;
    line-height: 1.7;
    color: #999;
    margin-bottom: 30px;
}

.product-card .feature-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product-card .feature-list .feature-item {
    background: rgba(255, 255, 255, 0.02);
    padding: 15px;
}

.product-card .feature-item strong {
    color: #ccc;
}

/* Platform Section */
.platform {
    background: var(--bg-secondary);
}

.platform-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-3xl);
}

.platform-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.pipeline-stage {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 1rem;
    padding: var(--space-lg);
    text-align: center;
    min-width: 150px;
    transition: all var(--transition-normal);
}

.pipeline-stage:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary-orange);
    transform: translateY(-4px);
}

.stage-icon {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: var(--space-sm);
}

.pipeline-stage h4 {
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
    font-size: 1rem;
}

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

.pipeline-arrow {
    color: var(--primary-orange);
}

.pipeline-arrow i {
    width: 1.5rem;
    height: 1.5rem;
}

.platform-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
}

.feature {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 1rem;
    padding: var(--space-xl);
    transition: all var(--transition-normal);
}

.feature:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary-orange);
    transform: translateY(-4px);
}

.feature h4 {
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.feature p {
    color: var(--text-secondary);
}

/* Case Studies Section */
.case-studies {
    background: var(--bg-primary);
}

.studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.study-card {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 1rem;
    padding: var(--space-xl);
    transition: all var(--transition-normal);
}

.study-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary-orange);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

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

.study-icon {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--primary-orange);
}

.study-card h3 {
    margin: 0;
    color: var(--text-primary);
}

.study-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.studies-note {
    text-align: center;
    color: var(--text-muted);
    font-style: italic;
}

/* Technology Highlights Section */
.tech-highlights {
    background: var(--bg-secondary);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
}

.tech-category {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 1rem;
    padding: var(--space-xl);
    transition: all var(--transition-normal);
}

.tech-category:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary-orange);
    transform: translateY(-4px);
}

.tech-category h3 {
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--primary-orange);
}

.tech-category ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.tech-category li {
    color: var(--text-secondary);
    position: relative;
    padding-left: var(--space-md);
    line-height: 1.5;
}

.tech-category li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
}

/* About Section */
.about {
    background: var(--bg-primary);
}

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

.about-text h3 {
    font-size: 2rem;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.about-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-xl);
}

.company-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.company-details .detail {
    font-size: 1rem;
    color: var(--text-secondary);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--border-secondary);
}

.company-details .detail:last-child {
    border-bottom: none;
}

.company-details .detail strong {
    color: var(--primary-orange);
    display: inline-block;
    min-width: 140px;
}

.about-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-primary);
}

.mission {
    margin-bottom: var(--space-3xl);
}

.mission h2 {
    margin-bottom: var(--space-md);
}

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

.how-we-work h3 {
    margin-bottom: var(--space-xl);
    text-align: center;
}

.work-principles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    text-align: left;
}

.principle {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.principle-icon {
    width: 3rem;
    height: 3rem;
    color: var(--primary-orange);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.principle h4 {
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
}

.principle p {
    color: var(--text-secondary);
}

/* ============================
   Team Section
   ============================ */
.team {
    background: var(--bg-secondary);
}

/* Leadership - Side by side layout */
.leadership {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 80px;
}

.leader {
    background: var(--bg-tertiary);
    border-left: 3px solid var(--primary-orange);
    padding: 36px;
    display: flex;
    gap: 28px;
    align-items: flex-start;
    transition: all var(--transition-normal);
}

.leader:hover {
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.leader-photo {
    flex-shrink: 0;
}

.leader-photo img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 2px solid var(--primary-orange);
    object-fit: cover;
    background: var(--bg-card);
}

.leader-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.leader-info h3 {
    font-size: 1.4rem;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.leader-role {
    color: var(--primary-orange);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 14px;
    font-weight: 600;
}

.badge {
    display: inline-block;
    background: var(--bg-primary);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 18px;
    font-weight: 600;
}

.badge.business { 
    color: #60a5fa; 
}

.badge.technical { 
    color: #34d399; 
}

.leader .desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.leader .contact {
    margin-top: auto;
}

.leader .contact a {
    color: var(--primary-orange);
    text-decoration: none;
    font-size: 0.88rem;
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
}

.leader .contact a:hover {
    text-decoration: underline;
}

.leader .contact .phone {
    color: var(--text-muted);
    font-size: 0.82rem;
}

/* Team grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.member {
    background: var(--bg-primary);
    border: 1px solid var(--border-primary);
    padding: 28px 24px;
    border-radius: 0.5rem;
    transition: all var(--transition-normal);
    text-align: center;
}

.member-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
    border: 2px solid var(--border-primary);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-photo img.hover-img {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.member-photo {
    position: relative;
}

.member-photo:hover img.hover-img {
    opacity: 1;
}

.member-photo:hover img.has-hover {
    opacity: 0;
}

.member:hover .member-photo {
    border-color: var(--primary-orange);
}

.member:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary-orange);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.member h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    font-weight: 500;
    color: var(--text-primary);
}

.member .member-role {
    color: var(--primary-orange);
    font-size: 0.875rem;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.member .contact a {
    color: #888;
    text-decoration: none;
    font-size: 0.82rem;
    display: block;
    margin-bottom: 4px;
}

.member .contact a:hover {
    color: var(--primary-orange);
}

.member .contact .phone {
    color: #666;
    font-size: 0.78rem;
}

.team-roles {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 1rem;
    padding: var(--space-xl);
    margin-top: var(--space-lg);
}

.team-roles h4 {
    margin-bottom: var(--space-md);
    color: var(--text-primary);
    text-align: center;
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
}

.role {
    color: var(--text-secondary);
    font-size: 0.925rem;
    line-height: 1.5;
}

.role strong {
    color: var(--text-primary);
}

/* Careers Section */
.careers {
    background: var(--bg-primary);
    text-align: center;
}

.careers-content {
    max-width: 700px;
    margin: 0 auto;
}

.careers-content h2 {
    margin-bottom: var(--space-md);
}

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

.career-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
    text-align: left;
}

.highlight {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.highlight-icon {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--primary-orange);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.highlight h4 {
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
}

.highlight p {
    color: var(--text-secondary);
}


.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.contact-info h2 {
    margin-bottom: var(--space-xl);
}

.company-info {
    margin-bottom: var(--space-xl);
}

.company-info h3 {
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.company-info address {
    color: var(--text-secondary);
    font-style: normal;
    line-height: 1.6;
    margin-bottom: var(--space-sm);
}

.company-registration {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-sm);
}

.company-info a {
    color: var(--primary-orange);
    text-decoration: none;
}

.company-info a:hover {
    text-decoration: underline;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.contact-icon {
    width: 2rem;
    height: 2rem;
    color: var(--primary-orange);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-item h4 {
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
}

.contact-item a {
    color: var(--primary-orange);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Form Styles */
.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 1rem;
    padding: var(--space-xl);
}

/* Prominent Phone Number */
.contact-phone-prominent {
    text-align: center;
    padding: var(--space-xl) 0;
    margin-bottom: var(--space-xl);
    border-bottom: 1px solid var(--border-secondary);
}

.phone-icon-large {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: var(--space-sm);
}

.phone-number-large {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    margin-bottom: var(--space-xs);
    letter-spacing: 0.02em;
}

.phone-number-large:hover {
    color: var(--primary-orange);
}

.phone-name {
    display: block;
    color: var(--text-muted);
    font-size: 0.95rem;
}

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

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

.form-group label {
    color: var(--text-primary);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 0.5rem;
    padding: 0.75rem;
    color: var(--text-primary);
    transition: all var(--transition-normal);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 118, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Mailto Contact Styles */
.mailto-contact {
    text-align: center;
}

.mailto-contact h3 {
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.mailto-contact > p {
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    line-height: 1.6;
}

.mailto-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.mailto-buttons .btn {
    justify-content: center;
    text-align: center;
}

.contact-note {
    padding-top: var(--space-md);
    border-top: 1px solid var(--border-secondary);
}

.contact-note p {
    color: var(--text-muted);
    font-size: 0.925rem;
    font-style: italic;
}

@media (min-width: 768px) {
    .mailto-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

/* Footer */
.footer {
    background: var(--bg-tertiary);
    border-top: 1px solid var(--border-secondary);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--space-3xl);
    padding: var(--space-3xl) 0;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    height: 2rem;
    width: auto;
    margin-bottom: var(--space-md);
    filter: brightness(0) saturate(100%) invert(50%) sepia(60%) saturate(800%) hue-rotate(0deg) brightness(102%) contrast(101%);
}

.footer-brand p {
    color: var(--text-secondary);
    line-height: 1.6;
}

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

.footer-column h4 {
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.footer-column a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    border-top: 1px solid var(--border-secondary);
    padding: var(--space-lg) 0;
    text-align: center;
}

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

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

/* Responsive Design */
@media (max-width: 1200px) {
    .service-details {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .solutions .platform-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .platform-showcase {
        padding: 40px;
    }

    .alarms-logo {
        height: 50px;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 1.5rem;
        --space-3xl: 4rem;
        --space-2xl: 3rem;
        --space-xl: 2rem;
    }
    
    /* More breathing room for sections */
    section {
        padding: 4rem 0;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .section-header h2 {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
        margin-bottom: 1rem;
    }
    
    .section-header p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .nav-menu {
        position: fixed;
        top: 4rem;
        left: -100%;
        width: 100%;
        height: calc(100vh - 4rem);
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: var(--space-3xl);
        transition: left var(--transition-normal);
        border-top: 1px solid var(--border-secondary);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    /* Dropdown becomes inline on mobile */
    .nav-dropdown {
        position: static;
    }
    
    .nav-dropdown-menu {
        position: static;
        transform: none;
        margin-top: 0.5rem;
        min-width: unset;
        background: transparent;
        border: none;
        border-left: 2px solid var(--border-secondary);
        border-radius: 0;
        padding: 0 0 0 1rem;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        box-shadow: none;
        backdrop-filter: none;
    }
    
    .nav-dropdown-item {
        padding: 0.4rem 0;
    }

    .nav-right {
        flex-direction: row;
        gap: 1rem;
        align-items: center;
    }
    
    .lang-toggle {
        /* Keep language toggle compact on mobile */
        padding: 0.125rem;
        gap: 0.125rem;
    }
    
    .lang-toggle button {
        padding: 0.25rem 0.5rem;
        font-size: 0.75rem;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero {
        min-height: auto;
        padding: 8rem 0 3rem;
    }
    
    .hero-shader-canvas {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
        opacity: 0.5;
        mix-blend-mode: screen;
        pointer-events: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        text-align: center;
        position: relative;
        z-index: 10;
        display: flex;
        flex-direction: column-reverse; /* Image appears first (top) */
    }
    
    .hero .hero-content {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
        margin-bottom: 1.5rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 2rem;
        line-height: 1.7;
        padding: 0 0.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    /* Show hero image at top on mobile */
    .hero-visual {
        gap: var(--space-md);
        max-width: 75%;
        margin: 0 auto;
        margin-bottom: var(--space-lg);
    }
    
    .hero .floating-image {
        max-width: 100%;
        border-radius: 0.75rem;
    }

    .hero .hero-image {
        padding: 0.5rem;
    }

    .hero-card-info {
        padding: 0.5rem 0 0.25rem;
    }

    .hero-card-tag {
        font-size: 0.6rem;
        padding: 0.2rem 0.5rem;
    }

    .hero-card-title {
        font-size: 0.85rem;
    }

    .hero-card-subtitle {
        font-size: 0.65rem;
    }

    .hero-card-cta {
        font-size: 0.75rem;
    }
    
    .why-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .why-image {
        display: flex;
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .why-image img {
        width: 85%;
        max-width: 400px;
    }
    
    .benefits {
        gap: 2rem;
    }
    
    .benefit {
        gap: 1rem;
    }
    
    .platform-diagram {
        flex-direction: column;
        align-items: center;
        gap: var(--space-md);
    }
    
    .pipeline-arrow {
        transform: rotate(90deg);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-info {
        gap: 2rem;
    }

    .contact-item {
        gap: 1rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 1rem;
        padding: 14px 16px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* About Section Mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-text {
        order: 2;
    }

    .about-text p {
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 1.5rem;
    }

    .about-image {
        order: 1;
    }

    /* Team Section Mobile */
    .leadership {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .leader-card {
        padding: 2rem 1.5rem;
    }

    .leader-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }

    /* Solutions Section Mobile */
    .solutions .platform-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .platform-showcase {
        padding: 2rem 1.5rem;
        margin-bottom: 3rem;
    }

    .platform-info {
        gap: 1.5rem;
    }

    .platform-showcase h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .alarms-logo {
        height: 50px;
    }

    .platform-showcase .platform-subtitle {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }

    .features-list {
        gap: 1rem;
    }

    .features-list li {
        font-size: 0.95rem;
        padding: 12px 0 12px 28px;
        line-height: 1.6;
    }

    .features-list li::before {
        font-size: 1rem;
    }

    .platform-info .cta-button {
        font-size: 1rem;
        padding: 14px 30px;
    }

    details.service-card > summary {
        padding: 1.5rem;
    }

    .service-card-content {
        padding: 0 1.5rem 1.5rem;
    }

    .service-card h3 {
        font-size: 1.4rem;
        line-height: 1.4;
    }

    .service-card > p,
    .service-card-content > p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }

    .service-details {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .detail-item {
        padding: 20px 15px;
    }

    .detail-item h4 {
        font-size: 1rem;
    }

    .detail-item p {
        font-size: 0.85rem;
    }

    /* Products Section Mobile */
    .hero-product {
        padding: 2.5rem 1.5rem;
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 3rem;
    }

    .hero-product .hero-content {
        gap: 1.5rem;
    }

    .hero-product h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 0.75rem;
    }

    .hero-product .description {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }

    .hero-product .hero-image {
        height: 350px;
    }

    .secondary-products {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-card {
        padding: 2rem 1.5rem;
    }

    .product-card h3 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .product-card .description {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }

    .feature-list {
        gap: 1rem;
    }

    .cta-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .cta-button {
        text-align: center;
        padding: 14px 28px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 7rem 0 2rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .studies-grid {
        grid-template-columns: 1fr;
    }

    /* Products Section Small Mobile */
    .secondary-products {
        grid-template-columns: 1fr;
    }

    .product-card {
        padding: 30px;
    }

    .product-card h3 {
        font-size: 1.5rem;
    }
    
    /* Team Section Mobile */
    .leader {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeIn 0.6s ease-out;
}

/* Scroll behavior */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 4rem;
}

/* Focus states for accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary-orange);
    outline-offset: 2px;
}

/* Remove focus outline for navigation links */
.nav-link:focus,
.nav-cta:focus,
a:focus {
    outline: none;
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Print styles */
@media print {
    * {
        background: white !important;
        color: black !important;
    }
}

/* Shader Test Buttons */
.shader-test-buttons {
    margin-top: var(--space-xl);
    padding: var(--space-md);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 118, 0, 0.2);
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.shader-button-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    align-items: flex-start;
}

.shader-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: var(--space-xs);
}

.shader-buttons-row {
    display: flex;
    gap: var(--space-xs);
    flex-wrap: wrap;
}

.shader-btn {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 118, 0, 0.3);
    border-radius: 0.375rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-normal);
    backdrop-filter: blur(5px);
    white-space: nowrap;
}

.shader-btn:hover {
    background: rgba(255, 118, 0, 0.1);
    border-color: var(--primary-orange);
    color: var(--text-primary);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255, 118, 0, 0.2);
}

.shader-btn.active {
    background: var(--gradient-orange);
    border-color: var(--primary-orange);
    color: white;
    box-shadow: 0 2px 8px rgba(255, 118, 0, 0.3);
}

.shader-btn.active:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 118, 0, 0.4);
}

/* Responsive styling for shader buttons */
@media (max-width: 768px) {
    .shader-test-buttons {
        margin-top: var(--space-lg);
        padding: var(--space-sm);
    }
    
    .shader-button-group {
        align-items: center;
        text-align: center;
    }
    
    .shader-buttons-row {
        justify-content: center;
    }
    
    .shader-btn {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .shader-buttons-row {
        flex-direction: column;
        width: 100%;
    }
    
    .shader-btn {
        width: 100%;
        text-align: center;
    }
}

/* ══════════════════════════════════════════════════════════════════════════
   Blast Events Live Feed — Compact Vertical Stack
   ══════════════════════════════════════════════════════════════════════════ */

.blast-events-wrapper {
    position: absolute;
    bottom: 1.25rem;
    right: var(--container-padding);
    z-index: 20;
    width: 420px;
    pointer-events: auto;
    transform: translateX(calc(100% + 2rem));
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
}

.blast-events-wrapper.blast-visible {
    transform: translateX(0);
    opacity: 1;
}

.blast-events-panel {
    width: 100%;
}

.blast-events-chrome {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}

/* Title bar */
.blast-events-titlebar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
    min-width: 0;
}

.blast-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--success-green);
    box-shadow: 0 0 6px var(--success-green);
    animation: blast-pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes blast-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 6px var(--success-green); }
    50% { opacity: 0.35; box-shadow: 0 0 2px var(--success-green); }
}

.blast-events-title {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
    flex-shrink: 0;
}

.blast-events-project {
    font-size: 0.68rem;
    color: var(--text-muted);
    margin-left: auto;
    font-family: var(--font-mono);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

/* Feed container — vertical stack */
.blast-event-feed {
    padding: 0.35rem 0;
}

/* ── Row — horizontal, inline-feeling ─────────────────────────────────── */

.blast-row {
    display: grid;
    grid-template-columns: 6px 1fr auto auto auto auto;
    gap: 0.5rem;
    align-items: center;
    padding: 0.35rem 0.75rem;
    transition: background 0.2s ease, opacity 0.3s ease;
    position: relative;
}

.blast-row:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.blast-row:hover {
    background: rgba(255, 255, 255, 0.03);
}

/* Latest row emphasis */
.blast-row-latest {
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.02);
}

.blast-row-past {
    /* opacity set inline via JS for progressive fade */
}

.blast-row-past:hover {
    opacity: 0.8;
}

/* Severity pip */
.blast-sev-pip {
    width: 4px;
    height: 100%;
    min-height: 16px;
    border-radius: 2px;
    display: block;
}

.blast-sev-pip.blast-severity-low { background: var(--success-green); }
.blast-sev-pip.blast-severity-med { background: var(--primary-orange); }
.blast-sev-pip.blast-severity-high { background: #ff4757; }

.blast-row-latest .blast-sev-pip.blast-severity-low { box-shadow: 0 0 8px var(--success-green); }
.blast-row-latest .blast-sev-pip.blast-severity-med { box-shadow: 0 0 8px var(--primary-orange); }
.blast-row-latest .blast-sev-pip.blast-severity-high { box-shadow: 0 0 8px #ff4757; }

/* Sparkline */
.blast-row-spark {
    min-width: 0;
}

.blast-row-spark .blast-sparkline {
    display: block;
    width: 100%;
    opacity: 0.8;
}

.blast-row-latest .blast-row-spark .blast-sparkline {
    opacity: 1;
}

/* PPV value */
.blast-row-values {
    display: flex;
    align-items: baseline;
    gap: 0.15rem;
    min-width: 52px;
    justify-content: flex-end;
}

.blast-row-ppv {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: var(--font-mono);
    letter-spacing: -0.02em;
}

.blast-row-ppv-lg {
    font-size: 1.1rem;
    font-weight: 800;
}

.blast-row-unit {
    font-size: 0.68rem;
    color: var(--text-secondary);
    font-family: var(--font-mono);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.blast-row-latest .blast-row-unit {
    font-size: 0.72rem;
    color: var(--text-primary);
    opacity: 0.7;
}

/* Per-axis values */
.blast-row-axes {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    color: var(--text-muted);
    min-width: 62px;
    line-height: 1.1;
}

.blast-row-axes b {
    font-weight: 600;
    margin-right: 0.15rem;
}

.blast-row-axes .axis-v { color: rgba(51, 154, 240, 0.7); }
.blast-row-axes .axis-l { color: rgba(81, 207, 102, 0.7); }
.blast-row-axes .axis-t { color: rgba(255, 107, 107, 0.7); }

.blast-row-latest .blast-row-axes .axis-v { color: #339af0; }
.blast-row-latest .blast-row-axes .axis-l { color: #51cf66; }
.blast-row-latest .blast-row-axes .axis-t { color: #ff6b6b; }

/* Badge */
.blast-row-badge {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.12rem 0.4rem;
    border-radius: 3px;
    white-space: nowrap;
}

.blast-row-badge.blast-severity-low { background: rgba(40, 167, 69, 0.12); color: #51cf66; }
.blast-row-badge.blast-severity-med { background: rgba(255, 118, 0, 0.12); color: var(--light-orange); }
.blast-row-badge.blast-severity-high { background: rgba(255, 71, 87, 0.12); color: #ff6b6b; }

/* Time */
.blast-row-time {
    min-width: 42px;
    text-align: right;
}

.blast-event-time {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

/* Fresh event (<30s) — glowing orange timestamp */
.blast-time-fresh {
    color: var(--primary-orange);
    font-weight: 700;
    text-shadow: 0 0 8px rgba(255, 118, 0, 0.5);
    animation: blast-fresh-pulse 2s ease-in-out infinite;
}

.blast-row-fresh {
    border-left: 2px solid var(--primary-orange);
    box-shadow: inset 2px 0 8px -4px rgba(255, 118, 0, 0.3);
}

@keyframes blast-fresh-pulse {
    0%, 100% { text-shadow: 0 0 8px rgba(255, 118, 0, 0.5); }
    50% { text-shadow: 0 0 14px rgba(255, 118, 0, 0.8); }
}

/* ── New event enter animation — punchy impact ────────────────────────── */

.blast-event-enter {
    opacity: 0;
    transform: scale(1.04) translateY(-4px);
}

.blast-event-visible {
    opacity: 1;
    transform: scale(1) translateY(0);
    transition:
        opacity 0.18s ease-out,
        transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* PPV number — slams in oversized then snaps to size */
.blast-event-enter .blast-row-ppv {
    animation: blast-numSlam 0.35s 0.05s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes blast-numSlam {
    0% { transform: scale(1.6); opacity: 0; }
    60% { transform: scale(0.95); opacity: 1; }
    100% { transform: scale(1); }
}

/* Badge pops in */
.blast-event-enter .blast-row-badge {
    animation: blast-badgePop 0.25s 0.1s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes blast-badgePop {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* Sparkline — fast snap draw */
.blast-event-enter .blast-sparkline polyline {
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: blast-drawSnap 0.4s 0.08s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes blast-drawSnap {
    to { stroke-dashoffset: 0; }
}

/* Impact flash — bright, fast */
.blast-row-latest.blast-event-enter.blast-event-visible::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    animation: blast-impact 0.4s ease-out forwards;
}

.blast-row-latest.blast-severity-low.blast-event-enter.blast-event-visible::after {
    background: rgba(40, 167, 69, 0.18);
}
.blast-row-latest.blast-severity-med.blast-event-enter.blast-event-visible::after {
    background: rgba(255, 118, 0, 0.18);
}
.blast-row-latest.blast-severity-high.blast-event-enter.blast-event-visible::after {
    background: rgba(255, 71, 87, 0.22);
}

@keyframes blast-impact {
    0% { opacity: 1; transform: scaleX(0.3); transform-origin: left; }
    30% { opacity: 0.9; transform: scaleX(1); }
    100% { opacity: 0; transform: scaleX(1); }
}

/* Severity pip throb */
.blast-event-enter .blast-sev-pip {
    animation: blast-pipThrob 0.5s ease-out both;
}

@keyframes blast-pipThrob {
    0% { transform: scaleY(0.3); opacity: 0; }
    40% { transform: scaleY(1.4); opacity: 1; }
    100% { transform: scaleY(1); }
}

/* High severity — quick lateral jolt */
.blast-row-latest.blast-severity-high.blast-event-enter.blast-event-visible {
    animation: blast-jolt 0.3s 0.05s ease-out;
}

@keyframes blast-jolt {
    0% { transform: translateX(0); }
    15% { transform: translateX(-4px); }
    30% { transform: translateX(3px); }
    50% { transform: translateX(-2px); }
    70% { transform: translateX(1px); }
    100% { transform: translateX(0); }
}

/* ── CTA bar ──────────────────────────────────────────────────────────── */

.blast-events-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.25rem 0.5rem;
    padding: 0.5rem 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 118, 0, 0.03);
    text-align: center;
}

.blast-cta-text {
    font-size: 0.7rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.blast-cta-phone {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-orange);
    text-decoration: none;
    font-family: var(--font-mono);
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: color var(--transition-fast);
}

.blast-cta-phone:hover {
    color: var(--light-orange);
    text-decoration: underline;
}

/* ── Responsive ───────────────────────────────────────────────────────── */

@media (max-width: 768px) {
    .blast-events-wrapper {
        width: 320px;
        bottom: 0.75rem;
        right: 0.75rem;
    }

    .blast-row-axes {
        display: none;
    }

    .blast-row {
        grid-template-columns: 6px 1fr auto auto auto;
    }
}

@media (max-width: 480px) {
    .hero .hero-content {
        display: none;
    }

    .hero {
        flex-direction: column;
        align-items: stretch;
    }

    .blast-events-wrapper {
        position: relative;
        width: 100%;
        right: auto;
        bottom: auto;
        margin-top: 1rem;
        padding: 0 0.75rem;
        transform: none;
        opacity: 1;
        display: none;
    }

    .blast-events-wrapper.blast-visible {
        display: block;
    }

    /* Show 3 events on mobile */
    .blast-row:nth-child(n+4) {
        display: none;
    }

    /* During blast playback, make panel semi-transparent so waveform shows through */
    .blast-events-wrapper.blast-playing .blast-events-chrome {
        opacity: 0.4;
        transition: opacity 0.3s ease;
    }
    .blast-events-wrapper .blast-events-chrome {
        transition: opacity 0.6s ease;
    }

    .blast-row-badge {
        display: none;
    }

    .blast-row {
        grid-template-columns: 6px 1fr auto auto;
    }
}
