/* ============================================================
   Kickly — marka: yeşil gradyan (#0DBE5C → #06913F), koyu tema.
   Sistem fontu (SF Pro/Roboto ailesi) — harici yazı tipi yok,
   uygulamanın kendi hissini birebir taşısın diye.
   ============================================================ */

:root {
  --bg: #050806;
  --bg-elevated: #0d1310;
  --bg-card: #111a15;
  --border: rgba(255, 255, 255, 0.08);
  --text: #f2f5f3;
  --text-secondary: #9fb0a6;
  --text-muted: #6b7970;
  --green: #17c964;
  --green-dark: #06913f;
  --green-bright: #3ddc7a;
  --lime: #c8ea5e;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --max-width: 1120px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

/* ── Arka plan dekoru: yumuşak yeşil glow'lar (sabit, performans dostu) ── */
.bg-glow {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(600px 400px at 15% -5%, rgba(23, 201, 100, 0.16), transparent 60%),
    radial-gradient(500px 400px at 90% 15%, rgba(61, 220, 122, 0.10), transparent 60%);
}

/* ── Header ── */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(5, 8, 6, 0.72);
  border-bottom: 1px solid var(--border);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.brand img { width: 32px; height: 32px; border-radius: 9px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

.nav-links a:hover { color: var(--text); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: linear-gradient(135deg, var(--green-bright), var(--green-dark));
  color: #05130a;
  box-shadow: 0 8px 24px -8px rgba(23, 201, 100, 0.55);
}
.btn-primary:hover { box-shadow: 0 10px 28px -6px rgba(23, 201, 100, 0.7); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border);
  color: var(--text);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); }

/* ── Hero ── */
.hero {
  padding: 88px 0 64px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green-bright);
  background: rgba(23, 201, 100, 0.12);
  border: 1px solid rgba(23, 201, 100, 0.25);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green-bright);
  animation: pulse-dot 1.8s ease-in-out infinite;
}

h1 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin: 0 0 20px;
}
h1 .accent {
  background: linear-gradient(135deg, var(--green-bright), var(--lime));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 0 32px;
}

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }

.hero-note { font-size: 13px; color: var(--text-muted); }

/* ── Animasyonlu logo/görsel ── */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}

.hero-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--green-dark), var(--green-bright), var(--lime), var(--green-dark));
  filter: blur(70px);
  opacity: 0.32;
  animation: spin 14s linear infinite;
}

.hero-dot {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 12px 2px rgba(200, 234, 94, 0.8);
  animation: float 6s ease-in-out infinite;
}
.hero-dot-a { top: 8%; left: 14%; }
.hero-dot-b { bottom: 12%; right: 12%; animation-delay: -3s; }

.hero-phone {
  position: relative;
  width: 240px;
  border-radius: 34px;
  padding: 8px;
  background: linear-gradient(160deg, #1b241d, #0a0f0b);
  border: 1px solid var(--border);
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(255, 255, 255, 0.06);
  animation: float 5s ease-in-out infinite;
}
.hero-phone img { width: 100%; height: auto; display: block; border-radius: 26px; }

.hero-badge {
  position: absolute;
  top: 12%;
  right: 4%;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(13, 19, 16, 0.92);
  border: 1px solid rgba(23, 201, 100, 0.35);
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: 0 16px 32px -12px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: float 5s ease-in-out infinite;
  animation-delay: -1.5s;
}
.hero-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #ff4d4d;
  box-shadow: 0 0 10px 2px rgba(255, 77, 77, 0.7);
  flex-shrink: 0;
  animation: pulse-dot 1.6s ease-in-out infinite;
}
.hero-badge-text { display: flex; flex-direction: column; line-height: 1.25; }
.hero-badge-text strong { font-size: 13px; font-weight: 700; }
.hero-badge-text span { font-size: 12px; color: var(--text-secondary); }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-glow, .hero-dot, .hero-phone, .hero-badge, .hero-badge-dot, .eyebrow .dot { animation: none; }
}

/* ── Store badges ── */
.store-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.store-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  min-width: 168px;
}
.store-badge svg { width: 24px; height: 24px; flex-shrink: 0; }
.store-badge-text { display: flex; flex-direction: column; line-height: 1.2; }
.store-badge-text small { font-size: 11px; color: var(--text-muted); }
.store-badge-text strong { font-size: 15px; font-weight: 700; }
.store-badge.soon { opacity: 0.6; cursor: default; }

/* ── Sections ── */
section { padding: 88px 0; }
section.tight { padding: 56px 0; }

.section-head { text-align: center; max-width: 620px; margin: 0 auto 56px; }
.section-tag {
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--green-bright); margin-bottom: 12px;
}
.section-head h2 { font-size: clamp(28px, 3.6vw, 40px); letter-spacing: -0.02em; margin: 0 0 14px; font-weight: 800; }
.section-head p { color: var(--text-secondary); font-size: 17px; margin: 0; }

