*, *::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); }
.badge[hidden] { display: none; }

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-sub-sm { font-size: 15px; }

.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[hidden] { display: none; }
.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-direction: column;
  gap: 6px;
  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; }

/* Skip layout/paint for off-screen sections until they approach the viewport */
#expert-perspective, #how-it-works, #why-burblebox, #recommended-by, .cta-section {
  content-visibility: auto;
  contain-intrinsic-size: auto 500px;
}

.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); }

/* RECOMMENDED BY */
#recommended-by { padding-top: 56px; padding-bottom: 56px; }
.recommend-grid {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 16px; margin-top: 32px;
}
.recommend-card {
  position: relative;
  flex: 1 1 320px; max-width: 400px;
  padding: 28px; border-radius: 22px;
  background: var(--white); border: 1px solid var(--sand);
  transition: transform 0.22s cubic-bezier(.34,1.56,.64,1), box-shadow 0.22s;
}
.recommend-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.07); border-color: var(--sage); }
.recommend-card-overlay { position: absolute; inset: 0; z-index: 1; border-radius: inherit; }
.recommend-card:hover .recommend-name { color: var(--coral); }
.recommend-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
}
.recommend-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0; display: block;
}
.recommend-name-wrap { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.recommend-name { font-size: 15px; font-weight: 600; color: var(--ink); transition: color 0.2s; }
.recommend-quote {
  font-size: 15px; color: var(--ink-mid);
  line-height: 1.7; font-style: italic;
}
.recommend-links { display: flex; gap: 10px; position: relative; z-index: 2; }
.recommend-icon-link {
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink-lt); transition: color 0.2s;
}
.recommend-icon-link:hover { color: var(--coral); }
.recommend-icon-link svg { width: 15px; height: 15px; }

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

@media (max-width: 640px) {
  .recommend-grid {
    flex-wrap: nowrap; justify-content: flex-start;
    overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    margin: 32px -24px 0; padding: 0 24px 4px 24px;
    scrollbar-width: none;
  }
  .recommend-grid::-webkit-scrollbar { display: none; }
  .recommend-card { flex: 0 0 85%; max-width: 85%; scroll-snap-align: center; }
  .recommend-dots:not([hidden]) { display: flex; }
}

/* ── OT REEL / EXPERT PERSPECTIVE ──────────────────────────────────────────── */
#expert-perspective { padding: 0; background: var(--cream); border-bottom: 1px solid var(--sand); }
.ot-reel { padding: 40px 40px 52px; background: var(--cream); }
.ot-reel-wrap { max-width: 1040px; margin: 0 auto; }
.ot-reel-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  color: var(--text-light); text-transform: uppercase; margin-bottom: 10px;
}
.ot-reel-body { display: block; }
.ot-reel-top { display: flex; gap: 48px; align-items: flex-start; }

.ot-reel-video-wrap {
  position: relative; flex-shrink: 0; width: 270px;
  border-radius: 4px; overflow: hidden; line-height: 0;
}
.ot-reel-video {
  width: 100%; aspect-ratio: 9 / 16;
  object-fit: cover; display: block;
}
.ot-reel-controls {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; align-items: center; gap: 6px;
  padding: 20px 10px 10px;
  background: linear-gradient(transparent, rgba(0,0,0,0.55));
}
.ot-reel-ctrl-btn {
  flex-shrink: 0; background: none; border: none; cursor: pointer;
  padding: 2px; display: flex; align-items: center; justify-content: center;
  opacity: 0.88; line-height: 1;
}
.ot-reel-ctrl-btn:hover { opacity: 1; }
.ot-reel-scrub {
  flex: 1; -webkit-appearance: none; appearance: none;
  height: 3px; border-radius: 2px; outline: none; cursor: pointer;
  background: rgba(255,255,255,0.35);
}
.ot-reel-scrub::-webkit-slider-thumb {
  -webkit-appearance: none; width: 12px; height: 12px;
  background: white; border-radius: 50%; cursor: pointer;
}
.ot-reel-scrub::-moz-range-thumb {
  width: 12px; height: 12px; background: white;
  border-radius: 50%; cursor: pointer; border: none;
}

.ot-reel-content { flex: 1; padding-top: 0; }
.ot-reel-mobile-eyebrow { display: none; }
.ot-reel-quote {
  font-family: 'Bricolage Grotesque', sans-serif; font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700; line-height: 1.3; color: var(--text-dark); margin-bottom: 14px; letter-spacing: -0.3px;
}
.ot-reel-attr { font-size: 15px; color: var(--text-mid); margin-bottom: 16px; display: flex; gap: 6px; align-items: flex-start; }
.ot-reel-attr-dash { flex-shrink: 0; }
.ot-reel-attr a { color: var(--coral); text-decoration: none; }
.ot-reel-mobile-under { display: none; }
.ot-reel-cta {
  display: inline-flex; align-items: center; gap: 6px; font-size: 15px; font-weight: 600;
  color: var(--coral); text-decoration: none;
}
.ot-reel-cta:hover { text-decoration: underline; }

