:root {
  --outer: #EDECE6;
  --cream: #FBF7EC;
  --cream-2: #FFFDF7;
  --peri: #8E9FE0;
  --peri-soft: #D7DEF6;
  --peri-deep: #6E86D6;
  --navy: #1E2A5E;
  --navy-soft: #46528A;
  --butter: #F4C64B;
  --white: #FFFFFF;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Nunito Sans", sans-serif;
  background: var(--outer);
  color: var(--navy);
  line-height: 1.6;
  padding: 0;
}
.panel {
  background: var(--cream);
  overflow: hidden;
}
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 40px; }

/* Nav */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 40px;
  max-width: 1300px;
  margin: 0 auto;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { display: block; width: 142px; height: auto; }
.nav-links { display: flex; gap: 40px; }
.nav-links a {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--navy);
  text-decoration: none;
  transition: color .2s ease;
}
.nav-links a:hover { color: var(--peri-deep); }
.btn-nav {
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--cream-2);
  background: var(--navy);
  padding: 12px 26px;
  border-radius: 40px;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}
.btn-nav:hover { background: #16204a; transform: translateY(-1px); }
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 3px solid var(--peri-deep);
  outline-offset: 3px;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 30px;
  align-items: start;
  padding: 12px 40px 0;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.eyebrow {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.85;
}
.headline {
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: clamp(2.8rem, 4.7vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 14px 0 22px;
}
.headline .l2 { color: var(--peri); display: block; }
.subhead {
  font-size: 1.12rem;
  color: var(--navy-soft);
  max-width: 40ch;
  margin-bottom: 28px;
}

.capture {
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: 46px;
  padding: 8px 8px 8px 20px;
  max-width: 490px;
  box-shadow: 0 10px 26px rgba(30, 42, 94, 0.08);
}
.capture .mail {
  flex: none;
  width: 22px;
  height: 22px;
  color: var(--navy-soft);
  opacity: .7;
  margin-right: 10px;
}
.capture input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: "Nunito Sans", sans-serif;
  font-size: 1rem;
  color: var(--navy);
  min-width: 0;
}
.capture input::placeholder { color: #97A0BE; }
.capture button {
  flex: none;
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--cream-2);
  background: var(--navy);
  border: none;
  border-radius: 40px;
  padding: 13px 26px;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.capture button:hover { background: #16204a; transform: translateY(-1px); }
.microcopy { font-size: 0.9rem; color: var(--navy-soft); margin: 14px 4px 0; }
.success {
  display: none;
  background: var(--white);
  border-radius: 20px;
  padding: 18px 22px;
  max-width: 490px;
  font-weight: 700;
  color: var(--navy);
  box-shadow: 0 10px 26px rgba(30,42,94,0.08);
}
.success.show { display: block; animation: pop .35s ease; }
.mobile-signup { display: none; }
@keyframes pop {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.proof { display: flex; align-items: center; gap: 14px; margin-top: 34px; }
.avatars { display: flex; }
.avatars span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid var(--cream);
  margin-left: -12px;
  background-size: cover;
}
.avatars span:first-child { margin-left: 0; }
.stars { color: var(--butter); font-size: 1rem; letter-spacing: 1px; }
.proof p { font-size: 0.9rem; color: var(--navy-soft); line-height: 1.35; }
.proof b { color: var(--navy); }

/* Hero visual */
.stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 520px;
}
.visual-lock {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: inherit;
}
.pint {
  width: 100%;
  max-width: 545px;
  transform: rotate(5deg);
  filter: drop-shadow(0 30px 34px rgba(30, 42, 94, 0.18));
  animation: bob 5s ease-in-out infinite;
  position: relative;
  z-index: 2;
}
.pint-shadow {
  position: absolute;
  z-index: 1;
  bottom: 7%;
  left: 49%;
  width: 84%;
  height: 48px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(30, 42, 94, 0.30), rgba(30, 42, 94, 0) 74%);
  filter: blur(10px);
  pointer-events: none;
}
@keyframes bob {
  0%,100% { transform: rotate(5deg) translateY(0); }
  50% { transform: rotate(5deg) translateY(-14px); }
}
@media (prefers-reduced-motion: reduce) { .pint { animation: none; } }

.chip {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border-radius: 40px;
  padding: 10px 16px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy);
  box-shadow: 0 12px 26px rgba(30, 42, 94, 0.12);
  white-space: nowrap;
}
.chip .chip-ic {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--peri-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}
.chip .chip-ic svg { width: 15px; height: 15px; color: var(--peri-deep); }
.chip-hp { top: 10%; right: -2%; transform: rotate(-4deg); }
.chip-ls { top: 40%; right: -6%; transform: rotate(3deg); }
.chip-ac { bottom: 12%; left: -4%; transform: rotate(-3deg); }
.chip-cal {
  position: absolute;
  z-index: 3;
  bottom: 4%;
  right: 2%;
  background: var(--white);
  border-radius: 22px;
  padding: 14px 20px;
  text-align: center;
  box-shadow: 0 12px 26px rgba(30, 42, 94, 0.12);
  transform: rotate(4deg);
}
.chip-cal b {
  display: block;
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--navy);
  line-height: 1;
}
.chip-cal span {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--navy-soft);
  text-transform: lowercase;
}

