/* Stickify: Sticker Maker — marketing site
   Light pastel theme (pink + lavender) to match the cute app aesthetic. */

:root {
  --bg: #fff5fb;
  --bg-soft: #ffeaf5;
  --bg-lav: #f3edff;
  --bg-card: #ffffff;
  --bg-card-soft: #fff8fc;
  --border: rgba(255, 140, 195, 0.18);
  --border-strong: rgba(255, 110, 175, 0.32);
  --text: #3a2740;
  --text-soft: #6f5a78;
  --text-mute: #a394ad;

  --accent: #ff5fa2;        /* pink */
  --accent-2: #ff8fc4;      /* light pink */
  --accent-3: #e23f86;      /* deep pink */
  --purple: #a06bff;        /* lavender purple */
  --purple-2: #c79bff;
  --accent-glow: rgba(255, 95, 162, 0.35);

  --shadow-sm: 0 4px 14px rgba(214, 110, 168, 0.12);
  --shadow-md: 0 14px 40px rgba(214, 110, 168, 0.18);
  --shadow-lg: 0 28px 70px rgba(170, 110, 200, 0.26);

  --radius-card: 22px;
  --radius-hero: 30px;
  --radius-badge: 14px;
  --radius-pill: 999px;

  --maxw: 1180px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter",
    Roboto, "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background-image:
    radial-gradient(1100px 600px at 88% -8%, var(--bg-soft), transparent 60%),
    radial-gradient(900px 600px at 4% 8%, var(--bg-lav), transparent 55%);
}

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

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

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  background: rgba(255, 245, 251, 0.78);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}
.brand img {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  box-shadow: var(--shadow-sm);
}
.brand span b { color: var(--accent-3); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a.link {
  color: var(--text-soft);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.18s;
}
.nav-links a.link:hover { color: var(--accent-3); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 0.96rem;
  border-radius: var(--radius-pill);
  padding: 11px 22px;
  cursor: pointer;
  border: none;
  transition: transform 0.16s, box-shadow 0.16s, filter 0.16s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--purple) 100%);
  color: #fff;
  box-shadow: 0 10px 26px var(--accent-glow);
}
.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.05); }
.btn-ghost {
  background: var(--bg-card);
  color: var(--text);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { transform: translateY(-2px); }

/* ---------- GOOGLE PLAY BADGE ---------- */
.googleplay-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #1a1320;
  color: #fff;
  border-radius: var(--radius-badge);
  padding: 11px 20px 11px 18px;
  box-shadow: var(--shadow-md);
  transition: transform 0.16s, box-shadow 0.16s;
}
.googleplay-badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.googleplay-badge svg { width: 26px; height: 26px; flex: none; }
.googleplay-badge .gp-text { display: flex; flex-direction: column; line-height: 1.1; }
.googleplay-badge .gp-small {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}
.googleplay-badge .gp-big { font-size: 1.22rem; font-weight: 600; letter-spacing: 0.01em; }

/* ---------- HERO ---------- */
.hero { padding: 70px 0 90px; position: relative; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 40px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  color: var(--accent-3);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 7px 15px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.7rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 850;
  margin-bottom: 18px;
}
.hero h1 .grad {
  background: linear-gradient(120deg, var(--accent) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  font-size: 1.15rem;
  color: var(--text-soft);
  max-width: 520px;
  margin-bottom: 30px;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: var(--text-mute);
  font-size: 0.9rem;
  font-weight: 600;
}
.trust-row span { display: inline-flex; align-items: center; gap: 7px; }
.trust-row .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-2); }

