/* WiseCop marketing site — cinematic deep-blue theme matching the brand banner */
* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #050914;
  --bg2: #0a1226;
  --fg: #f4f7ff;
  --muted: #8fa0c9;
  --primary: #2f6fed;
  --primary-bright: #4d8dff;
  --line: rgba(120, 165, 255, 0.35);
  --line-soft: rgba(255, 255, 255, 0.08);
  --card: rgba(10, 18, 40, 0.6);
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background:
    radial-gradient(900px 500px at 80% 0%, rgba(47, 111, 237, 0.14), transparent 60%),
    radial-gradient(700px 400px at 10% 30%, rgba(47, 111, 237, 0.08), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 55%, var(--bg) 100%);
  color: var(--fg);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: var(--primary-bright); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---------- Header / nav ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  background: rgba(5, 9, 20, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}

.brand {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 20px;
  color: var(--fg);
  letter-spacing: 0.4px;
}
.brand:hover { text-decoration: none; }
.brand img { width: 34px; height: 34px; border-radius: 8px; margin-right: 10px; }
.brand .accent { color: var(--primary-bright); }

.menu { position: relative; }
.menu-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 9px 18px;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
}
.menu-btn:hover { background: rgba(47, 111, 237, 0.15); border-color: var(--primary-bright); }

.menu-list {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  min-width: 240px;
  background: rgba(8, 13, 30, 0.98);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}
.menu.open .menu-list { display: block; }
.menu-list a {
  display: block;
  padding: 11px 14px;
  border-radius: 8px;
  color: var(--fg);
  font-size: 14px;
  letter-spacing: 0.4px;
}
.menu-list a:hover { background: rgba(47, 111, 237, 0.18); text-decoration: none; }
.menu-list .divider { height: 1px; background: var(--line-soft); margin: 6px 8px; }
.menu-list .contact { color: var(--muted); font-size: 13px; }

/* ---------- Hero (brand banner) ---------- */
.hero { position: relative; }
.hero .banner {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}
.hero-actions {
  text-align: center;
  padding: 34px 20px 10px;
}
.apple-icon {
  width: 17px;
  height: 17px;
  margin-top: -2px;
  flex-shrink: 0;
}
.store-link {
  margin-top: 18px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}
.store-link a {
  color: var(--primary-bright);
  text-decoration: underline;
  word-break: break-all;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary-bright), var(--primary));
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.6px;
  padding: 14px 34px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(47, 111, 237, 0.35);
}
.btn:hover { text-decoration: none; filter: brightness(1.08); }
.btn.ghost {
  background: transparent;
  border: 1px solid var(--line);
  box-shadow: none;
  margin-left: 12px;
  color: var(--fg);
}
.btn.ghost:hover { border-color: var(--primary-bright); background: rgba(47, 111, 237, 0.12); }

/* ---------- Sections ---------- */
main { max-width: 1040px; margin: 0 auto; padding: 0 22px 80px; }
section { padding: 64px 0 8px; }
.kicker {
  text-align: center;
  color: var(--primary-bright);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
section h2 {
  font-size: 30px;
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}
section p.sub { text-align: center; color: var(--muted); max-width: 640px; margin: 0 auto 40px; font-size: 16px; }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.card {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 30px 26px;
  transition: border-color 0.2s ease;
}
.card:hover { border-color: var(--line); }
.card .icon-frame {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 18px;
  background: rgba(47, 111, 237, 0.08);
}
.card .icon-frame svg { width: 26px; height: 26px; stroke: var(--primary-bright); }
.card h3 { font-size: 18px; margin-bottom: 10px; font-weight: 600; letter-spacing: 0.3px; }
.card p { color: var(--muted); font-size: 15px; }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; max-width: 660px; margin: 0 auto; }
.price-card {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
}
.price-card.best { border-color: var(--primary); box-shadow: 0 0 0 1px var(--primary), 0 18px 46px rgba(47, 111, 237, 0.22); }
.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary-bright), var(--primary));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 999px;
  letter-spacing: 2px;
}
.price-card h3 {
  font-size: 13px;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.price { font-size: 46px; font-weight: 800; margin: 12px 0 2px; letter-spacing: -1px; }
.price span { font-size: 16px; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.price-note { color: var(--muted); font-size: 14px; margin-bottom: 6px; }

/* ---------- Content pages (privacy, disclaimer, about) ---------- */
.page { max-width: 780px; margin: 0 auto; padding: 52px 22px 80px; }
.page h1 { font-size: 34px; margin-bottom: 6px; letter-spacing: 0.3px; }
.page .updated {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 34px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-soft);
}
.page h2 {
  font-size: 20px;
  margin: 38px 0 12px;
  color: var(--fg);
  letter-spacing: 0.3px;
}
.page p, .page li { color: #c3cde8; font-size: 16px; }
.page ul { list-style: none; margin: 12px 0; }
.page li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}
.page li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 1px;
  background: var(--primary-bright);
}

/* ---------- Screenshots ---------- */
.screens-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 340px;
  margin: 34px auto 0;
}
.screens-grid img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 22px;
  border: 1px solid var(--line-soft);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
}

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--line-soft);
  padding: 34px 22px 44px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}
footer .links { margin-bottom: 12px; }
footer .links a { color: var(--muted); margin: 0 12px; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; }
footer .links a:hover { color: var(--primary-bright); }

@media (max-width: 560px) {
  .btn.ghost { margin-left: 0; margin-top: 12px; }
  section h2 { font-size: 25px; }
}
