/* ===== social — vitrin (koyu) ===== */
:root {
  --bg: #0a0a0f;
  --bg-soft: #14141c;
  --border: #26262f;
  --text: #ececf1;
  --muted: #9a9aa8;
  --accent: #7c5cff;
  --accent-hover: #8f73ff;
  --radius: 14px;
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body.vitrin {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

.topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px clamp(16px, 4vw, 48px);
  border-bottom: 1px solid var(--border);
}
.logo { font-size: 1.4rem; font-weight: 800; letter-spacing: -0.5px; }
.logo span { color: var(--accent); }
.topnav { display: flex; align-items: center; gap: 18px; }
.topnav a { color: var(--muted); font-size: 0.95rem; }
.topnav a:hover { color: var(--text); }

.btn {
  display: inline-block; padding: 9px 18px; border-radius: 999px;
  font-weight: 600; font-size: 0.95rem; border: 1px solid transparent;
  cursor: pointer; transition: background 0.15s, border-color 0.15s;
}
.btn-primary { background: var(--accent); color: #fff !important; }
.btn-primary:hover { background: var(--accent-hover); }
.btn-ghost { border-color: var(--border); color: var(--text) !important; }
.btn-ghost:hover { border-color: var(--accent); }
.btn-lg { padding: 13px 26px; font-size: 1.05rem; }

.page { flex: 1; width: 100%; max-width: 1080px; margin: 0 auto;
        padding: clamp(24px, 5vw, 64px) 16px; }

.hero { text-align: center; padding: clamp(24px, 6vw, 72px) 0; }
.hero-kicker { color: var(--accent); font-weight: 700; text-transform: uppercase;
               letter-spacing: 2px; font-size: 0.8rem; margin-bottom: 14px; }
.hero h1 { font-size: clamp(2.2rem, 6vw, 4rem); line-height: 1.1;
           letter-spacing: -1.5px; margin-bottom: 18px; }
.hero-sub { color: var(--muted); max-width: 560px; margin: 0 auto 28px; }
.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.steps { padding: 40px 0; }
.steps h2 { text-align: center; font-size: 1.8rem; margin-bottom: 28px; }
.steps-grid { display: grid; gap: 16px;
              grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.step-card { background: var(--bg-soft); border: 1px solid var(--border);
             border-radius: var(--radius); padding: 24px; }
.step-no { display: inline-grid; place-items: center; width: 34px; height: 34px;
           border-radius: 50%; background: var(--accent); color: #fff;
           font-weight: 700; margin-bottom: 12px; }
.step-card h3 { margin-bottom: 6px; }
.step-card p { color: var(--muted); font-size: 0.95rem; }

.split-cta { display: grid; gap: 16px; padding: 24px 0;
             grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.cta-card { background: var(--bg-soft); border: 1px solid var(--border);
            border-radius: var(--radius); padding: 28px; }
.cta-card h3 { margin-bottom: 8px; }
.cta-card p { color: var(--muted); margin-bottom: 16px; }

.page-head { margin-bottom: 24px; }
.page-head h1 { font-size: 2rem; letter-spacing: -0.5px; margin-bottom: 6px; }
.page-head p { color: var(--muted); max-width: 640px; }

.card-grid { display: grid; gap: 16px;
             grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); }
.creator-card { background: var(--bg-soft); border: 1px solid var(--border);
                border-radius: var(--radius); padding: 20px; }
.creator-card h3 { margin-bottom: 4px; }
.creator-card .meta { color: var(--muted); font-size: 0.9rem; }
.creator-card .band { color: var(--accent); font-weight: 700; margin: 8px 0; }
.chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chip { border: 1px solid var(--border); border-radius: 999px;
        padding: 2px 10px; font-size: 0.78rem; color: var(--muted); }

.empty { color: var(--muted); padding: 32px 0; }
.empty a { color: var(--accent); }

.auth-card { max-width: 420px; margin: 0 auto; background: var(--bg-soft);
             border: 1px solid var(--border); border-radius: var(--radius);
             padding: 32px; }
.auth-card h1 { font-size: 1.5rem; margin-bottom: 18px; }
.role-tabs { display: flex; gap: 8px; margin-bottom: 18px; }
.role-tabs a { flex: 1; text-align: center; padding: 9px; border-radius: 10px;
               border: 1px solid var(--border); color: var(--muted);
               font-weight: 600; font-size: 0.92rem; }
.role-tabs a.active { border-color: var(--accent); color: var(--text);
                      background: rgba(124, 92, 255, 0.12); }
.auth-card label { display: block; margin-bottom: 14px; font-size: 0.9rem;
                   color: var(--muted); }
.auth-card input {
  width: 100%; margin-top: 6px; padding: 11px 12px; border-radius: 10px;
  border: 1px solid var(--border); background: var(--bg); color: var(--text);
  font-size: 1rem; font-family: var(--font);
}
.auth-card input:focus { outline: none; border-color: var(--accent); }
.auth-card .btn { width: 100%; margin-top: 6px; }
.kvkk-check { display: flex; gap: 9px; align-items: flex-start;
              font-size: 0.82rem !important; }
.kvkk-check input { width: auto !important; margin-top: 3px; }
.kvkk-check a { color: #b7a5ff; text-decoration: underline; }
.auth-alt { margin-top: 16px; color: var(--muted); font-size: 0.9rem;
            text-align: center; }
.auth-alt a { color: var(--accent); }
.form-error { background: rgba(255, 92, 92, 0.12); border: 1px solid #5c2626;
              color: #ff9b9b; border-radius: 10px; padding: 10px 12px;
              margin-bottom: 14px; font-size: 0.9rem; }

.demo-box { max-width: 420px; margin: 18px auto 0; padding: 20px 24px;
            border-radius: var(--radius); background: rgba(124,92,255,0.07);
            border: 1px dashed rgba(124, 92, 255, 0.5); }
.demo-box h2 { font-size: 1rem; margin-bottom: 4px; }
.demo-box p { color: var(--muted); font-size: 0.85rem; margin-bottom: 12px; }
.demo-box table { width: 100%; border-collapse: collapse; font-size: 0.82rem; }
.demo-box th { text-align: left; color: var(--muted); font-weight: 600;
               padding: 4px 6px; }
.demo-box td { padding: 4px 6px; border-top: 1px solid var(--border); }
.demo-box code { color: #b7a5ff; word-break: break-all; }

.legal { max-width: 680px; margin: 0 auto; }
.legal h1 { font-size: 1.7rem; margin-bottom: 18px; }
.legal p { color: var(--muted); margin-bottom: 14px; }

.footer { border-top: 1px solid var(--border); padding: 20px;
          text-align: center; color: var(--muted); font-size: 0.85rem; }
.footer a { color: var(--muted); text-decoration: underline; }

/* ===== iddialı vitrin katmanı ===== */
.hero-glow { position: absolute; inset: 0; overflow: hidden;
             pointer-events: none; z-index: 0; }
body.vitrin { position: relative; }
.page { position: relative; z-index: 1; }
.blob { position: absolute; border-radius: 50%; filter: blur(90px);
        opacity: 0.35; animation: blob-float 14s ease-in-out infinite; }
.blob-1 { width: 480px; height: 480px; top: -120px; left: -100px;
          background: #7c5cff; }
.blob-2 { width: 420px; height: 420px; top: 60px; right: -140px;
          background: #d946ef; animation-delay: -7s; }
@keyframes blob-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, 30px) scale(1.12); }
}
@media (prefers-reduced-motion: reduce) {
  .blob { animation: none; }
}

.grad-text { background: linear-gradient(90deg, #7c5cff, #d946ef, #7c5cff);
             background-size: 200% auto; -webkit-background-clip: text;
             background-clip: text; color: transparent;
             animation: grad-slide 6s linear infinite; }
@keyframes grad-slide { to { background-position: 200% center; } }

.btn-glow { box-shadow: 0 0 24px rgba(124, 92, 255, 0.45); }
.btn-glow:hover { box-shadow: 0 0 36px rgba(124, 92, 255, 0.65); }

.stats-strip { display: flex; flex-wrap: wrap; justify-content: center;
               gap: clamp(20px, 5vw, 56px); padding: 26px 16px;
               background: var(--bg-soft); border: 1px solid var(--border);
               border-radius: var(--radius); margin: 8px 0 24px; }
.stat-item { text-align: center; }
.stat-num { display: block; font-size: 1.9rem; font-weight: 800;
            background: linear-gradient(90deg, #a78bfa, #e879f9);
            -webkit-background-clip: text; background-clip: text;
            color: transparent; }
.stat-lbl { color: var(--muted); font-size: 0.85rem; }

.cat-section { padding: 32px 0; }
.cat-section h2, .why h2, .faq h2 { text-align: center; font-size: 1.8rem;
                                    margin-bottom: 24px; }
.cat-grid { display: grid; gap: 12px;
            grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); }
.cat-card { position: relative; display: flex; align-items: flex-end;
            min-height: 120px; border-radius: var(--radius); overflow: hidden;
            background-size: cover; background-position: center;
            border: 1px solid var(--border);
            transition: transform 0.15s, border-color 0.15s, box-shadow 0.15s; }
.cat-card::after { content: ""; position: absolute; inset: 0;
                   background: linear-gradient(to top, rgba(6,6,10,0.88) 15%,
                               rgba(6,6,10,0.15) 60%, transparent); }
.cat-card:hover { transform: translateY(-3px); border-color: var(--accent);
                  box-shadow: 0 10px 30px rgba(124, 92, 255, 0.25); }
.cat-label { position: relative; z-index: 1; padding: 12px 14px;
             font-weight: 700; font-size: 0.95rem; }

.why-card { background: var(--bg-soft); border: 1px solid var(--border);
            border-radius: var(--radius); overflow: hidden; }
.why-card img { width: 100%; height: 170px; object-fit: cover; display: block; }
.why-body { padding: 20px 22px; }
.why-body h3 { display: flex; align-items: center; gap: 9px;
               margin-bottom: 6px; }
.why-body h3 .ic { color: var(--accent); flex-shrink: 0; }
.why-body p { color: var(--muted); font-size: 0.95rem; }

.step-card h3 { display: flex; align-items: center; gap: 9px; }
.step-card h3 .ic { color: var(--accent); flex-shrink: 0; }

.cta-photo { position: relative; overflow: hidden; padding: 0;
             background-size: cover; background-position: center; border: none; }
.cta-overlay { position: relative; padding: 28px; height: 100%;
               background: linear-gradient(to top, rgba(8,8,13,0.92) 30%,
                           rgba(8,8,13,0.55)); }
.cta-overlay p { color: #c9c9d4; }

.hero-photo-wrap { display: flex; justify-content: center; }
.hero-photo { width: min(340px, 84vw); height: auto; border-radius: 28px;
              border: 1px solid rgba(124, 92, 255, 0.4);
              box-shadow: 0 24px 80px rgba(124, 92, 255, 0.35);
              transform: rotate(2deg); object-fit: cover; }

.why { padding: 24px 0; }

.faq { max-width: 680px; margin: 0 auto; padding: 24px 0; }
.faq details { background: var(--bg-soft); border: 1px solid var(--border);
               border-radius: 12px; margin-bottom: 10px; padding: 14px 18px; }
.faq summary { cursor: pointer; font-weight: 700; }
.faq details[open] summary { color: var(--accent); }
.faq p { color: var(--muted); margin-top: 10px; }

/* ===== telefon mockup ===== */
.hero-split { display: grid; gap: 32px; align-items: center;
              grid-template-columns: 1.15fr 0.85fr; text-align: left;
              padding: clamp(20px, 5vw, 56px) 0; }
.hero-split .hero-cta { justify-content: flex-start; }
.hero-split .hero-sub { margin-left: 0; }
@media (max-width: 820px) {
  .hero-split { grid-template-columns: 1fr; text-align: center; }
  .hero-split .hero-cta { justify-content: center; }
  .hero-split .hero-sub { margin: 0 auto 28px; }
  .phone-wrap { margin-top: 12px; }
}
.phone-wrap { display: flex; justify-content: center; }
/* iPhone benzeri kasa: titanyum band (gradient) + ince siyah bezel + island */
.phone { width: min(300px, 80vw); border-radius: 58px; padding: 5px;
         background: linear-gradient(160deg, #55555e, #1c1c22 22%,
                     #0e0e12 55%, #494952 96%);
         box-shadow: 0 30px 90px rgba(124, 92, 255, 0.30),
                     0 8px 28px rgba(0, 0, 0, 0.65);
         transform: rotate(2deg); position: relative; }
.phone::before { content: ""; position: absolute; left: -2.5px; top: 132px;
                 width: 3px; height: 32px; border-radius: 3px 0 0 3px;
                 background: #46464f;
                 box-shadow: 0 46px 0 #46464f, 0 -36px 0 -8px #46464f; }
.phone::after { content: ""; position: absolute; right: -2.5px; top: 176px;
                width: 3px; height: 54px; border-radius: 0 3px 3px 0;
                background: #46464f; }
.phone-notch { position: absolute; top: 25px; left: 50%;
               transform: translateX(-50%); width: 86px; height: 24px;
               background: #000; border-radius: 999px; z-index: 2; }
.phone-notch::after { content: ""; position: absolute; right: 7px; top: 50%;
                      transform: translateY(-50%); width: 10px; height: 10px;
                      border-radius: 50%;
                      background: radial-gradient(circle at 35% 35%,
                                  #2c3f63, #0a0a14 72%); }
.phone-screen { background: #0d0d13; border: 10px solid #000;
                border-radius: 53px; padding: 9px 10px 10px;
                display: flex; flex-direction: column; gap: 10px;
                min-height: 540px; }
.p-status { display: flex; justify-content: space-between; align-items: center;
            padding: 0 16px; font-size: 0.7rem; font-weight: 700;
            color: #eceff4; min-height: 25px; margin-top: 2px; }
.p-status-ic { display: flex; align-items: center; gap: 5px; }
.p-head { display: flex; justify-content: space-between; align-items: center;
          padding: 4px 4px 0; }
.p-logo { font-weight: 800; font-size: 1rem; }
.p-logo span { color: var(--accent); }
.p-search { background: #17171f; border: 1px solid #26262f;
            border-radius: 12px; padding: 9px 12px; color: #6f6f7e;
            font-size: 0.8rem; display: flex; align-items: center; gap: 8px; }
.p-search .ic { flex-shrink: 0; opacity: 0.7; }
.p-check { display: inline-grid; place-items: center; width: 13px; height: 13px;
           border-radius: 50%; background: #3b82f6; color: #fff;
           vertical-align: middle; margin-left: 2px; }
.p-check .ic { stroke-width: 3.5; }
.p-card { display: flex; align-items: center; gap: 10px; background: #14141c;
          border: 1px solid #26262f; border-radius: 14px; padding: 10px; }
.p-avatar { display: inline-grid; place-items: center; width: 36px;
            height: 36px; border-radius: 50%; color: #fff; font-weight: 800;
            font-size: 0.75rem; flex-shrink: 0; }
.p-avatar-sm { width: 26px; height: 26px; font-size: 0.65rem; }
.p-info { flex: 1; min-width: 0; }
.p-info b { display: block; font-size: 0.82rem; }
.p-info small { color: #8a8a99; font-size: 0.68rem; white-space: nowrap;
                overflow: hidden; text-overflow: ellipsis; display: block; }
.p-kurucu { font-size: 0.58rem; font-weight: 800; padding: 1px 7px;
            border-radius: 999px; vertical-align: middle;
            background: linear-gradient(90deg, #f59e0b, #f97316);
            color: #1a1206; }
.p-btn { display: inline-grid; place-items: center; width: 28px; height: 28px;
         border-radius: 50%; background: var(--accent); color: #fff;
         font-weight: 700; flex-shrink: 0; }
.p-notif { background: rgba(124, 92, 255, 0.14);
           border: 1px solid rgba(124, 92, 255, 0.45); border-radius: 14px;
           padding: 10px 12px; }
.p-notif-dot { display: inline-block; width: 8px; height: 8px;
               border-radius: 50%; background: var(--accent);
               margin-right: 7px; vertical-align: middle; }
.p-notif b { display: block; font-size: 0.78rem; white-space: nowrap;
             overflow: hidden; text-overflow: ellipsis; }
.p-notif small { color: #a89ddb; font-size: 0.66rem; }
.p-bubble { max-width: 85%; padding: 9px 12px; border-radius: 14px;
            font-size: 0.75rem; line-height: 1.4; }
.p-bubble-theirs { background: #1c1c26; border: 1px solid #2a2a36;
                   align-self: flex-start; border-bottom-left-radius: 4px; }
.p-bubble-mine { background: var(--accent); color: #fff;
                 align-self: flex-end; border-bottom-right-radius: 4px; }
.p-tabbar { display: flex; justify-content: space-around; margin-top: auto;
            padding-top: 10px; border-top: 1px solid #1e1e28; color: #5f5f70; }
.p-tab { display: flex; flex-direction: column; align-items: center; gap: 3px;
         position: relative; }
.p-tab small { font-size: 0.55rem; font-weight: 600; }
.p-tab-active { color: var(--accent); }
.p-tab-badge::after { content: ""; position: absolute; top: -2px; right: 2px;
                      width: 7px; height: 7px; border-radius: 50%;
                      background: #f43f5e; border: 2px solid #0d0d13; }
.p-home { width: 96px; height: 4px; border-radius: 999px; background: #3a3a45;
          align-self: center; margin-top: 8px; flex-shrink: 0; }

.kurucu-badge { display: inline-block; padding: 2px 10px; border-radius: 999px;
                font-size: 0.72rem; font-weight: 800; vertical-align: middle;
                background: linear-gradient(90deg, #f59e0b, #f97316);
                color: #1a1206; }
.kurucu-banner { display: flex; align-items: center; justify-content: space-between;
                 gap: 20px; flex-wrap: wrap; padding: 26px 28px;
                 border-radius: var(--radius); margin: 8px 0 24px;
                 background: linear-gradient(135deg, rgba(124,92,255,0.18), rgba(217,70,239,0.12));
                 border: 1px solid rgba(124, 92, 255, 0.4); }
.kurucu-banner h2 { font-size: 1.4rem; margin-bottom: 6px; }
.kurucu-banner p { color: var(--muted); max-width: 520px; }
.kurucu-sayac { text-align: center; padding: 12px 26px; border-radius: 14px;
                background: var(--bg-soft); border: 1px solid var(--border); }

/* .jsok kökte yoksa (JS kapalı/yüklenmedi) içerik gizlenmez */
.jsok .reveal { opacity: 0; transform: translateY(24px);
                transition: opacity 0.6s ease, transform 0.6s ease; }
.jsok .reveal.revealed { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .jsok .reveal { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 600px) {
  .topbar { padding: 12px 14px; gap: 8px; }
  .logo { font-size: 1.15rem; }
  .topnav { gap: 8px; }
  .topnav a { font-size: 0.78rem; white-space: nowrap; }
  .topnav .btn { padding: 7px 12px; }
}
