:root {
    --bg: #0a0f1c;
    --bg-soft: #0f172a;
    --panel: rgba(15, 23, 42, 0.7);
    --accent: #f6c453;
    --accent-strong: #f4a63a;
    --text-main: #f8fafc;
    --text-muted: #cbd5f5;
    --border: rgba(148, 163, 184, 0.25);
    --shadow: 0 24px 60px rgba(2, 6, 23, 0.45);
    --radius: 22px;
    --font-body: 'Montserrat', system-ui, -apple-system, sans-serif;
    --font-title: 'Poppins', system-ui, -apple-system, sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-body);
    background: radial-gradient(circle at 10% 20%, rgba(246, 196, 83, 0.08), transparent 35%),
        radial-gradient(circle at 90% 10%, rgba(56, 189, 248, 0.08), transparent 30%),
        var(--bg);
    color: var(--text-main);
    line-height: 1.6;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 32px;
    background: rgba(10, 15, 28, 0.8);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    z-index: 10;
}

.brand {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.nav {
    display: flex;
    gap: 18px;
    align-items: center;
}

.nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

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

.lang-select select {
    background: rgba(148, 163, 184, 0.15);
    border: 1px solid var(--border);
    color: var(--text-main);
    padding: 8px 12px;
    border-radius: 10px;
    font-weight: 600;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 24px 100px;
    background: url('images/index.jpeg') center/cover no-repeat;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 10, 24, 0.82) 0%, rgba(5, 10, 24, 0.6) 100%);
}

.hero__content {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    z-index: 1;
    text-align: left;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(248, 250, 252, 0.12);
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.4px;
}

.hero__title {
    font-family: var(--font-title);
    font-size: clamp(2.6rem, 5vw, 4rem);
    line-height: 1.1;
    margin: 18px 0 12px;
}

.hero__subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 28px;
    max-width: 680px;
}

.hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.btn {
    padding: 12px 20px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: #1f2937;
    box-shadow: 0 16px 40px rgba(246, 196, 83, 0.35);
}

.btn.ghost {
    border-color: var(--border);
    color: var(--text-main);
    background: rgba(248, 250, 252, 0.05);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.store-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.store-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(15, 23, 42, 0.6);
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
}

.store-button.disabled,
.btn.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.hero__stats {
    margin-top: 28px;
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.stat-card {
    padding: 16px;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid var(--border);
    text-align: left;
}

.stat-value {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.95rem;
}

main {
    padding: 0 0 80px;
}

.section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 96px 24px;
}

.section__header {
    text-align: center;
    margin-bottom: 40px;
}

.section__header h2 {
    margin: 12px 0;
    font-family: var(--font-title);
    font-size: clamp(2rem, 4vw, 2.8rem);
}

.two-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    align-items: center;
}

.lead {
    font-size: 1.05rem;
    color: var(--text-muted);
}

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

.pill-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.pill {
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(148, 163, 184, 0.12);
    font-weight: 600;
}

.media-card {
    position: relative;
    padding: 24px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(246, 196, 83, 0.2), rgba(56, 189, 248, 0.12)),
        url('https://images.unsplash.com/photo-1489515217757-5fd1be406fef?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.media-card__badge {
    background: rgba(10, 15, 28, 0.7);
    padding: 8px 12px;
    border-radius: 12px;
    font-weight: 700;
    margin-bottom: 12px;
    display: inline-block;
}

.steps,
.features-grid,
.screens-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.step-card,
.feature-card {
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--panel);
    box-shadow: var(--shadow);
}

.step-card h3,
.feature-card h3 {
    margin-top: 12px;
    font-family: var(--font-title);
}

.icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(246, 196, 83, 0.18);
    font-weight: 700;
}

.screenshot {
    position: relative;
    height: 320px;
    border-radius: 26px;
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.4));
    overflow: hidden;
}

.screenshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.screenshot::after {
    content: '';
    position: absolute;
    inset: 16px;
    border-radius: 18px;
    border: 1px dashed rgba(148, 163, 184, 0.35);
}

.screenshot__label {
    position: absolute;
    left: 16px;
    bottom: 16px;
    background: rgba(10, 15, 28, 0.7);
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 600;
}

.cta {
    background: linear-gradient(135deg, rgba(246, 196, 83, 0.18), rgba(56, 189, 248, 0.08));
    border-radius: 28px;
    border: 1px solid var(--border);
    margin-top: 40px;
}

.cta__content {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.cta__note {
    color: var(--text-muted);
    margin-top: 16px;
}

.footer {
    border-top: 1px solid var(--border);
    padding: 48px 24px 60px;
    background: rgba(10, 15, 28, 0.95);
}

.footer__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.footer__brand {
    font-family: var(--font-title);
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.footer__tagline {
    color: var(--text-muted);
}

.footer__col {
    display: grid;
    gap: 8px;
}

.footer__title {
    font-weight: 700;
}

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

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

.footer__text {
    color: var(--text-muted);
}

.footer__copyright {
    text-align: center;
    margin-top: 32px;
    color: var(--text-muted);
}

.legal-main {
    max-width: 980px;
    margin: 0 auto;
    padding: 140px 24px 80px;
}

.legal-hero {
    margin-bottom: 32px;
}

.legal-section {
    padding: 24px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: var(--panel);
    margin-bottom: 20px;
}

.contact-form {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.contact-form label {
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: rgba(15, 23, 42, 0.7);
    color: var(--text-main);
    font-family: inherit;
}

.contact-form button {
    align-self: flex-start;
}

.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

section {
    scroll-margin-top: 120px;
}

@media (max-width: 900px) {
    .topbar {
        flex-wrap: wrap;
        gap: 12px;
    }

    .nav {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero__content {
        text-align: center;
    }

    .hero__actions {
        justify-content: center;
    }

    .store-buttons {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 140px 18px 80px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .cta {
        padding: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
    }
}
