/* ==========================================================================
   PORTFOLIO STYLING SYSTEM - 3lmagary
   Theme: Ultra-Premium Dark Futuristic / AI Startup / Homelab Obsessed
   ========================================================================== */

:root {
    --bg-main: #030303;
    --bg-card: rgba(10, 10, 15, 0.45);
    --bg-card-hover: rgba(15, 15, 22, 0.6);
    --bg-nav: rgba(3, 3, 3, 0.7);
    
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    --purple: #8b5cf6;
    --purple-glow: rgba(139, 92, 246, 0.15);
    --purple-border: rgba(139, 92, 246, 0.3);
    
    --cyan: #06b6d4;
    --cyan-glow: rgba(6, 182, 212, 0.15);
    --cyan-border: rgba(6, 182, 212, 0.3);

    --green: #10b981;
    --green-glow: rgba(16, 185, 129, 0.2);
    
    --border-subtle: rgba(255, 255, 255, 0.05);
    --border-hover: rgba(255, 255, 255, 0.12);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-quick: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-main);
    color: var(--text-primary);
    scrollbar-width: thin;
    scrollbar-color: var(--border-hover) var(--bg-main);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    background-color: var(--bg-main);
}

/* Custom Scrollbars */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: var(--border-hover);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* Typography Utility Classes */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

p {
    font-size: 15px;
    color: var(--text-secondary);
}

.jetbrains-font, .font-mono {
    font-family: 'JetBrains Mono', monospace !important;
}

/* ==========================================================================
   BACKGROUND & TEXTURES
   ========================================================================== */

#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -3;
    pointer-events: none;
}

#cursor-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.04) 0%, rgba(6, 182, 212, 0.04) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: -2;
    filter: blur(40px);
    transition: opacity 0.5s ease;
    opacity: 0;
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.02;
    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.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* ==========================================================================
   PRELOADER
   ========================================================================== */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--bg-main);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 320px;
}

.preloader-logo-wrapper {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
    position: relative;
}

.preloader-logo {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 15px rgba(139, 92, 246, 0.3));
}

.logo-pulse {
    animation: preloader-pulse-glow 2s infinite alternate;
}

@keyframes preloader-pulse-glow {
    0% { r: 3; fill: var(--cyan); filter: drop-shadow(0 0 2px var(--cyan)); }
    100% { r: 7; fill: var(--purple); filter: drop-shadow(0 0 8px var(--purple)); }
}

.preloader-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--text-primary);
    margin-bottom: 12px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.preloader-status-container {
    height: 20px;
    margin-bottom: 24px;
}

#preloader-status {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: -0.01em;
}

.preloader-progress-bar {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.preloader-progress-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--purple), var(--cyan));
    box-shadow: 0 0 8px var(--cyan);
    border-radius: 20px;
    transition: width 0.1s linear;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 72px;
    background: var(--bg-nav);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border-subtle);
    z-index: 999;
    transition: background var(--transition-smooth);
}

.nav-content {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
    transition: opacity var(--transition-quick);
}
.brand:hover {
    opacity: 0.9;
}

.logo-container {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo-img {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.2));
}

.brand-name {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 60%, var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.live-status-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 100px;
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.15);
    font-size: 11px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    color: #34d399;
}

.pulse-dot-green {
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--green);
    animation: badge-pulse 1.8s infinite;
}

@keyframes badge-pulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { box-shadow: 0 0 0 5px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color var(--transition-quick);
    position: relative;
    padding: 6px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--purple), var(--cyan));
    transition: width var(--transition-quick);
}

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

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

.hide-desktop-cta {
    display: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-quick);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn.small {
    height: 34px;
    padding: 0 14px;
    font-size: 13px;
}

.btn.large {
    height: 48px;
    padding: 0 24px;
    font-size: 15px;
}

.btn-primary {
    background: #ffffff;
    color: #030303;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.05);
}