.ot-reel-secondary {
  flex: 1; display: flex; flex-direction: column; gap: 14px;
  border-left: 1px solid rgba(0,0,0,0.1); padding-left: 36px;
}
.ot-reel-secondary-header {
  display: flex; align-items: center; gap: 12px;
}
.ot-reel-secondary-headshot {
  width: 52px; height: 52px; border-radius: 50%;
  object-fit: cover; object-position: center top; flex-shrink: 0;
  border: 1.5px solid var(--sand);
}
.ot-reel-secondary-quote {
  font-size: 16px; color: var(--ink-mid); line-height: 1.65;
  margin: 0; font-style: italic;
}
.ot-reel-secondary-attr {
  font-size: 13px; color: var(--text-mid); font-weight: 500; line-height: 1.4;
}

@media (max-width: 700px) {
  .ot-reel { padding: 24px 20px 28px; }
  .ot-reel-wrap { background: none; border-radius: 0; padding: 0; }
  .ot-reel-eyebrow { display: block; margin-bottom: 0; }
  .ot-reel-video-wrap {
    width: 100%; aspect-ratio: 184 / 260;
    grid-column: 1; grid-row: 1;
  }
  .ot-reel-video { aspect-ratio: unset; height: 100%; }
  .ot-reel-body { display: block; }
  .ot-reel-top {
    display: grid;
    grid-template-columns: clamp(145px, 54%, 220px) minmax(0, 1fr);
    column-gap: clamp(12px, 3.5vw, 20px);
    align-items: flex-start;
  }
  .ot-reel-mobile-under {
    display: block; width: 100%; margin-top: 10px; text-align: left;
  }
  .ot-reel-content { grid-column: 2; grid-row: 1; padding-top: 0; padding-left: 4px; }
  .ot-reel-mobile-eyebrow {
    display: none; font-size: 10px; font-weight: 600; letter-spacing: 0.1em;
    color: var(--text-light); text-transform: uppercase; margin-bottom: 8px;
  }
  .ot-reel-quote { font-size: 17px; margin-bottom: 8px; }
  .ot-reel-content .ot-reel-attr,
  .ot-reel-content .ot-reel-cta,
  .ot-reel-secondary { display: none; }
  .ot-reel-mobile-under .ot-reel-attr { display: block; font-size: 13px; line-height: 1.45; margin-bottom: 4px; }
  .ot-reel-mobile-under .ot-reel-attr-dash { display: none; }
  .ot-reel-mobile-under .ot-reel-cta { font-size: 13px; line-height: 1.25; }
  .ot-reel-mobile-secondary { display: flex; }
}

.ot-reel-mobile-secondary {
  display: none;
  margin-top: 20px; padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.08);
  gap: 12px; align-items: flex-start;
}

/* 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-period { font-size: 18px; font-weight: 500; letter-spacing: 0; }
.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: 10px;
  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; }

/* Subscription pricing treatment */
.cta-sub-headline {
  font-size: 16px; font-weight: 700;
  color: var(--sage-dk);
  line-height: 1.4;
  margin: 10px 0 8px;
  text-align: center;
  max-width: 420px;
}
.cta-card--subscription .cta-price-desc { max-width: 600px; margin-bottom: 12px; }
.cta-card--subscription .cta-trust-list { flex-wrap: wrap; }
.cta-card--subscription .cta-trust-list li { align-items: center; }
.cta-wear-note { font-size: 12px; color: var(--ink-lt); font-weight: 400; text-align: center; margin-top: 14px; }

/* 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; }

/* ── PROMO MODAL: centered, exit-intent triggered ────────────────────────────
   Centered on both mobile and desktop, with a backdrop and a scroll lock
   while open. Dismissing (X or backdrop click) collapses it to a slim pill
   anchored bottom-right rather than hiding it outright. */
.exit-popup {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.exit-popup[hidden] { display: none; }

.exit-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30, 24, 16, 0.52);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.exit-popup-card {
  position: relative;
  background: #fff;
  border-radius: 22px;
  padding: 40px 36px 36px;
  max-width: 440px;
  width: 100%;
  text-align: left;
  box-shadow: 0 24px 64px rgba(0,0,0,0.18);
  animation: exitPopupIn 0.25s cubic-bezier(.22,1,.36,1) both;
}

@keyframes exitPopupIn {
  from { opacity: 0; transform: translateY(-10px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0)     scale(1);    }
}

.exit-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--cream);
  color: var(--ink-mid);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
}
.exit-popup-close:hover { background: var(--sand); color: var(--ink); }

