/* Squeaky — landing page styles. Brand: mint + blush pink + coral, chunky rounded. */
:root {
  --mint-top: #d7f4e4;
  --mint: #c9f0dc;
  --mint-deep: #9fe0bc;
  --pink-top: #ffe9f0;
  --pink: #f9cbda;
  --coral: #f26d7e;
  --coral-deep: #e0576a;
  --lilac: #b78af0;
  --ink: #4a4a55;
  --ink-soft: #6c6c78;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(122, 85, 64, .12);
  --shadow-sm: 0 8px 20px rgba(0, 0, 0, .07);
  --r: 26px;
  --font: "Fredoka", ui-rounded, "SF Pro Rounded", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--pink-top);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { width: min(1120px, 92vw); margin-inline: auto; }
.center { text-align: center; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, .86);            /* white bar for contrast on the pink hero */
  border-bottom: 1px solid rgba(242, 109, 126, .10);
  box-shadow: 0 6px 24px rgba(122, 85, 64, .07);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 22px; color: var(--ink); }
.brand img {
  width: 42px; height: 42px; border-radius: 12px;
  box-shadow: 0 4px 12px rgba(242, 109, 126, .22);  /* defines the blush icon so it pops */
  outline: 2px solid #fff; outline-offset: -1px;
}
.nav-links { display: flex; align-items: center; gap: 26px; font-weight: 600; color: var(--ink-soft); }
.nav-links a:hover { color: var(--coral); }
.nav-links .cta { color: #fff; }
@media (max-width: 720px) { .nav-links a:not(.cta) { display: none; } }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--coral); color: #fff; font-weight: 600;
  padding: 13px 24px; border-radius: 999px; font-size: 16px;
  box-shadow: 0 10px 22px rgba(242, 109, 126, .38);
  transition: transform .15s ease, box-shadow .15s ease;
  border: none; cursor: pointer;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(242, 109, 126, .45); }
.btn.ghost { background: #fff; color: var(--coral); box-shadow: var(--shadow-sm); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--pink-top) 0%, var(--pink) 48%, #f6bcce 100%);
  padding: 70px 0 90px;
}
.hero .wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }
.hero h1 {
  font-size: clamp(44px, 6vw, 76px); font-weight: 700; line-height: 1.02;
  letter-spacing: -1px; color: #fff;
  text-shadow: 0 4px 0 rgba(229, 160, 182, .55);
}
.hero h1 .accent { color: var(--coral); text-shadow: 0 4px 0 rgba(255,255,255,.7); }
.hero .sub { font-size: clamp(17px, 2vw, 20px); color: var(--ink); font-weight: 500; margin: 20px 0 26px; max-width: 30ch; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.chips { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; }
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.85); padding: 9px 15px; border-radius: 999px;
  font-weight: 600; font-size: 14px; color: var(--ink); box-shadow: var(--shadow-sm);
}
.hero-phone { justify-self: center; position: relative; }
/* soft mint halo so the screenshot's green bg melts into the pink page */
.hero-phone::before {
  content: ""; position: absolute; inset: -10% -8%;
  background: radial-gradient(closest-side, rgba(201, 240, 220, .7), rgba(201, 240, 220, 0) 72%);
  filter: blur(14px); z-index: 0;
}
.hero-phone img {
  position: relative; z-index: 1;
  width: min(340px, 78vw);
  border-radius: 38px;                 /* round the slide into a floating card */
  box-shadow: 0 26px 60px rgba(122, 85, 64, .26), 0 0 0 6px rgba(255, 255, 255, .55);
}
@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; text-align: center; }
  .hero .sub { margin-inline: auto; }
  .hero-cta, .chips { justify-content: center; }
  .hero-phone { order: -1; }
}

/* floating bubbles */
.bubble { position: absolute; border-radius: 50%; border: 2px solid rgba(255,255,255,.6); pointer-events: none; }
.hero .bubble { animation: float 7s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-18px); } }

