@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&amp;family=Space+Grotesk:wght@400;500;600;700&amp;display=swap');

:root {
    --bg-dark: #0B0B0B; /* Deep Black */
    --bg-card: rgba(245, 242, 237, 0.03); /* Translucent frosted off-white card */
    --bg-glass: rgba(11, 11, 11, 0.85); /* Frosted black for header */
    --border-glow: rgba(139, 13, 26, 0.3); /* Crimson red glow */
    --border-subtle: rgba(245, 242, 237, 0.08); /* Soft off-white border */
    
    /* Uploaded Color Combination Palette */
    --accent-solar: #8B0D1A; /* Crimson Red */
    --accent-solar-rgb: 139, 13, 26;
    
    --accent-cyan: #F5F2ED;  /* Off White */
    --accent-cyan-rgb: 245, 242, 237;
    
    --accent-cream: #F5F2ED; /* Off White */
    --accent-beige: #120203; /* Deep Crimson Black for form fields */
    
    --text-primary: #F5F2ED;   /* Off White */
    --text-secondary: rgba(245, 242, 237, 0.7); /* Muted Off White */
    --text-muted: rgba(245, 242, 237, 0.45);     /* Subdued Off White */
    
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Outfit', sans-serif;
    
    --cursor-size-outer: 36px;
    --cursor-size-inner: 8px;
    
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Background Cyber Grid Overlay */
.cyber-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: 
        linear-gradient(rgba(var(--accent-solar-rgb), 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--accent-solar-rgb), 0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 1;
}

/* Ambient Radial Glows */
.ambient-glow {
    position: fixed;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    filter: blur(200px);
    opacity: 0.28;
    pointer-events: none;
    z-index: 2;
    mix-blend-mode: screen; /* Better blending for dark background */
}

.glow-solar {
    top: -300px;
    right: -100px;
    background: radial-gradient(circle, rgba(var(--accent-solar-rgb), 0.5) 0%, transparent 70%);
    animation: floatGlow 15s infinite alternate ease-in-out;
}

.glow-cyan {
    bottom: -300px;
    left: -100px;
    background: radial-gradient(circle, rgba(var(--accent-cyan-rgb), 0.5) 0%, transparent 70%);
    animation: floatGlow 20s infinite alternate-reverse ease-in-out;
}

@keyframes floatGlow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(80px, 50px) scale(1.15); }
}

/* Custom Interactive Cursor */
.custom-cursor {
    width: var(--cursor-size-outer);
    height: var(--cursor-size-outer);
    border: 1.5px solid rgba(var(--accent-solar-rgb), 0.6); /* Crimson red ring */
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.2s, height 0.2s, border-color 0.2s, background-color 0.2s;
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    mix-blend-mode: normal;
}

.custom-cursor-dot {
    width: var(--cursor-size-inner);
    height: var(--cursor-size-inner);
    background-color: var(--accent-cream); /* Off white inner dot */
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.1s;
}

/* Cursor Hover states */
body.hovering-interactive .custom-cursor {
    width: 56px;
    height: 56px;
    border-color: var(--accent-solar);
    background-color: rgba(var(--accent-solar-rgb), 0.08);
}

body.hovering-interactive .custom-cursor-dot {
    background-color: var(--accent-cyan);
    transform: translate(-50%, -50%) scale(1.5);
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    cursor: none; 
}

button, input, textarea, select {
    cursor: none; 
}

/* Sticky Navigation Header Component */
.global-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.header-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 10px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(30, 30, 30, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    position: relative;
}

.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.brand-logo:hover {
    opacity: 0.9;
}

.brand-logo img {
    height: 44px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 5px rgba(var(--accent-solar-rgb), 0.22));
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
    position: relative;
    padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
    color: #ffffff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-solar);
    transition: width 0.2s ease;
}

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

.cta-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #000000;
    color: #ffffff;
    border-radius: 30px;
    padding: 10px 20px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
    background-color: #111111;
    transform: scale(1.02);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}

.cta-button .arrow-icon {
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    stroke: currentColor;
}

