:root {
    --color-bg: #0a0a0f;
    --color-surface: #13131a;
    --color-primary: #00ff88;
    --color-secondary: #ff0080;
    --color-accent: #00d4ff;
    --color-text: #e8e8f0;
    --color-text-dim: #8a8a9f;
    --color-border: #2a2a35;
    
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'JetBrains Mono', monospace;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Development Notice Popup */
.dev-notice-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: overlayFadeIn 0.3s ease-out;
}

.dev-notice-overlay.hidden {
    display: none;
}

@keyframes overlayFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.dev-notice-popup {
    background: var(--color-surface);
    border: 2px solid var(--color-primary);
    max-width: 600px;
    width: 100%;
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px));
    box-shadow: 0 20px 80px rgba(0, 255, 136, 0.3);
    animation: popupSlideIn 0.5s ease-out;
    position: relative;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.dev-notice-popup::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.dev-notice-header {
    padding: 3rem 3rem 2rem;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
    position: relative;
}

.dev-notice-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(0, 255, 136, 0.1);
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 40px rgba(0, 255, 136, 0.6);
    }
}

.dev-notice-icon svg {
    color: var(--color-primary);
}

.dev-notice-header h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-primary);
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.dev-notice-body {
    padding: 2.5rem 3rem;
}

.dev-notice-body p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-dim);
    margin-bottom: 2rem;
}

.dev-notice-body strong {
    color: var(--color-primary);
    font-weight: 700;
}

.dev-notice-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dev-notice-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: var(--color-text-dim);
}

.dev-notice-list li svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

.dev-notice-footer {
    padding: 2rem 3rem 3rem;
    display: flex;
    gap: 1rem;
    border-top: 1px solid var(--color-border);
}

.dev-notice-btn {
    flex: 1;
    padding: 1rem 2rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: var(--transition);
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    border: none;
}

.dev-notice-btn.secondary {
    background: transparent;
    border: 2px solid var(--color-border);
    color: var(--color-text);
}

.dev-notice-btn.secondary:hover {
    border-color: var(--color-text);
    transform: translateY(-3px);
}

.dev-notice-btn.primary {
    background: var(--color-primary);
    color: var(--color-bg);
    border: 2px solid var(--color-primary);
}

.dev-notice-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.5);
    gap: 1rem;
}

@media (max-width: 768px) {
    .dev-notice-popup {
        max-width: 100%;
    }
    
    .dev-notice-header {
        padding: 2rem 2rem 1.5rem;
    }
    
    .dev-notice-header h2 {
        font-size: 1.5rem;
    }
    
    .dev-notice-body {
        padding: 2rem;
    }
    
    .dev-notice-footer {
        padding: 1.5rem 2rem 2rem;
        flex-direction: column;
    }
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.logo-bracket {
    color: var(--color-primary);
}

.logo-text {
    color: var(--color-text);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    color: var(--color-text-dim);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    padding: 0.75rem 1.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.nav-cta:hover {
    background: var(--color-primary);
    color: var(--color-bg);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 136, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 0, 128, 0.05) 0%, transparent 50%);
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.4) 0%, transparent 70%);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, transparent 70%);
    top: 50%;
    right: -5%;
    animation-delay: 7s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 0, 128, 0.3) 0%, transparent 70%);
    bottom: -10%;
    left: 30%;
    animation-delay: 14s;
}

@keyframes orbFloat {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
    }
    33% { 
        transform: translate(50px, -50px) scale(1.1);
    }
    66% { 
        transform: translate(-30px, 30px) scale(0.9);
    }
}

.hero-scanline {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 255, 136, 0.03) 50%,
        transparent 100%
    );
    background-size: 100% 4px;
    animation: scanline 8s linear infinite;
    pointer-events: none;
}

@keyframes scanline {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100vh); }
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(var(--color-border) 1px, transparent 1px),
        linear-gradient(90deg, var(--color-border) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--color-primary);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    animation: slideInLeft 0.8s ease-out;
    position: relative;
    overflow: hidden;
}