/* ---------- Value band ---------- */
.band {
  background: linear-gradient(180deg, #f6bcce, var(--mint-top));
  padding: 26px 0;
}
.band .wrap { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.value { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 18px; color: var(--ink); }
.value .em { font-size: 24px; }

/* ---------- Sections ---------- */
section { padding: 84px 0; }
.section-title { font-size: clamp(30px, 4vw, 46px); font-weight: 700; letter-spacing: -.5px; margin-bottom: 12px; }
.section-lead { color: var(--ink-soft); font-size: 18px; font-weight: 500; max-width: 46ch; margin: 0 auto 46px; }

.features { background: var(--mint-top); }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.card {
  background: #fff; border-radius: var(--r); padding: 30px 24px; box-shadow: var(--shadow);
  transition: transform .18s ease;
}
.card:hover { transform: translateY(-6px); }
.card .ic { font-size: 42px; margin-bottom: 14px; }
.card h3 { font-size: 20px; margin-bottom: 8px; }
.card p { color: var(--ink-soft); font-size: 15px; font-weight: 500; }
@media (max-width: 900px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .feature-grid { grid-template-columns: 1fr; } }

/* ---------- Steps ---------- */
.steps { background: linear-gradient(180deg, var(--mint-top), var(--mint)); }
.step-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.step { background: rgba(255,255,255,.7); border-radius: var(--r); padding: 26px 14px; text-align: center; box-shadow: var(--shadow-sm); }
.step .n { font-weight: 700; color: var(--coral); font-size: 14px; letter-spacing: 1px; }
.step .em { font-size: 40px; margin: 8px 0; }
.step h4 { font-size: 17px; }
.step p { font-size: 13px; color: var(--ink-soft); font-weight: 500; margin-top: 4px; }
@media (max-width: 820px) { .step-row { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Screenshot gallery ---------- */
.gallery { background: var(--mint); overflow: hidden; }
.rail {
  display: flex; gap: 22px; overflow-x: auto; padding: 10px 6vw 30px;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
}
.rail::-webkit-scrollbar { height: 8px; }
.rail::-webkit-scrollbar-thumb { background: rgba(242,109,126,.4); border-radius: 8px; }
.rail img {
  width: 300px; flex: 0 0 auto; border-radius: 30px; scroll-snap-align: center;
  box-shadow: var(--shadow);
}

/* ---------- Price / CTA ---------- */
.price { background: linear-gradient(160deg, var(--pink-top), var(--pink)); text-align: center; }
.price .tag { font-size: clamp(40px, 6vw, 64px); font-weight: 700; color: var(--coral); }
.price .big { font-size: clamp(30px, 4vw, 46px); font-weight: 700; letter-spacing: -.5px; }
.price p { color: var(--ink); font-weight: 500; font-size: 18px; margin: 14px auto 30px; max-width: 40ch; }

/* ---------- Footer ---------- */
footer { background: var(--ink); color: #cfcfd8; padding: 46px 0 30px; }
footer .wrap { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; align-items: center; }
footer .fbrand { display: flex; align-items: center; gap: 12px; color: #fff; font-weight: 700; font-size: 20px; }
footer .fbrand img { width: 36px; height: 36px; border-radius: 10px; }
footer nav { display: flex; gap: 22px; font-weight: 500; }
footer nav a:hover { color: #fff; }
footer .copy { width: 100%; text-align: center; font-size: 13px; color: #8a8a97; margin-top: 26px; }

/* ---------- Motion with purpose (scroll reveal) ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .2, 1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .hero .bubble { animation: none; }
}

/* physical button + card feedback */
.btn:active { transform: translateY(1px) scale(.98); box-shadow: 0 6px 14px rgba(242,109,126,.3); }
.chip { transition: transform .15s ease; }
.value:hover .em { transform: scale(1.12); transition: transform .2s ease; }

/* soft placeholders so lazy images don't flash white (feels faster) */
.hero-phone img, .rail img { background: var(--mint); }

/* ---------- Legal pages ---------- */
.legal { background: var(--mint-top); min-height: 60vh; padding: 60px 0 90px; }
.legal .wrap { width: min(760px, 92vw); }
.legal h1 { font-size: clamp(32px, 5vw, 48px); margin-bottom: 6px; }
.legal .meta { color: var(--ink-soft); margin-bottom: 30px; font-weight: 500; }
.legal .paper { background: #fff; border-radius: var(--r); padding: 38px 34px; box-shadow: var(--shadow); }
.legal h2 { font-size: 22px; margin: 26px 0 8px; }
.legal p, .legal li { color: var(--ink-soft); font-weight: 500; margin-bottom: 10px; }
.legal ul { padding-left: 22px; }
.legal a { color: var(--coral); font-weight: 600; }
