*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --mustard:    #E8B84B;
  --mustard-lt: #FEF7E0;
  --mustard-dk: #7A5E00;
  --sky:        #78B8D4;
  --sky-lt:     #E6F4F9;
  --sky-dk:     #2A6A84;
  --coral:      #E8795C;
  --coral-lt:   #FDEEE8;
  --coral-dk:   #7A3018;
  --sage:       #7EBA8A;
  --sage-lt:    #E8F5EB;
  --sage-dk:    #2A5E34;
  --cream:      #FBF7F3;
  --sand:       #EDE4D4;
  --ink:        #1E1810;
  --ink-mid:    #5C4A38;
  --ink-lt:     #A09080;
  --white:      #FFFFFF;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--white);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}


/* HERO */
.hero {
  display: flex;
  min-height: calc(100vh - 66px);
  padding: 0;
  border-bottom: none;
  background: var(--white);
  overflow: hidden;
}

.hero-left {
  flex: 1;
  padding: 40px 56px 120px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.hero-right {
  flex: 0 0 48%;
  position: relative;
  overflow: hidden;
}

.hero-right img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: saturate(1.2);
}

.hero-deco { position: absolute; border-radius: 50%; pointer-events: none; }
.deco-1 { width: 420px; height: 420px; background: var(--mustard-lt); top: -170px; left: -130px; opacity: 0.8; }
.deco-2 { width: 300px; height: 300px; background: var(--sky-lt); bottom: -90px; left: 60%; opacity: 0.8; }
.deco-3 { width: 180px; height: 180px; background: var(--coral-lt); top: 30px; right: 100px; opacity: 0.6; }

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 400; color: var(--sage-dk);
  background: var(--sage-lt); padding: 5px 12px;
  border-radius: 99px; border: none;
  margin-bottom: 28px; position: relative; z-index: 1;
  animation: fadeUp 0.55s cubic-bezier(.22,1,.36,1) both;
}
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sage); }

h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(34px, 4.6vw, 52px);
  font-weight: 700; line-height: 1.1; letter-spacing: -1.5px;
  max-width: 700px; margin: 0 0 22px;
  position: relative; z-index: 1;
  animation: fadeUp 0.55s 0.08s cubic-bezier(.22,1,.36,1) both;
}
.h-coral { color: var(--coral); }
.h-sky   { color: var(--sky-dk); }

.hero-sub {
  font-size: 18px; font-weight: 400; color: var(--ink-mid);
  max-width: 560px; margin: 0 0 24px; line-height: 1.7;
  position: relative; z-index: 1;
  animation: fadeUp 0.55s 0.16s cubic-bezier(.22,1,.36,1) both;
}

.hero-emotion {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink-mid);
  max-width: 460px;
  margin: -18px auto 34px;
  line-height: 1.65;
  letter-spacing: -0.1px;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.55s 0.2s cubic-bezier(.22,1,.36,1) both;
}

.hero-emotion strong {
  color: var(--ink);
  font-weight: 600;
}

.hero-btns {
  display: flex; gap: 12px; justify-content: flex-start; flex-wrap: wrap;
  position: relative; z-index: 1;
  animation: fadeUp 0.55s 0.24s cubic-bezier(.22,1,.36,1) both;
}

.btn-primary {
  height: 52px; padding: 0 32px; border-radius: 99px;
  background: var(--coral); color: var(--white);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 16px; font-weight: 600;
  border: none; cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center;
  transition: background 0.18s, transform 0.15s;
}
.btn-primary:hover { background: var(--coral-dk); transform: translateY(-2px); }

.btn-secondary {
  height: 52px; padding: 0 28px; border-radius: 99px;
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--sand);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 16px; font-weight: 600;
  cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center;
  transition: background 0.18s, border-color 0.18s, transform 0.15s;
}
.btn-secondary:hover { background: var(--sand); border-color: var(--sand); transform: translateY(-2px); }

.hero-note {
  font-size: 13px; font-weight: 500; color: var(--ink-lt);
  margin-top: 16px; position: relative; z-index: 1;
  animation: fadeUp 0.55s 0.32s cubic-bezier(.22,1,.36,1) both;
}

.hero-trust-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  margin-top: 24px;
  padding: 0;
  position: relative; z-index: 1;
  animation: fadeUp 0.55s 0.38s cubic-bezier(.22,1,.36,1) both;
}

.hero-trust-list li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-mid);
}

.hero-trust-list svg { color: var(--sage); flex-shrink: 0; }

