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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #0d0f1a;
    color: #eeeef8;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Navbar ──────────────────────────────────────── */
.navbar {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(13, 15, 26, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    padding-bottom: 14px;
}

.logo {
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #6c63ff, #9d96ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

nav { display: flex; gap: 24px; }

nav a {
    color: #9195b5;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.2s;
}

nav a:hover { color: #eeeef8; }

/* ── Hero ─────────────────────────────────────────── */
.hero {
    padding: 100px 0 80px;
    text-align: center;
    background: linear-gradient(180deg, #0d0f1a 0%, #141728 100%);
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-sub {
    font-size: 1.15rem;
    color: #9195b5;
    margin-bottom: 32px;
}

.play-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #6c63ff;
    color: #fff;
    padding: 14px 32px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    cursor: pointer;
}

.play-btn:hover {
    background: #5b52e0;
    transform: translateY(-2px);
}

.play-btn:active {
    transform: translateY(0);
}

/* ── Sections ─────────────────────────────────────── */
.section {
    padding: 72px 0;
}

.section.alt {
    background: #141728;
}

.section h2 {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: #eeeef8;
}

.section p {
    color: #9195b5;
    font-size: 1rem;
    max-width: 600px;
}

/* ── App Card ─────────────────────────────────────── */
.app-card {
    display: flex;
    gap: 24px;
    background: #1c2035;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 28px;
    margin-top: 24px;
}

.app-icon {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #6c63ff, #8e2de2);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.3rem;
    color: #fff;
}

.app-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #eeeef8;
}

.app-info p {
    font-size: 0.95rem;
    margin-bottom: 14px;
}

.feature-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 16px;
}

.feature-list li {
    font-size: 0.85rem;
    color: #9195b5;
    padding-left: 18px;
    position: relative;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4caf82;
    font-weight: 700;
}

/* ── Link Button ──────────────────────────────────── */
.link-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 24px;
    border: 1px solid rgba(108, 99, 255, 0.4);
    border-radius: 10px;
    color: #6c63ff;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.2s;
}

.link-btn:hover {
    background: rgba(108, 99, 255, 0.1);
}

.email-link {
    color: #6c63ff;
    font-weight: 600;
    text-decoration: none;
}

.email-link:hover {
    text-decoration: underline;
}

/* ── Footer ───────────────────────────────────────── */
.footer {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 24px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #4a4d6a;
}

.footer-inner a {
    color: #9195b5;
    text-decoration: none;
}

.footer-inner a:hover { color: #eeeef8; }

/* ── Privacy Policy Page ──────────────────────────── */
.policy h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.policy .effective {
    color: #6c63ff;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 28px;
}

.policy h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 12px;
}

.policy h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 8px;
    color: #c0c0dd;
}

.policy p {
    margin-bottom: 14px;
    color: #b0b4d0;
}

.policy ul {
    margin: 0 0 16px 24px;
    color: #b0b4d0;
}

.policy ul li {
    margin-bottom: 6px;
}

.policy a {
    color: #6c63ff;
    text-decoration: none;
}

.policy a:hover {
    text-decoration: underline;
}

.contact-email {
    font-weight: 700;
    color: #6c63ff;
    font-size: 1.05rem;
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 540px) {
    .hero { padding: 64px 0 56px; }
    .hero h1 { font-size: 1.85rem; }
    .section { padding: 48px 0; }
    .app-card { flex-direction: column; align-items: center; text-align: center; }
    .feature-list { grid-template-columns: 1fr; }
    .nav-inner { flex-direction: column; gap: 10px; }
    .footer-inner { flex-direction: column; gap: 8px; }
}
