:root {
  --bg: #ece8e1;          /* warm cream */
  --ink: #1c1a17;
  --bubble-in: #e2ded5;   /* incoming gray-beige */
  --bubble-in-ink: #201e1a;
  --blue: #2e86ff;        /* iMessage outgoing */
  --cta: #1c1712;         /* near-black pill */
  --muted: #8a8378;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html, body { margin: 0; height: 100%; }

body {
  background: var(--bg);
  color: var(--ink);
  font: 17px/1.4 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 460px;
  min-height: 100dvh;
  margin: 0 auto;
  padding: 28px 22px calc(24px + env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
}

/* brand */
.brand { display: flex; align-items: center; gap: 12px; margin: 6px 0 30px; }
.mark {
  font-size: 34px; line-height: 1; flex: none;
  display: grid; place-items: center;
}
.word {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: 27px; font-weight: 600; letter-spacing: -0.01em;
}
.word sup { font-size: 0.5em; top: -0.9em; }

/* chat thread */
.thread { display: flex; flex-direction: column; gap: 10px; }
.b {
  max-width: 82%; padding: 12px 16px; border-radius: 22px; font-size: 17px;
}
.b.in {
  align-self: flex-start; background: var(--bubble-in); color: var(--bubble-in-ink);
  border-bottom-left-radius: 7px;
}
.b.in.wide { max-width: 90%; }
.out-row { display: flex; align-items: center; justify-content: flex-end; gap: 10px; margin-top: 4px; }
.b.out {
  align-self: flex-end; background: var(--blue); color: #fff;
  border-bottom-right-radius: 7px; max-width: 78%;
}
.check {
  width: 26px; height: 26px; border-radius: 50%; background: var(--blue); color: #fff;
  display: grid; place-items: center; font-size: 14px; flex: none;
}

/* cta */
.cta {
  margin-top: auto; display: block; text-align: center;
  background: var(--cta); color: #fff; text-decoration: none;
  font-size: 20px; font-weight: 700; padding: 21px; border-radius: 40px;
}
.cta:active { transform: translateY(1px); }

/* social proof */
.proof {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  color: var(--muted); font-size: 15px; margin: 18px 0 0;
}
.dots { display: inline-flex; }
.dots i {
  width: 24px; height: 24px; border-radius: 50%; display: inline-block;
  border: 2px solid var(--bg); margin-left: -8px;
}
.dots i:first-child { margin-left: 0; }
.dots i:nth-child(1) { background: #7bb08a; }
.dots i:nth-child(2) { background: #caa46a; }
.dots i:nth-child(3) { background: #6f97c9; }

/* footer */
.foot { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-top: 26px; }
.info {
  width: 30px; height: 30px; border-radius: 50%; border: 1px solid #c9c2b5;
  display: grid; place-items: center; font-style: italic; font-family: Georgia, serif;
  color: var(--muted); font-size: 16px;
}
.links { color: var(--muted); font-size: 14px; }
.links a { color: var(--muted); text-decoration: underline; }
