@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

:root {
    --bg-dark: #070908;
    --bg-surface: rgba(18, 22, 20, 0.7);
    --border-color: rgba(52, 211, 153, 0.15);
    --border-glow: rgba(52, 211, 153, 0.05);
    --accent-emerald: #10b981;
    --accent-mint: #34d399;
    --text-primary: #f3f4f6;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    --font-sans: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Gradients */
.bg-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(130px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.15;
}

.glow-top {
    top: -200px;
    right: -100px;
    background: radial-gradient(circle, var(--accent-mint) 0%, transparent 70%);
}

.glow-bottom {
    bottom: -200px;
    left: -100px;
    background: radial-gradient(circle, var(--accent-emerald) 0%, transparent 70%);
}

/* Header & Navigation */
header {
    width: 100%;
    padding: 24px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(7, 9, 8, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.logo-leaf {
    color: var(--accent-mint);
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-mint));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

nav {
    display: flex;
    gap: 32px;
}

nav a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}

nav a:hover, nav a.active {
    color: var(--accent-mint);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Hero Section */
.hero {
    padding: 100px 0 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.badge {
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: rgba(52, 211, 153, 0.08);
    border: 1px solid rgba(52, 211, 153, 0.2);
    color: var(--accent-mint);
    margin-bottom: 24px;
    display: inline-block;
}

h1 {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    max-width: 900px;
}

h1 span {
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-mint));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin-bottom: 40px;
}

.cta-group {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.btn-primary {
    padding: 16px 32px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-mint));
    color: #070908;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.25);
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.35);
}

.btn-secondary {
    padding: 16px 32px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Glassmorphism Showcase Card */
.showcase-card {
    width: 100%;
    max-width: 950px;
    padding: 48px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 40px var(--border-glow);
    border-radius: 28px;
    backdrop-filter: blur(20px);
    display: flex;
    gap: 40px;
    align-items: center;
    text-align: left;
    margin-bottom: 120px;
    position: relative;
    overflow: hidden;
}

.showcase-visual {
    flex: 1.2;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.phone-mock {
    width: 280px;
    height: 560px;
    border-radius: 40px;
    border: 10px solid #1a1f1c;
    background: #0d0f0e;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.phone-screen {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.phone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.phone-logo {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
}

.phone-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.scan-box {
    border: 2px dashed var(--accent-mint);
    border-radius: 16px;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    background: rgba(52, 211, 153, 0.02);
}

.scan-icon {
    font-size: 2rem;
    color: var(--accent-mint);
}

.phone-stats {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 12px;
}

.showcase-text {
    flex: 1;
}

.showcase-text h2 {
    font-family: var(--font-serif);
    font-size: 2.25rem;
    margin-bottom: 16px;
}

.showcase-text p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* Feature Grid */
.features {
    padding-bottom: 120px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-box {
    padding: 40px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    transition: var(--transition);
}

.feature-box:hover {
    border-color: var(--border-color);
    background: rgba(52, 211, 153, 0.02);
    transform: translateY(-4px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(52, 211, 153, 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    color: var(--accent-mint);
    font-size: 1.5rem;
}

.feature-box h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-box p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Privacy Page Specifics */
.privacy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 24px;
}

.privacy-header {
    text-align: center;
    margin-bottom: 60px;
}

.privacy-header h1 {
    font-size: 3rem;
    margin-bottom: 16px;
}

.privacy-content section {
    margin-bottom: 48px;
}

.privacy-content h2 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 8px;
}

.privacy-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.privacy-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.privacy-content li {
    margin-bottom: 8px;
}

.alert-box {
    padding: 20px;
    background: rgba(16, 185, 129, 0.04);
    border-left: 4px solid var(--accent-emerald);
    border-radius: 0 12px 12px 0;
    margin-bottom: 24px;
}

.alert-box p {
    margin-bottom: 0;
    font-weight: 500;
    color: var(--text-primary);
}

/* Footer */
footer {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

footer a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

footer a:hover {
    color: var(--accent-mint);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.75rem;
    }
    
    .showcase-card {
        flex-direction: column;
        padding: 32px 24px;
        text-align: center;
    }
    
    .showcase-text {
        text-align: center;
    }
}