.cta-button:hover .arrow-icon {
    transform: translateX(4px);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
}

/* Premium 3D Layered Hero Section */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 24px 80px 24px;
    z-index: 10;
    overflow: hidden;
}

#canvas3d-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 35% 50%, transparent 20%, var(--bg-dark) 90%);
    z-index: -1;
    pointer-events: none;
}

.hero-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 5;
}

.hero-content {
    text-align: left;
}

/* 3D Visual Stack */
.hero-visual-3d {
    position: relative;
    height: 550px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
    transform-style: preserve-3d;
}

/* Interactive Floating Layers */
.visual-layer {
    position: absolute;
    transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
    transform-style: preserve-3d;
}

.layer-bg-graphic {
    width: 110%;
    height: auto;
    max-width: 580px;
    z-index: 1;
    transform: translateZ(-50px);
    filter: drop-shadow(0 30px 50px rgba(var(--accent-solar-rgb), 0.15));
    mix-blend-mode: screen;
}

.layer-bg-graphic img {
    border-radius: 24px;
}

.layer-fg-panel {
    z-index: 3;
    transform: translateZ(50px) translateX(40px) translateY(80px);
    background: rgba(30, 30, 30, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 24px;
    border-radius: 16px;
    width: 280px;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(var(--accent-solar-rgb), 0.1),
        inset 0 0 20px rgba(255, 255, 255, 0.05);
}

.layer-fg-panel h4 {
    color: var(--accent-solar);
    font-size: 1.15rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.layer-fg-panel p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.layer-node-label {
    z-index: 4;
    background: rgba(30, 30, 30, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-cyan);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.node-top-left {
    transform: translateZ(80px) translateX(-180px) translateY(-140px);
}

.node-bottom-right {
    transform: translateZ(30px) translateX(190px) translateY(180px);
    border-color: rgba(var(--accent-solar-rgb), 0.4);
    color: var(--accent-solar);
}

.tech-tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 30px;
    background: rgba(var(--accent-cyan-rgb), 0.08);
    border: 1px solid rgba(var(--accent-cyan-rgb), 0.25);
    color: var(--accent-cyan);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 24px;
    box-shadow: 0 0 15px rgba(var(--accent-cyan-rgb), 0.05);
    animation: neonPulse 2s infinite alternate;
}

@keyframes neonPulse {
    0% { border-color: rgba(var(--accent-cyan-rgb), 0.2); box-shadow: 0 0 5px rgba(var(--accent-cyan-rgb), 0.02); }
    100% { border-color: rgba(var(--accent-cyan-rgb), 0.6); box-shadow: 0 0 15px rgba(var(--accent-cyan-rgb), 0.1); }
}

.hero-title {
    font-size: 4.25rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

.hero-title span {
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-solar));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 40px 0;
    font-weight: 500;
}

.hero-ctas {
    display: flex;
    gap: 20px;
}

.btn-primary {
    padding: 16px 36px;
    border-radius: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-solar));
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(var(--accent-solar-rgb), 0.25);
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(var(--accent-solar-rgb), 0.4);
}

.btn-secondary {
    padding: 16px 36px;
    border-radius: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    background: rgba(245, 242, 237, 0.03);
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    background: rgba(245, 242, 237, 0.08);
    border-color: rgba(var(--accent-cyan-rgb), 0.4);
    transform: translateY(-3px);
}

/* Sections General */
section {
    padding: 120px 24px;
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px auto;
}

.section-tag {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-solar);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: inline-block;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* 3D Tilted Card Wrappers */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    perspective: 1000px;
}

/* 3D Interactive Card */
.tech-card {
    background: rgba(30, 30, 30, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 45px 40px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s, box-shadow 0.4s;
    transform-style: preserve-3d;
    box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.4);
}

/* Spotlight Reflection Track */
.tech-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle 200px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(var(--accent-solar-rgb), 0.08) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 2;
}

.tech-card:hover::after {
    opacity: 1;
}