.toy-strip {
  display: flex; justify-content: center; gap: 14px;
  margin-top: 60px; flex-wrap: wrap;
  position: relative; z-index: 1;
  animation: fadeUp 0.55s 0.4s cubic-bezier(.22,1,.36,1) both;
}

.toy {
  width: 86px; height: 86px; border-radius: 24px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(0,0,0,0.08);
  transition: transform 0.25s cubic-bezier(.34,1.56,.64,1);
}
.toy:hover { transform: translateY(-6px) rotate(3deg); }
.ty { background: var(--mustard-lt); }
.tb { background: var(--sky-lt); }
.tc { background: var(--coral-lt); }
.tg { background: var(--sage-lt); }

/* PHOTO CAROUSEL */
.carousel-wrap {
  position: relative; margin-top: 60px;
  z-index: 1;
  animation: fadeUp 0.55s 0.4s cubic-bezier(.22,1,.36,1) both;
}

.carousel-track-outer {
  overflow: hidden;
  border-radius: 20px;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.carousel-track {
  display: flex;
  gap: 16px;
  cursor: grab;
  user-select: none;
  padding: 4px 2px;
  transition: transform 0.4s cubic-bezier(.22,1,.36,1);
}
.carousel-track:active { cursor: grabbing; }

.carousel-slide {
  flex-shrink: 0;
  width: 200px; height: 200px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
}

.carousel-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.carousel-slide:hover img { transform: scale(1.04); }

.carousel-btns {
  display: flex; justify-content: center;
  gap: 10px; margin-top: 20px;
}

.carousel-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--white); border: 1.5px solid var(--sand);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, transform 0.15s;
}
.carousel-btn:hover { background: var(--sand); border-color: var(--sand); transform: translateY(-1px); }

.carousel-dots {
  display: flex; justify-content: center;
  gap: 6px; margin-top: 14px;
}
.carousel-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--sand); transition: background 0.2s, width 0.2s;
  cursor: pointer;
}
.carousel-dot.active { background: var(--coral); width: 18px; border-radius: 99px; }

/* SECTIONS */
section { padding: 80px 48px; border-bottom: 1px solid var(--sand); }
section.alt { background: var(--white); border-top: none; border-bottom: none; }

.photo-break { padding: 48px; border-bottom: 1px solid var(--sand); text-align: center; }
.photo-break img { width: 50%; height: auto; display: inline-block; border-radius: 16px; }

.section-tag {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 11px; font-weight: 400;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--ink-lt);
  display: inline-block; margin-bottom: 16px;
}

h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 700; letter-spacing: -0.8px;
  margin-bottom: 40px; line-height: 1.15;
}

/* STEPS */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }

.step {
  padding: 20px 28px; border-radius: 22px;
  border: 1px solid var(--sand); background: var(--white);
  transition: transform 0.22s cubic-bezier(.34,1.56,.64,1), box-shadow 0.22s;
}
.step:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.07); border-color: var(--coral); }
.step-pill {
  display: inline-block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 11px; font-weight: 500;
  padding: 3px 10px; border-radius: 99px;
  margin-bottom: 16px; letter-spacing: 0.5px;
  background: var(--coral-lt); color: var(--coral-dk);
}
.step h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px; font-weight: 600;
  margin-bottom: 8px; letter-spacing: -0.2px;
}
.step p { font-size: 14px; color: var(--ink-mid); line-height: 1.6; }

.hiw-faq-link {
  margin-top: 28px;
  font-size: 15px;
  color: var(--ink-mid);
}
.hiw-faq-link a {
  color: var(--coral);
  font-weight: 600;
  text-decoration: none;
}
.hiw-faq-link a:hover { text-decoration: underline; }

#how-it-works { padding-top: 24px; padding-bottom: 56px; scroll-margin-top: 66px; overflow: hidden; }
.hiw-full-bleed {
  display: block;
  width: calc(100% + 96px);
  margin: 40px -48px -24px;
  height: 480px;
  object-fit: cover;
  object-position: center 20%;
}
#why-burblebox { padding: 0 0 0 48px; scroll-margin-top: 66px; border-bottom: none; }

/* WHY LAYOUT */
.why-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: stretch; }
.why-left { display: flex; flex-direction: column; padding-top: 24px; padding-bottom: 80px; }
.why-left h2 { margin-bottom: 32px; }
.why-photo { display: flex; }
.why-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; display: block; filter: saturate(1.4); }

/* WHY CARDS */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }

.why-card {
  padding: 28px; border-radius: 22px; border: 1px solid transparent;
  transition: transform 0.22s cubic-bezier(.34,1.56,.64,1), box-shadow 0.22s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.07); border-color: var(--coral); }