/* hero phones */
.hero-art {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 480px;
}
.hero-art .blob {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--accent-2), var(--purple-2) 75%);
  filter: blur(8px);
  opacity: 0.45;
  z-index: 0;
}
.phone {
  position: relative;
  z-index: 1;
  width: 232px;
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.6);
}
.phone.back {
  transform: rotate(-8deg) translateX(34px) translateY(14px);
  width: 210px;
  opacity: 0.96;
}
.phone.front {
  transform: rotate(5deg) translateX(-34px);
  z-index: 2;
}
.sticker-deco {
  position: absolute;
  font-size: 2.2rem;
  z-index: 3;
  filter: drop-shadow(0 6px 10px rgba(170,110,200,0.3));
  animation: floaty 4s ease-in-out infinite;
}
.sticker-deco.s1 { top: 6%; right: 14%; }
.sticker-deco.s2 { bottom: 10%; left: 8%; animation-delay: 1.2s; }
.sticker-deco.s3 { top: 44%; right: 2%; animation-delay: 2.1s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50% { transform: translateY(-12px) rotate(6deg); }
}

/* ---------- SECTION HEADINGS ---------- */
.section { padding: 80px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.section-head .kicker {
  color: var(--accent-3);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.section-head h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  letter-spacing: -0.025em;
  font-weight: 820;
  margin: 10px 0 12px;
}
.section-head p { color: var(--text-soft); font-size: 1.06rem; }

/* ---------- FEATURES ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  margin-bottom: 17px;
  background: linear-gradient(135deg, var(--bg-soft), var(--bg-lav));
  border: 1px solid var(--border);
}
.feature-icon svg { width: 26px; height: 26px; }
.feature-card h3 { font-size: 1.16rem; font-weight: 780; margin-bottom: 8px; letter-spacing: -0.01em; }
.feature-card p { color: var(--text-soft); font-size: 0.97rem; }

/* ---------- SCREENSHOTS ---------- */
.screens-scroller {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 4px 26px;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-2) transparent;
}
.screens-scroller::-webkit-scrollbar { height: 8px; }
.screens-scroller::-webkit-scrollbar-thumb {
  background: var(--accent-2);
  border-radius: 999px;
}
.screens-scroller::-webkit-scrollbar-track { background: transparent; }
.screen-tile {
  flex: 0 0 auto;
  width: 270px;
  scroll-snap-align: center;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  background: var(--bg-card);
}
.screen-tile img { width: 100%; display: block; }

/* ---------- PRIVACY CALLOUT ---------- */
.privacy-callout {
  background: linear-gradient(135deg, #fff, var(--bg-card-soft));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-hero);
  padding: 50px 46px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-md);
}
.privacy-callout h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  letter-spacing: -0.025em;
  font-weight: 820;
  margin-bottom: 14px;
}
.privacy-callout p { color: var(--text-soft); margin-bottom: 12px; }
.privacy-list { list-style: none; display: grid; gap: 13px; }
.privacy-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.98rem; }
.privacy-list svg { flex: none; width: 22px; height: 22px; margin-top: 1px; color: var(--accent); }

/* ---------- DOWNLOAD CTA ---------- */
.download-card {
  background: linear-gradient(135deg, var(--accent) 0%, var(--purple) 100%);
  border-radius: var(--radius-hero);
  padding: 60px 40px;
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.download-card::before,
.download-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
}
.download-card::before { width: 240px; height: 240px; top: -90px; right: -60px; }
.download-card::after { width: 180px; height: 180px; bottom: -70px; left: -40px; }
.download-card > * { position: relative; z-index: 1; }
.download-card img.dl-icon {
  width: 84px; height: 84px; border-radius: 22px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.22);
  margin-bottom: 20px;
}
.download-card h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  font-weight: 850;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.download-card p { font-size: 1.1rem; opacity: 0.94; max-width: 520px; margin: 0 auto 28px; }
.download-card .googleplay-badge { background: #1a1320; }

/* ---------- FOOTER ---------- */
.footer {
  border-top: 1px solid var(--border);
  margin-top: 30px;
  padding: 56px 0 34px;
  background: var(--bg-soft);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 34px;
}
.footer-brand { display: flex; align-items: center; gap: 11px; font-weight: 800; margin-bottom: 14px; }
.footer-brand img { width: 36px; height: 36px; border-radius: 10px; }
.footer p.blurb { color: var(--text-soft); font-size: 0.95rem; max-width: 280px; }
.footer h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-mute);
  margin-bottom: 14px;
  font-weight: 800;
}
.footer ul { list-style: none; display: grid; gap: 10px; }
.footer ul a { color: var(--text-soft); font-size: 0.95rem; transition: color 0.16s; }
.footer ul a:hover { color: var(--accent-3); }
.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 40px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--text-mute);
  font-size: 0.86rem;
}

