.landing-body {
    background-color: var(--bg-body);
    color: var(--text-primary);
    font-family: var(--font-sans);
    overflow-x: hidden;
    position: relative;
}

.landing-body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(139, 92, 246, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(236, 72, 153, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: rgba(12, 10, 29, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    z-index: 1000;
}

.brand-glow {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.02em;
}

.brand-glow-icon {
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.brand-glow-icon i {
    color: #fff !important;
    width: 16px;
    height: 16px;
}

.nav-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.hero-glass {
    padding: 160px 5% 100px;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hardware-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    background: var(--accent-purple-soft);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 100px;
    color: #a78bfa;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 22px;
    color: var(--text-primary);
    max-width: 900px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 36px;
}

.btn-glow {
    background-color: var(--accent-purple);
    color: #fff;
    border: none;
    padding: 0 30px;
    height: 46px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    font-family: var(--font-sans);
    cursor: pointer;
    transition: all 0.15s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-glow:hover {
    background-color: #7c3aed;
    box-shadow: 0 0 0 3px var(--accent-purple-soft);
    transform: translateY(-1px);
}

.btn-outline-glass {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0 30px;
    height: 46px;
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 1rem;
    font-family: var(--font-sans);
    cursor: pointer;
    transition: all 0.15s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-outline-glass:hover {
    background: var(--bg-surface-hover);
    border-color: var(--text-secondary);
}

.hardware-visual {
    margin-top: 60px;
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 350px;
}

.lucide-hero-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.hero-icon {
    width: 120px;
    height: 120px;
    stroke: var(--accent-purple);
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.3));
    animation: float 4s ease-in-out infinite;
}

.server-icon {
    stroke: var(--success-color);
    filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.3));
    animation: float 4s ease-in-out infinite 2s;
}

.connection-line {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-purple), var(--success-color));
    border-radius: 2px;
    opacity: 0.4;
    z-index: -1;
}

.connection-line::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 8px #fff;
    animation: slideData 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

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

@keyframes slideData {
    0% { left: 0; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

.data-line {
    position: absolute;
    left: 50%;
    bottom: 50%;
    width: 2px;
    background: linear-gradient(to top, transparent, var(--accent-pink), transparent);
    animation: stream 2s linear infinite;
    z-index: 1;
    opacity: 0;
}
.line-1 { height: 150px; transform: translateX(-40px); animation-delay: 0s; }
.line-2 { height: 200px; transform: translateX(0); animation-delay: 0.7s; }
.line-3 { height: 120px; transform: translateX(40px); animation-delay: 1.3s; }

.bento-section {
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.bento-header {
    text-align: center;
    margin-bottom: 56px;
}

.bento-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    auto-rows: 240px;
}

.bento-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 26px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    transition: all 0.2s ease;
}

.bento-card:hover {
    border-color: var(--accent-purple);
    transform: translateY(-2px);
}

.bento-large { grid-column: span 2; }
.bento-tall { grid-row: span 2; }

.bento-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: var(--accent-purple-soft);
    border: 1px solid rgba(139, 92, 246, 0.15);
    color: var(--accent-purple);
}

.bento-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

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

.skr-footer {
    border-top: 1px solid var(--border-color);
    padding: 56px 5%;
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    background: var(--bg-body);
    position: relative;
    z-index: 1;
}

.skr-brand {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.skr-brand img {
    width: 24px;
    height: 24px;
    border-radius: 4px;
}

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

.social-links a {
    color: var(--text-secondary);
    transition: color 0.15s;
}

.social-links a:hover {
    color: var(--accent-purple);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

@media (max-width: 900px) {
    .bento-grid {
        grid-template-columns: 1fr;
        auto-rows: auto;
    }
    .bento-large, .bento-tall {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 640px) {
    .hero-glass { padding: 120px 5% 60px; }
    .hardware-visual { height: 250px; }
    .lucide-hero-wrapper { gap: 30px; }
    .hero-icon, .server-icon { width: 80px; height: 80px; }
    .connection-line { width: 80px; }
}