.exit-popup-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.1;
  padding-right: 40px;
}

.exit-popup-sub {
  font-size: 15px;
  color: var(--ink-mid);
  margin-bottom: 20px;
  line-height: 1.55;
}

.exit-popup-email-input {
  display: block;
  width: 100%;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--sand);
  border-radius: 12px;
  padding: 13px 16px;
  margin-bottom: 10px;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.15s;
}
.exit-popup-email-input::placeholder { color: var(--ink-lt); }
.exit-popup-email-input:focus { border-color: var(--ink-lt); }

.exit-popup-email-error {
  font-size: 12px;
  color: #C05050;
  margin-bottom: 8px;
  margin-top: -4px;
}
.exit-popup-email-error[hidden] { display: none; }

.exit-popup-submit-btn {
  display: block;
  width: 100%;
  background: var(--coral);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 15px 24px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}
.exit-popup-submit-btn:hover { background: var(--coral-dk); }

.exit-popup-code-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--coral-lt);
  border-radius: 14px;
  padding: 16px 16px 16px 20px;
  margin-bottom: 14px;
}

.exit-popup-code {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--coral);
}

.exit-popup-copy {
  background: #fff;
  color: var(--ink);
  border: 1.5px solid var(--sand);
  border-radius: 10px;
  padding: 9px 18px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.15s;
}
.exit-popup-copy:hover { border-color: var(--ink-lt); }

.exit-popup-shop-btn {
  display: block;
  width: 100%;
  background: var(--coral);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 15px 24px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  box-sizing: border-box;
  transition: background 0.15s;
}
.exit-popup-shop-btn:hover { background: var(--coral-dk); }

.promo-pill {
  position: fixed;
  z-index: 9000;
  bottom: 20px;
  right: 20px;
  background: var(--coral);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 12px 20px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: background 0.15s;
  animation: pillIn 0.25s cubic-bezier(.22,1,.36,1) both;
}
.promo-pill[hidden] { display: none; }
.promo-pill:hover { background: var(--coral-dk); }

@keyframes pillIn {
  from { opacity: 0; transform: translateY(8px) scale(0.92); }
  to   { opacity: 1; transform: none; }
}

@media (max-width: 700px) {
  .promo-pill { right: 14px; bottom: 16px; }
}

@media (max-width: 480px) {
  .exit-popup-card { padding: 32px 24px 28px; border-radius: 20px; }
  .exit-popup-title { font-size: 26px; padding-right: 36px; }
}

/* ── INLINE PROMO SECTION (homepage: under the pricing card) ────────────────── */
.promo-inline-section { background: var(--cream); padding: 8px 48px 56px; }
.promo-inline-card {
  max-width: 520px;
  margin: 0 auto;
  background: #fff;
  border-radius: 28px;
  padding: 36px 32px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.promo-inline-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.15;
}
.promo-inline-sub { font-size: 15px; color: var(--ink-mid); margin-bottom: 20px; line-height: 1.55; }
.promo-inline-form { display: flex; gap: 8px; max-width: 380px; margin: 0 auto; }
.promo-inline-email-input {
  flex: 1;
  min-width: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--sand);
  border-radius: 12px;
  padding: 13px 16px;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.15s;
}
.promo-inline-email-input::placeholder { color: var(--ink-lt); }
.promo-inline-email-input:focus { border-color: var(--ink-lt); }
.promo-inline-submit-btn {
  background: var(--coral);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 13px 22px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.15s;
}
.promo-inline-submit-btn:hover { background: var(--coral-dk); }
.promo-inline-error { font-size: 12px; color: #C05050; margin-top: 8px; text-align: left; }
.promo-inline-error[hidden] { display: none; }
.promo-inline-code-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--coral-lt);
  border-radius: 14px;
  padding: 16px 16px 16px 20px;
  max-width: 380px;
  margin: 0 auto 14px;
}
.promo-inline-code { font-family: 'Bricolage Grotesque', sans-serif; font-size: 26px; font-weight: 700; letter-spacing: 0.06em; color: var(--coral); }
.promo-inline-copy-btn {
  background: #fff;
  color: var(--ink);
  border: 1.5px solid var(--sand);
  border-radius: 10px;
  padding: 9px 18px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.15s;
}
.promo-inline-copy-btn:hover { border-color: var(--ink-lt); }
.promo-inline-shop-btn {
  display: inline-block;
  background: var(--coral);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 13px 28px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s;
}
.promo-inline-shop-btn:hover { background: var(--coral-dk); }

@media (max-width: 640px) {
  .promo-inline-section { padding: 8px 24px 56px; }
  .promo-inline-card { padding: 24px 20px; border-radius: 20px; }
  .promo-inline-form { flex-direction: column; }
  .promo-inline-code-wrap { max-width: none; }
}