.badge-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.3), transparent);
    animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(200%); }
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--color-primary);
    position: relative;
    z-index: 1;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
}

.title-line {
    animation: slideInLeft 0.8s ease-out backwards;
    position: relative;
}

.title-line:nth-child(1) { animation-delay: 0.1s; }
.title-line:nth-child(2) { animation-delay: 0.2s; }
.title-line:nth-child(3) { animation-delay: 0.3s; }

.title-glitch {
    position: relative;
    display: inline-block;
}

.title-glitch::before,
.title-glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.title-glitch::before {
    color: var(--color-accent);
    animation: glitchTop 3s infinite;
    clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
}

.title-glitch::after {
    color: var(--color-secondary);
    animation: glitchBottom 2.5s infinite;
    clip-path: polygon(0 67%, 100% 67%, 100% 100%, 0 100%);
}

@keyframes glitchTop {
    0%, 90%, 100% { opacity: 0; transform: translate(0); }
    92% { opacity: 0.8; transform: translate(-2px, -2px); }
    94% { opacity: 0.8; transform: translate(2px, 1px); }
}

@keyframes glitchBottom {
    0%, 85%, 100% { opacity: 0; transform: translate(0); }
    87% { opacity: 0.8; transform: translate(2px, 2px); }
    89% { opacity: 0.8; transform: translate(-1px, -1px); }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.title-highlight {
    color: var(--color-primary);
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeIn 1s ease-out 0.5s backwards;
}

.stat-mini {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-mini-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1;
}

.stat-mini-label {
    font-size: 0.7rem;
    color: var(--color-text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-mini-divider {
    width: 1px;
    height: 30px;
    background: var(--color-border);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--color-text-dim);
    max-width: 500px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    animation: fadeIn 1s ease-out 0.6s backwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-cta {
    display: flex;
    gap: 1rem;
    animation: fadeIn 1s ease-out 0.8s backwards;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-bg);
    border: none;
    padding: 1rem 2rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
    position: relative;
    overflow: hidden;
}

.btn-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    opacity: 0;
    transition: var(--transition);
}

.btn-primary:hover .btn-glow {
    opacity: 1;
    animation: btnShine 1.5s ease-in-out infinite;
}

@keyframes btnShine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(200%) rotate(45deg); }
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text);
    border: 2px solid var(--color-border);
    padding: 1rem 2rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--color-primary);
    transform: translateX(-100%);
    transition: var(--transition);
    z-index: -1;
}

.btn-secondary:hover::before {
    transform: translateX(0);
}

.btn-secondary:hover {
    border-color: var(--color-primary);
    color: var(--color-bg);
    transform: translateY(-3px);
}

/* Hero Visual - Dashboard */
.hero-visual {
    position: relative;
    height: 500px;
    animation: fadeIn 1s ease-out 0.8s backwards;
}

.dashboard-container {
    width: 100%;
    height: 100%;
    background: rgba(19, 19, 26, 0.6);
    border: 2px solid var(--color-border);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px));
    animation: slideInRight 1s ease-out 0.8s backwards;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
}

.dash-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-primary);
}

.dash-title svg {
    color: var(--color-primary);
}

.dash-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--color-text-dim);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    height: calc(100% - 80px);
}

.dash-widget {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    padding: 1rem;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
    transition: var(--transition);
    animation: fadeInScale 0.6s ease-out backwards;
}

