:root {
  --bg: #1A1229;
  --bg-deep: #150E22;
  --card: #291F3D;
  --card-hi: #382B52;
  --border: rgba(255, 255, 255, 0.10);
  --ink: #FFF5EB;
  --ink-soft: rgba(255, 255, 255, 0.62);
  --ink-dim: rgba(255, 255, 255, 0.40);
  --accent: #F58C75;
  --accent-deep: #DB5C73;
  --lilac: #BA99F0;
  --dusk: #734F9E;
  --peach: #FCBD8C;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
main { max-width: 1080px; margin: 0 auto; padding: 0 20px; }
section { padding: 76px 0; }
h1, h2 { font-family: -apple-system, sans-serif; font-weight: 800; letter-spacing: -0.5px; }

/* Nav */
nav {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1080px; margin: 0 auto; padding: 22px 20px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -0.2px; font-size: 17px; text-decoration: none; color: var(--ink); }
.brand img { width: 30px; height: 30px; border-radius: 8px; }
.nav-cta {
  background: linear-gradient(135deg, #FC9E71, #D95C8C, #9E61C7);
  color: #fff; text-decoration: none;
  padding: 9px 18px; border-radius: 100px; font-weight: 700; font-size: 13px;
}

/* Hero */
.hero { padding: 36px 0 60px; text-align: center; position: relative; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,140,117,0.15); color: var(--accent);
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.6px;
  padding: 8px 16px; border-radius: 100px; margin-bottom: 26px;
}
h1 {
  font-size: clamp(32px, 5.8vw, 56px);
  line-height: 1.1; letter-spacing: -1px;
  margin-bottom: 20px;
}
h1 em { background: linear-gradient(135deg, #FC9E71, #D95C8C, #9E61C7); -webkit-background-clip: text; background-clip: text; color: transparent; font-style: normal; }
.hero-sub {
  color: var(--ink-soft); font-size: clamp(16px, 2.2vw, 19px);
  max-width: 600px; margin: 0 auto 34px; font-weight: 400;
}
.cta-row { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.btn-store {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #FC9E71, #D95C8C, #9E61C7); color: #fff; text-decoration: none;
  padding: 15px 28px; border-radius: 16px; font-weight: 700; font-size: 16px;
  box-shadow: 0 14px 30px -10px rgba(217,92,140,0.5);
}
.btn-store svg { width: 20px; height: 20px; }
.coming-soon-note { color: var(--ink-dim); font-size: 13px; }

.hero-showcase {
  margin-top: 56px; display: flex; justify-content: center; gap: 18px;
  overflow-x: auto; padding: 8px 4px 20px; scroll-snap-type: x proximity;
}
.hero-showcase a { flex-shrink: 0; scroll-snap-align: center; }
.hero-showcase img {
  width: 190px; border-radius: 18px; border: 1px solid var(--border);
  box-shadow: 0 18px 40px -18px rgba(186,153,240,0.4);
  object-fit: cover;
}

.trust-strip {
  margin-top: 40px; display: flex; justify-content: center; flex-wrap: wrap;
  gap: 12px 28px; padding-top: 28px; border-top: 1px solid var(--border);
}
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--ink-soft); }
.trust-icon { font-size: 15px; }

/* Section headers */
.section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.kicker {
  color: var(--accent); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px;
}
h2 { font-size: clamp(26px, 4vw, 38px); letter-spacing: -0.5px; margin-bottom: 12px; }
.section-head p { color: var(--ink-soft); font-size: 16px; }

/* Examples masonry-ish grid */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-item { text-align: center; }
.gallery-item a { display: block; text-decoration: none; color: inherit; }
.gallery-item img { border-radius: 16px; border: 1px solid var(--border); margin-bottom: 12px; width: 100%; height: auto; }
.gallery-item span { font-size: 13px; font-weight: 700; color: var(--ink-soft); }

/* How it works */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 26px 20px; }
.step-num {
  width: 34px; height: 34px; border-radius: 10px; background: rgba(245,140,117,0.16);
  color: var(--accent); font-weight: 800; font-size: 15px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.step h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.step p { color: var(--ink-soft); font-size: 14px; }

/* Features */
.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.feature { background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 24px; display: flex; gap: 16px; align-items: flex-start; }
.feature-icon {
  width: 40px; height: 40px; border-radius: 12px; background: rgba(245,140,117,0.16);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--accent); font-size: 17px; font-weight: 800;
}
.feature h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.feature p { color: var(--ink-soft); font-size: 14px; }

/* Editorial */
.editorial { background: var(--card); border: 1px solid var(--border); border-radius: 24px; padding: 48px; }
.editorial .kicker { text-align: center; }
.editorial h2 { text-align: center; margin-bottom: 22px; }
.editorial > p { color: var(--ink); font-size: 17px; line-height: 1.75; max-width: 720px; margin: 0 auto; }
.editorial > p + p { margin-top: 16px; }

.checklist { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 8px; }
.check-card { background: var(--bg-deep); border: 1px solid var(--border); border-radius: 16px; padding: 22px; }
.check-card .num { color: var(--accent); font-weight: 800; font-size: 13px; letter-spacing: 1px; margin-bottom: 8px; }
.check-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.check-card p { color: var(--ink-soft); font-size: 14px; }

/* Privacy strip */
.privacy-strip { background: rgba(245,140,117,0.1); border: 1px solid rgba(245,140,117,0.3); color: var(--ink); border-radius: 24px; padding: 44px; text-align: center; }
.privacy-strip h2 { color: var(--ink); font-size: 26px; margin-bottom: 10px; }
.privacy-strip p { color: var(--ink-soft); font-size: 15px; max-width: 540px; margin: 0 auto; }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); padding: 22px 0; }
.faq-item h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.faq-item p { color: var(--ink-soft); font-size: 15px; }

