/* =========================================================
   picpace.com — Design tokens (light, brand pink)
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root{
  --bg: #FFFFFF;
  --bg-tint: #FFF1F6;
  --surface: #FFFFFF;
  --surface-tint: #FFF6FA;
  --border: rgba(43,45,66,.09);
  --border-strong: rgba(43,45,66,.16);

  --text: #2B2D42;
  --text-dim: #5B5F73;
  --text-faint: #8D91A6;

  --pink: #E31C79;
  --pink-dark: #B8135F;
  --pink-light: #FDCFE3;
  --pink-wash: #FFEAF4;

  --navy: #22243A;

  --gradient: linear-gradient(135deg, #F72585 0%, #E31C79 100%);
  --shadow-card: 0 10px 30px -12px rgba(227,28,121,.18);
  --shadow-pop: 0 16px 40px -14px rgba(227,28,121,.35);

  --radius-s: 10px;
  --radius-m: 18px;
  --radius-l: 28px;

  --font-display: 'Baloo 2', 'Inter', sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --container: 1180px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

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

img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
h1,h2,h3,h4{ font-family: var(--font-display); font-weight:700; line-height:1.08; margin:0; letter-spacing:-.005em; }
p{ margin:0; }
ul{ margin:0; padding:0; }

:focus-visible{
  outline: 2px solid var(--pink);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--pink);
}
.eyebrow::before{
  content:"";
  width:7px; height:7px; border-radius:50%;
  background: var(--pink);
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  cursor:pointer;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn:active{ transform: translateY(1px) scale(.99); }
.btn-primary{
  background: var(--pink);
  color: #fff;
  box-shadow: var(--shadow-card);
}
.btn-primary:hover{ background: var(--pink-dark); box-shadow: var(--shadow-pop); transform: translateY(-1px); }
.btn-ghost{
  background: #fff;
  border-color: var(--border-strong);
  color: var(--text);
}
.btn-ghost:hover{ border-color: var(--pink); color: var(--pink); }

.btn-store{
  display:inline-flex; align-items:center; gap:10px;
  padding: 10px 18px 10px 14px;
  border-radius: 12px;
  border:1px solid #000;
  background: #000;
  color:#fff;
  transition: transform .18s ease, opacity .18s ease;
}
.btn-store:hover{ transform: translateY(-1px); opacity:.88; }
.btn-store svg{ flex-shrink:0; }
.btn-store .store-txt{ display:flex; flex-direction:column; line-height:1.15; }
.btn-store .store-txt small{ font-size:10px; letter-spacing:.03em; color:#d8d8d8; }
.btn-store .store-txt strong{ font-size:15px; font-family: var(--font-body); font-weight:600; }
.store-row{ display:flex; gap:12px; flex-wrap:wrap; }

/* ---------- Nav ---------- */
.site-header{
  position: sticky; top:0; z-index: 50;
  background: var(--pink);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding: 18px 0;
}
.logo{
  display:flex; align-items:center; gap:8px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -.01em;
  color:#fff;
}
.logo .dot{
  width: 26px; height:26px; border-radius:50%;
  background: #fff;
  display:grid; place-items:center;
  flex-shrink:0;
}
.logo .dot svg{ width:15px; height:15px; }
.nav-links{
  display:flex; align-items:center; gap:0;
  list-style:none;
}
.nav-links a{
  padding: 8px 18px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  border-left: 1px solid rgba(255,255,255,.4);
  transition: opacity .15s ease;
}
.nav-links a:first-child{ border-left:none; }
.nav-links a:hover, .nav-links a.active{ opacity:.8; }
.nav-actions{ display:flex; align-items:center; gap:12px; }
.nav-toggle{
  display:none;
  background:none; border:1px solid rgba(255,255,255,.6); border-radius:10px;
  width:40px; height:40px; color:#fff; cursor:pointer;
}
@media (max-width: 840px){
  .nav-links{
    position:fixed; inset: 72px 16px auto 16px;
    flex-direction:column; align-items:stretch;
    background: var(--pink-dark);
    border-radius: var(--radius-m);
    padding: 10px;
    display:none;
    box-shadow: 0 20px 60px -20px rgba(0,0,0,.4);
  }
  .nav-links.open{ display:flex; }
  .nav-links a{ padding: 12px 16px; border-left:none; border-top:1px solid rgba(255,255,255,.25); }
  .nav-links a:first-child{ border-top:none; }
  .nav-toggle{ display:flex; align-items:center; justify-content:center; }
}

