/* ============================================================
   HERO + VIBE DETOX
   "AI ile üretilmiş site" hissini veren şablon öğelerini söker.
   styles.css'TEN SONRA yüklenir; cascade'i kazanır.
   ============================================================ */

/* 1) Uçuşan noktalar & holografik zemin GİTSİN (en büyük "AI template" işareti) */
.holo-particles,
.holo-particle,
.holo-bg {
    display: none !important;
}

/* 2) Arka plan detoksu — neon mor yıkama yerine derin, kasıtlı, premium zemin.
      Üstte çok hafif sıcak bir ışık, gövde neredeyse siyah. */
body {
    background: #0a0a0f !important;
    background-image:
        radial-gradient(120% 75% at 50% -8%, rgba(255, 70, 120, 0.10), transparent 55%),
        radial-gradient(90% 60% at 85% 5%, rgba(120, 60, 200, 0.08), transparent 50%) !important;
    background-attachment: fixed !important;
}

/* ---------- HERO ---------- */

/* Başlık — daha sıkı, daha iddialı, daha az "şablon" */
.hero-main .hero-headline {
    font-size: clamp(36px, 8.5vw, 58px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: #fff;
}
/* Vurgu satırı: neon gradient yerine TEMİZ tek renk (gradient'in kendisi AI klişesi) */
.hero-main .hero-headline .highlight {
    display: block;
    margin-top: 2px;
    background: none;
    -webkit-text-fill-color: #ff4d79;
    color: #ff4d79;
}

/* Açıklama — daha okunaklı, daha sakin */
.hero-main .hero-description {
    font-size: 16.5px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.60);
    max-width: 470px;
}

/* CTA — sakin, kendinden emin (daha az neon parıltı).
   styles.css gradient'i daha güçlü tanımlı, o yüzden !important + background-image:none gerekiyor. */
.hero-main .cta-primary {
    padding: 17px 36px;
    border-radius: 14px;
    background-image: none !important;
    background-color: #ff2d6e !important;
    box-shadow: 0 10px 28px rgba(255, 45, 110, 0.28);
}
.hero-main .cta-primary:hover {
    transform: translateY(-2px);
    background-color: #ff3f79 !important;
    box-shadow: 0 16px 38px rgba(255, 45, 110, 0.38);
}

/* Butonun altındaki sürtünme kırıcı satır */
.hero-main .cta-subtext {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.42);
    margin-top: 2px;
    letter-spacing: 0.01em;
}

/* Güven satırı — daha sakin, yeşil tikler kalsın (olumlu sinyal) */
.hero-main .trust-point {
    color: rgba(255, 255, 255, 0.55);
}

/* ---------- Telefon görseli ---------- */
.hero-visual {
    cursor: pointer;
    position: relative;
}
.hero-visual .phone-mockup {
    background: linear-gradient(165deg, #15151d, #0c0c12);
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.55),
        inset 0 0 0 1px rgba(255, 255, 255, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    animation: heroPhoneFloat 6s ease-in-out infinite;
}
.hero-visual:hover .phone-mockup {
    transform: translateY(-6px) scale(1.015);
    box-shadow:
        0 40px 90px rgba(0, 0, 0, 0.6),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
@keyframes heroPhoneFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-9px); }
}
@media (prefers-reduced-motion: reduce) {
    .hero-visual .phone-mockup { animation: none; }
}

/* ============================================================
   TOOL-FIRST HERO (rf-)  — şablon iskeletini kırar:
   telefon maketi yok, sayfanın kalbi doğrudan yükleme aksiyonu.
   ============================================================ */
.rf-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 110px 22px 60px;
    position: relative;
    z-index: 1;
}
.rf-hero-inner {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}
.rf-headline {
    font-size: clamp(34px, 9vw, 52px);
    font-weight: 800;
    line-height: 1.07;
    letter-spacing: -0.03em;
    color: #fff;
}
.rf-accent { color: #ff4d79; display: block; margin-top: 6px; }

/* Duygusal hero için büyük, çarpıcı CTA */
.rf-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    background-image: none !important;
    background-color: #ff2d6e !important;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: transform .25s ease, background-color .25s ease, box-shadow .25s ease;
    box-shadow: 0 12px 34px rgba(255, 45, 110, 0.35);
}
.rf-cta:hover {
    transform: translateY(-3px);
    background-color: #ff3f79 !important;
    box-shadow: 0 18px 46px rgba(255, 45, 110, 0.45);
}
.rf-cta-sub {
    margin-top: 16px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.01em;
}

