:root {
  color-scheme: dark;
  --ink: #f9f5f8;
  --muted: #c5bdc4;
  --soft: #f3dce8;
  --paper: #111113;
  --surface: #1b1b1f;
  --surface-2: #242328;
  --line: #3b373d;
  --line-strong: #51494f;
  --cta: #D92F73;
  --green: #68c997;
  --gold: #e2b65e;
  --radius: 15px;
  --topbar-height: 72px;
  --feature-phone-frame-height: calc(var(--feature-phone-width-by-height) * 2680 / 1240);
  --feature-sticky-phone-offset-y: 6px;
  --feature-sticky-center-top: calc(50vh - (var(--feature-phone-frame-height) / 2) - var(--feature-sticky-phone-offset-y));
  --feature-sticky-visible-top: var(--feature-sticky-center-top);
  --feature-sticky-hidden-top: var(--feature-sticky-center-top);
  --feature-sticky-top: var(--feature-sticky-visible-top);
  --feature-phone-width-by-height: 340px;
  --filter-flow-row-gap: 14px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@supports (height: 100dvh) {
  :root {
    --feature-sticky-center-top: calc(50dvh - (var(--feature-phone-frame-height) / 2) - var(--feature-sticky-phone-offset-y));
  }
}

@media (min-width: 900px) and (max-height: 900px) {
  :root {
    --feature-phone-width-by-height: 328px !important;
  }
}

html[data-nav-hidden="true"] {
  --feature-sticky-top: var(--feature-sticky-hidden-top);
}

html[data-nav-hidden="true"]:has(.topbar:focus-within) {
  --feature-sticky-top: var(--feature-sticky-visible-top);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: var(--topbar-height);
  background: var(--paper);
  color: var(--ink);
  letter-spacing: 0;
  line-break: strict;
  overflow-wrap: normal;
  word-break: keep-all;
}

a {
  color: inherit;
}

a[href^="mailto:"] {
  overflow-wrap: anywhere;
}

button {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

:focus {
  outline: 3px solid var(--green);
  outline-style: solid;
  outline-offset: 3px;
  box-shadow: 0 0 0 5px rgba(104, 201, 151, 0.18);
}

.is-focus-visible {
  outline: 3px solid var(--green) !important;
  outline-style: solid !important;
  outline-offset: 3px !important;
  box-shadow: 0 0 0 5px rgba(104, 201, 151, 0.2) !important;
}

.site-shell {
  min-height: 100vh;
  overflow-x: clip;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(17, 17, 19, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  transform: translate3d(0, 0, 0);
  transition: transform 220ms ease;
  will-change: transform;
}

html[data-nav-hidden="true"] .topbar {
  pointer-events: none;
  transform: translate3d(0, calc(-1 * var(--topbar-height) - 2px), 0);
}

html[data-nav-hidden="true"] .topbar:focus-within {
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.nav,
.wrap,
.hero-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  min-width: 0;
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  min-width: 0;
  flex: 0 1 auto;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  max-width: 100%;
}

.brand-lockup__bear {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-lockup__wordmark {
  width: 106px;
  height: auto;
  flex: 0 1 auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px 18px;
  min-width: 0;
  color: #ddd6dc;
  font-size: 14px;
}

.nav-links a {
  min-width: 0;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--cta);
}

.nav-links .cta-link,
.nav-links .cta-link:hover {
  color: #fff;
}

.cta-link,
.secondary-link,
.demo-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 44px;
  padding: 0 18px;
  border-radius: var(--radius);
  corner-shape: squircle;
  font-weight: 850;
  text-align: center;
  text-decoration: none;
}

.cta-link,
.demo-action {
  border: 0;
  background: var(--cta);
  color: #fff;
  box-shadow: 0 14px 30px rgba(217, 47, 115, 0.24);
}

.secondary-link {
  border: 1px solid var(--line-strong);
  background: var(--surface-2);
  color: var(--ink);
}

.demo-action {
  cursor: pointer;
}

.demo-action:disabled {
  cursor: progress;
  opacity: 0.78;
}

h1,
h2,
h3,
p {
  min-width: 0;
  margin-top: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 18px;
  font-size: 60px;
  line-height: 1.04;
}

.lead {
  max-width: 610px;
  color: #d4ccd2;
  font-size: 20px;
  line-height: 1.6;
}

.eyebrow,
.mini-label {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.eyebrow {
  margin: 0 0 12px;
}

.mini-label {
  display: block;
  margin-bottom: 6px;
}

.hero {
  min-height: min(620px, calc(100vh - 72px));
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #141416 0%, #17171a 100%);
}

.hero-inner {
  padding: 44px 0 52px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 44px;
  align-items: center;
}

.hero-inner > * {
  min-width: 0;
}

.hero h1,
.hero .lead,
.hero-actions,
.hero-visual {
  animation: fadeUp 680ms ease both;
}

.hero .lead {
  animation-delay: 90ms;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
  animation-delay: 160ms;
}

.hero-visual {
  width: 100%;
  max-width: 100%;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 12px;
  min-width: 0;
  animation-delay: 220ms;
}

.hero-character {
  width: min(330px, 78%);
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 28px 42px rgba(217, 47, 115, 0.2));
}

.filter-ribbon {
  width: min(500px, 100%);
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  corner-shape: squircle;
  background: rgba(36, 35, 40, 0.92);
  min-width: 0;
}

.filter-ribbon img {
  width: 48px;
  height: 48px;
  margin: 0 auto;
  object-fit: contain;
}

.hero--timeline {
  background:
    radial-gradient(circle at 78% 18%, rgba(104, 201, 151, 0.16), transparent 30%),
    radial-gradient(circle at 48% 84%, rgba(226, 182, 94, 0.12), transparent 34%),
    linear-gradient(180deg, #121214 0%, #17171a 100%);
}

.hero-timeline-inner {
  grid-template-columns: minmax(500px, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(34px, 4vw, 58px);
}

.hero--timeline h1 {
  max-width: 610px;
  font-size: clamp(33px, 3.55vw, 54px);
  line-height: 1.07;
}

.hero--timeline h1 span {
  display: block;
}

.hero--timeline .lead {
  max-width: 540px;
}

.hero-timeline-visual {
  min-height: 530px;
}

.timeline-board {
  position: relative;
  width: min(640px, 100%);
  aspect-ratio: 1.22 / 1;
  min-width: 0;
  overflow: clip;
  isolation: isolate;
}

.timeline-board::before {
  position: absolute;
  inset: 6% 0 7% 9%;
  z-index: -1;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(26, 26, 30, 0.78);
  box-shadow: 0 36px 82px rgba(0, 0, 0, 0.36);
}

.timeline-video-card,
.timeline-card,
.timeline-filter-strip,
.timeline-chef,
.timeline-rail {
  position: absolute;
  min-width: 0;
}

.timeline-video-card {
  top: 5%;
  left: 0;
  z-index: 2;
  width: 45%;
  aspect-ratio: 0.78 / 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: #050506;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.42);
  animation: timelineVideoFloat 7s ease-in-out infinite;
}

.timeline-video-card video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: 0;
  filter: saturate(1.08) contrast(1.04);
  transition: opacity 180ms ease;
}

.timeline-video-card video.is-ready {
  opacity: 1;
}

.timeline-video-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.34), transparent 38%, rgba(0, 0, 0, 0.62)),
    radial-gradient(circle at 50% 42%, transparent 0 30%, rgba(0, 0, 0, 0.12) 62%);
  pointer-events: none;
}

.timeline-video-meta {
  position: absolute;
  right: 13px;
  bottom: 13px;
  left: 13px;
  z-index: 2;
  display: grid;
  gap: 4px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: calc(var(--radius) * 0.9);
  background: rgba(11, 11, 13, 0.72);
  color: #fff;
  backdrop-filter: blur(12px);
}

.timeline-video-meta span {
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
}

.timeline-video-meta strong {
  font-size: 19px;
  line-height: 1.2;
}

.timeline-rail {
  top: 17%;
  bottom: 23%;
  left: 45.5%;
  z-index: 1;
  width: 2px;
  background: linear-gradient(180deg, rgba(104, 201, 151, 0), rgba(104, 201, 151, 0.82), rgba(217, 47, 115, 0));
}

.timeline-rail span {
  position: absolute;
  left: 50%;
  width: 13px;
  height: 13px;
  border: 2px solid #121214;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 22px rgba(104, 201, 151, 0.45);
  transform: translateX(-50%);
  animation: timelineDot 1.7s ease-in-out infinite;
}

.timeline-rail span:nth-child(1) {
  top: 5%;
}

.timeline-rail span:nth-child(2) {
  top: 45%;
  animation-delay: 220ms;
}

.timeline-rail span:nth-child(3) {
  top: 84%;
  animation-delay: 440ms;
}

.timeline-card {
  z-index: 3;
  width: 46%;
  display: grid;
  gap: 5px;
  padding: 16px 17px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(247, 241, 232, 0.94));
  color: #232125;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.26);
  animation: timelineCardBreathe 6.4s ease-in-out infinite;
}

.timeline-card--ingredients {
  top: 9%;
  right: 4%;
}

.timeline-card--steps {
  top: 33%;
  right: 0;
  animation-delay: 180ms;
}

.timeline-card--loop {
  top: 57%;
  right: 5%;
  animation-delay: 360ms;
}

.timeline-card--cart {
  bottom: 6%;
  left: 19%;
  width: 41%;
  background:
    linear-gradient(180deg, rgba(35, 55, 45, 0.96), rgba(30, 42, 38, 0.94));
  color: #effff5;
  animation-delay: 540ms;
}