.dash-widget:hover {
    border-color: var(--color-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.widget-1 { animation-delay: 0.9s; }
.widget-2 { animation-delay: 1s; }
.widget-3 { animation-delay: 1.1s; }
.widget-4 { animation-delay: 1.2s; }
.widget-5 { animation-delay: 1.3s; }
.widget-6 { animation-delay: 1.4s; }

.widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.widget-label {
    font-size: 0.75rem;
    color: var(--color-text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.widget-header svg {
    color: var(--color-accent);
    width: 16px;
    height: 16px;
}

.widget-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.widget-change {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.widget-change.positive {
    color: var(--color-primary);
}

.widget-change.negative {
    color: var(--color-secondary);
}

.widget-chart {
    display: flex;
    align-items: flex-end;
    gap: 0.25rem;
    height: 40px;
}

.chart-bar {
    flex: 1;
    background: var(--color-primary);
    opacity: 0.6;
    transition: var(--transition);
    animation: barGrow 1s ease-out backwards;
}

.dash-widget:hover .chart-bar {
    opacity: 1;
}

@keyframes barGrow {
    from { height: 0 !important; }
}

.widget-progress {
    height: 6px;
    background: var(--color-border);
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--color-primary);
    animation: progressGrow 1.5s ease-out backwards 1.2s;
}

@keyframes progressGrow {
    from { width: 0 !important; }
}

.widget-mini-chart {
    height: 30px;
    margin-top: 0.5rem;
}

.widget-mini-chart svg {
    width: 100%;
    height: 100%;
    stroke: var(--color-accent);
}

.status-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.status-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.status-label {
    font-size: 0.7rem;
    color: var(--color-text-dim);
    text-transform: uppercase;
}

.status-value {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary);
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--color-text-dim);
}

.activity-dot {
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
    flex-shrink: 0;
}

.quick-actions {
    display: flex;
    gap: 0.5rem;
}

.quick-btn {
    flex: 1;
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text);
    padding: 0.75rem 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

.quick-btn:hover {
    border-color: var(--color-primary);
    background: rgba(0, 255, 136, 0.1);
    color: var(--color-primary);
}

.quick-btn svg {
    color: var(--color-accent);
}

.quick-btn:hover svg {
    color: var(--color-primary);
}

.visual-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    z-index: 10;
}

.core-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    opacity: 0.3;
}

.ring-1 {
    width: 100%;
    height: 100%;
    animation: ringPulse 4s ease-in-out infinite;
}

.ring-2 {
    width: 130%;
    height: 130%;
    animation: ringPulse 4s ease-in-out infinite 1.3s;
}

.ring-3 {
    width: 160%;
    height: 160%;
    animation: ringPulse 4s ease-in-out infinite 2.6s;
}

@keyframes ringPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.6;
    }
}

.core-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    background: var(--color-bg);
    border: 3px solid var(--color-primary);
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 50px rgba(0, 255, 136, 0.4);
    z-index: 2;
}

.core-text {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1;
}

.core-subtext {
    font-size: 0.65rem;
    color: var(--color-text-dim);
    letter-spacing: 2px;
    margin-top: 0.5rem;
}

.floating-card {
    position: absolute;
    background: var(--color-surface);
    border: 2px solid var(--color-border);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: float 6s ease-in-out infinite;
    transition: var(--transition);
    overflow: visible;
}

.card-glow {
    position: absolute;
    inset: -50%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.floating-card:hover .card-glow {
    opacity: 1;
}

.floating-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-10px) !important;
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.3);
    z-index: 10;
}

.card-1 {
    top: 0%;
    left: 50%;
    transform: translateX(-50%);
    width: 170px;
    min-height: 170px;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    animation-delay: 0s;
}

.card-2 {
    top: 15%;
    right: 5%;
    width: 170px;
    min-height: 170px;
    clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 25px, 100% 100%, 25px 100%, 0 calc(100% - 25px));
    animation-delay: 1s;
}

.card-3 {
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    width: 190px;
    min-height: 190px;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
    animation-delay: 2s;
}

.card-4 {
    top: 50%;
    right: 0%;
    transform: translateY(-50%);
    width: 170px;
    min-height: 170px;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    animation-delay: 3s;
}

.card-5 {
    bottom: 15%;
    left: 5%;
    width: 180px;
    min-height: 180px;
    clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 25px, 100% 100%, 25px 100%, 0 calc(100% - 25px));
    animation-delay: 4s;
}

.card-6 {
    bottom: 0%;
    left: 50%;
    transform: translateX(-50%);
    width: 190px;
    min-height: 190px;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
    animation-delay: 5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.card-icon {
    color: var(--color-primary);
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.5));
}

.card-label {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--color-primary);
    text-align: center;
    line-height: 1.2;
}

