/* Picky — marketing + support site
   Clean, light, minimal. White canvas, generous whitespace, one accent. */

:root {
  --bg: #ffffff;
  --bg-soft: #fafafa;
  --elevated: #ffffff;
  --border: #ececec;
  --border-hi: #e0e0e0;
  --ink: #111113;
  --text: #3a3a3c;
  --text-mute: #6e6e73;
  --text-subtle: #9a9aa0;
  --accent: #ff7a5c;
  --accent-soft: #fff3ef;
  --accent-ink: #d65a3e;
  --radius: 16px;
  --maxw: 1080px;
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --shadow-sm: 0 1px 2px rgba(17, 17, 19, 0.04), 0 1px 3px rgba(17, 17, 19, 0.04);
  --shadow-md: 0 4px 24px rgba(17, 17, 19, 0.06);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

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

a { color: var(--accent-ink); text-decoration: none; }
a:hover { color: var(--accent); }
img { max-width: 100%; display: block; }
code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.88em;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 1px 5px;
  color: var(--ink);
}

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

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 650;
  font-size: 17px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.brand img { width: 26px; height: 26px; border-radius: 7px; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { color: var(--text-mute); font-size: 14.5px; font-weight: 500; }
.nav a:hover { color: var(--ink); }
.nav a.btn { color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 550;
  font-size: 14.5px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.18s, border-color 0.18s, color 0.18s, box-shadow 0.18s, transform 0.06s;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: #000; color: #fff; box-shadow: var(--shadow-md); }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--border-hi); }
.btn-ghost:hover { background: var(--bg-soft); color: var(--ink); border-color: #d4d4d4; }

/* ---------- Hero ---------- */
.hero {
  text-align: center;
  padding: 110px 0 84px;
}
.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 550;
  color: var(--accent-ink);
  background: var(--accent-soft);
  border: 1px solid #ffe2d8;
  padding: 5px 13px;
  border-radius: 999px;
  margin-bottom: 26px;
}
.hero h1 {
  font-size: clamp(38px, 6vw, 60px);
  line-height: 1.05;
  margin: 0 0 20px;
  letter-spacing: -0.035em;
  font-weight: 700;
  color: var(--ink);
}
.hero h1 .grad { color: var(--accent); }
.hero p.lede {
  max-width: 600px;
  margin: 0 auto 34px;
  font-size: clamp(17px, 2.2vw, 20px);
  color: var(--text-mute);
  line-height: 1.55;
}
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero-actions .btn { padding: 12px 22px; font-size: 15px; }
.hero-note { margin-top: 18px; font-size: 13px; color: var(--text-subtle); }

/* ---------- Sections ---------- */
section { padding: 72px 0; }
.section-head { text-align: center; max-width: 560px; margin: 0 auto 56px; }
.section-head h2 {
  font-size: clamp(27px, 3.6vw, 38px);
  margin: 0 0 14px;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: var(--ink);
}
.section-head p { color: var(--text-mute); font-size: 17px; margin: 0; }

/* ---------- Feature grid ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.card {
  background: var(--bg);
  padding: 32px 28px;
  transition: background 0.18s;
}
.card:hover { background: var(--bg-soft); }
.card .ico {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: var(--accent-soft);
  border: 1px solid #ffe2d8;
  margin-bottom: 18px;
  font-size: 20px;
}
.card h3 { margin: 0 0 8px; font-size: 17px; font-weight: 650; color: var(--ink); letter-spacing: -0.01em; }
.card p { margin: 0; color: var(--text-mute); font-size: 14.5px; line-height: 1.55; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.step .num {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 9px;
  background: var(--ink);
  color: #fff;
  font-weight: 650;
  font-size: 14px;
  margin-bottom: 16px;
}
.step h3 { margin: 0 0 7px; font-size: 16.5px; color: var(--ink); font-weight: 650; }
.step p { margin: 0; color: var(--text-mute); font-size: 14.5px; }

/* ---------- CTA band ---------- */
.cta {
  text-align: center;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 64px 24px;
}
.cta h2 { font-size: clamp(25px, 3.6vw, 36px); margin: 0 0 12px; font-weight: 700; color: var(--ink); letter-spacing: -0.03em; }
.cta p { color: var(--text-mute); margin: 0 0 28px; font-size: 17px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: 80px 0 24px; text-align: center; }
.page-hero h1 { font-size: clamp(32px, 4.5vw, 46px); margin: 0 0 12px; font-weight: 700; letter-spacing: -0.03em; color: var(--ink); }
.page-hero p { color: var(--text-mute); margin: 0; font-size: 17px; }

/* ---------- Article / legal ---------- */
.article { max-width: 720px; margin: 0 auto; padding: 16px 0 72px; }
.article h2 { font-size: 21px; margin: 44px 0 12px; font-weight: 650; color: var(--ink); letter-spacing: -0.01em; }
.article h3 { font-size: 16.5px; margin: 26px 0 8px; font-weight: 650; color: var(--ink); }
.article p, .article li { color: var(--text); font-size: 16px; }
.article ul { padding-left: 22px; }
.article li { margin-bottom: 9px; }
.article .updated { color: var(--text-subtle); font-size: 14px; }
.article strong { color: var(--ink); font-weight: 600; }

.callout {
  background: var(--accent-soft);
  border: 1px solid #ffe2d8;
  border-radius: 12px;
  padding: 18px 22px;
  margin: 28px 0;
}
.callout p { margin: 0; color: var(--accent-ink); }
.callout strong { color: var(--accent-ink); }

/* ---------- FAQ ---------- */
.faq { max-width: 720px; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid var(--border);
  padding: 4px 4px;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  padding: 20px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--text-subtle); font-size: 22px; font-weight: 300; transition: transform 0.2s; }
.faq details[open] summary::after { content: '\2212'; color: var(--accent); }
.faq details p { margin: 0 0 20px; color: var(--text-mute); font-size: 15px; line-height: 1.6; }

/* ---------- Contact card ---------- */
.contact-card {
  max-width: 540px;
  margin: 0 auto 48px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
}
.contact-card h2 { margin: 0 0 8px; font-size: 21px; color: var(--ink); font-weight: 650; }
.contact-card p { color: var(--text-mute); margin: 0 0 22px; font-size: 15px; }
.contact-card .email {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: var(--ink);
  padding: 11px 22px;
  border-radius: 10px;
}
.contact-card .email:hover { background: #000; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 44px 0;
  margin-top: 32px;
}
.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.site-footer .brand { font-size: 15px; }
.site-footer .links { display: flex; gap: 24px; flex-wrap: wrap; }
.site-footer .links a { color: var(--text-mute); font-size: 14px; }
.site-footer .links a:hover { color: var(--ink); }
.site-footer .copy { color: var(--text-subtle); font-size: 13px; width: 100%; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .nav { gap: 18px; }
  .nav .nav-link-hide { display: none; }
}
@media (max-width: 520px) {
  .hero { padding: 72px 0 56px; }
  section { padding: 56px 0; }
}