.timeline-card-kicker {
  color: var(--cta);
  font-size: 12px;
  font-weight: 950;
}

.timeline-card--cart .timeline-card-kicker {
  color: var(--green);
}

.timeline-card strong {
  min-width: 0;
  font-size: 18px;
  line-height: 1.24;
}

.timeline-card small {
  color: #7d7178;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.timeline-card--cart small {
  color: #bfdfcd;
}

.timeline-filter-strip {
  right: 2%;
  bottom: 3%;
  z-index: 4;
  display: flex;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(19, 19, 22, 0.78);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.timeline-filter-strip img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  animation: timelineIconNudge 4.8s ease-in-out infinite;
}

.timeline-filter-strip img:nth-child(2) {
  animation-delay: 140ms;
}

.timeline-filter-strip img:nth-child(3) {
  animation-delay: 280ms;
}

.timeline-filter-strip img:nth-child(4) {
  animation-delay: 420ms;
}

.timeline-filter-strip img:nth-child(5) {
  animation-delay: 560ms;
}

.timeline-chef {
  top: 1%;
  right: 28%;
  z-index: 4;
  width: 70px;
  height: 70px;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(217, 47, 115, 0.22));
  animation: timelineChefFloat 6s ease-in-out infinite;
}

.section {
  padding: 78px 0;
}

.section.alt {
  background: #18181b;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 32px;
}

.section-head h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: 46px;
  line-height: 1.1;
}

.section-head p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.68;
}

.product-preview-intro {
  scroll-margin-top: calc(var(--topbar-height) + 24px);
  padding: 86px 0 42px;
  background: #151518;
}

.feature-intro {
  max-width: 790px;
  margin-bottom: 0;
}

.feature-intro h2 {
  max-width: 780px;
}

.feature-intro p {
  max-width: 700px;
}

.feature-sequence {
  padding: 16px 0 88px;
  background: #151518;
  border-bottom: 1px solid var(--line);
}

.feature-story {
  display: grid;
  grid-template-columns: minmax(300px, 0.62fr) minmax(0, 1fr);
  gap: 0 clamp(42px, 7vw, 96px);
  align-items: start;
  min-width: 0;
}

.feature-phone-sticky {
  position: sticky;
  top: var(--feature-sticky-top);
  grid-column: 1;
  grid-row: 1;
  display: grid;
  justify-items: center;
  min-width: 0;
  padding-top: 6px;
  transition: top 260ms ease;
}

.phone-mockup {
  position: relative;
  width: var(--feature-phone-width-by-height);
  aspect-ratio: 1240 / 2680;
  min-width: 0;
  filter: drop-shadow(0 30px 46px rgba(0, 0, 0, 0.42));
}

.phone-frame {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.feature-chapters {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-chapter {
  min-height: 68vh;
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(30px, 5vw, 62px) clamp(10px, 3vw, 28px);
  border-top: 1px solid var(--line);
  opacity: 0.38;
  transform: translate3d(0, 18px, 0);
  transition: opacity 360ms ease, transform 360ms ease;
}

.feature-chapters > li:first-child .feature-chapter {
  border-top: 0;
}

.feature-chapter.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.feature-chapter__number {
  color: var(--cta);
  font-size: 14px;
  font-weight: 950;
}

.feature-chapter h3 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.05;
}

.feature-chapter p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.68;
}

.feature-chapter ul {
  display: grid;
  gap: 10px;
  margin: 4px 0 0;
  padding-left: 20px;
  color: #f3edf2;
  line-height: 1.55;
}

.feature-chapters > li:last-child .feature-chapter {
  min-height: 124vh;
}

.demo-shell {
  display: grid;
  grid-template-columns: minmax(230px, 0.42fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  min-width: 0;
}

.demo-phone,
.step,
.plan,
.contact-panel,
.legal-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  corner-shape: squircle;
  background: var(--surface);
}

.demo-phone {
  min-width: 0;
  padding: 18px;
  background: #202024;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
}

.demo-device-top {
  min-height: 42px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.demo-pill {
  color: var(--ink);
  font-size: 15px;
}

.demo-link-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
  min-width: 0;
  margin-bottom: 14px;
}

.demo-url {
  display: block;
  min-width: 0;
  padding: 14px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  corner-shape: squircle;
  background: #151518;
  color: #eee7ed;
  font-size: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.demo-progress {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding: 10px 12px;
  border: 1px solid rgba(104, 201, 151, 0.28);
  border-radius: var(--radius);
  corner-shape: squircle;
  background: rgba(104, 201, 151, 0.08);
  color: #d9f4e6;
}

.demo-spinner {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  border: 2px solid rgba(104, 201, 151, 0.28);
  border-top-color: var(--green);
  border-radius: 50%;
  opacity: 0;
}

[data-demo-state="processing"] .demo-spinner {
  opacity: 1;
  animation: progressSpin 760ms linear infinite;
}

.demo-product {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.74fr);
  gap: 14px;
  min-width: 0;
  transition: opacity 260ms ease, transform 260ms ease;
}

[data-demo-state="idle"] .demo-product {
  opacity: 0.72;
}

[data-demo-state="processing"] .demo-product {
  opacity: 0.58;
  transform: translateY(4px);
}

.demo-recipe-card,
.demo-filter-panel {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  corner-shape: squircle;
  background: #18181b;
}

.demo-recipe-card h3 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 24px;
}

.demo-recipe-grid {
  display: grid;
  gap: 14px;
}

.demo-recipe-grid strong,
.demo-panel-head strong {
  display: block;
  margin-bottom: 6px;
}

.demo-recipe-grid p,
.demo-recipe-grid ol {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.demo-recipe-grid ol {
  padding-left: 20px;
}

.demo-filter-panel {
  display: grid;
  gap: 14px;
  align-content: start;
}

.demo-panel-head {
  min-width: 0;
}

.demo-filter-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  min-width: 0;
}

.demo-filter {
  min-width: 0;
  min-height: 86px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 5px;
  padding: 8px 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  corner-shape: squircle;
  background: #222126;
  color: var(--ink);
  cursor: pointer;
}

.demo-filter img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.demo-filter span {
  min-width: 0;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
}

.demo-filter.is-active {
  border-color: rgba(217, 47, 115, 0.78);
  background: rgba(217, 47, 115, 0.14);
}

.demo-saved-row {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(226, 182, 94, 0.4);
  border-radius: var(--radius);
  corner-shape: squircle;
  background: rgba(226, 182, 94, 0.08);
}

.demo-saved-row--pulse {
  animation: savedPulse 460ms ease;
}

.demo-saved-row img {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  object-fit: contain;
}

.demo-saved-row div {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.demo-saved-row small {
  color: #e8d19f;
  line-height: 1.35;
}

.demo-shell.real-demo {
  grid-template-columns: minmax(300px, 0.95fr) minmax(300px, 0.72fr);
  align-items: center;
}

.real-phone {
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.phone-screen {
  position: relative;
  aspect-ratio: 9 / 20;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  background: #050506;
}

.phone-screen-aperture {
  position: absolute;
  top: 5.2239%;
  right: 6.4516%;
  bottom: 5.2239%;
  left: 6.4516%;
  z-index: 1;
  width: auto;
  height: auto;
  border-radius: 5.8%;
}

.app-capture,
.analysis-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translate3d(0, 10px, 0) scale(0.992);
  transition: opacity 420ms ease, transform 420ms ease;
}

.app-capture {
  object-fit: cover;
}

.app-capture-panel {
  overflow: hidden;
  background: #050506;
}

.app-capture-panel > img,
.capture-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-capture-panel > img {
  z-index: 1;
}

.capture-video {
  z-index: 2;
  display: block;
  background: #050506;
}

.app-capture--link > img {
  filter: brightness(0.58);
}

.link-demo-app {
  position: absolute;
  left: 0;
  top: 0;
  --link-demo-cycle: 6.2s;
  width: 100%;
  height: 100%;
  min-width: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 12%, rgba(217, 47, 115, 0.18), transparent 34%),
    linear-gradient(180deg, #101013 0%, #050506 100%);
  color: #f8f4f8;
  font-size: 14px;
  transform: translate3d(var(--phone-ui-offset-x, 0px), var(--phone-ui-offset-y, 0px), 0) scale(var(--phone-ui-scale, 1));
  transform-origin: 0 0;
  will-change: transform;
}

.link-demo-header {
  position: absolute;
  top: 24px;
  right: 20px;
  left: 20px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  height: 28px;
  min-width: 0;
}

.link-demo-logo,
.link-demo-badge {
  min-width: 0;
  font-weight: 920;
  line-height: 1.2;
  white-space: nowrap;
}

.link-demo-logo {
  font-size: 23px;
}

.link-demo-badge {
  flex: 0 1 auto;
  max-width: 124px;
  padding: 5px 10px;
  overflow: hidden;
  border: 1px solid rgba(104, 201, 151, 0.28);
  border-radius: 999px;
  color: #9ff0bf;
  font-size: 12px;
  text-overflow: ellipsis;
}

.link-demo-search {
  position: absolute;
  top: 66px;
  right: 20px;
  left: 20px;
  z-index: 1;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  height: 44px;
  min-width: 0;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #9e98a0;
}

.link-demo-search span {
  position: relative;
  width: 20px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.link-demo-search span::after {
  position: absolute;
  right: -5px;
  bottom: 0;
  width: 8px;
  height: 2px;
  content: "";
  background: currentColor;
  border-radius: 999px;
  transform: rotate(45deg);
}

.link-demo-search strong {
  min-width: 0;
  overflow: hidden;
  font-size: 15px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.youtube-recipe-grid {
  position: absolute;
  top: 124px;
  right: 16px;
  left: 16px;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 156px;
  align-content: start;
  gap: 10px;
  min-height: 0;
  overflow: hidden;
  opacity: 0.4;
}

.youtube-recipe-card {
  display: grid;
  grid-template-rows: 86px minmax(0, 1fr);
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.045);
}

.youtube-thumb {
  position: relative;
  height: 86px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.44), transparent 9%),
    radial-gradient(circle at 68% 50%, rgba(255, 255, 255, 0.22), transparent 12%),
    linear-gradient(135deg, #4b1d36, #d92f73 48%, #f1b462);
}

.youtube-recipe-card--b .youtube-thumb {
  background:
    radial-gradient(circle at 25% 35%, rgba(255, 255, 255, 0.34), transparent 10%),
    radial-gradient(circle at 72% 42%, rgba(255, 255, 255, 0.18), transparent 11%),
    linear-gradient(135deg, #214a42, #68c997 45%, #e2b65e);
}

.youtube-recipe-card--c .youtube-thumb {
  background:
    radial-gradient(circle at 24% 45%, rgba(255, 255, 255, 0.28), transparent 11%),
    radial-gradient(circle at 72% 28%, rgba(255, 255, 255, 0.25), transparent 10%),
    linear-gradient(135deg, #352f66, #7658d7 48%, #f1b462);
}

.youtube-recipe-card--d .youtube-thumb {
  background:
    radial-gradient(circle at 36% 30%, rgba(255, 255, 255, 0.3), transparent 10%),
    radial-gradient(circle at 64% 58%, rgba(255, 255, 255, 0.2), transparent 12%),
    linear-gradient(135deg, #5a3a1e, #e2b65e 48%, #68c997);
}

.youtube-thumb::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(150deg, transparent 0 28%, rgba(0, 0, 0, 0.2) 28% 29%, transparent 29%),
    linear-gradient(24deg, transparent 0 54%, rgba(255, 255, 255, 0.16) 54% 55%, transparent 55%);
  opacity: 0.72;
}

.youtube-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 34px;
  height: 25px;
  border-radius: 7px;
  background: rgba(220, 25, 46, 0.94);
  transform: translate(-50%, -50%);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.32);
}

.youtube-play::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  content: "";
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #fff;
  transform: translate(-36%, -50%);
}

