@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Fraunces:ital,opsz,wght@1,9..144,700&display=swap');

:root {
  --ink: #17252a;
  --blue: #0874e8;
  --blue-dark: #0759b0;
  --cream: #f8f3e9;
  --paper: #fffdf8;
  --orange: #ff794d;
  --yellow: #ffd54b;
  --line: rgba(23, 37, 42, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  height: 84px;
  padding: 0 clamp(24px, 5vw, 80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, .92);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 50;
}
.brand { display: flex; align-items: center; gap: 10px; font-size: 23px; font-weight: 700; letter-spacing: -.8px; }
.brand > span:last-child > span { color: var(--blue); }
.brand-mark {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  font-weight: 700;
  font-style: italic;
  background: var(--blue);
  box-shadow: inset -5px -4px 0 rgba(0,0,0,.1);
}
nav { display: flex; gap: 34px; font-size: 14px; font-weight: 600; }
nav a:hover { color: var(--blue); }
.header-cta { padding: 12px 20px; border: 1.5px solid var(--ink); border-radius: 99px; font-weight: 700; font-size: 13px; }

.hero {
  min-height: calc(100vh - 84px);
  max-width: 1440px;
  margin: auto;
  padding: 70px clamp(24px, 7vw, 105px);
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  overflow: hidden;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 2.6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
}
.eyebrow > span { width: 28px; height: 2px; background: currentColor; }
h1, h2 { margin: 0; letter-spacing: -4px; line-height: .96; }
h1 { font-size: clamp(62px, 7vw, 105px); max-width: 680px; }
h2 { font-size: clamp(44px, 5vw, 72px); }
h1 em, h2 em { color: var(--blue); font-family: "Fraunces", serif; font-weight: 700; }
.hero-intro { max-width: 560px; margin: 30px 0; font-size: 19px; line-height: 1.65; color: #506066; }
.hero-actions { display: flex; align-items: center; gap: 26px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 25px; border-radius: 99px; font-weight: 700; transition: .25s ease; }
.button.primary { background: var(--blue); color: white; padding: 18px 25px 18px 30px; box-shadow: 0 14px 30px rgba(8,116,232,.23); }
.button.primary:hover { background: var(--blue-dark); transform: translateY(-2px); }
.button.primary span { font-size: 22px; }
.text-button { font-size: 14px; }
.play-mini { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--blue); font-size: 11px; padding-left: 2px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 19px; margin-top: 35px; color: #68767a; font-size: 11px; text-transform: uppercase; letter-spacing: .5px; font-weight: 700; }
.trust-row b { color: var(--blue); }

.hero-visual { min-height: 580px; position: relative; display: grid; place-items: center; }
.hero-visual::before {
  content: "";
  width: 540px;
  height: 540px;
  position: absolute;
  border-radius: 50%;
  background: #dcefff;
  box-shadow: inset 0 0 0 55px rgba(255,255,255,.45);
}
.hero-product { width: min(520px, 80%); position: relative; z-index: 2; mix-blend-mode: multiply; filter: drop-shadow(0 28px 22px rgba(32,52,68,.19)); transform: rotate(-2deg); }
.sound-bubble {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 9px;
  background: white;
  padding: 10px 17px 10px 10px;
  border-radius: 99px;
  box-shadow: 0 15px 35px rgba(23,37,42,.13);
  animation: float 4s ease-in-out infinite;
}
.sound-bubble span { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; font-size: 23px; background: var(--cream); }
.sound-bubble i { font-family: "Fraunces", serif; font-size: 17px; color: var(--blue); }
.bubble-cat { top: 12%; left: 2%; }
.bubble-dog { top: 20%; right: 0; animation-delay: -.8s; }
.bubble-rooster { bottom: 13%; left: 8%; animation-delay: -1.7s; }
.bubble-rooster i { max-width: 105px; line-height: 1.05; }
.remote {
  width: 76px;
  height: 188px;
  position: absolute;
  z-index: 6;
  right: 9%;
  bottom: 5%;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(110deg, #fafafa, #cbd1d4);
  box-shadow: -15px 20px 35px rgba(23,37,42,.25), inset -5px 0 8px rgba(0,0,0,.1);
  transform: rotate(15deg);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 12px;
  transition: .2s ease;
}
.remote:hover { transform: rotate(10deg) scale(1.05); }
.remote:active { transform: rotate(10deg) scale(.97); }
.remote-led { width: 8px; height: 8px; background: #20c276; border-radius: 50%; box-shadow: 0 0 8px #20c276; }
.remote-power, .remote-key { width: 36px; height: 36px; display: grid; place-items: center; color: white; background: #20272b; border-radius: 50%; font-weight: 700; }
.remote-key { border-radius: 8px; height: 31px; }
.remote small { font-size: 7px; font-weight: 700; }
.remote-hint { position: absolute; right: 2%; bottom: 0; font-size: 9px; letter-spacing: 1px; font-weight: 700; text-transform: uppercase; transform: rotate(5deg); }
.hero-visual.triggered .hero-product { animation: shake .55s ease-in-out 2; }
.hero-visual.triggered .sound-bubble { animation: pop .6s ease both; }
.burst { position: absolute; z-index: 1; width: 16px; height: 16px; background: var(--orange); transform: rotate(45deg); }
.burst-one { left: 16%; top: 22%; }
.burst-two { right: 13%; top: 11%; background: var(--yellow); width: 12px; height: 12px; }

.marquee { overflow: hidden; background: var(--blue); color: white; padding: 17px 0; transform: rotate(-1deg) scale(1.01); }
.marquee div { display: flex; width: max-content; gap: 28px; align-items: center; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; animation: marquee 22s linear infinite; }
.marquee b { color: var(--yellow); }
.section { padding: 120px clamp(24px, 7vw, 105px); }
.section-heading { max-width: 900px; margin-bottom: 65px; }
.section-heading.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-heading.center .eyebrow { justify-content: center; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.steps article { position: relative; padding: 42px 40px 15px 0; border-right: 1px solid var(--line); }
.steps article + article { padding-left: 40px; }
.steps article:last-child { border-right: 0; }
.step-number { font-size: 11px; font-weight: 700; color: var(--blue); }
.step-icon { font-size: 46px; margin: 33px 0 20px; }
h3 { font-size: 23px; margin: 0 0 10px; letter-spacing: -.7px; }
.steps p, .occasion p { color: #657378; line-height: 1.7; font-size: 14px; max-width: 310px; }

.video-section { background: var(--ink); color: white; display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; align-items: center; }
.eyebrow.light { color: #7ebdff; }
.video-copy h2 em { color: #7ebdff; }
.video-copy > p:not(.eyebrow) { color: #abb7bb; line-height: 1.8; margin: 30px 0; max-width: 430px; }
.video-copy ul { list-style: none; padding: 0; margin: 40px 0 0; display: grid; gap: 15px; }
.video-copy li { display: flex; align-items: center; gap: 18px; font-weight: 600; }
.video-copy li span { width: 31px; height: 31px; display: grid; place-items: center; border: 1px solid #536267; border-radius: 50%; font-size: 9px; color: #7ebdff; }
.video-frame { width: min(100%, 460px); justify-self: center; aspect-ratio: 9/16; position: relative; background: #0c1113; border-radius: 26px; padding: 9px; box-shadow: 0 40px 80px rgba(0,0,0,.4); }
.video-frame iframe { width: 100%; height: 100%; border: 0; border-radius: 19px; }
.video-poster { width: 100%; height: 100%; padding: 0; border: 0; border-radius: 19px; overflow: hidden; position: relative; background: #0c1113; color: white; cursor: pointer; }
.video-poster::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.78)); }
.video-poster img { width: 100%; height: 100%; object-fit: cover; }
.video-play { width: 76px; height: 76px; position: absolute; z-index: 2; left: 50%; top: 50%; display: grid; place-items: center; transform: translate(-50%, -50%); border-radius: 50%; background: #ff0033; box-shadow: 0 15px 35px rgba(0,0,0,.35); font-size: 25px; padding-left: 5px; transition: transform .2s ease; }
.video-poster:hover .video-play { transform: translate(-50%, -50%) scale(1.08); }
.video-poster-text { position: absolute; z-index: 2; left: 0; right: 0; bottom: 28px; font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }
.video-tag { position: absolute; right: -67px; top: 48%; background: var(--yellow); color: var(--ink); padding: 11px 15px; font-size: 9px; font-weight: 700; letter-spacing: 1px; transform: rotate(90deg); }
.video-fallback { grid-column: 2; width: min(100%, 460px); justify-self: center; margin: -58px 0 0; text-align: center; color: #8d9ca1; font-size: 11px; }
.video-fallback a { color: #7ebdff; font-weight: 700; }

.occasions { background: var(--cream); }
.occasion-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.occasion { min-height: 340px; padding: 28px; background: white; border-radius: 4px; position: relative; overflow: hidden; transition: .3s ease; }
.occasion:hover { transform: translateY(-7px); box-shadow: 0 20px 50px rgba(23,37,42,.09); }
.occasion > span { font-size: 10px; color: var(--blue); font-weight: 700; }
.occasion > div { height: 190px; display: grid; place-items: center; font-size: 90px; transition: .3s ease; }
.occasion:hover > div { transform: rotate(-8deg) scale(1.1); }
.occasion h3 { border-top: 1px solid var(--line); padding-top: 20px; }
.occasion p { margin-bottom: 0; }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.details { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.details-visual { position: relative; min-height: 510px; display: grid; place-items: center; background: #e8f3fd; border-radius: 50% 50% 8px 8px; }
.details-visual img { width: 80%; mix-blend-mode: multiply; filter: drop-shadow(0 25px 20px rgba(23,37,42,.17)); }
.detail-orbit { position: absolute; z-index: 2; width: 86px; height: 86px; display: grid; place-items: center; border-radius: 50%; background: var(--orange); color: white; font-family: "Fraunces", serif; font-size: 25px; box-shadow: 0 10px 25px rgba(255,121,77,.3); }
.orbit-one { top: 8%; right: 1%; }
.orbit-two { bottom: 7%; left: 2%; background: var(--blue); }
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; margin: 45px 0 25px; }
.spec-grid div { padding: 22px 20px 22px 0; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 5px; }
.spec-grid div:nth-child(even) { padding-left: 20px; border-left: 1px solid var(--line); }
.spec-grid strong { font-size: 23px; }
.spec-grid span { color: #718086; font-size: 12px; }
.details-note { color: #657378; line-height: 1.7; }

.buy { background: var(--blue); }
.buy-card { max-width: 1120px; margin: auto; display: grid; grid-template-columns: 1fr 1fr; background: white; box-shadow: 0 30px 70px rgba(0,39,81,.25); }
.buy-image { background: #edf6ff; padding: 60px; position: relative; display: grid; place-items: center; overflow: hidden; }
.buy-image::before { content: ""; width: 380px; height: 380px; border: 1px solid rgba(8,116,232,.15); border-radius: 50%; position: absolute; }
.buy-image img { position: relative; z-index: 1; mix-blend-mode: multiply; filter: drop-shadow(0 25px 20px rgba(23,37,42,.17)); }
.stock { position: absolute; left: 25px; top: 25px; z-index: 2; font-size: 9px; font-weight: 700; letter-spacing: 1px; color: #25885c; background: white; padding: 9px 12px; border-radius: 99px; }
.buy-copy { padding: 65px; }
.buy-copy h2 { font-size: clamp(42px, 4vw, 62px); }
.included { color: #657378; line-height: 1.7; margin: 28px 0; }
.buy-button { width: 100%; }
.amazon-button { background: #ff9900 !important; color: #17252a !important; box-shadow: 0 14px 30px rgba(255,153,0,.24) !important; }
.amazon-button:hover { background: #e88b00 !important; }
.shipping { text-align: center; color: #7d898c; font-size: 9px; margin-top: 14px; }

footer { min-height: 160px; padding: 35px clamp(24px, 7vw, 105px); display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--line); font-size: 12px; color: #68767a; }
.footer-brand { color: var(--ink); }
.footer-links { display: flex; align-items: center; gap: 24px; }
.footer-links a { font-weight: 700; color: var(--blue); }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes shake { 0%,100% { transform: rotate(-2deg) translateX(0); } 25% { transform: rotate(1deg) translateX(-10px); } 75% { transform: rotate(-4deg) translateX(10px); } }
@keyframes pop { 0% { transform: scale(.7); opacity: .3; } 70% { transform: scale(1.12); } 100% { transform: scale(1); opacity: 1; } }
@keyframes marquee { to { transform: translateX(-50%); } }

@media (max-width: 980px) {
  .site-header nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 55px; }
  .hero-copy { position: relative; z-index: 4; }
  .hero-visual { min-height: 510px; margin-top: 25px; }
  .hero-visual::before { width: 470px; height: 470px; }
  .video-section, .details { grid-template-columns: 1fr; }
  .video-copy { text-align: center; }
  .video-copy .eyebrow { justify-content: center; }
  .video-copy > p:not(.eyebrow) { margin-left: auto; margin-right: auto; }
  .video-copy ul { width: fit-content; margin-left: auto; margin-right: auto; text-align: left; }
  .video-frame { width: 390px; }
  .video-fallback { grid-column: 1; margin-top: -28px; }
  .details-visual { order: 2; }
  .buy-card { grid-template-columns: 1fr; max-width: 620px; }
}

@media (max-width: 680px) {
  .site-header { height: 70px; padding: 0 18px; }
  .header-cta { padding: 10px 13px; font-size: 11px; }
  .brand { font-size: 19px; }
  .brand-mark { width: 32px; height: 32px; }
  .hero { padding: 50px 22px 70px; }
  h1 { font-size: 56px; letter-spacing: -3px; }
  h2 { font-size: 44px; letter-spacing: -2.5px; }
  .hero-intro { font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .trust-row { gap: 10px 16px; }
  .hero-visual { min-height: 390px; }
  .hero-visual::before { width: 330px; height: 330px; box-shadow: inset 0 0 0 35px rgba(255,255,255,.45); }
  .hero-product { width: 90%; }
  .sound-bubble { padding: 6px 10px 6px 6px; }
  .sound-bubble span { width: 32px; height: 32px; font-size: 17px; }
  .sound-bubble i { font-size: 13px; }
  .bubble-cat { top: 10%; left: -4%; }
  .bubble-dog { top: 17%; right: -4%; }
  .bubble-rooster { bottom: 6%; left: -1%; }
  .remote { width: 57px; height: 145px; right: 5%; bottom: 0; padding: 9px; gap: 6px; }
  .remote-power, .remote-key { width: 29px; height: 27px; }
  .remote-hint { display: none; }
  .section { padding: 85px 22px; }
  .section-heading { margin-bottom: 45px; }
  .steps, .occasion-grid { grid-template-columns: 1fr; }
  .steps { border-top: 0; }
  .steps article, .steps article + article { padding: 30px 0; border-right: 0; border-top: 1px solid var(--line); }
  .video-section { gap: 50px; }
  .video-frame { width: min(100%, 350px); }
  .video-tag { display: none; }
  .occasion { min-height: 310px; }
  .details { gap: 45px; }
  .details-visual { min-height: 370px; }
  .spec-grid strong { font-size: 18px; }
  .buy { padding-left: 14px; padding-right: 14px; }
  .buy-image { padding: 40px 20px; }
  .buy-copy { padding: 40px 24px; }
  footer { flex-direction: column; text-align: center; gap: 18px; padding: 40px 20px; }
  .footer-links { flex-direction: column; gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

.legal-page { background: var(--cream); }
.legal-main { width: min(860px, calc(100% - 44px)); margin: 0 auto; padding: 100px 0 120px; }
.legal-main > h1 { margin: 14px 0 65px; font-size: clamp(58px, 8vw, 100px); }
.legal-main section { padding: 30px 0; border-top: 1px solid var(--line); }
.legal-main section h2 { margin: 0 0 18px; font-family: "DM Sans", sans-serif; font-size: 21px; letter-spacing: -.5px; line-height: 1.2; }
.legal-main section p { margin: 0 0 14px; color: #536268; line-height: 1.8; }
.legal-main section a, .legal-back { color: var(--blue); font-weight: 700; }
.legal-source { margin-top: 35px; color: #7d898c; font-size: 11px; }