.card-desc {
    font-size: 0.8rem;
    color: var(--color-text-dim);
    text-align: center;
    line-height: 1.4;
    white-space: nowrap;
}

.connection-line {
    position: absolute;
    background: linear-gradient(90deg, var(--color-primary), transparent);
    height: 2px;
    opacity: 0.3;
    animation: lineFlow 3s ease-in-out infinite;
}

.line-1 {
    width: 80px;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
}

.line-2 {
    width: 100px;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
}

.line-3 {
    width: 120px;
    top: 50%;
    right: 100%;
    transform: translateY(-50%);
}

.line-4 {
    width: 100px;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
}

.line-5 {
    width: 90px;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
}

.line-6 {
    width: 80px;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
}

@keyframes lineFlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

.data-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-primary);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 8s ease-in-out infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 30%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 60%;
    left: 70%;
    animation-delay: 1.5s;
}

.particle:nth-child(3) {
    top: 40%;
    right: 20%;
    animation-delay: 3s;
}

.particle:nth-child(4) {
    bottom: 30%;
    left: 50%;
    animation-delay: 4.5s;
}

.particle:nth-child(5) {
    top: 70%;
    right: 40%;
    animation-delay: 6s;
}

.particle:nth-child(6) {
    top: 10%;
    left: 60%;
    animation-delay: 7.5s;
}

.particle:nth-child(7) {
    top: 25%;
    left: 80%;
    animation-delay: 2s;
}

.particle:nth-child(8) {
    bottom: 20%;
    right: 30%;
    animation-delay: 5s;
}

@keyframes particleFloat {
    0%, 100% {
        opacity: 0;
        transform: translateY(0) scale(1);
    }
    10%, 90% {
        opacity: 1;
    }
    50% {
        transform: translateY(-50px) scale(1.5);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text-dim);
    animation: fadeIn 1s ease-out 1s backwards;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-primary), transparent);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { transform: translateY(0); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(20px); opacity: 0; }
}

/* Section Styles */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.section-header {
    margin-bottom: 4rem;
}

.section-tag {
    font-size: 0.85rem;
    color: var(--color-primary);
    font-weight: 600;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
}

/* Main Product Section */
.main-product {
    background: var(--color-surface);
    position: relative;
    overflow: hidden;
}

.main-product::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.product-visual {
    position: relative;
    height: 500px;
}

.erp-modules {
    position: relative;
    width: 100%;
    height: 100%;
}

.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.connect-line {
    stroke-width: 2;
    stroke-dasharray: 8, 4;
    animation: lineDash 20s linear infinite, lineGlow 3s ease-in-out infinite;
}

@keyframes lineDash {
    to {
        stroke-dashoffset: -1000;
    }
}

@keyframes lineGlow {
    0%, 100% {
        opacity: 0.4;
        stroke-width: 2;
    }
    50% {
        opacity: 1;
        stroke-width: 3;
    }
}

.h-line-1 { animation-delay: 0s; }
.h-line-2 { animation-delay: 0.5s; }
.h-line-3 { animation-delay: 1s; }
.h-line-4 { animation-delay: 1.5s; }
.h-line-5 { animation-delay: 2s; }
.h-line-6 { animation-delay: 2.5s; }

.v-line-1 { animation-delay: 0.3s; }
.v-line-2 { animation-delay: 0.8s; }
.v-line-3 { animation-delay: 1.3s; }
.v-line-4 { animation-delay: 1.8s; }
.v-line-5 { animation-delay: 2.3s; }
.v-line-6 { animation-delay: 2.8s; }

.data-dot {
    filter: drop-shadow(0 0 8px var(--color-primary));
}

.module-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 140px;
    background: var(--color-bg);
    border: 3px solid var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    box-shadow: 0 0 50px rgba(0, 255, 136, 0.4), inset 0 0 30px rgba(0, 255, 136, 0.1);
    z-index: 10;
}

.center-rings {
    position: absolute;
    inset: 0;
}

.center-ring {
    position: absolute;
    inset: -15px;
    border: 2px solid var(--color-primary);
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    opacity: 0;
}