.btn-primary:hover {
    background: #e2e8f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 255, 255, 0.08);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-primary);
    border-color: var(--border-subtle);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.w-full {
    width: 100%;
}

/* Glowing Border Button */
.glowing-border-btn {
    position: relative;
    border: 1px solid transparent;
    background: #fff;
    color: #000;
}
.glowing-border-btn::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: linear-gradient(135deg, var(--purple), var(--cyan));
    z-index: -1;
    border-radius: calc(var(--radius-sm) + 2px);
    transition: filter 0.3s;
    filter: blur(0px);
}
.glowing-border-btn:hover::before {
    filter: blur(8px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 24px;
    justify-content: center;
    z-index: 1001;
}

.mobile-menu-toggle .bar {
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 4px;
}

/* Mobile Nav Drawer */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: rgba(3, 3, 3, 0.95);
    backdrop-filter: blur(25px);
    border-left: 1px solid var(--border-subtle);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
    padding: 0 40px;
}

.mobile-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 20px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    transition: color var(--transition-quick);
}

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

.mobile-btn {
    margin-top: 16px;
    text-align: center;
    border: 1px solid var(--border-subtle);
    padding: 12px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.02);
}

/* Hamburger Transformations */
.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
    position: relative;
    padding: 160px 24px 80px;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-container {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    margin-bottom: 32px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
    backdrop-filter: blur(10px);
}

.badge-status-dot {
    width: 6px;
    height: 6px;
    background: var(--purple);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--purple);
}

.badge-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 6px;
    border-radius: 4px;
    color: var(--text-primary);
}

.hero-title {
    font-size: clamp(38px, 6vw, 72px);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.gradient-text-purple {
    background: linear-gradient(135deg, #fff 30%, var(--purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(139, 92, 246, 0.1));
}

.gradient-text-blue {
    background: linear-gradient(135deg, #fff 30%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(6, 182, 212, 0.1));
}

.hero-subtitle {
    font-size: clamp(16px, 1.8vw, 19px);
    color: var(--text-secondary);
    max-width: 680px;
    margin-bottom: 44px;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 72px;
}

/* Realistic n8n Workflow Visualization */
.hero-workflow-wrapper {
    width: 100%;
    max-width: 900px;
    margin-top: 24px;
    position: relative;
    border-radius: var(--radius-md);
    background: rgba(10, 10, 15, 0.5);
    border: 1px solid var(--border-subtle);
    box-shadow: 0 30px 60px rgba(0,0,0,0.8), inset 0 1px 0 rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
}

.workflow-header-bar {
    height: 36px;
    border-bottom: 1px solid var(--border-subtle);
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.system-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--text-secondary);
}

.system-detail {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--green);
}

.workflow-viewport {
    height: 180px;
    position: relative;
    overflow: hidden;
}

.workflow-connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.anim-flow-line {
    stroke-dasharray: 20 180;
    animation: flow-dash 10s linear infinite;
}

@keyframes flow-dash {
    0% { stroke-dashoffset: 200; }
    100% { stroke-dashoffset: -200; }
}

.delay-line-1 { animation-delay: 2s; }
.delay-line-2 { animation-delay: 4.5s; }
.delay-line-3 { animation-delay: 7s; }

.workflow-nodes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4%;
    z-index: 2;
}

.w-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 110px;
}

.w-node-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all var(--transition-quick);
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.w-node:hover .w-node-icon {
    border-color: var(--cyan);
    color: var(--text-primary);
    transform: scale(1.05);
    box-shadow: 0 0 15px var(--cyan-glow);
}

.w-node.main-engine .w-node-icon {
    border-color: var(--purple);
    background: rgba(139, 92, 246, 0.08);
    color: var(--purple);
    box-shadow: 0 0 20px var(--purple-glow);
}

.w-node.main-engine:hover .w-node-icon {
    border-color: #a78bfa;
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.35);
}

.w-node-icon i {
    width: 18px;
    height: 18px;
}

.w-node-label {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-primary);
    white-space: nowrap;
}

.w-node-status {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    color: var(--text-muted);
}

.w-node-status-glow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    color: var(--purple);
    animation: text-pulse 2s infinite alternate;
}

