/* Movyneo — movyneo.app
   Renkler uygulamanın kendi tasarım tokenlarından: kozmik lacivert zemin,
   turkuaz aksiyon, mercan vurgu. Site ile uygulama aynı görsel dili
   konuşmazsa mağazadan gelen ziyaretçi başka bir ürüne bakıyor sanır. */

:root {
    --bg: #0b0817;
    --bg-raised: #151129;
    --bg-card: rgba(255, 255, 255, 0.04);
    --border: rgba(255, 255, 255, 0.09);
    --border-strong: rgba(255, 255, 255, 0.16);

    --text: #f4f2fb;
    --text-dim: #a49fc0;
    --text-faint: #6f6a8e;

    --teal: #3edbc6;
    --coral: #ff7a6b;
    --gold: #ffc94d;
    --violet: #8e7cf5;

    --max: 1160px;
    --radius: 20px;
    --radius-lg: 32px;
}

*, *::before, *::after { box-sizing: border-box; }

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

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI",
                 Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Aurora zemin — görüntü değil, katmanlı radyal degradeler.
   Tek bir PNG yerine CSS: her ekran boyutunda net, ~0 bayt. */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(ellipse 80% 55% at 15% -5%, rgba(142, 124, 245, 0.28), transparent 60%),
        radial-gradient(ellipse 70% 50% at 88% 8%, rgba(62, 219, 198, 0.16), transparent 60%),
        radial-gradient(ellipse 90% 60% at 50% 105%, rgba(255, 122, 107, 0.12), transparent 65%),
        var(--bg);
}

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

/* `height: auto` şart. img etiketlerinde width/height oranı CLS için
   veriliyor; onsuz max-width genişliği kısarken height attribute'u
   sabit kalıyor ve ekran görüntüleri 1564 px'e uzuyor. */
img { max-width: 100%; height: auto; display: block; }

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ── Navigasyon ─────────────────────────────────────────────── */
.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    background: rgba(11, 8, 23, 0.72);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}
.nav.scrolled { border-bottom-color: var(--border); }

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 24px;
}

.brand { display: flex; align-items: center; gap: 11px; font-weight: 600; font-size: 18px; letter-spacing: -0.01em; }
.brand img { width: 30px; height: 30px; border-radius: 8px; }

.nav-links { display: flex; align-items: center; gap: 30px; font-size: 15px; color: var(--text-dim); }
.nav-links a { transition: color 0.2s ease; }
.nav-links a:hover { color: var(--text); }

@media (max-width: 780px) { .nav-links { display: none; } }
/* Dar ekranda üst çubuktaki rozet iki satıra taşıyıp navigasyonu
   büyütüyordu; kısa biçime düşüyor. */
@media (max-width: 560px) {
    .nav .badge-soon { font-size: 12px; padding: 6px 11px; }
    .nav .badge-soon .label-long { display: none; }
}