.youtube-thumb em {
  position: absolute;
  right: 7px;
  bottom: 7px;
  padding: 0.18em 0.42em;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.76);
  color: #fff;
  font-size: 11px;
  font-style: normal;
  font-weight: 860;
  line-height: 1.2;
}

.youtube-card-copy {
  display: grid;
  align-content: start;
  gap: 2px;
  min-width: 0;
  padding: 9px;
}

.youtube-card-copy strong,
.youtube-card-copy span {
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: keep-all;
}

.youtube-card-copy strong {
  color: #f8f4f8;
  font-size: 14px;
  line-height: 1.24;
}

.youtube-card-copy span {
  color: #a9a2aa;
  font-size: 11px;
  line-height: 1.28;
}

.youtube-video-card {
  position: absolute;
  top: 20%;
  left: 38%;
  z-index: 4;
  width: min(78%, 320px);
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  transform: translateX(-8%);
  transform-origin: 50% 65%;
  animation: externalVideoStep 6.2s ease-in-out infinite;
  pointer-events: none;
}

[data-feature-state]:not([data-feature-state="link"]) .youtube-video-card {
  visibility: hidden;
  opacity: 0;
}

.external-video-preview {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 14px;
  background: #050506;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.54);
}

.youtube-video-card::after {
  position: absolute;
  inset: 0;
  content: "";
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.36));
  pointer-events: none;
}

.youtube-video-tag,
.youtube-share-button,
.youtube-share-sheet {
  position: absolute;
  z-index: 2;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.32);
}

.youtube-video-tag {
  top: 10px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-width: calc(100% - 92px);
  padding: 6px 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.youtube-video-tag span {
  position: relative;
  width: 18px;
  height: 13px;
  flex: 0 0 auto;
  border-radius: 4px;
  background: #ff0033;
}

.youtube-video-tag span::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  content: "";
  border-top: 3.8px solid transparent;
  border-bottom: 3.8px solid transparent;
  border-left: 6px solid #fff;
  transform: translate(-36%, -50%);
}

.youtube-share-button {
  right: 10px;
  bottom: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  min-height: 34px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: #141317;
  font-size: 13px;
  font-weight: 920;
  line-height: 1;
  animation: youtubeShareButtonStep 6.2s ease-in-out infinite;
}

.youtube-share-sheet {
  right: 10px;
  bottom: 52px;
  display: grid;
  gap: 5px;
  width: min(72%, 214px);
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(22, 22, 25, 0.94);
  color: #fff;
  opacity: 0;
  transform: translateY(10px) scale(0.94);
  transform-origin: 88% 100%;
  animation: youtubeShareSheetStep 6.2s ease-in-out infinite;
}

.youtube-share-sheet strong,
.youtube-share-sheet span,
.youtube-share-sheet em {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.youtube-share-sheet strong {
  font-size: 13px;
  line-height: 1.12;
}

.youtube-share-sheet span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #f5f0f4;
  font-size: 13px;
  font-weight: 850;
}

.youtube-share-sheet em {
  color: #bfb8c0;
  font-size: 11px;
  font-style: normal;
}

.link-paste-sheet {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  display: grid;
  grid-template-rows: 4px auto 54px 54px;
  gap: 10px;
  height: 254px;
  min-width: 0;
  padding: 12px 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px 28px 0 0;
  background: rgba(31, 31, 36, 0.9);
  box-shadow: 0 -20px 48px rgba(0, 0, 0, 0.48);
}

.sheet-handle {
  justify-self: center;
  width: 62px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
}

.paste-copy {
  min-width: 0;
}

.paste-copy strong {
  display: block;
  color: #fff;
  font-size: 23px;
  line-height: 1.16;
}

.paste-copy p {
  margin: 4px 0 0;
  color: #bfb8c0;
  font-size: 14px;
  line-height: 1.35;
}

.paste-field {
  position: relative;
  display: flex;
  align-items: center;
  height: 54px;
  min-width: 0;
  padding: 0 14px;
  overflow: hidden;
  border: 1px solid rgba(244, 143, 201, 0.9);
  border-radius: 14px;
  background: #111114;
  color: #e9e1e8;
  animation: pasteFieldStep var(--link-demo-cycle) ease-in-out infinite;
}

.paste-url {
  flex: 0 1 auto;
  max-width: calc(100% - 6px);
  min-width: 0;
  overflow: hidden;
  font-size: 15px;
  line-height: 1.2;
  opacity: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
  animation: pasteUrlStep var(--link-demo-cycle) ease-in-out infinite;
}

.paste-field i {
  width: 2px;
  height: 1.35em;
  flex: 0 0 auto;
  margin-left: 2px;
  border-radius: 999px;
  background: #fff;
  animation: pasteCaret 980ms steps(1) infinite;
}

.paste-submit {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  min-width: 0;
  overflow: hidden;
  border-radius: 14px;
  background: var(--cta);
  color: #fff;
  font-size: 18px;
  font-weight: 920;
  line-height: 1.2;
  text-align: center;
  animation: pasteSubmitStep var(--link-demo-cycle) ease-in-out infinite;
}

.link-analysis-card {
  position: absolute;
  top: 350px;
  right: 18px;
  left: 18px;
  z-index: 5;
  display: grid;
  justify-items: center;
  gap: 16px;
  min-width: 0;
  padding: 28px 24px 30px;
  border: 1px solid rgba(217, 47, 115, 0.48);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 0%, rgba(217, 47, 115, 0.24), transparent 56%),
    linear-gradient(135deg, rgba(55, 19, 40, 0.995), rgba(12, 12, 15, 0.995) 58%);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.58);
  opacity: 0;
  text-align: center;
  transform: translateY(16px) scale(0.94);
  animation: analysisCardStep var(--link-demo-cycle) ease-in-out infinite;
  backdrop-filter: blur(14px);
}

.cursor-cue {
  --cursor-size: 96px;
  --cursor-hotspot-x: calc(var(--cursor-size) * 0.2604);
  --cursor-hotspot-y: calc(var(--cursor-size) * 0.0833);
  --cursor-ring-sprite-size: 72px;
  position: absolute;
  left: 96%;
  top: 37%;
  z-index: 9;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
  animation: cursorCueStep var(--link-demo-cycle, 6.2s) linear infinite;
}

[data-feature-state]:not([data-feature-state="link"]) .cursor-cue {
  visibility: hidden;
  opacity: 0;
}

.cursor-cue__sprite {
  position: absolute;
  left: calc(var(--cursor-hotspot-x) * -1);
  top: calc(var(--cursor-hotspot-y) * -1);
  z-index: 2;
  display: block;
  width: var(--cursor-size);
  height: var(--cursor-size);
  background: url("/assets/app-demo/cursor-96.png") center / contain no-repeat;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.55));
  transform-origin: var(--cursor-hotspot-x) var(--cursor-hotspot-y);
  animation: cursorSpritePress var(--link-demo-cycle, 6.2s) ease-in-out infinite;
}