.tech-card:hover {
    border-color: rgba(var(--accent-solar-rgb), 0.35);
    box-shadow: 
        0 25px 50px -15px rgba(0, 0, 0, 0.5),
        0 0 35px rgba(var(--accent-solar-rgb), 0.15);
}

/* Floating content within card */
.tech-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.015);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: var(--transition-smooth);
    transform: translateZ(20px);
}

.tech-card-icon img {
    height: 38px;
    width: auto;
    transition: var(--transition-smooth);
}

.tech-card:hover .tech-card-icon {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-solar));
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(var(--accent-solar-rgb), 0.25);
    transform: translateZ(35px) scale(1.1) rotate(3deg);
}

.tech-card:hover .tech-card-icon img {
    filter: brightness(0) invert(1); /* White icon on hover */
}

.tech-card-title {
    font-size: 1.45rem;
    margin-bottom: 16px;
    color: var(--text-primary);
    transform: translateZ(25px);
}

.tech-card-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 500;
    transform: translateZ(15px);
}

/* Feature Showcase (3D Parallax split layout) */
.split-section {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 120px;
}

.split-section.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1.1;
}

.split-visual {
    flex: 0.9;
    position: relative;
    height: auto;
    min-height: 400px;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(30, 30, 30, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s, box-shadow 0.4s;
}

.split-visual img {
    width: 80%;
    height: auto;
    transition: transform 0.2s ease-out;
    filter: drop-shadow(0 20px 30px rgba(var(--accent-solar-rgb), 0.15));
    border-radius: 24px;
}

/* Workflow Steps (3D horizontal pipeline) */
.workflow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.workflow-step {
    background: rgba(30, 30, 30, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 36px 30px;
    text-align: center;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition-smooth);
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.workflow-step:hover {
    border-color: rgba(var(--accent-cyan-rgb), 0.35);
    transform: translateY(-5px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 25px rgba(var(--accent-cyan-rgb), 0.08);
}

.workflow-icon-wrap {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.workflow-icon-wrap img {
    height: 100%;
    width: auto;
    filter: drop-shadow(0 8px 12px rgba(var(--accent-cyan-rgb), 0.15));
    transition: var(--transition-smooth);
}

.workflow-step:hover .workflow-icon-wrap img {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 12px 18px rgba(var(--accent-solar-rgb), 0.25));
}

.workflow-num {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-solar);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.workflow-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.workflow-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Stats Counter Section */
.stats-banner {
    background: linear-gradient(90deg, rgba(var(--accent-cyan-rgb), 0.04), rgba(var(--accent-solar-rgb), 0.04));
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: 60px 24px;
    position: relative;
    z-index: 10;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-solar));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Glassmorphic Floating Footer Section */
footer {
    background: rgba(30, 30, 30, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    padding: 60px 40px 40px 40px;
    max-width: 1200px;
    margin: 80px auto 20px auto;
    position: relative;
    z-index: 10;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.footer-grid {
    max-width: 1100px;
    margin: 0 auto 40px auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1.8fr;
    gap: 40px;
}

.footer-logo img {
    height: 44px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 5px rgba(var(--accent-solar-rgb), 0.22));
    margin-bottom: 20px;
}

.footer-info-desc {
    color: rgba(255, 255, 255, 0.7);
    margin: 20px 0 24px 0;
    max-width: 320px;
    font-size: 0.95rem;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-smooth);
    font-size: 1.1rem;
    text-decoration: none;
}

.social-icon:hover {
    color: #ffffff;
    background: var(--accent-solar);
    border-color: transparent;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 20px rgba(var(--accent-solar-rgb), 0.35);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ffffff;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--accent-solar);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 500;
}

.footer-contact-item i {
    color: var(--accent-solar);
    margin-top: 4px;
}

.footer-newsletter-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-weight: 500;
    line-height: 1.5;
}

