﻿/* --- Root Variables & Reset --- */
:root {
    --bg-dark: #05070a;
    --bg-card: #0f121a;
    --bg-header: rgba(5, 7, 10, 0.8);
    --text-main: #e2e8f0;
    --text-muted: #94a3b8;
    --accent: #4fd1c5;
    --accent-hover: #38b2ac;
    --border: #1e293b;
    --pro-color: #6366f1;
    --radius: 12px;
    --container-width: 1100px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Navigation --- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg-header);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
}

.nav-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-icon {
    width: 48px;     /* or 64px if you prefer larger */
    height: 48px;
    margin-right: 12px;
    flex-shrink: 0;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.logo-icon {
    background: linear-gradient(135deg, var(--accent), var(--pro-color));
    padding: 4px 8px;
    border-radius: 6px;
    font-family: monospace;
}

.logo-text small {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 20px;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--accent);
}

/* --- Hero Section --- */
.hero {
    padding: 80px 0;
    background: radial-gradient(circle at top right, rgba(79, 209, 197, 0.05), transparent),
                radial-gradient(circle at top left, rgba(99, 102, 241, 0.05), transparent);
}

.hero-intro {
    text-align: center;
    margin-bottom: 60px;
}

.hero-intro h1 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.hero-intro p {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, border-color 0.2s;
}

.product-card:hover {
    border-color: var(--text-muted);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.app-icon {
    width: 150px;
    height: 150px;
    border-radius: 24px; /* optional, looks nice */
    margin-bottom: 20px;
}

.header-text h2 {
    font-size: 1.4rem;
}

.badge {
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 4px;
    background: var(--border);
    color: var(--text-muted);
    font-weight: 600;
}

.badge.primary {
    background: rgba(99, 102, 241, 0.2);
    color: #a5b4fc;
}

.tagline {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.screenshot-placeholder {
    width: 100%;
    background: #05070a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 1px dashed var(--border);
    padding: 12px;
}

.screenshot-img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
}

/* --- Buttons --- */
.btn-play-store {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: white;
    color: black;
    text-decoration: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: 700;
    margin-top: auto;
}

.btn-play-store.primary {
    background: var(--pro-color);
    color: white;
}

/* --- Features Section --- */
.features { padding: 80px 0; }

.section-title {
    text-align: center;
    margin-bottom: 48px;
}

.section-title h2 { font-size: 2rem; }

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-item {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.feature-item h3 {
    color: var(--accent);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* --- Audience & Info --- */
.toolkit-info { padding-bottom: 80px; }

.info-box {
    background: linear-gradient(to right, #1e293b, #0f172a);
    padding: 40px;
    border-radius: var(--radius);
    text-align: center;
}

.audience-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.audience-tag {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* --- Footer --- */
.site-footer {
    border-top: 1px solid var(--border);
    padding: 60px 0 30px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand h4 { margin-bottom: 12px; }

.footer-nav h5 {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.footer-nav a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    text-align: center;
    color: #475569;
    font-size: 0.8rem;
}

/* --- eula.html --- */
.legal-text h2,
.legal-text h3 {
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text);
}

.legal-text p {
    margin-bottom: 16px;
    line-height: 1.6;
}

div.center{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.legal-text ul {
    margin: 0 0 16px 0px;
    padding: 0;
    list-style: disc;
    color: var(--text-muted);
}

.page-section {
    padding: 80px 0;
}


/* --- Responsive --- */
@media (max-width: 900px) {
    .product-grid { grid-template-columns: 1fr; }
    .feature-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .hero-intro h1 { font-size: 2rem; }
    .feature-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; } /* Simplified for mobile */
}