/* Reset & Root Variables */
:root {
    --bg-dark: #0a0f0d;
    --bg-card: rgba(18, 28, 24, 0.65);
    --bg-card-border: rgba(147, 197, 168, 0.15);
    --primary-sage: #88c49e;
    --primary-sage-glow: rgba(136, 196, 158, 0.3);
    --accent-emerald: #40a072;
    --text-primary: #eaf4ee;
    --text-secondary: #9cb3a6;
    --text-muted: #657b6f;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

/* Ambient Background Glows */
.ambient-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    z-index: 0;
}

.glow-1 {
    top: -100px;
    left: -100px;
    background: radial-gradient(circle, rgba(64, 160, 114, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
}

.glow-2 {
    top: 40%;
    right: -150px;
    background: radial-gradient(circle, rgba(136, 196, 158, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Glassmorphism Styling */
.glass {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--bg-card-border);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 15, 13, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(136, 196, 158, 0.1);
    padding: 16px 0;
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-logo {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 0 12px var(--primary-sage-glow);
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

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

.nav-links a:hover {
    color: var(--primary-sage);
}

.nav-policy {
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid var(--bg-card-border);
    background: rgba(255, 255, 255, 0.03);
}

.nav-policy.active, .nav-policy:hover {
    border-color: var(--primary-sage);
    color: var(--primary-sage) !important;
}

/* Hero Section */
.hero {
    padding: 90px 0 70px;
}

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

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 30px;
    background: rgba(136, 196, 158, 0.1);
    border: 1px solid rgba(136, 196, 158, 0.2);
    color: var(--primary-sage);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--accent-emerald);
    box-shadow: 0 0 8px var(--accent-emerald);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-sage) 0%, #b3e6c8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-emerald) 0%, #2e7a55 100%);
    color: #fff;
    box-shadow: 0 8px 24px rgba(64, 160, 114, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(64, 160, 114, 0.45);
}

.btn-playstore .btn-icon {
    width: 26px;
    height: 26px;
}

.btn-playstore span {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.1;
}

.btn-playstore small {
    font-size: 0.65rem;
    opacity: 0.85;
    letter-spacing: 0.5px;
}

.btn-playstore strong {
    font-size: 1rem;
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-sage);
    transform: translateY(-2px);
}

/* Hero Card Image */
.hero-image-wrapper {
    display: flex;
    justify-content: center;
}

.hero-card {
    padding: 40px;
    text-align: center;
    width: 100%;
    max-width: 320px;
    transition: var(--transition);
}

.hero-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-sage);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.hero-app-icon {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px var(--primary-sage-glow);
}

.hero-card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.hero-card-tagline {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Features */
.features {
    padding: 80px 0;
}

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

.section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 12px;
}

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

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

.feature-card {
    padding: 32px;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(136, 196, 158, 0.4);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(136, 196, 158, 0.1);
    color: var(--primary-sage);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

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

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

/* About Section */
.about {
    padding: 40px 0 80px;
}

.about-card {
    padding: 48px;
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 16px;
}

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

.about-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    font-weight: 500;
}

.about-list span {
    color: var(--primary-sage);
    font-weight: bold;
}

/* Policy Page */
.policy-page {
    padding: 60px 0 90px;
}

.policy-card {
    padding: 48px;
    max-width: 900px;
    margin: 0 auto;
}

.policy-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 8px;
    color: var(--primary-sage);
}

.policy-date {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 36px;
    border-bottom: 1px solid var(--bg-card-border);
    padding-bottom: 16px;
}

.policy-section {
    margin-bottom: 30px;
}

.policy-section h2 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.policy-section p {
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.policy-section ul {
    margin-left: 20px;
    color: var(--text-secondary);
}

.policy-section li {
    margin-bottom: 8px;
}

.contact-email {
    margin-top: 10px;
    color: var(--primary-sage) !important;
}

/* Footer */
.footer {
    border-top: 1px solid rgba(136, 196, 158, 0.1);
    padding: 40px 0;
    background: rgba(6, 10, 8, 0.9);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
}

.footer-logo {
    width: 28px;
    height: 28px;
    border-radius: 6px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-sage);
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 868px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 36px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}