.newsletter-input-group {
    display: flex;
    background: rgba(18, 2, 3, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 4px;
    transition: var(--transition-smooth);
}

.newsletter-input-group:focus-within {
    border-color: var(--accent-solar);
    box-shadow: 0 0 15px rgba(var(--accent-solar-rgb), 0.15);
}

.newsletter-input {
    background: transparent;
    border: none;
    outline: none;
    padding: 10px 16px;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    flex: 1;
    width: 100%;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-btn {
    background: var(--accent-solar);
    color: #ffffff;
    border: none;
    border-radius: 25px;
    padding: 8px 18px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.newsletter-btn:hover {
    background: #ffffff;
    color: #000000;
    transform: scale(1.03);
}

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
}

/* Futuristic Contact Form */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-info-card {
    background: rgba(30, 30, 30, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    gap: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.contact-method {
    display: flex;
    gap: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(var(--accent-cyan-rgb), 0.08);
    border: 1px solid rgba(var(--accent-cyan-rgb), 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    font-size: 1.25rem;
}

.contact-method-details h4 {
    margin-bottom: 6px;
    font-size: 1.1rem;
}

.contact-method-details p, .contact-method-details a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

.contact-form-wrapper {
    background: rgba(30, 30, 30, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 50px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    margin-bottom: 24px;
    position: relative;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    background: var(--accent-beige);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-solar);
    background: rgba(26, 15, 15, 0.95);
    box-shadow: 0 0 15px rgba(var(--accent-solar-rgb), 0.15);
}

textarea.form-control {
    resize: none;
    height: 150px;
}

/* Timeline Layout for About */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent-cyan), var(--accent-solar));
    transform: translateX(-50%);
}

.timeline-item {
    margin-bottom: 60px;
    position: relative;
    width: 50%;
    padding: 0 40px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-dot {
    width: 16px;
    height: 16px;
    background: var(--bg-dark);
    border: 3px solid var(--accent-cyan);
    border-radius: 50%;
    position: absolute;
    top: 8px;
    z-index: 10;
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -8px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -8px;
    border-color: var(--accent-solar);
}

.timeline-content {
    background: rgba(30, 30, 30, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px;
    border-radius: 12px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.timeline-date {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-cyan);
    margin-bottom: 8px;
}

.timeline-item:nth-child(even) .timeline-date {
    color: var(--accent-solar);
}

.timeline-title {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.timeline-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero {
        display: block !important;
        min-height: auto !important;
        padding-top: 140px !important;
    }
    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 65px;
    }
    .hero-content {
        text-align: center;
    }
    .hero-desc {
        margin: 0 auto 40px auto;
    }
    .hero-ctas {
        justify-content: center;
    }
    .hero-visual-3d {
        height: auto !important;
        min-height: 240px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        perspective: none !important;
        transform-style: flat !important;
        margin-top: 30px !important;
    }
    .layer-node-label {
        display: none !important; /* Hide overflow nodes on mobile/tablets */
    }
    .layer-fg-panel {
        transform: translateZ(0) !important;
        position: relative !important;
        margin: 0 auto !important;
        left: 0 !important;
        top: 0 !important;
        width: 100% !important;
        max-width: 320px !important;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4) !important;
    }
    .split-section, .split-section.reverse {
        flex-direction: column;
        gap: 40px;
    }
    .split-visual {
        width: 100%;
        height: 350px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .layer-bg-graphic {
        position: relative !important;
        width: 100% !important;
        max-width: 100% !important;
        transform: none !important;
        margin: 0 auto !important;
        display: flex !important;
        justify-content: center !important;
        left: 0 !important;
        top: 0 !important;
    }
    .layer-bg-graphic img {
        width: 100% !important;
        max-width: 320px !important;
        height: auto !important;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .nav-menu.active-mobile {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(11, 11, 11, 0.98);
        padding: 30px;
        border-radius: 32px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        margin-top: 10px;
        gap: 20px;
        z-index: 1001;
    }
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .menu-toggle {
        display: block;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-ctas {
        flex-direction: column;
        gap: 12px;
    }
    .btn-primary, .btn-secondary {
        width: 100%;
    }
    .timeline::before {
        left: 20px;
    }
    .timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 0;
        text-align: left !important;
    }
    .timeline-item:nth-child(even) {
        left: 0;
    }
    .timeline-dot {
        left: 12px !important;
    }

    /* Contact Details Mobile Adjustments */
    .contact-info-card {
        padding: 24px !important;
        gap: 24px !important;
    }
    .contact-form-wrapper {
        padding: 24px !important;
    }
    .contact-method {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 12px !important;
    }
    .contact-icon {
        width: 44px !important;
        height: 44px !important;
        font-size: 1.1rem !important;
    }
    .contact-method-details p, .contact-method-details a {
        word-break: break-word !important;
        overflow-wrap: break-word !important;
    }
}

/* Ambient Floating Animations for Hero Layers */
@keyframes float-slow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(1deg); }
}

@keyframes float-medium {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(-1.5deg); }
}

@keyframes float-fast {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.float-slow {
    animation: float-slow 7s ease-in-out infinite;
}

.float-medium {
    animation: float-medium 5s ease-in-out infinite;
}

.float-fast {
    animation: float-fast 4s ease-in-out infinite;
}

/* Scroll Reveal Styles */
.scroll-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.scroll-reveal.active-reveal {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays */
.scroll-reveal.stagger-1 { transition-delay: 0.1s; }
.scroll-reveal.stagger-2 { transition-delay: 0.2s; }
.scroll-reveal.stagger-3 { transition-delay: 0.3s; }
.scroll-reveal.stagger-4 { transition-delay: 0.4s; }

/* Animated Mesh Background (Terracotta, Cream, Muted Orange) */
.mesh-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    background-color: #0B0B0B;
    background-image: 
        radial-gradient(at 10% 20%, rgba(200, 92, 69, 0.25) 0px, transparent 60%),
        radial-gradient(at 90% 10%, rgba(217, 126, 82, 0.25) 0px, transparent 55%),
        radial-gradient(at 50% 80%, rgba(253, 251, 247, 0.12) 0px, transparent 60%),
        radial-gradient(at 80% 90%, rgba(200, 92, 69, 0.2) 0px, transparent 50%),
        radial-gradient(at 20% 80%, rgba(217, 126, 82, 0.2) 0px, transparent 55%);
    filter: blur(60px);
    transform-origin: center;
    animation: meshShift 25s infinite alternate ease-in-out;
}

@keyframes meshShift {
    0% {
        background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
        transform: scale(1);
    }
    50% {
        background-position: 10% 20%, -15% 10%, 15% -10%, -10% -20%, 5% 15%;
        transform: scale(1.1) rotate(2deg);
    }
    100% {
        background-position: -5% -10%, 20% -20%, -10% 15%, 15% 5%, -15% -5%;
        transform: scale(1) rotate(-2deg);
    }
}

/* Digital Noise / Film Grain Overlay */
.film-grain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.03;
    background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
}

/* Page entrance and exit transitions */
.page-wrapper {
    opacity: 1;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.page-wrapper.fade-entrance {
    opacity: 0;
}
.page-wrapper.fade-exit {
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Arrow Hover Motion inside Primary Buttons */
.btn-primary i {
    transition: transform 0.2s ease;
}
.btn-primary:hover i {
    transform: translateX(4px);
}

/* SVG Line Graph Path Drawing Animations */
.graph-path {
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    transition: stroke-dashoffset 2s cubic-bezier(0.16, 1, 0.3, 1), d 0.5s ease-in-out;
}
.graph-path.animate-path {
    stroke-dashoffset: 0;
}

.graph-area {
    opacity: 0;
    transition: opacity 1s ease-in-out 0.5s, d 0.5s ease-in-out;
}
.graph-area.animate-area {
    opacity: 1;
}

.toggle-btn {
    transition: color 0.3s ease;
}

/* High-Tech Glass Panels (UI Component Style) */
.cyber-panel {
    backdrop-filter: blur(16px) saturate(120%) !important;
    -webkit-backdrop-filter: blur(16px) saturate(120%) !important;
    background: rgba(10, 6, 6, 0.35) !important; 
    border: 1px solid transparent !important;
    position: relative;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05), 0 20px 40px rgba(0, 0, 0, 0.3) !important;
}

/* Pointer-Reactive Border Lighting */
.cyber-panel::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: inherit;
    padding: 1px; /* Match border thickness */
    background: radial-gradient(
        300px circle at var(--mouse-x, -999px) var(--mouse-y, -999px),
        rgba(255, 255, 255, 0.25),
        transparent 80%
    ), rgba(255, 255, 255, 0.08);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
}

/* Masked Kinetic Text Reveals */
.reveal-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
    vertical-align: bottom;
}