@keyframes text-pulse {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* ==========================================================================
   TERMINAL SECTION
   ========================================================================== */

.terminal-section {
    padding: 40px 24px;
    position: relative;
}

.container-medium {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.terminal-window {
    background: #050508;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    box-shadow: 0 30px 80px rgba(0,0,0,0.9);
    position: relative;
    overflow: hidden;
}

/* Scanline CRT effect */
.terminal-window::after {
    content: " ";
    display: block;
    position: absolute;
    top: 0; left: 0; bottom: 0; right: 0;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.03), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.03));
    z-index: 10;
    background-size: 100% 3px, 3px 100%;
    pointer-events: none;
}

.terminal-header {
    height: 40px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
}

.terminal-actions {
    display: flex;
    gap: 8px;
}

.terminal-actions .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.terminal-actions .close { background: #ef4444; }
.terminal-actions .minimize { background: #eab308; }
.terminal-actions .expand { background: #22c55e; }

.terminal-title {
    font-size: 12px;
    color: var(--text-secondary);
    font-family: 'JetBrains Mono', monospace;
}

.terminal-status-tags {
    display: flex;
    gap: 12px;
}

.terminal-tag {
    font-size: 10px;
    font-family: 'JetBrains Mono', monospace;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.terminal-tag i {
    width: 12px;
    height: 12px;
}

.terminal-body {
    padding: 24px;
    min-height: 220px;
    font-size: 13px;
    color: #e2e8f0;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.terminal-body p {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    color: #e2e8f0;
    margin-bottom: 6px;
}

.cursor-blink {
    font-family: 'JetBrains Mono', monospace;
    color: var(--cyan);
    font-weight: 700;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    from, to { color: transparent }
    50% { color: var(--cyan); }
}

.terminal-footer {
    height: 28px;
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--text-muted);
}

.txt-cyan { color: var(--cyan); }
.txt-purple { color: var(--purple); }
.txt-green { color: #34d399; }
.txt-white { color: #ffffff; }

/* ==========================================================================
   SECTION COMMON
   ========================================================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.border-top {
    border-top: 1px solid var(--border-subtle);
}

.section-title-wrapper {
    margin-bottom: 64px;
    max-width: 600px;
}

.section-title-wrapper.text-center {
    margin: 0 auto 64px;
    text-align: center;
}

.sub-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--purple), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-bottom: 12px;
}

.section-heading {
    font-size: clamp(28px, 4vw, 40px);
    color: var(--text-primary);
    margin-bottom: 16px;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 16px;
}

/* Card glass aesthetics */
.tilt-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.03), 0 20px 40px rgba(0,0,0,0.5);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: transform var(--transition-quick), box-shadow var(--transition-quick), border-color var(--transition-quick);
    overflow: hidden;
}

.tilt-card:hover {
    border-color: var(--border-hover);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05), 0 30px 60px rgba(0,0,0,0.7);
}

/* ==========================================================================
   ABOUT & OBSERVABILITY SECTION
   ========================================================================== */

.about-section {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
    margin-bottom: 48px;
}

.about-card {
    padding: 40px;
    min-height: 380px;
    display: flex;
    flex-direction: column;
}

.card-glow-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.15;
    transition: opacity 0.3s;
}

.card-glow-bg.purple {
    background: radial-gradient(circle at top right, var(--purple-glow) 0%, transparent 60%);
}

.card-glow-bg.blue {
    background: radial-gradient(circle at top right, var(--cyan-glow) 0%, transparent 60%);
}

.about-card > * {
    z-index: 2;
    position: relative;
}

.about-card .card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.card-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
}

.about-card h3 {
    font-size: 22px;
}

.about-bio {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.about-bio.secondary {
    font-size: 15px;
    margin-bottom: 0;
    color: var(--text-muted);
}

/* Observability Dashboard Preview Card */
.dashboard-card {
    background: #050508 !important;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 16px;
}

.dashboard-title-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dash-pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--cyan);
    animation: dash-pulse-anim 1.5s infinite alternate;
}

@keyframes dash-pulse-anim {
    0% { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 1; }
}

.dashboard-card h4 {
    font-size: 14px;
    font-family: 'JetBrains Mono', monospace;
    color: #f1f5f9;
}

.dashboard-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    background: rgba(6, 182, 212, 0.1);
    color: var(--cyan);
    padding: 3px 8px;
    border-radius: 100px;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dashboard-grid-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    flex-grow: 1;
}

