:root {
  --bg: #e3d6f4;          /* medium-leaning lavender */
  --card: #ffffff;
  --ink: #322c44;
  --muted: #6f6a84;
  --primary: #6b5aa8;     /* soft violet */
  --primary-dark: #51447f;
  --accent: #ef8b2d;      /* toucan-beak orange */
  --border: #ded2f0;
  --soft: #f5effc;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  background: linear-gradient(180deg, #ebe0f8 0%, #dccbf0 100%);
  color: var(--ink);
  font-family: -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.7;
}
.wrap { max-width: 760px; margin: 0 auto; padding: 0 22px; }
h1, h2, h3 { font-family: "Fraunces", Georgia, "Times New Roman", serif; font-weight: 600; }
h2 { font-size: 27px; color: var(--primary-dark); text-align: center; margin-bottom: 6px; }
h2::after {
  content: ""; display: block; width: 42px; height: 4px; border-radius: 2px;
  background: var(--accent); margin: 12px auto 0;
}
.section-sub { text-align: center; color: var(--muted); margin-bottom: 26px; font-size: 15.5px; }

header { padding: 140px 0 20px; text-align: center; }
.logo {
  font-family: "Fraunces", Georgia, serif; font-weight: 650; letter-spacing: -0.5px;
  font-size: 42px; color: var(--primary-dark);
}
.logo .hey { color: var(--primary-dark); font-style: italic; font-weight: 600; }
.logo em { font-style: normal; font-size: 32px; }
.slogan {
  font-family: "Fraunces", Georgia, serif; font-style: italic;
  font-size: 23px; color: var(--accent); margin-top: 4px;
}
.tagline { font-size: 18px; color: var(--muted); margin-top: 14px; }

.demo {
  background: var(--card); border: 1px solid var(--border); border-radius: 24px;
  padding: 24px; max-width: 400px; margin: 34px auto 6px;
  box-shadow: 0 10px 30px rgba(81, 68, 127, 0.07);
}
.bubble { border-radius: 18px; padding: 9px 14px; margin: 7px 0; max-width: 86%; font-size: 14.5px; text-align: left; }
.them { background: #efedf5; color: #1c1930; margin-right: auto; border-bottom-left-radius: 6px; }
.me { background: #1289fe; color: #fff; margin-left: auto; border-bottom-right-radius: 6px; }

section { padding: 76px 0 12px; }

.how { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 30px; }
.how-step {
  text-align: center; padding: 32px 20px;
  background: var(--card); border: 1px solid var(--border); border-radius: 24px;
  box-shadow: 0 10px 30px rgba(81, 68, 127, 0.06);
}
.how-step .num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--accent); color: #fff; font-weight: 700; margin-bottom: 10px;
}
.how-step p { color: var(--muted); font-size: 14.5px; }
.how-step strong { display: block; color: var(--ink); margin-bottom: 2px; }
@media (max-width: 560px) { .how { grid-template-columns: 1fr; } }

.wrap-wide { max-width: 980px; margin: 0 auto; padding: 0 22px; }

.showcase { position: relative; margin-top: 36px; }
.slides {
  background: var(--card); border: 1px solid var(--border); border-radius: 30px;
  box-shadow: 0 14px 40px rgba(81, 68, 127, 0.09);
  min-height: 320px; overflow: hidden;
}
.slide {
  display: none; grid-template-columns: 340px 1fr; gap: 40px;
  align-items: center; padding: 40px 48px;
}
.slide.active { display: grid; animation: slideIn .35s ease; }
@keyframes slideIn { from { opacity: 0; transform: translateX(14px); } to { opacity: 1; transform: none; } }
@media (max-width: 720px) {
  .slide { grid-template-columns: 1fr; gap: 22px; padding: 26px; }
}
.phone {
  background: var(--soft); border: 1px solid var(--border); border-radius: 22px;
  padding: 16px 14px 14px;
}
.phone-head {
  text-align: center; font-size: 12.5px; font-weight: 650; color: var(--primary-dark);
  border-bottom: 1px solid var(--border); padding-bottom: 9px; margin-bottom: 11px;
}
.phone .bubble { font-size: 13.8px; }
.explain h3 { color: var(--primary-dark); font-size: 22px; margin-bottom: 10px; }
.explain p { color: var(--muted); font-size: 15.5px; line-height: 1.7; }
.car-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--border);
  background: var(--card); color: var(--primary-dark); font-size: 24px; line-height: 1;
  cursor: pointer; box-shadow: 0 8px 22px rgba(81, 68, 127, 0.14);
  margin: 0; padding: 0 0 3px;
}
.car-btn.prev { left: -14px; }
.car-btn.next { right: -14px; }
.car-btn:hover { background: var(--soft); }
.dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
.dot {
  width: 9px; height: 9px; border-radius: 50%; border: 0; padding: 0; margin: 0;
  background: #cbbfe6; cursor: pointer;
}
.dot.active { background: var(--accent); width: 22px; border-radius: 999px; }
.car-btn:hover { color: var(--accent); }

.boss {
  background: var(--card); border: 1px solid var(--border); border-radius: 20px;
  padding: 24px 24px 20px; margin-top: 16px; text-align: center;
}
.boss-title { font-weight: 600; font-size: 15.5px; }
.boss-bubbles { display: flex; flex-direction: column; align-items: center; gap: 8px; margin: 14px 0; }
.chip-bubble {
  background: #1289fe; color: #fff; border-radius: 16px; border-bottom-right-radius: 5px;
  padding: 7px 13px; font-size: 13.5px;
}
.boss-note { color: var(--muted); font-size: 14px; max-width: 56ch; margin: 4px auto 0; }

