:root {
    /* Color Palette */
    --bg-color: #101510;
    --surface-color: #1C211C;
    --primary-color: #8EDBA5;
    --primary-text: #00391B;
    --secondary-color: #B6CCB9;
    --text-main: #E0E4DE;
    --text-muted: #C0C9C0;
    --accent-glow: rgba(142, 219, 165, 0.15);

    /* Spacing & Layout */
    --container-width: 1200px;
    --header-height: 80px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Background Effects */
.background-glow {
    position: fixed;
    top: -20%;
    left: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
    filter: blur(80px);
}

/* Utility Classes */
.glass {
    background: rgba(28, 33, 28, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.gradient-text {
    background: linear-gradient(135deg, #fff 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Typography */
h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 40px;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-main);
}

p {
    color: var(--text-muted);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--primary-text);
    box-shadow: 0 4px 20px rgba(142, 219, 165, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(142, 219, 165, 0.35);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.nav-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-main);
}

.logo-img {
    height: 32px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a:not(.btn) {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:not(.btn):hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    padding-top: calc(var(--header-height) + 80px);
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(142, 219, 165, 0.1);
    color: var(--primary-color);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(142, 219, 165, 0.2);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.reqs {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
    opacity: 0.7;
}

/* Phone Mockup */
.phone-mockup {
    width: 300px;
    height: 600px;
    background: #000;
    border-radius: 40px;
    border: 8px solid #2a2a2a;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    margin: 0 auto;
    overflow: hidden;
}

.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.screen-content {
    background: linear-gradient(180deg, #1C211C 0%, #101510 100%);
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 32px;
}

/* Overlay Simulation */
.overlay-widget {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    background: rgba(28, 33, 28, 0.95);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.widget-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.profit {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin-bottom: 16px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: var(--primary-color);
    border-radius: 4px;
}

.stats-row {
    display: flex;
    justify-content: space-between;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat .label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.stat .value {
    font-weight: 600;
    color: var(--text-main);
}

/* Features */
.features {
    padding: 100px 0;
    position: relative;
}

.section-title {
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.feature-card {
    padding: 32px;
    border-radius: var(--radius-md);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(142, 219, 165, 0.3);
}

.icon-box {
    width: 48px;
    height: 48px;
    background: rgba(142, 219, 165, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: var(--primary-color);
}

/* Install Steps */
.install {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-color) 0%, #0d110d 100%);
}

.steps-container {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 40px;
}

.step {
    display: flex;
    gap: 24px;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--surface-color);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.step-content {
    padding-top: 8px;
}

/* CTA */
.cta-section {
    padding: 100px 0;
}

.cta-box {
    text-align: center;
    padding: 64px 20px;
    border-radius: var(--radius-lg);
    border-color: rgba(142, 219, 165, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-box h2 {
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--text-muted);
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
}

.copyright {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Permissions Section */
.permissions {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(180deg, #101510 0%, #0d110d 100%);
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin: -30px auto 50px;
    max-width: 600px;
    font-size: 1.1rem;
}

.perm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.perm-card {
    padding: 30px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(142, 219, 165, 0.1);
    transition: transform 0.3s ease;
}

.perm-card:hover {
    transform: translateY(-5px);
    border-color: rgba(142, 219, 165, 0.3);
}

.perm-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.step-badge {
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    color: var(--primary-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.perm-card h3 {
    margin-bottom: 0;
    font-size: 1.25rem;
}

.perm-card p {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.perm-steps {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 8px;
    border-left: 2px solid var(--primary-color);
}

.mini-step {
    font-size: 0.9rem;
    color: var(--text-main);
    margin-bottom: 8px;
}

.mini-step:last-child {
    margin-bottom: 0;
}

/* Alert Box */
.alert-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    border-radius: var(--radius-sm);
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.2);
    max-width: 800px;
    margin: 0 auto;
}

.alert-icon {
    font-size: 1.5rem;
}

.alert-box p {
    color: #ffd54f;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.alert-box strong {
    color: #ffca28;
}

/* YouTube Link */
.yt-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    color: #ff0000;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    background: rgba(255, 0, 0, 0.1);
    padding: 8px 16px;
    border-radius: 100px;
    transition: all 0.3s ease;
}

.yt-link:hover {
    background: rgba(255, 0, 0, 0.2);
    transform: translateY(-2px);
}

.yt-icon {
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 900px) {
    .h1 {
        font-size: 2.5rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .reqs {
        justify-content: center;
    }

    .nav-links {
        display: none;
    }

    /* Simplified for mobile */

    .phone-mockup {
        margin-top: 40px;
        height: 500px;
        width: 260px;
    }
}