.dashboard-grid-inner .span-2 {
    grid-column: span 2;
}

.dash-stat-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-lbl {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
}

.stat-val-group {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.stat-number {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
}

.stat-sub {
    font-size: 10px;
    color: var(--text-muted);
}

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

.dash-progress-fill {
    height: 100%;
    border-radius: 100px;
    transition: width 0.8s ease;
}

.dash-progress-fill.purple { background: var(--purple); box-shadow: 0 0 8px var(--purple); }
.dash-progress-fill.blue { background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }

.chart-container {
    height: 60px;
    width: 100%;
    background: rgba(255,255,255,0.01);
    border: 1px solid rgba(255,255,255,0.02);
    border-radius: var(--radius-sm);
    position: relative;
    overflow: hidden;
}

.dash-chart {
    width: 100%;
    height: 100%;
}

.dash-chart-line {
    animation: dash-chart-draw 4s linear infinite alternate;
}

.dashboard-footer-metrics {
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
    border-top: 1px solid var(--border-subtle);
    padding-top: 16px;
    font-size: 11px;
    color: var(--text-muted);
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Stats Row */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.stat-card {
    padding: 24px;
    text-align: center;
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.04em;
    margin-bottom: 6px;
}

.stat-name {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

/* ==========================================================================
   FOCUS & "BUILDING NOW" SECTION
   ========================================================================== */

.focus-section {
    padding: 100px 0;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin-bottom: 48px;
}

.focus-card {
    padding: 32px;
    height: 250px;
    display: flex;
    flex-direction: column;
}

.card-bg-gradient {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(800px circle at var(--mouse-x, -200px) var(--mouse-y, -200px), rgba(255,255,255,0.035), transparent 45%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 0;
}

.focus-card:hover .card-bg-gradient {
    opacity: 1;
}

.focus-card > * {
    z-index: 2;
}

.focus-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    margin-bottom: 20px;
    transition: all var(--transition-quick);
}

.focus-card:hover .focus-icon {
    color: var(--text-primary);
    border-color: var(--cyan);
    box-shadow: 0 0 10px var(--cyan-glow);
}

.focus-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.focus-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    flex-grow: 1;
}

.focus-metadata {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--text-muted);
    margin-top: auto;
    border-top: 1px solid rgba(255,255,255,0.02);
    padding-top: 12px;
}

/* "Building Now" Panel */
.building-now-panel {
    background: rgba(5,5,8,0.7);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 32px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.building-header {
    margin-bottom: 24px;
}

.building-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 10px;
    border-radius: 100px;
    background: rgba(6,182,212,0.05);
    border: 1px solid rgba(6,182,212,0.15);
    font-size: 10px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    color: var(--cyan);
    margin-bottom: 12px;
}

.status-pulse-cyan {
    width: 6px;
    height: 6px;
    background: var(--cyan);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--cyan);
    animation: badge-pulse 1.8s infinite;
}

.building-header h3 {
    font-size: 20px;
}

.building-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.build-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255,255,255,0.01);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    transition: all var(--transition-quick);
}

.build-item:hover {
    border-color: var(--border-hover);
    background: rgba(255,255,255,0.02);
}

.build-indicator i {
    width: 18px;
    height: 18px;
}
.build-indicator i.checked { color: var(--green); }
.build-indicator i.pending { color: var(--text-muted); }

.build-details {
    flex-grow: 1;
}

.build-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.build-desc {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

.build-progress {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--text-secondary);
    background: rgba(255,255,255,0.03);
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid var(--border-subtle);
}

/* ==========================================================================
   TECH STACK GRID
   ========================================================================== */

.stack-section {
    padding: 100px 0;
}

.stack-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.stack-card {
    height: 120px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
}

.stack-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at center, var(--hover-glow-val, transparent) 0%, transparent 70%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.stack-card:hover::after {
    opacity: 0.15;
}

.stack-card > * {
    z-index: 2;
}

.stack-icon-wrapper {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    margin-bottom: 12px;
    transition: all var(--transition-quick);
}

.stack-card:hover .stack-icon-wrapper {
    color: #fff;
    transform: scale(1.05);
}