.reveal-text {
    display: block;
    transform: translateY(100%);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.reveal-wrapper.is-visible .reveal-text {
    transform: translateY(0%);
}

/* Premium Layout Section Viewport Trigger */
.premium-layout-section {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.premium-layout-section.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* 6-Tab Glass Display Panel */
.glass-display-panel {
    background: rgba(10, 6, 6, 0.35) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    display: grid;
    grid-template-columns: 1fr 2.4fr;
    overflow: hidden;
    min-height: 480px;
}

.panel-sidebar-navigation {
    background: rgba(0, 0, 0, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.navigation-tab-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    cursor: none;
    transition: background 0.25s ease, color 0.25s ease;
    border-radius: 8px;
}

.navigation-tab-item:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.02);
}

.navigation-tab-item.active {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    transition: background 0.25s ease;
}

.panel-body-content {
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
}

.top-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.meta-title h4 {
    margin: 0 0 4px 0;
    font-size: 1.2rem;
    color: #ffffff;
    font-family: var(--font-heading);
}

.meta-title span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
}

.capsule-filter-row {
    display: flex;
    gap: 8px;
    background: rgba(0, 0, 0, 0.25);
    padding: 4px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    align-self: flex-start;
    margin-bottom: 20px;
}

.filter-pill-item {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 6px 14px;
    color: rgba(255, 255, 255, 0.65);
    cursor: none;
    border-radius: 20px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-pill-item:hover {
    color: #ffffff;
}

.filter-pill-item.active {
    background: #ffffff;
    color: #000000;
    border-radius: 20px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.vector-graphic-canvas {
    flex: 1;
    min-height: 220px;
    position: relative;
    width: 100%;
}

.dynamic-stroke-svg {
    overflow: visible;
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 12px rgba(139, 13, 26, 0.25));
}

.animated-stroke-path {
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    animation: renderStrokeLine 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

/* 6-Tab Display Panel Responsive */
@media (max-width: 992px) {
    .glass-display-panel {
        grid-template-columns: 1fr;
    }
    .panel-sidebar-navigation {
        flex-direction: row;
        overflow-x: auto;
        white-space: nowrap;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 12px 20px;
        gap: 12px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Hide scrollbar for Firefox */
    }
    .panel-sidebar-navigation::-webkit-scrollbar {
        display: none; /* Hide scrollbar for Safari/Chrome */
    }
    .navigation-tab-item {
        display: inline-flex;
        flex-shrink: 0;
    }
    .panel-body-content {
        padding: 24px 20px !important;
    }
    .top-meta-row {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 12px !important;
    }
    .vector-graphic-canvas {
        min-height: 180px !important;
    }
    .dashboard-info-footer {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 8px !important;
        background: rgba(255, 255, 255, 0.02) !important;
        border: 1px solid rgba(255, 255, 255, 0.05) !important;
        border-radius: 16px !important;
        padding: 12px 16px !important;
        margin-top: 20px !important;
    }
}

/* Premium Section Blueprint (Layout & Proportions) */
.premium-section-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 24px;
}

@media (max-width: 968px) {
    .premium-section-container {
        grid-template-columns: 1fr; /* Stack vertically on mobile */
    }
    .glass-display-panel, .split-visual {
        transform: none !important;
    }
}

/* Translucent Cards & Glassmorphism Properties */
.glass-card-element {
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 32px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2) !important;
    position: relative;
    box-sizing: border-box;
}

