:root {
    --primary-color: #00c853;
    /* Vibrant Green */
    --secondary-color: #2962ff;
    /* Tech Blue */
    --dark-bg: #0a192f;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --text-light: #ffffff;
    --text-dim: #b0bec5;
    --font-main: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 25, 47, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

#applogo {
    width: 30px;
    height: 30px;
    background: transparent;
    mix-blend-mode: screen;
    filter: brightness(1.2);
}

.highlight {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dim);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.btn-nav {
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    color: var(--primary-color) !important;
}

.btn-nav:hover {
    background: var(--primary-color);
    color: white !important;
}

.hamburger {
    display: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(10, 25, 47, 0.5), rgba(10, 25, 47, 0.2)), url('../assets/background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    padding: 0 5%;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.9), 0 2px 4px rgba(0, 0, 0, 0.8);
}

.gradient-text {
    color: var(--primary-color);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 1), 0 2px 6px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 200, 83, 0.8);
}

.hero p {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 2.5rem;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 1), 0 1px 4px rgba(0, 0, 0, 0.9);
    font-weight: 500;
    line-height: 1.6;
}

.cta-group {
    display: flex;
    gap: 1rem;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 200, 83, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(5px);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Features Section */
.features {
    padding: 5rem 5%;
    background: var(--dark-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features h2,
.team h2,
.download h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Feature Categories */
.feature-category {
    margin-bottom: 5rem;
}

.feature-category h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-color);
    padding-left: 1rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--glass-bg);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s, background 0.3s;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
}

.icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h4 {
    margin-bottom: 0.8rem;
    color: var(--text-light);
    font-size: 1.2rem;
}

.feature-card p {
    color: var(--text-dim);
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Vision Section */
.vision {
    padding: 5rem 5%;
    background: linear-gradient(to bottom, #0f2440, var(--dark-bg));
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.vision-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.vision-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--secondary-color);
    transform: translateY(-5px);
}

.card-number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 10px;
    right: 20px;
    transition: color 0.3s;
}

.vision-card:hover .card-number {
    color: rgba(41, 98, 255, 0.2);
}

.vision-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    position: relative;
    z-index: 1;
}

.vision-card p {
    color: var(--text-dim);
    line-height: 1.6;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* Team Section */
.team {
    padding: 5rem 5%;
    background: linear-gradient(to bottom, var(--dark-bg), #0f2440);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    background: rgba(10, 25, 47, 0.6);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--glass-border);
}

.team-img-placeholder {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    opacity: 0.8;
}

.team-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.team-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.team-card .role {
    display: block;
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-card p {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.contact-info {
    font-size: 0.85rem;
    color: var(--secondary-color);
}

/* Download Section */
.download {
    padding: 6rem 5%;
    background: url('../assets/background.png');
    background-size: cover;
    background-position: center;
    position: relative;
    text-align: center;
}

.download::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 47, 0.9);
}

.download-content {
    position: relative;
    z-index: 1;
}

.download p {
    color: var(--text-dim);
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
}

.store-badge {
    display: inline-flex;
    align-items: center;
    background: black;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s;
}

.store-badge:hover {
    transform: scale(1.05);
}

.store-icon {
    font-size: 2rem;
    margin-right: 1rem;
    color: var(--primary-color);
}

.store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.store-text span:first-child {
    font-size: 0.7rem;
    text-transform: uppercase;
}

.store-text .store-name {
    font-size: 1.2rem;
    font-weight: 700;
}

/* Pricing Section */
.pricing {
    padding: 5rem 5%;
    background: var(--dark-bg);
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--glass-bg);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    text-align: center;
    position: relative;
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(0, 200, 83, 0.1));
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 30px rgba(0, 200, 83, 0.15);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.price span {
    font-size: 1rem;
    color: var(--text-dim);
    font-weight: 400;
}

.features-list {
    list-style: none;
    text-align: left;
    margin-bottom: 2.5rem;
}

.features-list li {
    margin-bottom: 0.8rem;
    color: var(--text-dim);
    font-size: 0.95rem;
}

.btn-price {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid var(--glass-border);
    color: var(--text-light);
    transition: all 0.3s;
}

.btn-price:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-featured {
    background: var(--primary-color);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.3);
}

.btn-featured:hover {
    background: #00e676;
    box-shadow: 0 6px 20px rgba(0, 200, 83, 0.5);
}

/* Footer */
footer {
    padding: 3rem 5%;
    background: #050d1a;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.social-links a {
    color: var(--text-dim);
    margin-left: 1.5rem;
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--primary-color);
}

.copyright {
    text-align: center;
    color: #546e7a;
    font-size: 0.9rem;
}

/* Legal Pages */
.legal-page {
    padding: 8rem 5% 5rem;
    background: var(--dark-bg);
    min-height: 100vh;
}

.legal-page .container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.last-updated {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.legal-page p {
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-page li {
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
        /* Add JS toggle later */
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }

    .social-links a {
        margin: 0 0.75rem;
    }
}