/* Peeky marketing site — shared styles.
   Theme mirrors the iOS app: deep navy headings, slate body, soft lavender
   backgrounds, flat dark-ink CTAs, with a subtle purple brand gradient for
   decorative accents only. System rounded fonts approximate SF Pro Rounded. */

:root {
  --navy: #0b0740;
  --ink: #12141f;
  --slate: #5a5b90;
  --slate-soft: #8688ad;
  --bg: #f7f6fd;
  --card: #ffffff;
  --lav: #efecfd;
  --line: #e6e3f4;
  --accent: #6c4df6;
  --grad: linear-gradient(120deg, #3a6bfd 0%, #7551f7 50%, #c23afd 100%);
  --shadow: 0 18px 50px rgba(11, 7, 64, 0.10);
  --shadow-sm: 0 8px 24px rgba(11, 7, 64, 0.08);
  --radius: 26px;
  --maxw: 1120px;
  --font: -apple-system, "SF Pro Rounded", "SF Pro Display", system-ui,
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--navy);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

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

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 246, 253, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 26px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--slate);
  transition: color 0.18s ease;
}
.nav-links a:hover { color: var(--navy); }

/* ---------- Buttons / badges ---------- */

.btn-ink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 11px 22px;
  border-radius: 999px;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.btn-ink:hover { transform: translateY(-1px); box-shadow: var(--shadow-sm); }

.appstore-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #000;
  color: #fff;
  padding: 12px 22px;
  border-radius: 16px;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.appstore-badge:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(0,0,0,0.28); }
.appstore-badge .apple-logo { width: 26px; height: 32px; fill: #fff; flex: none; }
.appstore-badge .badge-text { display: flex; flex-direction: column; line-height: 1.1; }
.appstore-badge .badge-text small { font-size: 11px; font-weight: 500; opacity: 0.92; letter-spacing: 0.2px; }
.appstore-badge .badge-text strong { font-size: 20px; font-weight: 600; letter-spacing: 0.2px; }

/* ---------- Hero ---------- */

.hero { position: relative; overflow: hidden; padding: 72px 0 40px; }
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--lav);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(38px, 5.6vw, 62px);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -1px;
  margin: 0 0 18px;
}
.hero h1 .grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p.lead {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--slate);
  max-width: 520px;
  margin: 0 0 30px;
}

.hero-cta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.hero-note { font-size: 13.5px; color: var(--slate-soft); margin-top: 16px; }

.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 6% 4% 10% 4%;
  background: var(--grad);
  filter: blur(60px);
  opacity: 0.22;
  border-radius: 50%;
  z-index: 0;
}
.hero-visual img { position: relative; z-index: 1; width: 92%; }

/* ---------- Section scaffolding ---------- */

section { position: relative; }
.section-pad { padding: 76px 0; }

.section-head { text-align: center; max-width: 680px; margin: 0 auto 52px; }
.section-head .kicker {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-head h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 0 0 14px;
}
.section-head p { font-size: 17px; color: var(--slate); margin: 0; }

/* ---------- Feature rows ---------- */

.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 56px 0;
}
.feature.reverse .feature-media { order: 2; }
.feature-media { display: flex; justify-content: center; }
.feature-media .media-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 26px;
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 440px;
}
.feature-media .media-card img { width: 100%; border-radius: 16px; }

.feature-copy h3 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -0.4px;
  margin: 0 0 14px;
}
.feature-copy p { font-size: 17px; color: var(--slate); margin: 0 0 18px; }

.bullets { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.bullets li { display: flex; gap: 12px; align-items: flex-start; font-weight: 500; color: var(--navy); }
.bullets li .tick {
  flex: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--lav);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
  margin-top: 1px;
}

/* ---------- Platforms strip ---------- */

.platforms { background: var(--card); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.platform-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 8px;
}
.platform-grid .chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 15px;
}
.platform-grid .chip img { width: 22px; height: 22px; }

