@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
    --bg:        #05070D;
    --surface:   #10131F;
    --surface-2: #161A2C;
    --border:    #232842;
    --accent:    #3B82F6;
    --accent-2:  #34D399;
    --text:      #F4F6FB;
    --text-dim:  #8B93A7;
    --text-faint:#4B5268;
}

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

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.15;
}

.mono {
    font-family: 'JetBrains Mono', monospace;
}

a { color: inherit; text-decoration: none; }

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

/* ── NAV ─────────────────────────────────────────── */
nav {
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}
nav .wrap { display: flex; align-items: center; justify-content: space-between; }
.brand { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 18px; }
.brand span { color: var(--accent); }
.nav-links { display: flex; gap: 28px; font-size: 14px; color: var(--text-dim); }
.nav-links a:hover { color: var(--text); }

/* ── HERO ────────────────────────────────────────── */
.hero { padding: 88px 0 64px; }
.hero h1 { font-size: 42px; max-width: 560px; }
.hero p.lede {
    margin-top: 20px;
    font-size: 17px;
    color: var(--text-dim);
    max-width: 480px;
}
.stat-readout {
    margin-top: 36px;
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    padding: 14px 18px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
}
.stat-readout .num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 22px;
    color: var(--accent-2);
    font-weight: 500;
}
.stat-readout .label { font-size: 13px; color: var(--text-dim); }

.cta-row { margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn {
    display: inline-block;
    padding: 13px 26px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-secondary { background: transparent; border: 1px solid var(--border); color: var(--text); }

/* Google Play tarzı rozet — resmi logo değil, kendi tasarımımız */
.play-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px 10px 16px;
    background: #000;
    border: 1px solid #2A2E3D;
    border-radius: 9px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}
.play-badge:hover { border-color: #3A3F52; }
.play-badge-icon { width: 22px; height: 22px; color: var(--accent); flex-shrink: 0; }
.play-badge-text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.2; }
.pb-small { font-size: 10px; color: #9AA0B0; letter-spacing: 0.02em; }
.pb-large { font-size: 16px; color: #fff; font-weight: 500; }

.platform-note {
    margin-top: 14px;
    font-size: 13px;
    color: var(--text-faint);
}

/* Toast bildirimi */
.toast {
    position: fixed;
    left: 50%;
    bottom: -120px;
    transform: translateX(-50%);
    max-width: 360px;
    width: calc(100% - 40px);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.4);
    transition: bottom 0.35s ease;
    z-index: 100;
}
.toast.show { bottom: 24px; }
.toast strong { font-size: 14px; color: var(--text); }
.toast span { font-size: 13px; color: var(--text-dim); }

/* ── SECTIONS ────────────────────────────────────── */
section { padding: 64px 0; border-top: 1px solid var(--border); }
section h2 { font-size: 26px; margin-bottom: 8px; }
section p.section-lede { color: var(--text-dim); font-size: 15px; margin-bottom: 40px; max-width: 460px; }

/* Nasıl Çalışır — gerçek bir sıralama, numaralandırma burada anlamlı */
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
    display: flex;
    gap: 20px;
    padding: 22px 0;
    border-top: 1px solid var(--border);
}
.step:first-child { border-top: none; }
.step .n {
    font-family: 'JetBrains Mono', monospace;
    color: var(--text-faint);
    font-size: 14px;
    padding-top: 2px;
}
.step h3 { font-size: 16px; margin-bottom: 6px; }
.step p { color: var(--text-dim); font-size: 14px; max-width: 420px; }

/* Fiyatlandırma — defter/log şeridi görünümü */
.price-ledger { border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 24px;
    border-bottom: 1px solid var(--border);
}
.price-row:last-child { border-bottom: none; }
.price-row.featured { background: var(--surface); }
.price-name { display: flex; align-items: center; gap: 10px; }
.price-name .label { font-size: 15px; font-weight: 500; }
.price-name .tag {
    font-size: 11px;
    color: var(--accent-2);
    border: 1px solid rgba(52,211,153,0.35);
    padding: 2px 8px;
    border-radius: 100px;
}
.price-value { font-family: 'JetBrains Mono', monospace; font-size: 19px; }
.price-value .period { color: var(--text-faint); font-size: 13px; margin-left: 4px; }
.price-note { margin-top: 16px; font-size: 13px; color: var(--text-faint); }

/* ── FOOTER ──────────────────────────────────────── */
footer { border-top: 1px solid var(--border); padding: 40px 0 56px; }
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
    font-size: 13px;
    color: var(--text-dim);
    margin-bottom: 24px;
}
.footer-meta { font-size: 12px; color: var(--text-faint); line-height: 1.7; }

/* ── LEGAL PAGES ─────────────────────────────────── */
.legal { padding: 56px 0 80px; }
.legal h1 { font-size: 28px; margin-bottom: 8px; }
.legal .updated { font-size: 13px; color: var(--text-faint); margin-bottom: 40px; }
.legal h2 { font-size: 18px; margin: 36px 0 12px; }
.legal p { color: var(--text-dim); font-size: 14.5px; margin-bottom: 14px; max-width: 620px; }
.legal ul { color: var(--text-dim); font-size: 14.5px; margin: 0 0 14px 20px; }
.legal li { margin-bottom: 6px; }
.legal strong { color: var(--text); font-weight: 500; }

@media (max-width: 640px) {
    .hero h1 { font-size: 32px; }
    .nav-links { gap: 16px; font-size: 13px; }
    .price-row { flex-direction: column; align-items: flex-start; gap: 8px; }
}