.ring-1 {
    animation: ringPulse 3s ease-in-out infinite;
}

.ring-2 {
    animation: ringPulse 3s ease-in-out infinite 1.5s;
}

@keyframes ringPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.6;
    }
}

.center-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.center-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.center-subtitle {
    font-size: 0.7rem;
    color: var(--color-text-dim);
    font-weight: 400;
    margin-top: 0.5rem;
    letter-spacing: 2px;
}

.module-node {
    position: absolute;
    background: var(--color-surface);
    border: 2px solid var(--color-accent);
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    animation: fadeInScale 0.6s ease-out backwards;
    transition: var(--transition);
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.module-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.15);
    border-radius: 6px;
    flex-shrink: 0;
}

.module-icon svg {
    color: var(--color-accent);
    width: 18px;
    height: 18px;
}

.module-node:hover {
    border-color: var(--color-primary);
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 10px 35px rgba(0, 255, 136, 0.4);
    z-index: 15;
}

.module-node:hover .module-icon {
    background: rgba(0, 255, 136, 0.25);
}

.module-node:hover .module-icon svg {
    color: var(--color-primary);
}

/* Left Side Modules */
.node-left-1 {
    top: 15%;
    left: 5%;
}

.node-left-2 {
    top: 45%;
    left: 5%;
}

.node-left-3 {
    bottom: 10%;
    left: 5%;
}

/* Right Side Modules */
.node-right-1 {
    top: 15%;
    right: 5%;
}

.node-right-2 {
    top: 45%;
    right: 5%;
}

.node-right-3 {
    bottom: 15%;
    right: 5%;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.product-headline {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.product-text {
    font-size: 1.1rem;
    color: var(--color-text-dim);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    font-size: 1rem;
}

.feature-icon {
    color: var(--color-primary);
    font-weight: 700;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    padding: 1rem 2.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-bg);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.4);
}

/* Side Products Section */
.side-products {
    background: var(--color-bg);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.product-card {
    background: var(--color-surface);
    border: 2px solid var(--color-border);
    padding: 3rem;
    position: relative;
    transition: var(--transition);
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px));
}

.product-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.2);
}

.card-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    border-top: 2px solid var(--color-primary);
    border-right: 2px solid var(--color-primary);
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .card-corner {
    opacity: 1;
}

.card-header {
    margin-bottom: 2rem;
}

.card-icon-large {
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.card-icon-large svg {
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.5));
}

.card-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.card-subtitle {
    color: var(--color-text-dim);
    font-size: 0.9rem;
}

.card-body {
    margin-bottom: 2rem;
}

.card-description {
    color: var(--color-text-dim);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.card-features {
    list-style: none;
}

.card-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--color-text-dim);
    font-size: 0.9rem;
}

.card-features li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

.card-footer {
    border-top: 1px solid var(--color-border);
    padding-top: 2rem;
}

.card-btn {
    background: transparent;
    border: none;
    color: var(--color-primary);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.card-btn:hover {
    gap: 1rem;
}

.btn-arrow {
    transition: var(--transition);
}

/* Pricing Section */
.pricing {
    background: var(--color-surface);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.section-description {
    text-align: center;
    color: var(--color-text-dim);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.pricing-card {
    background: var(--color-bg);
    border: 2px solid var(--color-border);
    padding: 3rem 2.5rem;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.2);
}

.pricing-card.featured {
    border-color: var(--color-primary);
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05) 0%, var(--color-bg) 100%);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 25px 70px rgba(0, 255, 136, 0.3);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: var(--color-bg);
    padding: 0.5rem 1.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 2px;
    clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-surface);
    border: 2px solid var(--color-border);
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
    color: var(--color-primary);
    transition: var(--transition);
}

.pricing-card:hover .pricing-icon {
    border-color: var(--color-primary);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.pricing-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.pricing-subtitle {
    color: var(--color-text-dim);
    font-size: 0.9rem;
}

.pricing-price {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--color-border);
}

.price-currency {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    vertical-align: top;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1;
}

.price-amount-free {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--color-accent);
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    color: var(--color-text-dim);
}

