/* Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'San Francisco', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #1a1a1a;
    background: #fff;
    line-height: 1.6;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(245,196,0,0.15);
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

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

.logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    color: #f5c400;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover { color: #f5c400; }

/* Hero */
.hero {
    min-height: 100vh;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 24px 60px;
    position: relative;
    overflow: hidden;
}

/* Yellow lens-flare glow */
.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245,196,0,0.12) 0%, transparent 65%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    width: 900px;
    height: 900px;
    border-radius: 50%;
    border: 1px solid rgba(245,196,0,0.06);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(245,196,0,0.12);
    color: #f5c400;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 24px;
    margin-bottom: 28px;
    border: 1px solid rgba(245,196,0,0.3);
}

.hero h1 {
    font-size: clamp(2.4rem, 6vw, 3.8rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero h1 span {
    color: #f5c400;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.6);
    max-width: 540px;
    margin: 0 auto 48px;
    line-height: 1.8;
}

/* Download Buttons */
.download-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.store-btn img {
    height: 54px;
    width: auto;
    display: block;
    transition: opacity 0.2s, transform 0.2s;
}

.store-btn:hover img {
    opacity: 0.85;
    transform: translateY(-2px);
}

/* Sections */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-desc {
    font-size: 1.05rem;
    color: #666;
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
    line-height: 1.8;
}

/* Features */
.features {
    padding: 96px 0;
    background: #f9f9f9;
}

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

.feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    border-top: 3px solid transparent;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-top-color: #f5c400;
    box-shadow: 0 8px 32px rgba(245,196,0,0.14);
}

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

.feature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.93rem;
    color: #666;
    line-height: 1.7;
}

/* Stats strip */
.stats {
    background: #0a0a0a;
    padding: 64px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 32px;
    text-align: center;
}

.stat-item .stat-number {
    font-size: 2.4rem;
    font-weight: 800;
    color: #f5c400;
    letter-spacing: -1px;
    display: block;
}

.stat-item .stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    margin-top: 4px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Privacy section */
.privacy {
    padding: 96px 0;
    background: #fff;
}

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

.privacy-item {
    border-radius: 14px;
    padding: 32px 24px;
    text-align: center;
    background: #f9f9f9;
    border-bottom: 3px solid #f5c400;
}

.privacy-item .privacy-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.privacy-item h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.privacy-item p {
    font-size: 0.93rem;
    color: #555;
    line-height: 1.7;
}

/* CTA */
.cta {
    background: #0a0a0a;
    padding: 96px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245,196,0,0.1) 0%, transparent 65%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.cta p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

/* Footer */
.footer {
    background: #060606;
    padding: 40px 24px;
    border-top: 1px solid rgba(245,196,0,0.1);
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #f5c400;
    font-size: 1.1rem;
    font-weight: 800;
}

.footer-logo {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    opacity: 0.9;
}

.footer-nav {
    display: flex;
    gap: 24px;
}

.footer-nav a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-nav a:hover { color: #f5c400; }

.footer-copy {
    color: rgba(255,255,255,0.3);
    font-size: 0.85rem;
    width: 100%;
    text-align: center;
    margin-top: 8px;
}

/* Page Header (inner pages) */
.page-header {
    background: #0a0a0a;
    padding: 140px 24px 72px;
    text-align: center;
    border-bottom: 1px solid rgba(245,196,0,0.15);
}

.page-header h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
}

.page-header p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.55);
}

/* Contact */
.contact-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 760px;
    margin: 0 auto;
}

.contact-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 32px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    border-top: 3px solid #f5c400;
}

.contact-icon { font-size: 2.2rem; }

.contact-card h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.contact-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

.contact-link {
    font-size: 1rem;
    font-weight: 600;
    color: #b38f00;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-link:hover { color: #0a0a0a; }

/* Legal */
.legal-section {
    padding: 80px 0;
    background: #fff;
}

.legal-content {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px;
}

.legal-content h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 40px;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.legal-content p {
    font-size: 0.97rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-content ul {
    margin: 8px 0 16px 24px;
    list-style: disc;
}

.legal-content li {
    font-size: 0.97rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 4px;
}

.legal-content small {
    font-size: 0.85rem;
    color: #888;
}

/* Nav active */
.nav-active {
    color: #f5c400 !important;
    font-weight: 700;
}

/* Language switcher dropdown */
.nav-lang {
    position: relative;
    margin-left: 24px;
}

.lang-toggle {
    background: transparent;
    border: 1px solid rgba(245,196,0,0.25);
    border-radius: 4px;
    color: rgba(255,255,255,0.55);
    font-size: 0.8rem;
    font-weight: 600;
    font-family: inherit;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.lang-toggle:hover,
.nav-lang.open .lang-toggle {
    color: #f5c400;
    border-color: rgba(245,196,0,0.55);
    background: rgba(245,196,0,0.07);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: rgba(10,10,10,0.97);
    border: 1px solid rgba(245,196,0,0.2);
    border-radius: 6px;
    overflow: hidden;
    min-width: 110px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.15s, transform 0.15s;
    z-index: 200;
}

.nav-lang.open .lang-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.lang-option {
    display: block;
    padding: 9px 16px;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.15s;
}

.lang-option:hover,
.lang-option.lang-active {
    color: #f5c400;
    background: rgba(245,196,0,0.08);
}

/* Responsive */
@media (max-width: 600px) {
    .nav-container { padding: 0 12px; gap: 8px; }
    .logo-text { font-size: 1.1rem; }
    .nav-links { gap: 14px; }
    .nav-links a { font-size: 0.82rem; }
    .footer-container { justify-content: center; text-align: center; }
    .footer-nav { justify-content: center; }
}