/* ── Butonlar ───────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 24px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.01em;
    border: 1px solid transparent;
    transition: transform 0.18s ease, box-shadow 0.25s ease, background 0.2s ease;
    white-space: nowrap;
}
.btn-primary {
    background: linear-gradient(135deg, var(--teal), #2bb9a6);
    color: #04231f;
    box-shadow: 0 8px 30px rgba(62, 219, 198, 0.28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(62, 219, 198, 0.38); }
.btn-ghost { border-color: var(--border-strong); color: var(--text); background: rgba(255, 255, 255, 0.03); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); transform: translateY(-2px); }

/* Yayına girene kadar durum rozeti — "İndir" demek yanlış olurdu. */
.badge-soon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 15px;
    border-radius: 999px;
    background: rgba(62, 219, 198, 0.1);
    border: 1px solid rgba(62, 219, 198, 0.28);
    color: var(--teal);
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.01em;
}
.badge-soon .dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 0 0 rgba(62, 219, 198, 0.6);
    animation: pulse 2.4s infinite;
}
@keyframes pulse {
    70% { box-shadow: 0 0 0 9px rgba(62, 219, 198, 0); }
    100% { box-shadow: 0 0 0 0 rgba(62, 219, 198, 0); }
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero { padding: 84px 0 40px; }
.hero-grid {
    display: grid;
    grid-template-columns: 1.06fr 0.94fr;
    gap: 56px;
    align-items: center;
}
@media (max-width: 940px) {
    .hero { padding: 56px 0 24px; }
    .hero-grid { grid-template-columns: 1fr; gap: 48px; text-align: center; }
    .hero-copy .row { justify-content: center; }
}

h1 {
    font-size: clamp(40px, 5.6vw, 62px);
    line-height: 1.05;
    letter-spacing: -0.033em;
    font-weight: 700;
    margin: 22px 0 20px;
}
.h1-accent {
    background: linear-gradient(115deg, var(--teal), var(--violet) 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.lede { font-size: clamp(17px, 2vw, 19.5px); color: var(--text-dim); max-width: 30em; margin: 0 0 30px; }
.hero-copy .row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-note { margin-top: 18px; font-size: 14px; color: var(--text-faint); }

/* Telefon: CSS çerçeve. Cihaz PNG'si yerine vektörel kenarlık —
   her yoğunlukta net ve tema rengiyle birlikte değişebiliyor. */
.phone {
    position: relative;
    width: 300px;
    margin: 0 auto;
    border-radius: 46px;
    padding: 9px;
    background: linear-gradient(160deg, #4c4763, #221f33 40%, #3a3550);
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.07);
}
.phone::after {
    content: "";
    position: absolute;
    left: 50%; top: 17px;
    transform: translateX(-50%);
    width: 84px; height: 22px;
    background: #06040d;
    border-radius: 999px;
}
.phone img { border-radius: 38px; }
.phone-glow {
    position: absolute;
    inset: -14% -22%;
    z-index: -1;
    background: radial-gradient(ellipse at center, rgba(142, 124, 245, 0.4), transparent 68%);
    filter: blur(46px);
}
.phone-wrap { position: relative; }

/* ── Güven şeridi ───────────────────────────────────────────── */
.trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin: 60px 0 0;
}
.trust div { background: rgba(13, 10, 26, 0.72); padding: 24px 20px; text-align: center; }
.trust strong { display: block; font-size: 21px; font-weight: 700; letter-spacing: -0.02em; }
.trust span { font-size: 13.5px; color: var(--text-faint); }
@media (max-width: 720px) { .trust { grid-template-columns: repeat(2, 1fr); } }

/* ── Bölümler ───────────────────────────────────────────────── */
section { padding: 96px 0; }
@media (max-width: 780px) { section { padding: 64px 0; } }

.eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 14px;
}
h2 {
    font-size: clamp(30px, 3.9vw, 44px);
    line-height: 1.12;
    letter-spacing: -0.028em;
    font-weight: 700;
    margin: 0 0 18px;
}
h3 { font-size: 21px; font-weight: 650; letter-spacing: -0.015em; margin: 0 0 8px; }
p { margin: 0 0 16px; }
.section-head { max-width: 34em; margin: 0 auto 56px; text-align: center; }
.section-head p { color: var(--text-dim); font-size: 18px; }

/* Özellik satırı: metin + ekran, dönüşümlü hizalama */
.feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 108px;
}
.feature:last-child { margin-bottom: 0; }
.feature.reverse .feature-visual { order: -1; }
@media (max-width: 900px) {
    .feature { grid-template-columns: 1fr; gap: 40px; margin-bottom: 72px; }
    .feature.reverse .feature-visual { order: 0; }
}
.feature-visual { display: flex; justify-content: center; }
.feature .phone { width: 268px; }

.feature-list { list-style: none; padding: 0; margin: 22px 0 0; }
.feature-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 13px;
    color: var(--text-dim);
    font-size: 16.5px;
}
.feature-list li::before {
    content: "";
    position: absolute;
    left: 4px; top: 9px;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 12px rgba(62, 219, 198, 0.7);
}

/* ── Kartlar ────────────────────────────────────────────────── */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .cards { grid-template-columns: 1fr; } }

