
:root {
  --ink: #231a25;
  --ink-2: #332438;
  --paper: #fff6e8;
  --paper-2: #f1e8d8;
  --cream: #fffaf1;
  --coral: #ff785f;
  --pink: #f4a9bd;
  --mint: #a8d7bd;
  --lime: #d7ed73;
  --blue: #a9cbe8;
  --yellow: #f4c95d;
  --line: rgba(35, 26, 37, .18);
  --shadow: 0 24px 70px rgba(35, 26, 37, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 15%, rgba(244, 169, 189, .22), transparent 28%),
    radial-gradient(circle at 90% 35%, rgba(168, 215, 189, .2), transparent 25%),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
img { max-width: 100%; }
.cp-shell { width: min(1180px, calc(100% - 36px)); margin: 0 auto; }

.cp-nav {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  color: var(--cream);
}
.cp-brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 950; letter-spacing: -.04em; }
.cp-brand-mark { display: grid; place-items: center; width: 38px; height: 38px; border: 2px solid var(--cream); border-radius: 50% 46% 52% 44%; background: var(--coral); transform: rotate(-5deg); box-shadow: 4px 4px 0 var(--ink); animation: cpPawHello 5.8s cubic-bezier(.2,.8,.2,1) infinite; }
.cp-brand-mark svg { width: 21px; }
.cp-brand span:last-child { font-size: 23px; }
.cp-nav-links { display: flex; align-items: center; gap: 26px; }
.cp-nav-links button { padding: 0; border: 0; background: transparent; color: rgba(255, 250, 241, .75); font: inherit; font-size: 13px; font-weight: 780; cursor: pointer; }
.cp-nav-links button:hover { color: var(--cream); }
.cp-nav-links .cp-nav-cta { padding: 10px 15px; border: 1px solid rgba(255,255,255,.45); border-radius: 999px; color: var(--cream); }

.cp-hero {
  position: relative;
  min-height: 760px;
  padding: 150px 0 82px;
  color: var(--cream);
  background:
    radial-gradient(circle at 73% 28%, rgba(244, 169, 189, .26), transparent 24%),
    radial-gradient(circle at 22% 100%, rgba(215, 237, 115, .14), transparent 28%),
    linear-gradient(145deg, var(--ink) 0%, #2d2031 55%, #241a25 100%);
  border-bottom: 4px solid var(--ink);
  overflow: hidden;
}
.cp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .26;
  background-image: radial-gradient(rgba(255,255,255,.24) .7px, transparent .7px);
  background-size: 10px 10px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}
.cp-sparkle-field { position: absolute; inset: 0; z-index: 1; overflow: hidden; pointer-events: none; }
.cp-sparkle-field i { position: absolute; left: var(--x); top: var(--y); width: var(--s); height: var(--s); color: var(--c, var(--yellow)); opacity: var(--o, .8); animation: cpDriftSpark var(--d, 3.2s) ease-in-out var(--delay, 0s) infinite; }
.cp-sparkle-field i::before, .cp-sparkle-field i::after { content: ""; position: absolute; left: 50%; top: 50%; border-radius: 99px; background: currentColor; box-shadow: 0 0 12px currentColor; transform: translate(-50%, -50%); }
.cp-sparkle-field i::before { width: 2px; height: 100%; }
.cp-sparkle-field i::after { width: 100%; height: 2px; }
.cp-sparkle-field i:nth-child(3n)::after { transform: translate(-50%, -50%) rotate(45deg); }
.cp-sparkle-field i:nth-child(4n)::before { transform: translate(-50%, -50%) rotate(45deg); }
.cp-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(390px, .98fr); gap: 54px; align-items: center; }
.cp-hero-copy > * { opacity: 0; animation: cpHeroCopyIn .72s cubic-bezier(.16,.84,.32,1) forwards; }
.cp-hero-copy > *:nth-child(2) { animation-delay: .08s; }
.cp-hero-copy > *:nth-child(3) { animation-delay: .12s; }
.cp-hero-copy > *:nth-child(4) { animation-delay: .16s; }
.cp-hero-copy > *:nth-child(5) { animation-delay: .22s; }
.cp-hero-copy > *:nth-child(6) { animation-delay: .3s; }
.cp-kicker { display: inline-flex; align-items: center; gap: 9px; margin: 0 0 24px; color: var(--lime); font-size: 11px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; transform: translateY(-14px); }
.cp-kicker::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 5px rgba(255, 120, 95, .14); }
.cp-hero h1 { max-width: 720px; margin: 0; font-family: "Arial Black", Impact, sans-serif; font-size: clamp(58px, 8.2vw, 112px); font-weight: 950; letter-spacing: -.075em; line-height: .82; text-transform: uppercase; }
.cp-hero h1 em { display: block; color: var(--pink); font-family: Georgia, serif; font-size: .72em; font-weight: 700; letter-spacing: -.055em; line-height: .92; text-transform: none; }
.cp-title-mobile { display: none; }
.cp-stage-kicker { display: none; }
.cp-hero-copy > p:not(.cp-kicker) { max-width: 540px; margin: 28px 0 0; color: rgba(255,250,241,.72); font-size: clamp(17px, 2vw, 21px); line-height: 1.48; }
.cp-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.cp-button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 0 22px; border: 2px solid var(--ink); border-radius: 10px; background: var(--coral); box-shadow: 5px 5px 0 var(--ink); color: var(--ink); font-size: 13px; font-weight: 900; text-decoration: none; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.cp-button:hover { transform: translate(-2px, -2px) rotate(-.5deg); box-shadow: 8px 8px 0 var(--ink); }
.cp-button.secondary { border-color: rgba(255,255,255,.48); background: transparent; box-shadow: none; color: var(--cream); }
.cp-button.secondary:hover { border-color: var(--cream); background: rgba(255,255,255,.06); box-shadow: none; }
.cp-demo-cta-wrap { position: relative; display: inline-flex; align-items: center; }
.cp-actions .cp-blink-sticker--cta { position: absolute; left: -10px; top: -55px; z-index: 4; width: 66px; margin: 0; pointer-events: none; }
.cp-actions .cp-blink-sticker--cta::before { inset: 19%; box-shadow: 3px 4px 0 var(--ink); }
.cp-actions .cp-blink-sticker--cta::after { right: -2px; top: 1px; font-size: 17px; }