.dark-glass-card-element {
    background: rgba(15, 15, 15, 0.65) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 32px !important;
    position: relative;
    box-sizing: border-box;
}

/* Bind Hover reactive border style to the new glass card elements */
.glass-card-element::before, .dark-glass-card-element::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: inherit;
    padding: 1px;
    background: radial-gradient(
        300px circle at var(--mouse-x, -999px) var(--mouse-y, -999px),
        rgba(255, 255, 255, 0.25),
        transparent 80%
    ), rgba(255, 255, 255, 0.08);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
}

/* Typography Hierarchy & Contrast */
.section-micro-tag, .section-tag, .tech-tag {
    font-size: 11px !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase !important;
    color: #ffffff !important;
    margin-bottom: 20px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-family: var(--font-heading) !important;
    font-weight: 700 !important;
    
    /* Premium Highlighting styles */
    background: linear-gradient(90deg, rgba(139, 13, 26, 0.25), rgba(245, 242, 237, 0.04)) !important;
    border: 1px solid rgba(139, 13, 26, 0.45) !important;
    border-radius: 30px !important;
    padding: 6px 16px !important;
    box-shadow: 0 0 15px rgba(139, 13, 26, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
    transition: var(--transition-smooth) !important;
}

/* Pulsing beacon dot inside the highlighted headers */
.section-micro-tag::before, .section-tag::before, .tech-tag::before {
    content: "" !important;
    display: inline-block !important;
    width: 6px !important;
    height: 6px !important;
    background-color: #ff3344 !important; /* Bright glowing crimson */
    border-radius: 50% !important;
    box-shadow: 0 0 8px #ff3344 !important;
    animation: beaconPulse 1.5s infinite ease-in-out !important;
}

@keyframes beaconPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.5); opacity: 1; }
}