.cursor-cue::before,
.cursor-cue::after {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  box-sizing: border-box;
  content: "";
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.cursor-cue::before {
  width: var(--cursor-ring-sprite-size);
  height: var(--cursor-ring-sprite-size);
  background: url("/assets/app-demo/cursor-click-ring-sprite.png") 0 0 / 900% 100% no-repeat;
  animation: cursorRingSpriteStep var(--link-demo-cycle, 6.2s) linear infinite;
}

.cursor-cue::after {
  display: none;
  content: none;
}

.link-analysis-card .analysis-glyph {
  width: 106px;
  height: 82px;
  justify-content: center;
  gap: 13px;
  padding: 17px;
}

.link-analysis-card strong,
.link-analysis-card p {
  min-width: 0;
  margin: 0;
}

.link-analysis-card strong {
  display: block;
  color: #fff;
  font-size: 45px;
  line-height: 1.08;
}

.link-analysis-card p {
  max-width: 12em;
  color: #eee7ed;
  font-size: 24px;
  line-height: 1.42;
}

.link-analysis-card .analysis-progress {
  display: none;
}

.capture-video--preview {
  top: 14%;
  right: 8%;
  bottom: auto;
  left: auto;
  width: 42%;
  height: 25%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: calc(var(--radius) * 0.8);
  corner-shape: squircle;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.54);
}

.phone-processing-card {
  position: absolute;
  right: 8%;
  bottom: 9%;
  left: 8%;
  z-index: 4;
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 18px 16px;
  text-align: center;
  border: 1px solid rgba(217, 47, 115, 0.34);
  border-radius: var(--radius);
  corner-shape: squircle;
  background:
    radial-gradient(circle at 50% 0%, rgba(217, 47, 115, 0.25), transparent 58%),
    rgba(16, 15, 18, 0.91);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(14px);
}

.phone-processing-card strong {
  color: #fff;
  font-size: clamp(22px, 6.4vw, 30px);
  line-height: 1.12;
}

.phone-processing-card p {
  max-width: 230px;
  margin: 0;
  color: #d8d0d8;
  font-size: clamp(13px, 3.5vw, 16px);
  line-height: 1.5;
}

.app-capture--loop {
  --loop-card-bottom: 36px;
  --loop-card-height: 164px;
  --loop-side-card-width: 54px;
  --loop-side-card-height: 126px;
  --loop-side-card-bottom: 10px;
  --loop-side-inset: 8px;
  --loop-side-offset: 82px;
  --loop-card-width: 176px;
  background: #050506;
}

.app-capture--loop::after {
  position: absolute;
  inset: 0;
  z-index: 4;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), transparent 36%, rgba(0, 0, 0, 0.22) 68%, rgba(0, 0, 0, 0.72));
  pointer-events: none;
}

.capture-video--loop,
.app-capture-panel > .loop-video-poster {
  position: absolute;
  top: 0;
  right: 0;
  bottom: auto;
  left: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: #050506;
  object-fit: cover;
  object-position: 50% 50%;
}

.app-capture-panel > .loop-video-poster {
  z-index: 2;
}

.capture-video--loop {
  z-index: 3;
  opacity: 0;
  transition: opacity 180ms ease;
}

.app-capture--loop.is-video-playing .capture-video--loop {
  opacity: 1;
}

.app-capture--loop.is-loop-media-shifting .loop-video-poster,
.app-capture--loop.is-loop-media-shifting .capture-video--loop {
  animation: loopMediaSlideIn 340ms cubic-bezier(0.17, 0.84, 0.26, 1) both;
}

.loop-card-carousel {
  position: absolute;
  bottom: var(--loop-card-bottom);
  left: 0;
  z-index: 6;
  width: 100%;
  height: var(--loop-card-height);
  pointer-events: none;
}

.loop-card-carousel::before {
  position: absolute;
  top: -20px;
  left: 50%;
  z-index: 8;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(217, 47, 115, 0.94);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
  color: #ffe6f0;
  font-size: 28px;
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
  content: "↻ 구간반복";
  pointer-events: none;
  transform: translateX(-50%);
}

.loop-context-card {
  position: absolute;
  bottom: 0;
  left: calc(50% - (var(--loop-current-card-width) / 2));
  min-width: 0;
  width: var(--loop-current-card-width);
  height: var(--loop-card-height);
  --loop-current-card-width: var(--loop-side-card-width);
  --loop-card-offset: 0px;
  --loop-card-scale: 1;
  display: grid;
  align-content: center;
  gap: 9px;
  overflow: hidden;
  padding: 38px 17px 17px;
  border: 1px solid rgba(217, 47, 115, 0.42);
  border-radius: var(--radius);
  corner-shape: squircle;
  background:
    radial-gradient(circle at 20% 0%, rgba(217, 47, 115, 0.22), transparent 52%),
    rgba(20, 13, 20, 0.88);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.46);
  color: inherit;
  font: inherit;
  text-align: left;
  appearance: none;
  backdrop-filter: blur(14px);
  pointer-events: auto;
  transform: translate3d(var(--loop-card-offset), 0, 0) scale(var(--loop-card-scale));
  transition: opacity 200ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 420ms cubic-bezier(0.17, 0.84, 0.26, 1);
}

.loop-context-card--no-motion {
  transition: opacity 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 0ms linear;
}

.loop-context-card--sliding {
  transition: opacity 220ms ease, border-color 220ms ease, box-shadow 220ms ease, transform 560ms cubic-bezier(0.17, 0.84, 0.26, 1);
}

.loop-context-card--active {
  z-index: 3;
  --loop-current-card-width: var(--loop-card-width);
  --loop-card-offset: 0px;
  overflow: visible;
  background:
    radial-gradient(circle at 20% 0%, rgba(217, 47, 115, 0.2), transparent 52%),
    rgba(20, 13, 20, 0.96);
  cursor: default;
}

.loop-context-card > div {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
}

.loop-repeat-tag {
  width: max-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(217, 47, 115, 0.34);
  color: #ffe6f0;
  font-size: 28px;
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
}

.loop-card-repeat-tag {
  display: none;
  position: absolute;
  top: -20px;
  left: 50%;
  z-index: 8;
  opacity: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(217, 47, 115, 0.9);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
  pointer-events: none;
  transform: translateX(-50%) scale(0.96);
  transition: opacity 160ms ease, transform 160ms ease;
}

.loop-context-card b {
  color: var(--cta);
  font-size: 27px;
  line-height: 0.98;
  white-space: nowrap;
}

.loop-context-card strong {
  min-width: 0;
  color: #fff;
  font-size: 16px;
  line-height: 1.12;
  word-break: keep-all;
}

.loop-context-card p {
  min-width: 0;
  margin: 0;
  color: #f0e8ee;
  font-size: 13px;
  line-height: 1.45;
}

.loop-context-card--side {
  z-index: 2;
  bottom: var(--loop-side-card-bottom);
  height: var(--loop-side-card-height);
  align-content: center;
  gap: 4px;
  padding: 13px 8px 12px;
  opacity: 0.8;
  cursor: default;
}

.loop-context-card--side:hover,
.loop-context-card--side:focus-visible {
  opacity: 0.88;
  border-color: rgba(255, 71, 145, 0.8);
}

.loop-context-card--prev {
  --loop-card-offset: calc(-1 * var(--loop-side-offset));
  transform-origin: 100% 100%;
}

.loop-context-card--next {
  --loop-card-offset: var(--loop-side-offset);
  transform-origin: 0 100%;
}

.loop-context-card--side > div {
  display: block;
}

.loop-context-card--side b {
  display: block;
  font-size: 0;
  line-height: 1;
  white-space: normal;
}

.loop-context-card--side b::before {
  content: attr(data-loop-short);
  font-size: 22px;
}

.loop-context-card--side strong {
  display: none;
}

.loop-context-card--side p {
  display: none;
}

.loop-context-card--tap-target {
  opacity: 0.94;
  border-color: rgba(255, 92, 164, 0.9);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.46), 0 0 0 2px rgba(217, 47, 115, 0.28);
  --loop-card-scale: 0.985;
}

.loop-demo-cursor {
  position: absolute;
  --loop-cursor-pressed-image: url("/assets/app-demo/cursor/recigom-paw-cursor-pressed-96.png");
  top: var(--loop-cursor-top, 486px);
  right: auto;
  bottom: auto;
  left: var(--loop-cursor-left, 230px);
  z-index: 12;
  width: 96px;
  height: 96px;
  background: url("/assets/app-demo/cursor/recigom-paw-cursor-96.png") center / contain no-repeat;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.52));
  opacity: 0;
  pointer-events: none;
  transform-origin: 25px 8px;
}

.loop-demo-cursor::after {
  position: absolute;
  top: 8px;
  left: 25px;
  width: 19px;
  height: 19px;
  border: 4px solid rgba(252, 50, 151, 0.9);
  border-radius: 999px;
  box-shadow: 0 0 0 2px rgba(246, 246, 247, 0.52);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(1);
}

.feature-story[data-feature-state="loop"] .loop-demo-cursor {
  animation: loopCursorTap 2380ms ease-in-out infinite;
}

.feature-story[data-feature-state="loop"] .loop-demo-cursor::after {
  animation: loopCursorRing 2380ms ease-in-out infinite;
}

@keyframes loopMediaSlideIn {
  from {
    opacity: 0.78;
    transform: translate3d(24px, 0, 0) scale(1.015);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes loopCursorTap {
  0%,
  10% {
    opacity: 0;
    transform: translate3d(8px, 7px, 0) rotate(-5deg) scale(0.98);
  }

  13%,
  18% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(-5deg) scale(1);
  }

  21% {
    opacity: 1;
    transform: translate3d(-1px, -1px, 0) rotate(-5deg) scale(0.92);
  }

  27%,
  42% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(-5deg) scale(1);
  }

  54%,
  100% {
    opacity: 0;
    transform: translate3d(-4px, -3px, 0) rotate(-5deg) scale(1);
  }
}

@keyframes loopCursorRing {
  0%,
  18%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
  }

  21% {
    opacity: 0.95;
    transform: translate(-50%, -50%) scale(1);
  }

  34% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(3.37);
  }
}