/* ── Feature grid ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.feature-card:hover { transform: translateY(-4px); border-color: rgba(23, 201, 100, 0.35); }

.feature-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(23,201,100,0.22), rgba(61,220,122,0.08));
  color: var(--green-bright);
  margin-bottom: 16px;
}
.feature-icon svg { width: 22px; height: 22px; }

.feature-card h3 { font-size: 17px; margin: 0 0 8px; font-weight: 700; }
.feature-card p { font-size: 14.5px; color: var(--text-secondary); margin: 0; line-height: 1.6; }

/* ── Screenshots showcase ── */
.showcase-scroller {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 8px 4px 24px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.showcase-scroller::-webkit-scrollbar { height: 6px; }
.showcase-scroller::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

.phone-frame {
  flex: 0 0 auto;
  width: 220px;
  scroll-snap-align: start;
  border-radius: 28px;
  padding: 8px;
  background: linear-gradient(160deg, #1b241d, #0a0f0b);
  border: 1px solid var(--border);
  box-shadow: 0 20px 40px -16px rgba(0,0,0,0.6);
}
.phone-frame img { border-radius: 20px; }
.phone-caption { text-align: center; font-size: 13px; color: var(--text-secondary); margin-top: 12px; }

/* ── CTA band ── */
.cta-band {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(23,201,100,0.16), rgba(200,234,94,0.06));
  border: 1px solid rgba(23,201,100,0.25);
  padding: 56px;
  text-align: center;
}
.cta-band h2 { font-size: clamp(26px, 3.4vw, 34px); margin: 0 0 14px; font-weight: 800; letter-spacing: -0.02em; }
.cta-band p { color: var(--text-secondary); margin: 0 0 28px; }

/* ── Footer ── */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer-row {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer-links { display: flex; gap: 24px; font-size: 14px; color: var(--text-secondary); }
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 13px; color: var(--text-muted); }

/* ── Simple content pages (privacy/support) ── */
.doc {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 24px 96px;
}
.doc h1 { font-size: 34px; margin-bottom: 8px; }
.doc .doc-updated { color: var(--text-muted); font-size: 14px; margin-bottom: 40px; }
.doc h2 { font-size: 20px; margin: 36px 0 12px; font-weight: 700; }
.doc p, .doc li { color: var(--text-secondary); font-size: 15.5px; line-height: 1.75; }
.doc ul { padding-left: 20px; }
.doc a.inline { color: var(--green-bright); text-decoration: underline; }

/* ── Admin ── */
.admin-shell { min-height: 100vh; background: var(--bg); }
.admin-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; border-bottom: 1px solid var(--border);
}
.admin-container { max-width: 960px; margin: 0 auto; padding: 32px 24px 80px; }
.admin-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 24px; margin-bottom: 24px;
}
.admin-card h2 { font-size: 16px; margin: 0 0 16px; font-weight: 700; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.admin-table th { text-align: left; color: var(--text-muted); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em; padding: 8px 10px; border-bottom: 1px solid var(--border); }
.admin-table td { padding: 10px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.badge { display: inline-block; padding: 3px 9px; border-radius: 999px; font-size: 11px; font-weight: 700; }
.badge-mod { background: rgba(23,201,100,0.16); color: var(--green-bright); }
.badge-banned { background: rgba(239,68,68,0.16); color: #f87171; }
.admin-actions { display: flex; gap: 6px; flex-wrap: wrap; }
.btn-sm { padding: 6px 12px; font-size: 12.5px; border-radius: 8px; }
.btn-danger { background: rgba(239,68,68,0.14); color: #f87171; border: 1px solid rgba(239,68,68,0.3); }
.btn-danger:hover { background: rgba(239,68,68,0.22); }
.empty-note { color: var(--text-muted); font-size: 14px; padding: 8px 0; }

.login-shell {
  min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 24px;
}
.login-card {
  width: 100%; max-width: 380px; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 32px;
}
.login-card h1 { font-size: 20px; margin: 0 0 4px; }
.login-card p { color: var(--text-secondary); font-size: 14px; margin: 0 0 24px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--text-secondary); }
.field input {
  width: 100%; padding: 11px 14px; border-radius: 10px; border: 1px solid var(--border);
  background: var(--bg-elevated); color: var(--text); font-size: 15px; font-family: var(--font);
}
.field input:focus { outline: 2px solid var(--green); outline-offset: 1px; }
.error-text { color: #f87171; font-size: 13.5px; margin: 0 0 16px; }

/* ── Responsive ── */
@media (max-width: 860px) {
  .hero { padding-top: 48px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; min-height: 320px; }
  .hero-sub { max-width: none; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .cta-band { padding: 36px 24px; }
}
@media (max-width: 540px) {
  .features-grid { grid-template-columns: 1fr; }
  section { padding: 56px 0; }
  .footer-row { flex-direction: column; align-items: flex-start; }
  .hero-phone { width: 190px; }
  .hero-badge { display: none; }
  .hero-glow { width: 180px; height: 180px; }
}