/* ---------- LEGAL / CONTENT PAGES ---------- */
.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}
.legal .back-link {
  color: var(--accent-3);
  font-weight: 700;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 26px;
}
.legal h1 {
  font-size: clamp(2rem, 4vw, 2.7rem);
  letter-spacing: -0.03em;
  font-weight: 850;
  margin-bottom: 8px;
}
.legal .dates { color: var(--text-mute); font-size: 0.9rem; margin-bottom: 32px; }
.legal .summary-box {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-card);
  padding: 24px 26px;
  margin-bottom: 34px;
  box-shadow: var(--shadow-sm);
}
.legal .summary-box h3 { font-size: 1.05rem; margin-bottom: 12px; color: var(--accent-3); }
.legal .summary-box ul { padding-left: 20px; display: grid; gap: 8px; }
.legal .summary-box li { color: var(--text-soft); }
.legal h2 {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 36px 0 12px;
  padding-top: 8px;
}
.legal h3 { font-size: 1.1rem; font-weight: 760; margin: 22px 0 8px; }
.legal p, .legal li { color: var(--text-soft); margin-bottom: 12px; }
.legal ul, .legal ol { padding-left: 22px; margin-bottom: 14px; }
.legal li { margin-bottom: 7px; }
.legal a.inline { color: var(--accent-3); font-weight: 600; text-decoration: underline; }
.legal strong { color: var(--text); }
.legal .sdk-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 20px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
}
.legal .sdk-card h3 { margin-top: 0; color: var(--text); }
.legal .sdk-card p { margin-bottom: 6px; font-size: 0.95rem; }
.legal table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 18px;
  font-size: 0.92rem;
}
.legal th, .legal td {
  border: 1px solid var(--border);
  padding: 10px 12px;
  text-align: left;
}
.legal th { background: var(--bg-soft); color: var(--text); font-weight: 700; }

/* ---------- FAQ ---------- */
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 24px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
}
.faq-item h3 { font-size: 1.08rem; font-weight: 760; margin-bottom: 8px; color: var(--text); }
.faq-item p { color: var(--text-soft); margin-bottom: 0; }
.contact-card {
  background: linear-gradient(135deg, var(--accent) 0%, var(--purple) 100%);
  color: #fff;
  border-radius: var(--radius-card);
  padding: 34px 30px;
  text-align: center;
  margin-top: 34px;
  box-shadow: var(--shadow-md);
}
.contact-card h2 { color: #fff; margin: 0 0 10px; }
.contact-card p { color: rgba(255,255,255,0.92); margin-bottom: 18px; }
.contact-card a.email-btn {
  display: inline-block;
  background: #fff;
  color: var(--accent-3);
  font-weight: 800;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 920px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .hero-cta, .trust-row { justify-content: center; }
  .hero-art { min-height: 440px; margin-top: 10px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .privacy-callout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links a.link { display: none; }
}
@media (max-width: 560px) {
  .features-grid { grid-template-columns: 1fr; }
  .phone { width: 192px; }
  .phone.back { width: 172px; }
  .screen-tile { width: 220px; }
  .section { padding: 60px 0; }
  .hero { padding: 44px 0 60px; }
  .privacy-callout { padding: 34px 24px; }
  .download-card { padding: 44px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}
