:root {
    --bg-dark: #030712;
    --bg-accent: #0f172a;
    --primary: #6366f1;
    --primary-glow: rgba(99, 102, 241, 0.4);
    --secondary: #0ea5e9;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --nav-bg: rgba(3, 7, 18, 0.8);
}

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

html {
    scroll-behavior: smooth;
}

body.lp-body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.lp-noise {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3%3Ffilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.lp-shell {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography Helpers */
.text-gradient {
    background: linear-gradient(135deg, #fff 0%, var(--primary) 50%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
}

/* Navigation */
.lp-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: 80px;
    background: var(--nav-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
}

.lp-nav-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lp-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #fff;
    text-decoration: none;
}

.lp-logo svg {
    width: 32px;
    height: 32px;
}

.lp-menu {
    display: flex;
    gap: 2.5rem;
}

.lp-menu a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.lp-menu a:hover {
    color: #fff;
}

.lp-nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lp-link {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-lg {
    padding: 0.8rem 2rem;
    font-size: 1.05rem;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 0 20px var(--primary-glow);
}

.btn-primary:hover {
    background: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--primary-glow);
}

.btn-outline {
    background: transparent;
    border-color: var(--glass-border);
    color: #fff;
}

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

.btn-glass {
    background: var(--glass);
    border-color: var(--glass-border);
    color: #fff;
    backdrop-filter: blur(4px);
}

/* Hero Section */
.lp-hero {
    position: relative;
    padding: 180px 0 120px;
    overflow: hidden;
}

.lp-hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    filter: blur(60px);
}

.lp-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.lp-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 99px;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.lp-hero-copy h1 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.lp-hero-copy p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 560px;
}

.lp-cta-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
}

.lp-hero-stats {
    display: flex;
    gap: 3rem;
}

.stat {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.stat span {
    display: block;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 4px;
}

/* Hero Visual */
.lp-hero-visual {
    position: relative;
    height: 500px;
}

.visual-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}

.visual-orb-1 {
    width: 300px;
    height: 300px;
    background: var(--primary);
    top: 10%;
    right: 10%;
    opacity: 0.2;
}

.visual-orb-2 {
    width: 250px;
    height: 250px;
    background: var(--secondary);
    bottom: 10%;
    left: 10%;
    opacity: 0.2;
}

.visual-scene {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.card-main {
    width: 380px;
    padding: 24px;
}

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

.dots { display: flex; gap: 6px; }
.dots span { width: 8px; height: 8px; border-radius: 50%; background: var(--glass-border); }

.card-sub {
    position: absolute;
    top: 60%;
    right: 10%;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 10px #10b981;
}

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

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

/* Skeleton Loaders */
.skeleton-line {
    height: 8px;
    background: var(--glass-border);
    border-radius: 4px;
    margin-bottom: 12px;
}

.skeleton-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
}

.skeleton-box {
    height: 60px;
    background: var(--glass-border);
    border-radius: 12px;
}

.w-full { width: 100%; }
.w-two-thirds { width: 66%; }

/* Sections */
.lp-section {
    padding: 120px 0;
}

.lp-section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.lp-section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.lp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.lp-card {
    background: var(--bg-accent);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 3rem 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.lp-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
}

.lp-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.i-vps { background: rgba(99, 102, 241, 0.1); color: var(--primary); }
.i-line { background: rgba(14, 165, 233, 0.1); color: var(--secondary); }
.i-ip { background: rgba(16, 185, 129, 0.1); color: #10b981; }

.lp-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.lp-card p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.lp-card-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
}

/* Feature Grid */
.lp-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.lp-feature-list {
    margin-top: 3rem;
    display: grid;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
}

.feature-item .icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
}

.feature-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

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

/* Footer */
.lp-footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--glass-border);
}

.lp-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 60px;
}

.lp-footer-brand p {
    color: var(--text-muted);
    margin-top: 1rem;
    max-width: 300px;
}

.lp-footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.link-group h5 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.link-group a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.link-group a:hover {
    color: #fff;
}

.lp-footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Logo Style */
.site-logo { 
  height: 28px; 
  max-height: 28px; 
  width: auto; 
  display: block; 
} 

@media (max-width: 768px) { 
  .site-logo { 
    height: 24px; 
    max-height: 24px; 
  } 
}

/* Responsive */
@media (max-width: 1024px) {
    .lp-hero-grid, .lp-grid-2 {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .lp-hero-copy {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .lp-cta-group, .lp-hero-stats {
        justify-content: center;
    }
    
    .lp-hero-visual {
        display: none;
    }
    
    .lp-menu {
        display: none;
    }
}

@media (max-width: 640px) {
    .lp-hero-copy h1 {
        font-size: 3rem;
    }
    
    .lp-cta-group {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-lg {
        width: 100%;
    }
    
    .lp-footer-grid {
        grid-template-columns: 1fr;
    }
}