.price-custom {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-primary);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    color: var(--color-text-dim);
    font-size: 0.95rem;
}

.pricing-features li svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

.pricing-btn {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    padding: 1rem 2rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition);
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.pricing-btn:hover {
    background: var(--color-primary);
    color: var(--color-bg);
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.4);
}

.pricing-card.featured .pricing-btn {
    background: var(--color-primary);
    color: var(--color-bg);
}

.pricing-card.featured .pricing-btn:hover {
    background: var(--color-text);
    border-color: var(--color-text);
}

/* AI Features Section */
.ai-section {
    background: var(--color-surface);
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
}

.ai-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-secondary), transparent);
}

.ai-section::after {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 0, 128, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: aiGlow 8s ease-in-out infinite;
}

@keyframes aiGlow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.ai-content {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: center;
}

.ai-text {
    position: relative;
    z-index: 2;
}

.ai-headline {
    margin-bottom: 2rem;
}

.ai-title-line {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--color-secondary);
    display: block;
    line-height: 1;
    text-shadow: 0 0 30px rgba(255, 0, 128, 0.5);
    animation: slideInLeft 0.8s ease-out;
}

.ai-title-sub {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text);
    display: block;
    margin-top: 1rem;
    animation: slideInLeft 0.8s ease-out 0.2s backwards;
}

.ai-description {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--color-text-dim);
    margin-bottom: 3rem;
    animation: fadeIn 1s ease-out 0.4s backwards;
}

.ai-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.ai-feature-card {
    background: var(--color-bg);
    border: 2px solid var(--color-border);
    padding: 2rem;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    transition: var(--transition);
    animation: fadeInScale 0.6s ease-out backwards;
}

.ai-feature-card:nth-child(1) { animation-delay: 0.5s; }
.ai-feature-card:nth-child(2) { animation-delay: 0.6s; }
.ai-feature-card:nth-child(3) { animation-delay: 0.7s; }
.ai-feature-card:nth-child(4) { animation-delay: 0.8s; }
.ai-feature-card:nth-child(5) { animation-delay: 0.9s; }
.ai-feature-card:nth-child(6) { animation-delay: 1s; }

.ai-feature-card:hover {
    border-color: var(--color-secondary);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 0, 128, 0.3);
}

.ai-feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 0, 128, 0.1);
    border: 2px solid var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.ai-feature-card:hover .ai-feature-icon {
    background: rgba(255, 0, 128, 0.2);
    transform: scale(1.1) rotate(5deg);
}

.ai-feature-icon svg {
    color: var(--color-secondary);
}

.ai-feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

.ai-feature-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text-dim);
}

/* AI Visual */
.ai-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.ai-brain {
    position: relative;
    width: 400px;
    height: 400px;
    animation: fadeIn 1s ease-out 0.6s backwards;
}

.brain-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    background: var(--color-bg);
    border: 3px solid var(--color-secondary);
    clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 25px, 100% 100%, 25px 100%, 0 calc(100% - 25px));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 60px rgba(255, 0, 128, 0.5);
    z-index: 10;
}

.core-pulse {
    position: absolute;
    inset: -20px;
    border: 2px solid var(--color-secondary);
    clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 25px, 100% 100%, 25px 100%, 0 calc(100% - 25px));
    animation: corePulse 3s ease-in-out infinite;
    opacity: 0;
}

@keyframes corePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.6;
    }
}

.brain-icon {
    color: var(--color-secondary);
    filter: drop-shadow(0 0 20px rgba(255, 0, 128, 0.6));
    animation: brainPulse 4s ease-in-out infinite;
}

@keyframes brainPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.neural-network {
    position: absolute;
    inset: 0;
}

.neural-node {
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--color-secondary);
    border: 2px solid var(--color-bg);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.8);
    animation: nodeFloat 4s ease-in-out infinite;
}