.app-capture--portion {
  color: #f7f2f7;
  background:
    radial-gradient(circle at 50% 38%, rgba(217, 47, 115, 0.12), transparent 32%),
    linear-gradient(180deg, #050506 0%, #08080a 100%);
}

.portion-phone-ui {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: auto auto auto auto auto 1fr;
  min-width: 0;
  gap: clamp(8px, 2.4%, 14px);
  padding: 5.6% 6.6% 7%;
  overflow: hidden;
}

.portion-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
  min-height: 22px;
  color: #f7f2f7;
  font-size: 13px;
  font-weight: 900;
}

.portion-status__battery {
  width: 27px;
  height: 13px;
  border: 2px solid #ece8ee;
  border-radius: 7px;
  background: linear-gradient(90deg, #ece8ee 0 72%, transparent 72%);
  box-shadow: 4px 0 0 -2px #ece8ee;
}

.portion-topline {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  font-size: 13px;
  font-weight: 950;
}

.portion-back {
  display: inline-grid;
  place-items: center;
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  background: #141417;
  font-size: 30px;
  line-height: 1;
}

.portion-hero {
  display: grid;
  gap: 8px;
  min-width: 0;
  margin: 0;
}

.portion-hero p,
.portion-hero h3,
.portion-hero span {
  margin: 0;
}

.portion-hero p {
  color: #ff9ccc;
  font-size: 13px;
  font-weight: 950;
}

.portion-hero h3 {
  max-width: 250px;
  color: #fff;
  font-size: 27px;
  line-height: 1.1;
}

.portion-hero span {
  color: #cbc5cd;
  font-size: 12px;
  line-height: 1.45;
}

.serving-control {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-width: 0;
}

.serve-button {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 14px;
  background: #242328;
  color: #fff;
  font-size: 28px;
  font-weight: 750;
  line-height: 1;
}

.serve-button--active {
  border-color: rgba(217, 47, 115, 0.7);
  background: #2d2630;
}

.serve-button.is-pressed {
  animation: portionButtonTap 220ms ease both;
}

.serving-control strong {
  position: relative;
  min-width: 0;
  color: #f5eff5;
  font-size: 30px;
  line-height: 1;
  text-align: center;
}

.portion-cursor {
  position: absolute;
  left: var(--portion-cursor-left, 0px);
  top: var(--portion-cursor-top, 0px);
  z-index: 5;
  width: 96px;
  height: 96px;
  opacity: 0;
  transform: translateY(12px);
  transition: left 420ms ease-in-out, top 420ms ease-in-out, opacity 133ms ease, transform 110ms ease;
  pointer-events: none;
}

.portion-cursor__image {
  position: absolute;
  inset: 0;
  width: 96px;
  height: 96px;
  object-fit: contain;
}

.portion-cursor__image--pressed {
  opacity: 0;
}

.portion-cursor__ring {
  position: absolute;
  left: 25px;
  top: 8px;
  width: 19px;
  height: 19px;
  border: 2px solid #f6f6f7;
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
}

.portion-cursor.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.portion-cursor.is-pressed {
  transform: translateY(0) scale(0.92);
}

.portion-cursor.is-pressed .portion-cursor__image--default {
  opacity: 0;
}

.portion-cursor.is-pressed .portion-cursor__image--pressed {
  opacity: 1;
}

.portion-cursor.is-ring .portion-cursor__ring {
  animation: portionCursorRingTap 220ms ease-out both;
}

.ingredient-panel {
  min-width: 0;
  overflow: hidden;
}

.ingredient-panel h4 {
  margin: 0 0 6px;
  color: #ffe96e;
  font-size: 17px;
  line-height: 1.2;
}

.ingredient-panel ul {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ingredient-panel li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(72px, auto);
  gap: 10px;
  min-width: 0;
  padding: 9px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: #f4eff4;
  font-size: 14px;
  line-height: 1.35;
}

.ingredient-panel li span {
  min-width: 0;
}

.ingredient-panel li strong {
  position: relative;
  min-width: 72px;
  color: #ffe96e;
  font-weight: 950;
  text-align: right;
}

.ingredient-panel li strong.is-changing,
[data-serving-value].is-changing {
  animation: portionNumberTap 180ms ease-out;
}

.app-capture--shopping-auto {
  padding: 14px 13px 16px;
  background:
    radial-gradient(circle at 50% -12%, rgba(217, 47, 115, 0.11), transparent 42%),
    linear-gradient(180deg, #121113 0%, #070708 100%);
}

.shopping-auto-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  color: #fff;
}

.shopping-recipe-panel,
.shopping-list-panel {
  position: absolute;
  inset: 0;
  display: grid;
}

.shopping-recipe-panel {
  grid-template-rows: auto auto auto minmax(0, 1fr);
  gap: 10px;
  animation: shoppingRecipeScreen 8s ease-in-out infinite;
}

.shopping-auto-topline {
  display: grid;
  gap: 3px;
  padding-top: 7px;
}

.shopping-auto-topline span {
  color: var(--cta);
  font-size: 11px;
  font-weight: 950;
}

.shopping-auto-topline strong {
  font-size: 21px;
  line-height: 1.05;
}

.shopping-recipe-hero {
  display: grid;
  gap: 5px;
  padding: 14px 15px;
  border: 1px solid rgba(217, 47, 115, 0.24);
  border-radius: calc(var(--radius) * 0.85);
  corner-shape: squircle;
  background:
    radial-gradient(circle at 88% 16%, rgba(217, 47, 115, 0.22), transparent 38%),
    rgba(255, 255, 255, 0.045);
}

.shopping-recipe-hero p,
.shopping-recipe-hero h4,
.shopping-recipe-hero span {
  margin: 0;
}

.shopping-recipe-hero p {
  color: rgba(104, 201, 151, 0.9);
  font-size: 11px;
  font-weight: 950;
}

.shopping-recipe-hero h4 {
  font-size: 30px;
  line-height: 1.03;
}

.shopping-recipe-hero span {
  color: #e7dee6;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.34;
}

.shopping-recipe-ingredients {
  min-height: 0;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: calc(var(--radius) * 0.85);
  corner-shape: squircle;
  background: rgba(255, 255, 255, 0.045);
}

.shopping-recipe-ingredients h5 {
  margin: 0 0 8px;
  font-size: 16px;
}

.shopping-recipe-ingredients ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.shopping-recipe-ingredients li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding: 7px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 850;
}

.shopping-recipe-ingredients li:first-child {
  border-top: 0;
}

.shopping-recipe-ingredients strong {
  color: #ffe96e;
}

.shopping-add-cta {
  position: relative;
  z-index: 2;
  display: grid;
  padding: 14px 15px;
  border-radius: calc(var(--radius) * 0.82);
  corner-shape: squircle;
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, #fc3297 0%, #d92f73 100%);
  box-shadow: 0 16px 36px rgba(217, 47, 115, 0.3);
  animation: shoppingCtaPress 8s ease-in-out infinite;
}

.shopping-add-cta strong {
  font-size: 20px;
  line-height: 1.08;
}

.shopping-list-panel {
  grid-template-rows: auto minmax(0, 1fr);
  gap: 10px;
  opacity: 0;
  animation: shoppingListScreen 8s ease-in-out infinite;
}

.shopping-auto-header {
  display: grid;
  gap: 4px;
  padding-top: 9px;
}

.shopping-auto-header span {
  color: var(--cta);
  font-size: 11px;
  font-weight: 950;
}

.shopping-auto-header h4 {
  margin: 0;
  font-size: 30px;
  line-height: 1.02;
}

.shopping-auto-header p {
  margin: 0;
  color: #dad2d9;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.32;
}

.shopping-auto-columns {
  min-height: 0;
  display: grid;
  grid-template-rows: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 9px;
}

.shopping-auto-section {
  min-height: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 7px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: calc(var(--radius) * 0.86);
  corner-shape: squircle;
  background: rgba(255, 255, 255, 0.045);
}

.shopping-auto-section--buy {
  border-color: rgba(104, 201, 151, 0.34);
  background: rgba(104, 201, 151, 0.065);
}

.shopping-auto-section__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.shopping-auto-section__title strong {
  font-size: 22px;
  line-height: 1;
}

.shopping-auto-section__title span {
  color: rgba(104, 201, 151, 0.86);
  font-size: 11px;
  font-weight: 950;
}

.shopping-auto-section ul {
  min-height: 0;
  display: grid;
  align-content: start;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.shopping-auto-section li {
  min-width: 0;
  max-height: 0;
  overflow: hidden;
  padding: 9px 10px;
  border: 1px solid rgba(246, 246, 247, 0.22);
  border-radius: calc(var(--radius) * 0.66);
  corner-shape: squircle;
  background: rgba(5, 5, 6, 0.42);
  box-shadow: inset 0 0 0 1px rgba(104, 201, 151, 0);
  opacity: 0;
  transform: translateY(-8px) scale(0.96);
  animation: shoppingItemClassify 8s linear infinite;
  animation-delay: calc(var(--item-index) * 170ms);
}

.shopping-auto-section li strong {
  display: block;
  min-width: 0;
  overflow: hidden;
  font-size: 15px;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shopping-cta-paw {
  position: absolute;
  top: calc(5.2239% + 188px);
  left: calc(6.4516% + 190px);
  z-index: 4;
  width: 96px;
  height: 96px;
  opacity: 0;
  background: url("/assets/app-demo/paw-cursor/cursor-96.png") center / contain no-repeat;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.38));
  transform-origin: 25px 8px;
  animation: none;
  pointer-events: none;
}