.signup {
  background: var(--card); border: 1px solid var(--border); border-radius: 24px;
  padding: 34px; margin: 8px 0 10px; box-shadow: 0 10px 30px rgba(81, 68, 127, 0.06);
}
.signup h2 { text-align: left; }
.signup .sub { color: var(--muted); margin: 4px 0 20px; font-size: 15px; }
.text-btn {
  display: inline-flex; flex-wrap: wrap; justify-content: center; column-gap: 10px;
  background: var(--accent); color: #fff; text-decoration: none;
  font-weight: 700; font-size: 20px; padding: 16px 34px; border-radius: 999px;
  box-shadow: 0 10px 26px rgba(239, 139, 45, 0.35); transition: transform .15s ease;
}
.text-btn:hover { transform: scale(1.04); }
.tb-label, .tb-num { white-space: nowrap; }
@media (max-width: 480px) {
  .text-btn { font-size: 17px; padding: 14px 22px; max-width: 100%; }
}
.pricing-promise {
  max-width: 56ch; margin: 16px auto 0; color: var(--muted);
  font-size: 14.5px; line-height: 1.6;
}
.pricing-promise strong { color: var(--deep); }
.copied { display: none; color: var(--deep); font-weight: 600; margin-top: 12px; font-size: 14px; }
.alt-line { color: var(--muted); font-size: 14px; margin-top: 14px; line-height: 1.6; }
.alt-line a { color: var(--deep); font-weight: 600; }
.consent-note { color: var(--muted); font-size: 12.5px; line-height: 1.55; margin-top: 22px; }
.consent-note a { color: var(--deep); }
label { display: block; font-weight: 600; font-size: 14px; margin: 16px 0 6px; }
input[type=text], input[type=tel], select {
  width: 100%; padding: 12px 13px; border: 1px solid var(--border); border-radius: 12px;
  font-size: 16px; background: var(--soft);
}
.chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 8px; }
.chip {
  background: var(--soft); border: 1px solid var(--border); border-radius: 999px;
  padding: 8px 15px; font-size: 13.5px; color: #4c4762;
}
.consent { display: flex; gap: 10px; align-items: flex-start; margin: 22px 0 6px; font-size: 13px; color: var(--muted); font-weight: 400; }
.consent input { margin-top: 3px; accent-color: var(--primary); }
.consent a { color: var(--primary-dark); }
button {
  background: var(--primary); color: #fff; border: 0; border-radius: 14px;
  padding: 15px 28px; font-size: 17px; font-weight: 650; cursor: pointer; margin-top: 16px; width: 100%;
}
button:hover { background: var(--primary-dark); }
.success { display: none; background: #eef6ee; border: 1px solid #bcd8bf; color: #2f5936;
  border-radius: 12px; padding: 16px; margin-top: 16px; font-weight: 600; }
.error { display: none; background: #fbeeea; border: 1px solid #e5bdb0; color: #8c3b25;
  border-radius: 12px; padding: 12px; margin-top: 16px; font-size: 14px; }

.disclaimer {
  background: #f0ecfa; border: 1px solid #ddd3f0; border-radius: 16px;
  padding: 20px 22px; font-size: 13.5px; color: #55496b;
}
.disclaimer strong { color: var(--primary-dark); }

.pricing { text-align: center; margin-top: 70px; margin-bottom: 55px; padding-bottom: 28px; }
.pricing p { color: var(--muted); }
.price-badge { display: inline-block; background: var(--primary); color: #fff; border-radius: 999px;
  padding: 7px 20px; font-weight: 700; margin-top: 12px; }
footer { text-align: center; color: var(--muted); font-size: 13px; padding: 24px 0 54px; }
footer a { color: var(--primary-dark); }
.legal-page { padding: 40px 0 60px; }
.legal-page h1 { color: var(--primary-dark); margin-bottom: 8px; text-align: left; }
.legal-page h2 { font-size: 19px; margin: 26px 0 6px; color: var(--primary-dark); text-align: left; }
.legal-page p, .legal-page li { color: #4c4762; font-size: 15px; }
.legal-page ul { padding-left: 22px; }
.template-note { background: #f0ecfa; border-radius: 10px; padding: 10px 14px; font-size: 13px; color: #55496b; margin-bottom: 22px; }

/* logo drafts page */
.logo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; padding-bottom: 60px; margin-top: 20px; }
@media (max-width: 620px) { .logo-grid { grid-template-columns: 1fr; } }
.logo-card { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 26px; text-align: center; }
.logo-card h3 { color: var(--primary-dark); margin: 16px 0 4px; }
.logo-card p { color: var(--muted); font-size: 13.5px; }
.logo-card .sizes { display: flex; align-items: flex-end; justify-content: center; gap: 26px; }

/* breathing room between the showcase/boss block and How it works */
.boss { margin-top: 70px; margin-bottom: 30px; }
.wrap-wide { padding-bottom: 70px; }
section.wrap-wide { padding-top: 78px; }

/* Perch — the official logo (option 3) */
.logo-bird { height: 48px; width: auto; vertical-align: -9px; margin-right: 8px; }
.avatar { width: 18px; height: 18px; border-radius: 50%; vertical-align: -4px; }
footer .avatar { width: 16px; height: 16px; vertical-align: -3px; }

.trust {
  background: var(--card); border: 1px solid var(--border); border-radius: 20px;
  padding: 26px 28px 20px; box-shadow: 0 8px 26px rgba(81, 68, 127, 0.05);
}
.trust h3 { color: var(--primary-dark); font-size: 18px; margin-bottom: 12px; }
.trust ul { list-style: none; }
.trust li { padding: 5px 0; color: #4c4762; font-size: 14.5px; }
.trust-note { color: var(--muted); font-size: 13px; margin-top: 12px; }
.trust a { color: var(--primary-dark); }
