/* ─── LANDING (tanıtım) — woshiemir.com tasarım dili, mor tema ───
   Koyu zemin + glow, rozetler, hover'da yükselen kartlar, büyük CTA'lar.
   Aydınlık tema html[data-theme="light"] ile. */

:root {
  --lp-accent: #8e44ff;
  --lp-accent-2: #7c3aed;
  --lp-glow: rgba(142, 68, 255, 0.4);
  --lp-glow-soft: rgba(142, 68, 255, 0.18);
}

.landing-page {
  min-height: 100vh;
  /* renk longhand'de: shorthand içindeki var(--bg) tema değişiminde
     bazı motorlarda yeniden çözülmüyor; ayrı property kesin çalışıyor */
  background-color: var(--bg);
  background-image:
    radial-gradient(900px 480px at 80% -10%, rgba(124, 58, 237, 0.16), transparent 60%),
    radial-gradient(700px 420px at 8% 22%, rgba(142, 68, 255, 0.10), transparent 55%);
  background-repeat: no-repeat;
  font-family: 'Poppins', -apple-system, 'Segoe UI', Roboto, sans-serif;
  display: flex; flex-direction: column;
}

/* ── HEADER ── */
.lp-header {
  position: sticky; top: 0; z-index: 30;
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; padding: 12px 30px;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.lp-logo { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.lp-logo-icon {
  width: 40px; height: 40px; border-radius: 11px;
  box-shadow: 0 0 16px var(--lp-glow-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.lp-logo:hover .lp-logo-icon { transform: rotate(8deg); box-shadow: 0 0 22px var(--lp-glow); }
.lp-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.lp-logo-name { color: var(--text); font-size: 17px; font-weight: 800; letter-spacing: 2px; }
.lp-logo-name b { color: var(--lp-accent); font-weight: 800; text-shadow: 0 0 14px var(--lp-glow); }
.lp-logo-sub { color: var(--text-muted); font-size: 9px; letter-spacing: 4px; margin-top: 2px; }

.lp-nav { display: flex; align-items: center; gap: 9px; }

/* Giriş durumuna göre görünürlük — <html class="is-auth"> head'de, boyamadan
   önce set edilir; böylece yanlış buton bir an bile görünmez. */
.lp-auth-only { display: none !important; }
html.is-auth .lp-guest-only { display: none !important; }
html.is-auth .lp-auth-only { display: inline-flex !important; }
.lp-nav-link { color: var(--text-muted); font-size: 13.5px; font-weight: 500; text-decoration: none; padding: 6px 8px; }
.lp-nav-link:hover { color: var(--text); }
.lp-icon-btn {
  background: var(--surface2); border: 1px solid var(--border); color: var(--text-muted);
  font-size: 13px; font-weight: 700; min-width: 34px; height: 34px; padding: 0 8px;
  border-radius: 9px; cursor: pointer; font-family: inherit;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.15s;
}
.lp-icon-btn:hover { color: var(--text); border-color: var(--lp-accent); }

/* ── BUTONLAR ── */
.lp-btn {
  background: linear-gradient(135deg, var(--lp-accent), var(--lp-accent-2));
  color: #fff; border-radius: 11px;
  padding: 9px 20px; font-size: 13.5px; font-weight: 700;
  text-decoration: none; display: inline-flex; align-items: center; gap: 7px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  box-shadow: 0 4px 14px var(--lp-glow-soft);
}
.lp-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 28px var(--lp-glow); }
.lp-btn-ghost {
  background: color-mix(in srgb, var(--surface) 70%, transparent);
  color: var(--text); border: 1px solid color-mix(in srgb, var(--lp-accent) 45%, transparent);
  border-radius: 11px; padding: 9px 20px; font-size: 13.5px; font-weight: 700;
  text-decoration: none; display: inline-flex; align-items: center; gap: 7px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.lp-btn-ghost:hover { border-color: var(--lp-accent); transform: translateY(-3px); box-shadow: 0 8px 22px var(--lp-glow-soft); }
.lp-btn-lg { padding: 14px 32px; font-size: 15.5px; border-radius: 12px; }

/* ── MAIN ── */
.lp-main { max-width: 1080px; margin: 0 auto; padding: 0 26px; width: 100%; box-sizing: border-box; flex: 1; }

/* ── HERO ── */
.lp-hero {
  text-align: center; padding: 68px 0 46px;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.lp-badge {
  background: var(--lp-glow-soft);
  border: 1px solid color-mix(in srgb, var(--lp-accent) 50%, transparent);
  color: var(--lp-accent);
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  padding: 7px 18px; border-radius: 20px;
}
.lp-hero h1 {
  font-size: 44px; font-weight: 800; line-height: 1.18; letter-spacing: -0.02em;
  color: var(--text); max-width: 800px;
}
.lp-hero h1 span { color: var(--lp-accent); text-shadow: 0 0 26px var(--lp-glow); }
.lp-sub { font-size: 16.5px; line-height: 1.7; color: var(--text-muted); max-width: 640px; }
.lp-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 6px; }
.lp-note { font-size: 12.5px; color: var(--text-muted); }

/* ── İSTATİSTİK BANDI ── */
.lp-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  background: color-mix(in srgb, var(--surface) 90%, transparent);
  border: 1px solid var(--border); border-radius: 16px;
  padding: 26px 18px; margin-bottom: 26px;
  box-shadow: 0 5px 24px rgba(0, 0, 0, 0.22);
}
.lp-stat { text-align: center; display: flex; flex-direction: column; gap: 4px; }
.lp-stat-num {
  font-size: 30px; font-weight: 800; color: var(--lp-accent);
  text-shadow: 0 0 16px var(--lp-glow);
}
.lp-stat-label { color: var(--text-muted); font-size: 11.5px; letter-spacing: 1px; text-transform: uppercase; }

/* ── BÖLÜMLER ── */
.lp-section { padding: 44px 0; }
.lp-title { text-align: center; color: var(--text); font-size: 28px; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.01em; }
.lp-title span { color: var(--lp-accent); text-shadow: 0 0 18px var(--lp-glow); }
.lp-subtitle { text-align: center; color: var(--text-muted); font-size: 14px; max-width: 540px; margin: 0 auto 32px; line-height: 1.6; }

/* ── MODEL KARTLARI (ürün kartı tarzı) ── */
.lp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.lp-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 15px;
  display: flex; flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.lp-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--lp-accent) 65%, transparent);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.35), 0 0 20px var(--lp-glow-soft);
}
.lp-tag {
  position: absolute; top: -12px; left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  z-index: 3; padding: 6px 16px 7px;
  background: linear-gradient(135deg, #8e44ff, #b06bff);
  color: #fff; font-size: 10px; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase; white-space: nowrap;
  border-radius: 7px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.35), 0 4px 10px var(--lp-glow), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.lp-tag.hot { background: linear-gradient(135deg, #b8329e, #8e44ff); }
.lp-card-visual {
  height: 96px; border-radius: 15px 15px 0 0;
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(220px 90px at 50% 110%, color-mix(in srgb, var(--pc, #8e44ff) 22%, transparent), transparent 70%),
    var(--surface2);
  border-bottom: 2px solid color-mix(in srgb, var(--pc, #8e44ff) 45%, transparent);
}
.lp-card-emoji { font-size: 38px; }
.lp-card-body { padding: 16px 17px 18px; display: flex; flex-direction: column; gap: 7px; }
.lp-card-body h3 { color: var(--text); font-size: 16px; font-weight: 700; }
.lp-by { font-size: 10.5px; font-weight: 500; color: var(--text-muted); margin-left: 3px; }
.lp-card-body p { color: var(--text-muted); font-size: 13px; line-height: 1.62; }

/* ── NASIL ÇALIŞIR ── */
.lp-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 26px; }
.lp-step {
  background: var(--surface); border: 1px solid var(--border); border-radius: 15px;
  padding: 24px 20px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 9px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.lp-step:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--lp-accent) 55%, transparent); box-shadow: 0 10px 26px var(--lp-glow-soft); }
.lp-step-num {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--lp-accent), var(--lp-accent-2));
  color: #fff; font-size: 18px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px var(--lp-glow-soft);
}
.lp-step h3 { color: var(--text); font-size: 16px; font-weight: 700; }
.lp-step p { color: var(--text-muted); font-size: 13px; line-height: 1.6; }

/* ── NEDEN BİZ ── */
.lp-list {
  list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin-top: 26px; padding: 0;
}
.lp-list li {
  position: relative; padding: 14px 16px 14px 42px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
  font-size: 13.5px; line-height: 1.6; color: var(--text-muted);
  transition: border-color 0.25s ease;
}
.lp-list li:hover { border-color: color-mix(in srgb, var(--lp-accent) 50%, transparent); }
.lp-list li::before {
  content: '✓'; position: absolute; left: 15px; top: 13px;
  color: var(--lp-accent); font-weight: 800; font-size: 15px;
  text-shadow: 0 0 10px var(--lp-glow);
}
.lp-list strong { color: var(--text); font-weight: 700; }

/* ── SON CTA ── */
.lp-final {
  text-align: center; margin: 30px 0 56px; padding: 44px 26px;
  background:
    radial-gradient(420px 200px at 50% 0%, var(--lp-glow-soft), transparent 70%),
    var(--surface);
  border: 1px solid color-mix(in srgb, var(--lp-accent) 35%, transparent);
  border-radius: 20px;
}
.lp-final h2 { color: var(--text); font-size: 25px; font-weight: 800; margin-bottom: 8px; }
.lp-final p { color: var(--text-muted); font-size: 14.5px; margin-bottom: 22px; }

/* ── FOOTER ── 3 kolon: keşfet | logo+slogan | yasal + altta ince telif barı */
.lp-footer {
  border-top: 1px solid var(--border);
  background-color: var(--surface);
  background-image: radial-gradient(600px 200px at 50% 0%, var(--lp-glow-soft), transparent 70%);
  margin-top: 40px;
}
.lp-footer-in {
  max-width: 1080px; margin: 0 auto; padding: 40px 26px 26px;
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 30px; align-items: start;
}

/* Kenar kolonlar */
/* align-items: flex-start → linkler yalnızca metin genişliği kadar; yoksa kolonu
   doldurup metnin yanında da hover/tıklama alanı oluşturuyorlardı. */
.lp-fcol { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.lp-fcol.right { align-items: flex-end; text-align: right; }
.lp-fcol-title {
  color: var(--text); font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 2px;
}
.lp-fcol a {
  color: var(--text-muted); font-size: 13.5px; text-decoration: none;
  transition: color 0.15s, transform 0.15s; display: inline-block;
}
.lp-fcol a:hover { color: var(--lp-accent); transform: translateX(3px); }
.lp-fcol.right a:hover { transform: translateX(-3px); }

/* Orta: logo + slogan */
.lp-fcenter { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; padding: 0 10px; }
.lp-fcenter .wm-logo-icon { width: 46px; height: 46px; border-radius: 13px; box-shadow: 0 0 22px var(--lp-glow-soft); }
.lp-fcenter .wm-logo-name { font-size: 18px; }
.lp-fslogan {
  color: var(--text-muted); font-size: 12.5px; font-style: italic;
  line-height: 1.55; max-width: 230px;
}
.lp-fstore {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--surface2); border: 1px solid var(--border);
  color: var(--text-muted); font-size: 11.5px; font-weight: 600;
  padding: 6px 13px; border-radius: 20px; text-decoration: none;
  transition: all 0.18s;
}
.lp-fstore:hover { color: var(--text); border-color: var(--lp-accent); transform: translateY(-2px); }

/* Alt telif barı */
.lp-fbottom {
  border-top: 1px solid var(--border);
  max-width: 1080px; margin: 0 auto; padding: 15px 26px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.lp-copy { color: var(--text-muted); font-size: 12px; }
.lp-copy a { color: var(--text-muted); text-decoration: none; }
.lp-copy a:hover { color: var(--lp-accent); }
.lp-fbadge { color: var(--text-muted); font-size: 11.5px; display: inline-flex; align-items: center; gap: 6px; }
.lp-fdot { width: 6px; height: 6px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 8px rgba(34, 197, 94, 0.6); }

/* ── AUTH SAYFASI (login.html) ── */
.auth-shell { display: flex; flex-direction: column; align-items: center; gap: 0; width: 100%; max-width: 400px; }
.auth-logo { display: flex; align-items: center; gap: 11px; text-decoration: none; margin-bottom: 22px; }
.auth-card-modern {
  background: var(--surface);
  border: 1px solid color-mix(in srgb, var(--lp-accent) 30%, transparent);
  border-radius: 20px; padding: 32px 30px; width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 34px var(--lp-glow-soft);
}
.auth-links {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; margin-top: 16px; gap: 10px; flex-wrap: wrap;
}
.auth-link {
  color: var(--text-muted); font-size: 12.5px; text-decoration: none;
  display: inline-flex; align-items: center; gap: 5px;
  padding: 6px 10px; border-radius: 8px; transition: all 0.15s;
}
.auth-link:hover { color: var(--text); background: var(--surface2); }
.auth-link.accent { color: var(--lp-accent); font-weight: 600; }
.auth-link.accent:hover { color: #b06bff; background: var(--lp-glow-soft); }
.auth-submit {
  background: linear-gradient(135deg, var(--lp-accent), var(--lp-accent-2)) !important;
  box-shadow: 0 4px 14px var(--lp-glow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}
.auth-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 26px var(--lp-glow); }

/* ── AYDINLIK TEMA ── */
html[data-theme="light"] .landing-page {
  background-image:
    radial-gradient(900px 480px at 80% -10%, rgba(124, 58, 237, 0.08), transparent 60%),
    radial-gradient(700px 420px at 8% 22%, rgba(142, 68, 255, 0.05), transparent 55%);
}
html[data-theme="light"] .lp-stats { box-shadow: 0 5px 22px rgba(0, 0, 0, 0.05); }
html[data-theme="light"] .lp-card:hover { box-shadow: 0 12px 30px rgba(0, 0, 0, 0.10), 0 0 18px var(--lp-glow-soft); }
html[data-theme="light"] .lp-hero h1 span { text-shadow: none; }
html[data-theme="light"] .lp-title span { text-shadow: none; }
html[data-theme="light"] .lp-stat-num { text-shadow: none; }
html[data-theme="light"] .auth-card-modern { box-shadow: 0 20px 50px rgba(0, 0, 0, 0.10), 0 0 30px var(--lp-glow-soft); }

/* ── RESPONSIVE ── */
@media (max-width: 980px) {
  .lp-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .lp-header { padding: 10px 16px; }
  .lp-nav-link { display: none; }        /* SSS/Blog footer'da da var */
  .lp-logo-sub { display: none; }
  .lp-logo-icon { width: 34px; height: 34px; }
  .lp-logo-name { font-size: 15px; }
  .lp-btn, .lp-btn-ghost { padding: 8px 13px; font-size: 12.5px; }
  .lp-btn-lg { padding: 13px 24px; font-size: 14.5px; }
  .lp-main { padding: 0 18px; }
  .lp-hero { padding: 44px 0 36px; }
  .lp-hero h1 { font-size: 29px; }
  .lp-sub { font-size: 14.5px; }
  .lp-badge { font-size: 9.5px; letter-spacing: 2px; padding: 6px 14px; }
  .lp-stats { grid-template-columns: repeat(2, 1fr); gap: 14px; padding: 20px 14px; }
  .lp-stat-num { font-size: 24px; }
  .lp-section { padding: 34px 0; }
  .lp-title { font-size: 22px; }
  .lp-steps { grid-template-columns: 1fr; }
  .lp-list { grid-template-columns: 1fr; }
  .lp-final { padding: 34px 18px; margin-bottom: 40px; }
  .lp-final h2 { font-size: 20px; }
  /* Footer: mobilde logo üstte, linkler altında iki sütun */
  .lp-footer-in { grid-template-columns: 1fr 1fr; gap: 26px 20px; padding: 32px 18px 22px; }
  .lp-fcenter { grid-column: 1 / -1; order: -1; }
  .lp-fcol.right { align-items: flex-start; text-align: left; }
  .lp-fcol.right a:hover { transform: translateX(3px); }
  .lp-fbottom { flex-direction: column; align-items: center; text-align: center; gap: 8px; padding: 14px 18px; }
}
@media (max-width: 400px) {
  .lp-grid { grid-template-columns: 1fr; }
  .lp-hero h1 { font-size: 25px; }
}