/* Gizlilik güvencesi (fotoğraf yükleme kaygısını kırar) */
.rf-privacy {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.42);
}
.rf-privacy i { color: rgba(255, 255, 255, 0.55); font-size: 12px; }

.rf-sub {
    margin: 18px auto 30px;
    max-width: 440px;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.60);
}
.rf-sub strong {
    color: rgba(255, 255, 255, 0.88);
    font-weight: 600;
}

/* Yükleme alanı — sayfanın kalbi */
.rf-drop {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
    padding: 20px 22px;
    border-radius: 20px;
    /* id="hero-start-btn" gradient'ini ezmek için !important gerekiyor */
    background-image: none !important;
    background-color: rgba(255, 255, 255, 0.04) !important;
    border: 1.5px dashed rgba(255, 77, 121, 0.45);
    box-shadow: none !important;
    cursor: pointer;
    transition: background-color .25s ease, border-color .25s ease, transform .25s ease;
}
.rf-drop:hover {
    background-color: rgba(255, 77, 121, 0.08) !important;
    border-color: #ff4d79;
    transform: translateY(-2px);
}
.rf-drop-ring {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 50% 40%, rgba(255, 77, 121, 0.25), transparent 70%);
    border: 2px solid rgba(255, 77, 121, 0.5);
    color: #fff;
}
.rf-drop-ring span { font-size: 24px; font-weight: 800; line-height: 1; }
.rf-drop-ring small { font-size: 10px; color: rgba(255, 255, 255, 0.5); }
.rf-drop-text { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.rf-drop-text strong { font-size: 17px; font-weight: 700; color: #fff; }
.rf-drop-text span { font-size: 12.5px; color: rgba(255, 255, 255, 0.5); }
.rf-drop-arrow { color: #ff4d79; font-size: 18px; flex-shrink: 0; }

.rf-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 22px;
}
.rf-trust span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}
.rf-trust i { color: #22c55e; font-size: 11px; }
.rf-trust span:last-child i { color: rgba(255, 255, 255, 0.45); }

/* ---------- Mobil cila (ana görünüm) ---------- */
@media (max-width: 900px) {
    .hero-main .hero-description { margin-left: auto; margin-right: auto; }
}
@media (max-width: 480px) {
    .hero-main { padding-top: 88px; }
    .hero-main .hero-headline { font-size: clamp(34px, 9.5vw, 46px); }
}

/* ============================================================
   ALACAKARANLIK HERO (2026-08-23) — onaylanan anasayfa redesign.
   Kapsam: .ak-hero (yalnız anasayfa hero'su). Landing (/tinder,
   /bumble) hero'yu zaten gizliyor; uygulama ekranlarına dokunmaz.
   ============================================================ */

/* zemin: gece indigosu — hero kendi zeminini boyar (body'ye dokunma) */
.ak-hero {
    background-color: #161330;
    background-image:
        radial-gradient(70% 45% at 85% -6%, rgba(255,125,146,.28) 0%, rgba(255,125,146,0) 60%),
        radial-gradient(55% 35% at -6% 20%, rgba(127,227,189,.13) 0%, rgba(127,227,189,0) 62%),
        radial-gradient(85% 40% at 50% 106%, rgba(255,201,168,.15) 0%, rgba(255,201,168,0) 58%),
        linear-gradient(172deg, #161330 0%, #241d44 62%, #1b1738 100%);
    overflow: hidden;
    transition: transform .38s cubic-bezier(.5,.05,.8,.4), opacity .38s ease;
}
/* film taneciği */
.ak-hero::after {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    opacity: .5; mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .05 0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}
/* süzülen aurora lekeleri */
.ak-sky { position: absolute; inset: 0; pointer-events: none; }
.ak-sky i { position: absolute; display: block; border-radius: 50%; filter: blur(70px); opacity: .55; }
.ak-sky .ak-b1 { width: 520px; height: 520px; right: -180px; top: -220px;
    background: radial-gradient(circle, rgba(255,125,146,.55), rgba(255,125,146,0) 68%);
    animation: akDrift1 26s ease-in-out infinite alternate; }
.ak-sky .ak-b2 { width: 420px; height: 420px; left: -190px; top: 6%;
    background: radial-gradient(circle, rgba(127,227,189,.30), rgba(127,227,189,0) 66%);
    animation: akDrift2 32s ease-in-out infinite alternate; }
.ak-sky .ak-b3 { width: 640px; height: 420px; left: 50%; bottom: -260px; transform: translateX(-50%);
    background: radial-gradient(circle, rgba(255,201,168,.34), rgba(255,201,168,0) 66%);
    animation: akDrift3 38s ease-in-out infinite alternate; }
@keyframes akDrift1 { from { transform: translate(0,0) scale(1); } to { transform: translate(-60px,50px) scale(1.12); } }
@keyframes akDrift2 { from { transform: translate(0,0); } to { transform: translate(70px,-40px) scale(1.08); } }
@keyframes akDrift3 { from { transform: translateX(-50%) scale(1); } to { transform: translateX(-44%) scale(1.15); } }

/* giriş sahnesi — öğeler sırayla yükselir */
.ak-up { opacity: 0; transform: translateY(16px); animation: akUp .8s cubic-bezier(.22,.68,.3,1) forwards; }
.ak-d1 { animation-delay: .05s } .ak-d2 { animation-delay: .15s } .ak-d3 { animation-delay: .28s }
.ak-d4 { animation-delay: .4s }  .ak-d5 { animation-delay: .5s }  .ak-d6 { animation-delay: .62s }
@keyframes akUp { to { opacity: 1; transform: none; } }

/* canlı rozet */
.ak-badge {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'JetBrains Mono', monospace; font-size: 10.5px;
    letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.72);
    border: 1px solid rgba(255,255,255,.13); border-radius: 999px; padding: 7px 14px;
    background: rgba(255,255,255,.04);
    -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
    margin-bottom: 20px;
}
.ak-badge b { color: #7fe3bd; font-weight: 500; font-variant-numeric: tabular-nums; }
.ak-pulse { width: 7px; height: 7px; border-radius: 50%; background: #7fe3bd; position: relative; flex-shrink: 0; }
.ak-pulse::after {
    content: ""; position: absolute; inset: -4px; border-radius: 50%;
    border: 1px solid #7fe3bd; opacity: .7; animation: akRing 1.8s ease-out infinite;
}
@keyframes akRing { from { transform: scale(.5); opacity: .8; } to { transform: scale(1.6); opacity: 0; } }

/* başlık: Archivo + akan gradyan vurgu */
.ak-hero .rf-headline {
    font-family: 'Archivo', 'Space Grotesk', sans-serif;
    letter-spacing: -.035em;
}
.ak-grad {
    background: linear-gradient(96deg, #ff7d92 10%, #ffc9a8 55%, #ff9d86 90%);
    background-size: 200% 100%;
    -webkit-background-clip: text; background-clip: text;
    color: transparent; -webkit-text-fill-color: transparent;
    animation: akShift 7s ease-in-out infinite alternate;
}
@keyframes akShift { from { background-position: 0% 0; } to { background-position: 100% 0; } }

/* CTA'lar — dolu (Tinder) + çizgili cam (Bumble) */
.ak-cta {
    position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    width: 100%; max-width: 430px; margin: 0 auto 12px;
    padding: 18px 22px; border-radius: 16px; text-decoration: none;
    font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 17px;
    background: linear-gradient(100deg, #ff7d92, #ff9d86); color: #2c1024;
    box-shadow: 0 18px 40px -16px rgba(255,125,146,.9), inset 0 1px 0 rgba(255,255,255,.35);
    transition: transform .18s ease, box-shadow .18s ease;
}
.ak-cta:hover { transform: translateY(-2px); box-shadow: 0 24px 50px -16px rgba(255,125,146,1), inset 0 1px 0 rgba(255,255,255,.35); }
.ak-cta:active { transform: scale(.975); }
.ak-cta:focus-visible { outline: 2px solid #ffc9a8; outline-offset: 3px; }
.ak-cta .ak-go { transition: transform .18s ease; }
.ak-cta:hover .ak-go { transform: translateX(4px); }
/* parlama süpürmesi */
.ak-cta::after {
    content: ""; position: absolute; top: 0; bottom: 0; width: 44%; left: -60%;
    background: linear-gradient(105deg, transparent, rgba(255,255,255,.5), transparent);
    transform: skewX(-20deg); animation: akSheen 4.5s ease-in-out infinite;
}
@keyframes akSheen { 0%, 55% { left: -60%; } 75%, 100% { left: 130%; } }
.ak-cta.ak-alt {
    background: rgba(255,255,255,.05); color: #fff;
    border: 1px solid rgba(255,255,255,.13); box-shadow: none;
    -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.ak-cta.ak-alt::after { display: none; }
.ak-cta.ak-alt:hover { border-color: rgba(255,210,94,.5); background: rgba(255,210,94,.07); box-shadow: none; }

/* kart savrulma çıkışı (CTA tıklanınca) */
.ak-hero.ak-leave { transform: translateX(55%) rotate(6deg); opacity: 0; }

/* üst ilerleme çubuğu */
#ak-progress {
    position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 9999;
    background: linear-gradient(90deg, #ff7d92, #ffc9a8); border-radius: 0 2px 2px 0;
    box-shadow: 0 0 12px rgba(255,125,146,.8);
}
#ak-progress.on { animation: akProg .9s cubic-bezier(.3,.6,.4,1) forwards; }
@keyframes akProg { 0% { width: 0; } 60% { width: 62%; } 100% { width: 88%; } }

/* yasal metinler mobilde alttan kayan panel (uygulama hissi) */
@media (max-width: 640px) {
    #legal-modal { align-items: flex-end !important; }
    #legal-modal .glass-modal {
        width: 100% !important; max-width: none !important; margin: 0 !important;
        border-radius: 22px 22px 0 0 !important;
        max-height: 82vh; overflow-y: auto;
        animation: akSheet .32s cubic-bezier(.22,.68,.3,1);
        padding-bottom: max(20px, env(safe-area-inset-bottom));
    }
}
@keyframes akSheet { from { transform: translateY(40%); opacity: .4; } to { transform: none; opacity: 1; } }

/* iOS çentik güvenli alanı */
.ak-hero { padding-left: max(22px, env(safe-area-inset-left)); padding-right: max(22px, env(safe-area-inset-right)); }

@media (prefers-reduced-motion: reduce) {
    .ak-up { opacity: 1; transform: none; animation: none; }
    .ak-sky i, .ak-grad, .ak-cta::after, .ak-pulse::after { animation: none !important; }
    .ak-hero { transition: none; }
}

/* ============================================================
   ALACAKARANLIK — NAVBAR + FOOTER + MODAL UYUMU (2026-08-23)
   Kapsam: body.ak-home (yalnız anasayfa; landing rs-lp etkilenmez).
   Eski neon navbar/footer yeni hero ile çakışıyordu.
   ============================================================ */

/* --- NAVBAR: hero'nun üstünde şeffaf, tek satır --- */
body.ak-home .navbar {
    background: linear-gradient(rgba(22,19,48,.85), rgba(22,19,48,0));
    border-bottom: 0;
    padding: 16px 20px;
    -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
body.ak-home .logo {
    font-family: 'Archivo', 'Space Grotesk', sans-serif;
    font-weight: 800; font-size: 19px; letter-spacing: -0.02em;
    background: none; -webkit-text-fill-color: #f4f0ff; color: #f4f0ff;
    animation: none;
}
body.ak-home .logo:hover { letter-spacing: -0.02em; filter: none; opacity: .85; }
/* iki buton yan yana, kompakt cam stil */
body.ak-home #nav-guest-area,
body.ak-home .nav-actions { display: flex; flex-direction: row; align-items: center; gap: 8px; }
body.ak-home #nav-guest-area .btn-pricing,
body.ak-home .nav-actions .btn-pricing {
    background: rgba(255,255,255,.05) !important;
    background-image: none !important;
    border: 1px solid rgba(255,255,255,.14) !important;
    color: #f4f0ff !important;
    box-shadow: none !important; text-shadow: none;
    border-radius: 10px; padding: 8px 13px; font-size: 13px; min-height: 40px;
    animation: none !important;
}
body.ak-home #nav-guest-area .btn-pricing i { color: #ffc9a8; }
body.ak-home #nav-guest-area > button:not(.btn-pricing) {
    border: 1px solid rgba(255,255,255,.14) !important;
    color: rgba(244,240,255,.85) !important;
    border-radius: 10px !important; padding: 8px 13px !important;
    font-size: 13px !important; min-height: 40px !important;
}
/* rs-glow neon halkasını anasayfada sustur */
body.ak-home .rs-glow { box-shadow: none !important; animation: none !important; }

/* hero üst boşluğu: sabit navbar'ın altına --- rozet artık çakışmaz */
body.ak-home .ak-hero { padding-top: 118px; }
@media (max-width: 480px) {
    body.ak-home .ak-hero { padding-top: 104px; }
    body.ak-home .navbar { padding: 12px 14px; }
}

/* --- FOOTER: indigo zemine oturt --- */
body.ak-home .site-footer {
    background: #14112b;
    border-top: 1px solid rgba(255,255,255,.07);
    margin-top: 0;
}
body.ak-home .footer-logo {
    font-family: 'Archivo', 'Space Grotesk', sans-serif;
    font-weight: 800; letter-spacing: -0.02em;
    background: linear-gradient(96deg, #ff7d92, #ffc9a8);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
    animation: none;
}
body.ak-home .footer-tagline { color: rgba(181,173,213,.85); }
body.ak-home .site-footer h4 { color: #f4f0ff; }
body.ak-home .site-footer a { color: rgba(181,173,213,.9); }
body.ak-home .site-footer a:hover { color: #ffc9a8; }
body.ak-home .footer-copyright,
body.ak-home .footer-disclaimer { color: rgba(124,116,160,.9); }
body.ak-home .footer-bottom { border-top: 1px solid rgba(255,255,255,.06); }

/* --- MODALLAR: siyah cam yerine indigo cam --- */
body.ak-home .glass-modal {
    background: linear-gradient(170deg, #221c46, #17143a) !important;
    border: 1px solid rgba(255,255,255,.11) !important;
    box-shadow: 0 40px 90px -30px rgba(0,0,0,.85) !important;
}

/* gövde zemini: hero ile footer arasında siyah bant kalmasın */
body.ak-home { background-color: #14112b !important; }

/* --- ALACAKARANLIK: fiyat + giris modallari (eski neon yuzeyler) --- */
body.ak-home .pricing-modal-content {
    background: linear-gradient(170deg, #221c46, #17143a);
    border: 1px solid rgba(255,255,255,.11);
    box-shadow: 0 40px 90px -30px rgba(0,0,0,.85);
}
body.ak-home .ru-card,
body.ak-home .eg-card {
    background: linear-gradient(170deg, #221c46, #17143a) !important;
    border: 1px solid rgba(255,255,255,.11) !important;
}
/* birincil butonlar: camgobegi/neon-pembe yerine mercan */
body.ak-home .ru-btn,
body.ak-home .btn-full {
    background: linear-gradient(100deg, #ff7d92, #ff9d86) !important;
    color: #2c1024 !important;
    box-shadow: 0 12px 28px -12px rgba(255,125,146,.8) !important;
}
body.ak-home .ru-btn:hover,
body.ak-home .btn-full:hover {
    box-shadow: 0 16px 34px -12px rgba(255,125,146,1) !important;
}
/* modal ici vurgu ikonlari */
body.ak-home .ru-icon { background: rgba(255,125,146,.14) !important; color: #ff7d92 !important; }
