:root {
  --cream: #FBF1EC;
  --cream-deep: #F9EBE6;
  --pink: #F3B6D0;
  --purple: #C06BD4;
  --purple-deep: #9B4FC2;
  --ink: #3A2E3D;
  --ink-soft: #6B5C6E;
  --white: #FFFFFF;
  --border: rgba(58, 46, 61, 0.08);
  --shadow: 0 12px 32px rgba(155, 79, 194, 0.14);
  --radius: 20px;
  --max-width: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

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

/* ---------- Header ---------- */

.site-header {
  padding: 20px 0;
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  color: var(--ink);
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
}

.header-badges {
  display: flex;
  gap: 10px;
}

.header-badges img { height: 38px; width: auto; }

/* ---------- Hero ---------- */

.hero {
  padding: 40px 0 70px;
  text-align: center;
}

.hero-icon {
  width: 108px;
  height: 108px;
  border-radius: 26px;
  box-shadow: var(--shadow);
  margin: 0 auto 28px;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.15;
  margin: 0 0 18px;
  letter-spacing: -0.02em;
}

.hero h1 span {
  background: linear-gradient(120deg, var(--purple-deep), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p.tagline {
  font-size: clamp(17px, 2.4vw, 21px);
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 auto 36px;
}

.store-badges {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.store-badges img { height: 54px; width: auto; }

.store-badges a {
  transition: transform 0.15s ease, opacity 0.15s ease;
  display: inline-block;
}

.store-badges a:hover { transform: translateY(-2px); opacity: 0.92; }

.badge-note {
  font-size: 13px;
  color: var(--ink-soft);
  opacity: 0.8;
}

/* ---------- Section headings ---------- */

.section-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple-deep);
  background: rgba(192, 107, 212, 0.12);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.section-intro h2 {
  font-size: clamp(26px, 4vw, 36px);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}

.section-intro p {
  color: var(--ink-soft);
  font-size: 17px;
  margin: 0;
}

/* ---------- About ---------- */

.about {
  padding: 20px 0 80px;
}

.about-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-card h3 {
  font-size: 24px;
  margin: 0 0 14px;
}

.about-card p {
  color: var(--ink-soft);
  margin: 0 0 12px;
}

.about-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.about-card li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
  color: var(--ink-soft);
  font-size: 15px;
}

.about-card li .dot {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple);
  margin-top: 8px;
}

.about-visual {
  background: linear-gradient(160deg, var(--pink), var(--purple-deep));
  border-radius: 16px;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  padding: 20px;
}

/* ---------- Features ---------- */

.features { padding: 20px 0 90px; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-card .emoji {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(192, 107, 212, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 19px;
}

.feature-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

/* Screenshot placeholder — sized like a phone screen */
.screenshot-placeholder {
  aspect-ratio: 9 / 16;
  max-height: 340px;
  border-radius: 16px;
  border: 2px dashed rgba(155, 79, 194, 0.35);
  background: repeating-linear-gradient(
    135deg,
    rgba(192, 107, 212, 0.05),
    rgba(192, 107, 212, 0.05) 10px,
    rgba(192, 107, 212, 0.09) 10px,
    rgba(192, 107, 212, 0.09) 20px
  );
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--purple-deep);
  font-size: 13px;
  font-weight: 600;
  padding: 16px;
  margin: 0 auto;
  width: 100%;
}

.screenshot-placeholder span {
  opacity: 0.75;
}

/* ---------- Trust / safety ---------- */

.trust {
  padding: 20px 0 90px;
}

.trust-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.trust-card h4 {
  margin: 0 0 8px;
  font-size: 17px;
}

.trust-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.trust-card .icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.disclaimer {
  text-align: center;
  font-size: 13px;
  color: var(--ink-soft);
  opacity: 0.75;
  max-width: 640px;
  margin: 28px auto 0;
}

/* ---------- Final CTA ---------- */

.final-cta {
  padding: 20px 0 90px;
  text-align: center;
}

.final-cta-card {
  background: linear-gradient(135deg, var(--purple-deep), var(--pink));
  border-radius: 28px;
  padding: 56px 32px;
  color: var(--white);
}

.final-cta-card h2 {
  font-size: clamp(26px, 4vw, 34px);
  margin: 0 0 14px;
}

.final-cta-card p {
  margin: 0 0 32px;
  opacity: 0.92;
  font-size: 17px;
}

.final-cta-card .store-badges img {
  filter: none;
}

/* ---------- Footer ---------- */

.site-footer {
  padding: 40px 0;
  text-align: center;
  font-size: 13px;
  color: var(--ink-soft);
}

.site-footer a { text-decoration: underline; }

/* ---------- Links page (minimal, IG-bio style) ---------- */

.link-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
}

.link-card {
  width: 100%;
  max-width: 380px;
  text-align: center;
}

.link-card .hero-icon { margin-bottom: 22px; }

.link-card h1 {
  font-size: 26px;
  margin: 0 0 8px;
}

.link-card p.tagline {
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0 0 32px;
}

.link-card .store-badges {
  flex-direction: column;
  align-items: center;
}

.link-card .store-badges img { height: 56px; }

.link-card .badge-note { margin-top: 18px; }

/* ---------- Responsive ---------- */

@media (max-width: 860px) {
  .about-card { grid-template-columns: 1fr; }
  .about-visual { min-height: 180px; order: -1; }
  .feature-grid { grid-template-columns: 1fr; }
  .trust-card { grid-template-columns: 1fr; gap: 26px; }
  .header-badges { display: none; }
}
