:root {
    --bg-dark: #0F172A;
    --bg-card: #1E293B;
    --primary-slate: #5C6BC0; /* SlateBlue from app */
    --accent-green: #4ADE80;
    --premium-gold: #FFD700;
    --text-main: #F8FAFC;
    --text-muted: #94A3B8;
    --glass: rgba(30, 41, 59, 0.7);
    --border: rgba(148, 163, 184, 0.2);
}

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

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

h1, h2, h3, .logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navbar */
.navbar {
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

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

.logo {
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--primary-slate);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

/* Hero */
.hero {
    padding: 10rem 0 6rem;
    background: radial-gradient(circle at 80% 20%, rgba(92, 107, 192, 0.15) 0%, transparent 50%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(92, 107, 192, 0.2);
    border: 1px solid var(--primary-slate);
    border-radius: 100px;
    color: var(--primary-slate);
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--primary-slate);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Play Store Badge Link styling */
.play-store-link {
    display: inline-block;
    transition: transform 0.3s ease;
    height: 58px; /* matching the height of standard buttons */
}

.play-store-link:hover {
    transform: translateY(-3px);
}

.play-store-badge {
    height: 100%;
    width: auto;
    display: block;
}

.nav-btn {
    background: var(--primary-slate);
    color: white !important;
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: #4d5eb3;
    transform: translateY(-2px);
}

.btn {
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-slate);
    color: white;
    box-shadow: 0 10px 20px rgba(92, 107, 192, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(92, 107, 192, 0.4);
}

.btn-secondary {
    background: var(--bg-card);
    color: white;
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--border);
}

/* Phone Mockup */
.phone-mockup {
    position: relative;
    width: 320px;
    height: 650px;
    background: #000;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 50px 100px rgba(0,0,0,0.5), 0 0 0 10px #1e293b;
    margin: 0 auto;
}

.screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.feature-visual {
    margin-top: 1.5rem;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-img {
    transform: scale(1.05);
}

/* Features */
.features {
    padding: 8rem 0;
    background: var(--bg-card);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.feature-card {
    background: var(--bg-dark);
    padding: 3rem 2rem;
    border-radius: 24px;
    border: 1px solid var(--border);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-slate);
}

.feature-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-muted);
}

/* AI Section */
.ai-section {
    padding: 10rem 0;
    background: radial-gradient(circle at 20% 50%, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
}

.ai-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.gold-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--premium-gold);
    border-radius: 100px;
    color: var(--premium-gold);
    font-size: 0.7rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.ai-highlight {
    background: linear-gradient(90deg, #A855F7, #EC4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ai-features {
    list-style: none;
    margin-top: 2rem;
}

.ai-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ai-features li::before {
    content: "✓";
    color: var(--accent-green);
    font-weight: 900;
}

/* Tools */
.tools {
    padding: 8rem 0;
    background: var(--bg-card);
}

.tools-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tools-list {
    margin-top: 3rem;
}

.tool-item {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    border-left: 3px solid var(--primary-slate);
}

.tool-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* Premium */
.premium {
    padding: 10rem 0;
}

.premium-card {
    background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
    padding: 5rem;
    border-radius: 40px;
    text-align: center;
    border: 1px solid var(--premium-gold);
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.05);
}

.premium-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 3rem auto;
    max-width: 600px;
}

.premium-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 12px;
    font-weight: 600;
}

.btn-gold {
    background: var(--premium-gold);
    color: #000;
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
}

.btn-gold:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
}

/* Footer */
footer {
    padding: 6rem 0 3rem;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-info p {
    color: var(--text-muted);
    margin-top: 1.5rem;
    max-width: 300px;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-grid, .ai-grid, .tools-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero h1 { font-size: 3rem; }
    .hero-visual { order: -1; }
    .features-grid { grid-template-columns: 1fr; }
    .hero-actions { justify-content: center; }
    .premium-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
}

/* Legal Pages */
.legal-page nav {
    background: var(--card-bg);
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.legal-content {
    padding: 6rem 0;
}

.narrow {
    max-width: 800px;
    margin: 0 auto;
}

.legal-text h2 {
    color: var(--accent-green);
    font-size: 1.25rem;
    margin: 2.5rem 0 1rem;
    font-family: 'Outfit', sans-serif;
}

.legal-text p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.legal-text ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-text li {
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.last-updated {
    margin-top: 5rem;
    color: var(--text-muted);
    opacity: 0.5;
    font-size: 0.875rem;
    text-align: center;
}