/* Final CTA */
.final-cta { text-align: center; }
.final-cta h2 { margin-bottom: 14px; }
.final-cta p { color: var(--ink-soft); margin-bottom: 30px; }

footer { border-top: 1px solid var(--border); padding: 36px 20px; text-align: center; }
footer .links { display: flex; justify-content: center; gap: 22px; margin-bottom: 16px; flex-wrap: wrap; }
footer a { color: var(--ink-soft); text-decoration: none; font-size: 14px; }
footer a:hover { color: var(--accent); }
footer .copy { color: var(--ink-dim); font-size: 13px; }

/* Image detail pages */
.breadcrumb { font-size: 13px; color: var(--ink-soft); margin: 8px 0 28px; }
.breadcrumb a { color: var(--ink-soft); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { margin: 0 6px; opacity: 0.6; }
.breadcrumb .current { color: var(--ink); font-weight: 600; }

.detail-hero { padding: 12px 0 20px; }
.detail-image { max-width: 460px; margin: 0 auto 32px; }
.detail-image img { width: 100%; height: auto; border-radius: 18px; border: 1px solid var(--border); box-shadow: 0 28px 64px -28px rgba(186,153,240,0.4); }
.detail-title { text-align: center; margin-bottom: 28px; }
.detail-title .kicker { justify-content: center; }
.detail-title h1 { font-size: clamp(28px, 4.6vw, 42px); }
.detail-caption { max-width: 680px; margin: 0 auto 36px; color: var(--ink); font-size: 16px; line-height: 1.8; }
.detail-caption p + p { margin-top: 14px; }
.detail-caption h3 { font-size: 19px; font-weight: 700; margin: 30px 0 10px; color: var(--ink); }
.detail-caption ul, .detail-caption ol { margin: 4px 0 14px; padding-left: 22px; color: var(--ink); }
.detail-caption li { margin-bottom: 8px; }
.detail-caption li strong, .detail-caption p strong { color: var(--accent); }
.detail-caption a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.detail-caption a:hover { color: var(--accent-deep); }
.detail-caption .faq-list { text-align: left; }
.detail-cta { text-align: center; margin-bottom: 20px; }

.related-head { text-align: center; margin: 8px 0 24px; }
.related-head .kicker { justify-content: center; }

@media (max-width: 860px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .features { grid-template-columns: 1fr; }
  .checklist { grid-template-columns: 1fr 1fr; }
  .editorial { padding: 32px 24px; }
}
@media (max-width: 520px) {
  .steps { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .checklist { grid-template-columns: 1fr; }
  section { padding: 56px 0; }
}