.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px 26px;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--border-strong); background: rgba(255, 255, 255, 0.06); }
.card p { color: var(--text-dim); font-size: 15.5px; margin: 0; }
.card .ico {
    width: 46px; height: 46px;
    display: grid; place-items: center;
    border-radius: 14px;
    margin-bottom: 18px;
    font-size: 22px;
    background: rgba(62, 219, 198, 0.12);
    border: 1px solid rgba(62, 219, 198, 0.22);
}
.card.coral .ico { background: rgba(255, 122, 107, 0.12); border-color: rgba(255, 122, 107, 0.24); }
.card.gold  .ico { background: rgba(255, 201, 77, 0.12); border-color: rgba(255, 201, 77, 0.24); }
.card.violet .ico { background: rgba(142, 124, 245, 0.14); border-color: rgba(142, 124, 245, 0.26); }

/* ── Gizlilik bloğu ─────────────────────────────────────────── */
.privacy-block {
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    padding: 62px 52px;
    background:
        radial-gradient(ellipse 70% 80% at 12% 0%, rgba(62, 219, 198, 0.11), transparent 62%),
        rgba(13, 10, 26, 0.66);
}
@media (max-width: 720px) { .privacy-block { padding: 40px 26px; } }
.privacy-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 34px 44px; margin-top: 38px; }
@media (max-width: 720px) { .privacy-grid { grid-template-columns: 1fr; gap: 26px; } }
.privacy-grid h3 { display: flex; align-items: center; gap: 10px; font-size: 18px; }
.privacy-grid .check { color: var(--teal); font-size: 19px; }
.privacy-grid p { color: var(--text-dim); font-size: 15.5px; margin: 0; }

/* ── SSS ────────────────────────────────────────────────────── */
.faq { max-width: 780px; margin: 0 auto; }
details {
    border-bottom: 1px solid var(--border);
    padding: 22px 0;
}
details summary {
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.012em;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
details summary::-webkit-details-marker { display: none; }
details summary::after {
    content: "+";
    font-size: 24px;
    font-weight: 400;
    color: var(--text-faint);
    transition: transform 0.25s ease, color 0.25s ease;
    line-height: 1;
}
details[open] summary::after { transform: rotate(45deg); color: var(--teal); }
details p { color: var(--text-dim); margin: 14px 0 0; font-size: 16px; max-width: 62ch; }

/* ── Kapanış CTA ────────────────────────────────────────────── */
.cta-final { text-align: center; padding: 104px 0; }
.cta-final h2 { margin-bottom: 14px; }
.cta-final p { color: var(--text-dim); font-size: 18.5px; max-width: 30em; margin: 0 auto 30px; }

/* ── Alt bilgi ──────────────────────────────────────────────── */
footer {
    border-top: 1px solid var(--border);
    padding: 52px 0 40px;
    color: var(--text-faint);
    font-size: 14.5px;
}
.foot-grid { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; align-items: flex-start; }
.foot-links { display: flex; gap: 28px; flex-wrap: wrap; }
.foot-links a { transition: color 0.2s ease; }
.foot-links a:hover { color: var(--text); }
.foot-bottom { margin-top: 34px; font-size: 13.5px; line-height: 1.7; }

/* ── Belge sayfaları (privacy / terms / support) ────────────── */
.doc { max-width: 760px; margin: 0 auto; padding: 64px 0 96px; }
.doc h1 { font-size: clamp(34px, 4.6vw, 46px); margin: 0 0 10px; }
.doc .updated { color: var(--text-faint); font-size: 14.5px; margin-bottom: 44px; }
.doc h2 { font-size: 24px; margin: 46px 0 14px; }
.doc h3 { font-size: 18.5px; margin: 30px 0 8px; }
.doc p, .doc li { color: var(--text-dim); font-size: 16.5px; }
.doc ul { padding-left: 22px; }
.doc li { margin-bottom: 9px; }
.doc strong { color: var(--text); font-weight: 620; }
.doc a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }
.doc-callout {
    border: 1px solid rgba(62, 219, 198, 0.28);
    background: rgba(62, 219, 198, 0.07);
    border-radius: var(--radius);
    padding: 24px 26px;
    margin: 30px 0;
}
.doc-callout p { color: var(--text); margin: 0; }

/* ── Kaydırmayla beliren giriş ──────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
    .reveal { opacity: 1; transform: none; }
    html { scroll-behavior: auto; }
}