.node-1 { top: 10%; left: 10%; animation-delay: 0s; }
.node-2 { top: 10%; right: 10%; animation-delay: 0.5s; }
.node-3 { top: 50%; left: 0%; animation-delay: 1s; }
.node-4 { top: 50%; right: 0%; animation-delay: 1.5s; }
.node-5 { bottom: 10%; left: 10%; animation-delay: 2s; }
.node-6 { bottom: 10%; right: 10%; animation-delay: 2.5s; }
.node-7 { top: 0%; left: 50%; animation-delay: 3s; }
.node-8 { bottom: 0%; left: 50%; animation-delay: 3.5s; }

@keyframes nodeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.neural-connections {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.neural-line {
    stroke: var(--color-secondary);
    stroke-width: 2;
    stroke-dasharray: 5, 5;
    opacity: 0.3;
    animation: lineFlow 3s ease-in-out infinite;
}

@keyframes lineFlow {
    0%, 100% { opacity: 0.3; stroke-dashoffset: 0; }
    50% { opacity: 0.8; stroke-dashoffset: 10; }
}

.ai-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
}

.ai-stat-item {
    background: var(--color-bg);
    border: 2px solid var(--color-border);
    padding: 2rem 1.5rem;
    text-align: center;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
    transition: var(--transition);
}

.ai-stat-item:hover {
    border-color: var(--color-secondary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 128, 0.3);
}

.ai-stat-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-secondary);
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255, 0, 128, 0.5);
}

.ai-stat-label {
    font-size: 0.85rem;
    color: var(--color-text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobile Compatibility Section */
.mobile-section {
    background: var(--color-bg);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.mobile-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.mobile-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mobile-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: var(--color-surface);
    border: 8px solid var(--color-border);
    border-radius: 40px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: phoneFloat 6s ease-in-out infinite;
}

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: var(--color-bg);
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--color-bg);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.phone-button {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--color-border);
    border-radius: 2px;
}

.mobile-app {
    padding: 2rem 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
}

.mobile-menu-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu-icon span {
    width: 20px;
    height: 2px;
    background: var(--color-primary);
}

.mobile-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--color-primary);
}

.mobile-header svg {
    color: var(--color-text-dim);
}

.mobile-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.mobile-stat-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.mobile-stat-label {
    font-size: 0.7rem;
    color: var(--color-text-dim);
    text-transform: uppercase;
}

.mobile-stat-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-primary);
}

.mobile-chart {
    display: flex;
    align-items: flex-end;
    gap: 0.25rem;
    height: 80px;
    padding: 1rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
}

.mobile-chart-bar {
    flex: 1;
    background: var(--color-primary);
    opacity: 0.6;
    animation: mobileBarGrow 1s ease-out backwards;
}

@keyframes mobileBarGrow {
    from { height: 0 !important; }
}

.mobile-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-list-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
}

.mobile-list-icon {
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    flex-shrink: 0;
}

.mobile-list-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.75rem;
}

.mobile-list-text span:first-child {
    color: var(--color-text);
}

.mobile-list-time {
    color: var(--color-text-dim);
    font-size: 0.65rem;
}

.mobile-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-headline {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--color-text);
}

.mobile-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-dim);
}

.mobile-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-features li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.mobile-features li svg {
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.mobile-features li div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-features li strong {
    color: var(--color-text);
    font-size: 1rem;
}

.mobile-features li span {
    color: var(--color-text-dim);
    font-size: 0.9rem;
}

.mobile-badges {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.store-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: var(--color-surface);
    border: 2px solid var(--color-border);
    cursor: pointer;
    transition: var(--transition);
}

.store-badge:hover {
    border-color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.store-badge svg {
    color: var(--color-primary);
    width: 32px;
    height: 32px;
}

.store-badge div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.store-badge span {
    font-size: 0.7rem;
    color: var(--color-text-dim);
}

.store-badge strong {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--color-text);
}

/* E-Commerce Integrations Section */
.ecommerce-section {
    background: var(--color-bg);
    padding: 8rem 2rem;
    position: relative;
}

.ecommerce-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.section-description {
    text-align: center;
    max-width: 700px;
    margin: 1.5rem auto 0;
    font-size: 1.1rem;
    color: var(--color-text-dim);
    line-height: 1.8;
}

.ecommerce-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.ecommerce-card {
    background: var(--color-surface);
    border: 2px solid var(--color-border);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: var(--transition);
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    animation: fadeInScale 0.6s ease-out backwards;
}

.ecommerce-card:nth-child(1) { animation-delay: 0s; }
.ecommerce-card:nth-child(2) { animation-delay: 0.1s; }
.ecommerce-card:nth-child(3) { animation-delay: 0.2s; }
.ecommerce-card:nth-child(4) { animation-delay: 0.3s; }
.ecommerce-card:nth-child(5) { animation-delay: 0.4s; }
.ecommerce-card:nth-child(6) { animation-delay: 0.5s; }
.ecommerce-card:nth-child(7) { animation-delay: 0.6s; }
.ecommerce-card:nth-child(8) { animation-delay: 0.7s; }

.ecommerce-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.3);
}

