:root {
    /* Color Palette */
    --bg-dark: #030712;
    --bg-card: rgba(17, 24, 39, 0.7);
    --bg-card-border: rgba(255, 255, 255, 0.1);
    
    --primary: #10b981;
    --primary-light: #34d399;
    --secondary: #3b82f6;
    --secondary-light: #60a5fa;
    
    --text-main: #f9fafb;
    --text-muted: #9ca3af;
    
    --accent-gradient: linear-gradient(135deg, var(--primary), var(--secondary));
    --surface-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    
    /* Spacing & Radii */
    --radius-lg: 24px;
    --radius-md: 16px;
    --container-max: 1200px;
    
    /* Shadows */
    --shadow-glow: 0 0 20px rgba(16, 185, 129, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .brand {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Utilities */
.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background: var(--accent-gradient);
    color: #fff;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.btn-outline {
    border: 1px solid var(--bg-card-border);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.full-width {
    width: 100%;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: background 0.3s ease, padding 0.3s ease;
}

.navbar.scrolled {
    background: rgba(3, 7, 18, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    border-bottom: 1px solid var(--bg-card-border);
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
}

.logo-box {
    width: 40px;
    height: 40px;
    background: var(--accent-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 900;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-muted);
    font-weight: 500;
}

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

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 140px 0 100px;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 60px;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary-light);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero-btns {
    display: flex;
    gap: 16px;
}

.hero-visual {
    position: relative;
    z-index: 2;
}

.main-visual {
    padding: 24px;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.8), rgba(17, 24, 39, 0.4));
    transform: perspective(1000px) rotateY(-5deg);
}

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

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

.status-indicator {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
}

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

.status-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
}

.item-icon { font-size: 1.5rem; }
.item-info { flex: 1; }
.item-info strong { display: block; font-size: 0.9rem; }
.item-info span { font-size: 0.75rem; color: var(--text-muted); }

.badge-status {
    font-size: 0.7rem;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 800;
}
.badge-status.online { background: rgba(16, 185, 129, 0.2); color: var(--primary); }
.badge-status.secure { background: rgba(59, 130, 246, 0.2); color: var(--secondary); }

/* Hero Shapes */
.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: rgba(16, 185, 129, 0.15);
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: rgba(59, 130, 246, 0.15);
    bottom: 50px;
    left: -50px;
}

/* Sections Common */
section { padding: 100px 0; }

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

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.service-card {
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Apps Showcase */
.apps-showcase {
    background: linear-gradient(180deg, var(--bg-dark), #0a0f1e);
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.apps-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.pill {
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--bg-card-border);
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
}

.feature-checklist {
    margin-top: 24px;
}

.feature-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.check {
    color: var(--primary);
    font-weight: 900;
}

/* Process Section */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    position: relative;
}

.step {
    position: relative;
}

.step-number {
    font-size: 4rem;
    font-weight: 900;
    font-family: 'Outfit';
    opacity: 0.1;
    margin-bottom: -30px;
}

.step h3 { font-size: 1.5rem; margin-bottom: 12px; }
.step p { color: var(--text-muted); }

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    padding: 48px 32px;
    position: relative;
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
    z-index: 10;
}

.popular-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 800;
}

.plan-header { margin-bottom: 32px; }
.plan-header h3 { font-size: 1.8rem; margin-bottom: 8px; }
.price { font-size: 2.5rem; font-weight: 800; }
.price span { font-size: 1rem; color: var(--text-muted); font-weight: 400; }

.plan-features { margin-bottom: 40px; flex: 1; }
.plan-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.plan-features li::before { content: '→'; color: var(--primary); }

/* Final CTA */
.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px;
    background: var(--accent-gradient);
    border: none;
    color: white;
}

.cta-text h2 { font-size: 2.5rem; margin-bottom: 16px; }
.cta-text p { font-size: 1.2rem; opacity: 0.9; max-width: 600px; }

.cta-box .btn-primary {
    background: white;
    color: var(--bg-dark);
}

/* Copy Email Button */
.btn-copy {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--bg-card-border);
    color: var(--text-main);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-copy:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    border-color: var(--primary);
}

.btn-flash {
    background: var(--primary) !important;
    color: white !important;
    border-color: var(--primary) !important;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -150px;
    left: 0;
    width: 100%;
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--primary);
    padding: 20px 24px;
    z-index: 9999;
    display: flex;
    justify-content: center;
    transition: bottom 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content {
    max-width: var(--container-max);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.cookie-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.cookie-text a {
    color: var(--primary-light);
    text-decoration: underline;
    font-weight: 500;
}

.cookie-btns {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--primary);
    color: white;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 600;
    z-index: 2000;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.toast.show {
    transform: translateX(-50%) translateY(0);
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo img {
    filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.3));
}

.footer-brand p {
    margin-top: 20px;
    color: var(--text-muted);
    max-width: 320px;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.link-group h4 { margin-bottom: 24px; font-size: 1.1rem; }
.link-group ul li { margin-bottom: 12px; }
.link-group a { color: var(--text-muted); }
.link-group a:hover { color: var(--primary); }

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

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Responsive */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-text p { margin: 0 auto 40px; }
    .hero-btns { justify-content: center; }
    .main-visual { transform: none; }
    .split-layout { grid-template-columns: 1fr; gap: 40px; }
    .cta-box { flex-direction: column; text-align: center; padding: 40px; gap: 32px; }
}

@media (max-width: 768px) {
    .nav-links { 
        display: none; 
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(3, 7, 18, 0.98);
        padding: 40px 24px;
        border-bottom: 1px solid var(--bg-card-border);
        gap: 24px;
        text-align: center;
        z-index: 999;
    }
    
    .nav-links.active {
        display: flex;
    }

    .mobile-toggle { display: flex; }
    .nav-email-btn { display: none; }
    .footer-content { grid-template-columns: 1fr; }
    .pricing-card.featured { transform: scale(1); }
    .cookie-content { flex-direction: column; text-align: center; gap: 16px; }
    .cookie-btns { width: 100%; }
    .cookie-btns .btn { width: 100%; }
}