.stack-card h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.stack-use {
    font-size: 10px;
    color: var(--text-muted);
}

/* ==========================================================================
   PROJECTS SECTION
   ========================================================================== */

.projects-section {
    padding: 100px 0;
}

.projects-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.project-card {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), 0 30px 60px rgba(0,0,0,0.6);
    backdrop-filter: blur(15px);
    overflow: hidden;
    transition: border-color var(--transition-smooth), transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.project-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 40px 80px rgba(0,0,0,0.8);
}

.project-card.reverse {
    grid-template-columns: 1fr 1.1fr;
}

.project-card.reverse .project-content {
    order: 2;
}

.project-content {
    padding: 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-header-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.project-badge {
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 10px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    text-transform: uppercase;
}

.project-badge.text-purple {
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.2);
    color: #a78bfa;
}

.project-badge.text-blue {
    background: rgba(6, 182, 212, 0.08);
    border: 1px solid rgba(6, 182, 212, 0.2);
    color: #22d3ee;
}

.project-badge.text-cyan {
    background: rgba(6, 182, 212, 0.08);
    border: 1px solid rgba(6, 182, 212, 0.2);
    color: var(--cyan);
}

.sys-meta {
    font-size: 10px;
    color: var(--text-muted);
}

.project-content h3 {
    font-size: 26px;
    margin-bottom: 16px;
}

.project-content p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 28px;
}

.project-tech-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tech-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-subtle);
    padding: 4px 10px;
    border-radius: 4px;
    color: var(--text-secondary);
}

.project-visual-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 48px;
}

.project-card.reverse .project-visual-wrapper {
    border-right: 1px solid var(--border-subtle);
}

.project-card:not(.reverse) .project-visual-wrapper {
    border-left: 1px solid var(--border-subtle);
}

/* Project mockups */
.project-visual-mockup {
    width: 100%;
    background: #050508;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    box-shadow: 0 20px 50px rgba(0,0,0,0.7);
    overflow: hidden;
    position: relative;
}

.bg-purple-glow {
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.08);
}
.bg-blue-glow {
    box-shadow: 0 0 40px rgba(6, 182, 212, 0.08);
}

.mockup-header-bar {
    height: 32px;
    background: rgba(255,255,255,0.02);
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 6px;
}

.mock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #333;
}
.mock-dot.close { background: rgba(239, 68, 68, 0.5); }
.mock-dot.min { background: rgba(234, 179, 8, 0.5); }
.mock-dot.max { background: rgba(34, 197, 94, 0.5); }

.mock-path {
    font-size: 10px;
    color: var(--text-muted);
    margin-left: 12px;
}

.mockup-content {
    padding: 24px;
    font-size: 12px;
    line-height: 1.7;
}

.mockup-content p {
    font-size: 11px;
    margin-bottom: 4px;
}

/* Cluster Topology Mockup */
.cluster-view {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
}

.topology-node {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-subtle);
    padding: 8px 12px;
    border-radius: 6px;
}

.node-icon-inline {
    color: var(--purple);
    display: flex;
}
.node-icon-inline i { width: 14px; height: 14px; }

.node-txt-inline {
    font-size: 12px;
    color: var(--text-primary);
}

