/* GetKiss Auto — download landing
   Tema: uygulamanın UI kit token'larından türetildi
   (app/client/kit/parts/uiStyles.js): koyu lacivert/cyan, yeşil primary buton. */

:root {
  --bg-0: #04090e;
  --bg-1: #07131f;
  --card-grad-a: rgba(10, 24, 38, 0.72);
  --card-grad-b: rgba(7, 16, 27, 0.66);
  --border: rgba(85, 221, 255, 0.14);
  --border-soft: rgba(85, 221, 255, 0.08);
  --accent: #55ddff;
  --accent-soft: rgba(85, 221, 255, 0.1);
  --text: #eaf8ff;
  --text-2: #cfeeff;
  --muted: rgba(160, 200, 220, 0.55);
  --muted-2: rgba(140, 190, 215, 0.5);
  --primary-border: rgba(40, 200, 120, 0.32);
  --primary-bg: rgba(20, 160, 90, 0.18);
  --primary-bg-hover: rgba(20, 160, 90, 0.3);
  --primary-text: #8fffc0;
  --ok: #7dffb0;
  --r-card: 16px;
  --r-btn: 10px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg-0);
  background-image:
    radial-gradient(1100px 600px at 50% -10%, rgba(85, 221, 255, 0.08), transparent 60%),
    linear-gradient(180deg, var(--bg-1), var(--bg-0));
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  display: flex;
  min-height: 100%;
  align-items: center;
  justify-content: center;
  padding: 28px 18px;
}

/* soft top glow accent */
.bg-glow {
  position: fixed;
  inset: -20% 0 auto 0;
  height: 360px;
  background: radial-gradient(600px 200px at 50% 0, rgba(85, 221, 255, 0.12), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

/* ---- card (ui-card türevi) ---- */
.card {
  width: 100%;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--card-grad-a), var(--card-grad-b));
  border-radius: var(--r-card);
  box-shadow: var(--shadow);
  padding: 30px 28px 26px;
  text-align: center;
}

.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.logo {
  display: block;
  width: 72px;
  height: 72px;
  border-radius: 18px;
  filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.45));
}

.pill {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 11px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  border: 1px solid rgba(120, 150, 180, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-2);
}
.pill-accent {
  color: var(--accent);
  border-color: rgba(85, 221, 255, 0.3);
  background: var(--accent-soft);
}

.title {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 0.2px;
  color: var(--text);
  margin: 6px 0 6px;
}

.subtitle {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 22px;
  line-height: 1.5;
}

/* ---- primary download button (ui-btn-primary türevi) ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  height: 50px;
  padding: 0 18px;
  border-radius: var(--r-btn);
  border: 1px solid var(--primary-border);
  background: var(--primary-bg);
  color: var(--primary-text);
  font-size: 15px;
  font-weight: 800;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.14s ease, border-color 0.14s ease, transform 0.06s ease;
}
.btn:hover { background: var(--primary-bg-hover); }
.btn:active { transform: translateY(1px); }
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.btn-ic { flex: none; }

/* ---- meta chips ---- */
.meta {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.meta-item {
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.025);
  border-radius: 10px;
  padding: 11px 13px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.meta-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--muted-2);
}
.meta-value { font-size: 13px; font-weight: 800; color: var(--text-2); }
.meta-value.ok { color: var(--ok); }

.hint {
  margin: 18px 0 0;
  font-size: 11px;
  color: var(--muted-2);
}

/* ---- footer ---- */
.foot {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  color: var(--muted-2);
}
.foot a { color: var(--accent); text-decoration: none; }
.foot a:hover { text-decoration: underline; text-underline-offset: 3px; }
.dot { opacity: 0.5; }

/* ---- responsive ---- */
@media (max-width: 420px) {
  .card { padding: 24px 20px 22px; }
  .title { font-size: 26px; }
  .meta { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .btn { transition: none; }
}