.shopping-cta-paw::after {
  position: absolute;
  left: 15px;
  top: -2px;
  width: 20px;
  height: 20px;
  content: "";
  border: 2px solid rgba(246, 246, 247, 0.82);
  border-radius: 999px;
  opacity: 0;
  transform: scale(0.8);
  animation: none;
}

.feature-story[data-feature-state="shopping"] .shopping-cta-paw {
  animation: shoppingCtaPawClick 8s ease-in-out infinite;
}

.feature-story[data-feature-state="shopping"] .shopping-cta-paw::after {
  animation: shoppingCtaPawRing 8s ease-in-out infinite;
}

.shopping-auto-loader {
  position: absolute;
  top: 42%;
  left: 50%;
  z-index: 6;
  width: min(236px, calc(100% - 42px));
  min-height: 132px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 10px;
  padding: 16px 14px;
  text-align: center;
  border: 1px solid rgba(217, 47, 115, 0.56);
  border-radius: calc(var(--radius) * 0.78);
  corner-shape: squircle;
  background:
    radial-gradient(circle at 50% 0%, rgba(217, 47, 115, 0.3), transparent 50%),
    linear-gradient(180deg, rgba(44, 16, 30, 0.97) 0%, rgba(12, 12, 14, 0.98) 100%);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.58);
  opacity: 0;
  transform: translate(-50%, -46%) scale(0.98);
  animation: shoppingAutoLoader 8s ease-in-out infinite;
  pointer-events: none;
}

.shopping-auto-loader span {
  width: 58px;
  height: 44px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 6px;
  padding: 9px 9px;
  border: 1px solid rgba(217, 47, 115, 0.54);
  border-radius: calc(var(--radius) * 0.64);
  corner-shape: squircle;
  background: rgba(217, 47, 115, 0.1);
}

.shopping-auto-loader i {
  width: 8px;
  height: 24px;
  border-radius: 999px;
  background: var(--cta);
  animation: shoppingLoaderDot 700ms ease-in-out infinite alternate;
}

.shopping-auto-loader i:nth-child(2) {
  animation-delay: 120ms;
}

.shopping-auto-loader i:nth-child(3) {
  animation-delay: 240ms;
}

.shopping-auto-loader strong {
  max-width: 220px;
  color: #fff;
  font-size: 28px;
  line-height: 1.08;
}

.app-capture--shopping-auto:not(.is-active) .shopping-recipe-panel,
.app-capture--shopping-auto:not(.is-active) .shopping-list-panel,
.app-capture--shopping-auto:not(.is-active) .shopping-add-cta,
.app-capture--shopping-auto:not(.is-active) .shopping-auto-loader,
.app-capture--shopping-auto:not(.is-active) .shopping-auto-loader i,
.app-capture--shopping-auto:not(.is-active) .shopping-auto-section li {
  animation: none;
}

@keyframes shoppingRecipeScreen {
  0%,
  17% {
    opacity: 1;
    transform: translateX(0);
  }
  24%,
  100% {
    opacity: 0;
    transform: translateX(-18px);
  }
}

@keyframes shoppingListScreen {
  0%,
  18% {
    opacity: 0;
    transform: translateX(18px);
  }
  24%,
  88% {
    opacity: 1;
    transform: translateX(0);
  }
  94%,
  100% {
    opacity: 0;
    transform: translateX(18px);
  }
}

@keyframes shoppingCtaPress {
  0%,
  12%,
  19%,
  100% {
    transform: scale(1);
    filter: brightness(1);
  }
  15% {
    transform: scale(0.96);
    filter: brightness(1.12);
  }
}

@keyframes shoppingCtaPawClick {
  0%,
  7% {
    opacity: 0;
    transform: translate3d(12px, 14px, 0) scale(1);
    background-image: url("/assets/app-demo/paw-cursor/cursor-96.png");
  }
  10%,
  13% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    background-image: url("/assets/app-demo/paw-cursor/cursor-96.png");
  }
  15%,
  16.5% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(0.92);
    background-image: url("/assets/app-demo/paw-cursor/cursor-pressed-96.png");
  }
  18% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    background-image: url("/assets/app-demo/paw-cursor/cursor-96.png");
  }
  23%,
  100% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(1);
    background-image: url("/assets/app-demo/paw-cursor/cursor-96.png");
  }
}

@keyframes shoppingCtaPawRing {
  0%,
  14.5%,
  19%,
  100% {
    opacity: 0;
    transform: scale(0.8);
  }
  15% {
    opacity: 0.9;
    transform: scale(0.9);
  }
  18% {
    opacity: 0;
    transform: scale(3.2);
  }
}

@keyframes shoppingAutoLoader {
  0%,
  20% {
    opacity: 0;
    transform: translate(-50%, -40%) scale(0.98);
  }
  24%,
  36% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  39%,
  100% {
    opacity: 0;
    transform: translate(-50%, -54%) scale(0.98);
  }
}

@keyframes shoppingLoaderDot {
  to {
    opacity: 0.38;
    transform: translateY(-3px);
  }
}

@keyframes shoppingItemClassify {
  0%,
  41% {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    border-color: rgba(246, 246, 247, 0);
    background: rgba(5, 5, 6, 0.28);
    box-shadow: inset 0 0 0 1px rgba(104, 201, 151, 0);
    opacity: 0;
    transform: translateY(-8px) scale(0.96);
  }
  44% {
    max-height: 38px;
    padding-top: 9px;
    padding-bottom: 9px;
    border-color: rgba(246, 246, 247, 0.48);
    background: rgba(104, 201, 151, 0.14);
    box-shadow: inset 0 0 0 1px rgba(104, 201, 151, 0.22);
    opacity: 1;
    transform: translateY(0) scale(1.02);
  }
  48%,
  88% {
    max-height: 38px;
    padding-top: 9px;
    padding-bottom: 9px;
    border-color: rgba(246, 246, 247, 0.3);
    background: rgba(5, 5, 6, 0.5);
    box-shadow: inset 0 0 0 1px rgba(104, 201, 151, 0.08);
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  94%,
  100% {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    border-color: rgba(246, 246, 247, 0);
    background: rgba(5, 5, 6, 0.28);
    box-shadow: inset 0 0 0 1px rgba(104, 201, 151, 0);
    opacity: 0;
    transform: translateY(-8px) scale(0.96);
  }
}

@media (prefers-reduced-motion: reduce) {
  .shopping-recipe-panel,
  .shopping-list-panel,
  .shopping-add-cta,
  .shopping-cta-paw,
  .shopping-cta-paw::after,
  .shopping-auto-loader,
  .shopping-auto-loader i,
  .shopping-auto-section li {
    animation: none;
  }

  .shopping-recipe-panel,
  .shopping-auto-loader {
    opacity: 0;
  }

  .shopping-list-panel,
  .shopping-auto-section li {
    max-height: 38px;
    padding-top: 9px;
    padding-bottom: 9px;
    border-color: rgba(246, 246, 247, 0.3);
    opacity: 1;
    transform: none;
  }
}

.app-capture.is-active,
.analysis-layer.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  z-index: 2;
}

.analysis-layer {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  padding: 24px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 18%, rgba(217, 47, 115, 0.24), transparent 34%),
    linear-gradient(180deg, #19171b 0%, #09090b 100%);
}

.analysis-glyph {
  display: flex;
  align-items: end;
  gap: 7px;
  width: 72px;
  height: 54px;
  padding: 11px;
  border: 1px solid rgba(217, 47, 115, 0.42);
  border-radius: var(--radius);
  corner-shape: squircle;
  background: rgba(217, 47, 115, 0.1);
}

.analysis-glyph span {
  width: 12px;
  border-radius: 6px;
  background: var(--cta);
  animation: analysisBars 920ms ease-in-out infinite alternate;
}

.analysis-glyph span:nth-child(1) {
  height: 36%;
}

.analysis-glyph span:nth-child(2) {
  height: 78%;
  animation-delay: 140ms;
}

.analysis-glyph span:nth-child(3) {
  height: 54%;
  animation-delay: 280ms;
}

@keyframes analysisBars {
  to {
    height: 100%;
    opacity: 0.58;
  }
}

@keyframes portionButtonTap {
  0%, 100% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.94);
  }
}