h1, h2, h3, h4, h5, h6 {
    color: #ffffff !important;
}

.section-title, .section-title .reveal-text, .hero-title {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.55) 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25)) !important;
}

p, .section-desc, .hero-desc, .workflow-desc, .tech-card-desc, .timeline-desc, .footer-info-desc {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Interface Controls & Interaction States */
.interactive-pill-item {
    background: transparent;
    color: rgba(255, 255, 255, 0.6) !important;
    transition: all 0.2s ease;
    border-radius: 100px !important;
}

.interactive-pill-item.active {
    background: #ffffff !important;
    color: #000000 !important;
}

/* Action Buttons Minimalist Capsule styling */
.btn-primary, .btn-secondary, .cta-button {
    border-radius: 100px !important;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Tech Badges styling */
.tech-badge-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.tech-badge {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 100px !important;
    padding: 8px 16px !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.85) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    transition: var(--transition-smooth) !important;
}

.tech-badge i {
    color: var(--accent-solar) !important;
}

.tech-badge:hover {
    background: rgba(var(--accent-solar-rgb), 0.1) !important;
    border-color: rgba(var(--accent-solar-rgb), 0.3) !important;
    transform: translateY(-2px) !important;
    color: #ffffff !important;
}

/* Premium Local 3D Canvas Containers */
.local-canvas-3d {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    background: rgba(10, 6, 6, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px) saturate(120%);
    -webkit-backdrop-filter: blur(16px) saturate(120%);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        inset 0 0 30px rgba(255, 255, 255, 0.03);
    transition: var(--transition-smooth);
}

.local-canvas-3d::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0.12),
        transparent 50%,
        rgba(139, 13, 26, 0.15)
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
}

.local-canvas-3d:hover {
    border-color: rgba(139, 13, 26, 0.3);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(139, 13, 26, 0.12),
        inset 0 0 30px rgba(255, 255, 255, 0.03);
}

/* Optimize Mobile GPU Composite Load: Cap heavy backdrop-blur filters */
@media (max-width: 768px) {
    .cyber-panel, .glass-card-element, .dark-glass-card-element, .header-container, footer, .local-canvas-3d {
        backdrop-filter: blur(8px) !important;
        -webkit-backdrop-filter: blur(8px) !important;
    }
}