/* ---------- Hero ---------- */
.hero{
  padding: 64px 0 70px;
  background: linear-gradient(160deg, var(--pink-wash) 0%, #fff 55%);
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  align-items:center;
}
@media (max-width: 980px){
  .hero{ grid-template-columns: 1fr; padding: 44px 0 40px; text-align:center; }
  .hero-ctas{ align-items:center !important; }
  .store-row{ justify-content:center; }
}
.hero-logo{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(44px, 7vw, 74px);
  color: var(--pink);
  letter-spacing: -.01em;
  margin-bottom: 14px;
}
.hero h1{
  font-size: clamp(30px, 4.2vw, 44px);
  color: var(--text);
  margin: 0 0 20px;
}
.hero p.lead{
  font-size: 17px; color: var(--text-dim); max-width: 46ch; margin-bottom: 30px;
}
@media (max-width: 980px){ .hero p.lead{ margin-left:auto; margin-right:auto; } }
.hero-ctas{ display:flex; flex-direction:column; gap:16px; align-items:flex-start; }

/* Phone mockup */
.phone-stage{
  position: relative;
  display:grid; place-items:center;
  padding: 20px;
}
.phone{
  position: relative;
  width: 250px;
  aspect-ratio: 9/19.5;
  background: var(--navy);
  border-radius: 34px;
  padding: 10px;
  box-shadow: 0 30px 60px -20px rgba(227,28,121,.35);
  z-index:2;
}
.phone-screen{
  width:100%; height:100%;
  border-radius: 24px;
  background: linear-gradient(160deg, var(--pink-wash), #fff 70%);
  display:grid; place-items:center;
  overflow:hidden;
  position:relative;
}
.phone-screen .ph-label{
  font-size: 11px; color: var(--text-faint);
  border: 1px dashed var(--border-strong); padding: 8px 12px; border-radius: 8px;
  text-align:center; max-width: 80%;
}
.phone-ghost{
  position:absolute;
  width: 210px;
  aspect-ratio: 9/19.5;
  background: var(--navy);
  border-radius: 30px;
  opacity: .18;
  z-index:1;
}
.phone-ghost.left{ left: -40px; bottom: -10px; transform: rotate(-8deg); }
.phone-ghost.right{ right: -40px; bottom: -10px; transform: rotate(8deg); }
@media (max-width: 980px){ .phone-ghost{ display:none; } }

/* ---------- Sections ---------- */
section{ position:relative; z-index:1; padding: 80px 0; }
.section-head{ max-width: 640px; margin-bottom: 46px; }
.section-head h2{ font-size: clamp(26px, 3.4vw, 36px); margin-top:12px; color: var(--text); }
.section-head p{ color: var(--text-dim); margin-top: 14px; font-size:16.5px; }
.section-alt{ background: var(--bg-tint); }

/* Steps */
.steps{ display:grid; grid-template-columns: repeat(3,1fr); gap:20px; }
@media (max-width: 780px){ .steps{ grid-template-columns:1fr; } }
.step{
  padding: 30px 26px;
  border-radius: var(--radius-m);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.step .num{
  font-family: var(--font-display); font-size:22px; color: var(--pink); font-weight:800;
  margin-bottom: 14px; display:block;
}
.step h3{ font-size:19px; margin-bottom:10px; color: var(--text); }
.step p{ color: var(--text-dim); font-size:15px; }

/* Feature blocks */
.feature{
  display:grid; grid-template-columns: 1fr 1fr; gap:56px; align-items:center;
  padding: 56px 0;
  border-top: 1px solid var(--border);
}
.feature:first-of-type{ border-top:none; }
.feature.reverse .feature-media{ order:2; }
@media (max-width: 900px){
  .feature, .feature.reverse .feature-media{ grid-template-columns:1fr; order:0; }
  .feature{ grid-template-columns:1fr; }
}
.feature-media{
  aspect-ratio: 4/3.1;
  border-radius: var(--radius-l);
  background: var(--pink-wash);
  border: 1px solid var(--border);
  display:grid; place-items:center;
  overflow:hidden;
  position:relative;
}
.feature-media .ph-label{
  font-size: 11.5px; color: var(--text-faint);
  border: 1px dashed var(--border-strong); padding: 8px 14px; border-radius: 8px;
}
.feature h3{ font-size: clamp(22px,2.6vw,27px); margin-bottom:14px; color: var(--text); }
.feature > div > p.desc{ color: var(--text-dim); font-size:16px; margin-bottom: 26px; }
.mini-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:18px 24px; }
.mini-item h4{ font-size:14.5px; font-family: var(--font-body); font-weight:700; margin-bottom:5px; color: var(--text); }
.mini-item p{ font-size:13.5px; color: var(--text-faint); }

/* Reason cards */
.reason-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:20px; }
@media (max-width: 980px){ .reason-grid{ grid-template-columns: repeat(2,1fr);} }
@media (max-width: 620px){ .reason-grid{ grid-template-columns: 1fr;} }
.reason-card{
  border-radius: var(--radius-m);
  overflow:hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  transition: transform .2s ease, box-shadow .2s ease;
}
.reason-card:hover{ transform: translateY(-3px); box-shadow: var(--shadow-pop); }
.reason-media{ aspect-ratio: 16/10; background: var(--pink-wash); display:grid; place-items:center; }
.reason-media .ph-label{ font-size: 11px; color: var(--text-faint); }
.reason-body{ padding: 20px 22px 24px; }
.reason-body h3{ font-size:18px; margin-bottom:8px; color: var(--text); }
.reason-body p{ font-size:14px; color: var(--text-dim); }

/* CTA band */
.cta-band{
  border-radius: var(--radius-l);
  padding: 64px 48px;
  background: var(--gradient);
  text-align:center;
  position:relative;
  overflow:hidden;
}
.cta-band .eyebrow{ color: rgba(255,255,255,.85); }
.cta-band .eyebrow::before{ background: #fff; }
.cta-band h2{ font-size: clamp(26px,4vw,38px); margin-bottom:16px; color:#fff; }
.cta-band p{ color: rgba(255,255,255,.9); max-width:50ch; margin: 0 auto 30px; }
.cta-band .store-row{ justify-content:center; }
.cta-band .btn-store{ background:#fff; color: var(--text); border-color:#fff; }
.cta-band .btn-store .store-txt small{ color: var(--text-faint); }

/* ---------- Footer ---------- */
.site-footer{ background: var(--navy); padding: 56px 0 32px; margin-top: 40px; color:#fff; }
.site-footer .logo{ color:#fff; }
.site-footer .logo .dot{ background: var(--pink); }
.site-footer .logo .dot svg path{ fill:#fff; }
.footer-grid{
  display:grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 36px;
  padding-bottom: 36px;
}
@media (max-width: 780px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
.footer-col h4{ font-size:13px; text-transform:uppercase; letter-spacing:.08em; color: rgba(255,255,255,.5); font-weight:700; margin-bottom:16px; }
.footer-col ul{ display:flex; flex-direction:column; gap:11px; list-style:none; }
.footer-col a{ color: rgba(255,255,255,.75); font-size:14.5px; transition: color .15s ease; }
.footer-col a:hover{ color: #fff; }
.footer-brand p{ color: rgba(255,255,255,.6); font-size:14px; margin-top:12px; max-width:32ch; }
.footer-social{ display:flex; gap:10px; margin-top:18px; }
.footer-social a{
  width:36px; height:36px; border-radius:50%; border:1px solid rgba(255,255,255,.25);
  display:grid; place-items:center; transition: background .15s ease;
  color:#fff;
}
.footer-social a:hover{ background: var(--pink); border-color: var(--pink); }
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px;
  padding-top: 28px; border-top:1px solid rgba(255,255,255,.12);
  font-size: 13px; color: rgba(255,255,255,.5);
}
.footer-bottom a{ color: rgba(255,255,255,.5); }
.footer-bottom a:hover{ color: #fff; }

/* ---------- Legal pages ---------- */
.legal-hero{ padding: 56px 0 20px; background: var(--bg-tint); }
.legal-hero .eyebrow{ margin-bottom: 16px; }
.legal-hero h1{ font-size: clamp(30px,4.4vw,42px); color: var(--text); }
.legal-hero p{ color: var(--text-dim); margin-top:14px; font-size:16px; }
.legal-body{ padding: 40px 0 90px; max-width: 780px; }
.legal-body h2{ font-size:21px; margin: 44px 0 14px; color: var(--text); }
.legal-body h2:first-child{ margin-top:0; }
.legal-body h3{ font-size:16.5px; margin: 26px 0 10px; font-family: var(--font-body); font-weight:700; color: var(--text); }
.legal-body p{ color: var(--text-dim); font-size:15px; margin-bottom:14px; }
.legal-body ul, .legal-body ol{ color: var(--text-dim); font-size:15px; margin: 0 0 16px; padding-left: 22px; display:flex; flex-direction:column; gap:8px; }
.legal-body a{ color: var(--pink); text-decoration: underline; text-underline-offset:3px; }
.legal-body strong{ color: var(--text); }
.legal-toc{
  border: 1px solid var(--border); border-radius: var(--radius-m);
  padding: 22px 24px; margin-bottom: 40px; background: var(--surface-tint);
}
.legal-toc h2{ font-size:13px; margin:0 0 14px; text-transform:uppercase; letter-spacing:.06em; font-weight:700; color: var(--pink); }
.legal-toc ol{ columns:2; gap: 8px 28px; font-size:14px; }
@media (max-width: 640px){ .legal-toc ol{ columns:1; } }
.legal-toc a{ color: var(--text-dim); text-decoration:none; }
.legal-toc a:hover{ color: var(--pink); }

/* ---------- FAQ ---------- */
.faq-nav{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom: 44px; }
.faq-nav a{
  padding: 9px 16px; border-radius:999px; border:1px solid var(--border-strong);
  font-size:13.5px; font-weight:600; color: var(--text-dim);
}
.faq-nav a:hover{ color: var(--pink); border-color: var(--pink); }
.faq-group{ margin-bottom: 48px; scroll-margin-top: 100px; }
.faq-group > h2{ font-size:22px; margin-bottom:18px; display:flex; align-items:center; gap:10px; color: var(--text); }
.faq-group > h2 .eyebrow-dot{ width:8px; height:8px; border-radius:50%; background: var(--pink); }
.faq-item{
  border: 1px solid var(--border); border-radius: var(--radius-s);
  margin-bottom: 10px; background: var(--surface);
  overflow:hidden;
}
.faq-item summary{
  cursor:pointer; list-style:none;
  padding: 18px 22px; font-weight:700; font-size:15.5px;
  display:flex; justify-content:space-between; align-items:center; gap:16px;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary .chev{ flex-shrink:0; transition: transform .2s ease; color: var(--pink); }
.faq-item[open] summary .chev{ transform: rotate(45deg); }
.faq-item .faq-a{ padding: 0 22px 20px; color: var(--text-dim); font-size:14.5px; }
.faq-item .faq-a ol{ padding-left:20px; margin-top:8px; display:flex; flex-direction:column; gap:6px; }
.faq-item .faq-a a{ color: var(--pink); }

/* ---------- Contact form ---------- */
.contact-grid{ display:grid; grid-template-columns: 1fr 1.15fr; gap: 56px; align-items:start; }
@media (max-width: 900px){ .contact-grid{ grid-template-columns:1fr; } }
.contact-card{
  border: 1px solid var(--border); border-radius: var(--radius-l);
  padding: 30px; background: var(--surface-tint);
  margin-bottom: 16px;
}
.contact-card h3{ font-size:15px; margin-bottom:6px; color: var(--text); }
.contact-card p{ color: var(--text-dim); font-size:14px; }
.contact-card a{ color: var(--pink); }
.field{ margin-bottom: 20px; }
.field label{ display:block; font-size:13.5px; font-weight:700; margin-bottom:8px; color: var(--text); }
.field input, .field select, .field textarea{
  width:100%; padding: 13px 15px; border-radius: 12px;
  background: #fff; border:1px solid var(--border-strong); color: var(--text);
  font-family: var(--font-body); font-size:14.5px;
}
.field textarea{ resize: vertical; min-height:130px; }
.field input:focus, .field select:focus, .field textarea:focus{ outline:none; border-color: var(--pink); }
.field-hint{ font-size:12.5px; color: var(--text-faint); margin-top:6px; }
.hp-field{ position:absolute; left:-9999px; opacity:0; }
.form-status{
  margin-top:16px; padding: 13px 16px; border-radius:10px; font-size:14px; display:none;
}
.form-status.show{ display:block; }
.form-status.ok{ background: var(--pink-wash); border:1px solid var(--pink-light); color: var(--pink-dark); }
.form-status.err{ background: #FFF0EE; border:1px solid #FFCFC7; color:#C0392B; }

/* utility */
.mt-8{ margin-top:8px; }
.text-center{ text-align:center; }
