/* KinderCanvas landing — implemented from Claude Design "KinderCanvas Landing.dc.html" */

:root {
  --cream: #FCFDFC;
  --ink: #242D2F;
  --teal: #3F8091;
  --sand: #F4DFA1;
  --coral: #DF7E5D;
  --blue-light: #CAE4E7;
  --blue-pale: #B7DCE5;
  --sage: #BDC78F;
  --muted: #82A9AF;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--cream);
  font-family: 'Nunito', sans-serif;
  color: var(--ink);
}

a { color: var(--teal); }
a:hover { color: var(--coral); }

h1, h2, h3, p { margin: 0; }

@keyframes kcFloat { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-12px) rotate(4deg); } }
@keyframes kcDrift { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(14px); } }
@keyframes kcSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes kcMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes kcBob { 0%, 100% { transform: rotate(2deg) translateY(0); } 50% { transform: rotate(2deg) translateY(-8px); } }

/* ---------- shared bits ---------- */

.stripe-blue { background: repeating-linear-gradient(45deg, #eef5f6 0px, #eef5f6 10px, #f8fbfb 10px, #f8fbfb 20px); }
.stripe-sand { background: repeating-linear-gradient(45deg, #f7f3e6 0px, #f7f3e6 10px, #fbf9f1 10px, #fbf9f1 20px); }
.stripe-sage { background: repeating-linear-gradient(45deg, #f0f2e8 0px, #f0f2e8 10px, #f8f9f3 10px, #f8f9f3 20px); }

.accent-coral { color: var(--coral); }

.tag {
  position: absolute;
  border: 3px solid var(--ink);
  border-radius: 999px;
  font-weight: 900;
  color: var(--cream);
  white-space: nowrap;
}
.tag-teal { background: var(--teal); }
.tag-coral { background: var(--coral); }

.badge-deleted {
  position: absolute;
  bottom: -11px;
  left: 50%;
  transform: translateX(-50%) rotate(-4deg);
  background: var(--coral);
  color: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 2px 8px;
  font-weight: 900;
  font-size: 8.5px;
  letter-spacing: 0.4px;
  white-space: nowrap;
  z-index: 2;
}

/* image slots — placeholders until real artwork exists */
.slot {
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(45deg, #eef5f6 0px, #eef5f6 10px, #f8fbfb 10px, #f8fbfb 20px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.slot span {
  font-family: ui-monospace, Menlo, monospace;
  font-size: 10px;
  color: var(--muted);
  padding: 6px;
}

/* email capture pill (hero / offer / final CTA) */
.email-pill {
  display: inline-flex;
  background: var(--cream);
  border: 4px solid var(--ink);
  border-radius: 999px;
  padding: 6px 6px 6px 22px;
  gap: 12px;
  align-items: center;
  box-shadow: 6px 6px 0 var(--ink);
  max-width: 100%;
}
.email-pill input {
  width: 220px;
  max-width: 45vw;
  border: none;
  background: transparent;
  font-size: 16px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  outline: none;
  color: var(--ink);
}
.email-pill .input-wide { width: 240px; }

.btn-coral, .btn-ink {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s ease, background 0.2s ease;
}
.btn-coral {
  background: var(--coral);
  color: var(--cream);
  border: 3px solid var(--ink);
}
.btn-coral:hover { transform: translate(-1px, -1px); }
.btn-ink {
  background: var(--ink);
  color: var(--cream);
  border: none;
  padding: 13px 26px;
}
.btn-ink:hover { background: var(--teal); }

.email-pill.is-joined input { pointer-events: none; }
.email-pill.is-joined button,
.sticky-bar.is-joined button { background: var(--teal); color: var(--cream); }

/* ---------- nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--teal);
  border-bottom: 3px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 44px;
  height: 65px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 200px;
}

.wordmark {
  font-weight: 900;
  font-size: 20px;
  color: var(--cream);
  letter-spacing: -0.3px;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.scrolled .wordmark {
  opacity: 0;
  transform: translateY(-8px);
  position: absolute;
  pointer-events: none;
}

/* small logo, docked left once scrolled */
.nav-logo-wrap {
  display: block;
  position: absolute;
  top: 4px;
  left: 44px;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.scrolled .nav-logo-wrap {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.nav-logo {
  height: 88px;
  width: auto;
  display: block;
  filter: drop-shadow(3px 3px 0 rgba(36, 45, 47, 0.35));
}

/* big logo, centered top; fades out as the small one docks left */
.hero-logo {
  height: 210px;
  width: auto;
  display: block;
  position: absolute;
  left: 46%;
  top: 30px;
  transform: translateX(-50%) rotate(-2deg);
  transform-origin: top center;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  filter: drop-shadow(4px 4px 0 rgba(36, 45, 47, 0.35));
  z-index: 3;
}
.scrolled .hero-logo {
  transform: translateX(-50%) rotate(-2deg) scale(0.4);
  opacity: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  position: relative;
  z-index: 5;
}
.nav-links a {
  font-size: 14px;
  font-weight: 800;
  color: rgba(252, 253, 252, 0.85);
  text-decoration: none;
}
.nav-links a:hover { color: var(--cream); }
.nav-links .nav-cta {
  background: var(--sand);
  color: var(--ink);
  font-weight: 900;
  padding: 10px 22px;
  border-radius: 999px;
  border: 3px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.nav-links .nav-cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--ink);
  color: var(--ink);
}

/* ---------- hero ---------- */

.hero {
  background: var(--teal);
  padding: 44px 44px 114px;
  position: relative;
  overflow: hidden;
}

.hero-cloud {
  position: absolute;
  top: 40px;
  left: 30px;
  width: 100px;
  color: rgba(183, 220, 229, 0.35);
  animation: kcDrift 8s ease-in-out infinite;
}
.hero-star {
  position: absolute;
  bottom: 60px;
  left: 46%;
  width: 36px;
  color: var(--sand);
  animation: kcFloat 5s ease-in-out infinite;
}
.hero-cloud svg, .hero-star svg { width: 100%; height: auto; display: block; }

.hero-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-copy { margin-top: 75px; }

.hero-copy h1 {
  font-size: 66px;
  line-height: 1.0;
  font-weight: 900;
  color: var(--cream);
  margin: 0 0 18px;
  letter-spacing: -2px;
}
.hero-chip {
  display: inline-block;
  background: var(--sand);
  color: var(--ink);
  padding: 2px 18px;
  border-radius: 16px;
  transform: rotate(-1.5deg);
  border: 4px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  margin: 8px 0;
}
.hero-sub {
  font-size: 19px;
  font-weight: 700;
  color: rgba(252, 253, 252, 0.92);
  max-width: 480px;
  margin: 0 0 26px;
  line-height: 1.5;
}
.hero .email-pill { margin-bottom: 16px; }
.hero-checks {
  display: flex;
  gap: 16px;
  font-size: 12.5px;
  font-weight: 800;
  color: rgba(252, 253, 252, 0.8);
  flex-wrap: wrap;
}

/* hero visual: photo in → storybook + coloring page out */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4px 0 34px;
}

.photo-in {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
  z-index: 4;
}
.polaroid {
  position: relative;
  background: #ffffff;
  border: 3px solid var(--ink);
  border-radius: 10px;
  padding: 6px 6px 18px;
  transform: rotate(-3deg);
  box-shadow: 4px 4px 0 rgba(36, 45, 47, 0.9);
}
.slot-photo { width: 84px; height: 84px; }
.photo-in-title {
  font-weight: 900;
  font-size: 16px;
  color: var(--cream);
  margin: 0 0 2px;
}
.photo-in-sub {
  font-weight: 800;
  font-size: 13px;
  color: var(--sand);
}

.storybook-card {
  position: relative;
  background: var(--cream);
  border: 4px solid var(--ink);
  border-radius: 24px;
  padding: 12px;
  box-shadow: 8px 8px 0 var(--ink);
  animation: kcBob 6s ease-in-out infinite;
}
.storybook-card .tag {
  top: -16px;
  left: 22px;
  z-index: 2;
  padding: 5px 14px;
  font-size: 11.5px;
  letter-spacing: 1px;
  transform: rotate(-2deg);
}
.slot-storybook { width: 270px; height: 360px; border-radius: 14px; overflow: hidden; }

.coloring-card {
  position: absolute;
  bottom: -36px;
  left: -18px;
  background: #ffffff;
  border: 3px solid var(--ink);
  border-radius: 2px;
  padding: 11px 11px 26px;
  box-shadow: 5px 5px 0 rgba(36, 45, 47, 0.9);
  transform: rotate(-7deg);
  z-index: 3;
  width: 154px;
  box-sizing: content-box;
}
.coloring-card .tag {
  top: -13px;
  left: 12px;
  z-index: 2;
  border-width: 2px;
  padding: 3px 10px;
  font-size: 9.5px;
  letter-spacing: 0.5px;
}
.coloring-inner {
  width: 154px;
  height: 196px;
  border: 1.5px dashed var(--blue-pale);
  box-sizing: border-box;
  padding: 3px;
}
.slot-coloring { background: #fff; }
.slot-coloring span { font-size: 9px; }
.coloring-caption {
  position: absolute;
  bottom: 6px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: ui-monospace, Menlo, monospace;
  font-size: 8px;
  color: var(--muted);
  letter-spacing: 0.5px;
}

.print-pill {
  position: absolute;
  bottom: -12px;
  right: 10px;
  background: var(--sand);
  border: 3px solid var(--ink);
  border-radius: 999px;
  padding: 9px 18px;
  font-weight: 900;
  font-size: 13px;
  transform: rotate(-4deg);
  box-shadow: 3px 3px 0 var(--ink);
  z-index: 3;
}
.visual-more {
  position: absolute;
  bottom: -62px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  z-index: 5;
  color: rgba(252, 253, 252, 0.85);
  font-weight: 800;
  font-size: 12px;
}

/* process strip */
.process-strip {
  max-width: 1120px;
  margin: 98px auto 0;
  background: var(--cream);
  border: 4px solid var(--ink);
  border-radius: 24px;
  box-shadow: 6px 6px 0 var(--ink);
  padding: 30px 34px 24px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.strip-tag {
  top: -17px;
  left: 28px;
  padding: 6px 16px;
  font-size: 12px;
  letter-spacing: 1.5px;
  transform: rotate(-1deg);
}
.process-step {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}
.step-icon-wrap { position: relative; flex: none; }
.step-icon {
  width: 86px;
  height: 86px;
  border: 3px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex: none;
}
.step-icon.rounded { border-radius: 14px; }
.step-icon.circle { border-radius: 999px; }
.step-icon-stack { position: relative; flex: none; width: 86px; height: 86px; }
.stack-back {
  position: absolute;
  inset: 0;
  border: 3px solid var(--ink);
  border-radius: 12px;
  background: var(--blue-light);
  transform: rotate(5deg);
}
.stack-front { position: absolute; inset: 0; width: auto; height: auto; border-radius: 12px; }
.step-title { font-weight: 900; font-size: 15px; margin: 0 0 2px; }
.step-sub {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--muted);
  line-height: 1.4;
}
.process-arrow {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--sand);
  border: 3px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
}

/* ---------- marquee ---------- */

.marquee {
  background: var(--sand);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  overflow: hidden;
  padding: 12px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: kcMarquee 20s linear infinite;
}
.marquee-track span {
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 2px;
  white-space: nowrap;
  padding-right: 30px;
}

/* ---------- how it works ---------- */

.how {
  padding: 76px 44px;
  max-width: 1000px;
  margin: 0 auto;
}
.how h2 {
  font-size: 46px;
  font-weight: 900;
  letter-spacing: -1.5px;
  margin: 0 0 44px;
  text-align: center;
}
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.how-card {
  border: 4px solid var(--ink);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 6px 6px 0 var(--ink);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.how-card-1 { background: var(--blue-light); transform: rotate(-1deg); }
.how-card-1:hover { transform: rotate(-1deg) translate(-2px, -2px); box-shadow: 8px 8px 0 var(--ink); }
.how-card-2 { background: var(--sand); transform: rotate(1deg) translateY(-8px); }
.how-card-2:hover { transform: rotate(1deg) translate(-2px, -10px); box-shadow: 8px 8px 0 var(--ink); }
.how-card-3 { background: var(--sage); transform: rotate(-0.5deg); }
.how-card-3:hover { transform: rotate(-0.5deg) translate(-2px, -2px); box-shadow: 8px 8px 0 var(--ink); }
.how-num {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  color: var(--cream);
  border: 3px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 22px;
  margin-bottom: 16px;
}
.num-teal { background: var(--teal); }
.num-coral { background: var(--coral); }
.num-ink { background: var(--ink); }
.how-card h3 { font-size: 21px; font-weight: 900; margin: 0 0 8px; }
.how-card p {
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.6;
  color: rgba(36, 45, 47, 0.75);
}

/* ---------- founding families offer ---------- */

.offer {
  background: var(--sand);
  border-top: 3px solid var(--ink);
  padding: 76px 44px;
}
.offer-inner { max-width: 1000px; margin: 0 auto; }
.offer h2 {
  font-size: 46px;
  font-weight: 900;
  letter-spacing: -1.5px;
  margin: 0 0 8px;
  text-align: center;
}
.offer-sub {
  text-align: center;
  font-weight: 700;
  color: rgba(36, 45, 47, 0.65);
  font-size: 16px;
  margin: 0 0 44px;
}
.offer-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
}
.price-card {
  background: var(--ink);
  border: 4px solid var(--ink);
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: 8px 8px 0 var(--coral);
  transform: rotate(-1deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.price-label {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--sand);
  margin: 0 0 10px;
}
.price-amount {
  font-size: 76px;
  font-weight: 900;
  color: var(--cream);
  letter-spacing: -3px;
  line-height: 1;
  margin: 0 0 6px;
}
.price-sub {
  font-size: 15px;
  font-weight: 800;
  color: rgba(252, 253, 252, 0.85);
  margin: 0 0 18px;
}
.price-badge {
  display: inline-block;
  margin: 0 auto;
  background: var(--coral);
  color: var(--cream);
  border: 3px solid var(--cream);
  border-radius: 999px;
  padding: 7px 18px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 1px;
  transform: rotate(-2deg);
}
.included {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.included-row {
  background: var(--cream);
  border: 4px solid var(--ink);
  border-radius: 20px;
  padding: 18px 24px;
  display: flex;
  gap: 14px;
  align-items: center;
  box-shadow: 4px 4px 0 var(--ink);
}
.included-emoji { font-size: 26px; flex: none; }
.included-title { font-weight: 900; font-size: 16px; margin: 0 0 2px; }
.included-sub { font-size: 13.5px; font-weight: 600; color: var(--muted); }

.offer-cta {
  max-width: 640px;
  margin: 40px auto 0;
  text-align: center;
}
.offer-cta-copy { font-size: 17px; font-weight: 800; margin: 0 0 18px; }
.footnote-ink {
  font-size: 12px;
  font-weight: 700;
  color: rgba(36, 45, 47, 0.55);
  margin: 16px 0 0;
}

/* ---------- samples ---------- */

.samples {
  background: var(--blue-light);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  padding: 70px 44px;
}
.samples-inner { max-width: 1000px; margin: 0 auto; }
.samples h2 {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -1px;
  margin: 0 0 40px;
}
.printer-chip {
  background: var(--cream);
  padding: 0 14px;
  border-radius: 12px;
  border: 3px solid var(--ink);
  display: inline-block;
  transform: rotate(1deg);
}
.samples-row { display: flex; gap: 24px; }
.sample-card {
  flex: 1;
  background: var(--cream);
  border: 4px solid var(--ink);
  border-radius: 20px;
  padding: 10px;
  box-shadow: 5px 5px 0 rgba(36, 45, 47, 0.9);
}
.sample-1 { transform: rotate(-2deg); }
.sample-2 { transform: rotate(1.5deg) translateY(-12px); }
.sample-3 { transform: rotate(-1deg); }
.sample-art {
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sample-art span {
  font-family: ui-monospace, Menlo, monospace;
  font-size: 11px;
  color: var(--muted);
  text-align: center;
}
.sample-card p {
  font-weight: 900;
  font-size: 13px;
  text-align: center;
  margin: 10px 0 4px;
}

/* ---------- testimonials ---------- */

.testimonials {
  padding: 76px 44px;
  max-width: 1000px;
  margin: 0 auto;
}
.testimonials h2 {
  font-size: 46px;
  font-weight: 900;
  letter-spacing: -1.5px;
  margin: 0 0 8px;
  text-align: center;
}
.testimonials-sub {
  text-align: center;
  font-weight: 700;
  color: var(--muted);
  font-size: 15px;
  margin: 0 0 44px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.quote-card {
  background: var(--cream);
  border: 4px solid var(--ink);
  border-radius: 24px;
  padding: 26px;
}
.quote-1 { box-shadow: 6px 6px 0 var(--blue-pale); transform: rotate(-0.8deg); }
.quote-2 { box-shadow: 6px 6px 0 var(--sand); transform: rotate(0.8deg) translateY(-8px); }
.quote-3 { box-shadow: 6px 6px 0 var(--sage); transform: rotate(-0.5deg); }
.quote {
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.6;
  margin: 0 0 20px;
}
.quote-who { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 3px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
  flex: none;
}
.avatar-teal { color: var(--teal); }
.avatar-coral { color: var(--coral); }
.avatar-sage { color: #6B7F6C; }
.who-name { font-weight: 900; font-size: 13.5px; }
.who-context { font-size: 12px; font-weight: 700; color: var(--muted); }

/* ---------- privacy ---------- */

.privacy {
  background: var(--cream);
  border-top: 3px solid var(--ink);
  padding: 76px 44px;
}
.privacy-inner { max-width: 1000px; margin: 0 auto; }
.privacy h2 {
  font-size: 46px;
  font-weight: 900;
  letter-spacing: -1.5px;
  margin: 0 0 10px;
  text-align: center;
}
.privacy-sub {
  text-align: center;
  font-weight: 700;
  color: var(--muted);
  font-size: 16px;
  margin: 0 0 44px;
}
.privacy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.privacy-row {
  border: 4px solid var(--ink);
  border-radius: 20px;
  padding: 24px 28px;
  background: var(--cream);
  display: flex;
  gap: 16px;
  align-items: center;
}
.privacy-emoji { font-size: 30px; flex: none; }
.privacy-title { font-weight: 900; font-size: 17px; margin: 0 0 3px; }
.privacy-copy { font-size: 13.5px; font-weight: 600; color: var(--muted); }

/* ---------- FAQ ---------- */

.faq {
  background: var(--cream);
  border-top: 3px solid var(--ink);
  padding: 70px 44px;
}
.faq-inner { max-width: 760px; margin: 0 auto; }
.faq h2 {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -1px;
  margin: 0 0 36px;
  text-align: center;
}
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  border: 4px solid var(--ink);
  border-radius: 18px;
  padding: 18px 26px;
  background: var(--cream);
}
.faq-1 { box-shadow: 4px 4px 0 var(--blue-pale); }
.faq-2 { box-shadow: 4px 4px 0 var(--sand); }
.faq-3 { box-shadow: 4px 4px 0 var(--sage); }
.faq-4 { box-shadow: 4px 4px 0 var(--blue-light); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 900;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus {
  color: var(--coral);
  font-size: 24px;
  transition: transform 0.2s ease;
  flex: none;
}
.faq-item[open] .faq-plus { transform: rotate(45deg); }
.faq-item p {
  font-size: 14px;
  line-height: 1.7;
  font-weight: 600;
  color: var(--muted);
  margin: 12px 0 0;
}

/* ---------- final CTA ---------- */

.final-cta {
  background: var(--coral);
  border-top: 3px solid var(--ink);
  padding: 80px 44px 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-spinner {
  position: absolute;
  top: 30px;
  right: 80px;
  width: 40px;
  color: var(--sand);
  animation: kcSpin 18s linear infinite;
}
.final-spinner svg { width: 100%; height: auto; display: block; }
.final-logo {
  height: 130px;
  width: auto;
  margin-bottom: 20px;
  filter: drop-shadow(4px 4px 0 rgba(36, 45, 47, 0.4));
}
.final-cta h2 {
  font-size: 58px;
  font-weight: 900;
  color: var(--cream);
  letter-spacing: -2px;
  margin: 0 0 12px;
}
.final-sub {
  font-size: 17px;
  font-weight: 700;
  color: rgba(252, 253, 252, 0.9);
  margin: 0 0 34px;
}
.final-cta .email-pill { padding-left: 24px; }
.final-footnote {
  font-size: 12.5px;
  font-weight: 700;
  color: rgba(252, 253, 252, 0.8);
  margin: 40px auto 0;
  max-width: 520px;
  line-height: 1.6;
}
.final-copyright {
  font-size: 12px;
  font-weight: 700;
  color: rgba(252, 253, 252, 0.7);
  margin: 24px 0 0;
}

/* ---------- sticky capture bar ---------- */

.sticky-bar-wrap {
  position: sticky;
  bottom: 14px;
  z-index: 50;
  display: flex;
  justify-content: center;
  padding: 0 44px;
}
.sticky-bar {
  background: var(--ink);
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 8px 8px 22px;
  box-shadow: 0 12px 30px rgba(36, 45, 47, 0.35);
  max-width: 100%;
}
.sticky-label {
  font-size: 13px;
  font-weight: 900;
  color: var(--sand);
  white-space: nowrap;
}
.sticky-bar input {
  width: 200px;
  max-width: 40vw;
  padding: 10px 16px;
  border-radius: 999px;
  border: none;
  background: rgba(252, 253, 252, 0.12);
  font-size: 13px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  color: var(--cream);
  outline: none;
}
.sticky-bar input::placeholder { color: rgba(252, 253, 252, 0.55); }
.btn-sticky {
  font-size: 13px;
  padding: 10px 20px;
  border: none;
}
.btn-sticky:hover { transform: translateY(-1px); }

/* ---------- responsive (prototype was fixed-width desktop) ---------- */

@media (max-width: 1080px) {
  .hero-logo { display: none; }
  .hero-copy { margin-top: 20px; }
  .hero-grid { grid-template-columns: 1fr; gap: 80px; }
  .hero-visual { margin: 0 auto; padding-bottom: 70px; }
  .process-strip { flex-direction: column; align-items: flex-start; gap: 24px; padding-top: 40px; }
  .process-arrow { transform: rotate(90deg); margin-left: 23px; }
}

@media (max-width: 900px) {
  .how-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .how-card-2 { transform: rotate(1deg); }
  .quote-2 { transform: rotate(0.8deg); }
  .offer-grid { grid-template-columns: 1fr; }
  .privacy-grid { grid-template-columns: 1fr; }
  .samples-row { flex-direction: column; gap: 32px; }
  .sample-2 { transform: rotate(1.5deg); }
  .price-amount { font-size: 60px; }
}

@media (max-width: 720px) {
  .nav { padding: 10px 20px; }
  .nav-logo-wrap { left: 20px; }
  .nav-links { gap: 16px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .hero { padding: 32px 20px 100px; }
  .hero-copy h1 { font-size: 46px; letter-spacing: -1.5px; }
  .how, .offer, .samples, .testimonials, .privacy, .faq { padding-left: 20px; padding-right: 20px; }
  .how h2, .offer h2, .testimonials h2, .privacy h2 { font-size: 34px; }
  .samples h2, .faq h2 { font-size: 32px; }
  .final-cta { padding: 60px 20px 70px; }
  .final-cta h2 { font-size: 40px; }
  .email-pill { padding-left: 16px; }
  .email-pill input, .email-pill .input-wide { width: 150px; }
  .btn-coral, .btn-ink { font-size: 13px; padding: 11px 16px; }
  .sticky-bar-wrap { padding: 0 16px; }
  .sticky-label { display: none; }
  .visual-more { white-space: normal; text-align: center; width: 100%; }
}