.topology-branch {
    margin-left: 18px;
    border-left: 1px dashed var(--border-subtle);
    padding-left: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sub-topo-node {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: var(--text-secondary);
}

.sub-topo-node .dot {
    font-size: 8px;
}

/* Observability panels */
.p-panel {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
}

.panel-row {
    display: flex;
    gap: 12px;
}

.panel-box {
    flex: 1;
    background: rgba(255,255,255,0.01);
    border: 1px solid var(--border-subtle);
    padding: 12px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.p-title {
    font-size: 10px;
    color: var(--text-muted);
}

.p-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.panel-box-large {
    width: 100%;
    background: rgba(255,255,255,0.01);
    border: 1px solid var(--border-subtle);
    padding: 12px;
    border-radius: 6px;
}

.mini-bar-chart {
    height: 40px;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    margin-top: 10px;
}

.m-bar {
    flex: 1;
    background: var(--cyan);
    box-shadow: 0 0 6px var(--cyan-glow);
    border-radius: 2px;
}

/* ==========================================================================
   CONTENT CREATOR SECTION
   ========================================================================== */

.creator-section {
    padding: 100px 0;
}

.creator-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.creator-card {
    padding: 32px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 220px;
}

.creator-glow-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s;
}

.creator-card:hover .creator-glow-overlay {
    opacity: 0.12;
}

/* Social Glow Colorations */
.creator-card.youtube .creator-glow-overlay { background: radial-gradient(circle at center, #ef4444 0%, transparent 70%); }
.creator-card.linkedin .creator-glow-overlay { background: radial-gradient(circle at center, #0077b5 0%, transparent 70%); }
.creator-card.github .creator-glow-overlay { background: radial-gradient(circle at center, #ffffff 0%, transparent 70%); }
.creator-card.twitter .creator-glow-overlay { background: radial-gradient(circle at center, #1da1f2 0%, transparent 70%); }

.creator-card > * {
    z-index: 2;
}

.creator-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    margin-bottom: 20px;
    transition: all var(--transition-quick);
}

.creator-card:hover .creator-icon {
    color: #fff;
}

.creator-card.youtube:hover .creator-icon { border-color: #ef4444; color: #ef4444; box-shadow: 0 0 10px rgba(239, 68, 68, 0.2); }
.creator-card.linkedin:hover .creator-icon { border-color: #0077b5; color: #0077b5; box-shadow: 0 0 10px rgba(0, 119, 181, 0.2); }
.creator-card.github:hover .creator-icon { border-color: #fff; color: #fff; box-shadow: 0 0 10px rgba(255,255,255,0.2); }
.creator-card.twitter:hover .creator-icon { border-color: #1da1f2; color: #1da1f2; box-shadow: 0 0 10px rgba(29, 161, 242, 0.2); }

.creator-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.creator-card p {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-secondary);
    flex-grow: 1;
}

.creator-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-top: 16px;
    transition: gap 0.2s;
}
.creator-action i { width: 14px; height: 14px; }

.creator-card:hover .creator-action {
    color: var(--text-primary);
    gap: 10px;
}

/* ==========================================================================
   JOURNEY ROADMAP TIMELINE
   ========================================================================== */

.timeline-section-main {
    padding: 100px 0;
}

.journey-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 40px 0;
}

.timeline-progress-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: rgba(255,255,255,0.03);
}

.timeline-progress-fill-bar {
    position: absolute;
    top: 0; left: 0; width: 100%;
    height: 0%;
    background: linear-gradient(to bottom, var(--purple), var(--cyan));
    box-shadow: 0 0 8px var(--cyan);
    transition: height 0.5s ease-out;
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    width: 50%;
    padding-right: 48px;
    position: relative;
    margin-bottom: 48px;
}

.timeline-item:nth-child(even) {
    align-self: flex-end;
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 48px;
    margin-left: 50%;
}

.timeline-marker {
    position: absolute;
    top: 16px;
    right: -10px;
    width: 20px;
    height: 20px;
    z-index: 10;
}

.timeline-item:nth-child(even) .timeline-marker {
    right: auto;
    left: -10px;
}

.marker-dot {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--bg-main);
    border: 2px solid var(--border-subtle);
    display: block;
    position: relative;
    transition: border-color var(--transition-quick), background var(--transition-quick);
}

.timeline-item.active .marker-dot {
    border-color: var(--cyan);
    background: var(--cyan);
    box-shadow: 0 0 10px var(--cyan-glow);
}

.timeline-content {
    padding: 32px;
    width: 100%;
    border-radius: var(--radius-md);
}

.timeline-year {
    font-size: 11px;
    font-weight: 600;
    color: var(--cyan);
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 8px;
}

.timeline-content h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.timeline-content p {
    font-size: 13px;
    line-height: 1.6;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */

.contact-section {
    padding: 120px 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 32px;
}

.status-box-simple {
    padding: 16px;
    border-radius: var(--radius-sm);
    background: rgba(6, 182, 212, 0.04);
    border: 1px solid rgba(6, 182, 212, 0.12);
    margin-bottom: 32px;
}

.status-inner {
    display: flex;
    align-items: center;
    gap: 12px;
}

.status-txt-simple {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.detail-item .icon {
    color: var(--cyan);
    display: flex;
}
.detail-item .icon i { width: 18px; height: 18px; }

.detail-item a {
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
}

.detail-item a:hover {
    color: var(--cyan);
}

/* Glass Contact Form */
.contact-form-wrapper {
    position: relative;
}

.glass-form {
    background: rgba(10, 10, 15, 0.5);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), 0 30px 60px rgba(0,0,0,0.6);
    backdrop-filter: blur(20px);
}

.form-row {
    margin-bottom: 24px;
}

.input-group {
    position: relative;
    width: 100%;
}

.input-group input, .input-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: all var(--transition-quick);
    outline: none;
}

.input-group textarea {
    resize: vertical;
}

.input-group label {
    position: absolute;
    left: 16px;
    top: 14px;
    font-size: 14px;
    color: var(--text-muted);
    pointer-events: none;
    transition: all 0.2s ease;
}

.input-group input:focus ~ label,
.input-group input:not(:placeholder-shown) ~ label,
.input-group textarea:focus ~ label,
.input-group textarea:not(:placeholder-shown) ~ label {
    top: -8px;
    left: 10px;
    font-size: 10px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    color: var(--cyan);
    background: var(--bg-main);
    padding: 0 6px;
    border-radius: 4px;
    border: 1px solid var(--border-subtle);
}

.input-group input:focus, .input-group textarea:focus {
    border-color: var(--cyan);
    background: rgba(255, 255, 255, 0.04);
}

.input-glow {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: var(--radius-sm);
    pointer-events: none;
    box-shadow: 0 0 15px transparent;
    transition: box-shadow 0.3s;
    z-index: -1;
}

.input-group input:focus ~ .input-glow,
.input-group textarea:focus ~ .input-glow {
    box-shadow: 0 0 15px var(--cyan-glow);
}

.glass-form button i {
    width: 14px;
    height: 14px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
    padding: 80px 0 40px;
    background: #020202;
    position: relative;
    z-index: 10;
}

.footer-layout {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 64px;
}

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

.footer-statement {
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-muted);
}

.footer-links-grid {
    display: flex;
    gap: 80px;
}

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

.footer-col h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.footer-col a {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition-quick);
}

.footer-col a:hover {
    color: var(--cyan);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.02);
    padding-top: 32px;
    font-size: 12px;
    color: var(--text-muted);
}

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

/* ==========================================================================
   SCROLL REVEAL & CORE ANIMATIONS
   ========================================================================== */

.reveal {
    opacity: 0;
    transform: translateY(32px) scale(0.98);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

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

@media (max-width: 900px) {
    .navbar {
        height: 64px;
    }
    
    .nav-links {
        display: none; /* Collapsed under mobile nav drawer */
    }
    
    .nav-cta {
        display: none;
    }
    
    .hide-desktop-cta {
        display: inline-flex;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-section {
        padding-top: 120px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        gap: 12px;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .hero-workflow-wrapper {
        display: none; /* Hide workflow canvas visualization on tablet/mobile for performance */
    }
    
    .project-card, .project-card.reverse {
        grid-template-columns: 1fr;
    }
    
    .project-card.reverse .project-content {
        order: 0;
    }
    
    .project-visual-wrapper {
        border-left: none !important;
        border-right: none !important;
        border-top: 1px solid var(--border-subtle);
        padding: 32px 24px;
    }
    
    .project-content {
        padding: 32px 24px;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stack-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .creator-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-progress-line {
        left: 20px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 48px;
        padding-right: 0;
        justify-content: flex-start;
    }
    
    .timeline-item:nth-child(even) {
        margin-left: 0;
        padding-left: 48px;
    }
    
    .timeline-marker {
        left: 10px;
        right: auto;
    }
    
    .timeline-item:nth-child(even) .timeline-marker {
        left: 10px;
    }
    
    .footer-layout {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-links-grid {
        width: 100%;
        justify-content: space-between;
        gap: 40px;
    }
    
    .glass-form {
        padding: 24px;
    }
}