.ecommerce-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.ecommerce-logo svg {
    color: var(--color-accent);
    transition: var(--transition);
}

.ecommerce-card:hover .ecommerce-logo svg {
    color: var(--color-primary);
    transform: scale(1.1);
}

.platform-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-text);
}

.ecommerce-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex-grow: 1;
}

.ecommerce-features li {
    font-size: 0.9rem;
    color: var(--color-text-dim);
    padding-left: 1.5rem;
    position: relative;
}

.ecommerce-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
}

.integration-status {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--color-accent);
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

.integration-status.active .status-dot {
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.integration-status.developing {
    background: rgba(255, 165, 0, 0.1);
    border-color: #ffa500;
}

.integration-status.developing .status-dot {
    width: 8px;
    height: 8px;
    background: #ffa500;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.ecommerce-cta {
    text-align: center;
    padding: 3rem;
    background: var(--color-surface);
    border: 2px solid var(--color-border);
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px));
}

.ecommerce-cta h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.ecommerce-cta p {
    font-size: 1.1rem;
    color: var(--color-text-dim);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Stats Section */
.stats {
    background: var(--color-surface);
    padding: 4rem 2rem;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 2px;
    height: 60px;
    background: var(--color-border);
}

/* Contact Section */
.contact {
    background: var(--color-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.contact-text {
    color: var(--color-text-dim);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-label {
    font-size: 0.75rem;
    color: var(--color-text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-value {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-primary);
}

.contact-form {
    background: var(--color-surface);
    border: 2px solid var(--color-border);
    padding: 3rem;
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px));
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: var(--color-bg);
    border: 2px solid var(--color-border);
    color: var(--color-text);
    padding: 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    background: var(--color-primary);
    color: var(--color-bg);
    border: none;
    padding: 1rem 2.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
    width: 100%;
    justify-content: center;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.4);
}

/* Footer */
.footer {
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--color-border);
}

.footer-tagline {
    color: var(--color-text-dim);
    margin-top: 1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: var(--color-text-dim);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-text-dim);
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-legal a {
    color: var(--color-text-dim);
    text-decoration: none;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--color-primary);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container,
    .product-showcase,
    .contact-content,
    .mobile-content,
    .ai-content {
        grid-template-columns: 1fr;
    }
    
    .hero-visual {
        height: 400px;
    }
    
    .dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .ai-title-line {
        font-size: 3rem;
    }
    
    .ai-title-sub {
        font-size: 1.5rem;
    }
    
    .ai-features-grid {
        grid-template-columns: 1fr;
    }
    
    .ai-brain {
        width: 300px;
        height: 300px;
    }
    
    .mobile-headline {
        font-size: 2.5rem;
    }
    
    .mobile-visual {
        order: -1;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: scale(1) translateY(-10px);
    }
    
    .stats-container {
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .stat-divider {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .ai-title-line {
        font-size: 2.5rem;
    }
    
    .ai-title-sub {
        font-size: 1.2rem;
    }
    
    .ai-stats {
        grid-template-columns: 1fr;
    }
    
    .mobile-headline {
        font-size: 2rem;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-wrap: wrap;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .mobile-badges {
        flex-direction: column;
    }
    
    .phone-mockup {
        width: 200px;
        height: 400px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
}