/* ---------- Steps ---------- */

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
}
.step .num {
  width: 44px; height: 44px;
  border-radius: 14px;
  background: var(--grad);
  color: #fff;
  font-weight: 800;
  font-size: 19px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.step h4 { font-size: 19px; font-weight: 700; margin: 0 0 8px; }
.step p { color: var(--slate); margin: 0; font-size: 15.5px; }

/* ---------- Privacy band ---------- */

.privacy-band { background: var(--navy); color: #fff; border-radius: 0; }
.privacy-band .container {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: center;
}
.privacy-band img { width: 70%; margin: 0 auto; }
.privacy-band h2 { font-size: clamp(26px, 3.6vw, 38px); font-weight: 800; letter-spacing: -0.5px; margin: 0 0 16px; }
.privacy-band p { color: rgba(255,255,255,0.78); font-size: 17px; margin: 0 0 14px; max-width: 520px; }
.privacy-band .pill-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 8px;
  color: #fff; font-weight: 600; font-size: 15px;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 10px 18px; border-radius: 999px;
  transition: background 0.18s ease;
}
.privacy-band .pill-link:hover { background: rgba(255,255,255,0.10); }

/* ---------- Final CTA ---------- */

.final-cta { text-align: center; }
.final-cta .cta-card {
  background: var(--grad);
  border-radius: 34px;
  padding: 64px 32px;
  color: #fff;
  box-shadow: var(--shadow);
}
.final-cta h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; letter-spacing: -0.5px; margin: 0 0 14px; }
.final-cta p { font-size: 18px; opacity: 0.92; margin: 0 0 28px; }
.final-cta .appstore-badge { background: #000; }

/* ---------- Footer ---------- */

.site-footer { padding: 54px 0 40px; border-top: 1px solid var(--line); }
.site-footer .container { display: flex; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.footer-brand { max-width: 320px; }
.footer-brand img { height: 26px; margin-bottom: 14px; }
.footer-brand p { color: var(--slate); font-size: 14px; margin: 0; }
.footer-links { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-col h5 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.4px; color: var(--slate-soft); margin: 0 0 14px; }
.footer-col a, .footer-col span { display: block; color: var(--navy); font-weight: 500; font-size: 15px; margin-bottom: 10px; }
.footer-col a:hover { color: var(--accent); }
.copyright { margin-top: 36px; text-align: center; color: var(--slate-soft); font-size: 13.5px; }

/* ---------- Legal / privacy document ---------- */

.legal { padding: 56px 0 72px; }
.legal-wrap { max-width: 800px; margin: 0 auto; }
.legal h1 { font-size: clamp(32px, 4.5vw, 46px); font-weight: 800; letter-spacing: -0.6px; margin: 0 0 8px; }
.legal .updated { color: var(--slate-soft); font-size: 14px; margin: 0 0 36px; }
.legal h2 { font-size: 22px; font-weight: 800; margin: 38px 0 12px; letter-spacing: -0.3px; }
.legal h3 { font-size: 17px; font-weight: 700; margin: 22px 0 8px; }
.legal p, .legal li { color: var(--slate); font-size: 16px; }
.legal p { margin: 0 0 14px; }
.legal ul { padding-left: 22px; margin: 0 0 16px; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--accent); font-weight: 600; }
.legal .back { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--accent); margin-bottom: 30px; }

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual { order: -1; }
  .hero-visual img { width: 70%; }
  .feature { grid-template-columns: 1fr; gap: 28px; padding: 36px 0; }
  .feature.reverse .feature-media { order: 0; }
  .steps { grid-template-columns: 1fr; }
  .privacy-band .container { grid-template-columns: 1fr; text-align: center; }
  .privacy-band img { width: 50%; }
  .privacy-band p { margin-left: auto; margin-right: auto; }
  .nav-links { display: none; }
}

@media (max-width: 520px) {
  .section-pad { padding: 54px 0; }
  .hero { padding: 48px 0 24px; }
  .final-cta .cta-card { padding: 44px 22px; }
}
