/* Mavee Website Styles */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #141414;
    --bg-card: rgba(255, 255, 255, 0.06);
    --bg-card-hover: rgba(255, 255, 255, 0.1);
    --border-subtle: rgba(255, 255, 255, 0.1);
    --text-primary: #f5f5f7;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-tertiary: rgba(255, 255, 255, 0.4);
    --accent: #6C5CE7;
    --accent-secondary: #00CEC9;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --max-width: 960px;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
}

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
}

.nav-brand img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.nav-links {
    display: flex;
    gap: 24px;
    list-style: none;
}

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

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

/* Hero */
.hero {
    padding: 140px 24px 80px;
    text-align: center;
}

.hero-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.app-icon {
    width: 120px;
    height: 120px;
    border-radius: 26px;
    display: block;
    margin: 0 auto;
    margin-bottom: 32px;
    box-shadow: 0 20px 60px rgba(108, 92, 231, 0.3);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 16px;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero .subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.5;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(108, 92, 231, 0.15);
    color: var(--accent);
    border: 1px solid rgba(108, 92, 231, 0.3);
    margin-bottom: 24px;
}

.coming-soon-btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    color: white;
    margin-top: 8px;
    opacity: 0.9;
}

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

.features-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.features h2,
.how-it-works h2 {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 48px;
    font-size: 1.1rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 28px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

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

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

/* How It Works */
.how-it-works {
    padding: 80px 24px;
    background: var(--bg-secondary);
}

.how-it-works-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.step {
    text-align: center;
    padding: 24px;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto 16px;
}

.step h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.step p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Legal Pages */
.legal-page {
    max-width: 720px;
    margin: 0 auto;
    padding: 100px 24px 80px;
}

.legal-page h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.last-updated {
    color: var(--text-tertiary);
    font-size: 0.85rem;
    margin-bottom: 32px;
}

.legal-page h2 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border-subtle);
}

.legal-page h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 8px;
}

.legal-page p {
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.7;
}

.legal-page ul {
    color: var(--text-secondary);
    margin: 8px 0 16px 24px;
    line-height: 1.8;
}

.legal-page a {
    color: var(--accent);
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

.highlight-box {
    background: rgba(108, 92, 231, 0.08);
    border: 1px solid rgba(108, 92, 231, 0.2);
    border-radius: var(--radius-sm);
    padding: 20px;
    margin: 20px 0;
}

.highlight-box p {
    color: var(--text-primary);
    margin-bottom: 0;
}

.no-list {
    list-style: none;
    margin-left: 0 !important;
}

.no-list li {
    padding: 4px 0;
}

/* Footer */
.footer {
    padding: 40px 24px;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

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

.footer-bottom a {
    color: var(--text-tertiary);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--text-secondary);
}

/* Privacy Badges */
.privacy-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 24px 0;
    justify-content: center;
}

.privacy-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    background: rgba(0, 206, 201, 0.1);
    color: var(--accent-secondary);
    border: 1px solid rgba(0, 206, 201, 0.2);
}

/* Responsive */
@media (max-width: 640px) {
    .hero h1 { font-size: 2.2rem; }
    .hero .subtitle { font-size: 1.05rem; }
    .nav-links { gap: 16px; }
    .feature-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
}