@keyframes portionNumberTap {
  0% {
    opacity: 0.45;
    transform: translateY(3px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes portionCursorRingTap {
  0% {
    width: 19px;
    height: 19px;
    border-color: #f6f6f7;
    opacity: 0.92;
  }

  100% {
    width: 64px;
    height: 64px;
    border-color: #fc3297;
    opacity: 0;
  }
}

.analysis-layer strong {
  color: #fff;
  font-size: 24px;
  line-height: 1.2;
}

.analysis-layer p {
  max-width: 230px;
  margin: 0;
  color: #d7cfd6;
  font-size: 14px;
  line-height: 1.56;
}

.analysis-progress {
  width: min(220px, 100%);
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.analysis-progress span {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cta), var(--green));
  animation: analysisSweep 1550ms ease-in-out infinite;
}

.analysis-layer ul {
  width: min(220px, 100%);
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.analysis-layer li {
  min-width: 0;
  padding: 8px 10px;
  border: 1px solid rgba(104, 201, 151, 0.24);
  border-radius: var(--radius);
  corner-shape: squircle;
  background: rgba(104, 201, 151, 0.08);
  color: #dff7eb;
  font-size: 13px;
  font-weight: 800;
}

.demo-control-panel {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  corner-shape: squircle;
  background: #1c1c20;
}

.demo-control-panel .demo-progress {
  align-items: flex-start;
  margin-bottom: 14px;
}

.demo-control-panel .demo-progress strong {
  min-width: 0;
  line-height: 1.42;
}

[data-feature-state="analysis"] .analysis-glyph {
  box-shadow: 0 0 0 6px rgba(217, 47, 115, 0.08);
}

[data-demo-state="analysis"] .demo-spinner {
  opacity: 1;
  animation: progressSpin 760ms linear infinite;
}

.demo-control-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.demo-control-buttons > * {
  min-width: 0;
  flex: 1 1 130px;
}

.demo-pause {
  cursor: pointer;
}

.journey-steps {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.journey-steps button {
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 2px 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  corner-shape: squircle;
  background: #242328;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.journey-steps button > span {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(217, 47, 115, 0.18);
  color: #fff;
  font-weight: 950;
}

.journey-steps strong,
.journey-steps small {
  min-width: 0;
  white-space: normal;
  word-break: keep-all;
}

.journey-steps strong {
  font-size: 14px;
  line-height: 1.28;
}

.journey-steps small {
  color: #bfb6be;
  font-size: 12px;
  line-height: 1.46;
}

.journey-steps button.is-active {
  border-color: rgba(217, 47, 115, 0.82);
  background: rgba(217, 47, 115, 0.16);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.step {
  padding: 24px;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--soft);
  color: #202024;
  font-weight: 900;
}

.step h3,
.plan h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.step p,
.plan p,
.legal-panel p,
.legal-panel li,
.contact-panel p {
  color: var(--muted);
  line-height: 1.68;
}

.filter-flow-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0 108px;
  background:
    radial-gradient(circle at 15% 20%, rgba(217, 47, 115, 0.13), transparent 32%),
    radial-gradient(circle at 84% 74%, rgba(104, 201, 151, 0.08), transparent 30%),
    #18181b;
}

.filter-flow-heading {
  position: relative;
  z-index: 2;
  margin-bottom: 42px;
}

.filter-flow-heading h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.02;
}

.filter-flow {
  position: relative;
  display: grid;
  gap: var(--filter-flow-row-gap);
  width: 100%;
  padding: 12px 0;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.filter-flow-row {
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

.filter-flow-motion {
  width: max-content;
}

.filter-flow-track {
  display: flex;
  width: max-content;
  gap: 12px;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.filter-flow[data-filter-flow-paused="true"] .filter-flow-track {
  will-change: auto;
}

.filter-flow-group {
  display: flex;
  flex: 0 0 auto;
  gap: 12px;
}

.filter-flow-chip {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  min-height: 78px;
  padding: 9px 18px 9px 10px;
  border-radius: var(--radius);
  corner-shape: squircle;
  background: rgba(44, 42, 48, 0.82);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
  color: #f8f3f7;
  font-size: 17px;
  font-weight: 820;
  white-space: nowrap;
  backdrop-filter: blur(12px);
}

.filter-flow-chip:nth-child(3n + 2) {
  background: rgba(54, 36, 47, 0.88);
}

.filter-flow-chip:nth-child(4n + 3) {
  background: rgba(34, 48, 46, 0.86);
}

.filter-flow-chip img {
  width: 60px;
  height: 60px;
  flex: 0 0 auto;
  object-fit: contain;
}

.plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.plan {
  min-width: 0;
  padding: 28px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.plan.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.plan:nth-child(2).is-visible .plan-logo {
  animation: chefReveal 560ms ease both;
}

.plan-logo {
  width: 92px;
  height: 92px;
  margin: -8px 0 10px;
  object-fit: contain;
}

.price {
  margin: 4px 0 22px;
  font-size: 34px;
  font-weight: 950;
}

.plan ul,
.legal-panel ul {
  margin: 0;
  padding-left: 20px;
}

.plan li {
  margin: 12px 0;
  line-height: 1.62;
}

.notice-band {
  margin-top: 18px;
  padding: 18px 20px;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  corner-shape: squircle;
  background: #30291c;
  color: #f4dfb5;
}

.readiness-panel {
  display: grid;
  grid-template-columns: 164px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  max-width: 900px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  corner-shape: squircle;
  background: var(--surface);
}

.readiness-bear {
  width: 148px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 22px 34px rgba(217, 47, 115, 0.2));
}

.readiness-panel h2 {
  max-width: 660px;
  margin-bottom: 14px;
  font-size: 34px;
  line-height: 1.16;
}

.readiness-panel p {
  max-width: 660px;
  color: var(--muted);
  line-height: 1.68;
}

.readiness-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.page-hero {
  padding: 72px 0 44px;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 880px;
  font-size: 64px;
}

.contact-panel,
.legal-panel {
  padding: 32px;
}

.legal-panel {
  display: grid;
  gap: 26px;
}

.legal-panel p,
.legal-panel li,
.legal-panel a {
  overflow-wrap: anywhere;
  word-break: keep-all;
}

.legal-panel section {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.legal-panel section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.footer {
  padding: 42px 0;
  background: #0c0c0e;
  color: #f6f6fd;
}

.footer .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-wordmark {
  width: 112px;
  height: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.footer-links a {
  color: #f6f6fd;
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@keyframes progressSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes savedPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.018);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes analysisSweep {
  0% {
    transform: translateX(-48%);
  }
  50% {
    transform: translateX(18%);
  }
  100% {
    transform: translateX(68%);
  }
}

@keyframes pasteCaret {
  50% {
    opacity: 0;
  }
}

@keyframes pasteUrlStep {
  0%,
  43% {
    max-width: 0;
    opacity: 0;
    transform: translateX(0);
  }
  49%,
  100% {
    max-width: calc(100% - 6px);
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pasteFieldStep {
  0%,
  39%,
  52%,
  100% {
    border-color: rgba(244, 143, 201, 0.9);
    box-shadow: none;
  }
  44% {
    border-color: rgba(104, 201, 151, 0.9);
    box-shadow: none;
  }
}

@keyframes pasteSubmitStep {
  0%,
  61%,
  74%,
  100% {
    background: var(--cta);
    box-shadow: none;
  }
  66% {
    background: #ef4b8b;
    box-shadow: none;
  }
}

@keyframes externalVideoStep {
  0%,
  14% {
    transform: translate(-8%, 0) rotate(-1.5deg) scale(1);
  }
  28% {
    transform: translate(-8%, -3px) rotate(1.8deg) scale(1.015);
  }
  44% {
    transform: translate(-8%, 0) rotate(-1deg) scale(1);
  }
  58%,
  88% {
    transform: translate(-8%, -8px) rotate(0.8deg) scale(0.97);
  }
  100% {
    transform: translate(-8%, 0) rotate(-1.5deg) scale(1);
  }
}

@keyframes youtubeShareButtonStep {
  0%,
  18%,
  34%,
  100% {
    background: rgba(255, 255, 255, 0.95);
    transform: scale(1);
  }
  24% {
    background: #f5d7e5;
    transform: scale(0.94);
  }
}

@keyframes youtubeShareSheetStep {
  0%,
  27% {
    opacity: 0;
    transform: translateY(10px) scale(0.94);
  }
  32%,
  58% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  66%,
  100% {
    opacity: 0;
    transform: translateY(8px) scale(0.96);
  }
}

@keyframes cursorCueStep {
  0%,
  20.76% {
    opacity: 0;
    left: 96%;
    top: 37%;
    transform: translateY(12px);
    animation-timing-function: ease-out;
  }
  22.92% {
    opacity: 1;
    left: 96%;
    top: 37%;
    transform: translateY(3px);
    animation-timing-function: ease-out;
  }
  24%,
  28.31% {
    opacity: 1;
    left: 96%;
    top: 37%;
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0.24, 0.86, 0.26, 1);
  }
  40.76% {
    opacity: 1;
    left: 31%;
    top: 82%;
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
  42.92% {
    opacity: 1;
    left: 31%;
    top: 82%;
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
  44%,
  48.31% {
    opacity: 1;
    left: 31%;
    top: 82%;
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0.24, 0.86, 0.26, 1);
  }
  62.76% {
    opacity: 1;
    left: 50%;
    top: 89%;
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
  64.92% {
    opacity: 1;
    left: 50%;
    top: 89%;
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
  66%,
  70.31% {
    opacity: 1;
    left: 50%;
    top: 89%;
    transform: translateY(0);
    animation-timing-function: ease-in;
  }
  72.45% {
    opacity: 1;
    left: 50%;
    top: 89%;
    transform: translateY(0);
    animation-timing-function: ease-in;
  }
  76%,
  100% {
    opacity: 0;
    left: 50%;
    top: 89%;
    transform: translateY(0);
  }
}

@keyframes cursorSpritePress {
  0%,
  23.99%,
  27.24%,
  43.99%,
  47.24%,
  65.99%,
  69.24%,
  100% {
    background-image: url("/assets/app-demo/cursor-96.png");
    transform: rotate(-17deg) scale(1);
  }
  24%,
  44%,
  66% {
    background-image: url("/assets/app-demo/cursor-pressed-96.png");
    transform: rotate(-17deg) scale(1);
    animation-timing-function: ease-out;
  }
  25.08%,
  45.08%,
  67.08% {
    background-image: url("/assets/app-demo/cursor-pressed-96.png");
    transform: rotate(-17deg) scale(1);
  }
  25.61%,
  45.61%,
  67.61% {
    background-image: url("/assets/app-demo/cursor-pressed-96.png");
    transform: rotate(-17deg) scale(1);
    animation-timing-function: cubic-bezier(0.2, 0.8, 0.3, 1);
  }
  27.23%,
  47.23%,
  69.23% {
    background-image: url("/assets/app-demo/cursor-96.png");
    transform: rotate(-17deg) scale(1);
  }
}

@keyframes cursorRingSpriteStep {
  0%,
  24.52%,
  28.32%,
  44.52%,
  48.32%,
  66.52%,
  70.32%,
  100% {
    background-position: 0 0;
    opacity: 0;
  }
  24.53%,
  44.53%,
  66.53% {
    background-position: 0 0;
    opacity: 1;
    animation-timing-function: steps(8, end);
  }
  28.3%,
  48.3%,
  70.3% {
    background-position: 100% 0;
    opacity: 1;
  }
  28.31%,
  48.31%,
  70.31% {
    background-position: 100% 0;
    opacity: 0;
  }
}

@keyframes analysisCardStep {
  0%,
  64% {
    opacity: 0;
    transform: translateY(16px) scale(0.94);
  }
  72%,
  88% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
}

@keyframes chefReveal {
  from {
    opacity: 0.3;
    transform: translateY(8px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes timelineVideoFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-1.2deg);
  }
  50% {
    transform: translate3d(0, -9px, 0) rotate(0.8deg);
  }
}

@keyframes timelineDot {
  0%,
  100% {
    opacity: 0.45;
    transform: translateX(-50%) scale(0.78);
  }
  44% {
    opacity: 1;
    transform: translateX(-50%) scale(1.08);
  }
}

@keyframes timelineCardBreathe {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(3px, -5px, 0);
  }
}

@keyframes timelineIconNudge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes timelineChefFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(4px, -7px, 0) rotate(4deg);
  }
}

@media (max-width: 920px) {
  .product-preview {
    scroll-margin-top: calc(var(--topbar-height) + 24px);
  }

  .nav {
    min-height: auto;
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
    row-gap: 10px;
  }

  h1 {
    font-size: 46px;
  }

  .lead {
    font-size: 18px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 38px 0 42px;
  }

  .hero-timeline-inner {
    grid-template-columns: 1fr;
  }

  .hero-timeline-visual {
    min-height: 480px;
  }

  .timeline-board {
    width: min(600px, 100%);
  }

  .hero-character {
    width: min(280px, 72%);
  }

  .demo-shell,
  .steps,
  .plans,
  .support-grid,
  .readiness-panel {
    grid-template-columns: 1fr;
  }

  .feature-story {
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
    gap: 22px 28px;
  }

  .demo-shell.real-demo {
    grid-template-columns: 1fr;
  }

  .demo-product {
    grid-template-columns: 1fr;
  }

  .section-head h2,
  .page-hero h1 {
    font-size: 38px;
  }

  .readiness-panel {
    align-items: start;
  }
}

@media (max-width: 700px) {
  :root {
    --feature-sticky-phone-offset-y: 4px;
  }

  .feature-story {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .feature-phone-sticky,
  .feature-chapters {
    grid-column: 1;
    grid-row: auto;
  }

  .feature-phone-sticky {
    z-index: 3;
    padding: 4px 0 10px;
    background: linear-gradient(180deg, #151518 0%, #151518 88%, rgba(21, 21, 24, 0) 100%);
  }

  .phone-mockup {
    width: var(--feature-phone-width-by-height);
  }

  .feature-chapter {
    min-height: 58vh;
    padding: 42px 10px;
  }

  .feature-chapters > li:last-child .feature-chapter {
    min-height: 124vh;
  }
}

@media (max-width: 520px) {
  .nav,
  .wrap,
  .hero-inner {
    width: min(100% - 24px, 1160px);
  }

  .brand-lockup__bear {
    width: 40px;
    height: 40px;
  }

  .brand-lockup__wordmark {
    width: 96px;
  }

  .nav-links {
    gap: 8px 12px;
    font-size: 13px;
  }

  .nav-links .cta-link {
    min-height: 38px;
    padding: 0 13px;
  }

  h1 {
    margin-bottom: 14px;
    font-size: 33px;
    line-height: 1.1;
  }

  .lead {
    margin-bottom: 0;
    font-size: 17px;
    line-height: 1.52;
  }

  .hero-inner {
    gap: 18px;
    padding: 28px 0 30px;
  }

  .hero-actions {
    align-items: stretch;
    margin-top: 18px;
  }

  .hero-actions a {
    width: 100%;
  }

  .hero-visual {
    grid-template-columns: minmax(92px, 128px) minmax(0, 1fr);
    justify-items: stretch;
    align-items: center;
    gap: 10px;
  }

  .hero--timeline .hero-visual {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .hero-timeline-visual {
    min-height: 430px;
  }

  .timeline-board {
    width: min(calc(100% - 8px), 390px);
    aspect-ratio: 0.92 / 1;
  }

  .timeline-board::before {
    inset: 7% 0 7% 7%;
    border-radius: 22px;
  }

  .timeline-video-card {
    top: 5%;
    left: 0;
    width: 54%;
  }

  .timeline-video-meta {
    right: 8px;
    bottom: 8px;
    left: 8px;
    padding: 9px;
  }

  .timeline-video-meta span {
    font-size: 10px;
  }

  .timeline-video-meta strong {
    font-size: 14px;
  }

  .timeline-rail {
    top: 19%;
    bottom: 27%;
    left: 52%;
  }

  .timeline-card {
    width: 56%;
    gap: 3px;
    padding: 10px 11px;
    border-radius: 14px;
  }

  .timeline-card--ingredients {
    top: 12%;
    right: 0;
  }

  .timeline-card--steps {
    top: 33%;
    right: 0;
  }

  .timeline-card--loop {
    top: 54%;
    right: 2%;
  }

  .timeline-card--cart {
    bottom: 11%;
    left: 5%;
    width: 49%;
  }

  .timeline-card-kicker {
    font-size: 10px;
  }

  .timeline-card strong {
    font-size: 13px;
  }

  .timeline-card small {
    font-size: 11px;
  }

  .timeline-filter-strip {
    right: 0;
    bottom: 0;
    gap: 5px;
    padding: 5px;
  }

  .timeline-filter-strip img {
    width: 34px;
    height: 34px;
  }

  .timeline-chef {
    top: 0;
    right: 25%;
    width: 54px;
    height: 54px;
  }

  .hero-character {
    width: 128px;
    max-width: 100%;
    justify-self: center;
  }

  .filter-ribbon {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
    padding: 7px;
  }

  .filter-ribbon img {
    width: 34px;
    height: 34px;
  }

  .section {
    padding: 56px 0;
  }

  .section-head h2 {
    font-size: 30px;
    line-height: 1.16;
  }

  .demo-shell {
    gap: 14px;
  }

  .demo-phone {
    padding: 14px;
  }

  .real-phone {
    padding: 0;
  }

  .phone-mockup {
    width: var(--feature-phone-width-by-height);
  }

  .feature-chapter {
    min-height: 56vh;
    gap: 14px;
  }

  .feature-chapters > li:last-child .feature-chapter {
    min-height: 124vh;
  }

  .feature-chapter h3 {
    font-size: 34px;
  }

  .feature-chapter p {
    font-size: 16px;
  }

  .analysis-layer {
    gap: 10px;
    padding: 18px;
  }

  .analysis-layer strong {
    font-size: 21px;
  }

  .analysis-layer p,
  .analysis-layer li {
    font-size: 12px;
  }

  .demo-link-row {
    grid-template-columns: 1fr;
  }

  .demo-action {
    width: 100%;
  }

  .demo-control-panel {
    padding: 14px;
  }

  .demo-control-buttons > * {
    flex-basis: 100%;
  }

  .journey-steps button {
    grid-template-columns: 26px minmax(0, 1fr);
    padding: 9px;
  }

  .demo-recipe-card,
  .demo-filter-panel {
    padding: 14px;
  }

  .demo-recipe-card h3 {
    font-size: 21px;
  }

  .demo-filter-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .demo-filter {
    min-height: 76px;
  }

  .demo-filter img {
    width: 36px;
    height: 36px;
  }

  .filter-flow-section {
    padding: 66px 0 76px;
  }

  .filter-flow-heading {
    margin-bottom: 28px;
  }

  .filter-flow-heading h2 {
    font-size: 38px;
  }

  .filter-flow {
    --filter-flow-row-gap: 10px;
    mask-image: linear-gradient(90deg, transparent, #000 2.5%, #000 97.5%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 2.5%, #000 97.5%, transparent);
  }

  .filter-flow-track,
  .filter-flow-group {
    gap: 9px;
  }

  .filter-flow-chip {
    min-height: 66px;
    gap: 8px;
    padding: 7px 14px 7px 8px;
    font-size: 15px;
  }

  .filter-flow-chip img {
    width: 50px;
    height: 50px;
  }

  .contact-panel,
  .legal-panel,
  .readiness-panel,
  .plan,
  .step {
    padding: 22px;
  }

  .readiness-bear {
    width: 112px;
  }

  .readiness-panel h2 {
    font-size: 25px;
  }

  .readiness-actions > * {
    width: 100%;
  }

  .page-hero {
    padding: 44px 0 34px;
  }

  .page-hero h1 {
    font-size: 36px;
  }
}

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

  .reveal,
  .plan {
    opacity: 1;
    transform: none;
  }

  .filter-flow {
    mask-image: none;
    -webkit-mask-image: none;
  }

  .filter-flow-row {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .filter-flow-row::-webkit-scrollbar {
    display: none;
  }

  .filter-flow-motion {
    transform: none !important;
  }

  .filter-flow-track {
    transform: none !important;
    will-change: auto;
  }

  .filter-flow-group[aria-hidden="true"] {
    display: none;
  }

  .portion-cursor {
    transition: none !important;
  }

  .portion-cursor__ring,
  .portion-cursor__image--pressed {
    display: none;
  }

  .portion-cursor.is-pressed {
    transform: translateY(0) scale(0.96);
  }
}