.doodles { position: absolute; inset: 0; pointer-events: none; }
.spark { position: absolute; color: var(--peri); opacity: .85; }
.spark.b { color: var(--butter); opacity: .95; }
.spark.n { color: var(--navy); opacity: .8; }
.s1 { top: 12%; left: 46%; width: 26px; }
.s2 { top: 26%; left: 39%; width: 13px; }
.s3 { bottom: 30%; left: 41%; width: 18px; }
.s4 { top: 48%; right: 17%; width: 15px; }
.s5 { bottom: 26%; right: 9%; width: 22px; }
.s6 { top: 6%; left: 60%; width: 12px; }
.s7 { top: 60%; left: 30%; width: 16px; }
.s8 { bottom: 12%; left: 52%; width: 13px; }
.s9 { top: 20%; right: 6%; width: 12px; }
.s10 { bottom: 40%; right: 26%; width: 10px; }
.arrow {
  position: absolute;
  color: var(--navy);
  opacity: .55;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.arrow.p { color: var(--peri-deep); opacity: .7; }
.a1 { top: 16%; right: 8%; width: 74px; }
.a2 { bottom: 20%; left: 8%; width: 66px; }
.a3 { top: 40%; left: 30%; width: 40px; }
.swoosh {
  position: absolute;
  color: var(--peri-deep);
  opacity: .5;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
}
.w1 { top: 24%; left: 34%; width: 54px; }
.w2 { bottom: 30%; right: 18%; width: 50px; }

/* Wave + feature band */
.lower {
  position: relative;
  z-index: 0;
  background: var(--peri);
  padding: 120px 40px 28px;
  margin-top: -48px;
  overflow: hidden;
}
.wave {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 150px;
  z-index: 0;
  pointer-events: none;
}
.features {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
  background: var(--cream-2);
  border-radius: 28px;
  padding: 34px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  box-shadow: 0 20px 50px rgba(30, 42, 94, 0.14);
}
.feat { display: flex; gap: 14px; align-items: flex-start; }
.feat .ic {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--peri-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feat .ic svg { width: 24px; height: 24px; color: var(--navy); }
.feat h3 {
  font-family: "Baloo 2", "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--navy);
  margin-bottom: 3px;
}
.feat p { font-size: 0.9rem; color: var(--navy-soft); line-height: 1.4; }

/* Responsive */
@media (max-width: 940px) {
  .nav-links { display: none; }
  .hero {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 20px 30px 20px;
    text-align: left;
  }
  .stage { min-height: 460px; order: -1; }
  .lower { margin-top: -20px; padding-top: 120px; }
  .features {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 0;
  }
}

@media (max-width: 560px) {
  body { padding: 10px; }
  .panel { border-radius: 24px; }
  .wrap, .nav, .hero, .lower { padding-left: 20px; padding-right: 20px; }
  .brand img { width: 112px; }
  .capture { flex-wrap: nowrap; }
  .capture button { padding: 12px 18px; font-size: 0.92rem; }
  .chip-hp { top: 4%; right: 0; }
  .chip-ls { top: 44%; right: 0; }
  .chip-ac { bottom: 18%; left: 0; }
  .features { grid-template-columns: 1fr; }
  .stage { min-height: 380px; }
  .lower { margin-top: -8px; padding-top: 102px; padding-bottom: 20px; }
  .wave { height: 122px; }
}

/* Mobile navigation */
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 30px;
  height: 4px;
  margin: 5px auto;
  border-radius: 99px;
  background: var(--navy);
}

/* Cleaner decorative line art */
.accent-line {
  position: absolute;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: var(--peri-deep);
  opacity: .52;
}
.line-left { left: 31%; bottom: 21%; width: 44px; }
.line-right { right: 1%; top: 25%; width: 58px; }

/* Final responsive layout matching the mobile reference */
@media (max-width: 560px) {
  body { padding: 12px; }
  .panel { border-radius: 24px; box-shadow: 0 10px 28px rgba(30,42,94,.12); }
  .nav {
    padding: 24px 24px 12px;
  }
  .brand img { width: 130px; }
  .btn-nav, .nav-links { display: none; }
  .menu-toggle { display: block; }

  .hero {
    display: block;
    padding: 24px 24px 0;
    min-height: 840px;
    overflow: hidden;
  }
  .hero-left { position: relative; z-index: 4; }
  .eyebrow {
    font-size: .76rem;
    letter-spacing: .18em;
    margin-bottom: 18px;
  }
  .headline {
    font-size: clamp(3.2rem, 15.5vw, 4.25rem);
    line-height: .98;
    max-width: 8.8ch;
    margin: 0 0 22px;
  }
  .headline .l2 { margin-top: 4px; }
  .subhead {
    max-width: 15.5ch;
    font-size: 1.08rem;
    line-height: 1.55;
    margin-bottom: 26px;
  }

  .capture {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 260px;
    padding: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
  }
  .capture .mail {
    position: absolute;
    margin: 20px 0 0 18px;
    z-index: 1;
  }
  .capture input {
    width: 100%;
    height: 62px;
    padding: 0 18px 0 54px;
    border-radius: 34px;
    background: var(--white);
    box-shadow: 0 10px 24px rgba(30,42,94,.09);
    font-size: .96rem;
  }
  .capture button {
    width: 100%;
    height: 58px;
    padding: 0 20px;
    font-size: 1.05rem;
  }
  .microcopy {
    max-width: 15ch;
    margin: 18px 0 0;
    line-height: 1.45;
  }
  .proof { display: none; }

  .stage {
    position: absolute;
    left: 0;
    right: 0;
    top: 120px;
    min-height: 720px;
    pointer-events: none;
  }
  .pint {
    position: absolute;
    width: 62%;
    max-width: none;
    right: 2%;
    top: 315px;
    transform: rotate(12deg);
    animation: none;
    filter: drop-shadow(0 26px 28px rgba(30,42,94,.2));
  }
  .pint-shadow {
    width: 58%;
    left: 70%;
    bottom: 5%;
  }
  .chip {
    font-size: .78rem;
    padding: 9px 13px;
  }
  .chip .chip-ic { width: 24px; height: 24px; }
  .chip-hp { top: 64px; right: 0; }
  .chip-ls { top: 165px; right: 1%; }
  .chip-ac { left: 15%; bottom: 18px; }
  .chip-cal { right: 0; bottom: 35px; padding: 13px 17px; }
  .chip-cal b { font-size: 1.55rem; }

  .s1 { top: 20px; left: 72%; width: 24px; }
  .s4 { top: 250px; right: 28%; width: 13px; }
  .s5 { bottom: 120px; right: 4%; width: 18px; }
  .s7 { top: 310px; left: 46%; width: 13px; }
  .s8 { bottom: 38px; left: 40%; width: 12px; }
  .s9 { top: 120px; right: 4%; width: 10px; }
  .line-left { left: 42%; bottom: 190px; width: 38px; }
  .line-right { right: 0; top: 245px; width: 46px; }

  .lower {
    margin-top: -12px;
    padding: 100px 14px 22px;
  }
  .wave { height: 122px; }
  .features {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
  }
  .feat {
    display: grid;
    grid-template-columns: 76px minmax(150px, .8fr) 1fr;
    align-items: center;
    gap: 18px;
    min-height: 112px;
    padding: 18px 22px;
    background: var(--cream-2);
    border-radius: 18px;
    box-shadow: 0 8px 18px rgba(30,42,94,.1);
  }
  .feat .ic {
    width: 58px;
    height: 58px;
  }
  .feat .ic svg { width: 30px; height: 30px; }
  .feat > div:last-child { display: contents; }
  .feat h3 {
    margin: 0;
    padding-right: 14px;
    font-size: 1.08rem;
    border-right: 1px solid rgba(70,82,138,.28);
  }
  .feat p {
    font-size: .9rem;
    line-height: 1.45;
  }
}

@media (max-width: 390px) {
  .hero { min-height: 800px; }
  .headline { font-size: 3rem; }
  .stage { top: 112px; }
  .pint { width: 64%; top: 320px; }
  .feat { grid-template-columns: 62px 1fr; gap: 12px; }
  .feat > div:last-child { display: block; }
  .feat h3 { border-right: 0; padding-right: 0; margin-bottom: 4px; }
}

/* ===== Final screenshot-matched layout ===== */
.headline .l2 {
  position: relative;
  width: fit-content;
}
.headline .l2::after {
  content: "";
  position: absolute;
  left: 58%;
  bottom: -9px;
  width: 31%;
  height: 5px;
  border-radius: 999px;
  background: var(--butter);
  transform: rotate(-2deg);
}

/* Desktop: keep the original four-column feature bar and floating badges */
@media (min-width: 941px) {
  body { padding: 30px; }
  .panel {
    max-width: 1440px;
    margin: 0 auto;
    border-radius: 26px;
    box-shadow: 0 12px 34px rgba(30,42,94,.12);
  }
  .nav { padding: 28px 52px 22px; }
  .brand img { width: 142px; }
  .hero {
    grid-template-columns: 1.04fr 1fr;
    padding: 62px 52px 0;
    gap: 18px;
  }
  .headline {
    font-size: clamp(3.55rem, 5.3vw, 5.15rem);
    max-width: 760px;
    margin-bottom: 28px;
  }
  .subhead { max-width: 39ch; }
  .stage { min-height: 570px; }
  .pint { max-width: 590px; }

  .chip-hp { top: 5%; right: -1%; transform: rotate(6deg); }
  .chip-ls { top: 41%; right: -3%; transform: rotate(3deg); }
  .chip-ac { bottom: 7%; left: -2%; transform: rotate(-4deg); }
  .chip-cal { bottom: 9%; right: 3%; transform: rotate(4deg); }

  /* Deliberate, sparse doodle placement */
  .s1 { top: 8%; left: 43%; width: 24px; }
  .s4 { top: 49%; right: 21%; width: 13px; }
  .s5 { bottom: 24%; right: 7%; width: 19px; }
  .s7 { top: 56%; left: 30%; width: 13px; }
  .s8 { bottom: 13%; left: 48%; width: 12px; }
  .s9 { top: 21%; right: 5%; width: 10px; }
  .line-left { left: 31%; bottom: 24%; width: 44px; }
  .line-right { right: 0; top: 20%; width: 54px; }

  .lower {
    margin-top: -45px;
    padding: 126px 44px 28px;
  }
  .features {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 30px 32px;
  }
  .feat {
    padding: 0 28px;
    min-width: 0;
  }
  .feat + .feat { border-left: 1px solid rgba(70,82,138,.18); }
}

/* Mobile: match the supplied stacked layout exactly */
@media (max-width: 560px) {
  :root {
    --cream: #FBF7EC;
    --cream-2: #FFFDF7;
    --peri: #7896E6;
    --peri-soft: #DDE5FA;
    --peri-deep: #6687DD;
  }
  body { padding: 10px; }
  .panel { border-radius: 23px; }
  .nav { padding: 24px 24px 10px; }
  .brand img { width: 130px; }

  .hero {
    min-height: 860px;
    padding: 28px 24px 0;
  }
  .eyebrow { margin-bottom: 20px; }
  .headline {
    font-size: clamp(3.2rem, 15vw, 4.1rem);
    max-width: 8.6ch;
    margin-bottom: 24px;
  }
  .headline .l2::after {
    left: 59%;
    bottom: -7px;
    width: 33%;
    height: 4px;
  }
  .subhead {
    max-width: 15.5ch;
    font-size: 1.06rem;
    margin-bottom: 27px;
  }
  .capture { max-width: 258px; }
  .microcopy { max-width: 14ch; }

  .stage { top: 126px; min-height: 730px; }
  .pint { width: 61%; right: 1%; top: 322px; }
  .chip-hp { top: 70px; right: 0; }
  .chip-ls { top: 176px; right: 0; }
  .chip-ac { left: 14%; bottom: 23px; }
  .chip-cal { right: 0; bottom: 38px; }

  .lower {
    margin-top: -8px;
    padding: 104px 14px 22px;
  }
  .features { gap: 10px; }
  .feat {
    grid-template-columns: 74px minmax(130px,.9fr) 1fr;
    min-height: 112px;
    padding: 18px 22px;
    border-radius: 17px;
  }
}

/* Clean mobile composition: copy and signup flow first, then a contained
   product scene. This prevents the desktop floating artwork from crossing
   through the text and form on narrow screens. */
@media (max-width: 560px) {
  .nav { padding-top: 18px; padding-bottom: 10px; }
  .brand img { width: 98px; }
  .hero {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 0;
    padding: 24px 24px 0;
    overflow: visible;
  }
  .hero-left { position: relative; z-index: 2; }
  .eyebrow { margin: 0 0 14px; }
  .headline {
    font-size: clamp(3rem, 14vw, 3.8rem);
    max-width: 9.4ch;
    margin: 0 0 18px;
  }
  .subhead {
    max-width: 29ch;
    font-size: 1rem;
    margin-bottom: 22px;
  }
  .capture {
    position: relative;
    max-width: none;
    width: 100%;
  }
  .microcopy { max-width: none; }

  .stage {
    position: relative;
    inset: auto;
    order: 0;
    width: 100%;
    min-height: 430px;
    margin: 0;
    pointer-events: none;
  }
  .pint {
    position: absolute;
    top: 20px;
    right: auto;
    left: 50%;
    width: 76%;
    max-width: 350px;
    animation: pint-mobile-float 5s ease-in-out infinite;
    filter: none;
  }
  @keyframes pint-mobile-float {
    0%, 100% { transform: translateX(-50%) rotate(1.5deg) translateY(0); }
    50% { transform: translateX(-50%) rotate(1.5deg) translateY(-8px); }
  }
  .pint-shadow {
    z-index: 1;
    left: 50%;
    bottom: 22px;
    width: 62%;
    height: 28px;
    opacity: .64;
    filter: blur(9px);
    transform: translateX(-50%) scaleY(.58);
  }
  .chip {
    padding: 7px 10px;
    gap: 6px;
    font-size: .7rem;
  }
  .chip .chip-ic { width: 21px; height: 21px; }
  .chip .chip-ic svg { width: 13px; height: 13px; }
  .chip-hp { top: 6%; right: -1%; }
  .chip-ls { top: 40%; right: -1%; }
  .chip-ac { bottom: 7%; left: 0; }
  .chip-cal { right: 1%; bottom: 7%; padding: 10px 14px; }
  .chip-cal b { font-size: 1.35rem; }

  .doodles .spark,
  .doodles .swoosh,
  .doodles .burst,
  .doodles .arrow { display: none; }
  .doodles .s1,
  .doodles .s3,
  .doodles .s4,
  .doodles .s5 { display: block; }
  .s1 { top: 9%; left: 5%; width: 18px; }
  .s3 { top: 54%; left: 7%; width: 16px; }
  .s4 { top: 57%; right: 18%; width: 16px; }
  .s5 { bottom: 21%; right: 5%; width: 20px; }

  .lower {
    margin-top: 0;
    padding: 92px 14px 22px;
  }
  .features { grid-template-columns: 1fr; }
  .feat {
    display: flex;
    align-items: center;
    gap: 15px;
    min-height: 0;
    padding: 17px 18px;
  }
  .feat > div:last-child { display: block; }
  .feat h3 { border-right: 0; padding-right: 0; margin-bottom: 3px; }
}

/* Mobile reference layout: a compact split hero, followed by stacked benefit cards. */
@media (max-width: 940px) {
  body { padding: 24px; }
  .panel {
    max-width: 750px;
    margin: 0 auto;
    border-radius: 28px;
    box-shadow: 0 12px 34px rgba(30,42,94,.12);
  }
  .nav { padding: 30px 40px 22px; }
  .brand img { width: 142px; }
  .btn-nav, .nav-links { display: none; }
  .menu-toggle { display: block; }

  .hero {
    display: grid;
    grid-template-columns: 47% 53%;
    gap: 0;
    min-height: 850px;
    padding: 42px 40px 0;
    overflow: hidden;
  }
  .hero-left { position: relative; z-index: 4; padding-top: 44px; }
  .eyebrow {
    position: absolute;
    top: 0;
    left: 0;
    width: max-content;
    white-space: nowrap;
    font-size: .78rem;
    margin: 0;
  }
  .headline {
    font-size: clamp(3.3rem, 7.2vw, 4.1rem);
    width: 180%;
    max-width: none;
    margin: 0 0 24px;
  }
  .subhead {
    max-width: 22ch;
    font-size: .92rem;
    line-height: 1.55;
    margin-bottom: 28px;
  }
  .capture {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 280px;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }
  .capture .mail {
    position: absolute;
    z-index: 1;
    margin: 20px 0 0 18px;
  }
  .capture input {
    height: 62px;
    padding: 0 18px 0 54px;
    border-radius: 34px;
    background: var(--white);
    box-shadow: 0 10px 24px rgba(30,42,94,.09);
  }
  .capture button { height: 60px; width: 100%; }
  .microcopy { max-width: 17ch; margin: 18px 0 0; }
  .proof { display: none; }

  .stage {
    position: relative;
    inset: auto;
    order: 0;
    min-height: 808px;
    margin: 0;
    pointer-events: none;
  }
  .pint {
    position: absolute;
    top: 300px;
    left: -12%;
    right: auto;
    width: 132%;
    max-width: none;
    filter: none;
    animation: pint-reference-mobile 5s ease-in-out infinite;
  }
  @keyframes pint-reference-mobile {
    0%,100% { transform: rotate(1.5deg) translateY(0); }
    50% { transform: rotate(1.5deg) translateY(-8px); }
  }
  .pint-shadow {
    z-index: 1;
    left: 45%;
    bottom: 44px;
    width: 88%;
    height: 32px;
    opacity: .62;
    filter: blur(10px);
    transform: translateX(-50%) scaleY(.58);
  }
  .chip { font-size: .8rem; padding: 9px 13px; }
  .chip-hp { top: 15%; right: -4%; }
  .chip-ls { top: 30%; right: -4%; }
  .chip-ac { bottom: 7%; left: -17%; }
  .chip-cal { right: -5%; bottom: 8%; }

  .doodles .spark,
  .doodles .swoosh,
  .doodles .burst,
  .doodles .arrow { display: none; }
  .doodles .s1,
  .doodles .s3,
  .doodles .s4,
  .doodles .s5 { display: block; }
  .s1 { top: 7%; left: 4%; width: 20px; }
  .s3 { top: 46%; left: 1%; width: 18px; }
  .s4 { top: 29%; right: 7%; width: 18px; }
  .s5 { bottom: 25%; right: 4%; width: 22px; }

  .lower {
    margin-top: -4px;
    padding: 106px 30px 32px;
  }
  .features {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }
  .feat {
    display: grid;
    grid-template-columns: 78px minmax(150px, .85fr) 1fr;
    align-items: center;
    gap: 18px;
    min-height: 114px;
    padding: 18px 24px;
    background: var(--cream-2);
    border-radius: 20px;
    box-shadow: 0 8px 18px rgba(30,42,94,.1);
  }
  .feat > div:last-child { display: contents; }
  .feat h3 {
    padding-right: 16px;
    margin: 0;
    border-right: 1px solid rgba(70,82,138,.24);
  }
}

@media (max-width: 560px) {
  body { padding: 10px; }
  .panel { border-radius: 23px; }
  .nav { padding: 24px 24px 14px; }
  .brand img { width: 108px; }
  .menu-toggle { width: 40px; height: 40px; }
  .menu-toggle span { width: 28px; height: 3px; }

  .hero {
    grid-template-columns: 53% 47%;
    min-height: 642px;
    padding: 20px 22px 0;
  }
  .eyebrow { font-size: .67rem; letter-spacing: .15em; margin-bottom: 14px; }
  .headline {
    font-size: clamp(2.15rem, 10vw, 2.65rem);
    max-width: 8.4ch;
    margin-bottom: 17px;
  }
  .subhead { max-width: 17ch; font-size: .88rem; margin-bottom: 18px; }
  .capture { max-width: 100%; gap: 7px; }
  .capture input { height: 48px; font-size: .76rem; }
  .capture .mail { width: 17px; height: 17px; margin: 16px 0 0 15px; }
  .capture button { height: 48px; font-size: .88rem; }
  .microcopy { font-size: .78rem; margin-top: 14px; }

  .stage { min-height: 692px; }
  .pint { top: 245px; left: -17%; width: 157%; }
  .pint-shadow { left: 38%; bottom: 30px; width: 96%; height: 24px; }
  .chip { font-size: .63rem; padding: 7px 9px; gap: 5px; }
  .chip .chip-ic { width: 20px; height: 20px; }
  .chip-hp { top: 14%; right: -8%; }
  .chip-ls { top: 30%; right: -8%; }
  .chip-ac { left: -19%; bottom: 6%; }
  .chip-cal { right: -7%; bottom: 7%; padding: 9px 12px; }
  .chip-cal b { font-size: 1.25rem; }

  .s1 { top: 8%; left: 0; width: 16px; }
  .s3 { top: 47%; left: -5%; width: 14px; }
  .s4 { top: 29%; right: 4%; width: 14px; }
  .s5 { bottom: 25%; right: -2%; width: 17px; }

  .lower { padding: 88px 14px 22px; }
  .feat {
    display: flex;
    align-items: center;
    gap: 13px;
    min-height: 0;
    padding: 15px 16px;
  }
  .feat > div:last-child { display: block; }
  .feat .ic { width: 48px; height: 48px; }
  .feat h3 { padding: 0; border: 0; font-size: .96rem; margin-bottom: 2px; }
  .feat p { font-size: .78rem; }
}

/* Wider phone/tablet portrait: use the same compact tub orbit rather than a
   tall desktop stage with badges spread far apart. */
@media (min-width: 561px) and (max-width: 940px) {
  .hero {
    min-height: 700px;
    padding-top: 34px;
  }
  .stage { min-height: 620px; }
  .pint {
    top: 118px;
    left: -8%;
    width: 118%;
  }
  .pint-shadow {
    left: 48%;
    bottom: 70px;
    width: 74%;
    height: 28px;
  }

  .chip-hp { top: calc(7% - 32px); right: 0; transform: rotate(7deg); }
  .chip-ls { top: calc(42% - 32px); right: -1%; transform: rotate(3deg); }
  .chip-ac { bottom: calc(9% + 32px); left: -8%; transform: rotate(-4deg); }
  .chip-cal { right: 2%; bottom: calc(9% + 32px); transform: rotate(4deg); }

  .doodles .spark,
  .doodles .burst,
  .doodles .arrow { display: block; }
  .doodles .swoosh { display: none; }
  .doodles { transform: translateY(-32px); }
  .s1 { top: 11%; left: 2%; width: 18px; }
  .s6 { top: 19%; left: 10%; width: 7px; }
  .burst-left { top: 43%; left: 4%; width: 40px; }
  .s3 { top: 56%; left: 1%; width: 14px; }
  .s7 { top: 63%; left: 9%; width: 12px; }
  .s8 { bottom: 22%; left: 6%; width: 8px; }
  .s4 { top: 34%; right: 16%; width: 14px; }
  .s5 { bottom: 28%; right: 13%; width: 18px; }
  .s9 { top: 25%; right: 4%; width: 7px; }
  .wrap-arrow {
    display: block;
    z-index: 1;
    top: 54%;
    right: 16%;
    width: 44px;
    color: #B8C6ED;
    opacity: .62;
    stroke-width: 3;
    transform: rotate(20deg) scale(1.1);
    transform-origin: center;
  }

  .hero-left .capture,
  .hero-left .microcopy { display: none; }
  .mobile-signup {
    display: block;
    position: absolute;
    z-index: 5;
    right: 4%;
    bottom: 20px;
    width: 42%;
  }
  .mobile-signup .capture {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: none;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
  }
  .mobile-signup .capture .mail {
    position: absolute;
    z-index: 1;
    width: 20px;
    height: 20px;
    margin: 19px 0 0 17px;
  }
  .mobile-signup .capture input {
    width: 100%;
    height: 58px;
    padding: 0 16px 0 50px;
    border-radius: 32px;
    background: var(--white);
    box-shadow: 0 8px 18px rgba(30,42,94,.1);
    font-size: .82rem;
  }
  .mobile-signup .capture button {
    width: 100%;
    height: 56px;
    padding: 0 14px;
    border-radius: 32px;
    font-size: .92rem;
  }
  .mobile-signup .success { font-size: .8rem; padding: 12px; }
  .lower { margin-top: -34px; }
}

/* ===== Requested visual corrections ===== */
/* Make the yellow underline hand-drawn and curved rather than a straight bar. */
.headline .l2::after {
  left: 55%;
  bottom: -13px;
  width: 36%;
  height: 15px;
  background: transparent;
  border-top: 5px solid var(--butter);
  border-radius: 50% 50% 0 0;
  transform: rotate(-3deg) skewX(-8deg);
  transform-origin: center;
}

/* Restore a clear grounded shadow beneath the floating pint. */
.pint {
  filter: drop-shadow(0 26px 22px rgba(30,42,94,.22));
}
.pint-shadow {
  display: block;
  bottom: 4.5%;
  left: 49%;
  width: 78%;
  height: 62px;
  opacity: .95;
  background: radial-gradient(ellipse at center,
    rgba(30,42,94,.34) 0%,
    rgba(30,42,94,.20) 34%,
    rgba(30,42,94,.08) 58%,
    rgba(30,42,94,0) 76%);
  filter: blur(9px);
  transform: translateX(-50%) scaleY(.72);
}

/* Restore the fuller original doodle set, but keep it tidy and away from badges. */
@media (min-width: 941px) {
  .s1 { top: 8%; left: 42%; width: 25px; }
  .s2 { top: 24%; left: 34%; width: 11px; }
  .s3 { bottom: 31%; left: 37%; width: 16px; }
  .s4 { top: 48%; right: 20%; width: 13px; }
  .s5 { bottom: 24%; right: 8%; width: 20px; }
  .s6 { top: 7%; left: 59%; width: 10px; }
  .s7 { top: 59%; left: 29%; width: 14px; }
  .s8 { bottom: 12%; left: 49%; width: 12px; }
  .s9 { top: 20%; right: 5%; width: 10px; }
  .s10 { bottom: 39%; right: 25%; width: 9px; }

  .a1 { top: 16%; right: 6%; width: 66px; opacity: .42; }
  .a2 { bottom: 16%; left: 10%; width: 58px; opacity: .52; }
  .a3 { top: 42%; left: 28%; width: 34px; opacity: .38; }
  .w1 { top: 27%; left: 33%; width: 48px; opacity: .38; }
  .w2 { bottom: 29%; right: 17%; width: 44px; opacity: .38; }

  .line-left,
  .line-right { display: none; }
}

@media (max-width: 560px) {
  .headline .l2::after {
    left: 56%;
    bottom: -11px;
    width: 38%;
    height: 12px;
    border-top-width: 4px;
  }

  .pint-shadow {
    width: 55%;
    height: 46px;
    left: 70%;
    bottom: 3%;
    filter: blur(8px);
  }

  /* Keep mobile doodles sparse so they do not fight the product badges. */
  .s2, .s3, .s6, .s10, .a3, .w1 { display: none; }
  .a1 { top: 126px; right: 0; width: 50px; opacity: .32; }
  .a2 { bottom: 96px; left: 41%; width: 45px; opacity: .4; }
  .w2 { bottom: 180px; right: 2%; width: 38px; opacity: .32; }
  .line-left, .line-right { display: none; }
}

/* ===== Final position refinements ===== */
/* Lower the yellow hand-drawn underline so it sits beneath the word rather than touching it. */
.headline .l2::after {
  bottom: -20px;
}

/* Use one soft, tight ground shadow directly beneath the pint. */
.pint {
  filter: drop-shadow(0 16px 16px rgba(30,42,94,.13));
}
.pint-shadow {
  display: block;
  left: 52%;
  bottom: 5.5%;
  width: 62%;
  height: 34px;
  opacity: .78;
  background: radial-gradient(ellipse at center,
    rgba(30,42,94,.30) 0%,
    rgba(30,42,94,.17) 38%,
    rgba(30,42,94,.06) 62%,
    rgba(30,42,94,0) 78%);
  filter: blur(11px);
  transform: translateX(-50%) rotate(4deg) scaleY(.62);
}

@media (max-width: 560px) {
  .headline .l2::after {
    bottom: -16px;
  }

  .pint {
    filter: drop-shadow(0 13px 13px rgba(30,42,94,.13));
  }

  .pint-shadow {
    left: 69%;
    bottom: 4.5%;
    width: 43%;
    height: 28px;
    opacity: .72;
    filter: blur(9px);
    transform: translateX(-50%) rotate(5deg) scaleY(.58);
  }
}

/* Final reference lock: the supplied desktop reference has no yellow underline. */
.headline .l2::after {
  display: none !important;
}

/* ===== Tub and doodles — matched to the supplied desktop reference ===== */
@media (min-width: 941px) {
  .stage { min-height: 590px; }

  .pint {
    width: 108%;
    max-width: 630px;
    transform: rotate(12deg) translate(8px, 2px);
    filter: drop-shadow(0 14px 11px rgba(30,42,94,.12));
    animation: bob-reference 5s ease-in-out infinite;
  }
  @keyframes bob-reference {
    0%,100% { transform: rotate(12deg) translate(8px, 2px); }
    50% { transform: rotate(12deg) translate(8px, -8px); }
  }
  .pint-shadow {
    left: 55%;
    bottom: 5.8%;
    width: 69%;
    height: 40px;
    opacity: .72;
    background: radial-gradient(ellipse at center,
      rgba(42,37,53,.42) 0%,
      rgba(52,48,59,.24) 33%,
      rgba(52,48,59,.09) 59%,
      transparent 76%);
    filter: blur(12px);
    transform: translateX(-50%) rotate(11deg) scaleY(.58);
  }

  .burst, .arrow-right, .arrow-bottom {
    position: absolute;
    z-index: 1;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .burst { stroke: var(--peri-deep); stroke-width: 3.2; opacity: .85; }
  .burst-left { width: 42px; left: 25%; top: 39%; }
  .arrow-right { width: 76px; right: -1%; top: 22%; stroke: #B8C6ED; stroke-width: 3; opacity: .92; }
  .arrow-bottom { width: 82px; left: 18%; bottom: 10%; stroke: #C6D1F1; stroke-width: 3; opacity: .85; }

  .s1 { top: 8%; left: 42%; width: 28px; color: #7394E5; }
  .s3 { bottom: 33%; left: 18%; width: 12px; color: #7394E5; }
  .s4 { top: 62%; right: 13%; width: 24px; color: #AFC1ED; }
  .s5 { bottom: 25%; right: 3%; width: 28px; }
  .s6 { top: 13%; left: 37%; width: 12px; color: var(--butter); }
  .s7 { top: 48%; left: 22%; width: 15px; color: #7394E5; }
  .s8 { bottom: 17%; left: 25%; width: 14px; }
  .s9 { top: 18%; right: 2%; width: 11px; color: var(--butter); }
  .s10 { display: none; }
  .w1 { top: 18%; left: 39%; width: 44px; opacity: .3; }
  .w2 { bottom: 18%; right: 17%; width: 45px; opacity: .28; }

  /* The new marks replace the old generic arrows. */
  .a1, .a2, .a3 { display: none; }
}

@media (max-width: 560px) {
  .burst-left, .arrow-right, .arrow-bottom { display: none; }
}

/* ===== Compact desktop view =====
   Keeps the same design, but lets the complete landing page sit comfortably
   inside a typical laptop window at the browser's normal 100% zoom. */
@media (min-width: 941px) {
  body { padding: 18px; }
  .nav { padding: 20px 48px 14px; }
  .nav-links { gap: 34px; }
  .btn-nav { padding: 10px 23px; }

  .hero {
    padding: 36px 48px 0;
    gap: 14px;
  }
  .eyebrow { font-size: .76rem; }
  .headline {
    font-size: clamp(3.15rem, 4.55vw, 4.35rem);
    margin: 10px 0 17px;
  }
  .subhead {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  .capture { transform: scale(.94); transform-origin: left top; }
  .microcopy { margin-top: 4px; }
  .proof { margin-top: 20px; transform: scale(.92); transform-origin: left top; }

  .stage { min-height: 480px; }
  .pint { width: 97%; max-width: 555px; }
  .pint-shadow { bottom: 4%; }

  .lower {
    margin-top: -38px;
    padding: 120px 44px 22px;
  }
  .wave { height: 112px; }

  /* Keep every mark in the open area beside the tub, as in the reference. */
  .doodles { z-index: 4; }
  .s1 { top: 7%; left: 19%; width: 29px; color: #7394E5; }
  .s6 { top: 15%; left: 13%; width: 13px; color: var(--butter); }
  .s3 { bottom: 35%; left: 10%; width: 24px; color: var(--butter); }
  .s7 { top: 50%; left: 23%; width: 18px; color: #7394E5; }
  .s8 { bottom: 19%; left: 14%; width: 14px; color: var(--butter); }
  .burst-left { left: 20%; top: 38%; width: 45px; }

  .stage { min-height: 460px; }
}

/* Final compact alignment: smaller product, with the wave and feature bar
   pulled upward together so the composition remains tight. */
@media (min-width: 941px) {
  .pint { width: 91%; max-width: 515px; }
  .pint-shadow { width: 61%; height: 34px; }
  .lower { margin-top: -76px; }
}

/* Small final balance adjustment requested for the desktop hero. */
@media (min-width: 941px) {
  .hero-left { padding-top: 28px; }
  .headline { font-size: clamp(3.35rem, 4.8vw, 4.55rem); }
  .lower { margin-top: -102px; }
}

/* The source product image has an opaque white backdrop. Put the ground shadow
   below its lower edge, in front of that backdrop, so it remains visible. */
@media (min-width: 941px) {
  .pint-shadow {
    display: block;
    z-index: 3;
    left: 55%;
    bottom: -12%;
    width: 64%;
    height: 36px;
    opacity: .72;
    background: radial-gradient(ellipse at center,
      rgba(35, 35, 46, .38) 0%,
      rgba(35, 35, 46, .20) 38%,
      rgba(35, 35, 46, .06) 64%,
      transparent 80%);
    filter: blur(10px);
    transform: translateX(-50%) scaleY(.55);
  }
}

/* Floating tub treatment: preserves the existing artwork while making its
   white studio backdrop disappear into the cream page and grounding it below. */
@media (min-width: 941px) {
  .pint {
    position: relative;
    left: -27px;
    width: 105%;
    max-width: 600px;
    mix-blend-mode: normal;
    filter: none;
    transform: none;
    animation: pint-final-float 5s ease-in-out infinite;
  }
  @keyframes pint-final-float {
    0%, 100% { transform: rotate(1.5deg) translateY(-18px); }
    50% { transform: rotate(1.5deg) translateY(-28px); }
  }
  @keyframes pint-float {
    0%, 100% { transform: rotate(12deg) translate(8px, 0); }
    50% { transform: rotate(12deg) translate(8px, -8px); }
  }
  .pint-shadow {
    z-index: 1;
    left: 53%;
    bottom: 5%;
    width: 64%;
    height: 38px;
    opacity: .72;
    background: radial-gradient(ellipse at center,
      rgba(29, 31, 48, .42) 0%,
      rgba(29, 31, 48, .20) 40%,
      rgba(29, 31, 48, .05) 67%,
      transparent 82%);
    filter: blur(11px);
    transform: translateX(-50%) scaleY(.58);
  }

  /* Reference-style orbit: accents occupy the clear space around the tub,
     while the two curved arrows deliberately point toward their nearby badges. */
  .s1 { top: 8%; left: 23%; width: 30px; color: #7394E5; }
  .s6 { top: 16%; left: 16%; width: 12px; color: var(--butter); }
  .burst-left { top: 38%; left: 20%; width: 42px; }
  .s3 { top: 51%; left: 8%; width: 24px; color: var(--butter); }
  .s7 { top: 60%; left: 20%; width: 18px; color: #7394E5; }
  .s8 { bottom: 18%; left: 12%; width: 13px; color: var(--butter); }
  .s4 { top: 61%; right: 15%; width: 22px; color: #AFC1ED; }
  .s5 { bottom: 26%; right: 4%; width: 27px; }
  .s9 { top: 19%; right: 3%; width: 11px; color: var(--butter); }
  .w1 { top: 19%; left: 34%; width: 42px; opacity: .28; }
  .w2 { bottom: 22%; right: 17%; width: 42px; opacity: .25; }
  .arrow-right { top: 18%; right: -2%; width: 78px; }
  .arrow-bottom { left: 3%; bottom: 12%; width: 78px; }

  /* Keep the decorative cluster clear of the product edge. */
  .s1 { top: 10%; left: 4%; width: 26px; color: var(--butter); }
  .s6 { top: 17%; left: 2%; width: 11px; color: #7394E5; }
  .burst-left { top: 41%; left: 6%; width: 36px; }
  .s3 { top: 54%; left: 0; width: 20px; }
  .s7 { top: 64%; left: 7%; width: 16px; }
  .s8 { bottom: 20%; left: 3%; width: 12px; }

  /* Arrowheads now finish at their matching product badges. */
  .arrow-right { top: 2%; right: 1%; width: 94px; opacity: .72; }
  .arrow-bottom { left: -5%; bottom: 5%; width: 96px; opacity: .66; }

  /* Final tidy placement for the product callouts and their supporting marks. */
  .chip-hp { top: 7%; right: 0; transform: rotate(7deg); }
  .chip-ls { top: 42%; right: -1%; transform: rotate(3deg); }
  .chip-ac { bottom: 9%; left: -2%; transform: rotate(-4deg); }
  .chip-cal { bottom: 9%; right: 2%; transform: rotate(4deg); }

  .s1 { top: 11%; left: 2%; width: 23px; }
  .s6 { top: 19%; left: 10%; width: 10px; }
  .burst-left { top: 43%; left: 4%; width: 32px; }
  .s3 { top: 56%; left: 1%; width: 18px; }
  .s7 { top: 63%; left: 9%; width: 15px; }
  .s8 { bottom: 22%; left: 6%; width: 11px; }
  .s4 { top: 62%; right: 15%; width: 18px; }
  .s5 { bottom: 28%; right: 5%; width: 24px; }
  .s9 { top: 25%; right: 4%; width: 9px; }
  .w1, .w2 { display: none; }

  .arrow-right { top: 5%; right: 0; width: 88px; }
  .arrow-bottom { left: -4%; bottom: 8%; width: 88px; }

  .burst-left { transform: scaleX(-1); }
  .s1 { width: 28px; }
  .s3 { width: 22px; }
  .s7 { width: 18px; }
  .s4 { width: 22px; }
  .s5 { width: 28px; }
  .arrow-right { top: 4%; right: 1%; width: 94px; }
  .arrow-bottom { left: -5%; bottom: 9%; width: 106px; }
  .arrow-low { top: 34%; right: -4%; width: 88px; }
  .arrow-cal { right: 14%; bottom: 16%; width: 90px; }

  .chip-ac { left: -8%; }
  .arrow-bottom { left: -9%; }
  .burst-left { width: 62px; }

  .arrow {
    color: #B8C6ED;
    opacity: .72;
  }

  .doodles .spark,
  .doodles .arrow { transform: scale(1.1); }
  .doodles .burst-left { transform: scaleX(-1) scale(1.1); }

  .s4 { top: 34%; right: 16%; }
  .s5 { right: 13%; }

  .wrap-arrow {
    display: block;
    z-index: 1;
    top: 54%;
    right: 16%;
    width: 70px;
    color: #B8C6ED;
    opacity: .62;
    stroke-width: 3;
    transform: rotate(20deg) scale(1.1);
    transform-origin: center;
  }
}

/* Final mobile lock: match the compact split composition in the mobile reference. */
@media (max-width: 560px) {
  .hero {
    display: grid;
    grid-template-columns: 53% 47%;
    gap: 0;
    min-height: 720px;
    padding: 28px 24px 0;
    overflow: hidden;
  }
  .hero-left { position: relative; z-index: 4; padding-top: 28px; }
  .eyebrow { margin: 0; font-size: .6rem; letter-spacing: .13em; }
  .headline {
    font-size: clamp(1.95rem, 9.2vw, 2.35rem);
    width: 190%;
    max-width: none;
    margin: 0 0 13px;
  }
  .subhead {
    max-width: 19ch;
    font-size: .72rem;
    margin-bottom: 14px;
  }
  .capture {
    position: relative;
    max-width: 100%;
    width: 100%;
  }
  .capture { gap: 6px; }
  .capture input { height: 44px; font-size: .72rem; }
  .capture .mail { width: 16px; height: 16px; margin: 14px 0 0 14px; }
  .capture button { height: 44px; font-size: .82rem; }
  .microcopy { max-width: 17ch; font-size: .72rem; margin-top: 11px; }
  .hero-left .capture,
  .hero-left .microcopy { display: none; }
  .mobile-signup {
    display: block;
    position: absolute;
    z-index: 5;
    right: 3%;
    bottom: 20px;
    width: 56%;
  }
  .mobile-signup .capture { display: grid; max-width: none; }
  .mobile-signup .success { font-size: .72rem; padding: 12px; }

  .stage {
    position: relative;
    inset: auto;
    order: 0;
    width: auto;
    min-height: 622px;
    margin: 0;
    pointer-events: none;
  }
  .pint {
    position: absolute;
    top: 210px;
    right: auto;
    left: -14%;
    width: 148%;
    max-width: none;
    animation: pint-reference-mobile 5s ease-in-out infinite;
    filter: none;
  }
  .pint-shadow {
    z-index: 1;
    left: 40%;
    bottom: 25px;
    width: 88%;
    height: 21px;
  }
  .chip {
    padding: 6px 8px;
    gap: 4px;
    font-size: .58rem;
  }
  .chip .chip-ic { width: 18px; height: 18px; }
  .chip .chip-ic svg { width: 13px; height: 13px; }
  .chip-hp { top: 7%; right: 0; transform: rotate(7deg); }
  .chip-ls { top: 42%; right: -1%; transform: rotate(3deg); }
  .chip-ac { bottom: 9%; left: -8%; transform: rotate(-4deg); }
  .chip-cal { right: 2%; bottom: 9%; padding: 8px 10px; transform: rotate(4deg); }
  .chip-cal b { font-size: 1.12rem; }

  /* A compact copy of the desktop product orbit. */
  .doodles .spark,
  .doodles .burst,
  .doodles .arrow { display: block; }
  .doodles .swoosh { display: none; }
  .s1 { top: 11%; left: 2%; width: 14px; }
  .s6 { top: 19%; left: 10%; width: 5px; }
  .burst-left { top: 43%; left: 4%; width: 31px; }
  .s3 { top: 56%; left: 1%; width: 11px; }
  .s7 { top: 63%; left: 9%; width: 9px; }
  .s8 { bottom: 22%; left: 6%; width: 6px; }
  .s4 { top: 34%; right: 16%; width: 11px; }
  .s5 { bottom: 28%; right: 13%; width: 14px; }
  .s9 { top: 25%; right: 4%; width: 5px; }
  .wrap-arrow {
    display: block;
    z-index: 1;
    top: 54%;
    right: 16%;
    width: 35px;
    color: #B8C6ED;
    opacity: .62;
    stroke-width: 3;
    transform: rotate(20deg) scale(1.1);
    transform-origin: center;
  }

  .lower {
    margin-top: -40px;
    padding: 82px 14px 22px;
  }
  .features { grid-template-columns: 1fr; }
  .feat {
    display: flex;
    align-items: center;
    gap: 13px;
    min-height: 0;
    padding: 15px 16px;
  }
  .feat > div:last-child { display: block; }
  .feat .ic { width: 48px; height: 48px; }
  .feat h3 { border-right: 0; padding-right: 0; font-size: .96rem; margin-bottom: 2px; }
  .feat p { font-size: .78rem; }
}

/* Desktop compact view: show more of the complete landing page at 100% browser zoom. */
@media (min-width: 941px) {
  body { padding: 12px; }
  .panel {
    zoom: .94;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
  }
  .hero { margin-top: -18px; }
  .hero-left { padding-top: 38px; }
  .lower { margin-top: -112px; }
}

/* Fresh mobile layout. The entire desktop product composition lives inside
   visual-lock, so it can be scaled as one object without its stickers or
   doodles drifting apart. */
@media (max-width: 940px) {
  body { padding: 18px; }
  .panel { max-width: 750px; margin: 0 auto; border-radius: 28px; }
  .nav { padding: 28px 36px 20px; }
  .nav-links, .btn-nav { display: none; }
  .menu-toggle { display: block; }

  .hero {
    display: grid;
    grid-template-columns: 46% 54%;
    gap: 0;
    min-height: 660px;
    padding: 34px 36px 0;
    overflow: hidden;
  }
  .hero-left { position: relative; z-index: 3; padding: 0; }
  .eyebrow { position: static; width: auto; white-space: normal; margin: 0 0 18px; }
  .headline { width: auto; max-width: 8.6ch; font-size: clamp(2.8rem, 6.7vw, 3.8rem); margin: 0 0 20px; }
  .subhead { max-width: 18ch; font-size: .94rem; margin-bottom: 0; }
  .hero-left .capture,
  .hero-left .microcopy,
  .proof { display: none; }

  .stage { display: block; min-height: 560px; margin: 0; overflow: visible; }
  .visual-lock {
    position: absolute;
    top: 48px;
    right: 0;
    width: 600px;
    min-height: 460px;
    height: 460px;
    transform: scale(.55);
    transform-origin: top right;
    display: flex;
  }
  .visual-lock .pint {
    position: relative;
    left: -27px;
    width: 105%;
    max-width: 600px;
    filter: none;
    transform: rotate(1.5deg);
    animation: none;
  }
  .visual-lock .pint-shadow {
    z-index: 1;
    left: 53%;
    bottom: 5%;
    width: 64%;
    height: 38px;
    opacity: .72;
    filter: blur(11px);
    transform: translateX(-50%) scaleY(.58);
  }
  .visual-lock .chip-hp { top: 7%; right: 0; transform: rotate(7deg); }
  .visual-lock .chip-ls { top: 42%; right: -1%; transform: rotate(3deg); }
  .visual-lock .chip-ac { bottom: 9%; left: -8%; transform: rotate(-4deg); }
  .visual-lock .chip-cal { bottom: 9%; right: 2%; transform: rotate(4deg); }

  .visual-lock .doodles .spark,
  .visual-lock .doodles .burst,
  .visual-lock .doodles .arrow { display: block; }
  .visual-lock .doodles .swoosh { display: none; }
  .visual-lock .s1 { top: 11%; left: 2%; width: 28px; }
  .visual-lock .s6 { top: 19%; left: 10%; width: 10px; }
  .visual-lock .burst-left { top: 43%; left: 4%; width: 62px; }
  .visual-lock .s3 { top: 56%; left: 1%; width: 22px; }
  .visual-lock .s7 { top: 63%; left: 9%; width: 18px; }
  .visual-lock .s8 { bottom: 22%; left: 6%; width: 11px; }
  .visual-lock .s4 { top: 34%; right: 16%; width: 22px; }
  .visual-lock .s5 { bottom: 28%; right: 13%; width: 28px; }
  .visual-lock .s9 { top: 25%; right: 4%; width: 9px; }
  .visual-lock .wrap-arrow {
    display: block;
    z-index: 1;
    top: 54%;
    right: 16%;
    width: 70px;
    color: #B8C6ED;
    opacity: .62;
    stroke-width: 3;
    transform: rotate(20deg) scale(1.1);
    transform-origin: center;
  }

  .mobile-signup {
    display: block;
    position: absolute;
    z-index: 5;
    right: 4%;
    bottom: 20px;
    width: 42%;
  }
  .mobile-signup .capture { display: grid; max-width: none; }
  .mobile-signup .success { font-size: .8rem; padding: 12px; }
  .lower { margin-top: -30px; padding: 96px 28px 28px; }
}

@media (max-width: 560px) {
  body { padding: 10px; }
  .panel { border-radius: 23px; }
  .nav { padding: 20px 22px 14px; }
  .brand img { width: 104px; }
  .hero {
    grid-template-columns: 51% 49%;
    min-height: 560px;
    padding: 22px 22px 0;
  }
  .eyebrow { font-size: .61rem; letter-spacing: .13em; margin-bottom: 12px; }
  .headline { font-size: clamp(1.95rem, 9.2vw, 2.35rem); max-width: 8.4ch; margin-bottom: 14px; }
  .subhead { font-size: .72rem; max-width: 18ch; }
  .stage { min-height: 500px; }
  .visual-lock { top: 36px; transform: scale(.42); }
  .mobile-signup { right: 3%; bottom: 16px; width: 48%; }
  .mobile-signup .capture { gap: 6px; }
  .mobile-signup .capture input { height: 44px; font-size: .72rem; }
  .mobile-signup .capture .mail { width: 16px; height: 16px; margin: 14px 0 0 14px; }
  .mobile-signup .capture button { height: 44px; font-size: .82rem; }
  .lower { margin-top: -34px; padding: 82px 14px 22px; }
}

/* Final form reset for the scaled mobile composition. */
@media (max-width: 940px) {
  .mobile-signup .capture {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: none;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
  }
  .mobile-signup .capture .mail {
    position: absolute;
    z-index: 1;
    width: 20px;
    height: 20px;
    margin: 19px 0 0 17px;
  }
  .mobile-signup .capture input {
    width: 100%;
    height: 58px;
    padding: 0 16px 0 50px;
    border-radius: 32px;
    background: var(--white);
    box-shadow: 0 8px 18px rgba(30,42,94,.1);
    font-size: .82rem;
  }
  .mobile-signup .capture button {
    width: 100%;
    height: 56px;
    padding: 0 14px;
    border-radius: 32px;
    font-size: .92rem;
  }
}

@media (max-width: 560px) {
  .mobile-signup .capture { gap: 6px; }
  .mobile-signup .capture input { height: 44px; font-size: .72rem; }
  .mobile-signup .capture .mail { width: 16px; height: 16px; margin: 14px 0 0 14px; }
  .mobile-signup .capture button { height: 44px; font-size: .82rem; }
}

@media (max-width: 940px) {
  .eyebrow { width: max-content; white-space: nowrap; }
  .hero-left { transform: translateY(24px); }
  .feat { min-height: 92px; padding-top: 14px; padding-bottom: 14px; }
  .visual-lock { top: 72px; transform: scale(.52); }
  .pint {
    left: -12%;
    width: 126%;
  }
  .mobile-signup {
    left: 50%;
    right: auto;
    width: 50%;
    bottom: 92px;
    transform: translateX(-50%);
  }
  .mobile-signup .capture .mail {
    top: 19px;
    left: 17px;
    margin: 0;
  }
  .hero-left { min-width: 0; }
  .subhead,
  .feat p { overflow-wrap: anywhere; }
  .lower {
    margin-top: -95px;
    padding-top: 84px;
  }
  .wave { height: 100px; }
}
@media (max-width: 560px) {
  .subhead {
    display: none;
  }
  .eyebrow {
    font-size: .76rem;
  }
  .headline {
    width: max-content;
    max-width: 100%;
    font-size: clamp(2.25rem, 11.5vw, 3.1rem);
  }
  .mobile-headline-line {
    display: block;
    white-space: nowrap;
  }
  .microcopy {
    font-size: .86rem;
  }
  .chip {
    font-size: .72rem;
  }
  .chip-cal span {
    font-size: .72rem;
  }
  .feat { padding-top: 11px; padding-bottom: 11px; }
  .feat h3 {
    font-size: 1.05rem;
  }
  .feat p {
    font-size: .86rem;
  }
  .visual-lock { top: 56px; transform: scale(.40); }
  .visual-lock .pint {
    top: 298px;
    left: 50px;
    width: 126%;
    max-width: none;
    transform: rotate(7deg);
    filter:
      drop-shadow(0 30px 34px rgba(30, 42, 94, 0.18))
      drop-shadow(32px 8px 24px rgba(30, 42, 94, 0.28));
  }
  .doodles {
    translate: 0 200px;
  }
  .chip,
  .chip-cal {
    translate: 0 400px;
    scale: 2.184;
  }
  .chip-hp {
    translate: 0 250px;
  }
  .chip-ls {
    translate: -550px 400px;
  }
  .mobile-signup {
    width: 72%;
    bottom: 50px;
  }
  .mobile-signup .capture .mail {
    top: 14px;
    left: 14px;
    margin: 0;
  }
  .lower {
    margin-top: -90px;
    padding-top: 70px;
  }
  .wave { height: 78px; }
}

/* Mobile: pull the complete composition below the navigation upward as one
   unit. The matching negative bottom margin brings the purple band and cards
   upward too, without moving the top row. */
@media (max-width: 560px) {
  .hero {
    margin-top: 0;
    margin-bottom: -32px;
    transform: translateY(-32px);
  }
  .hero-left .capture,
  .hero-left .success {
    margin-top: 80px;
  }
}

/* Phone layout: preserve the 390px composition and scale its geometry
   proportionally instead of relying on device-specific pixel offsets. */
@media (max-width: 480px) {
  .hero {
    min-height: 143.59vw;
    margin-bottom: -8.21vw;
    transform: translateY(-8.21vw);
  }
  .stage {
    min-height: 128.21vw;
  }
  .visual-lock {
    top: 14.36vw;
    width: 153.85vw;
    min-height: 117.95vw;
    height: 117.95vw;
  }
  .visual-lock .pint {
    top: 76.41vw;
    left: 12.82vw;
  }
  .doodles {
    translate: 0 51.28vw;
  }
  .chip,
  .chip-cal {
    translate: 0 102.56vw;
  }
  .chip-hp {
    translate: 0 64.10vw;
  }
  .chip-ls {
    translate: -141.03vw 102.56vw;
  }
  .mobile-signup {
    bottom: 12.82vw;
  }
  .lower {
    margin-top: -23.08vw;
    padding-top: 17.95vw;
  }
}
