:root {
  --pink: #ff2d6f;
  --pink-soft: #fff0f4;
  --ink: #1c1c1e;
  --muted: #6b6b70;
  --card: #ffffff;
  --radius: 18px;
  color-scheme: light;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--pink-soft);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--pink); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 880px; margin: 0 auto; padding: 0 20px; }

/* Header / nav */
header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(255, 240, 244, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 18px; }
.brand img { width: 34px; height: 34px; border-radius: 9px; }
nav .links a { margin-left: 18px; color: var(--ink); font-weight: 600; font-size: 15px; }
nav .links a:hover { color: var(--pink); text-decoration: none; }

/* Hero */
.hero {
  text-align: center;
  min-height: calc(100vh - 130px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 48px 0;
}
.hero img.logo { width: 116px; height: 116px; border-radius: 27px; box-shadow: 0 18px 40px rgba(255,45,111,0.25); }
.hero h1 { font-size: 46px; margin: 24px 0 10px; letter-spacing: -0.5px; }
.hero p.tagline { font-size: 19px; color: var(--muted); max-width: 460px; margin: 0 auto 34px; }
/* Store badges */
.stores { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; align-items: center; }
.badge { display: inline-flex; line-height: 0; transition: transform .15s ease; }
.badge:hover { text-decoration: none; transform: translateY(-2px); }
.badge svg { display: block; border-radius: 7px; }
.badge.soon { position: relative; cursor: default; }
.badge.soon svg { opacity: 0.45; filter: grayscale(0.4); }
.badge.soon:hover { transform: none; }
.soon-tag {
  position: absolute; top: -8px; right: -8px;
  background: var(--pink); color: #fff;
  font-size: 11px; font-weight: 700; line-height: 1;
  padding: 4px 8px; border-radius: 999px;
  box-shadow: 0 2px 8px rgba(255,45,111,0.3);
}

/* Features */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; padding: 24px 0 64px; }
.feature {
  background: var(--card); border-radius: var(--radius); padding: 24px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.04);
}
.feature .emoji { font-size: 30px; }
.feature h3 { margin: 12px 0 6px; font-size: 18px; }
.feature p { color: var(--muted); font-size: 15px; }

/* Content pages (privacy / terms) */
.page { background: var(--card); border-radius: var(--radius); padding: 40px; margin: 40px 0; box-shadow: 0 4px 18px rgba(0,0,0,0.04); }
.page h1 { font-size: 32px; margin-bottom: 6px; }
.page .updated { color: var(--muted); font-size: 14px; margin-bottom: 28px; }
.page h2 { font-size: 20px; margin: 28px 0 8px; }
.page p, .page li { color: #333; font-size: 15.5px; }
.page ul { margin: 8px 0 8px 22px; }

/* Contact form */
form { background: var(--card); border-radius: var(--radius); padding: 32px; box-shadow: 0 4px 18px rgba(0,0,0,0.04); }
label { display: block; font-weight: 600; margin: 16px 0 6px; font-size: 15px; }
input, textarea {
  width: 100%; padding: 12px 14px; border: 1px solid #e3e3e6; border-radius: 12px;
  font-size: 15px; font-family: inherit; background: #fafafa;
}
input:focus, textarea:focus { outline: none; border-color: var(--pink); background: #fff; }
button[type=submit] {
  margin-top: 22px; background: var(--pink); color: #fff; border: none;
  padding: 14px 30px; border-radius: 14px; font-weight: 700; font-size: 16px; cursor: pointer;
}
button[type=submit]:hover { opacity: 0.92; }

/* Footer */
footer { border-top: 1px solid rgba(0,0,0,0.06); padding: 32px 0; text-align: center; color: var(--muted); font-size: 14px; }
footer a { margin: 0 10px; color: var(--muted); }
footer a:hover { color: var(--pink); }

@media (max-width: 560px) {
  .hero { min-height: calc(100vh - 110px); padding: 36px 0; }
  .hero img.logo { width: 96px; height: 96px; border-radius: 22px; }
  .hero h1 { font-size: 36px; }
  .hero p.tagline { font-size: 17px; }
  .stores { flex-direction: column; gap: 14px; }
  .badge svg { width: 180px; height: 60px; }
  nav { flex-direction: column; height: auto; gap: 8px; padding: 12px 0; }
  nav .links { display: flex; flex-wrap: wrap; justify-content: center; gap: 4px 0; }
  nav .links a { margin-left: 0; margin-right: 16px; font-size: 14px; }
  nav .links a:last-child { margin-right: 0; }
  .page { padding: 26px; }
}