.wc1, .wc2, .wc3, .wc4 { background: var(--white); border-color: var(--sand); }

.why-icon {
  width: 40px; height: 40px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream); margin-bottom: 16px;
}
.why-icon svg { stroke: var(--coral); }
.why-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px; font-weight: 600; margin-bottom: 8px; letter-spacing: -0.2px;
}
.why-card p { font-size: 14px; color: var(--ink-mid); line-height: 1.6; }

/* QUOTES */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; margin-top: 40px; }

.quote {
  padding: 28px; border-radius: 22px;
  background: var(--cream); border: 1px solid var(--sand);
  transition: transform 0.22s ease;
}
.quote:hover { transform: translateY(-3px); }
.quote-bar { width: 32px; height: 4px; border-radius: 99px; margin-bottom: 16px; }
.qb-coral { background: var(--coral); }
.qb-sky   { background: var(--sky); }
.quote p {
  font-size: 15px; color: var(--ink-mid);
  line-height: 1.7; font-style: italic; margin-bottom: 16px;
}
.quote-attr { font-size: 13px; font-weight: 600; color: var(--ink-lt); }

/* TESTIMONIALS */
#testimonials { background: var(--white); border-bottom: none; padding-top: 48px; padding-bottom: 48px; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.testimonial-card {
  padding: 20px 24px; border-radius: 22px;
  background: var(--cream); border: 1px solid var(--sand);
  transition: transform 0.22s ease;
}
.testimonial-card:hover { transform: translateY(-3px); }

.testimonial-bar { width: 32px; height: 4px; border-radius: 99px; margin-bottom: 16px; }
.tb-coral { background: var(--coral); }
.tb-sky   { background: var(--sky); }

.testimonial-text {
  font-size: 15px; color: var(--ink-mid);
  line-height: 1.7; font-style: italic; margin-bottom: 12px;
}

.testimonial-body {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.testimonial-headshot {
  width: 80px; height: 80px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
  border: 2px solid var(--sand);
}

.testimonial-content { flex: 1; min-width: 0; }

.testimonial-attr { font-size: 13px; font-weight: 600; color: var(--ink-lt); }

.testimonial-cred {
  font-size: 12px; font-weight: 500; color: var(--ink-lt);
  margin-top: 3px;
}

/* SIGNUP */
.cta-section { background: var(--cream); border-bottom: none; scroll-margin-top: 10px; padding-bottom: 40px; }
.cta-section h2 { color: var(--ink); margin-bottom: 12px; }
.cta-sub { font-size: 17px; color: var(--ink-mid); margin-bottom: 36px; }
.cta-section .badge { background: var(--sage-lt); border-color: transparent; color: var(--sage-dk); }
.cta-section .badge-dot { background: var(--sage); }
.cta-card-inner .badge { margin-bottom: 10px; }

.signup-card {
  background: var(--white); border-radius: 28px;
  padding: 36px 40px; width: fit-content; min-width: 320px; max-width: 100%; margin: 0 auto;
  border: 1px solid var(--sand);
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}

.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 14px; font-weight: 600;
  color: var(--ink); margin-bottom: 6px;
}
.field input, .field select {
  width: 100%; padding: 0 14px; height: 46px;
  border-radius: 12px; border: 1.5px solid var(--sand);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px; font-weight: 400;
  background: var(--cream); color: var(--ink);
  transition: border-color 0.18s, box-shadow 0.18s;
  appearance: none; -webkit-appearance: none;
}
.field input:focus, .field select:focus {
  outline: none; border-color: var(--sky);
  box-shadow: 0 0 0 3px var(--sky-lt);
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A09080' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 38px; cursor: pointer;
}

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.divider { border: none; border-top: 1px solid var(--sand); margin: 20px 0; }

.survey-toggle {
  display: flex; align-items: center; gap: 10px; cursor: pointer;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 15px; font-weight: 600;
  color: var(--coral-dk); user-select: none; padding: 4px 0;
  transition: opacity 0.15s;
}
.survey-toggle:hover { opacity: 0.75; }
.survey-toggle .hint { margin-left: auto; font-size: 12px; font-family: 'Plus Jakarta Sans', sans-serif; color: var(--ink-lt); font-weight: 400; }

.survey-body {
  margin-top: 16px; padding: 20px;
  background: var(--cream); border-radius: 16px;
  border: 1px solid var(--sand); display: none;
}
.survey-body.open { display: block; }

.qs {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 10px;
}