.cp-hero-stage { position: relative; min-height: 510px; opacity: 0; animation: cpStageIn .92s .16s cubic-bezier(.16,.84,.32,1) forwards, cpSmackNudge 5.8s 2.1s ease-in-out infinite; }
.cp-photo-card { position: absolute; z-index: 1; inset: 15px 0 32px 42px; overflow: hidden; border: 3px solid var(--ink); border-radius: 22px; background: #dcb893; box-shadow: 14px 16px 0 rgba(0,0,0,.3), 0 0 52px rgba(244,169,189,.1); transform: rotate(2.2deg); animation: cpPhotoFloat 7s ease-in-out infinite; }
.cp-photo-card::before { content: ""; position: absolute; z-index: 3; inset: -35% auto -35% -28%; width: 23%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.26), transparent); transform: rotate(12deg); animation: cpPhotoGleam 7.2s 1.6s ease-in-out infinite; pointer-events: none; }
.cp-photo-card::after { content: ""; position: absolute; z-index: 2; inset: 0; background: linear-gradient(145deg, rgba(255,205,169,.14), transparent 43%, rgba(112,55,105,.12)); mix-blend-mode: soft-light; pointer-events: none; }
.cp-photo-card img { width: 100%; height: 100%; object-fit: cover; object-position: 44% center; filter: saturate(1.16) contrast(1.09) brightness(1.035) sepia(.025); transform: scale(1.015); animation: cpPhotoBreathe 11s ease-in-out infinite alternate; }
.cp-smack-fx { position: absolute; z-index: 6; left: 18%; top: 57%; width: 116px; aspect-ratio: 1; pointer-events: none; transform: translate(-50%, -50%); }
.cp-smack-fx::before { content: ""; position: absolute; inset: 27%; border: 2px solid rgba(255,250,241,.82); border-radius: 50%; box-shadow: 0 0 18px rgba(244,201,93,.34); opacity: 0; animation: cpSmackRing 5.8s 2.1s cubic-bezier(.12,.7,.2,1) infinite; }
.cp-smack-fx::after { content: ""; position: absolute; inset: 0; background: repeating-conic-gradient(from 4deg, rgba(244,201,93,.92) 0 2deg, transparent 2deg 34deg); -webkit-mask: radial-gradient(circle, transparent 0 38%, #000 40% 58%, transparent 60%); mask: radial-gradient(circle, transparent 0 38%, #000 40% 58%, transparent 60%); opacity: 0; animation: cpSmackLines 5.8s 2.1s cubic-bezier(.12,.7,.2,1) infinite; }
.cp-smack-fx i { position: absolute; left: 50%; top: 50%; width: 6px; height: 6px; border-radius: 50%; background: var(--pink); opacity: 0; animation: cpSmackParticle 5.8s 2.1s ease-out infinite; }
.cp-smack-fx i:nth-child(1) { --px: -45px; --py: -28px; background: var(--yellow); }
.cp-smack-fx i:nth-child(2) { --px: 47px; --py: -16px; animation-delay: 2.14s; }
.cp-smack-fx i:nth-child(3) { --px: 36px; --py: 38px; width: 4px; height: 4px; background: var(--lime); animation-delay: 2.18s; }
.cp-status-card { position: absolute; z-index: 5; right: -10px; bottom: 74px; width: 208px; padding: 9px; border: 1px solid rgba(35,26,37,.14); border-radius: 12px; background: rgba(255,250,241,.98); box-shadow: 0 13px 30px rgba(10,6,12,.23); color: var(--ink); font-family: Inter, "SF Pro Text", "Segoe UI", system-ui, sans-serif; font-variant-numeric: tabular-nums; transform: rotate(-1deg); backdrop-filter: blur(10px); animation: cpStatusHover 4.6s 1s ease-in-out infinite; }
.cp-status-sync-dot { position: absolute; top: -7px; right: 10px; display: grid; place-items: center; width: 15px; height: 15px; border: 1px solid rgba(68,139,87,.24); border-radius: 50%; background: #eaf7ed; box-shadow: 0 3px 8px rgba(34,91,49,.2), 0 0 0 3px rgba(255,250,241,.88); }
.cp-status-sync-dot::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #54aa6b; box-shadow: 0 1px 2px rgba(22,83,39,.22) inset; }
.cp-status-sync-dot::after { content: ""; position: absolute; inset: 2px; border: 1px solid rgba(84,170,107,.42); border-radius: 50%; animation: cpSyncHalo 2.4s ease-out infinite; }
.cp-status-answer { display: block; }
.cp-answer-line { display: grid; grid-template-columns: 30px minmax(0,1fr) auto; gap: 7px; align-items: center; padding-right: 4px; }
.cp-answer-line > img { width: 30px; height: 30px; padding: 2px; object-fit: contain; border-radius: 9px; background: #f4dfb9; }
.cp-answer-line b { display: block; font-size: 10.5px; font-weight: 680; letter-spacing: -.018em; line-height: 1.12; }
.cp-answer-line small { display: block; margin-top: 2px; color: #756a71; font-size: 7.5px; font-weight: 560; letter-spacing: -.005em; line-height: 1.15; }
.cp-answer-cta { display: flex; align-items: center; justify-content: center; min-width: 39px; min-height: 28px; padding: 0 8px; border: 1px solid rgba(172,111,48,.25); border-radius: 8px; background: #f3d69c; color: #493826; font-size: 8.5px; font-weight: 800; cursor: pointer; transition: background .16s ease, transform .16s ease; }
.cp-answer-cta:hover { background: #ecc77f; }

.cp-cat-sticker { position: absolute; z-index: 7; width: 150px; pointer-events: none; filter: drop-shadow(7px 9px 0 rgba(0,0,0,.34)); transform-origin: 50% 80%; }
.cp-cat-sticker--black { left: -58px; bottom: -24px; width: 172px; transform: rotate(-8deg); }
.cp-cat-sticker--lowpoly { right: -60px; top: -24px; width: 132px; transform: rotate(8deg); }
.cp-cat-sticker--watching { right: 34px; bottom: -48px; z-index: 4; width: 128px; transform: rotate(5deg); animation: cpCatBob 4.8s ease-in-out -1.2s infinite; }
.cp-cat-sticker--tiny { left: 30%; top: -64px; z-index: 6; width: 92px; transform: rotate(-5deg); animation: cpCatBob 4.2s ease-in-out -2.1s infinite; }
.cp-star { position: absolute; z-index: 8; color: var(--yellow); font-family: Georgia, serif; font-size: 34px; line-height: 1; text-shadow: 0 0 16px rgba(244,201,93,.48); animation: cpTwinkle 2.6s ease-in-out infinite; }
.cp-star--one { left: 12px; top: 30px; }
.cp-star--two { right: 22px; top: 128px; animation-delay: -.9s; color: var(--pink); font-size: 24px; }
.cp-star--three { left: 2px; bottom: 140px; animation-delay: -1.6s; color: var(--lime); font-size: 21px; }

.cp-home-glance { position: relative; z-index: 3; width: min(550px, 100%); margin-top: 48px; overflow: hidden; border: 1px solid rgba(255,255,255,.22); border-radius: 17px; background: rgba(255,255,255,.075); box-shadow: inset 0 1px 0 rgba(255,255,255,.08); font-family: Inter, "SF Pro Text", "Segoe UI", system-ui, sans-serif; font-variant-numeric: tabular-nums; backdrop-filter: blur(12px); }
.cp-glance-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 15px 16px 14px; }
.cp-glance-head small { display: block; color: rgba(255,250,241,.52); font-size: 8px; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.cp-glance-head h3 { margin: 4px 0 0; font-family: Georgia, serif; font-size: 21px; font-weight: 700; line-height: 1; }
.cp-glance-cats { display: flex; align-items: center; padding-right: 3px; }
.cp-glance-cats img { width: 42px; height: 42px; object-fit: contain; border: 2px solid var(--cream); border-radius: 50%; background: var(--pink); box-shadow: 3px 3px 0 rgba(0,0,0,.25); }
.cp-glance-cats img + img { margin-left: -9px; background: var(--yellow); }
.cp-glance-body { display: grid; grid-template-columns: 1fr 1fr auto; border-top: 1px solid rgba(255,255,255,.14); }
.cp-glance-cat { display: grid; grid-template-columns: 42px minmax(0, 1fr); gap: 12px; align-items: start; min-width: 0; padding: 14px; }
.cp-glance-cat + .cp-glance-cat { border-left: 1px solid rgba(255,255,255,.14); }
.cp-glance-cat > img { width: 42px; height: 42px; padding: 2px; object-fit: contain; border-radius: 12px; background: var(--mint); }
.cp-glance-cat:nth-child(2) > img { background: var(--pink); }
.cp-glance-info { min-width: 0; }
.cp-glance-name-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.cp-glance-cat b { display: block; overflow: hidden; color: var(--cream); font-size: 13px; font-weight: 780; letter-spacing: -.015em; line-height: 1.1; text-overflow: ellipsis; white-space: nowrap; }
.cp-glance-status { display: flex; align-items: center; gap: 6px; margin-top: 5px; color: rgba(255,250,241,.65); font-size: 9px; font-weight: 650; line-height: 1.2; }
.cp-glance-status strong { color: var(--cream); font-size: 9px; font-weight: 830; }
.cp-glance-state { flex: 0 0 auto; width: 7px; height: 7px; border-radius: 50%; background: #70d38b; box-shadow: 0 0 0 3px rgba(112,211,139,.12); }
.cp-glance-cat:nth-child(2) .cp-glance-state { background: #ffae72; box-shadow: 0 0 0 3px rgba(255,174,114,.12); }
.cp-glance-cues { display: flex; gap: 5px; margin-top: 10px; }
.cp-glance-cue { display: grid; place-items: center; width: 27px; height: 27px; border: 1px solid rgba(255,255,255,.15); border-radius: 8px; background: rgba(255,255,255,.07); color: rgba(255,250,241,.78); box-shadow: inset 0 1px 0 rgba(255,255,255,.07); transition: transform .18s ease, background .18s ease, color .18s ease; }
.cp-glance-cue svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.cp-glance-cue:nth-child(1) { background: rgba(244,169,189,.15); color: #ffd1dc; }
.cp-glance-cue:nth-child(2) { background: rgba(169,203,232,.14); color: #c7e4fb; }
.cp-glance-cue:nth-child(3) { background: rgba(244,201,93,.13); color: #f9df97; }
.cp-glance-cue:nth-child(4) { background: rgba(168,215,189,.14); color: #bfe9d0; }
.cp-glance-cue:hover { z-index: 2; transform: translateY(-3px) rotate(3deg); background: rgba(255,255,255,.15); color: var(--cream); }
.cp-glance-action { display: grid; place-items: center; min-width: 102px; padding: 0 15px; border: 0; border-left: 1px solid rgba(255,255,255,.14); background: var(--lime); color: var(--ink); font-size: 11px; font-weight: 950; cursor: pointer; transition: background .18s ease; }
.cp-glance-action:hover { background: var(--yellow); }

.cp-marquee { overflow: hidden; border-bottom: 3px solid var(--ink); background: var(--lime); }
.cp-marquee-track { display: flex; width: max-content; animation: cpMarquee 28s linear infinite; }
.cp-marquee-track span { padding: 14px 23px; font-family: "Arial Black", Impact, sans-serif; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.cp-marquee-track span::after { content: "✦"; margin-left: 42px; color: var(--coral); }

.cp-section { position: relative; padding: 100px 0; }
.cp-page-cat { position: absolute; z-index: 2; width: 150px; pointer-events: none; filter: drop-shadow(7px 9px 0 rgba(35,26,37,.18)); animation: cpCatBob 5.4s ease-in-out infinite; }
.cp-page-cat--demo { right: max(6px, calc((100vw - 1180px) / 2 - 74px)); top: 52px; width: 122px; transform: rotate(8deg); }
.cp-page-cat--features { left: max(-24px, calc((100vw - 1180px) / 2 - 96px)); bottom: 28px; width: 178px; transform: rotate(-9deg); animation-delay: -2.4s; }
.cp-page-cat--handoff { right: max(-12px, calc((100vw - 1180px) / 2 - 88px)); bottom: 22px; width: 162px; transform: rotate(7deg); animation-delay: -1.6s; }
.cp-section-spark { position: absolute; z-index: 2; pointer-events: none; color: var(--coral); font-family: Georgia, serif; font-size: 32px; animation: cpTwinkle 2.7s ease-in-out infinite; }
.cp-section-spark--a { left: 4vw; top: 16%; }
.cp-section-spark--b { right: 5vw; top: 31%; color: var(--pink); font-size: 22px; animation-delay: -1.1s; }
.cp-section-spark--c { left: 7vw; bottom: 13%; color: var(--lime); font-size: 19px; animation-delay: -1.8s; }
.cp-section-head { display: grid; grid-template-columns: .8fr 1.2fr; gap: 40px; align-items: end; margin-bottom: 42px; }
.cp-eyebrow { margin: 0; color: #876879; font-size: 10px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.cp-section h2 { margin: 10px 0 0; font-family: "Arial Black", Impact, sans-serif; font-size: clamp(42px, 6vw, 78px); letter-spacing: -.065em; line-height: .9; text-transform: uppercase; }
.cp-section-head > p { max-width: 520px; margin: 0; color: #6f636d; font-size: 16px; line-height: 1.6; }

.cp-demo-stickers { display: flex; align-items: center; justify-content: flex-end; gap: 12px; margin: 14px 3px 5px auto; }
.cp-demo-bowl-hero { position: relative; z-index: 5; display: flex; justify-content: center; width: min(250px, 34vw); margin: -64px auto 12px; transform: rotate(-2deg); }
.cp-demo-bowl-hero .cp-one-bowl-art { width: 100%; }
.cp-blink-sticker { position: relative; flex: 0 0 auto; width: 112px; aspect-ratio: 1; transform-origin: 52% 82%; animation: cpCatPop 2.4s cubic-bezier(.2,.8,.2,1) infinite; }
.cp-blink-sticker::before { content: ""; position: absolute; z-index: 0; inset: 15%; border: 2px solid var(--ink); border-radius: 50% 46% 52% 44%; background: var(--coral); box-shadow: 4px 5px 0 var(--ink); transform: rotate(-7deg); }
.cp-blink-sticker::after { content: "✦"; position: absolute; z-index: 4; right: 0; top: 2px; color: var(--yellow); font-family: Georgia, serif; font-size: 22px; text-shadow: 0 0 12px rgba(244,201,93,.72); animation: cpStickerFlash 2.4s ease-out infinite; }
.cp-blink-sticker img { position: absolute; z-index: 2; inset: 0; width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(3px 5px 0 rgba(35,26,37,.23)); }
.cp-blink-sticker .cp-blink-closed { z-index: 3; opacity: 0; animation: cpCatBlink 2.4s steps(1,end) infinite; }
.cp-demo-hello { position: relative; z-index: 4; display: grid; place-items: center; width: min(470px, 64vw); margin: -38px auto 28px; }
.cp-demo-hello::after { content: "hello."; position: absolute; z-index: 6; right: 5%; bottom: 11%; padding: 8px 11px; border: 2px solid var(--ink); border-radius: 8px; background: var(--lime); box-shadow: 4px 4px 0 var(--ink); color: var(--ink); font-family: Georgia, serif; font-size: 16px; font-style: italic; font-weight: 800; transform: rotate(5deg); }
.cp-blink-sticker--hello { width: 100%; animation-duration: 3.1s; }
.cp-blink-sticker--hello::before { inset: 9%; border-width: 3px; background: var(--pink); box-shadow: 10px 12px 0 var(--ink); }
.cp-blink-sticker--hello::after { right: 4%; top: 8%; font-size: 44px; }
.cp-blink-sticker--hello img { filter: drop-shadow(8px 11px 0 rgba(35,26,37,.22)); }
.cp-one-bowl-art { position: relative; width: min(230px, 72%); margin: 0; overflow: hidden; aspect-ratio: 4 / 3; border: 2px solid var(--ink); border-radius: 14px; background: var(--ink); box-shadow: 5px 6px 0 var(--pink); transform: rotate(-1.5deg); }
.cp-one-bowl-art img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: 75% center; transition: transform .7s cubic-bezier(.2,.8,.2,1), filter .7s ease; }
.cp-one-bowl-art .cp-one-bowl-food { position: absolute; z-index: 1; inset: 0; opacity: 0; animation: cpBowlFoodSwap 2.4s linear infinite; }
.cp-one-bowl-art::before { content: ""; position: absolute; z-index: 3; inset: 0; pointer-events: none; background: rgba(255,250,241,.86); opacity: 0; animation: cpBowlFlash 2.4s ease-out infinite; }
.cp-one-bowl-art::after { content: ""; position: absolute; z-index: 2; inset: 0; pointer-events: none; background: linear-gradient(90deg, rgba(35,26,37,.12), transparent 30%, transparent 82%, rgba(35,26,37,.08)); }
.cp-one-bowl-art:hover img { transform: scale(1.018); filter: saturate(1.04); }

.cp-demo-grid { display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(310px, .82fr); border: 3px solid var(--ink); background: var(--cream); box-shadow: 11px 12px 0 var(--ink); }
.cp-demo-panel { padding: 24px; }
.cp-demo-panel + .cp-demo-panel { border-left: 3px solid var(--ink); background: var(--pink); }
.cp-demo-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-bottom: 17px; border-bottom: 1px solid var(--line); }
.cp-demo-top b { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.cp-cat-tabs { display: flex; gap: 6px; }
.cp-cat-tab { display: grid; place-items: center; width: 42px; height: 42px; padding: 3px; border: 2px solid transparent; border-radius: 10px; background: var(--paper-2); cursor: pointer; transition: transform .18s ease, border-color .18s ease; }
.cp-cat-tab:hover { transform: translateY(-3px) rotate(3deg); }
.cp-cat-tab.is-active { border-color: var(--ink); background: var(--yellow); }
.cp-cat-tab img { width: 100%; height: 100%; object-fit: contain; }
.cp-demo-answer { display: grid; grid-template-columns: 72px 1fr; gap: 18px; align-items: center; padding: 32px 0 25px; }
.cp-demo-avatar { display: grid; place-items: center; width: 72px; height: 72px; border: 3px solid var(--ink); border-radius: 19px; background: var(--mint); transform: rotate(-3deg); }
.cp-demo-avatar img { width: 66px; height: 66px; object-fit: contain; }
.cp-demo-answer small { color: #796d78; font-size: 10px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.cp-demo-answer h3 { margin: 5px 0 0; font-family: Georgia, serif; font-size: clamp(27px, 4vw, 44px); line-height: 1; }
.cp-demo-timeline { display: grid; gap: 8px; }
.cp-event { display: grid; grid-template-columns: 70px 10px 1fr; gap: 12px; align-items: center; min-height: 50px; padding: 9px 12px; border: 1px solid var(--line); border-radius: 10px; background: var(--paper); }
.cp-event time { color: #786c75; font-size: 10px; font-weight: 800; }
.cp-event i { width: 9px; height: 9px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 4px rgba(255,120,95,.14); }
.cp-event b { display: block; font-size: 12px; }
.cp-event span { display: block; margin-top: 2px; color: #7e727a; font-size: 10px; }
.cp-event.is-new { animation: cpEventIn .42s cubic-bezier(.2,.8,.2,1); background: #f0f7df; }
.cp-demo-action { display: flex; flex-direction: column; justify-content: space-between; min-height: 100%; }
.cp-demo-action img { display: block; width: min(250px, 86%); margin: -8px auto 8px; filter: drop-shadow(8px 9px 0 rgba(35,26,37,.18)); }
.cp-demo-action h3 { max-width: 290px; margin: 0; font-family: "Arial Black", Impact, sans-serif; font-size: 31px; letter-spacing: -.04em; line-height: .92; text-transform: uppercase; }
.cp-demo-action p { margin: 12px 0 20px; color: #5f4d59; font-size: 13px; line-height: 1.5; }
.cp-log-button { width: 100%; min-height: 52px; border: 3px solid var(--ink); border-radius: 10px; background: var(--lime); box-shadow: 5px 5px 0 var(--ink); color: var(--ink); font-size: 13px; font-weight: 950; cursor: pointer; transition: transform .16s ease, box-shadow .16s ease; }
.cp-log-button:hover { transform: translate(-2px,-2px); box-shadow: 8px 8px 0 var(--ink); }
.cp-log-button.is-done { background: var(--mint); }

.cp-features { padding-top: 112px; background: var(--paper-2); border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink); }
.cp-feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 3px solid var(--ink); background: var(--cream); }
.cp-feature { position: relative; min-height: 430px; padding: 24px; overflow: hidden; }
.cp-feature[href] { display: block; color: inherit; text-decoration: none; cursor: pointer; }
.cp-feature[href]::after { content: "↗"; position: absolute; top: 22px; right: 22px; display: grid; place-items: center; width: 38px; height: 38px; border: 2px solid var(--ink); border-radius: 50%; background: var(--cream); box-shadow: 3px 3px 0 var(--ink); font-weight: 950; transition: transform .2s ease, background .2s ease; }
.cp-feature[href]:hover::after { background: var(--yellow); transform: translate(2px,-2px) rotate(8deg); }
.cp-feature + .cp-feature { border-left: 3px solid var(--ink); }
.cp-feature:nth-child(2) { background: var(--mint); }
.cp-feature:nth-child(3) { background: var(--blue); }
.cp-feature-no { display: inline-grid; place-items: center; width: 38px; height: 38px; border: 2px solid var(--ink); border-radius: 50%; background: var(--yellow); font-size: 11px; font-weight: 950; }
.cp-feature h3 { max-width: 290px; margin: 38px 0 10px; font-family: "Arial Black", Impact, sans-serif; font-size: 29px; letter-spacing: -.045em; line-height: .94; text-transform: uppercase; }
.cp-feature p { max-width: 290px; margin: 0; color: #625761; font-size: 13px; line-height: 1.55; }
.cp-feature img { position: absolute; right: -20px; bottom: -20px; width: 190px; filter: drop-shadow(8px 9px 0 rgba(35,26,37,.18)); transition: transform .28s cubic-bezier(.2,.8,.2,1); }
.cp-feature--profession p { max-width: 190px; }
.cp-feature--profession img { right: -12px; bottom: -16px; width: 180px; height: 205px; border: 3px solid var(--ink); border-radius: 48% 48% 10px 10px; background: var(--cream); object-fit: cover; object-position: center 18%; box-shadow: 7px 8px 0 rgba(35,26,37,.2); filter: none; transform: rotate(3deg); }
.cp-feature--profession:nth-child(2) img { transform: rotate(-3deg); }
.cp-feature--profession:nth-child(3) img { transform: rotate(2deg); }
.cp-feature:hover img { transform: translateY(-9px) rotate(5deg) scale(1.04); }
.cp-feature-stamp { position: absolute; left: 22px; bottom: 22px; padding: 7px 9px; border: 2px solid var(--ink); border-radius: 6px; background: var(--coral); font-size: 9px; font-weight: 950; letter-spacing: .1em; transform: rotate(-4deg); }

.cp-handoff { background: var(--ink); color: var(--cream); }
.cp-handoff-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 34px; align-items: stretch; }
.cp-handoff-copy { display: flex; flex-direction: column; justify-content: center; padding: 36px 0; }
.cp-handoff .cp-eyebrow { color: var(--pink); }
.cp-handoff h2 { max-width: 560px; }
.cp-handoff-copy > p:not(.cp-eyebrow) { max-width: 520px; color: rgba(255,250,241,.68); font-size: 16px; line-height: 1.6; }
.cp-handoff-list { display: grid; gap: 10px; margin-top: 28px; }
.cp-handoff-item { display: grid; grid-template-columns: 35px 1fr; gap: 12px; align-items: center; padding: 13px 14px; border: 1px solid rgba(255,255,255,.16); border-radius: 10px; background: rgba(255,255,255,.055); }
.cp-handoff-item span { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 9px; background: var(--coral); color: var(--ink); font-weight: 950; }
.cp-handoff-item:nth-child(2) span { background: var(--mint); }
.cp-handoff-item:nth-child(3) span { background: var(--yellow); }
.cp-handoff-item b { display: block; font-size: 13px; }
.cp-handoff-item small { display: block; margin-top: 3px; color: rgba(255,250,241,.55); font-size: 10px; }
.cp-handoff-art { position: relative; min-height: 570px; overflow: hidden; border: 3px solid var(--cream); border-radius: 20px; background: #d5b58d; box-shadow: 13px 14px 0 rgba(0,0,0,.36); transform: rotate(1.5deg); }
.cp-handoff-art > img:first-child { width: 100%; height: 100%; object-fit: cover; object-position: 58% center; filter: saturate(.95) contrast(1.025); }
.cp-handoff-peek { position: absolute; top: 21px; left: 20px; width: clamp(128px, 25%, 180px); aspect-ratio: 1.18; object-fit: cover; object-position: 25% 58%; border: 5px solid var(--cream); border-radius: 12px; box-shadow: 7px 8px 0 rgba(34,18,33,.72); transform: rotate(-5deg); transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s ease; }
.cp-handoff-art:hover .cp-handoff-peek { transform: rotate(-2deg) translateY(-5px) scale(1.035); box-shadow: 9px 12px 0 rgba(34,18,33,.64); }
.cp-handoff-note { position: absolute; left: 22px; bottom: 22px; width: min(310px, calc(100% - 44px)); padding: 17px; border: 3px solid var(--ink); border-radius: 11px; background: var(--cream); box-shadow: 6px 6px 0 var(--ink); color: var(--ink); transform: rotate(-2deg); }
.cp-handoff-note small { color: #86737e; font-size: 9px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.cp-handoff-note b { display: block; margin-top: 7px; font-family: Georgia, serif; font-size: 22px; }
.cp-handoff-note span { display: block; margin-top: 6px; color: #6e626a; font-size: 11px; }
.cp-food-thought { position: absolute; z-index: 4; top: 30px; right: 24px; display: flex; align-items: center; justify-content: center; gap: 9px; min-width: 154px; padding: 13px 15px; border: 3px solid var(--ink); border-radius: 50% 47% 53% 46%; background: rgba(255,250,241,.96); box-shadow: 6px 7px 0 var(--ink); transform: rotate(2deg); animation: cpThoughtFloat 4.8s ease-in-out infinite; }
.cp-food-thought::before, .cp-food-thought::after { content: ""; position: absolute; border: 2px solid var(--ink); border-radius: 50%; background: var(--cream); }
.cp-food-thought::before { left: 43%; bottom: -20px; width: 13px; height: 13px; }
.cp-food-thought::after { left: 38%; bottom: -33px; width: 7px; height: 7px; }
.cp-food-thought span { display: inline-block; font-size: 25px; filter: drop-shadow(2px 2px 0 rgba(35,26,37,.14)); animation: cpFoodIdea 3.2s ease-in-out infinite; }
.cp-food-thought span:nth-child(2) { animation-delay: -.8s; }
.cp-food-thought span:nth-child(3) { animation-delay: -1.6s; }

.cp-final { padding: 120px 0 96px; text-align: center; overflow: hidden; }
.cp-final-inner { position: relative; isolation: isolate; min-height: 430px; display: grid; place-items: center; overflow: hidden; border: 3px solid var(--ink); border-radius: 22px; background: var(--yellow); box-shadow: 12px 13px 0 var(--ink); }
.cp-final-inner::before { content: ""; position: absolute; z-index: 0; inset: 0; background: url('/assets/marketing/catter-pop-final-bowl-cat-v1.png') 72% 48% / cover no-repeat; opacity: .24; filter: saturate(.72) contrast(1.08); mix-blend-mode: multiply; }
.cp-final-inner::after { content: ""; position: absolute; z-index: 1; inset: 0; background: radial-gradient(circle at 50% 48%, rgba(248,207,86,.82) 0 22%, rgba(248,207,86,.42) 48%, rgba(248,207,86,.08) 78%); pointer-events: none; }
.cp-final-copy { position: relative; z-index: 3; max-width: 690px; padding: 70px 22px; }
.cp-final h2 { margin: 0; font-size: clamp(50px, 7vw, 92px); }
.cp-final p { max-width: 520px; margin: 20px auto 28px; color: #5c4d55; font-size: 16px; line-height: 1.55; }
.cp-final .cp-actions { justify-content: center; }
.cp-final .cp-button.secondary { border-color: var(--ink); color: var(--ink); }
.cp-final-cat { position: absolute; z-index: 2; width: 185px; filter: drop-shadow(8px 9px 0 rgba(35,26,37,.18)); }
.cp-final-cat--left { left: -28px; bottom: -10px; transform: rotate(-8deg); }
.cp-final-cat--right { right: -24px; top: -20px; transform: rotate(10deg); }
.cp-final-star { position: absolute; color: var(--coral); font-family: Georgia, serif; font-size: 42px; animation: cpTwinkle 2.4s ease-in-out infinite; }
.cp-final-star.one { left: 18%; top: 15%; }
.cp-final-star.two { right: 18%; bottom: 12%; color: var(--pink); animation-delay: -1s; }

.cp-footer { padding: 28px 0 36px; }
.cp-footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-top: 22px; border-top: 1px solid var(--line); color: #786c75; font-size: 11px; }
.cp-footer-links { display: flex; gap: 18px; }
.cp-footer-links span { color: #8e828a; }
.cp-pointer-spark { position: fixed; z-index: 100; pointer-events: none; color: var(--yellow); font-family: Georgia, serif; font-size: 16px; animation: cpSparkOut .72s ease-out forwards; }

@keyframes cpPulse { 50% { transform: scale(.65); opacity: .55; } }
@keyframes cpTwinkle { 0%,100% { opacity: .38; transform: rotate(-9deg) scale(.72); } 50% { opacity: 1; transform: rotate(8deg) scale(1.15); } }
@keyframes cpSyncHalo { 0% { opacity: .8; transform: scale(.55); } 68%,100% { opacity: 0; transform: scale(1.65); } }
@keyframes cpDriftSpark { 0%,100% { opacity: .2; transform: translateY(4px) rotate(-12deg) scale(.62); } 50% { opacity: var(--o, .9); transform: translateY(-5px) rotate(12deg) scale(1.12); } }
@keyframes cpCatBob { 0%,100% { translate: 0 0; } 50% { translate: 0 -8px; } }
@keyframes cpCatBlink { 0%, 34%, 41%, 77%, 84%, 100% { opacity: 0; } 35%, 40%, 78%, 83% { opacity: 1; } }
@keyframes cpCatPop { 0%, 32%, 43%, 75%, 86%, 100% { transform: translateY(0) rotate(-2deg) scale(1); } 36%, 79% { transform: translateY(-4px) rotate(2deg) scale(1.08,.94); } 40%, 83% { transform: translateY(-2px) rotate(-1deg) scale(.96,1.06); } }
@keyframes cpStickerFlash { 0%, 33%, 43%, 76%, 86%, 100% { opacity: .25; transform: rotate(-8deg) scale(.65); } 37%, 80% { opacity: 1; transform: rotate(9deg) scale(1.25); } }
@keyframes cpBowlFoodSwap { 0%, 39% { opacity: 0; } 41%, 79% { opacity: 1; } 81%, 100% { opacity: 0; } }
@keyframes cpBowlFlash { 0%, 38%, 42%, 78%, 82%, 100% { opacity: 0; } 40%, 80% { opacity: .62; } }
@keyframes cpMarquee { to { transform: translateX(-50%); } }
@keyframes cpEventIn { from { opacity: 0; transform: translateY(-8px); } }
@keyframes cpSparkOut { to { opacity: 0; transform: translate(var(--sx), var(--sy)) rotate(90deg) scale(.2); } }
@keyframes cpHeroCopyIn { from { opacity: 0; transform: translateY(18px); filter: blur(5px); } to { opacity: 1; transform: translateY(0); filter: blur(0); } }
@keyframes cpStageIn { from { opacity: 0; transform: translate(26px, 14px) scale(.96); } to { opacity: 1; transform: none; } }
@keyframes cpPhotoFloat { 0%,100% { transform: rotate(2.2deg) translateY(0); } 50% { transform: rotate(1.25deg) translateY(-7px); } }
@keyframes cpPhotoBreathe { from { transform: scale(1.015); filter: saturate(1.12) contrast(1.08) brightness(1.02); } to { transform: scale(1.055); filter: saturate(1.22) contrast(1.11) brightness(1.06); } }
@keyframes cpPhotoGleam { 0%,58% { left: -28%; opacity: 0; } 66% { opacity: .9; } 79%,100% { left: 118%; opacity: 0; } }
@keyframes cpStatusHover { 0%,100% { transform: rotate(-1deg) translateY(0); } 50% { transform: rotate(.5deg) translateY(-6px); } }
@keyframes cpPawHello { 0%,84%,100% { transform: rotate(-5deg) scale(1); } 88% { transform: rotate(9deg) scale(1.08); } 92% { transform: rotate(-10deg) scale(.98); } 96% { transform: rotate(5deg) scale(1.04); } }
@keyframes cpSmackNudge { 0%,35%,39%,100% { translate: 0 0; } 36% { translate: 2px -1px; } 37% { translate: -3px 1px; } 38% { translate: 1px 0; } }
@keyframes cpSmackRing { 0%,34% { opacity: 0; transform: scale(.35); } 35% { opacity: .9; } 40% { opacity: 0; transform: scale(1.55); } 41%,100% { opacity: 0; } }
@keyframes cpSmackLines { 0%,34% { opacity: 0; transform: rotate(-8deg) scale(.55); } 35% { opacity: .82; } 39% { opacity: 0; transform: rotate(7deg) scale(1.22); } 40%,100% { opacity: 0; } }
@keyframes cpSmackParticle { 0%,34% { opacity: 0; translate: 0 0; transform: scale(.4); } 35% { opacity: 1; } 40% { opacity: 0; translate: var(--px) var(--py); transform: scale(1); } 41%,100% { opacity: 0; } }
@keyframes cpThoughtFloat { 0%,100% { translate: 0 0; transform: rotate(2deg); } 50% { translate: 0 -6px; transform: rotate(.5deg); } }
@keyframes cpFoodIdea { 0%,100% { transform: translateY(1px) rotate(-3deg) scale(.92); } 50% { transform: translateY(-3px) rotate(4deg) scale(1.08); } }

@media (max-width: 920px) {
  .cp-hero { min-height: auto; }
  .cp-hero-grid, .cp-section-head, .cp-handoff-grid { grid-template-columns: 1fr; }
  .cp-hero-stage { min-height: 480px; width: min(620px, 100%); margin: 10px auto 0; }
  .cp-demo-grid { grid-template-columns: 1fr; }
  .cp-demo-panel + .cp-demo-panel { border-left: 0; border-top: 3px solid var(--ink); }
  .cp-demo-action { display: grid; grid-template-columns: 180px 1fr; gap: 24px; align-items: center; }
  .cp-demo-action img { margin: 0; }
  .cp-feature-grid { grid-template-columns: 1fr; }
  .cp-feature { min-height: 320px; }
  .cp-feature + .cp-feature { border-left: 0; border-top: 3px solid var(--ink); }
  .cp-handoff-art { min-height: 500px; }
}

@media (max-width: 640px) {
  .cp-shell { width: min(100% - 24px, 1180px); }
  .cp-nav { min-height: 70px; }
  .cp-nav-links button:not(.cp-nav-cta) { display: none; }
  .cp-hero { padding: 118px 0 58px; }
  .cp-hero h1 { font-size: clamp(52px, 18vw, 76px); }
  .cp-hero-grid { display: flex; gap: 26px; flex-direction: column; }
  .cp-hero-stage { order: -1; min-height: 350px; margin-top: 0; }
  .cp-photo-card { inset: 15px 8px 36px 12px; }
  .cp-smack-fx { left: 24%; top: 62%; width: 92px; }
  .cp-status-card { right: 3px; bottom: 62px; width: 196px; padding: 8px; border-radius: 11px; }
  .cp-answer-line { grid-template-columns: 28px minmax(0,1fr) auto; gap: 6px; }
  .cp-answer-line > img { width: 28px; height: 28px; }
  .cp-answer-line b { font-size: 10px; }
  .cp-hero-copy .cp-kicker, .cp-title-desktop, .cp-hero-copy > p:not(.cp-kicker) { display: none; }
  .cp-title-mobile { display: block; margin-top: 5px; font-size: clamp(58px, 19vw, 78px) !important; line-height: .82 !important; }
  .cp-question-mark { color: var(--pink); font-family: Georgia, serif; font-size: .8em; font-style: italic; }
  .cp-question-word { display: inline-block; min-width: 2.7em; margin-left: .22em; color: rgba(255,250,241,.46); font-family: Georgia, serif; font-size: .34em; font-style: italic; letter-spacing: -.035em; text-transform: lowercase; vertical-align: .2em; transform-origin: 0 60%; transition: opacity .34s ease, filter .34s ease, transform .34s cubic-bezier(.2,.75,.25,1); }
  .cp-question-word.is-out { opacity: 0; filter: blur(4px); transform: translateX(7px); }
  .cp-stage-kicker { position: absolute; z-index: 10; top: 27px; left: 26px; display: inline-flex; align-items: center; gap: 7px; max-width: calc(100% - 76px); margin: 0; padding: 8px 10px; border: 2px solid var(--ink); border-radius: 7px; background: var(--lime); box-shadow: 4px 4px 0 var(--ink); color: var(--ink); font-size: 8px; font-weight: 950; letter-spacing: .1em; line-height: 1.25; text-transform: uppercase; transform: rotate(-2deg); }
  .cp-stage-kicker::before { content: ""; width: 7px; height: 7px; flex: 0 0 auto; border-radius: 50%; background: var(--coral); }
  .cp-cat-sticker--black { left: -28px; width: 132px; }
  .cp-cat-sticker--lowpoly { right: 12px; top: 78px; width: 76px; transform: rotate(-5deg); }
  .cp-cat-sticker--watching { right: 10px; bottom: -34px; width: 96px; }
  .cp-cat-sticker--tiny { left: 33%; top: -42px; width: 68px; }
  .cp-page-cat { width: 96px; opacity: .82; }
  .cp-page-cat--demo { display: none; }
  .cp-page-cat--features { left: -28px; bottom: 10px; width: 118px; }
  .cp-page-cat--handoff { right: 8px; bottom: 10px; width: 98px; }
  .cp-section-spark { display: none; }
  .cp-home-glance { margin-top: 35px; border-radius: 15px; }
  .cp-glance-head { padding: 13px 14px 12px; }
  .cp-glance-head h3 { font-size: 19px; }
  .cp-glance-cats img { width: 37px; height: 37px; }
  .cp-glance-body { grid-template-columns: 1fr; }
  .cp-glance-cat { grid-template-columns: 38px minmax(0,1fr); gap: 11px; padding: 12px 13px; }
  .cp-glance-cat + .cp-glance-cat { border-top: 1px solid rgba(255,255,255,.14); border-left: 0; }
  .cp-glance-cat > img { width: 38px; height: 38px; }
  .cp-glance-cat b { font-size: 13px; }
  .cp-glance-cat span { font-size: 9px; }
  .cp-glance-action { grid-column: 1 / -1; min-height: 39px; border-top: 1px solid rgba(35,26,37,.2); border-left: 0; }
  .cp-section { padding: 76px 0; }
  .cp-section-head { gap: 18px; margin-bottom: 28px; }
  .cp-demo-stickers { justify-content: center; gap: 9px; margin: 12px 0 4px; }
  .cp-demo-bowl-hero { width: 148px; margin: -45px auto 8px; }
  .cp-blink-sticker { width: 88px; }
  .cp-demo-hello { width: min(calc(100vw - 28px), 430px); margin: -30px auto 18px; }
  .cp-demo-hello .cp-blink-sticker { width: 100%; }
  .cp-demo-hello::after { right: 7%; bottom: 9%; font-size: 15px; }
  .cp-one-bowl-art { width: 165px; margin: 0; aspect-ratio: 1 / 1; border-radius: 12px; box-shadow: 4px 5px 0 var(--pink); }
  .cp-one-bowl-art img { object-position: 75% center; }
  .cp-section h2 { font-size: clamp(39px, 13vw, 58px); }
  .cp-demo-panel { padding: 17px; }
  .cp-demo-top { align-items: flex-start; }
  .cp-demo-answer { grid-template-columns: 58px 1fr; }
  .cp-demo-avatar { width: 58px; height: 58px; }
  .cp-demo-avatar img { width: 54px; height: 54px; }
  .cp-event { grid-template-columns: 52px 8px 1fr; gap: 9px; }
  .cp-demo-action { display: block; }
  .cp-demo-action img { width: 180px; margin: 0 auto 8px; }
  .cp-feature { min-height: 350px; }
  .cp-handoff-art { min-height: 410px; }
  .cp-handoff-peek { top: 15px; left: 14px; width: 118px; border-width: 4px; }
  .cp-food-thought { top: 17px; right: 12px; min-width: 128px; gap: 6px; padding: 10px 12px; }
  .cp-food-thought span { font-size: 20px; }
  .cp-final-inner { min-height: 520px; }
  .cp-final-inner::before { background-position: 63% 52%; opacity: .21; }
  .cp-final-cat { width: 135px; opacity: .88; }
  .cp-final-cat--left { bottom: -12px; }
  .cp-final-cat--right { top: -14px; }
  .cp-footer-inner { align-items: flex-start; flex-direction: column; }
}

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