:root {
    --bg-dark: #fafaf9; /* Warm off-white for a human, approachable feel */
    --text-main: #1c1917; /* Soft black */
    --text-muted: #57534e;
    --accent-1: #d97706; /* Warm Amber */
    --accent-2: #ea580c; /* Soft Orange */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(0, 0, 0, 0.05);
}

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

/* Background Blobs for a softer aesthetic */
.blob {
    position: absolute;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.15;
    border-radius: 50%;
}
.blob-1 {
    top: -10%; right: -5%;
    width: 500px; height: 500px;
    background: var(--accent-2);
}
.blob-2 {
    bottom: 20%; left: -10%;
    width: 600px; height: 600px;
    background: var(--accent-1);
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glassmorphism Utilities - Softer for light mode */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
}

/* Nav */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 5%;
    max-width: 1200px;
    margin: 0 auto;
}
.logo {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--text-main);
}
.nav-links {
    display: flex;
    gap: 24px;
    align-items: center;
}
.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}
.nav-links a:hover {
    color: var(--text-main);
}

/* Buttons - More inviting */
.btn-primary, .btn-primary-small {
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: inline-block;
    text-align: center;
    box-shadow: 0 4px 14px 0 rgba(234, 88, 12, 0.2);
}
.btn-primary {
    padding: 16px 32px;
    font-size: 18px;
}
.btn-primary-small {
    padding: 10px 20px;
    font-size: 15px;
}
.btn-primary:hover, .btn-primary-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.3);
}

.btn-secondary {
    background: #fff;
    border: 1px solid #e5e7eb;
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    padding: 16px 32px;
    border-radius: 12px;
    transition: all 0.2s ease;
    display: inline-block;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.btn-secondary:hover {
    background: #f9fafb;
    border-color: #d1d5db;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 70vh;
    gap: 60px;
}
.hero-content {
    flex: 1;
}
.badge {
    display: inline-block;
    padding: 6px 16px;
    background: #fff;
    color: var(--accent-1);
    border: 1px solid #fde68a;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: 0 2px 4px rgba(217, 119, 6, 0.05);
}
.hero h1 {
    font-size: 56px;
    line-height: 1.15;
    margin: 0 0 24px 0;
    letter-spacing: -1.5px;
    font-weight: 800;
}
.hero p {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 540px;
    font-weight: 400;
    line-height: 1.6;
}
kbd {
    background: #f3f4f6;
    color: #374151;
    padding: 2px 8px;
    border-radius: 6px;
    border: 1px solid #d1d5db;
    font-family: monospace;
    font-size: 18px;
}
.cta-group {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
}
.micro-text {
    font-size: 12px !important;
    color: #64748b !important;
}

/* Mockup */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}
.glass-mockup {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
}
.mockup-header {
    display: flex;
    gap: 6px;
    padding: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.dot {
    width: 12px; height: 12px; border-radius: 50%;
}
.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #10b981; }
.mockup-body {
    padding: 20px;
}
.mockup-dropdown {
    margin-top: 10px;
    background: #1e293b;
    border-radius: 8px;
    border: 1px solid #334155;
    overflow: hidden;
}
.mockup-item {
    padding: 12px;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #334155;
}
.mockup-item.active { background: #334155; }
.mockup-item strong { color: var(--accent-1); font-size: 14px; }
.mockup-item span { color: var(--text-muted); font-size: 12px; }

/* Features */
.features {
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.features h2 {
    font-size: 40px;
    margin-bottom: 40px;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.feature-card {
    padding: 30px;
    text-align: left;
    transition: transform 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(251, 191, 36, 0.3);
}
.icon {
    font-size: 40px;
    margin-bottom: 16px;
}
.feature-card h3 {
    margin: 0 0 10px 0;
    font-size: 24px;
}
.feature-card p {
    color: var(--text-muted);
    margin: 0;
}

/* Pricing */
.pricing {
    padding: 80px 5%;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}
.pricing h2 {
    font-size: 40px;
    margin-bottom: 40px;
}
.pricing-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}
.price-card {
    padding: 40px;
    text-align: left;
    position: relative;
}
.premium-card {
    border-color: var(--accent-1);
    background: rgba(251, 191, 36, 0.05);
    transform: scale(1.05);
}
.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-1);
    color: #000;
    font-size: 12px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
}
.price-card h3 {
    font-size: 24px;
    margin: 0 0 10px 0;
}
.price {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}
.price span {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 400;
}
.price-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}
.price-card li {
    margin-bottom: 12px;
    color: var(--text-muted);
}
.price-card .btn-primary, .price-card .btn-secondary {
    display: block;
    width: 100%;
    box-sizing: border-box;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    margin-top: 40px;
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .cta-group {
        justify-content: center;
    }
    .pricing-container {
        grid-template-columns: 1fr;
    }
    .premium-card {
        transform: none;
    }
}