.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.chip {
  padding: 6px 14px; border-radius: 99px;
  border: 1.5px solid var(--sand);
  font-size: 13px; font-weight: 500;
  cursor: pointer; background: var(--white); color: var(--ink-mid);
  transition: all 0.15s;
}
.chip:hover { border-color: var(--mustard); color: var(--ink); }
.chip.on { background: var(--mustard-lt); border-color: var(--mustard); color: var(--mustard-dk); font-weight: 600; }

.submit-btn {
  width: 100%; height: 52px; margin-top: 20px;
  border-radius: 99px; background: var(--coral); color: var(--white);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 17px; font-weight: 600;
  border: none; cursor: pointer;
  transition: background 0.18s, transform 0.15s;
}
.submit-btn:hover { background: var(--coral-dk); transform: translateY(-2px); }
.submit-btn:disabled { opacity: 0.6; transform: none; cursor: not-allowed; }

.cta-card { text-align: center; }
.cta-card-inner { display: flex; flex-direction: column; align-items: center; padding: 8px 0; }

.cta-toy-photos {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: center;
  margin-bottom: 16px;
}

.cta-toy-thumb {
  width: 82px;
  height: 82px;
  object-fit: cover;
  border-radius: 12px;
  filter: saturate(1.65);
}
.cta-price-wrap {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 4px;
}

.cta-price-was {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 26px; font-weight: 400;
  color: #C4B8AC;
  text-decoration: line-through;
  text-decoration-color: #C4B8AC;
  letter-spacing: -0.5px;
}

.cta-price {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 47px; font-weight: 700;
  color: var(--ink); letter-spacing: -2px; line-height: 1;
}

.cta-price-desc { font-size: 14px; color: var(--ink-lt); font-weight: 400; margin-bottom: 4px; text-align: left; }
.cta-btn-link {
  display: flex; align-items: center; justify-content: center;
  width: 100%; max-width: 300px; height: 52px; margin-top: 20px;
  border-radius: 99px; background: var(--coral); color: var(--white);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 17px; font-weight: 600;
  text-decoration: none;
  transition: background 0.18s, transform 0.15s;
}
.cta-btn-link:hover { background: var(--coral-dk); transform: translateY(-2px); }

.form-note { text-align: center; font-size: 12px; font-weight: 400; color: var(--ink-lt); margin-top: 12px; }

.cta-trust-list {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
  margin-top: 16px;
  padding: 0;
  flex-wrap: wrap;
}

.cta-trust-list li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--ink-mid);
  font-weight: 400;
}

.cta-trust-list svg { flex-shrink: 0; }

/* SUCCESS */
.success-state { display: none; text-align: center; padding: 32px 0 12px; }
.success-ring {
  width: 72px; height: 72px; border-radius: 50%;
  border: 2px solid var(--sage);
  background: var(--sage-lt);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.success-state h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 24px; font-weight: 700;
  letter-spacing: -0.3px; margin-bottom: 10px;
}
.success-state p { font-size: 15px; color: var(--ink-mid); line-height: 1.65; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 768px) {
  .hero { flex-direction: column; min-height: auto; }
  .hero-left { padding: 20px 24px 48px; }
  .hero-right { flex: 0 0 auto; height: 320px; }
}

@media (max-width: 640px) {
  section { padding: 56px 24px; }
  .signup-card { padding: 24px 20px; border-radius: 20px; }
  .cta-section { padding-bottom: 28px; }
  .hero-trust-list { flex-direction: column; gap: 4px; }
  .cta-sub { margin-bottom: 16px; }
  .cta-trust-list { flex-direction: column; align-items: flex-start; gap: 6px; }
  .form-note { text-align: left; }
  .cta-price-desc { display: block; }
  .field-row { grid-template-columns: 1fr; }
  .why-layout { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card { display: flex; flex-wrap: wrap; align-items: center; }
  .why-icon { margin-bottom: 0; margin-right: 12px; flex-shrink: 0; }
  .why-card h3 { flex: 1; margin-bottom: 0; }
  .why-card p { width: 100%; margin-top: 10px; }
  #why-burblebox { padding: 0 24px; }
  .testimonial-body { display: block; }
  .testimonial-headshot { float: left; width: 60px; height: 60px; margin: 2px 14px 10px 0; }
  .testimonial-content::after { content: ''; display: block; clear: both; }
  .why-left { padding-bottom: 40px; }
  .why-photo { height: 320px; margin: 0 -24px; width: calc(100% + 48px); }
  .hiw-full-bleed { width: calc(100% + 48px); margin: 32px -24px -24px; height: 320px; }
}

.pixel-noscript-img { display: none; }
.signup-badge { margin-bottom: 20px; }
.source-field { margin-top: 4px; }
.source-other { display: none; margin-top: 6px; }
